@sfxcode/formkit-primevue 2.5.10 → 2.5.12
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.
|
@@ -77,10 +77,14 @@ function handleSave() {
|
|
|
77
77
|
<slot />
|
|
78
78
|
</template>
|
|
79
79
|
<template #messages>
|
|
80
|
-
<
|
|
80
|
+
<slot name="messages">
|
|
81
|
+
<FormKitMessages class="p-formkit-data-edit-messages" />
|
|
82
|
+
</slot>
|
|
81
83
|
</template>
|
|
82
84
|
<template #submit>
|
|
83
|
-
<
|
|
85
|
+
<slot name="submit">
|
|
86
|
+
<Button type="submit" :label="submitLabel" :class="buttonClass" @submit="handleSave" />
|
|
87
|
+
</slot>
|
|
84
88
|
</template>
|
|
85
89
|
</FormKit>
|
|
86
90
|
<FormKitDebug v-if="debugData" :data="formData" header="Data" />
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use 'sass:math';
|
|
2
|
+
@use 'sass:map';
|
|
2
3
|
|
|
3
4
|
$gutter-width: 0.5rem;
|
|
4
5
|
|
|
@@ -12,7 +13,7 @@ $grid-breakpoints: (
|
|
|
12
13
|
) !default;
|
|
13
14
|
|
|
14
15
|
@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
|
|
15
|
-
$min: map
|
|
16
|
+
$min: map.get($breakpoints, $name);
|
|
16
17
|
@return if($min != 0, $min, null);
|
|
17
18
|
}
|
|
18
19
|
|
|
@@ -303,7 +304,7 @@ $grid-breakpoints: (
|
|
|
303
304
|
}
|
|
304
305
|
@for $i from 1 through 12 {
|
|
305
306
|
.col-#{$i} {
|
|
306
|
-
width: percentage(math.div($i, 12));
|
|
307
|
+
width: math.percentage(math.div($i, 12));
|
|
307
308
|
}
|
|
308
309
|
}
|
|
309
310
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sfxcode/formkit-primevue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.5.
|
|
4
|
+
"version": "2.5.12",
|
|
5
5
|
"packageManager": "pnpm@9.12.1+sha256.91452fdfa46234ae447d46d5c4fc4e7e0a7058f90495c4b6f77f8beebbb154e3",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Tom",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"@antfu/eslint-config": "^3.8.0",
|
|
103
103
|
"@formkit/core": "^1.6.7",
|
|
104
104
|
"@primevue/themes": "^4.1.1",
|
|
105
|
-
"@types/node": "^22.
|
|
105
|
+
"@types/node": "^22.8.0",
|
|
106
106
|
"@types/uuid": "^10.0.0",
|
|
107
107
|
"@unocss/preset-icons": "^0.63.6",
|
|
108
108
|
"@unocss/preset-uno": "^0.63.6",
|
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
"changelogen": "^0.5.7",
|
|
121
121
|
"chart.js": "^4.4.5",
|
|
122
122
|
"consola": "^3.2.3",
|
|
123
|
+
"cookie": "^1.0.1",
|
|
123
124
|
"eslint": "^9.13.0",
|
|
124
125
|
"happy-dom": "^15.7.4",
|
|
125
126
|
"json-editor-vue": "^0.17.2",
|
|
@@ -132,7 +133,7 @@
|
|
|
132
133
|
"unocss": "^0.63.6",
|
|
133
134
|
"unplugin-auto-import": "^0.18.3",
|
|
134
135
|
"unplugin-vue-components": "^0.27.4",
|
|
135
|
-
"vanilla-jsoneditor": "^1.1.
|
|
136
|
+
"vanilla-jsoneditor": "^1.1.2",
|
|
136
137
|
"vite": "^5.4.10",
|
|
137
138
|
"vite-plugin-dts": "^4.3.0",
|
|
138
139
|
"vite-plugin-eslint": "^1.8.1",
|