@sfxcode/formkit-primevue 2.5.10 → 2.5.11
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.
|
@@ -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.11",
|
|
5
5
|
"packageManager": "pnpm@9.12.1+sha256.91452fdfa46234ae447d46d5c4fc4e7e0a7058f90495c4b6f77f8beebbb154e3",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Tom",
|
|
@@ -143,6 +143,7 @@
|
|
|
143
143
|
"vue": "^3.5.12",
|
|
144
144
|
"vue-demi": "^0.14.10",
|
|
145
145
|
"vue-router": "^4.4.5",
|
|
146
|
-
"vue-tsc": "^2.1.6"
|
|
146
|
+
"vue-tsc": "^2.1.6",
|
|
147
|
+
"cookie": ">=0.7.0"
|
|
147
148
|
}
|
|
148
149
|
}
|