@webitel/ui-sdk 25.4.70 → 25.4.71

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/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## [v25.4.71] - 2025-04-23
2
+ ### :sparkles: New Features
3
+ - [`32eadb0`](https://github.com/webitel/webitel-ui-sdk/commit/32eadb01325a0ea6c07f3fdec4814817cd980694) - update package version to 25.4.71 [WTEL-6389](https://webitel.atlassian.net/browse/WTEL-6389) *(commit by [@stanislav-kozak](https://github.com/stanislav-kozak))*
4
+
5
+
6
+ ## [v25.4.70] - 2025-04-23
7
+ ### :sparkles: New Features
8
+ - [`287b34c`](https://github.com/webitel/webitel-ui-sdk/commit/287b34c6b65c817a50caadfe9e025201d95f6671) - remove comment into styles [WTEL-6389](https://webitel.atlassian.net/browse/WTEL-6389) *(commit by [@stanislav-kozak](https://github.com/stanislav-kozak))*
9
+ - [`d9edade`](https://github.com/webitel/webitel-ui-sdk/commit/d9edadeb59775a42b7d30d54efc44d26ee3ef5f4) - implement validation for datepicker component [WTEL-6389](https://webitel.atlassian.net/browse/WTEL-6389) *(commit by [@stanislav-kozak](https://github.com/stanislav-kozak))*
10
+ - [`6314b8f`](https://github.com/webitel/webitel-ui-sdk/commit/6314b8f4e9566a1e9cf29bd1f3667ac8fddd2cd0) - type extension filter preview for datetime kind [WTEL-6702](https://webitel.atlassian.net/browse/WTEL-6702) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
11
+ - [`5d72440`](https://github.com/webitel/webitel-ui-sdk/commit/5d72440fa3e89770f33cebf8db70aa6bdac4728f) - type extension filter preview for bool kind [WTEL-6702](https://webitel.atlassian.net/browse/WTEL-6702) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
12
+ - [`714470b`](https://github.com/webitel/webitel-ui-sdk/commit/714470bbdc697bcfa656d899bb68e575fd738eac) - type extension filter preview for multiselect kind [WTEL-6702](https://webitel.atlassian.net/browse/WTEL-6702) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
13
+ - [`3f01c6e`](https://github.com/webitel/webitel-ui-sdk/commit/3f01c6e0c00f7106e3c6ecf7b2c7dd14219f832b) - type extension filter preview for select kind [WTEL-6702](https://webitel.atlassian.net/browse/WTEL-6702) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
14
+
15
+ ### :bug: Bug Fixes
16
+ - [`675aa3f`](https://github.com/webitel/webitel-ui-sdk/commit/675aa3f30b31b9f4badd1662962038dafa6e7b25) - FilterConfig.ts circular deps issue [WTEL-6702](https://webitel.atlassian.net/browse/WTEL-6702) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
17
+
18
+
1
19
  ## [v25.4.69] - 2025-04-22
2
20
  ### :sparkles: New Features
3
21
  - [`44c5a72`](https://github.com/webitel/webitel-ui-sdk/commit/44c5a7284a134c25bcf7c6a212993401052e2fc6) - add on-demand/WtTypeExtensionValueInput.vue, WtTypeExtensionFieldKind.ts enum and update related imports [WTEL-6702](https://webitel.atlassian.net/browse/WTEL-6702) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
@@ -1934,3 +1952,5 @@
1934
1952
  [v25.4.64]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.63...v25.4.64
1935
1953
  [v25.4.65]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.64...v25.4.65
1936
1954
  [v25.4.69]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.65...v25.4.69
1955
+ [v25.4.70]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.69...v25.4.70
1956
+ [v25.4.71]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.70...v25.4.71
@@ -13,6 +13,7 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
13
13
  clearable: boolean;
14
14
  placeholder: string;
15
15
  lang: string;
16
+ v?: Record<string, any>;
16
17
  labelProps?: Record<string, any>;
17
18
  disabledDates?: Record<string, any>;
18
19
  $props: {
@@ -24,6 +25,7 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
24
25
  readonly clearable?: boolean;
25
26
  readonly placeholder?: string;
26
27
  readonly lang?: string;
28
+ readonly v?: Record<string, any>;
27
29
  readonly labelProps?: Record<string, any>;
28
30
  readonly disabledDates?: Record<string, any>;
29
31
  };
@@ -11,10 +11,10 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
11
11
  required: boolean;
12
12
  label: string;
13
13
  disabled: boolean;
14
+ customValidators: unknown[];
14
15
  hasShowPassword: boolean;
15
16
  numberMin: number;
16
17
  preventTrim: boolean;
17
- customValidators: unknown[];
18
18
  value?: string | number;
19
19
  v?: Record<string, any>;
20
20
  modelValue?: string | number;
@@ -27,10 +27,10 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
27
27
  readonly required?: boolean;
28
28
  readonly label?: string;
29
29
  readonly disabled?: boolean;
30
+ readonly customValidators?: unknown[];
30
31
  readonly hasShowPassword?: boolean;
31
32
  readonly numberMin?: number;
32
33
  readonly preventTrim?: boolean;
33
- readonly customValidators?: unknown[];
34
34
  readonly value?: string | number;
35
35
  readonly v?: Record<string, any>;
36
36
  readonly modelValue?: string | number;