@webitel/ui-sdk 25.10.41 → 25.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.10.41",
3
+ "version": "25.10.42",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
@@ -56,7 +56,7 @@
56
56
  "@vuepic/vue-datepicker": "^4.5.1",
57
57
  "@vueuse/components": "^13.0.0",
58
58
  "@webitel/api-services": "^0.0.55",
59
- "@webitel/styleguide": "^24.12.73",
59
+ "@webitel/styleguide": "^24.12.74",
60
60
  "autosize": "^6.0.1",
61
61
  "axios": "^1.8.3",
62
62
  "clipboard-copy": "^4.0.1",
@@ -30,6 +30,7 @@
30
30
  </h3>
31
31
  </slot>
32
32
  <wt-icon-btn
33
+ v-if="closable"
33
34
  class="wt-popup__close-btn"
34
35
  icon="close"
35
36
  @click="emit('close')"
@@ -76,6 +77,7 @@ interface Props {
76
77
  * __even if `shown` prop is "true"__
77
78
  */
78
79
  disabled?: boolean;
80
+ closable?: boolean;
79
81
  }
80
82
 
81
83
  const props = withDefaults(defineProps<Props>(), {
@@ -83,6 +85,7 @@ const props = withDefaults(defineProps<Props>(), {
83
85
  size: ComponentSize.MD,
84
86
  overflow: false,
85
87
  disabled: false,
88
+ closable: true
86
89
  });
87
90
 
88
91
  const emit = defineEmits<{
@@ -17,6 +17,7 @@ interface Props {
17
17
  * __even if `shown` prop is "true"__
18
18
  */
19
19
  disabled?: boolean;
20
+ closable?: boolean;
20
21
  }
21
22
  interface ActivatorSlotScope {
22
23
  shown: Props['shown'];
@@ -41,6 +42,7 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
41
42
  disabled: boolean;
42
43
  overflow: boolean;
43
44
  size: ComponentSize;
45
+ closable: boolean;
44
46
  shown: boolean;
45
47
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
46
48
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;