@snabcentr/vue-ui-lib 2.17.1 → 2.17.2
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/manifest.json +2 -2
- package/dist/release_notes.tmp +4 -2
- package/dist/sc-vue-ui-lib.css +1 -1
- package/dist/sc-vue-ui-lib.js +516 -506
- package/dist/sc-vue-ui-lib.js.map +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs +2 -2
- package/dist/sc-vue-ui-lib.umd.cjs.map +1 -1
- package/dist/src/components/configurators/metal-for-doors/metal-for-doors-configurator-form.vue.d.ts +2077 -2031
- package/dist/src/components/configurators/strip/strip-configurator-line-item.vue.d.ts +2077 -2032
- package/dist/src/components/inputs/debounced-input-number.vue.d.ts +9 -2
- package/dist/src/components/inputs/debounced-input.vue.d.ts +9 -2
- package/package.json +1 -1
@@ -2,7 +2,7 @@ import { IDebounced, IPlaceholder } from '../../properties';
|
|
2
2
|
/**
|
3
3
|
* Компонент числового поля ввода с устранением дребезга.
|
4
4
|
*/
|
5
|
-
declare const _default: import('vue').DefineComponent<import('../../properties').IValue<number | null | undefined> & import('../../properties').IClearable & IDebounced & IPlaceholder & {
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('../../properties').IValue<number | null | undefined> & import('../../properties').IClearable & IDebounced & IPlaceholder & {
|
6
6
|
/**
|
7
7
|
* Минимальное значение.
|
8
8
|
*/
|
@@ -2590,5 +2590,12 @@ declare const _default: import('vue').DefineComponent<import('../../properties')
|
|
2590
2590
|
buttonPlacement: "right" | "both";
|
2591
2591
|
updateValueOnInput: boolean;
|
2592
2592
|
}> | null;
|
2593
|
-
}, any
|
2593
|
+
}, any>, {
|
2594
|
+
prefix?(_: {}): any;
|
2595
|
+
}>;
|
2594
2596
|
export default _default;
|
2597
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
2598
|
+
new (): {
|
2599
|
+
$slots: S;
|
2600
|
+
};
|
2601
|
+
};
|
@@ -2,7 +2,7 @@ import { IDebounced, IPlaceholder } from '../../properties';
|
|
2
2
|
/**
|
3
3
|
* Компонент поля ввода с устранением дребезга.
|
4
4
|
*/
|
5
|
-
declare const _default: import('vue').DefineComponent<import('../../properties').IValue<string | undefined> & import('../../properties').IClearable & IDebounced & IPlaceholder, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('../../properties').IValue<string | undefined> & import('../../properties').IClearable & IDebounced & IPlaceholder, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
6
6
|
"update:value": (value: string | undefined, ...additionalParams: any[]) => any;
|
7
7
|
}, string, import('vue').PublicProps, Readonly<import('../../properties').IValue<string | undefined> & import('../../properties').IClearable & IDebounced & IPlaceholder> & Readonly<{
|
8
8
|
"onUpdate:value"?: ((value: string | undefined, ...additionalParams: any[]) => any) | undefined;
|
@@ -11,5 +11,12 @@ declare const _default: import('vue').DefineComponent<import('../../properties')
|
|
11
11
|
clearable: boolean;
|
12
12
|
placeholder: string;
|
13
13
|
debounceTime: number;
|
14
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
15
|
+
prefix?(_: {}): any;
|
16
|
+
}>;
|
15
17
|
export default _default;
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
19
|
+
new (): {
|
20
|
+
$slots: S;
|
21
|
+
};
|
22
|
+
};
|