Refactor
parent
a05d2dbb57
commit
3c6b715f07
|
@ -4367,7 +4367,7 @@
|
|||
"methodDescription": "Defines methods that can be accessed by the component's reference.",
|
||||
"typeDescription": "Defines the custom types used by the module.",
|
||||
"values": {
|
||||
"BadgePassThroughMethodOptions": {
|
||||
"BadgeDirectivePassThroughMethodOptions": {
|
||||
"description": "Custom passthrough(pt) option method.",
|
||||
"relatedProp": "",
|
||||
"props": [
|
||||
|
@ -4603,7 +4603,7 @@
|
|||
"tokens": {
|
||||
"description": "Define design tokens used by the component.",
|
||||
"values": {
|
||||
"BadgePassThroughMethodOptions": {
|
||||
"BadgeDirectivePassThroughMethodOptions": {
|
||||
"description": "Custom passthrough(pt) option method.",
|
||||
"props": []
|
||||
},
|
||||
|
@ -4637,7 +4637,7 @@
|
|||
"description": "Defines the custom types used by the module.",
|
||||
"values": {
|
||||
"BadgeDirectivePassThroughOptionType": {
|
||||
"values": "BadgeDirectivePassThroughAttributes | (options: BadgePassThroughMethodOptions) => BadgeDirectivePassThroughAttributes | null | undefined"
|
||||
"values": "BadgeDirectivePassThroughAttributes | (options: BadgeDirectivePassThroughMethodOptions) => BadgeDirectivePassThroughAttributes | null | undefined"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -31421,6 +31421,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"primevue/src": {},
|
||||
"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": {
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
"../../packages/primevue/src/**/style/*.d.ts",
|
||||
"../../packages/themes/types",
|
||||
"../packages/themes/src/**/**/index.js",
|
||||
"../packages/form/src/**/*.d.ts",
|
||||
"../../packages/form/src/**/*.d.ts",
|
||||
"../../packages/form/src/**/style/*.d.ts"
|
||||
"../packages/forms/src/**/*.d.ts",
|
||||
"../../packages/forms/src/**/*.d.ts",
|
||||
"../../packages/forms/src/**/style/*.d.ts"
|
||||
],
|
||||
"exclude": ["node_modules", "**/node_modules", "**/dist"]
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"$schema": "https://typedoc.org/schema.json",
|
||||
"entryPoints": ["../../packages/primevue", "../../packages/themes", "../../packages/form"],
|
||||
"entryPoints": ["../../packages/primevue", "../../packages/themes", "../../packages/forms"],
|
||||
"sort": ["source-order"]
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* Form provides validation functionality and manages form state.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/form/)
|
||||
* [Live Demo](https://www.primevue.org/forms/)
|
||||
*
|
||||
* @module form
|
||||
*
|
||||
|
@ -263,7 +263,7 @@ export declare type FormEmits = EmitFn<FormEmitsOptions>;
|
|||
*
|
||||
* _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)
|
||||
*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/form/)
|
||||
* [Live Demo](https://www.primevue.org/forms/)
|
||||
*
|
||||
* @module formstyle
|
||||
*
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* 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
|
||||
*/
|
||||
|
@ -211,7 +211,7 @@ export declare type FormEmits = EmitFn<FormFieldEmitsOptions>;
|
|||
*
|
||||
* _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)
|
||||
*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/form/)
|
||||
* [Live Demo](https://www.primevue.org/forms/)
|
||||
*
|
||||
* @module formfieldstyle
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue