@v1nt1248/3nclient-lib 0.3.41 → 0.3.43

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.
@@ -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: "_ui3nAutocomplete_2o0no_1",
4707
- hiddenBlock: "_hiddenBlock_2o0no_17",
4708
- trigger: "_trigger_2o0no_24",
4709
- displayValue: "_displayValue_2o0no_33",
4710
- input: "_input_2o0no_40",
4711
- inputWithError: "_inputWithError_2o0no_60",
4712
- body: "_body_2o0no_66",
4713
- item: "_item_2o0no_72",
4714
- itemSelected: "_itemSelected_2o0no_86",
4715
- itemDisabled: "_itemDisabled_2o0no_90",
4716
- simpleItem: "_simpleItem_2o0no_95",
4717
- noData: "_noData_2o0no_100",
4718
- chipsContainer: "_chipsContainer_2o0no_113",
4719
- chipWrapper: "_chipWrapper_2o0no_120"
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
@@ -2,7 +2,7 @@
2
2
  "name": "@v1nt1248/3nclient-lib",
3
3
  "license": "AGPL-3.0-or-later",
4
4
  "author": "v1nt1248",
5
- "version": "0.3.41",
5
+ "version": "0.3.43",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -29,6 +29,7 @@ import type {
29
29
  Ui3nCheckboxValue,
30
30
  } from './ui3n-checkbox/types';
31
31
  import Ui3nNotification from './ui3n-notification/ui3n-notification.vue';
32
+ import type { Ui3nNotificationProps } from './ui3n-notification/types';
32
33
  import Ui3nTableSortIcon from './ui3n-table/ui3n-table-sort-icon.vue';
33
34
  import Ui3nTable from './ui3n-table/ui3n-table.vue';
34
35
  import type {
@@ -205,6 +206,7 @@ export {
205
206
  Ui3nCheckboxExpose,
206
207
  Ui3nCheckboxValue,
207
208
  Ui3nNotification,
209
+ Ui3nNotificationProps,
208
210
  Ui3nTableSortIcon,
209
211
  Ui3nTableSortIconProps,
210
212
  Ui3nTable,
@@ -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 {