lew-ui 2.4.12 → 2.4.14

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.
Files changed (33) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +46 -46
  3. package/README.zh-CN.md +48 -48
  4. package/dist/components/flex/src/LewFlex.vue.d.ts +1 -1
  5. package/dist/components/form/src/LewFormItem.vue.d.ts +1 -1
  6. package/dist/components/index.d.ts +1 -0
  7. package/dist/components/input-number/src/LewInputNumber.vue.d.ts +3 -3
  8. package/dist/components/select-multiple/src/LewSelectMultiple.vue.d.ts +5 -3
  9. package/dist/components/select-multiple/src/props.d.ts +3 -1
  10. package/dist/components/slider/src/LewSlider.vue.d.ts +112 -1
  11. package/dist/components/slider/src/props.d.ts +61 -1
  12. package/dist/components/slider-range/src/LewSliderRange.vue.d.ts +108 -1
  13. package/dist/components/slider-range/src/props.d.ts +61 -1
  14. package/dist/confetti.browser.min.js +456 -456
  15. package/dist/docs/docs/slider/api/index.d.ts +2 -0
  16. package/dist/docs/docs/slider/api/model.d.ts +12 -0
  17. package/dist/docs/docs/slider/api/props.d.ts +12 -0
  18. package/dist/docs/docs/slider/demo/index.d.ts +14 -0
  19. package/dist/docs/docs/slider/index.d.ts +3 -0
  20. package/dist/docs/docs/slider-range/api/index.d.ts +2 -0
  21. package/dist/docs/docs/slider-range/api/model.d.ts +12 -0
  22. package/dist/docs/docs/slider-range/api/props.d.ts +12 -0
  23. package/dist/docs/docs/slider-range/demo/index.d.ts +14 -0
  24. package/dist/docs/docs/slider-range/index.d.ts +3 -0
  25. package/dist/docs/views/form-engine/schema/compoments-menus.d.ts +132 -1
  26. package/dist/docs/views/form-engine/schema/components/input-number.d.ts +14 -1
  27. package/dist/docs/views/form-engine/schema/components/slider-range.d.ts +25 -0
  28. package/dist/docs/views/form-engine/schema/components/slider.d.ts +25 -0
  29. package/dist/index.mjs +1176 -309
  30. package/dist/index.umd.js +3 -3
  31. package/dist/style.css +1 -1
  32. package/dist/utils/index.d.ts +16 -0
  33. package/package.json +1 -1
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2023 lew
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2023 lew
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,46 +1,46 @@
1
- # Lew UI
2
-
3
- A Component Library for Vue3. Doc address: https://lew.kamtao.com
4
-
5
- English | [中文](./README.zh-CN.md)
6
-
7
- ## Install
8
-
9
- ```bash
10
- npm install lew-ui
11
- ```
12
-
13
- ## How to use
14
-
15
- ```js
16
- // main.ts
17
- import 'lew-ui/style'
18
- ```
19
-
20
- ```vue
21
- <script setup lang="ts">
22
- // page.vue
23
- import { LewButton } from 'lew-ui'
24
- </script>
25
-
26
- <template>
27
- <lew-button text="Submit" />
28
- </template>
29
- ```
30
-
31
- ## Open Source Libraries
32
-
33
- Lew UI uses the following open source libraries:
34
-
35
- - [tippy.js](https://atomiks.github.io/tippyjs/): For creating tooltips and popovers
36
- - [Lucide](https://github.com/lucide-icons/lucide): Provides a clean and beautiful icon set
37
- - [fancyapps](https://fancyapps.com/): For creating image galleries and carousels
38
- - [VueUse](https://vueuse.org/): Collection of Vue Composition API utilities
39
- - [Day.js](https://day.js.org/): Lightweight library for date manipulation
40
- - [Yup](https://github.com/jquense/yup): Object schema validation library
41
-
42
- We are grateful for the support these excellent open source projects provide to Lew UI.
43
-
44
- ## License
45
-
46
- Lew UI is open source software licensed as MIT.
1
+ # Lew UI
2
+
3
+ A Component Library for Vue3. Doc address: https://lew.kamtao.com
4
+
5
+ English | [中文](./README.zh-CN.md)
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install lew-ui
11
+ ```
12
+
13
+ ## How to use
14
+
15
+ ```js
16
+ // main.ts
17
+ import 'lew-ui/style'
18
+ ```
19
+
20
+ ```vue
21
+ <script setup lang="ts">
22
+ // page.vue
23
+ import { LewButton } from 'lew-ui'
24
+ </script>
25
+
26
+ <template>
27
+ <lew-button text="Submit" />
28
+ </template>
29
+ ```
30
+
31
+ ## Open Source Libraries
32
+
33
+ Lew UI uses the following open source libraries:
34
+
35
+ - [tippy.js](https://atomiks.github.io/tippyjs/): For creating tooltips and popovers
36
+ - [Lucide](https://github.com/lucide-icons/lucide): Provides a clean and beautiful icon set
37
+ - [fancyapps](https://fancyapps.com/): For creating image galleries and carousels
38
+ - [VueUse](https://vueuse.org/): Collection of Vue Composition API utilities
39
+ - [Day.js](https://day.js.org/): Lightweight library for date manipulation
40
+ - [Yup](https://github.com/jquense/yup): Object schema validation library
41
+
42
+ We are grateful for the support these excellent open source projects provide to Lew UI.
43
+
44
+ ## License
45
+
46
+ Lew UI is open source software licensed as MIT.
package/README.zh-CN.md CHANGED
@@ -1,48 +1,48 @@
1
- # Lew UI
2
-
3
- 一个用于 Vue3 的组件库。文档地址:https://lew.kamtao.com
4
-
5
- [英文](./README.md) | 中文
6
-
7
- ## 安装
8
-
9
- ```bash
10
- npm install lew-ui
11
- ```
12
-
13
- ## 如何使用
14
-
15
- main.ts
16
-
17
- ```js
18
- // main.ts
19
- import 'lew-ui/style'
20
- ```
21
-
22
- ```vue
23
- <script setup lang="ts">
24
- // page.vue
25
- import { LewButton } from 'lew-ui'
26
- </script>
27
-
28
- <template>
29
- <lew-button text="提交" />
30
- </template>
31
- ```
32
-
33
- ## 开源库声明
34
-
35
- Lew UI 使用了以下开源库:
36
-
37
- - [tippy.js](https://atomiks.github.io/tippyjs/): 用于创建工具提示和弹出框
38
- - [Lucide](https://github.com/lucide-icons/lucide): 提供简洁美观的图标集
39
- - [fancyapps](https://fancyapps.com/): 用于创建图片画廊和轮播
40
- - [VueUse](https://vueuse.org/): Vue Composition API 实用工具集合
41
- - [Day.js](https://day.js.org/): 轻量级日期处理库
42
- - [Yup](https://github.com/jquense/yup): 对象模式验证库
43
-
44
- 我们感谢这些优秀的开源项目为 Lew UI 提供的支持。
45
-
46
- ## 许可证
47
-
48
- Lew UI 是根据 MIT 许可证的开源软件。
1
+ # Lew UI
2
+
3
+ 一个用于 Vue3 的组件库。文档地址:https://lew.kamtao.com
4
+
5
+ [英文](./README.md) | 中文
6
+
7
+ ## 安装
8
+
9
+ ```bash
10
+ npm install lew-ui
11
+ ```
12
+
13
+ ## 如何使用
14
+
15
+ main.ts
16
+
17
+ ```js
18
+ // main.ts
19
+ import 'lew-ui/style'
20
+ ```
21
+
22
+ ```vue
23
+ <script setup lang="ts">
24
+ // page.vue
25
+ import { LewButton } from 'lew-ui'
26
+ </script>
27
+
28
+ <template>
29
+ <lew-button text="提交" />
30
+ </template>
31
+ ```
32
+
33
+ ## 开源库声明
34
+
35
+ Lew UI 使用了以下开源库:
36
+
37
+ - [tippy.js](https://atomiks.github.io/tippyjs/): 用于创建工具提示和弹出框
38
+ - [Lucide](https://github.com/lucide-icons/lucide): 提供简洁美观的图标集
39
+ - [fancyapps](https://fancyapps.com/): 用于创建图片画廊和轮播
40
+ - [VueUse](https://vueuse.org/): Vue Composition API 实用工具集合
41
+ - [Day.js](https://day.js.org/): 轻量级日期处理库
42
+ - [Yup](https://github.com/jquense/yup): 对象模式验证库
43
+
44
+ 我们感谢这些优秀的开源项目为 Lew UI 提供的支持。
45
+
46
+ ## 许可证
47
+
48
+ Lew UI 是根据 MIT 许可证的开源软件。
@@ -86,9 +86,9 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
86
86
  validator(value: string | number): boolean;
87
87
  };
88
88
  }>> & Readonly<{}>, {
89
+ direction: import('./props').FlexDirection;
89
90
  x: import('./props').FlexAlignment;
90
91
  y: import('./props').FlexAlignment;
91
- direction: import('./props').FlexDirection;
92
92
  mode: import('./props').FlexMode;
93
93
  wrap: boolean;
94
94
  gap: string | number;
@@ -193,9 +193,9 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
193
193
  props: Record<string, any>;
194
194
  tips: string;
195
195
  field: string;
196
+ direction: import('../../..').FormDirection;
196
197
  label: string;
197
198
  between: boolean;
198
- direction: import('../../..').FormDirection;
199
199
  width: string | number;
200
200
  disabled: boolean;
201
201
  readonly: boolean;
@@ -7,6 +7,7 @@ export * from './tabs';
7
7
  export * from './breadcrumb';
8
8
  export * from './dropdown';
9
9
  export * from './steps';
10
+ export * from './slider';
10
11
  export * from './input';
11
12
  export * from './input-number';
12
13
  export * from './textarea';
@@ -135,14 +135,14 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
135
135
  onInput?: ((...args: any[]) => any) | undefined;
136
136
  }>, {
137
137
  size: import('../../..').LewSize;
138
+ max: string | number;
139
+ min: string | number;
140
+ step: string | number;
138
141
  width: string | number;
139
142
  placeholder: string;
140
143
  disabled: boolean;
141
144
  readonly: boolean;
142
- max: string | number;
143
145
  align: import('../../..').InputNumberAlign;
144
146
  selectByFocus: boolean;
145
- min: string | number;
146
- step: string | number;
147
147
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
148
148
  export default _default;
@@ -36,9 +36,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
36
36
  description: string;
37
37
  };
38
38
  size: {
39
- type: PropType<"small" | "medium" | "large">;
39
+ type: PropType<import('../../..').LewSize>;
40
40
  default: string;
41
41
  description: string;
42
+ validator(value: import('../../..').LewSize): boolean;
42
43
  };
43
44
  itemHeight: {
44
45
  type: NumberConstructor;
@@ -136,9 +137,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
136
137
  description: string;
137
138
  };
138
139
  size: {
139
- type: PropType<"small" | "medium" | "large">;
140
+ type: PropType<import('../../..').LewSize>;
140
141
  default: string;
141
142
  description: string;
143
+ validator(value: import('../../..').LewSize): boolean;
142
144
  };
143
145
  itemHeight: {
144
146
  type: NumberConstructor;
@@ -206,7 +208,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
206
208
  onClear?: ((...args: any[]) => any) | undefined;
207
209
  onDelete?: ((...args: any[]) => any) | undefined;
208
210
  }>, {
209
- size: "small" | "medium" | "large";
211
+ size: import('../../..').LewSize;
210
212
  options: SelectMultipleOptions[];
211
213
  placeholder: string;
212
214
  disabled: boolean;
@@ -1,4 +1,5 @@
1
1
  import { PropType } from 'vue';
2
+ import { LewSize } from '../../..';
2
3
 
3
4
  export type SelectMultipleOptions = {
4
5
  label: string;
@@ -43,9 +44,10 @@ export declare const selectMultipleProps: {
43
44
  description: string;
44
45
  };
45
46
  size: {
46
- type: PropType<"small" | "medium" | "large">;
47
+ type: PropType<LewSize>;
47
48
  default: string;
48
49
  description: string;
50
+ validator(value: LewSize): boolean;
49
51
  };
50
52
  itemHeight: {
51
53
  type: NumberConstructor;
@@ -1,2 +1,113 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ modelValue: import('vue').PropType<any>;
3
+ size: {
4
+ type: PropType<import('../../..').LewSize>;
5
+ default: string;
6
+ description: string;
7
+ validator(value: import('../../..').LewSize): boolean;
8
+ };
9
+ min: {
10
+ type: (StringConstructor | NumberConstructor)[];
11
+ default: string;
12
+ description: string;
13
+ validator(value: number | string): boolean;
14
+ };
15
+ max: {
16
+ type: (StringConstructor | NumberConstructor)[];
17
+ default: string;
18
+ description: string;
19
+ validator(value: number | string): boolean;
20
+ };
21
+ step: {
22
+ type: (StringConstructor | NumberConstructor)[];
23
+ default: number;
24
+ description: string;
25
+ validator(value: number | string): boolean;
26
+ };
27
+ readonly: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ description: string;
31
+ };
32
+ disabled: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ description: string;
36
+ };
37
+ options: {
38
+ type: PropType<import('./props').SliderOptions[]>;
39
+ default: () => {
40
+ label: string;
41
+ value: number;
42
+ }[];
43
+ description: string;
44
+ };
45
+ formatTooltip: {
46
+ type: PropType<(value: number) => string>;
47
+ default: (value: number) => string;
48
+ description: string;
49
+ };
50
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
51
+ change: (...args: any[]) => void;
52
+ }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
53
+ modelValue: import('vue').PropType<any>;
54
+ size: {
55
+ type: PropType<import('../../..').LewSize>;
56
+ default: string;
57
+ description: string;
58
+ validator(value: import('../../..').LewSize): boolean;
59
+ };
60
+ min: {
61
+ type: (StringConstructor | NumberConstructor)[];
62
+ default: string;
63
+ description: string;
64
+ validator(value: number | string): boolean;
65
+ };
66
+ max: {
67
+ type: (StringConstructor | NumberConstructor)[];
68
+ default: string;
69
+ description: string;
70
+ validator(value: number | string): boolean;
71
+ };
72
+ step: {
73
+ type: (StringConstructor | NumberConstructor)[];
74
+ default: number;
75
+ description: string;
76
+ validator(value: number | string): boolean;
77
+ };
78
+ readonly: {
79
+ type: BooleanConstructor;
80
+ default: boolean;
81
+ description: string;
82
+ };
83
+ disabled: {
84
+ type: BooleanConstructor;
85
+ default: boolean;
86
+ description: string;
87
+ };
88
+ options: {
89
+ type: PropType<import('./props').SliderOptions[]>;
90
+ default: () => {
91
+ label: string;
92
+ value: number;
93
+ }[];
94
+ description: string;
95
+ };
96
+ formatTooltip: {
97
+ type: PropType<(value: number) => string>;
98
+ default: (value: number) => string;
99
+ description: string;
100
+ };
101
+ }>> & Readonly<{
102
+ onChange?: ((...args: any[]) => any) | undefined;
103
+ }>, {
104
+ size: import('../../..').LewSize;
105
+ max: string | number;
106
+ min: string | number;
107
+ step: string | number;
108
+ options: import('./props').SliderOptions[];
109
+ disabled: boolean;
110
+ readonly: boolean;
111
+ formatTooltip: (value: number) => string;
112
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
113
  export default _default;
@@ -1,4 +1,64 @@
1
1
  import { ExtractPropTypes } from 'vue';
2
+ import { LewSize } from '../../../types';
2
3
 
3
- export declare const sliderProps: {};
4
+ export type SliderOptions = {
5
+ label: string;
6
+ value: string | number;
7
+ };
8
+ export declare const sliderModel: {
9
+ modelValue: {
10
+ type: PropType<number | undefined>;
11
+ default: string;
12
+ description: string;
13
+ };
14
+ };
15
+ export declare const sliderProps: {
16
+ size: {
17
+ type: PropType<LewSize>;
18
+ default: string;
19
+ description: string;
20
+ validator(value: LewSize): boolean;
21
+ };
22
+ min: {
23
+ type: (StringConstructor | NumberConstructor)[];
24
+ default: string;
25
+ description: string;
26
+ validator(value: number | string): boolean;
27
+ };
28
+ max: {
29
+ type: (StringConstructor | NumberConstructor)[];
30
+ default: string;
31
+ description: string;
32
+ validator(value: number | string): boolean;
33
+ };
34
+ step: {
35
+ type: (StringConstructor | NumberConstructor)[];
36
+ default: number;
37
+ description: string;
38
+ validator(value: number | string): boolean;
39
+ };
40
+ readonly: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ description: string;
44
+ };
45
+ disabled: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ description: string;
49
+ };
50
+ options: {
51
+ type: PropType<SliderOptions[]>;
52
+ default: () => {
53
+ label: string;
54
+ value: number;
55
+ }[];
56
+ description: string;
57
+ };
58
+ formatTooltip: {
59
+ type: PropType<(value: number) => string>;
60
+ default: (value: number) => string;
61
+ description: string;
62
+ };
63
+ };
4
64
  export type SliderProps = ExtractPropTypes<typeof sliderProps>;
@@ -1,2 +1,109 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ modelValue: import('vue').PropType<any>;
3
+ size: {
4
+ type: PropType<import('../../..').LewSize>;
5
+ default: string;
6
+ description: string;
7
+ validator(value: import('../../..').LewSize): boolean;
8
+ };
9
+ min: {
10
+ type: (StringConstructor | NumberConstructor)[];
11
+ default: string;
12
+ description: string;
13
+ validator(value: number | string): boolean;
14
+ };
15
+ max: {
16
+ type: (StringConstructor | NumberConstructor)[];
17
+ default: string;
18
+ description: string;
19
+ validator(value: number | string): boolean;
20
+ };
21
+ step: {
22
+ type: (StringConstructor | NumberConstructor)[];
23
+ default: number;
24
+ description: string;
25
+ validator(value: number | string): boolean;
26
+ };
27
+ readonly: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ description: string;
31
+ };
32
+ disabled: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ description: string;
36
+ };
37
+ options: {
38
+ type: PropType<import('./props').SliderRangeOptions[]>;
39
+ default: () => {
40
+ label: string;
41
+ value: number;
42
+ }[];
43
+ description: string;
44
+ };
45
+ formatTooltip: {
46
+ type: PropType<(value: number) => string>;
47
+ default: (value: number) => string;
48
+ description: string;
49
+ };
50
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
51
+ modelValue: import('vue').PropType<any>;
52
+ size: {
53
+ type: PropType<import('../../..').LewSize>;
54
+ default: string;
55
+ description: string;
56
+ validator(value: import('../../..').LewSize): boolean;
57
+ };
58
+ min: {
59
+ type: (StringConstructor | NumberConstructor)[];
60
+ default: string;
61
+ description: string;
62
+ validator(value: number | string): boolean;
63
+ };
64
+ max: {
65
+ type: (StringConstructor | NumberConstructor)[];
66
+ default: string;
67
+ description: string;
68
+ validator(value: number | string): boolean;
69
+ };
70
+ step: {
71
+ type: (StringConstructor | NumberConstructor)[];
72
+ default: number;
73
+ description: string;
74
+ validator(value: number | string): boolean;
75
+ };
76
+ readonly: {
77
+ type: BooleanConstructor;
78
+ default: boolean;
79
+ description: string;
80
+ };
81
+ disabled: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ description: string;
85
+ };
86
+ options: {
87
+ type: PropType<import('./props').SliderRangeOptions[]>;
88
+ default: () => {
89
+ label: string;
90
+ value: number;
91
+ }[];
92
+ description: string;
93
+ };
94
+ formatTooltip: {
95
+ type: PropType<(value: number) => string>;
96
+ default: (value: number) => string;
97
+ description: string;
98
+ };
99
+ }>> & Readonly<{}>, {
100
+ size: import('../../..').LewSize;
101
+ max: string | number;
102
+ min: string | number;
103
+ step: string | number;
104
+ options: import('./props').SliderRangeOptions[];
105
+ disabled: boolean;
106
+ readonly: boolean;
107
+ formatTooltip: (value: number) => string;
108
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
109
  export default _default;