@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.
Files changed (140) hide show
  1. package/README.md +13 -138
  2. package/dist/components/FormKitDataDebug.vue +5 -9
  3. package/dist/components/FormKitDataEdit.vue +53 -46
  4. package/dist/components/FormKitDataView.vue +20 -27
  5. package/dist/components/FormKitIcon.vue +6 -13
  6. package/dist/components/FormKitPrefix.vue +3 -3
  7. package/dist/components/FormKitSuffix.vue +3 -3
  8. package/dist/components/PrimeAutoComplete.vue +41 -86
  9. package/dist/components/PrimeCascadeSelect.vue +7 -26
  10. package/dist/components/PrimeCheckbox.vue +9 -29
  11. package/dist/components/PrimeColorPicker.vue +7 -22
  12. package/dist/components/PrimeDatePicker.vue +17 -73
  13. package/dist/components/PrimeInputMask.vue +10 -29
  14. package/dist/components/PrimeInputNumber.vue +21 -56
  15. package/dist/components/PrimeInputOtp.vue +7 -24
  16. package/dist/components/PrimeInputText.vue +10 -25
  17. package/dist/components/PrimeKnob.vue +12 -37
  18. package/dist/components/PrimeListbox.vue +7 -39
  19. package/dist/components/PrimeMultiSelect.vue +7 -52
  20. package/dist/components/PrimeOutputBoolean.vue +28 -27
  21. package/dist/components/PrimeOutputDate.vue +33 -33
  22. package/dist/components/PrimeOutputDuration.vue +23 -19
  23. package/dist/components/PrimeOutputLink.vue +29 -27
  24. package/dist/components/PrimeOutputList.vue +71 -40
  25. package/dist/components/PrimeOutputNumber.vue +36 -39
  26. package/dist/components/PrimeOutputReference.vue +32 -30
  27. package/dist/components/PrimeOutputText.vue +53 -53
  28. package/dist/components/PrimePassword.vue +11 -32
  29. package/dist/components/PrimeRadioButton.vue +19 -29
  30. package/dist/components/PrimeRating.vue +7 -22
  31. package/dist/components/PrimeSelect.vue +7 -49
  32. package/dist/components/PrimeSelectButton.vue +7 -27
  33. package/dist/components/PrimeSlider.vue +10 -28
  34. package/dist/components/PrimeTextarea.vue +7 -23
  35. package/dist/components/PrimeToggleButton.vue +7 -25
  36. package/dist/components/PrimeToggleSwitch.vue +8 -23
  37. package/dist/components/PrimeTreeSelect.vue +7 -30
  38. package/dist/components/index.d.ts +23 -23
  39. package/dist/composables/index.d.ts +8 -8
  40. package/dist/composables/index.js +8 -8
  41. package/dist/composables/index.mjs +8 -8
  42. package/dist/composables/useFormKitInput.js +5 -1
  43. package/dist/composables/useFormKitInput.mjs +13 -1
  44. package/dist/composables/useFormKitRepeater.js +1 -1
  45. package/dist/composables/useFormKitRepeater.mjs +45 -17
  46. package/dist/composables/useFormKitSchema.mjs +10 -2
  47. package/dist/composables/useInputEditor.js +4 -4
  48. package/dist/composables/useInputEditor.mjs +52 -24
  49. package/dist/composables/useInputEditorSchema.js +3 -3
  50. package/dist/composables/useInputEditorSchema.mjs +25 -17
  51. package/dist/composables/useOutputDuration.mjs +3 -6
  52. package/dist/definitions/index.js +2 -2
  53. package/dist/definitions/index.mjs +2 -2
  54. package/dist/definitions/input.d.ts +1 -1
  55. package/dist/definitions/input.mjs +301 -15
  56. package/dist/definitions/output.d.ts +1 -1
  57. package/dist/definitions/output.js +1 -1
  58. package/dist/definitions/output.mjs +95 -14
  59. package/dist/index.d.ts +48 -48
  60. package/dist/index.js +12 -12
  61. package/dist/index.mjs +9 -3
  62. package/dist/plugins/index.d.ts +1 -1
  63. package/dist/plugins/index.mjs +31 -27
  64. package/dist/sass/formkit-primevue.scss +99 -101
  65. package/dist/vue.d.ts +5 -0
  66. package/package.json +45 -80
  67. package/LICENSE +0 -21
  68. package/components.d.ts +0 -1
  69. package/dist/components/FormKitDataDebug.d.vue.ts +0 -24
  70. package/dist/components/FormKitDataDebug.vue.d.ts +0 -24
  71. package/dist/components/FormKitDataEdit.d.vue.ts +0 -180
  72. package/dist/components/FormKitDataEdit.vue.d.ts +0 -180
  73. package/dist/components/FormKitDataView.d.vue.ts +0 -73
  74. package/dist/components/FormKitDataView.vue.d.ts +0 -73
  75. package/dist/components/FormKitIcon.d.vue.ts +0 -39
  76. package/dist/components/FormKitIcon.vue.d.ts +0 -39
  77. package/dist/components/FormKitPrefix.d.vue.ts +0 -7
  78. package/dist/components/FormKitPrefix.vue.d.ts +0 -7
  79. package/dist/components/FormKitSuffix.d.vue.ts +0 -7
  80. package/dist/components/FormKitSuffix.vue.d.ts +0 -7
  81. package/dist/components/PrimeAutoComplete.d.vue.ts +0 -31
  82. package/dist/components/PrimeAutoComplete.vue.d.ts +0 -31
  83. package/dist/components/PrimeCascadeSelect.d.vue.ts +0 -28
  84. package/dist/components/PrimeCascadeSelect.vue.d.ts +0 -28
  85. package/dist/components/PrimeCheckbox.d.vue.ts +0 -27
  86. package/dist/components/PrimeCheckbox.vue.d.ts +0 -27
  87. package/dist/components/PrimeColorPicker.d.vue.ts +0 -24
  88. package/dist/components/PrimeColorPicker.vue.d.ts +0 -24
  89. package/dist/components/PrimeDatePicker.d.vue.ts +0 -63
  90. package/dist/components/PrimeDatePicker.vue.d.ts +0 -63
  91. package/dist/components/PrimeInputMask.d.vue.ts +0 -28
  92. package/dist/components/PrimeInputMask.vue.d.ts +0 -28
  93. package/dist/components/PrimeInputNumber.d.vue.ts +0 -36
  94. package/dist/components/PrimeInputNumber.vue.d.ts +0 -36
  95. package/dist/components/PrimeInputOtp.d.vue.ts +0 -26
  96. package/dist/components/PrimeInputOtp.vue.d.ts +0 -26
  97. package/dist/components/PrimeInputText.d.vue.ts +0 -24
  98. package/dist/components/PrimeInputText.vue.d.ts +0 -24
  99. package/dist/components/PrimeKnob.d.vue.ts +0 -31
  100. package/dist/components/PrimeKnob.vue.d.ts +0 -31
  101. package/dist/components/PrimeListbox.d.vue.ts +0 -42
  102. package/dist/components/PrimeListbox.vue.d.ts +0 -42
  103. package/dist/components/PrimeMultiSelect.d.vue.ts +0 -53
  104. package/dist/components/PrimeMultiSelect.vue.d.ts +0 -53
  105. package/dist/components/PrimeOutputBoolean.d.vue.ts +0 -16
  106. package/dist/components/PrimeOutputBoolean.vue.d.ts +0 -16
  107. package/dist/components/PrimeOutputDate.d.vue.ts +0 -16
  108. package/dist/components/PrimeOutputDate.vue.d.ts +0 -16
  109. package/dist/components/PrimeOutputDuration.d.vue.ts +0 -16
  110. package/dist/components/PrimeOutputDuration.vue.d.ts +0 -16
  111. package/dist/components/PrimeOutputLink.d.vue.ts +0 -16
  112. package/dist/components/PrimeOutputLink.vue.d.ts +0 -16
  113. package/dist/components/PrimeOutputList.d.vue.ts +0 -19
  114. package/dist/components/PrimeOutputList.vue.d.ts +0 -19
  115. package/dist/components/PrimeOutputNumber.d.vue.ts +0 -16
  116. package/dist/components/PrimeOutputNumber.vue.d.ts +0 -16
  117. package/dist/components/PrimeOutputReference.d.vue.ts +0 -16
  118. package/dist/components/PrimeOutputReference.vue.d.ts +0 -16
  119. package/dist/components/PrimeOutputText.d.vue.ts +0 -22
  120. package/dist/components/PrimeOutputText.vue.d.ts +0 -22
  121. package/dist/components/PrimePassword.d.vue.ts +0 -33
  122. package/dist/components/PrimePassword.vue.d.ts +0 -33
  123. package/dist/components/PrimeRadioButton.d.vue.ts +0 -28
  124. package/dist/components/PrimeRadioButton.vue.d.ts +0 -28
  125. package/dist/components/PrimeRating.d.vue.ts +0 -24
  126. package/dist/components/PrimeRating.vue.d.ts +0 -24
  127. package/dist/components/PrimeSelect.d.vue.ts +0 -50
  128. package/dist/components/PrimeSelect.vue.d.ts +0 -50
  129. package/dist/components/PrimeSelectButton.d.vue.ts +0 -28
  130. package/dist/components/PrimeSelectButton.vue.d.ts +0 -28
  131. package/dist/components/PrimeSlider.d.vue.ts +0 -26
  132. package/dist/components/PrimeSlider.vue.d.ts +0 -26
  133. package/dist/components/PrimeTextarea.d.vue.ts +0 -25
  134. package/dist/components/PrimeTextarea.vue.d.ts +0 -25
  135. package/dist/components/PrimeToggleButton.d.vue.ts +0 -26
  136. package/dist/components/PrimeToggleButton.vue.d.ts +0 -26
  137. package/dist/components/PrimeToggleSwitch.d.vue.ts +0 -23
  138. package/dist/components/PrimeToggleSwitch.vue.d.ts +0 -23
  139. package/dist/components/PrimeTreeSelect.d.vue.ts +0 -32
  140. package/dist/components/PrimeTreeSelect.vue.d.ts +0 -32
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@sfxcode/formkit-primevue",
3
- "type": "module",
4
- "version": "3.3.3",
5
- "packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
3
+ "version": "3.3.5",
4
+ "homepage": "https://github.com/sfxcode/formkit-primevue",
5
+ "license": "MIT",
6
6
  "author": {
7
7
  "name": "Tom",
8
8
  "email": "tom@sfxcode.com"
@@ -10,12 +10,30 @@
10
10
  "contributors": [
11
11
  "sfxcode <tom@sfxcode.com>"
12
12
  ],
13
- "license": "MIT",
14
- "homepage": "https://github.com/sfxcode/formkit-primevue",
15
13
  "repository": {
16
14
  "type": "git",
17
15
  "url": "git+https://github.com/sfxcode/formkit-primevue.git"
18
16
  },
17
+ "files": [
18
+ "*.css",
19
+ "*.scss",
20
+ "components.d.ts",
21
+ "dist"
22
+ ],
23
+ "type": "module",
24
+ "main": "./dist/index.js",
25
+ "module": "./dist/index.mjs",
26
+ "types": "./dist/index.d.ts",
27
+ "typesVersions": {
28
+ "*": {
29
+ "*": [
30
+ "*",
31
+ "dist/*",
32
+ "dist/*.d.ts",
33
+ "dist/*/index.d.ts"
34
+ ]
35
+ }
36
+ },
19
37
  "exports": {
20
38
  ".": {
21
39
  "types": "./dist/index.d.ts",
@@ -51,43 +69,15 @@
51
69
  "require": "./dist/style.css"
52
70
  }
53
71
  },
54
- "main": "./dist/index.js",
55
- "module": "./dist/index.mjs",
56
- "types": "./dist/index.d.ts",
57
- "typesVersions": {
58
- "*": {
59
- "*": [
60
- "*",
61
- "dist/*",
62
- "dist/*.d.ts",
63
- "dist/*/index.d.ts"
64
- ]
65
- }
66
- },
67
- "files": [
68
- "*.css",
69
- "*.scss",
70
- "components.d.ts",
71
- "dist"
72
- ],
73
72
  "scripts": {
74
73
  "build": "vue-tsc --build --force && unbuild",
75
- "dev": "vite serve dev",
74
+ "dev": "vue-tsc --build",
76
75
  "dev:build": "vite build dev",
77
76
  "dev:preview": "vite preview dev",
78
- "release": "npm run lint && npm run build && changelogen --patch --release && npm publish --access public && git push --follow-tags",
77
+ "release": "npm run build && changelogen --patch --release && npm publish --access public && git push --follow-tags",
79
78
  "lint": "eslint .",
80
79
  "lint:fix": "eslint . --fix",
81
- "prepublishOnly": "pnpm build",
82
- "docs:dev": "vitepress dev docs",
83
- "docs:build": "vitepress build docs",
84
- "docs:serve": "vitepress serve docs",
85
- "test": "vitest",
86
- "test:ui": "vitest --ui",
87
- "coverage": "vitest run --coverage"
88
- },
89
- "peerDependencies": {
90
- "vue": "^3.4.0"
80
+ "prepublishOnly": "pnpm build"
91
81
  },
92
82
  "dependencies": {
93
83
  "@formkit/addons": "^1.7.2",
@@ -98,51 +88,26 @@
98
88
  "@intlify/core": "^11.3.0",
99
89
  "primeicons": "^7.0.0",
100
90
  "primevue": "^4.5.4",
101
- "vue-i18n": "^11.3.0"
91
+ "vue-i18n": "^11.3.0",
92
+ "consola": "3.4.2"
102
93
  },
103
94
  "devDependencies": {
104
- "@antfu/eslint-config": "^7.7.2",
105
- "@formkit/core": "^1.6.9",
106
- "@formkit/drag-and-drop": "^0.5.3",
107
- "@primeuix/themes": "^2.0.3",
108
- "@types/node": "^25.5.0",
109
- "@unocss/preset-icons": "66.6.6",
110
- "@unocss/preset-uno": "66.6.6",
111
- "@vitejs/plugin-vue": "^6.0.5",
112
- "@vitest/coverage-v8": "^4.1.0",
113
- "@vitest/ui": "^4.1.0",
114
- "@vue/compiler-sfc": "^3.5.30",
115
- "@vue/server-renderer": "^3.5.30",
116
- "@vue/test-utils": "^2.4.6",
117
- "@vue/tsconfig": "^0.9.0",
118
- "@vueuse/core": "^14.2.1",
119
- "@vueuse/head": "^2.0.0",
120
- "changelogen": "^0.6.2",
121
- "chart.js": "^4.5.1",
122
- "consola": "^3.4.2",
123
- "cookie": "^1.1.1",
124
- "esbuild": "^0.27.4",
125
- "eslint": "^10.0.3",
126
- "happy-dom": "^20.8.4",
127
- "json-editor-vue": "^0.18.1",
128
- "mkdist": "^2.4.1",
129
- "sass": "^1.98.0",
130
- "tslib": "^2.8.1",
131
- "typescript": "^5.9.3",
132
- "unbuild": "^3.6.1",
133
- "unocss": "66.6.6",
134
- "unplugin-auto-import": "^21.0.0",
135
- "unplugin-vue-components": "^31.0.0",
136
- "vite": "^8.0.0",
137
- "vite-plugin-dts": "^4.5.4",
138
- "vite-plugin-eslint": "^1.8.1",
139
- "vite-plugin-pages": "^0.33.3",
140
- "vite-ssg": "^28.3.0",
141
- "vitepress": "2.0.0-alpha.16",
142
- "vitest": "^4.1.0",
143
- "vue": "^3.5.30",
144
- "vue-demi": "^0.14.10",
145
- "vue-router": "^5.0.3",
146
- "vue-tsc": "^3.2.5"
95
+ "@types/fs-extra": "catalog:",
96
+ "@types/node": "catalog:",
97
+ "@vitejs/plugin-vue": "catalog:",
98
+ "@vue/tsconfig": "catalog:",
99
+ "add": "catalog:",
100
+ "bumpp": "^10.4.1",
101
+ "fs-extra": "catalog:",
102
+ "sass": "catalog:",
103
+ "typescript": "catalog:",
104
+ "unbuild": "catalog:",
105
+ "unplugin-vue": "catalog:",
106
+ "vite": "npm:@voidzero-dev/vite-plus-core@^0.1.14",
107
+ "vite-plus": "catalog:",
108
+ "vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.14",
109
+ "vue": "catalog:",
110
+ "vue-sfc-transformer": "catalog:",
111
+ "vue-tsc": "catalog:"
147
112
  }
148
113
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 sfxcode
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
package/components.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './dist/components'
@@ -1,24 +0,0 @@
1
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- data: {
3
- type: ObjectConstructor;
4
- default: null;
5
- };
6
- header: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
- data: {
12
- type: ObjectConstructor;
13
- default: null;
14
- };
15
- header: {
16
- type: StringConstructor;
17
- default: string;
18
- };
19
- }>> & Readonly<{}>, {
20
- data: Record<string, any>;
21
- header: string;
22
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
- declare const _default: typeof __VLS_export;
24
- export default _default;
@@ -1,24 +0,0 @@
1
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- data: {
3
- type: ObjectConstructor;
4
- default: null;
5
- };
6
- header: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
- data: {
12
- type: ObjectConstructor;
13
- default: null;
14
- };
15
- header: {
16
- type: StringConstructor;
17
- default: string;
18
- };
19
- }>> & Readonly<{}>, {
20
- data: Record<string, any>;
21
- header: string;
22
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
- declare const _default: typeof __VLS_export;
24
- export default _default;
@@ -1,180 +0,0 @@
1
- import type { FormKitSchemaDefinition } from '@formkit/core';
2
- import type { PropType } from 'vue';
3
- declare var __VLS_16: {}, __VLS_29: {}, __VLS_37: {};
4
- type __VLS_Slots = {} & {
5
- default?: (props: typeof __VLS_16) => any;
6
- } & {
7
- messages?: (props: typeof __VLS_29) => any;
8
- } & {
9
- submit?: (props: typeof __VLS_37) => any;
10
- };
11
- declare const __VLS_base: 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
- onReset: (...args: any[]) => void;
81
- dataSaved: (...args: any[]) => void;
82
- "update:modelValue": (value: any) => void;
83
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
84
- id: {
85
- type: StringConstructor;
86
- default: string;
87
- };
88
- data: {
89
- type: ObjectConstructor;
90
- default: null;
91
- };
92
- schema: {
93
- type: PropType<FormKitSchemaDefinition>;
94
- default: null;
95
- };
96
- formClass: {
97
- type: StringConstructor;
98
- default: string;
99
- };
100
- actionsClass: {
101
- type: StringConstructor;
102
- default: string;
103
- };
104
- submitSeverity: {
105
- type: StringConstructor;
106
- default: string;
107
- };
108
- submitClass: {
109
- type: StringConstructor;
110
- default: string;
111
- };
112
- submitLabel: {
113
- type: StringConstructor;
114
- default: string;
115
- };
116
- submitIcon: {
117
- type: StringConstructor;
118
- default: string;
119
- };
120
- showReset: {
121
- type: BooleanConstructor;
122
- default: boolean;
123
- };
124
- resetSeverity: {
125
- type: StringConstructor;
126
- default: string;
127
- };
128
- resetLabel: {
129
- type: StringConstructor;
130
- default: string;
131
- };
132
- resetClass: {
133
- type: StringConstructor;
134
- default: string;
135
- };
136
- resetIcon: {
137
- type: StringConstructor;
138
- default: string;
139
- };
140
- debugData: {
141
- type: BooleanConstructor;
142
- default: boolean;
143
- };
144
- debugSchema: {
145
- type: BooleanConstructor;
146
- default: boolean;
147
- };
148
- modelValue: {
149
- type: PropType<any>;
150
- };
151
- }>> & Readonly<{
152
- onOnReset?: ((...args: any[]) => any) | undefined;
153
- onDataSaved?: ((...args: any[]) => any) | undefined;
154
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
155
- }>, {
156
- data: Record<string, any>;
157
- id: string;
158
- schema: FormKitSchemaDefinition;
159
- formClass: string;
160
- actionsClass: string;
161
- submitSeverity: string;
162
- submitClass: string;
163
- submitLabel: string;
164
- submitIcon: string;
165
- showReset: boolean;
166
- resetSeverity: string;
167
- resetLabel: string;
168
- resetClass: string;
169
- resetIcon: string;
170
- debugData: boolean;
171
- debugSchema: boolean;
172
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
173
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
174
- declare const _default: typeof __VLS_export;
175
- export default _default;
176
- type __VLS_WithSlots<T, S> = T & {
177
- new (): {
178
- $slots: S;
179
- };
180
- };
@@ -1,180 +0,0 @@
1
- import type { FormKitSchemaDefinition } from '@formkit/core';
2
- import type { PropType } from 'vue';
3
- declare var __VLS_16: {}, __VLS_29: {}, __VLS_37: {};
4
- type __VLS_Slots = {} & {
5
- default?: (props: typeof __VLS_16) => any;
6
- } & {
7
- messages?: (props: typeof __VLS_29) => any;
8
- } & {
9
- submit?: (props: typeof __VLS_37) => any;
10
- };
11
- declare const __VLS_base: 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
- onReset: (...args: any[]) => void;
81
- dataSaved: (...args: any[]) => void;
82
- "update:modelValue": (value: any) => void;
83
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
84
- id: {
85
- type: StringConstructor;
86
- default: string;
87
- };
88
- data: {
89
- type: ObjectConstructor;
90
- default: null;
91
- };
92
- schema: {
93
- type: PropType<FormKitSchemaDefinition>;
94
- default: null;
95
- };
96
- formClass: {
97
- type: StringConstructor;
98
- default: string;
99
- };
100
- actionsClass: {
101
- type: StringConstructor;
102
- default: string;
103
- };
104
- submitSeverity: {
105
- type: StringConstructor;
106
- default: string;
107
- };
108
- submitClass: {
109
- type: StringConstructor;
110
- default: string;
111
- };
112
- submitLabel: {
113
- type: StringConstructor;
114
- default: string;
115
- };
116
- submitIcon: {
117
- type: StringConstructor;
118
- default: string;
119
- };
120
- showReset: {
121
- type: BooleanConstructor;
122
- default: boolean;
123
- };
124
- resetSeverity: {
125
- type: StringConstructor;
126
- default: string;
127
- };
128
- resetLabel: {
129
- type: StringConstructor;
130
- default: string;
131
- };
132
- resetClass: {
133
- type: StringConstructor;
134
- default: string;
135
- };
136
- resetIcon: {
137
- type: StringConstructor;
138
- default: string;
139
- };
140
- debugData: {
141
- type: BooleanConstructor;
142
- default: boolean;
143
- };
144
- debugSchema: {
145
- type: BooleanConstructor;
146
- default: boolean;
147
- };
148
- modelValue: {
149
- type: PropType<any>;
150
- };
151
- }>> & Readonly<{
152
- onOnReset?: ((...args: any[]) => any) | undefined;
153
- onDataSaved?: ((...args: any[]) => any) | undefined;
154
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
155
- }>, {
156
- data: Record<string, any>;
157
- id: string;
158
- schema: FormKitSchemaDefinition;
159
- formClass: string;
160
- actionsClass: string;
161
- submitSeverity: string;
162
- submitClass: string;
163
- submitLabel: string;
164
- submitIcon: string;
165
- showReset: boolean;
166
- resetSeverity: string;
167
- resetLabel: string;
168
- resetClass: string;
169
- resetIcon: string;
170
- debugData: boolean;
171
- debugSchema: boolean;
172
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
173
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
174
- declare const _default: typeof __VLS_export;
175
- export default _default;
176
- type __VLS_WithSlots<T, S> = T & {
177
- new (): {
178
- $slots: S;
179
- };
180
- };
@@ -1,73 +0,0 @@
1
- import type { FormKitSchemaDefinition } from '@formkit/core';
2
- import type { PropType } from 'vue';
3
- declare var __VLS_13: {};
4
- type __VLS_Slots = {} & {
5
- default?: (props: typeof __VLS_13) => any;
6
- };
7
- declare const __VLS_base: 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 __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
67
- declare const _default: typeof __VLS_export;
68
- export default _default;
69
- type __VLS_WithSlots<T, S> = T & {
70
- new (): {
71
- $slots: S;
72
- };
73
- };