Refactor on theming doc section
parent
66b9f8b679
commit
a82843f1ff
|
@ -12,7 +12,8 @@ const staticMessages = {
|
|||
functions: 'Defines the custom functions used by the module.',
|
||||
events: "Defines the custom events used by the component's emit.",
|
||||
interfaces: 'Defines the custom interfaces used by the module.',
|
||||
types: 'Defines the custom types used by the module.'
|
||||
types: 'Defines the custom types used by the module.',
|
||||
tokens: 'Define design tokens used by the component.'
|
||||
};
|
||||
|
||||
const app = new TypeDoc.Application();
|
||||
|
@ -555,6 +556,81 @@ if (project) {
|
|||
};
|
||||
});
|
||||
|
||||
const module_namespaces_group = module.groups?.find((g) => g.title === 'Namespaces');
|
||||
|
||||
module_namespaces_group &&
|
||||
module_namespaces_group.children.forEach((pevent) => {
|
||||
const module_interfaces_group = pevent?.groups?.find((g) => g.title === 'Interfaces');
|
||||
|
||||
module_interfaces_group &&
|
||||
module_interfaces_group.children.forEach((event) => {
|
||||
const event_props_description = event.comment && event.comment.summary.map((s) => s.text || '').join(' ');
|
||||
let component_prop = '';
|
||||
|
||||
if (event.comment && event.comment.getTag('@see')) {
|
||||
const tag = event.comment.getTag('@see');
|
||||
const content = tag.content[0];
|
||||
|
||||
if (content.text.includes("['")) {
|
||||
component_prop = `${content.target.name}${content.text}`;
|
||||
} else {
|
||||
component_prop = `${content.text === content.target?.name ? content.target.parent.name : content.target?.name}.${content.text}`;
|
||||
}
|
||||
}
|
||||
|
||||
!doc[name]['tokens'] &&
|
||||
(doc[name]['tokens'] = {
|
||||
description: staticMessages['tokens'],
|
||||
values: {}
|
||||
});
|
||||
|
||||
const props = [];
|
||||
|
||||
const setProps = (_declaration, _name) => {
|
||||
if (_declaration?.groups) {
|
||||
const event_props_group = _declaration.groups.find((g) => g.title === 'Properties');
|
||||
|
||||
event_props_group &&
|
||||
event_props_group.children.forEach((prop) => {
|
||||
if (prop.type?.declaration) {
|
||||
setProps(prop.type?.declaration, prop.name);
|
||||
} else if (prop.comment?.getTag('@designToken')) {
|
||||
props.push({
|
||||
name: _name ? `${_name}.${prop.name}` : prop.name,
|
||||
token: prop.comment.getTag('@designToken').content[0]?.text || '',
|
||||
optional: prop.flags.isOptional,
|
||||
readonly: prop.flags.isReadonly,
|
||||
type: prop.type.toString(),
|
||||
default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0]?.text || '' : '', // TODO: Check
|
||||
description:
|
||||
prop.comment &&
|
||||
prop.comment.summary
|
||||
.map((s) => {
|
||||
if (s.text.indexOf('[here]') > -1) {
|
||||
return `${s.text.slice(0, s.text.indexOf('[here]'))} <a target="_blank" href="${s.text.slice(s.text.indexOf('(') + 1, s.text.indexOf(')'))}">here</a> ${s.text.slice(
|
||||
s.text.indexOf(')') + 1
|
||||
)}`;
|
||||
}
|
||||
|
||||
return s.text || '';
|
||||
})
|
||||
.join(' '),
|
||||
deprecated: prop.comment && prop.comment.getTag('@deprecated') ? parseText(prop.comment.getTag('@deprecated').content[0]?.text) : undefined
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
setProps(event);
|
||||
|
||||
doc[name]['tokens'].values[event.name] = {
|
||||
description: event_props_description,
|
||||
props
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
// app.generateJson(module, `./api-generator/module-typedoc.json`);
|
||||
});
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<DocSectionText :id="id" :label="label" :level="componentLevel" :badge="badge">
|
||||
<p>{{ description || null }}</p>
|
||||
<p v-html="description"></p>
|
||||
<p v-if="relatedProp" class="inline-block">
|
||||
See <NuxtLink :to="setRelatedPropPath(relatedProp)" class="doc-option-link"> {{ relatedPropValue(relatedProp) }} </NuxtLink>
|
||||
</p>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<template v-if="doc.children">
|
||||
<div :id="doc.id">
|
||||
<DocSectionText :id="doc.id" :label="doc.label" :badge="doc.badge">
|
||||
<p v-if="doc.description">{{ doc.description }}</p>
|
||||
<p v-if="doc.description" v-html="doc.description"></p>
|
||||
</DocSectionText>
|
||||
</div>
|
||||
<template v-for="comp of doc.children" :key="comp.label">
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import APIDocs from '@/doc/common/apidoc/index.json';
|
||||
import { $dt } from 'primevue/themes';
|
||||
|
||||
export const getPTOption = (name) => {
|
||||
export const getPTOptions = (name) => {
|
||||
const { props } = APIDocs[name.toLowerCase()].interfaces.values[`${name}PassThroughOptions`] || APIDocs[name.toLowerCase()].interfaces.values[`${name}DirectivePassThroughOptions`];
|
||||
const options = APIDocs[name.toLowerCase()].interfaces.values[`${name}PassThroughMethodOptions`];
|
||||
let data = [];
|
||||
|
@ -35,3 +36,41 @@ export const getPTOption = (name) => {
|
|||
|
||||
return data;
|
||||
};
|
||||
|
||||
export const getStyleOptions = (name) => {
|
||||
const { members } = APIDocs[name.toLowerCase() + 'style']?.enumerations?.values?.[`${name}Classes`];
|
||||
let data = [];
|
||||
|
||||
for (const member of members) {
|
||||
const { name, value, description } = member;
|
||||
|
||||
data.push({
|
||||
class: value.replaceAll('"', ''),
|
||||
section: name,
|
||||
description
|
||||
});
|
||||
}
|
||||
|
||||
return data;
|
||||
};
|
||||
|
||||
export const getTokenOptions = (preset, name) => {
|
||||
const values = APIDocs[`${preset.toLowerCase()}/${name.toLowerCase()}`]?.tokens?.values;
|
||||
let data = [];
|
||||
|
||||
for (const [key, value] of Object.entries(values)) {
|
||||
for (const tokens of value?.props) {
|
||||
const { token, description } = tokens;
|
||||
const designToken = $dt(token);
|
||||
|
||||
data.push({
|
||||
token,
|
||||
variable: designToken.name,
|
||||
section: key.toLowerCase(),
|
||||
description: description
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return data;
|
||||
};
|
|
@ -10,6 +10,9 @@
|
|||
import { BaseStyle } from '../../base/style';
|
||||
|
||||
export enum InputTextClasses {
|
||||
/**
|
||||
* The class of input element
|
||||
*/
|
||||
root = 'p-inputtext'
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,89 @@
|
|||
/**
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/)
|
||||
*
|
||||
* @module aura
|
||||
*
|
||||
*/
|
||||
export interface ColorSchemeDesignToken<T> {
|
||||
colorScheme?: {
|
||||
light?: Omit<T, 'colorScheme'>;
|
||||
dark?: Omit<T, 'colorScheme'>;
|
||||
};
|
||||
}
|
||||
|
||||
export interface PaletteDesignToken {
|
||||
50?: string;
|
||||
100?: string;
|
||||
200?: string;
|
||||
300?: string;
|
||||
400?: string;
|
||||
500?: string;
|
||||
600?: string;
|
||||
700?: string;
|
||||
800?: string;
|
||||
900?: string;
|
||||
950?: string;
|
||||
}
|
||||
|
||||
export interface PrimitiveDesignTokens {
|
||||
borderRadius?: {
|
||||
none?: string;
|
||||
xs?: string;
|
||||
sm?: string;
|
||||
md?: string;
|
||||
lg?: string;
|
||||
xl?: string;
|
||||
};
|
||||
emerald?: PaletteDesignToken;
|
||||
green?: PaletteDesignToken;
|
||||
lime?: PaletteDesignToken;
|
||||
red?: PaletteDesignToken;
|
||||
orange?: PaletteDesignToken;
|
||||
amber?: PaletteDesignToken;
|
||||
yellow?: PaletteDesignToken;
|
||||
teal?: PaletteDesignToken;
|
||||
cyan?: PaletteDesignToken;
|
||||
sky?: PaletteDesignToken;
|
||||
blue?: PaletteDesignToken;
|
||||
indigo?: PaletteDesignToken;
|
||||
violet?: PaletteDesignToken;
|
||||
purple?: PaletteDesignToken;
|
||||
fuchsia?: PaletteDesignToken;
|
||||
pink?: PaletteDesignToken;
|
||||
rose?: PaletteDesignToken;
|
||||
slate?: PaletteDesignToken;
|
||||
gray?: PaletteDesignToken;
|
||||
zinc?: PaletteDesignToken;
|
||||
neutral?: PaletteDesignToken;
|
||||
stone?: PaletteDesignToken;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export interface SemanticDesignTokens {
|
||||
transitionDuration?: string;
|
||||
focusRing?: {
|
||||
width?: string;
|
||||
style?: string;
|
||||
color?: string;
|
||||
offset?: string;
|
||||
shadow?: string;
|
||||
};
|
||||
iconSize?: string;
|
||||
anchorGutter?: string;
|
||||
primary?: PaletteDesignToken;
|
||||
formField: {
|
||||
paddingX?: string;
|
||||
paddingY?: string;
|
||||
borderRadius?: string;
|
||||
focusRing?: {
|
||||
width?: string;
|
||||
style?: string;
|
||||
color?: string;
|
||||
offset?: string;
|
||||
shadow?: string;
|
||||
};
|
||||
};
|
||||
// @todo
|
||||
[key: string]: any;
|
||||
}
|
|
@ -0,0 +1,164 @@
|
|||
/**
|
||||
*
|
||||
* InputText renders a text field to enter data.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
*
|
||||
* @module aura/inputtext
|
||||
*
|
||||
*/
|
||||
import { ColorSchemeDesignToken } from '..';
|
||||
|
||||
/**
|
||||
* Defines all sections of design tokens
|
||||
*/
|
||||
export namespace InputTextDesignToken {
|
||||
/**
|
||||
* Tokens of the root section
|
||||
*/
|
||||
export interface Root {
|
||||
/**
|
||||
* Background of an input field
|
||||
*
|
||||
* @designToken inputtext.background
|
||||
*/
|
||||
background?: string;
|
||||
/**
|
||||
* Background of an input field when disabled
|
||||
*
|
||||
* @designToken inputtext.disabled.background
|
||||
*/
|
||||
disabledBackground?: string;
|
||||
/**
|
||||
* Background of an input field when filled mode
|
||||
*
|
||||
* @designToken inputtext.filled.background
|
||||
*/
|
||||
filledBackground?: string;
|
||||
/**
|
||||
* Background of an input field on the focus state of filled mode
|
||||
*
|
||||
* @designToken inputtext.filled.focus.background
|
||||
*/
|
||||
filledFocusBackground?: string;
|
||||
/**
|
||||
* Border color of an input field
|
||||
*
|
||||
* @designToken inputtext.border.color
|
||||
*/
|
||||
borderColor?: string;
|
||||
/**
|
||||
* Border color of an input field on the hover state
|
||||
*
|
||||
* @designToken inputtext.hover.border.color
|
||||
*/
|
||||
hoverBorderColor?: string;
|
||||
/**
|
||||
* Border color of an input field on the focus state
|
||||
*
|
||||
* @designToken inputtext.focus.border.color
|
||||
*/
|
||||
focusBorderColor?: string;
|
||||
/**
|
||||
* Border color of an input field when invalid
|
||||
*
|
||||
* @designToken inputtext.invalid.border.color
|
||||
*/
|
||||
invalidBorderColor?: string;
|
||||
/**
|
||||
* Color of an input field
|
||||
*
|
||||
* @designToken inputtext.color
|
||||
*/
|
||||
color?: string;
|
||||
/**
|
||||
* Color of an input field when disabled
|
||||
*
|
||||
* @designToken inputtext.disabled.color
|
||||
*/
|
||||
disabledColor?: string;
|
||||
/**
|
||||
* Placeholder color of an input field
|
||||
*
|
||||
* @designToken inputtext.placeholder.color
|
||||
*/
|
||||
placeholderColor?: string;
|
||||
/**
|
||||
* Shadow of an input field
|
||||
*
|
||||
* @designToken inputtext.shadow
|
||||
*/
|
||||
shadow?: string;
|
||||
/**
|
||||
* Padding right and left of an input field
|
||||
*
|
||||
* @designToken inputtext.padding.x
|
||||
*/
|
||||
paddingX?: string;
|
||||
/**
|
||||
* Padding top and bottom of an input field
|
||||
*
|
||||
* @designToken inputtext.padding.y
|
||||
*/
|
||||
paddingY?: string;
|
||||
/**
|
||||
* Border radius of an input field
|
||||
*
|
||||
* @designToken inputtext.border.radius
|
||||
*/
|
||||
borderRadius?: string;
|
||||
/**
|
||||
* Outline of an input field on the focus state
|
||||
*/
|
||||
focusRing?: {
|
||||
/**
|
||||
* Outline width of an input field on the focus state
|
||||
*
|
||||
* @designToken inputtext.focus.ring.width
|
||||
*/
|
||||
width?: string;
|
||||
/**
|
||||
* Outline style of an input field on the focus state
|
||||
*
|
||||
* @designToken inputtext.focus.ring.style
|
||||
*/
|
||||
style?: string;
|
||||
/**
|
||||
* Outline color of an input field on the focus state
|
||||
*
|
||||
* @designToken inputtext.focus.ring.color
|
||||
*/
|
||||
color?: string;
|
||||
/**
|
||||
* Outline offset of an input field on the focus state
|
||||
*
|
||||
* @designToken inputtext.focus.ring.offset
|
||||
*/
|
||||
offset?: string;
|
||||
/**
|
||||
* Shadow of an input field on the focus state
|
||||
*
|
||||
* @designToken inputtext.focus.ring.shadow
|
||||
*/
|
||||
shadow?: string;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* **PrimeVue - InputText**
|
||||
*
|
||||
* _InputText renders a text field to enter data._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
* --- ---
|
||||
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
||||
*
|
||||
* @group DesignTokens
|
||||
*/
|
||||
export interface InputTextDesignTokens extends ColorSchemeDesignToken<InputTextDesignTokens> {
|
||||
/**
|
||||
* Used to pass tokens of the root section
|
||||
*/
|
||||
root?: InputTextDesignToken.Root;
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
/**
|
||||
*
|
||||
* InputText renders a text field to enter data.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
*
|
||||
* @module lara/inputtext
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Defines all sections of design tokens
|
||||
*/
|
||||
export namespace InputTextDesignToken {
|
||||
/**
|
||||
* Tokens of the root section
|
||||
*/
|
||||
export interface Root {
|
||||
/**
|
||||
* Background of an input field
|
||||
*
|
||||
* @designToken inputtext.background
|
||||
*/
|
||||
background?: string;
|
||||
/**
|
||||
* Background of an input field when disabled
|
||||
*
|
||||
* @designToken inputtext.disabled.background
|
||||
*/
|
||||
disabledBackground?: string;
|
||||
/**
|
||||
* Background of an input field when filled mode
|
||||
*
|
||||
* @designToken inputtext.filled.background
|
||||
*/
|
||||
filledBackground?: string;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* **PrimeVue - InputText**
|
||||
*
|
||||
* _InputText renders a text field to enter data._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
* --- ---
|
||||
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
||||
*
|
||||
* @group DesignTokens
|
||||
*/
|
||||
export interface InputTextDesignTokens {
|
||||
/**
|
||||
* Used to pass tokens of the root section
|
||||
*/
|
||||
root?: InputTextDesignToken.Root;
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
*
|
||||
* InputText renders a text field to enter data.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
*
|
||||
* @module nora/inputtext
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Defines all sections of design tokens
|
||||
*/
|
||||
export namespace InputTextDesignToken {
|
||||
/**
|
||||
* Tokens of the root section
|
||||
*/
|
||||
export interface Root {
|
||||
/**
|
||||
* Background of an input field
|
||||
*
|
||||
* @designToken inputtext.background
|
||||
*/
|
||||
background?: string;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* **PrimeVue - InputText**
|
||||
*
|
||||
* _InputText renders a text field to enter data._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
* --- ---
|
||||
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
||||
*
|
||||
* @group DesignTokens
|
||||
*/
|
||||
export interface InputTextDesignTokens {
|
||||
/**
|
||||
* Used to pass tokens of the root section
|
||||
*/
|
||||
root?: InputTextDesignToken.Root;
|
||||
}
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,32 +26,32 @@ export default {
|
|||
id: 'pt.doc.accordion',
|
||||
label: 'Accordion PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Accordion')
|
||||
data: getPTOptions('Accordion')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.accordionpanel',
|
||||
label: 'AccordionPanel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('AccordionPanel')
|
||||
data: getPTOptions('AccordionPanel')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.accordionheader',
|
||||
label: 'AccordionHeader PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('AccordionHeader')
|
||||
data: getPTOptions('AccordionHeader')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.accordioncontent',
|
||||
label: 'AccordionContent PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('AccordionContent')
|
||||
data: getPTOptions('AccordionContent')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.accordiontab',
|
||||
label: 'AccordionTab PT Options',
|
||||
badge: { value: 'Deprecated since v4', severity: 'warn' },
|
||||
component: DocApiTable,
|
||||
data: getPTOption('AccordionTab')
|
||||
data: getPTOptions('AccordionTab')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.autocomplete',
|
||||
label: 'AutoComplete PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('AutoComplete')
|
||||
data: getPTOptions('AutoComplete')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,13 +26,13 @@ export default {
|
|||
id: 'pt.doc.avatar',
|
||||
label: 'Avatar PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Avatar')
|
||||
data: getPTOptions('Avatar')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.avatar',
|
||||
label: 'AvatarGroup PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('AvatarGroup')
|
||||
data: getPTOptions('AvatarGroup')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.badge',
|
||||
label: 'Badge PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Badge')
|
||||
data: getPTOptions('Badge')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.blockui',
|
||||
label: 'BlockUI PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('BlockUI')
|
||||
data: getPTOptions('BlockUI')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.breadcrumb',
|
||||
label: 'Breadcrumb PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Breadcrumb')
|
||||
data: getPTOptions('Breadcrumb')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.button',
|
||||
label: 'Button PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Button')
|
||||
data: getPTOptions('Button')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.card',
|
||||
label: 'Card PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Card')
|
||||
data: getPTOptions('Card')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.carousel',
|
||||
label: 'Carousel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Carousel')
|
||||
data: getPTOptions('Carousel')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.cascadeselect',
|
||||
label: 'CascadeSelect PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('CascadeSelect')
|
||||
data: getPTOptions('CascadeSelect')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.chart',
|
||||
label: 'Chart PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Chart')
|
||||
data: getPTOptions('Chart')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.checkbox',
|
||||
label: 'Checkbox PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Checkbox')
|
||||
data: getPTOptions('Checkbox')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.chip',
|
||||
label: 'Chip PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Chip')
|
||||
data: getPTOptions('Chip')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.colorpicker',
|
||||
label: 'ColorPicker PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ColorPicker')
|
||||
data: getPTOptions('ColorPicker')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -6157,9 +6157,9 @@
|
|||
"name": "size",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "null | \"large\" | \"xlarge\"",
|
||||
"type": "null | \"small\" | \"large\" | \"xlarge\"",
|
||||
"default": "",
|
||||
"description": "Size of the badge, valid options are 'large' and 'xlarge'."
|
||||
"description": "Size of the badge, valid options are 'small', 'large', and 'xlarge'."
|
||||
},
|
||||
{
|
||||
"name": "dt",
|
||||
|
@ -40265,7 +40265,8 @@
|
|||
"name": "root",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"value": "\"p-inputtext\""
|
||||
"value": "\"p-inputtext\"",
|
||||
"description": "The class of input element"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -66270,7 +66271,7 @@
|
|||
"themes/aura/inputgroup": {},
|
||||
"themes/aura/inputnumber": {},
|
||||
"themes/aura/inputotp": {},
|
||||
"inputtexttheme": {
|
||||
"aura/inputtext": {
|
||||
"description": "InputText renders a text field to enter data.\n\n[Live Demo](https://www.primevue.org/inputtext/)",
|
||||
"tokens": {
|
||||
"description": "Define design tokens used by the component.",
|
||||
|
@ -66552,7 +66553,46 @@
|
|||
"themes/lara/inputgroup": {},
|
||||
"themes/lara/inputnumber": {},
|
||||
"themes/lara/inputotp": {},
|
||||
"themes/lara/inputtext": {},
|
||||
"lara/inputtext": {
|
||||
"description": "InputText renders a text field to enter data.\n\n[Live Demo](https://www.primevue.org/inputtext/)",
|
||||
"tokens": {
|
||||
"description": "Define design tokens used by the component.",
|
||||
"values": {
|
||||
"Root": {
|
||||
"description": "Tokens of the root section",
|
||||
"props": [
|
||||
{
|
||||
"name": "background",
|
||||
"token": "inputtext.background",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Background of an input field"
|
||||
},
|
||||
{
|
||||
"name": "disabledBackground",
|
||||
"token": "inputtext.disabled.background",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Background of an input field when disabled"
|
||||
},
|
||||
{
|
||||
"name": "filledBackground",
|
||||
"token": "inputtext.filled.background",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Background of an input field when filled mode"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"themes/lara/knob": {},
|
||||
"themes/lara/listbox": {},
|
||||
"themes/lara/megamenu": {},
|
||||
|
@ -66601,6 +66641,114 @@
|
|||
"themes/lara/tree": {},
|
||||
"themes/lara/treeselect": {},
|
||||
"themes/lara/treetable": {},
|
||||
"themes/nora/accordion": {},
|
||||
"themes/nora/autocomplete": {},
|
||||
"themes/nora/avatar": {},
|
||||
"themes/nora/badge": {},
|
||||
"themes/nora/blockui": {},
|
||||
"themes/nora/breadcrumb": {},
|
||||
"themes/nora/button": {},
|
||||
"themes/nora/buttongroup": {},
|
||||
"themes/nora/card": {},
|
||||
"themes/nora/carousel": {},
|
||||
"themes/nora/cascadeselect": {},
|
||||
"themes/nora/checkbox": {},
|
||||
"themes/nora/chip": {},
|
||||
"themes/nora/colorpicker": {},
|
||||
"themes/nora/confirmdialog": {},
|
||||
"themes/nora/confirmpopup": {},
|
||||
"themes/nora/contextmenu": {},
|
||||
"themes/nora/datatable": {},
|
||||
"themes/nora/dataview": {},
|
||||
"themes/nora/datepicker": {},
|
||||
"themes/nora/dialog": {},
|
||||
"themes/nora/divider": {},
|
||||
"themes/nora/dock": {},
|
||||
"themes/nora/drawer": {},
|
||||
"themes/nora/editor": {},
|
||||
"themes/nora/fieldset": {},
|
||||
"themes/nora/fileupload": {},
|
||||
"themes/nora/floatlabel": {},
|
||||
"themes/nora/galleria": {},
|
||||
"themes/nora/iconfield": {},
|
||||
"themes/nora/image": {},
|
||||
"themes/nora": {},
|
||||
"themes/nora/inlinemessage": {},
|
||||
"themes/nora/inplace": {},
|
||||
"themes/nora/inputchips": {},
|
||||
"themes/nora/inputgroup": {},
|
||||
"themes/nora/inputnumber": {},
|
||||
"themes/nora/inputotp": {},
|
||||
"nora/inputtext": {
|
||||
"description": "InputText renders a text field to enter data.\n\n[Live Demo](https://www.primevue.org/inputtext/)",
|
||||
"tokens": {
|
||||
"description": "Define design tokens used by the component.",
|
||||
"values": {
|
||||
"Root": {
|
||||
"description": "Tokens of the root section",
|
||||
"props": [
|
||||
{
|
||||
"name": "background",
|
||||
"token": "inputtext.background",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Background of an input field"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"themes/nora/knob": {},
|
||||
"themes/nora/listbox": {},
|
||||
"themes/nora/megamenu": {},
|
||||
"themes/nora/menu": {},
|
||||
"themes/nora/menubar": {},
|
||||
"themes/nora/message": {},
|
||||
"themes/nora/metergroup": {},
|
||||
"themes/nora/multiselect": {},
|
||||
"themes/nora/orderlist": {},
|
||||
"themes/nora/organizationchart": {},
|
||||
"themes/nora/paginator": {},
|
||||
"themes/nora/panel": {},
|
||||
"themes/nora/panelmenu": {},
|
||||
"themes/nora/password": {},
|
||||
"themes/nora/picklist": {},
|
||||
"themes/nora/popover": {},
|
||||
"themes/nora/progressbar": {},
|
||||
"themes/nora/progressspinner": {},
|
||||
"themes/nora/radiobutton": {},
|
||||
"themes/nora/rating": {},
|
||||
"themes/nora/ripple": {},
|
||||
"themes/nora/scrollpanel": {},
|
||||
"themes/nora/scrolltop": {},
|
||||
"themes/nora/select": {},
|
||||
"themes/nora/selectbutton": {},
|
||||
"themes/nora/skeleton": {},
|
||||
"themes/nora/slider": {},
|
||||
"themes/nora/speeddial": {},
|
||||
"themes/nora/splitbutton": {},
|
||||
"themes/nora/splitter": {},
|
||||
"themes/nora/stepper": {},
|
||||
"themes/nora/steps": {},
|
||||
"themes/nora/tabmenu": {},
|
||||
"themes/nora/tabs": {},
|
||||
"themes/nora/tabview": {},
|
||||
"themes/nora/tag": {},
|
||||
"themes/nora/terminal": {},
|
||||
"themes/nora/textarea": {},
|
||||
"themes/nora/tieredmenu": {},
|
||||
"themes/nora/timeline": {},
|
||||
"themes/nora/toast": {},
|
||||
"themes/nora/togglebutton": {},
|
||||
"themes/nora/toggleswitch": {},
|
||||
"themes/nora/toolbar": {},
|
||||
"themes/nora/tooltip": {},
|
||||
"themes/nora/tree": {},
|
||||
"themes/nora/treeselect": {},
|
||||
"themes/nora/treetable": {},
|
||||
"themes/service": {},
|
||||
"themes/utils": {},
|
||||
"tieredmenu": {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.confirmdialog',
|
||||
label: 'ConfirmDialog PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ConfirmDialog')
|
||||
data: getPTOptions('ConfirmDialog')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.confirmpopup',
|
||||
label: 'ConfirmPopup PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ConfirmPopup')
|
||||
data: getPTOptions('ConfirmPopup')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.contextmenu',
|
||||
label: 'ContextMenu PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ContextMenu')
|
||||
data: getPTOptions('ContextMenu')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,25 +26,25 @@ export default {
|
|||
id: 'pt.doc.datatable',
|
||||
label: 'DataTable PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('DataTable')
|
||||
data: getPTOptions('DataTable')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.column',
|
||||
label: 'Column PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Column')
|
||||
data: getPTOptions('Column')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.columngroup',
|
||||
label: 'ColumnGroup PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ColumnGroup')
|
||||
data: getPTOptions('ColumnGroup')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.row',
|
||||
label: 'Row PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Row')
|
||||
data: getPTOptions('Row')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.dataview',
|
||||
label: 'DataView PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('DataView')
|
||||
data: getPTOptions('DataView')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.datepicker',
|
||||
label: 'DatePicker PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('DatePicker')
|
||||
data: getPTOptions('DatePicker')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.deferredcontent',
|
||||
label: 'DeferredContent PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('DeferredContent')
|
||||
data: getPTOptions('DeferredContent')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.dialog',
|
||||
label: 'Dialog PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Dialog')
|
||||
data: getPTOptions('Dialog')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.divider',
|
||||
label: 'Divider PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Divider')
|
||||
data: getPTOptions('Divider')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.dock',
|
||||
label: 'Dock PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Dock')
|
||||
data: getPTOptions('Dock')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.drawer',
|
||||
label: 'Drawer PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Drawer')
|
||||
data: getPTOptions('Drawer')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.dynamicdialog',
|
||||
label: 'Dialog PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Dialog')
|
||||
data: getPTOptions('Dialog')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.editor',
|
||||
label: 'Editor PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Editor')
|
||||
data: getPTOptions('Editor')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.fieldset',
|
||||
label: 'Fieldset PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Fieldset')
|
||||
data: getPTOptions('Fieldset')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.fileupload',
|
||||
label: 'FileUpload PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('FileUpload')
|
||||
data: getPTOptions('FileUpload')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.floatlabel',
|
||||
label: 'FloatLabel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('FloatLabel')
|
||||
data: getPTOptions('FloatLabel')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.galleria',
|
||||
label: 'Galleria PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Galleria')
|
||||
data: getPTOptions('Galleria')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,13 +26,13 @@ export default {
|
|||
id: 'pt.doc.iconfield',
|
||||
label: 'IconField PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('IconField')
|
||||
data: getPTOptions('IconField')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.inputicon',
|
||||
label: 'InputIcon PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputIcon')
|
||||
data: getPTOptions('InputIcon')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.iconfield',
|
||||
label: 'IconField PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('IconField')
|
||||
data: getPTOptions('IconField')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.image',
|
||||
label: 'Image PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Image')
|
||||
data: getPTOptions('Image')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.inlinemessage',
|
||||
label: 'InlineMessage PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InlineMessage')
|
||||
data: getPTOptions('InlineMessage')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.inplace',
|
||||
label: 'Inplace PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Inplace')
|
||||
data: getPTOptions('Inplace')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.inputchips',
|
||||
label: 'InputChips PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputChips')
|
||||
data: getPTOptions('InputChips')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
// import PtDoc from './PTDoc.vue';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
|
@ -27,13 +27,13 @@ export default {
|
|||
id: 'pt.doc.inputgroup',
|
||||
label: 'InputGroup PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputGroup')
|
||||
data: getPTOptions('InputGroup')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.inputgroupaddon',
|
||||
label: 'InputGroupAddon PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputGroupAddon')
|
||||
data: getPTOptions('InputGroupAddon')
|
||||
}
|
||||
// {
|
||||
// id: 'pt.demo',
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.inputmask',
|
||||
label: 'InputMask PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputMask')
|
||||
data: getPTOptions('InputMask')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.inputnumber',
|
||||
label: 'InputNumber PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputNumber')
|
||||
data: getPTOptions('InputNumber')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.inputotp',
|
||||
label: 'InputOtp PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputOtp')
|
||||
data: getPTOptions('InputOtp')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.inputtext',
|
||||
label: 'InputText PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('InputText')
|
||||
data: getPTOptions('InputText')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import StyledDoc from './StyledDoc.vue';
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getStyleOptions, getTokenOptions } from '@/components/doc/helpers';
|
||||
import TailwindDoc from './TailwindDoc.vue';
|
||||
|
||||
export default {
|
||||
|
@ -19,7 +20,16 @@ export default {
|
|||
{
|
||||
id: 'theming.styled',
|
||||
label: 'Styled',
|
||||
component: StyledDoc
|
||||
description: 'List of class names used in the styled mode.',
|
||||
component: DocApiTable,
|
||||
data: getStyleOptions('InputText')
|
||||
},
|
||||
{
|
||||
id: 'theming.tokens',
|
||||
label: 'Design Tokens',
|
||||
description: `List of design tokens used in <i>${this.$appState.preset}</i> Preset.`,
|
||||
component: DocApiTable,
|
||||
data: getTokenOptions(this.$appState.preset, 'InputText')
|
||||
},
|
||||
{
|
||||
id: 'theming.unstyled',
|
||||
|
@ -35,6 +45,14 @@ export default {
|
|||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
'$appState.preset': {
|
||||
flush: 'post',
|
||||
handler(newValue) {
|
||||
this.docs[1] = { ...this.docs[1], description: `List of design tokens used in <i>${newValue}</i> Preset.`, data: getTokenOptions(newValue, 'InputText') };
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.knob',
|
||||
label: 'Knob PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Knob')
|
||||
data: getPTOptions('Knob')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.listbox',
|
||||
label: 'Listbox PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Listbox')
|
||||
data: getPTOptions('Listbox')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.megamenu',
|
||||
label: 'MegaMenu PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('MegaMenu')
|
||||
data: getPTOptions('MegaMenu')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.menu',
|
||||
label: 'Menu PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Menu')
|
||||
data: getPTOptions('Menu')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.menubar',
|
||||
label: 'Menubar PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Menubar')
|
||||
data: getPTOptions('Menubar')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.message',
|
||||
label: 'Message PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Message')
|
||||
data: getPTOptions('Message')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.metergroup',
|
||||
label: 'MeterGroup PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('MeterGroup')
|
||||
data: getPTOptions('MeterGroup')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.multiselect',
|
||||
label: 'MultiSelect PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('MultiSelect')
|
||||
data: getPTOptions('MultiSelect')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.orderlist',
|
||||
label: 'OrderList PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('OrderList')
|
||||
data: getPTOptions('OrderList')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.organizationchart',
|
||||
label: 'OrganizationChart PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('OrganizationChart')
|
||||
data: getPTOptions('OrganizationChart')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.paginator',
|
||||
label: 'Paginator PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Paginator')
|
||||
data: getPTOptions('Paginator')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.panel',
|
||||
label: 'Panel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Panel')
|
||||
data: getPTOptions('Panel')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.panelmenu',
|
||||
label: 'PanelMenu PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('PanelMenu')
|
||||
data: getPTOptions('PanelMenu')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.password',
|
||||
label: 'Password PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Password')
|
||||
data: getPTOptions('Password')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.picklist',
|
||||
label: 'PickList PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('PickList')
|
||||
data: getPTOptions('PickList')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.popover',
|
||||
label: 'Popover PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Popover')
|
||||
data: getPTOptions('Popover')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.progressbar',
|
||||
label: 'ProgressBar PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ProgressBar')
|
||||
data: getPTOptions('ProgressBar')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.progressspinner',
|
||||
label: 'ProgressSpinner PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ProgressSpinner')
|
||||
data: getPTOptions('ProgressSpinner')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.radiobutton',
|
||||
label: 'RadioButton PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('RadioButton')
|
||||
data: getPTOptions('RadioButton')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.steps',
|
||||
label: 'Rating PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Rating')
|
||||
data: getPTOptions('Rating')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.steps',
|
||||
label: 'Ripple PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Ripple')
|
||||
data: getPTOptions('Ripple')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.scrollpanel',
|
||||
label: 'ScrollPanel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ScrollPanel')
|
||||
data: getPTOptions('ScrollPanel')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.scrolltop',
|
||||
label: 'ScrollTop PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ScrollTop')
|
||||
data: getPTOptions('ScrollTop')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.select',
|
||||
label: 'Select PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Select')
|
||||
data: getPTOptions('Select')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.steps',
|
||||
label: 'SelectButton PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('SelectButton')
|
||||
data: getPTOptions('SelectButton')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.skeleton',
|
||||
label: 'Skeleton PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Skeleton')
|
||||
data: getPTOptions('Skeleton')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.steps',
|
||||
label: 'Slider PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Slider')
|
||||
data: getPTOptions('Slider')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.speeddial',
|
||||
label: 'SpeedDial PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('SpeedDial')
|
||||
data: getPTOptions('SpeedDial')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.splitbutton',
|
||||
label: 'SplitButton PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('SplitButton')
|
||||
data: getPTOptions('SplitButton')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,13 +26,13 @@ export default {
|
|||
id: 'pt.doc.splitter',
|
||||
label: 'Splitter PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Splitter')
|
||||
data: getPTOptions('Splitter')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.splitterpanel',
|
||||
label: 'SplitterPanel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('SplitterPanel')
|
||||
data: getPTOptions('SplitterPanel')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,13 +26,13 @@ export default {
|
|||
id: 'pt.doc.stepper',
|
||||
label: 'Stepper PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Stepper')
|
||||
data: getPTOptions('Stepper')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.stepperpanel',
|
||||
label: 'StepperPanel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('StepperPanel')
|
||||
data: getPTOptions('StepperPanel')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.steps',
|
||||
label: 'Steps PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Steps')
|
||||
data: getPTOptions('Steps')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.tabmenu',
|
||||
label: 'TabMenu PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('TabMenu')
|
||||
data: getPTOptions('TabMenu')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,31 +26,31 @@ export default {
|
|||
id: 'pt.doc.tabs',
|
||||
label: 'Tabs PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Tabs')
|
||||
data: getPTOptions('Tabs')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.tablist',
|
||||
label: 'TabList PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('TabList')
|
||||
data: getPTOptions('TabList')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.tab',
|
||||
label: 'Tab PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Tab')
|
||||
data: getPTOptions('Tab')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.tabpanels',
|
||||
label: 'TabPanels PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('TabPanels')
|
||||
data: getPTOptions('TabPanels')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.tabpanel',
|
||||
label: 'TabPanel PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('TabPanel')
|
||||
data: getPTOptions('TabPanel')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.tag',
|
||||
label: 'Tag PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Tag')
|
||||
data: getPTOptions('Tag')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.terminal',
|
||||
label: 'Terminal PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Terminal')
|
||||
data: getPTOptions('Terminal')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.textarea',
|
||||
label: 'Textarea PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Textarea')
|
||||
data: getPTOptions('Textarea')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.tieredmenu',
|
||||
label: 'TieredMenu PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('TieredMenu')
|
||||
data: getPTOptions('TieredMenu')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.timeline',
|
||||
label: 'Timeline PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Timeline')
|
||||
data: getPTOptions('Timeline')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.toast',
|
||||
label: 'Toast PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Toast')
|
||||
data: getPTOptions('Toast')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.steps',
|
||||
label: 'ToggleButton PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ToggleButton')
|
||||
data: getPTOptions('ToggleButton')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.toggleswitch',
|
||||
label: 'ToggleSwitch PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('ToggleSwitch')
|
||||
data: getPTOptions('ToggleSwitch')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.toolbar',
|
||||
label: 'Toolbar PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Toolbar')
|
||||
data: getPTOptions('Toolbar')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.tooltip',
|
||||
label: 'Tooltip PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Tooltip')
|
||||
data: getPTOptions('Tooltip')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.tree',
|
||||
label: 'Tree PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Tree')
|
||||
data: getPTOptions('Tree')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,7 +26,7 @@ export default {
|
|||
id: 'pt.doc.treeselect',
|
||||
label: 'TreeSelect PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('TreeSelect')
|
||||
data: getPTOptions('TreeSelect')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import { getPTOptions } from '@/components/doc/helpers';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
|
@ -26,13 +26,13 @@ export default {
|
|||
id: 'pt.doc.treetable',
|
||||
label: 'TreeTable PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('TreeTable')
|
||||
data: getPTOptions('TreeTable')
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.column',
|
||||
label: 'Column PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Column')
|
||||
data: getPTOptions('Column')
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue