@v1nt1248/3nclient-lib 0.3.41 → 0.3.42
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.
package/dist/ui3n-components.js
CHANGED
|
@@ -4648,7 +4648,7 @@ var ii = ["id"], ai = /* @__PURE__ */ k(/* @__PURE__ */ V({
|
|
|
4648
4648
|
ref_key: "activatorEl",
|
|
4649
4649
|
ref: d,
|
|
4650
4650
|
class: H(t.$style.trigger)
|
|
4651
|
-
}, [e.chips ? (G(), I(oe, {
|
|
4651
|
+
}, [e.chips && !Y(Wr.default)(e.modelValue) ? (G(), I(oe, {
|
|
4652
4652
|
key: 0,
|
|
4653
4653
|
name: "chipAnim",
|
|
4654
4654
|
tag: "div",
|
|
@@ -4703,20 +4703,20 @@ var ii = ["id"], ai = /* @__PURE__ */ k(/* @__PURE__ */ V({
|
|
|
4703
4703
|
])], 2));
|
|
4704
4704
|
}
|
|
4705
4705
|
}), [["__cssModules", { $style: {
|
|
4706
|
-
ui3nAutocomplete: "
|
|
4707
|
-
hiddenBlock: "
|
|
4708
|
-
trigger: "
|
|
4709
|
-
displayValue: "
|
|
4710
|
-
input: "
|
|
4711
|
-
inputWithError: "
|
|
4712
|
-
body: "
|
|
4713
|
-
item: "
|
|
4714
|
-
itemSelected: "
|
|
4715
|
-
itemDisabled: "
|
|
4716
|
-
simpleItem: "
|
|
4717
|
-
noData: "
|
|
4718
|
-
chipsContainer: "
|
|
4719
|
-
chipWrapper: "
|
|
4706
|
+
ui3nAutocomplete: "_ui3nAutocomplete_zxyrz_1",
|
|
4707
|
+
hiddenBlock: "_hiddenBlock_zxyrz_18",
|
|
4708
|
+
trigger: "_trigger_zxyrz_25",
|
|
4709
|
+
displayValue: "_displayValue_zxyrz_34",
|
|
4710
|
+
input: "_input_zxyrz_41",
|
|
4711
|
+
inputWithError: "_inputWithError_zxyrz_61",
|
|
4712
|
+
body: "_body_zxyrz_67",
|
|
4713
|
+
item: "_item_zxyrz_73",
|
|
4714
|
+
itemSelected: "_itemSelected_zxyrz_87",
|
|
4715
|
+
itemDisabled: "_itemDisabled_zxyrz_91",
|
|
4716
|
+
simpleItem: "_simpleItem_zxyrz_96",
|
|
4717
|
+
noData: "_noData_zxyrz_101",
|
|
4718
|
+
chipsContainer: "_chipsContainer_zxyrz_114",
|
|
4719
|
+
chipWrapper: "_chipWrapper_zxyrz_124"
|
|
4720
4720
|
} }]]), ea = ["id"], ta = ["name", "value"], na = ["name", "value"], ra = ["name", "value"], ia = /* @__PURE__ */ k(/* @__PURE__ */ V({
|
|
4721
4721
|
__name: "ui3n-slider",
|
|
4722
4722
|
props: {
|
package/package.json
CHANGED
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
:class="$style.trigger"
|
|
393
393
|
>
|
|
394
394
|
<transition-group
|
|
395
|
-
v-if="chips"
|
|
395
|
+
v-if="chips && !isEmpty(modelValue)"
|
|
396
396
|
name="chipAnim"
|
|
397
397
|
tag="div"
|
|
398
398
|
:class="$style.chipsContainer"
|
|
@@ -511,6 +511,7 @@
|
|
|
511
511
|
--ui3n-autocomplete-border-radius: 4px;
|
|
512
512
|
|
|
513
513
|
position: relative;
|
|
514
|
+
display: flex;
|
|
514
515
|
width: 100%;
|
|
515
516
|
min-height: var(--ui3n-autocomplete-min-height);
|
|
516
517
|
|
|
@@ -547,8 +548,8 @@
|
|
|
547
548
|
border-radius: var(--ui3n-autocomplete-border-radius);
|
|
548
549
|
padding: 0 var(--ui3n-autocomplete-padding-inline);
|
|
549
550
|
flex: 1 1 60px;
|
|
551
|
+
min-width: 60px;
|
|
550
552
|
height: var(--ui3n-autocomplete-min-height);
|
|
551
|
-
width: 100%;
|
|
552
553
|
font-size: var(--ui3n-autocomplete-font-size);
|
|
553
554
|
line-height: var(--ui3n-autocomplete-min-height);
|
|
554
555
|
font-weight: 400;
|
|
@@ -628,6 +629,10 @@
|
|
|
628
629
|
flex-wrap: wrap;
|
|
629
630
|
gap: 4px;
|
|
630
631
|
align-items: flex-start;
|
|
632
|
+
|
|
633
|
+
&:empty {
|
|
634
|
+
display: none;
|
|
635
|
+
}
|
|
631
636
|
}
|
|
632
637
|
|
|
633
638
|
.chipWrapper {
|