Refactor
parent
a05d2dbb57
commit
3c6b715f07
|
@ -4367,7 +4367,7 @@
|
||||||
"methodDescription": "Defines methods that can be accessed by the component's reference.",
|
"methodDescription": "Defines methods that can be accessed by the component's reference.",
|
||||||
"typeDescription": "Defines the custom types used by the module.",
|
"typeDescription": "Defines the custom types used by the module.",
|
||||||
"values": {
|
"values": {
|
||||||
"BadgePassThroughMethodOptions": {
|
"BadgeDirectivePassThroughMethodOptions": {
|
||||||
"description": "Custom passthrough(pt) option method.",
|
"description": "Custom passthrough(pt) option method.",
|
||||||
"relatedProp": "",
|
"relatedProp": "",
|
||||||
"props": [
|
"props": [
|
||||||
|
@ -4603,7 +4603,7 @@
|
||||||
"tokens": {
|
"tokens": {
|
||||||
"description": "Define design tokens used by the component.",
|
"description": "Define design tokens used by the component.",
|
||||||
"values": {
|
"values": {
|
||||||
"BadgePassThroughMethodOptions": {
|
"BadgeDirectivePassThroughMethodOptions": {
|
||||||
"description": "Custom passthrough(pt) option method.",
|
"description": "Custom passthrough(pt) option method.",
|
||||||
"props": []
|
"props": []
|
||||||
},
|
},
|
||||||
|
@ -4637,7 +4637,7 @@
|
||||||
"description": "Defines the custom types used by the module.",
|
"description": "Defines the custom types used by the module.",
|
||||||
"values": {
|
"values": {
|
||||||
"BadgeDirectivePassThroughOptionType": {
|
"BadgeDirectivePassThroughOptionType": {
|
||||||
"values": "BadgeDirectivePassThroughAttributes | (options: BadgePassThroughMethodOptions) => BadgeDirectivePassThroughAttributes | null | undefined"
|
"values": "BadgeDirectivePassThroughAttributes | (options: BadgeDirectivePassThroughMethodOptions) => BadgeDirectivePassThroughAttributes | null | undefined"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31421,6 +31421,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"primevue/src": {},
|
||||||
"inlinemessage": {
|
"inlinemessage": {
|
||||||
"description": "InlineMessage component is useful in cases where a single message needs to be displayed related to an element such as forms. It has one property, severity of the message.\n\n[Live Demo](https://www.primevue.org/inlinemessage/)",
|
"description": "InlineMessage component is useful in cases where a single message needs to be displayed related to an element such as forms. It has one property, severity of the message.\n\n[Live Demo](https://www.primevue.org/inlinemessage/)",
|
||||||
"components": {
|
"components": {
|
||||||
|
|
|
@ -20,9 +20,9 @@
|
||||||
"../../packages/primevue/src/**/style/*.d.ts",
|
"../../packages/primevue/src/**/style/*.d.ts",
|
||||||
"../../packages/themes/types",
|
"../../packages/themes/types",
|
||||||
"../packages/themes/src/**/**/index.js",
|
"../packages/themes/src/**/**/index.js",
|
||||||
"../packages/form/src/**/*.d.ts",
|
"../packages/forms/src/**/*.d.ts",
|
||||||
"../../packages/form/src/**/*.d.ts",
|
"../../packages/forms/src/**/*.d.ts",
|
||||||
"../../packages/form/src/**/style/*.d.ts"
|
"../../packages/forms/src/**/style/*.d.ts"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "**/node_modules", "**/dist"]
|
"exclude": ["node_modules", "**/node_modules", "**/dist"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://typedoc.org/schema.json",
|
"$schema": "https://typedoc.org/schema.json",
|
||||||
"entryPoints": ["../../packages/primevue", "../../packages/themes", "../../packages/form"],
|
"entryPoints": ["../../packages/primevue", "../../packages/themes", "../../packages/forms"],
|
||||||
"sort": ["source-order"]
|
"sort": ["source-order"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
*
|
*
|
||||||
* Form provides validation functionality and manages form state.
|
* Form provides validation functionality and manages form state.
|
||||||
*
|
*
|
||||||
* [Live Demo](https://www.primevue.org/form/)
|
* [Live Demo](https://www.primevue.org/forms/)
|
||||||
*
|
*
|
||||||
* @module form
|
* @module form
|
||||||
*
|
*
|
||||||
|
@ -263,7 +263,7 @@ export declare type FormEmits = EmitFn<FormEmitsOptions>;
|
||||||
*
|
*
|
||||||
* _Form provides validation functionality and manages form state._
|
* _Form provides validation functionality and manages form state._
|
||||||
*
|
*
|
||||||
* [Live Demo](https://www.primevue.org/form/)
|
* [Live Demo](https://www.primevue.org/forms/)
|
||||||
* --- ---
|
* --- ---
|
||||||
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* [Live Demo](https://www.primevue.org/form/)
|
* [Live Demo](https://www.primevue.org/forms/)
|
||||||
*
|
*
|
||||||
* @module formstyle
|
* @module formstyle
|
||||||
*
|
*
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
*
|
*
|
||||||
* FormField is a helper component that provides validation and tracking for form fields.
|
* FormField is a helper component that provides validation and tracking for form fields.
|
||||||
*
|
*
|
||||||
* [Live Demo](https://www.primevue.org/form/)
|
* [Live Demo](https://www.primevue.org/forms/)
|
||||||
*
|
*
|
||||||
* @module formfield
|
* @module formfield
|
||||||
*/
|
*/
|
||||||
|
@ -211,7 +211,7 @@ export declare type FormEmits = EmitFn<FormFieldEmitsOptions>;
|
||||||
*
|
*
|
||||||
* _FormField is a helper component that provides validation and tracking for form fields._
|
* _FormField is a helper component that provides validation and tracking for form fields._
|
||||||
*
|
*
|
||||||
* [Live Demo](https://www.primevue.org/form/)
|
* [Live Demo](https://www.primevue.org/forms/)
|
||||||
* --- ---
|
* --- ---
|
||||||
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* [Live Demo](https://www.primevue.org/form/)
|
* [Live Demo](https://www.primevue.org/forms/)
|
||||||
*
|
*
|
||||||
* @module formfieldstyle
|
* @module formfieldstyle
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue