@sfxcode/formkit-primevue 3.0.6 → 3.0.7
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/dist/components/FormKitDataEdit.d.vue.ts +177 -0
- package/dist/components/FormKitDataEdit.vue.d.ts +177 -0
- package/dist/components/FormKitDataView.d.vue.ts +72 -0
- package/dist/components/FormKitDataView.vue.d.ts +72 -0
- package/dist/components/FormKitDebug.d.vue.ts +33 -0
- package/dist/components/FormKitDebug.vue.d.ts +33 -0
- package/dist/components/FormKitIcon.d.vue.ts +38 -0
- package/dist/components/FormKitIcon.vue.d.ts +38 -0
- package/dist/components/FormKitPrefix.d.vue.ts +6 -0
- package/dist/components/FormKitPrefix.vue.d.ts +6 -0
- package/dist/components/FormKitSuffix.d.vue.ts +6 -0
- package/dist/components/FormKitSuffix.vue.d.ts +6 -0
- package/dist/components/PrimeAutoComplete.d.vue.ts +30 -0
- package/dist/components/PrimeAutoComplete.vue.d.ts +30 -0
- package/dist/components/PrimeCascadeSelect.d.vue.ts +27 -0
- package/dist/components/PrimeCascadeSelect.vue.d.ts +27 -0
- package/dist/components/PrimeCheckbox.d.vue.ts +26 -0
- package/dist/components/PrimeCheckbox.vue.d.ts +26 -0
- package/dist/components/PrimeColorPicker.d.vue.ts +23 -0
- package/dist/components/PrimeColorPicker.vue.d.ts +23 -0
- package/dist/components/PrimeDatePicker.d.vue.ts +61 -0
- package/dist/components/PrimeDatePicker.vue.d.ts +61 -0
- package/dist/components/PrimeInputMask.d.vue.ts +27 -0
- package/dist/components/PrimeInputMask.vue.d.ts +27 -0
- package/dist/components/PrimeInputNumber.d.vue.ts +35 -0
- package/dist/components/PrimeInputNumber.vue.d.ts +35 -0
- package/dist/components/PrimeInputOtp.d.vue.ts +25 -0
- package/dist/components/PrimeInputOtp.vue.d.ts +25 -0
- package/dist/components/PrimeInputText.d.vue.ts +23 -0
- package/dist/components/PrimeInputText.vue.d.ts +23 -0
- package/dist/components/PrimeKnob.d.vue.ts +30 -0
- package/dist/components/PrimeKnob.vue.d.ts +30 -0
- package/dist/components/PrimeListbox.d.vue.ts +31 -0
- package/dist/components/PrimeListbox.vue.d.ts +31 -0
- package/dist/components/PrimeMultiSelect.d.vue.ts +52 -0
- package/dist/components/PrimeMultiSelect.vue.d.ts +52 -0
- package/dist/components/PrimeOutputBoolean.d.vue.ts +15 -0
- package/dist/components/PrimeOutputBoolean.vue.d.ts +15 -0
- package/dist/components/PrimeOutputDate.d.vue.ts +15 -0
- package/dist/components/PrimeOutputDate.vue.d.ts +15 -0
- package/dist/components/PrimeOutputDuration.d.vue.ts +15 -0
- package/dist/components/PrimeOutputDuration.vue.d.ts +15 -0
- package/dist/components/PrimeOutputLink.d.vue.ts +15 -0
- package/dist/components/PrimeOutputLink.vue.d.ts +15 -0
- package/dist/components/PrimeOutputList.d.vue.ts +18 -0
- package/dist/components/PrimeOutputList.vue.d.ts +18 -0
- package/dist/components/PrimeOutputNumber.d.vue.ts +15 -0
- package/dist/components/PrimeOutputNumber.vue.d.ts +15 -0
- package/dist/components/PrimeOutputReference.d.vue.ts +15 -0
- package/dist/components/PrimeOutputReference.vue.d.ts +15 -0
- package/dist/components/PrimeOutputText.d.vue.ts +15 -0
- package/dist/components/PrimeOutputText.vue.d.ts +15 -0
- package/dist/components/PrimePassword.d.vue.ts +32 -0
- package/dist/components/PrimePassword.vue.d.ts +32 -0
- package/dist/components/PrimeRadioButton.d.vue.ts +27 -0
- package/dist/components/PrimeRadioButton.vue.d.ts +27 -0
- package/dist/components/PrimeRating.d.vue.ts +23 -0
- package/dist/components/PrimeRating.vue.d.ts +23 -0
- package/dist/components/PrimeSelect.d.vue.ts +49 -0
- package/dist/components/PrimeSelect.vue.d.ts +49 -0
- package/dist/components/PrimeSelectButton.d.vue.ts +27 -0
- package/dist/components/PrimeSelectButton.vue.d.ts +27 -0
- package/dist/components/PrimeSlider.d.vue.ts +25 -0
- package/dist/components/PrimeSlider.vue.d.ts +25 -0
- package/dist/components/PrimeTextarea.d.vue.ts +24 -0
- package/dist/components/PrimeTextarea.vue.d.ts +24 -0
- package/dist/components/PrimeToggleButton.d.vue.ts +25 -0
- package/dist/components/PrimeToggleButton.vue +0 -2
- package/dist/components/PrimeToggleButton.vue.d.ts +25 -0
- package/dist/components/PrimeToggleSwitch.d.vue.ts +22 -0
- package/dist/components/PrimeToggleSwitch.vue.d.ts +22 -0
- package/dist/components/PrimeTreeSelect.d.vue.ts +31 -0
- package/dist/components/PrimeTreeSelect.vue.d.ts +31 -0
- package/package.json +14 -14
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { ListboxProps } from 'primevue/listbox';
|
|
3
|
+
import type { PropType } from 'vue';
|
|
4
|
+
export interface FormKitPrimeListboxProps {
|
|
5
|
+
pt?: ListboxProps['pt'];
|
|
6
|
+
ptOptions?: ListboxProps['ptOptions'];
|
|
7
|
+
unstyled?: ListboxProps['unstyled'];
|
|
8
|
+
options?: ListboxProps['options'];
|
|
9
|
+
optionLabel?: ListboxProps['optionLabel'];
|
|
10
|
+
optionValue?: ListboxProps['optionValue'];
|
|
11
|
+
multiple?: ListboxProps['multiple'];
|
|
12
|
+
filter?: ListboxProps['filter'];
|
|
13
|
+
filterIcon?: ListboxProps['filterIcon'];
|
|
14
|
+
filterPlaceholder?: ListboxProps['filterPlaceholder'];
|
|
15
|
+
filterLocale?: ListboxProps['filterLocale'];
|
|
16
|
+
filterMatchMode?: ListboxProps['filterMatchMode'];
|
|
17
|
+
autoOptionFocus?: ListboxProps['autoOptionFocus'];
|
|
18
|
+
selectOnFocus?: ListboxProps['selectOnFocus'];
|
|
19
|
+
}
|
|
20
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
21
|
+
context: {
|
|
22
|
+
type: PropType<FormKitFrameworkContext & FormKitPrimeListboxProps>;
|
|
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 & FormKitPrimeListboxProps>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { ListboxProps } from 'primevue/listbox';
|
|
3
|
+
import type { PropType } from 'vue';
|
|
4
|
+
export interface FormKitPrimeListboxProps {
|
|
5
|
+
pt?: ListboxProps['pt'];
|
|
6
|
+
ptOptions?: ListboxProps['ptOptions'];
|
|
7
|
+
unstyled?: ListboxProps['unstyled'];
|
|
8
|
+
options?: ListboxProps['options'];
|
|
9
|
+
optionLabel?: ListboxProps['optionLabel'];
|
|
10
|
+
optionValue?: ListboxProps['optionValue'];
|
|
11
|
+
multiple?: ListboxProps['multiple'];
|
|
12
|
+
filter?: ListboxProps['filter'];
|
|
13
|
+
filterIcon?: ListboxProps['filterIcon'];
|
|
14
|
+
filterPlaceholder?: ListboxProps['filterPlaceholder'];
|
|
15
|
+
filterLocale?: ListboxProps['filterLocale'];
|
|
16
|
+
filterMatchMode?: ListboxProps['filterMatchMode'];
|
|
17
|
+
autoOptionFocus?: ListboxProps['autoOptionFocus'];
|
|
18
|
+
selectOnFocus?: ListboxProps['selectOnFocus'];
|
|
19
|
+
}
|
|
20
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
21
|
+
context: {
|
|
22
|
+
type: PropType<FormKitFrameworkContext & FormKitPrimeListboxProps>;
|
|
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 & FormKitPrimeListboxProps>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { MultiSelectProps } from 'primevue/multiselect';
|
|
3
|
+
import type { PropType } from 'vue';
|
|
4
|
+
export interface FormKitPrimeMultiSelectProps {
|
|
5
|
+
options?: MultiSelectProps['options'];
|
|
6
|
+
optionLabel?: MultiSelectProps['optionLabel'];
|
|
7
|
+
optionValue?: MultiSelectProps['optionValue'];
|
|
8
|
+
optionDisabled?: MultiSelectProps['optionDisabled'];
|
|
9
|
+
optionGroupLabel?: MultiSelectProps['optionGroupLabel'];
|
|
10
|
+
optionGroupChildren?: MultiSelectProps['optionGroupChildren'];
|
|
11
|
+
scrollHeight?: MultiSelectProps['scrollHeight'];
|
|
12
|
+
dataKey?: MultiSelectProps['dataKey'];
|
|
13
|
+
filter?: MultiSelectProps['filter'];
|
|
14
|
+
filterPlaceholder?: MultiSelectProps['filterPlaceholder'];
|
|
15
|
+
filterLocale?: MultiSelectProps['filterLocale'];
|
|
16
|
+
filterMatchMode?: MultiSelectProps['filterMatchMode'];
|
|
17
|
+
filterFields?: MultiSelectProps['filterFields'];
|
|
18
|
+
appendTo?: MultiSelectProps['appendTo'];
|
|
19
|
+
display?: MultiSelectProps['display'];
|
|
20
|
+
maxSelectedLabels?: MultiSelectProps['maxSelectedLabels'];
|
|
21
|
+
selectedItemsLabel?: MultiSelectProps['selectedItemsLabel'];
|
|
22
|
+
selectionLimit?: MultiSelectProps['selectionLimit'];
|
|
23
|
+
showToggleAll?: MultiSelectProps['showToggleAll'];
|
|
24
|
+
loading?: MultiSelectProps['loading'];
|
|
25
|
+
selectAll?: MultiSelectProps['selectAll'];
|
|
26
|
+
resetFilterOnHide?: MultiSelectProps['resetFilterOnHide'];
|
|
27
|
+
virtualScrollerOptions?: MultiSelectProps['virtualScrollerOptions'];
|
|
28
|
+
autoOptionFocus?: MultiSelectProps['autoOptionFocus'];
|
|
29
|
+
autoFilterFocus?: MultiSelectProps['autoFilterFocus'];
|
|
30
|
+
filterMessage?: MultiSelectProps['filterMessage'];
|
|
31
|
+
selectionMessage?: MultiSelectProps['selectionMessage'];
|
|
32
|
+
emptySelectionMessage?: MultiSelectProps['emptySelectionMessage'];
|
|
33
|
+
emptyFilterMessage?: MultiSelectProps['emptyFilterMessage'];
|
|
34
|
+
emptyMessage?: MultiSelectProps['emptyMessage'];
|
|
35
|
+
pt?: MultiSelectProps['pt'];
|
|
36
|
+
placeholder?: MultiSelectProps['placeholder'];
|
|
37
|
+
ptOptions?: MultiSelectProps['ptOptions'];
|
|
38
|
+
unstyled?: MultiSelectProps['unstyled'];
|
|
39
|
+
size?: MultiSelectProps['size'];
|
|
40
|
+
}
|
|
41
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
42
|
+
context: {
|
|
43
|
+
type: PropType<FormKitFrameworkContext & FormKitPrimeMultiSelectProps>;
|
|
44
|
+
required: true;
|
|
45
|
+
};
|
|
46
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
context: {
|
|
48
|
+
type: PropType<FormKitFrameworkContext & FormKitPrimeMultiSelectProps>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
51
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
52
|
+
export default _default;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { MultiSelectProps } from 'primevue/multiselect';
|
|
3
|
+
import type { PropType } from 'vue';
|
|
4
|
+
export interface FormKitPrimeMultiSelectProps {
|
|
5
|
+
options?: MultiSelectProps['options'];
|
|
6
|
+
optionLabel?: MultiSelectProps['optionLabel'];
|
|
7
|
+
optionValue?: MultiSelectProps['optionValue'];
|
|
8
|
+
optionDisabled?: MultiSelectProps['optionDisabled'];
|
|
9
|
+
optionGroupLabel?: MultiSelectProps['optionGroupLabel'];
|
|
10
|
+
optionGroupChildren?: MultiSelectProps['optionGroupChildren'];
|
|
11
|
+
scrollHeight?: MultiSelectProps['scrollHeight'];
|
|
12
|
+
dataKey?: MultiSelectProps['dataKey'];
|
|
13
|
+
filter?: MultiSelectProps['filter'];
|
|
14
|
+
filterPlaceholder?: MultiSelectProps['filterPlaceholder'];
|
|
15
|
+
filterLocale?: MultiSelectProps['filterLocale'];
|
|
16
|
+
filterMatchMode?: MultiSelectProps['filterMatchMode'];
|
|
17
|
+
filterFields?: MultiSelectProps['filterFields'];
|
|
18
|
+
appendTo?: MultiSelectProps['appendTo'];
|
|
19
|
+
display?: MultiSelectProps['display'];
|
|
20
|
+
maxSelectedLabels?: MultiSelectProps['maxSelectedLabels'];
|
|
21
|
+
selectedItemsLabel?: MultiSelectProps['selectedItemsLabel'];
|
|
22
|
+
selectionLimit?: MultiSelectProps['selectionLimit'];
|
|
23
|
+
showToggleAll?: MultiSelectProps['showToggleAll'];
|
|
24
|
+
loading?: MultiSelectProps['loading'];
|
|
25
|
+
selectAll?: MultiSelectProps['selectAll'];
|
|
26
|
+
resetFilterOnHide?: MultiSelectProps['resetFilterOnHide'];
|
|
27
|
+
virtualScrollerOptions?: MultiSelectProps['virtualScrollerOptions'];
|
|
28
|
+
autoOptionFocus?: MultiSelectProps['autoOptionFocus'];
|
|
29
|
+
autoFilterFocus?: MultiSelectProps['autoFilterFocus'];
|
|
30
|
+
filterMessage?: MultiSelectProps['filterMessage'];
|
|
31
|
+
selectionMessage?: MultiSelectProps['selectionMessage'];
|
|
32
|
+
emptySelectionMessage?: MultiSelectProps['emptySelectionMessage'];
|
|
33
|
+
emptyFilterMessage?: MultiSelectProps['emptyFilterMessage'];
|
|
34
|
+
emptyMessage?: MultiSelectProps['emptyMessage'];
|
|
35
|
+
pt?: MultiSelectProps['pt'];
|
|
36
|
+
placeholder?: MultiSelectProps['placeholder'];
|
|
37
|
+
ptOptions?: MultiSelectProps['ptOptions'];
|
|
38
|
+
unstyled?: MultiSelectProps['unstyled'];
|
|
39
|
+
size?: MultiSelectProps['size'];
|
|
40
|
+
}
|
|
41
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
42
|
+
context: {
|
|
43
|
+
type: PropType<FormKitFrameworkContext & FormKitPrimeMultiSelectProps>;
|
|
44
|
+
required: true;
|
|
45
|
+
};
|
|
46
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
context: {
|
|
48
|
+
type: PropType<FormKitFrameworkContext & FormKitPrimeMultiSelectProps>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
51
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
52
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
export interface PrimeOutputListProps {
|
|
5
|
+
convertValue?: (array: []) => [];
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
context: {
|
|
9
|
+
type: PropType<FormKitFrameworkContext> & FormKitIconProps & PrimeOutputListProps;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
context: {
|
|
14
|
+
type: PropType<FormKitFrameworkContext> & FormKitIconProps & PrimeOutputListProps;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
export interface PrimeOutputListProps {
|
|
5
|
+
convertValue?: (array: []) => [];
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
context: {
|
|
9
|
+
type: PropType<FormKitFrameworkContext> & FormKitIconProps & PrimeOutputListProps;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
context: {
|
|
14
|
+
type: PropType<FormKitFrameworkContext> & FormKitIconProps & PrimeOutputListProps;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FormKitFrameworkContext } from '@formkit/core';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
import type { FormKitIconProps } from './FormKitIcon.vue';
|
|
4
|
+
declare const _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
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 _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
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 _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
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 _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
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 _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
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 _default: 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
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
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 _default: 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
|
+
export default _default;
|