@figurosity/consumer-controls 0.2.0 → 0.2.1
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.
|
@@ -2544,6 +2544,10 @@ const co = ["innerHTML"], io = { style: { margin: "0 10px", position: "relative"
|
|
|
2544
2544
|
type: Number,
|
|
2545
2545
|
default: 0
|
|
2546
2546
|
},
|
|
2547
|
+
step: {
|
|
2548
|
+
type: Number,
|
|
2549
|
+
default: 1
|
|
2550
|
+
},
|
|
2547
2551
|
modelValue: {
|
|
2548
2552
|
type: Number,
|
|
2549
2553
|
required: !0
|
|
@@ -2617,10 +2621,11 @@ const co = ["innerHTML"], io = { style: { margin: "0 10px", position: "relative"
|
|
|
2617
2621
|
color: "primary",
|
|
2618
2622
|
max: e.max,
|
|
2619
2623
|
min: e.min,
|
|
2624
|
+
step: e.step,
|
|
2620
2625
|
modelValue: i.value,
|
|
2621
2626
|
"onUpdate:modelValue": k[0] || (k[0] = (g) => i.value = g),
|
|
2622
2627
|
disable: e.disable
|
|
2623
|
-
}, null, 8, ["max", "min", "modelValue", "disable"]),
|
|
2628
|
+
}, null, 8, ["max", "min", "step", "modelValue", "disable"]),
|
|
2624
2629
|
d.value ? (_(), se("div", ro, [
|
|
2625
2630
|
x("div", {
|
|
2626
2631
|
class: "c-slider-indicator-tick",
|
|
@@ -3184,6 +3189,7 @@ const ko = M({
|
|
|
3184
3189
|
title: String,
|
|
3185
3190
|
max: { type: Number, default: 100 },
|
|
3186
3191
|
min: { type: Number, default: 0 },
|
|
3192
|
+
step: { type: Number, default: 1 },
|
|
3187
3193
|
modelValue: { type: Number, required: !0 }
|
|
3188
3194
|
},
|
|
3189
3195
|
emits: ["update:modelValue", "blockAccess"],
|
|
@@ -3242,6 +3248,7 @@ const ko = M({
|
|
|
3242
3248
|
color: "primary",
|
|
3243
3249
|
max: e.max,
|
|
3244
3250
|
min: e.min,
|
|
3251
|
+
step: e.step,
|
|
3245
3252
|
modelValue: o.value,
|
|
3246
3253
|
"onUpdate:modelValue": (p) => o.value = p,
|
|
3247
3254
|
disable: e.disable,
|
package/package.json
CHANGED