@sfxcode/formkit-primevue 3.3.3 → 3.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -138
- package/dist/components/FormKitDataDebug.vue +5 -9
- package/dist/components/FormKitDataEdit.vue +53 -46
- package/dist/components/FormKitDataView.vue +20 -27
- package/dist/components/FormKitIcon.vue +6 -13
- package/dist/components/FormKitPrefix.vue +3 -3
- package/dist/components/FormKitSuffix.vue +3 -3
- package/dist/components/PrimeAutoComplete.vue +41 -86
- package/dist/components/PrimeCascadeSelect.vue +7 -26
- package/dist/components/PrimeCheckbox.vue +9 -29
- package/dist/components/PrimeColorPicker.vue +7 -22
- package/dist/components/PrimeDatePicker.vue +17 -73
- package/dist/components/PrimeInputMask.vue +10 -29
- package/dist/components/PrimeInputNumber.vue +21 -56
- package/dist/components/PrimeInputOtp.vue +7 -24
- package/dist/components/PrimeInputText.vue +10 -25
- package/dist/components/PrimeKnob.vue +12 -37
- package/dist/components/PrimeListbox.vue +7 -39
- package/dist/components/PrimeMultiSelect.vue +7 -52
- package/dist/components/PrimeOutputBoolean.vue +28 -27
- package/dist/components/PrimeOutputDate.vue +33 -33
- package/dist/components/PrimeOutputDuration.vue +23 -19
- package/dist/components/PrimeOutputLink.vue +29 -27
- package/dist/components/PrimeOutputList.vue +71 -40
- package/dist/components/PrimeOutputNumber.vue +36 -39
- package/dist/components/PrimeOutputReference.vue +32 -30
- package/dist/components/PrimeOutputText.vue +53 -53
- package/dist/components/PrimePassword.vue +11 -32
- package/dist/components/PrimeRadioButton.vue +19 -29
- package/dist/components/PrimeRating.vue +7 -22
- package/dist/components/PrimeSelect.vue +7 -49
- package/dist/components/PrimeSelectButton.vue +7 -27
- package/dist/components/PrimeSlider.vue +10 -28
- package/dist/components/PrimeTextarea.vue +7 -23
- package/dist/components/PrimeToggleButton.vue +7 -25
- package/dist/components/PrimeToggleSwitch.vue +8 -23
- package/dist/components/PrimeTreeSelect.vue +7 -30
- package/dist/components/index.d.ts +23 -23
- package/dist/composables/index.d.ts +8 -8
- package/dist/composables/index.js +8 -8
- package/dist/composables/index.mjs +8 -8
- package/dist/composables/useFormKitInput.js +5 -1
- package/dist/composables/useFormKitInput.mjs +13 -1
- package/dist/composables/useFormKitRepeater.js +1 -1
- package/dist/composables/useFormKitRepeater.mjs +45 -17
- package/dist/composables/useFormKitSchema.mjs +10 -2
- package/dist/composables/useInputEditor.js +4 -4
- package/dist/composables/useInputEditor.mjs +52 -24
- package/dist/composables/useInputEditorSchema.js +3 -3
- package/dist/composables/useInputEditorSchema.mjs +25 -17
- package/dist/composables/useOutputDuration.mjs +3 -6
- package/dist/definitions/index.js +2 -2
- package/dist/definitions/index.mjs +2 -2
- package/dist/definitions/input.d.ts +1 -1
- package/dist/definitions/input.mjs +301 -15
- package/dist/definitions/output.d.ts +1 -1
- package/dist/definitions/output.js +1 -1
- package/dist/definitions/output.mjs +95 -14
- package/dist/index.d.ts +48 -48
- package/dist/index.js +12 -12
- package/dist/index.mjs +9 -3
- package/dist/plugins/index.d.ts +1 -1
- package/dist/plugins/index.mjs +31 -27
- package/dist/sass/formkit-primevue.scss +99 -101
- package/dist/vue.d.ts +5 -0
- package/package.json +45 -80
- package/LICENSE +0 -21
- package/components.d.ts +0 -1
- package/dist/components/FormKitDataDebug.d.vue.ts +0 -24
- package/dist/components/FormKitDataDebug.vue.d.ts +0 -24
- package/dist/components/FormKitDataEdit.d.vue.ts +0 -180
- package/dist/components/FormKitDataEdit.vue.d.ts +0 -180
- package/dist/components/FormKitDataView.d.vue.ts +0 -73
- package/dist/components/FormKitDataView.vue.d.ts +0 -73
- package/dist/components/FormKitIcon.d.vue.ts +0 -39
- package/dist/components/FormKitIcon.vue.d.ts +0 -39
- package/dist/components/FormKitPrefix.d.vue.ts +0 -7
- package/dist/components/FormKitPrefix.vue.d.ts +0 -7
- package/dist/components/FormKitSuffix.d.vue.ts +0 -7
- package/dist/components/FormKitSuffix.vue.d.ts +0 -7
- package/dist/components/PrimeAutoComplete.d.vue.ts +0 -31
- package/dist/components/PrimeAutoComplete.vue.d.ts +0 -31
- package/dist/components/PrimeCascadeSelect.d.vue.ts +0 -28
- package/dist/components/PrimeCascadeSelect.vue.d.ts +0 -28
- package/dist/components/PrimeCheckbox.d.vue.ts +0 -27
- package/dist/components/PrimeCheckbox.vue.d.ts +0 -27
- package/dist/components/PrimeColorPicker.d.vue.ts +0 -24
- package/dist/components/PrimeColorPicker.vue.d.ts +0 -24
- package/dist/components/PrimeDatePicker.d.vue.ts +0 -63
- package/dist/components/PrimeDatePicker.vue.d.ts +0 -63
- package/dist/components/PrimeInputMask.d.vue.ts +0 -28
- package/dist/components/PrimeInputMask.vue.d.ts +0 -28
- package/dist/components/PrimeInputNumber.d.vue.ts +0 -36
- package/dist/components/PrimeInputNumber.vue.d.ts +0 -36
- package/dist/components/PrimeInputOtp.d.vue.ts +0 -26
- package/dist/components/PrimeInputOtp.vue.d.ts +0 -26
- package/dist/components/PrimeInputText.d.vue.ts +0 -24
- package/dist/components/PrimeInputText.vue.d.ts +0 -24
- package/dist/components/PrimeKnob.d.vue.ts +0 -31
- package/dist/components/PrimeKnob.vue.d.ts +0 -31
- package/dist/components/PrimeListbox.d.vue.ts +0 -42
- package/dist/components/PrimeListbox.vue.d.ts +0 -42
- package/dist/components/PrimeMultiSelect.d.vue.ts +0 -53
- package/dist/components/PrimeMultiSelect.vue.d.ts +0 -53
- package/dist/components/PrimeOutputBoolean.d.vue.ts +0 -16
- package/dist/components/PrimeOutputBoolean.vue.d.ts +0 -16
- package/dist/components/PrimeOutputDate.d.vue.ts +0 -16
- package/dist/components/PrimeOutputDate.vue.d.ts +0 -16
- package/dist/components/PrimeOutputDuration.d.vue.ts +0 -16
- package/dist/components/PrimeOutputDuration.vue.d.ts +0 -16
- package/dist/components/PrimeOutputLink.d.vue.ts +0 -16
- package/dist/components/PrimeOutputLink.vue.d.ts +0 -16
- package/dist/components/PrimeOutputList.d.vue.ts +0 -19
- package/dist/components/PrimeOutputList.vue.d.ts +0 -19
- package/dist/components/PrimeOutputNumber.d.vue.ts +0 -16
- package/dist/components/PrimeOutputNumber.vue.d.ts +0 -16
- package/dist/components/PrimeOutputReference.d.vue.ts +0 -16
- package/dist/components/PrimeOutputReference.vue.d.ts +0 -16
- package/dist/components/PrimeOutputText.d.vue.ts +0 -22
- package/dist/components/PrimeOutputText.vue.d.ts +0 -22
- package/dist/components/PrimePassword.d.vue.ts +0 -33
- package/dist/components/PrimePassword.vue.d.ts +0 -33
- package/dist/components/PrimeRadioButton.d.vue.ts +0 -28
- package/dist/components/PrimeRadioButton.vue.d.ts +0 -28
- package/dist/components/PrimeRating.d.vue.ts +0 -24
- package/dist/components/PrimeRating.vue.d.ts +0 -24
- package/dist/components/PrimeSelect.d.vue.ts +0 -50
- package/dist/components/PrimeSelect.vue.d.ts +0 -50
- package/dist/components/PrimeSelectButton.d.vue.ts +0 -28
- package/dist/components/PrimeSelectButton.vue.d.ts +0 -28
- package/dist/components/PrimeSlider.d.vue.ts +0 -26
- package/dist/components/PrimeSlider.vue.d.ts +0 -26
- package/dist/components/PrimeTextarea.d.vue.ts +0 -25
- package/dist/components/PrimeTextarea.vue.d.ts +0 -25
- package/dist/components/PrimeToggleButton.d.vue.ts +0 -26
- package/dist/components/PrimeToggleButton.vue.d.ts +0 -26
- package/dist/components/PrimeToggleSwitch.d.vue.ts +0 -23
- package/dist/components/PrimeToggleSwitch.vue.d.ts +0 -23
- package/dist/components/PrimeTreeSelect.d.vue.ts +0 -32
- package/dist/components/PrimeTreeSelect.vue.d.ts +0 -32
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { PropType } from 'vue';
|
|
3
|
-
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
-
context: {
|
|
6
|
-
type: PropType<FormKitFrameworkContext> & FormKitIconProps;
|
|
7
|
-
required: true;
|
|
8
|
-
};
|
|
9
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
-
context: {
|
|
11
|
-
type: PropType<FormKitFrameworkContext> & FormKitIconProps;
|
|
12
|
-
required: true;
|
|
13
|
-
};
|
|
14
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { PropType } from 'vue';
|
|
3
|
-
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
-
export interface FormKitOutputTextProps {
|
|
5
|
-
html?: boolean;
|
|
6
|
-
isTranslationKey?: boolean;
|
|
7
|
-
convertValue?: (value: string) => string;
|
|
8
|
-
maxLength?: number;
|
|
9
|
-
}
|
|
10
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
11
|
-
context: {
|
|
12
|
-
type: PropType<FormKitFrameworkContext> & FormKitIconProps & FormKitOutputTextProps;
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
context: {
|
|
17
|
-
type: PropType<FormKitFrameworkContext> & FormKitIconProps & FormKitOutputTextProps;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
|
-
declare const _default: typeof __VLS_export;
|
|
22
|
-
export default _default;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { PropType } from 'vue';
|
|
3
|
-
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
-
export interface FormKitOutputTextProps {
|
|
5
|
-
html?: boolean;
|
|
6
|
-
isTranslationKey?: boolean;
|
|
7
|
-
convertValue?: (value: string) => string;
|
|
8
|
-
maxLength?: number;
|
|
9
|
-
}
|
|
10
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
11
|
-
context: {
|
|
12
|
-
type: PropType<FormKitFrameworkContext> & FormKitIconProps & FormKitOutputTextProps;
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
context: {
|
|
17
|
-
type: PropType<FormKitFrameworkContext> & FormKitIconProps & FormKitOutputTextProps;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
|
-
declare const _default: typeof __VLS_export;
|
|
22
|
-
export default _default;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { PasswordProps } from 'primevue/password';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimePasswordProps {
|
|
5
|
-
mediumRegex?: PasswordProps['mediumRegex'];
|
|
6
|
-
strongRegex?: PasswordProps['strongRegex'];
|
|
7
|
-
promptLabel?: PasswordProps['promptLabel'];
|
|
8
|
-
weakLabel?: PasswordProps['weakLabel'];
|
|
9
|
-
mediumLabel?: PasswordProps['mediumLabel'];
|
|
10
|
-
strongLabel?: PasswordProps['strongLabel'];
|
|
11
|
-
maskIcon?: PasswordProps['maskIcon'];
|
|
12
|
-
unmaskIcon?: PasswordProps['unmaskIcon'];
|
|
13
|
-
pt?: PasswordProps['pt'];
|
|
14
|
-
ptOptions?: PasswordProps['ptOptions'];
|
|
15
|
-
unstyled?: PasswordProps['unstyled'];
|
|
16
|
-
placeholder?: PasswordProps['placeholder'];
|
|
17
|
-
feedback?: PasswordProps['feedback'];
|
|
18
|
-
toggleMask?: PasswordProps['toggleMask'];
|
|
19
|
-
size?: PasswordProps['size'];
|
|
20
|
-
}
|
|
21
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
22
|
-
context: {
|
|
23
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimePasswordProps>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
-
context: {
|
|
28
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimePasswordProps>;
|
|
29
|
-
required: true;
|
|
30
|
-
};
|
|
31
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
32
|
-
declare const _default: typeof __VLS_export;
|
|
33
|
-
export default _default;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { PasswordProps } from 'primevue/password';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimePasswordProps {
|
|
5
|
-
mediumRegex?: PasswordProps['mediumRegex'];
|
|
6
|
-
strongRegex?: PasswordProps['strongRegex'];
|
|
7
|
-
promptLabel?: PasswordProps['promptLabel'];
|
|
8
|
-
weakLabel?: PasswordProps['weakLabel'];
|
|
9
|
-
mediumLabel?: PasswordProps['mediumLabel'];
|
|
10
|
-
strongLabel?: PasswordProps['strongLabel'];
|
|
11
|
-
maskIcon?: PasswordProps['maskIcon'];
|
|
12
|
-
unmaskIcon?: PasswordProps['unmaskIcon'];
|
|
13
|
-
pt?: PasswordProps['pt'];
|
|
14
|
-
ptOptions?: PasswordProps['ptOptions'];
|
|
15
|
-
unstyled?: PasswordProps['unstyled'];
|
|
16
|
-
placeholder?: PasswordProps['placeholder'];
|
|
17
|
-
feedback?: PasswordProps['feedback'];
|
|
18
|
-
toggleMask?: PasswordProps['toggleMask'];
|
|
19
|
-
size?: PasswordProps['size'];
|
|
20
|
-
}
|
|
21
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
22
|
-
context: {
|
|
23
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimePasswordProps>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
-
context: {
|
|
28
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimePasswordProps>;
|
|
29
|
-
required: true;
|
|
30
|
-
};
|
|
31
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
32
|
-
declare const _default: typeof __VLS_export;
|
|
33
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { RadioButtonProps } from 'primevue/radiobutton';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeRadioButtonProps {
|
|
5
|
-
pt?: RadioButtonProps['pt'];
|
|
6
|
-
ptOptions?: RadioButtonProps['ptOptions'];
|
|
7
|
-
unstyled?: RadioButtonProps['unstyled'];
|
|
8
|
-
size?: RadioButtonProps['size'];
|
|
9
|
-
options?: {
|
|
10
|
-
label: string;
|
|
11
|
-
value: any;
|
|
12
|
-
}[];
|
|
13
|
-
optionsClass?: string;
|
|
14
|
-
optionClass?: string;
|
|
15
|
-
}
|
|
16
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
17
|
-
context: {
|
|
18
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRadioButtonProps>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
context: {
|
|
23
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRadioButtonProps>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
-
declare const _default: typeof __VLS_export;
|
|
28
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { RadioButtonProps } from 'primevue/radiobutton';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeRadioButtonProps {
|
|
5
|
-
pt?: RadioButtonProps['pt'];
|
|
6
|
-
ptOptions?: RadioButtonProps['ptOptions'];
|
|
7
|
-
unstyled?: RadioButtonProps['unstyled'];
|
|
8
|
-
size?: RadioButtonProps['size'];
|
|
9
|
-
options?: {
|
|
10
|
-
label: string;
|
|
11
|
-
value: any;
|
|
12
|
-
}[];
|
|
13
|
-
optionsClass?: string;
|
|
14
|
-
optionClass?: string;
|
|
15
|
-
}
|
|
16
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
17
|
-
context: {
|
|
18
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRadioButtonProps>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
context: {
|
|
23
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRadioButtonProps>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
-
declare const _default: typeof __VLS_export;
|
|
28
|
-
export default _default;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { RatingProps } from 'primevue/rating';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeRatingProps {
|
|
5
|
-
unstyled?: RatingProps['unstyled'];
|
|
6
|
-
stars?: RatingProps['stars'];
|
|
7
|
-
onIcon?: RatingProps['onIcon'];
|
|
8
|
-
offIcon?: RatingProps['offIcon'];
|
|
9
|
-
ptOptions?: RatingProps['ptOptions'];
|
|
10
|
-
pt?: RatingProps['pt'];
|
|
11
|
-
}
|
|
12
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
|
-
context: {
|
|
14
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRatingProps>;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
-
context: {
|
|
19
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRatingProps>;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
|
-
declare const _default: typeof __VLS_export;
|
|
24
|
-
export default _default;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { RatingProps } from 'primevue/rating';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeRatingProps {
|
|
5
|
-
unstyled?: RatingProps['unstyled'];
|
|
6
|
-
stars?: RatingProps['stars'];
|
|
7
|
-
onIcon?: RatingProps['onIcon'];
|
|
8
|
-
offIcon?: RatingProps['offIcon'];
|
|
9
|
-
ptOptions?: RatingProps['ptOptions'];
|
|
10
|
-
pt?: RatingProps['pt'];
|
|
11
|
-
}
|
|
12
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
|
-
context: {
|
|
14
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRatingProps>;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
-
context: {
|
|
19
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRatingProps>;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
|
-
declare const _default: typeof __VLS_export;
|
|
24
|
-
export default _default;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { SelectProps } from 'primevue/select';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeSelectProps {
|
|
5
|
-
options?: SelectProps['options'];
|
|
6
|
-
optionLabel?: SelectProps['optionLabel'];
|
|
7
|
-
optionValue?: SelectProps['optionValue'];
|
|
8
|
-
optionDisabled?: SelectProps['optionDisabled'];
|
|
9
|
-
optionGroupLabel?: SelectProps['optionGroupLabel'];
|
|
10
|
-
optionGroupChildren?: SelectProps['optionGroupChildren'];
|
|
11
|
-
scrollHeight?: SelectProps['scrollHeight'];
|
|
12
|
-
filter?: SelectProps['filter'];
|
|
13
|
-
filterPlaceholder?: SelectProps['filterPlaceholder'];
|
|
14
|
-
filterLocale?: SelectProps['filterLocale'];
|
|
15
|
-
filterMatchMode?: SelectProps['filterMatchMode'];
|
|
16
|
-
filterFields?: SelectProps['filterFields'];
|
|
17
|
-
editable?: SelectProps['editable'];
|
|
18
|
-
placeholder?: SelectProps['placeholder'];
|
|
19
|
-
dataKey?: SelectProps['dataKey'];
|
|
20
|
-
showClear?: SelectProps['showClear'];
|
|
21
|
-
overlayStyle?: SelectProps['overlayStyle'];
|
|
22
|
-
overlayClass?: SelectProps['overlayClass'];
|
|
23
|
-
appendTo?: SelectProps['appendTo'];
|
|
24
|
-
resetFilterOnHide?: SelectProps['resetFilterOnHide'];
|
|
25
|
-
virtualScrollerOptions?: SelectProps['virtualScrollerOptions'];
|
|
26
|
-
autoOptionFocus?: SelectProps['autoOptionFocus'];
|
|
27
|
-
selectOnFocus?: SelectProps['selectOnFocus'];
|
|
28
|
-
filterMessage?: SelectProps['filterMessage'];
|
|
29
|
-
selectionMessage?: SelectProps['selectionMessage'];
|
|
30
|
-
emptySelectionMessage?: SelectProps['emptySelectionMessage'];
|
|
31
|
-
emptyFilterMessage?: SelectProps['emptyFilterMessage'];
|
|
32
|
-
emptyMessage?: SelectProps['emptyMessage'];
|
|
33
|
-
pt?: SelectProps['pt'];
|
|
34
|
-
ptOptions?: SelectProps['ptOptions'];
|
|
35
|
-
unstyled?: SelectProps['unstyled'];
|
|
36
|
-
size?: SelectProps['size'];
|
|
37
|
-
}
|
|
38
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
39
|
-
context: {
|
|
40
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectProps>;
|
|
41
|
-
required: true;
|
|
42
|
-
};
|
|
43
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
-
context: {
|
|
45
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectProps>;
|
|
46
|
-
required: true;
|
|
47
|
-
};
|
|
48
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
|
-
declare const _default: typeof __VLS_export;
|
|
50
|
-
export default _default;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { SelectProps } from 'primevue/select';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeSelectProps {
|
|
5
|
-
options?: SelectProps['options'];
|
|
6
|
-
optionLabel?: SelectProps['optionLabel'];
|
|
7
|
-
optionValue?: SelectProps['optionValue'];
|
|
8
|
-
optionDisabled?: SelectProps['optionDisabled'];
|
|
9
|
-
optionGroupLabel?: SelectProps['optionGroupLabel'];
|
|
10
|
-
optionGroupChildren?: SelectProps['optionGroupChildren'];
|
|
11
|
-
scrollHeight?: SelectProps['scrollHeight'];
|
|
12
|
-
filter?: SelectProps['filter'];
|
|
13
|
-
filterPlaceholder?: SelectProps['filterPlaceholder'];
|
|
14
|
-
filterLocale?: SelectProps['filterLocale'];
|
|
15
|
-
filterMatchMode?: SelectProps['filterMatchMode'];
|
|
16
|
-
filterFields?: SelectProps['filterFields'];
|
|
17
|
-
editable?: SelectProps['editable'];
|
|
18
|
-
placeholder?: SelectProps['placeholder'];
|
|
19
|
-
dataKey?: SelectProps['dataKey'];
|
|
20
|
-
showClear?: SelectProps['showClear'];
|
|
21
|
-
overlayStyle?: SelectProps['overlayStyle'];
|
|
22
|
-
overlayClass?: SelectProps['overlayClass'];
|
|
23
|
-
appendTo?: SelectProps['appendTo'];
|
|
24
|
-
resetFilterOnHide?: SelectProps['resetFilterOnHide'];
|
|
25
|
-
virtualScrollerOptions?: SelectProps['virtualScrollerOptions'];
|
|
26
|
-
autoOptionFocus?: SelectProps['autoOptionFocus'];
|
|
27
|
-
selectOnFocus?: SelectProps['selectOnFocus'];
|
|
28
|
-
filterMessage?: SelectProps['filterMessage'];
|
|
29
|
-
selectionMessage?: SelectProps['selectionMessage'];
|
|
30
|
-
emptySelectionMessage?: SelectProps['emptySelectionMessage'];
|
|
31
|
-
emptyFilterMessage?: SelectProps['emptyFilterMessage'];
|
|
32
|
-
emptyMessage?: SelectProps['emptyMessage'];
|
|
33
|
-
pt?: SelectProps['pt'];
|
|
34
|
-
ptOptions?: SelectProps['ptOptions'];
|
|
35
|
-
unstyled?: SelectProps['unstyled'];
|
|
36
|
-
size?: SelectProps['size'];
|
|
37
|
-
}
|
|
38
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
39
|
-
context: {
|
|
40
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectProps>;
|
|
41
|
-
required: true;
|
|
42
|
-
};
|
|
43
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
-
context: {
|
|
45
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectProps>;
|
|
46
|
-
required: true;
|
|
47
|
-
};
|
|
48
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
|
-
declare const _default: typeof __VLS_export;
|
|
50
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { SelectButtonProps } from 'primevue/selectbutton';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeSelectButtonProps {
|
|
5
|
-
pt?: SelectButtonProps['pt'];
|
|
6
|
-
ptOptions?: SelectButtonProps['ptOptions'];
|
|
7
|
-
unstyled?: SelectButtonProps['unstyled'];
|
|
8
|
-
optionLabel?: SelectButtonProps['optionLabel'];
|
|
9
|
-
optionValue?: SelectButtonProps['optionValue'];
|
|
10
|
-
optionDisabled?: SelectButtonProps['optionDisabled'];
|
|
11
|
-
multiple?: SelectButtonProps['multiple'];
|
|
12
|
-
dataKey?: SelectButtonProps['dataKey'];
|
|
13
|
-
options?: SelectButtonProps['options'];
|
|
14
|
-
size?: SelectButtonProps['size'];
|
|
15
|
-
}
|
|
16
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
17
|
-
context: {
|
|
18
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectButtonProps>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
context: {
|
|
23
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectButtonProps>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
-
declare const _default: typeof __VLS_export;
|
|
28
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { SelectButtonProps } from 'primevue/selectbutton';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeSelectButtonProps {
|
|
5
|
-
pt?: SelectButtonProps['pt'];
|
|
6
|
-
ptOptions?: SelectButtonProps['ptOptions'];
|
|
7
|
-
unstyled?: SelectButtonProps['unstyled'];
|
|
8
|
-
optionLabel?: SelectButtonProps['optionLabel'];
|
|
9
|
-
optionValue?: SelectButtonProps['optionValue'];
|
|
10
|
-
optionDisabled?: SelectButtonProps['optionDisabled'];
|
|
11
|
-
multiple?: SelectButtonProps['multiple'];
|
|
12
|
-
dataKey?: SelectButtonProps['dataKey'];
|
|
13
|
-
options?: SelectButtonProps['options'];
|
|
14
|
-
size?: SelectButtonProps['size'];
|
|
15
|
-
}
|
|
16
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
17
|
-
context: {
|
|
18
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectButtonProps>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
context: {
|
|
23
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectButtonProps>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
-
declare const _default: typeof __VLS_export;
|
|
28
|
-
export default _default;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { SliderProps } from 'primevue/slider';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeSliderProps {
|
|
5
|
-
pt?: SliderProps['pt'];
|
|
6
|
-
ptOptions?: SliderProps['ptOptions'];
|
|
7
|
-
unstyled?: SliderProps['unstyled'];
|
|
8
|
-
min?: SliderProps['min'];
|
|
9
|
-
max?: SliderProps['max'];
|
|
10
|
-
step?: SliderProps['step'];
|
|
11
|
-
range?: SliderProps['range'];
|
|
12
|
-
orientation?: SliderProps['orientation'];
|
|
13
|
-
}
|
|
14
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
15
|
-
context: {
|
|
16
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSliderProps>;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
-
context: {
|
|
21
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSliderProps>;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
25
|
-
declare const _default: typeof __VLS_export;
|
|
26
|
-
export default _default;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { SliderProps } from 'primevue/slider';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeSliderProps {
|
|
5
|
-
pt?: SliderProps['pt'];
|
|
6
|
-
ptOptions?: SliderProps['ptOptions'];
|
|
7
|
-
unstyled?: SliderProps['unstyled'];
|
|
8
|
-
min?: SliderProps['min'];
|
|
9
|
-
max?: SliderProps['max'];
|
|
10
|
-
step?: SliderProps['step'];
|
|
11
|
-
range?: SliderProps['range'];
|
|
12
|
-
orientation?: SliderProps['orientation'];
|
|
13
|
-
}
|
|
14
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
15
|
-
context: {
|
|
16
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSliderProps>;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
-
context: {
|
|
21
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSliderProps>;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
25
|
-
declare const _default: typeof __VLS_export;
|
|
26
|
-
export default _default;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { TextareaProps } from 'primevue/textarea';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeTextareaProps {
|
|
5
|
-
pt?: TextareaProps['pt'];
|
|
6
|
-
ptOptions?: TextareaProps['ptOptions'];
|
|
7
|
-
unstyled?: TextareaProps['unstyled'];
|
|
8
|
-
autoResize?: TextareaProps['autoResize'];
|
|
9
|
-
size?: TextareaProps['size'];
|
|
10
|
-
placeholder?: string;
|
|
11
|
-
rows?: number;
|
|
12
|
-
}
|
|
13
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
14
|
-
context: {
|
|
15
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTextareaProps>;
|
|
16
|
-
required: true;
|
|
17
|
-
};
|
|
18
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
-
context: {
|
|
20
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTextareaProps>;
|
|
21
|
-
required: true;
|
|
22
|
-
};
|
|
23
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
24
|
-
declare const _default: typeof __VLS_export;
|
|
25
|
-
export default _default;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { TextareaProps } from 'primevue/textarea';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeTextareaProps {
|
|
5
|
-
pt?: TextareaProps['pt'];
|
|
6
|
-
ptOptions?: TextareaProps['ptOptions'];
|
|
7
|
-
unstyled?: TextareaProps['unstyled'];
|
|
8
|
-
autoResize?: TextareaProps['autoResize'];
|
|
9
|
-
size?: TextareaProps['size'];
|
|
10
|
-
placeholder?: string;
|
|
11
|
-
rows?: number;
|
|
12
|
-
}
|
|
13
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
14
|
-
context: {
|
|
15
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTextareaProps>;
|
|
16
|
-
required: true;
|
|
17
|
-
};
|
|
18
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
-
context: {
|
|
20
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTextareaProps>;
|
|
21
|
-
required: true;
|
|
22
|
-
};
|
|
23
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
24
|
-
declare const _default: typeof __VLS_export;
|
|
25
|
-
export default _default;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { ToggleButtonProps } from 'primevue/togglebutton';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeToggleButtonProps {
|
|
5
|
-
pt?: ToggleButtonProps['pt'];
|
|
6
|
-
ptOptions?: ToggleButtonProps['ptOptions'];
|
|
7
|
-
unstyled?: ToggleButtonProps['unstyled'];
|
|
8
|
-
onLabel?: ToggleButtonProps['onLabel'];
|
|
9
|
-
offLabel?: ToggleButtonProps['offLabel'];
|
|
10
|
-
onIcon?: ToggleButtonProps['onIcon'];
|
|
11
|
-
offIcon?: ToggleButtonProps['offIcon'];
|
|
12
|
-
size?: ToggleButtonProps['size'];
|
|
13
|
-
}
|
|
14
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
15
|
-
context: {
|
|
16
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleButtonProps>;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
-
context: {
|
|
21
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleButtonProps>;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
25
|
-
declare const _default: typeof __VLS_export;
|
|
26
|
-
export default _default;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { ToggleButtonProps } from 'primevue/togglebutton';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeToggleButtonProps {
|
|
5
|
-
pt?: ToggleButtonProps['pt'];
|
|
6
|
-
ptOptions?: ToggleButtonProps['ptOptions'];
|
|
7
|
-
unstyled?: ToggleButtonProps['unstyled'];
|
|
8
|
-
onLabel?: ToggleButtonProps['onLabel'];
|
|
9
|
-
offLabel?: ToggleButtonProps['offLabel'];
|
|
10
|
-
onIcon?: ToggleButtonProps['onIcon'];
|
|
11
|
-
offIcon?: ToggleButtonProps['offIcon'];
|
|
12
|
-
size?: ToggleButtonProps['size'];
|
|
13
|
-
}
|
|
14
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
15
|
-
context: {
|
|
16
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleButtonProps>;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
-
context: {
|
|
21
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleButtonProps>;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
25
|
-
declare const _default: typeof __VLS_export;
|
|
26
|
-
export default _default;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { ToggleSwitchProps } from 'primevue/toggleswitch';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeToggleSwitchProps {
|
|
5
|
-
trueValue?: ToggleSwitchProps['trueValue'];
|
|
6
|
-
falseValue?: ToggleSwitchProps['falseValue'];
|
|
7
|
-
pt?: ToggleSwitchProps['pt'];
|
|
8
|
-
ptOptions?: ToggleSwitchProps['ptOptions'];
|
|
9
|
-
unstyled?: ToggleSwitchProps['unstyled'];
|
|
10
|
-
}
|
|
11
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12
|
-
context: {
|
|
13
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleSwitchProps>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
context: {
|
|
18
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleSwitchProps>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
-
declare const _default: typeof __VLS_export;
|
|
23
|
-
export default _default;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { ToggleSwitchProps } from 'primevue/toggleswitch';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeToggleSwitchProps {
|
|
5
|
-
trueValue?: ToggleSwitchProps['trueValue'];
|
|
6
|
-
falseValue?: ToggleSwitchProps['falseValue'];
|
|
7
|
-
pt?: ToggleSwitchProps['pt'];
|
|
8
|
-
ptOptions?: ToggleSwitchProps['ptOptions'];
|
|
9
|
-
unstyled?: ToggleSwitchProps['unstyled'];
|
|
10
|
-
}
|
|
11
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12
|
-
context: {
|
|
13
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleSwitchProps>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
context: {
|
|
18
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleSwitchProps>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
-
declare const _default: typeof __VLS_export;
|
|
23
|
-
export default _default;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
-
import type { TreeSelectProps } from 'primevue/treeselect';
|
|
3
|
-
import type { PropType } from 'vue';
|
|
4
|
-
export interface FormKitPrimeTreeSelectProps {
|
|
5
|
-
options?: TreeSelectProps['options'];
|
|
6
|
-
placeholder?: TreeSelectProps['placeholder'];
|
|
7
|
-
selectionMode?: TreeSelectProps['selectionMode'];
|
|
8
|
-
pt?: TreeSelectProps['pt'];
|
|
9
|
-
ptOptions?: TreeSelectProps['ptOptions'];
|
|
10
|
-
unstyled?: TreeSelectProps['unstyled'];
|
|
11
|
-
emptyMessage?: TreeSelectProps['emptyMessage'];
|
|
12
|
-
display?: TreeSelectProps['display'];
|
|
13
|
-
metaKeySelection?: TreeSelectProps['metaKeySelection'];
|
|
14
|
-
appendTo?: TreeSelectProps['appendTo'];
|
|
15
|
-
scrollHeight?: TreeSelectProps['scrollHeight'];
|
|
16
|
-
panelClass?: TreeSelectProps['panelClass'];
|
|
17
|
-
variant?: TreeSelectProps['variant'];
|
|
18
|
-
size?: TreeSelectProps['size'];
|
|
19
|
-
}
|
|
20
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
21
|
-
context: {
|
|
22
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTreeSelectProps>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
-
context: {
|
|
27
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTreeSelectProps>;
|
|
28
|
-
required: true;
|
|
29
|
-
};
|
|
30
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
|
-
declare const _default: typeof __VLS_export;
|
|
32
|
-
export default _default;
|