@sfxcode/formkit-primevue 3.0.6 → 3.0.8

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.
Files changed (74) hide show
  1. package/dist/components/FormKitDataEdit.d.vue.ts +177 -0
  2. package/dist/components/FormKitDataEdit.vue.d.ts +177 -0
  3. package/dist/components/FormKitDataView.d.vue.ts +72 -0
  4. package/dist/components/FormKitDataView.vue.d.ts +72 -0
  5. package/dist/components/FormKitDebug.d.vue.ts +33 -0
  6. package/dist/components/FormKitDebug.vue.d.ts +33 -0
  7. package/dist/components/FormKitIcon.d.vue.ts +38 -0
  8. package/dist/components/FormKitIcon.vue.d.ts +38 -0
  9. package/dist/components/FormKitPrefix.d.vue.ts +6 -0
  10. package/dist/components/FormKitPrefix.vue.d.ts +6 -0
  11. package/dist/components/FormKitSuffix.d.vue.ts +6 -0
  12. package/dist/components/FormKitSuffix.vue.d.ts +6 -0
  13. package/dist/components/PrimeAutoComplete.d.vue.ts +30 -0
  14. package/dist/components/PrimeAutoComplete.vue.d.ts +30 -0
  15. package/dist/components/PrimeCascadeSelect.d.vue.ts +27 -0
  16. package/dist/components/PrimeCascadeSelect.vue.d.ts +27 -0
  17. package/dist/components/PrimeCheckbox.d.vue.ts +26 -0
  18. package/dist/components/PrimeCheckbox.vue.d.ts +26 -0
  19. package/dist/components/PrimeColorPicker.d.vue.ts +23 -0
  20. package/dist/components/PrimeColorPicker.vue.d.ts +23 -0
  21. package/dist/components/PrimeDatePicker.d.vue.ts +61 -0
  22. package/dist/components/PrimeDatePicker.vue.d.ts +61 -0
  23. package/dist/components/PrimeInputMask.d.vue.ts +27 -0
  24. package/dist/components/PrimeInputMask.vue.d.ts +27 -0
  25. package/dist/components/PrimeInputNumber.d.vue.ts +35 -0
  26. package/dist/components/PrimeInputNumber.vue.d.ts +35 -0
  27. package/dist/components/PrimeInputOtp.d.vue.ts +25 -0
  28. package/dist/components/PrimeInputOtp.vue.d.ts +25 -0
  29. package/dist/components/PrimeInputText.d.vue.ts +23 -0
  30. package/dist/components/PrimeInputText.vue.d.ts +23 -0
  31. package/dist/components/PrimeKnob.d.vue.ts +30 -0
  32. package/dist/components/PrimeKnob.vue.d.ts +30 -0
  33. package/dist/components/PrimeListbox.d.vue.ts +31 -0
  34. package/dist/components/PrimeListbox.vue.d.ts +31 -0
  35. package/dist/components/PrimeMultiSelect.d.vue.ts +52 -0
  36. package/dist/components/PrimeMultiSelect.vue.d.ts +52 -0
  37. package/dist/components/PrimeOutputBoolean.d.vue.ts +15 -0
  38. package/dist/components/PrimeOutputBoolean.vue.d.ts +15 -0
  39. package/dist/components/PrimeOutputDate.d.vue.ts +15 -0
  40. package/dist/components/PrimeOutputDate.vue.d.ts +15 -0
  41. package/dist/components/PrimeOutputDuration.d.vue.ts +15 -0
  42. package/dist/components/PrimeOutputDuration.vue.d.ts +15 -0
  43. package/dist/components/PrimeOutputLink.d.vue.ts +15 -0
  44. package/dist/components/PrimeOutputLink.vue.d.ts +15 -0
  45. package/dist/components/PrimeOutputList.d.vue.ts +18 -0
  46. package/dist/components/PrimeOutputList.vue.d.ts +18 -0
  47. package/dist/components/PrimeOutputNumber.d.vue.ts +15 -0
  48. package/dist/components/PrimeOutputNumber.vue.d.ts +15 -0
  49. package/dist/components/PrimeOutputReference.d.vue.ts +15 -0
  50. package/dist/components/PrimeOutputReference.vue.d.ts +15 -0
  51. package/dist/components/PrimeOutputText.d.vue.ts +15 -0
  52. package/dist/components/PrimeOutputText.vue.d.ts +15 -0
  53. package/dist/components/PrimePassword.d.vue.ts +32 -0
  54. package/dist/components/PrimePassword.vue.d.ts +32 -0
  55. package/dist/components/PrimeRadioButton.d.vue.ts +27 -0
  56. package/dist/components/PrimeRadioButton.vue.d.ts +27 -0
  57. package/dist/components/PrimeRating.d.vue.ts +23 -0
  58. package/dist/components/PrimeRating.vue.d.ts +23 -0
  59. package/dist/components/PrimeSelect.d.vue.ts +49 -0
  60. package/dist/components/PrimeSelect.vue.d.ts +49 -0
  61. package/dist/components/PrimeSelectButton.d.vue.ts +27 -0
  62. package/dist/components/PrimeSelectButton.vue.d.ts +27 -0
  63. package/dist/components/PrimeSlider.d.vue.ts +25 -0
  64. package/dist/components/PrimeSlider.vue.d.ts +25 -0
  65. package/dist/components/PrimeTextarea.d.vue.ts +24 -0
  66. package/dist/components/PrimeTextarea.vue.d.ts +24 -0
  67. package/dist/components/PrimeToggleButton.d.vue.ts +25 -0
  68. package/dist/components/PrimeToggleButton.vue +0 -2
  69. package/dist/components/PrimeToggleButton.vue.d.ts +25 -0
  70. package/dist/components/PrimeToggleSwitch.d.vue.ts +22 -0
  71. package/dist/components/PrimeToggleSwitch.vue.d.ts +22 -0
  72. package/dist/components/PrimeTreeSelect.d.vue.ts +31 -0
  73. package/dist/components/PrimeTreeSelect.vue.d.ts +31 -0
  74. package/package.json +18 -18
@@ -0,0 +1,177 @@
1
+ import type { FormKitSchemaDefinition } from '@formkit/core';
2
+ import type { PropType } from 'vue';
3
+ declare var __VLS_15: {}, __VLS_18: {}, __VLS_26: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_15) => any;
6
+ } & {
7
+ messages?: (props: typeof __VLS_18) => any;
8
+ } & {
9
+ submit?: (props: typeof __VLS_26) => any;
10
+ };
11
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
12
+ id: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ data: {
17
+ type: ObjectConstructor;
18
+ default: null;
19
+ };
20
+ schema: {
21
+ type: PropType<FormKitSchemaDefinition>;
22
+ default: null;
23
+ };
24
+ formClass: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ actionsClass: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ submitSeverity: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ submitClass: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ submitLabel: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
44
+ submitIcon: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ showReset: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ resetSeverity: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
56
+ resetLabel: {
57
+ type: StringConstructor;
58
+ default: string;
59
+ };
60
+ resetClass: {
61
+ type: StringConstructor;
62
+ default: string;
63
+ };
64
+ resetIcon: {
65
+ type: StringConstructor;
66
+ default: string;
67
+ };
68
+ debugData: {
69
+ type: BooleanConstructor;
70
+ default: boolean;
71
+ };
72
+ debugSchema: {
73
+ type: BooleanConstructor;
74
+ default: boolean;
75
+ };
76
+ modelValue: {
77
+ type: PropType<any>;
78
+ };
79
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
80
+ dataSaved: (...args: any[]) => void;
81
+ "update:modelValue": (value: any) => void;
82
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
83
+ id: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ data: {
88
+ type: ObjectConstructor;
89
+ default: null;
90
+ };
91
+ schema: {
92
+ type: PropType<FormKitSchemaDefinition>;
93
+ default: null;
94
+ };
95
+ formClass: {
96
+ type: StringConstructor;
97
+ default: string;
98
+ };
99
+ actionsClass: {
100
+ type: StringConstructor;
101
+ default: string;
102
+ };
103
+ submitSeverity: {
104
+ type: StringConstructor;
105
+ default: string;
106
+ };
107
+ submitClass: {
108
+ type: StringConstructor;
109
+ default: string;
110
+ };
111
+ submitLabel: {
112
+ type: StringConstructor;
113
+ default: string;
114
+ };
115
+ submitIcon: {
116
+ type: StringConstructor;
117
+ default: string;
118
+ };
119
+ showReset: {
120
+ type: BooleanConstructor;
121
+ default: boolean;
122
+ };
123
+ resetSeverity: {
124
+ type: StringConstructor;
125
+ default: string;
126
+ };
127
+ resetLabel: {
128
+ type: StringConstructor;
129
+ default: string;
130
+ };
131
+ resetClass: {
132
+ type: StringConstructor;
133
+ default: string;
134
+ };
135
+ resetIcon: {
136
+ type: StringConstructor;
137
+ default: string;
138
+ };
139
+ debugData: {
140
+ type: BooleanConstructor;
141
+ default: boolean;
142
+ };
143
+ debugSchema: {
144
+ type: BooleanConstructor;
145
+ default: boolean;
146
+ };
147
+ modelValue: {
148
+ type: PropType<any>;
149
+ };
150
+ }>> & Readonly<{
151
+ onDataSaved?: ((...args: any[]) => any) | undefined;
152
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
153
+ }>, {
154
+ data: Record<string, any>;
155
+ id: string;
156
+ schema: FormKitSchemaDefinition;
157
+ formClass: string;
158
+ actionsClass: string;
159
+ submitSeverity: string;
160
+ submitClass: string;
161
+ submitLabel: string;
162
+ submitIcon: string;
163
+ showReset: boolean;
164
+ resetSeverity: string;
165
+ resetLabel: string;
166
+ resetClass: string;
167
+ resetIcon: string;
168
+ debugData: boolean;
169
+ debugSchema: boolean;
170
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
171
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
172
+ export default _default;
173
+ type __VLS_WithSlots<T, S> = T & {
174
+ new (): {
175
+ $slots: S;
176
+ };
177
+ };
@@ -0,0 +1,177 @@
1
+ import type { FormKitSchemaDefinition } from '@formkit/core';
2
+ import type { PropType } from 'vue';
3
+ declare var __VLS_15: {}, __VLS_18: {}, __VLS_26: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_15) => any;
6
+ } & {
7
+ messages?: (props: typeof __VLS_18) => any;
8
+ } & {
9
+ submit?: (props: typeof __VLS_26) => any;
10
+ };
11
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
12
+ id: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ data: {
17
+ type: ObjectConstructor;
18
+ default: null;
19
+ };
20
+ schema: {
21
+ type: PropType<FormKitSchemaDefinition>;
22
+ default: null;
23
+ };
24
+ formClass: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ actionsClass: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ submitSeverity: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ submitClass: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ submitLabel: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
44
+ submitIcon: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ showReset: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ resetSeverity: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
56
+ resetLabel: {
57
+ type: StringConstructor;
58
+ default: string;
59
+ };
60
+ resetClass: {
61
+ type: StringConstructor;
62
+ default: string;
63
+ };
64
+ resetIcon: {
65
+ type: StringConstructor;
66
+ default: string;
67
+ };
68
+ debugData: {
69
+ type: BooleanConstructor;
70
+ default: boolean;
71
+ };
72
+ debugSchema: {
73
+ type: BooleanConstructor;
74
+ default: boolean;
75
+ };
76
+ modelValue: {
77
+ type: PropType<any>;
78
+ };
79
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
80
+ dataSaved: (...args: any[]) => void;
81
+ "update:modelValue": (value: any) => void;
82
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
83
+ id: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ data: {
88
+ type: ObjectConstructor;
89
+ default: null;
90
+ };
91
+ schema: {
92
+ type: PropType<FormKitSchemaDefinition>;
93
+ default: null;
94
+ };
95
+ formClass: {
96
+ type: StringConstructor;
97
+ default: string;
98
+ };
99
+ actionsClass: {
100
+ type: StringConstructor;
101
+ default: string;
102
+ };
103
+ submitSeverity: {
104
+ type: StringConstructor;
105
+ default: string;
106
+ };
107
+ submitClass: {
108
+ type: StringConstructor;
109
+ default: string;
110
+ };
111
+ submitLabel: {
112
+ type: StringConstructor;
113
+ default: string;
114
+ };
115
+ submitIcon: {
116
+ type: StringConstructor;
117
+ default: string;
118
+ };
119
+ showReset: {
120
+ type: BooleanConstructor;
121
+ default: boolean;
122
+ };
123
+ resetSeverity: {
124
+ type: StringConstructor;
125
+ default: string;
126
+ };
127
+ resetLabel: {
128
+ type: StringConstructor;
129
+ default: string;
130
+ };
131
+ resetClass: {
132
+ type: StringConstructor;
133
+ default: string;
134
+ };
135
+ resetIcon: {
136
+ type: StringConstructor;
137
+ default: string;
138
+ };
139
+ debugData: {
140
+ type: BooleanConstructor;
141
+ default: boolean;
142
+ };
143
+ debugSchema: {
144
+ type: BooleanConstructor;
145
+ default: boolean;
146
+ };
147
+ modelValue: {
148
+ type: PropType<any>;
149
+ };
150
+ }>> & Readonly<{
151
+ onDataSaved?: ((...args: any[]) => any) | undefined;
152
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
153
+ }>, {
154
+ data: Record<string, any>;
155
+ id: string;
156
+ schema: FormKitSchemaDefinition;
157
+ formClass: string;
158
+ actionsClass: string;
159
+ submitSeverity: string;
160
+ submitClass: string;
161
+ submitLabel: string;
162
+ submitIcon: string;
163
+ showReset: boolean;
164
+ resetSeverity: string;
165
+ resetLabel: string;
166
+ resetClass: string;
167
+ resetIcon: string;
168
+ debugData: boolean;
169
+ debugSchema: boolean;
170
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
171
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
172
+ export default _default;
173
+ type __VLS_WithSlots<T, S> = T & {
174
+ new (): {
175
+ $slots: S;
176
+ };
177
+ };
@@ -0,0 +1,72 @@
1
+ import type { FormKitSchemaDefinition } from '@formkit/core';
2
+ import type { PropType } from 'vue';
3
+ declare var __VLS_11: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_11) => any;
6
+ };
7
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ data: {
9
+ type: ObjectConstructor;
10
+ default: null;
11
+ };
12
+ schema: {
13
+ type: PropType<FormKitSchemaDefinition>;
14
+ default: null;
15
+ };
16
+ formClass: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ debugData: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ debugSchema: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ modelValue: {
29
+ type: PropType<any>;
30
+ };
31
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
32
+ "update:modelValue": (value: any) => any;
33
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
34
+ data: {
35
+ type: ObjectConstructor;
36
+ default: null;
37
+ };
38
+ schema: {
39
+ type: PropType<FormKitSchemaDefinition>;
40
+ default: null;
41
+ };
42
+ formClass: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ debugData: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ debugSchema: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ modelValue: {
55
+ type: PropType<any>;
56
+ };
57
+ }>> & Readonly<{
58
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
59
+ }>, {
60
+ data: Record<string, any>;
61
+ schema: FormKitSchemaDefinition;
62
+ formClass: string;
63
+ debugData: boolean;
64
+ debugSchema: boolean;
65
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
66
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
67
+ export default _default;
68
+ type __VLS_WithSlots<T, S> = T & {
69
+ new (): {
70
+ $slots: S;
71
+ };
72
+ };
@@ -0,0 +1,72 @@
1
+ import type { FormKitSchemaDefinition } from '@formkit/core';
2
+ import type { PropType } from 'vue';
3
+ declare var __VLS_11: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_11) => any;
6
+ };
7
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ data: {
9
+ type: ObjectConstructor;
10
+ default: null;
11
+ };
12
+ schema: {
13
+ type: PropType<FormKitSchemaDefinition>;
14
+ default: null;
15
+ };
16
+ formClass: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ debugData: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ debugSchema: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ modelValue: {
29
+ type: PropType<any>;
30
+ };
31
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
32
+ "update:modelValue": (value: any) => any;
33
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
34
+ data: {
35
+ type: ObjectConstructor;
36
+ default: null;
37
+ };
38
+ schema: {
39
+ type: PropType<FormKitSchemaDefinition>;
40
+ default: null;
41
+ };
42
+ formClass: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ debugData: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ debugSchema: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ modelValue: {
55
+ type: PropType<any>;
56
+ };
57
+ }>> & Readonly<{
58
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
59
+ }>, {
60
+ data: Record<string, any>;
61
+ schema: FormKitSchemaDefinition;
62
+ formClass: string;
63
+ debugData: boolean;
64
+ debugSchema: boolean;
65
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
66
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
67
+ export default _default;
68
+ type __VLS_WithSlots<T, S> = T & {
69
+ new (): {
70
+ $slots: S;
71
+ };
72
+ };
@@ -0,0 +1,33 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
+ data: {
7
+ type: ObjectConstructor;
8
+ default: null;
9
+ };
10
+ header: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ data: {
16
+ type: ObjectConstructor;
17
+ default: null;
18
+ };
19
+ header: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ }>> & Readonly<{}>, {
24
+ data: Record<string, any>;
25
+ header: string;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28
+ export default _default;
29
+ type __VLS_WithSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -0,0 +1,33 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
+ data: {
7
+ type: ObjectConstructor;
8
+ default: null;
9
+ };
10
+ header: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ data: {
16
+ type: ObjectConstructor;
17
+ default: null;
18
+ };
19
+ header: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ }>> & Readonly<{}>, {
24
+ data: Record<string, any>;
25
+ header: string;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28
+ export default _default;
29
+ type __VLS_WithSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -0,0 +1,38 @@
1
+ import type { PropType } from 'vue';
2
+ export interface FormKitIconProps {
3
+ onIconPrefixClicked?: () => void;
4
+ onIconSuffixClicked?: () => void;
5
+ }
6
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
7
+ iconClass: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ onClick: {
12
+ type: PropType<() => void>;
13
+ default: undefined;
14
+ };
15
+ position: {
16
+ type: StringConstructor;
17
+ required: true;
18
+ validator: (val: string) => boolean;
19
+ };
20
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
+ iconClass: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ onClick: {
26
+ type: PropType<() => void>;
27
+ default: undefined;
28
+ };
29
+ position: {
30
+ type: StringConstructor;
31
+ required: true;
32
+ validator: (val: string) => boolean;
33
+ };
34
+ }>> & Readonly<{}>, {
35
+ onClick: () => void;
36
+ iconClass: string;
37
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
38
+ export default _default;
@@ -0,0 +1,38 @@
1
+ import type { PropType } from 'vue';
2
+ export interface FormKitIconProps {
3
+ onIconPrefixClicked?: () => void;
4
+ onIconSuffixClicked?: () => void;
5
+ }
6
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
7
+ iconClass: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ onClick: {
12
+ type: PropType<() => void>;
13
+ default: undefined;
14
+ };
15
+ position: {
16
+ type: StringConstructor;
17
+ required: true;
18
+ validator: (val: string) => boolean;
19
+ };
20
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
+ iconClass: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ onClick: {
26
+ type: PropType<() => void>;
27
+ default: undefined;
28
+ };
29
+ position: {
30
+ type: StringConstructor;
31
+ required: true;
32
+ validator: (val: string) => boolean;
33
+ };
34
+ }>> & Readonly<{}>, {
35
+ onClick: () => void;
36
+ iconClass: string;
37
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
38
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ prefix: StringConstructor;
3
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
4
+ prefix: StringConstructor;
5
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ prefix: StringConstructor;
3
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
4
+ prefix: StringConstructor;
5
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ suffix: StringConstructor;
3
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
4
+ suffix: StringConstructor;
5
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ suffix: StringConstructor;
3
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
4
+ suffix: StringConstructor;
5
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ export default _default;