@fangzhongya/fang-ui 0.0.32 → 0.0.33

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 (36) hide show
  1. package/dist/components/forms/src/data.cjs +12 -12
  2. package/dist/components/forms/src/data.d.ts +17 -17
  3. package/dist/components/forms/src/data.js +12 -12
  4. package/dist/components/forms/src/index.cjs +5 -5
  5. package/dist/components/forms/src/index.d.ts +5 -5
  6. package/dist/components/forms/src/index.js +5 -5
  7. package/dist/components/index.cjs +98 -96
  8. package/dist/components/index.d.ts +1 -0
  9. package/dist/components/index.js +2 -0
  10. package/dist/components/index.scss +1 -0
  11. package/dist/components/seamless-scroll/index.cjs +8 -0
  12. package/dist/components/seamless-scroll/index.css +30 -0
  13. package/dist/components/seamless-scroll/index.d.ts +118 -0
  14. package/dist/components/seamless-scroll/index.js +8 -0
  15. package/dist/components/seamless-scroll/index.scss +19 -0
  16. package/dist/components/seamless-scroll/src/data.cjs +34 -0
  17. package/dist/components/seamless-scroll/src/data.d.ts +44 -0
  18. package/dist/components/seamless-scroll/src/data.js +34 -0
  19. package/dist/components/seamless-scroll/src/index.cjs +148 -0
  20. package/dist/components/seamless-scroll/src/index.d.ts +80 -0
  21. package/dist/components/seamless-scroll/src/index.js +148 -0
  22. package/dist/components/seamless-scroll/src/index2.cjs +4 -0
  23. package/dist/components/seamless-scroll/src/index2.js +4 -0
  24. package/dist/expand/{chunk-XJ2UIJNI.js → chunk-IMQMZ66E.js} +1 -0
  25. package/dist/expand/{chunk-JOH5MZT3.cjs → chunk-KYVOOBKQ.cjs} +1 -0
  26. package/dist/expand/components.cjs +5 -5
  27. package/dist/expand/components.js +1 -1
  28. package/dist/expand/config.cjs +2 -2
  29. package/dist/expand/config.js +1 -1
  30. package/dist/index.cjs +116 -114
  31. package/dist/index.css +17 -0
  32. package/dist/index.js +2 -0
  33. package/dist/type.d.ts +2 -0
  34. package/package.json +9 -8
  35. /package/dist/components/{form → collapse-item}/index.css +0 -0
  36. /package/dist/components/{forms-item → forms-items}/index.css +0 -0
@@ -4,8 +4,8 @@ const urls = require("../../common/urls.cjs");
4
4
  const dataProps = {
5
5
  ...urls.props,
6
6
  /**
7
- * 展示数据列表
8
7
  * @props { Array<ListObj> } list
8
+ * 展示数据列表
9
9
  */
10
10
  list: {
11
11
  type: Array,
@@ -20,13 +20,13 @@ const dataProps = {
20
20
  }
21
21
  },
22
22
  /**
23
- * 是否全部禁用
24
23
  * @props { Boolean } disabled
24
+ * 是否全部禁用
25
25
  */
26
26
  disabled: { type: Boolean },
27
27
  /**
28
- * 选择数据集合
29
28
  * @props { Object } options
29
+ * 选择数据集合
30
30
  */
31
31
  options: {
32
32
  type: Object,
@@ -35,8 +35,8 @@ const dataProps = {
35
35
  }
36
36
  },
37
37
  /**
38
- * 外部组件集合
39
38
  * @props { Object } compons
39
+ * 外部组件集合
40
40
  */
41
41
  compons: {
42
42
  type: Object,
@@ -45,8 +45,8 @@ const dataProps = {
45
45
  }
46
46
  },
47
47
  /**
48
- * 标签的长度
49
48
  * @props { String } width=auto ( )
49
+ * 标签的长度
50
50
  */
51
51
  labelWidth: {
52
52
  type: [String, Number],
@@ -89,15 +89,15 @@ const dataProps = {
89
89
  default: "18px"
90
90
  },
91
91
  /**
92
- * 默认展示数据
93
92
  * @props { Object } value
93
+ * 默认展示数据
94
94
  */
95
95
  modelValue: {
96
96
  type: Object
97
97
  },
98
98
  /**
99
- * 表单按钮
100
99
  * @props { Object } buts=[]
100
+ * 表单按钮
101
101
  * pid: {1, 调用确认提交的方法; 2, 调用取消的方法}
102
102
  */
103
103
  buts: {
@@ -113,32 +113,32 @@ const dataProps = {
113
113
  };
114
114
  const dataEmits = {
115
115
  /**
116
- * v-model 数据更新
117
116
  * @emits update:modelValue (值)
117
+ * v-model 数据更新
118
118
  */
119
119
  "update:modelValue": (value) => {
120
120
  },
121
121
  /**
122
- * 提交事件
123
122
  * @emits submit (form值:ObjAny)
123
+ * 提交事件
124
124
  */
125
125
  submit: (obj) => {
126
126
  },
127
127
  /**
128
- * 关闭事件
129
128
  * @emits cancel (form值:ObjAny)
129
+ * 关闭事件
130
130
  */
131
131
  cancel: (obj) => {
132
132
  },
133
133
  /**
134
- * buts按钮事件
135
134
  * @emits cancel (buts当前对象:ObjAny, form值, 第几个, Event对象)
135
+ * buts按钮事件
136
136
  */
137
137
  buts: (obj, dataForm, index, event) => {
138
138
  },
139
139
  /**
140
- * 表单数据变动
141
140
  * @emits upform (form值)
141
+ * 表单数据变动
142
142
  */
143
143
  upform: (dataForm) => {
144
144
  }
@@ -5,8 +5,8 @@ import { comHandle } from '../../common/urls';
5
5
  */
6
6
  export declare const dataProps: {
7
7
  /**
8
- * 展示数据列表
9
8
  * @props { Array<ListObj> } list
9
+ * 展示数据列表
10
10
  */
11
11
  list: {
12
12
  type: {
@@ -32,23 +32,23 @@ export declare const dataProps: {
32
32
  default(): number;
33
33
  };
34
34
  /**
35
- * 是否全部禁用
36
35
  * @props { Boolean } disabled
36
+ * 是否全部禁用
37
37
  */
38
38
  disabled: {
39
39
  type: BooleanConstructor;
40
40
  };
41
41
  /**
42
- * 选择数据集合
43
42
  * @props { Object } options
43
+ * 选择数据集合
44
44
  */
45
45
  options: {
46
46
  type: ObjectConstructor;
47
47
  default(): {};
48
48
  };
49
49
  /**
50
- * 外部组件集合
51
50
  * @props { Object } compons
51
+ * 外部组件集合
52
52
  */
53
53
  compons: {
54
54
  type: () => {
@@ -57,8 +57,8 @@ export declare const dataProps: {
57
57
  default(): {};
58
58
  };
59
59
  /**
60
- * 标签的长度
61
60
  * @props { String } width=auto ( )
61
+ * 标签的长度
62
62
  */
63
63
  labelWidth: {
64
64
  type: (NumberConstructor | StringConstructor)[];
@@ -99,15 +99,15 @@ export declare const dataProps: {
99
99
  default: string;
100
100
  };
101
101
  /**
102
- * 默认展示数据
103
102
  * @props { Object } value
103
+ * 默认展示数据
104
104
  */
105
105
  modelValue: {
106
106
  type: ObjectConstructor;
107
107
  };
108
108
  /**
109
- * 表单按钮
110
109
  * @props { Object } buts=[]
110
+ * 表单按钮
111
111
  * pid: {1, 调用确认提交的方法; 2, 调用取消的方法}
112
112
  */
113
113
  buts: {
@@ -164,28 +164,28 @@ export type DataProps = ExtractPropTypes<typeof dataProps>;
164
164
  */
165
165
  export declare const dataEmits: {
166
166
  /**
167
- * v-model 数据更新
168
167
  * @emits update:modelValue (值)
168
+ * v-model 数据更新
169
169
  */
170
170
  'update:modelValue': (value: ObjAny) => void;
171
171
  /**
172
- * 提交事件
173
172
  * @emits submit (form值:ObjAny)
173
+ * 提交事件
174
174
  */
175
175
  submit: (obj: ObjAny) => void;
176
176
  /**
177
- * 关闭事件
178
177
  * @emits cancel (form值:ObjAny)
178
+ * 关闭事件
179
179
  */
180
180
  cancel: (obj: ObjAny) => void;
181
181
  /**
182
- * buts按钮事件
183
182
  * @emits cancel (buts当前对象:ObjAny, form值, 第几个, Event对象)
183
+ * buts按钮事件
184
184
  */
185
185
  buts: (obj: ObjAny, dataForm: ObjAny, index: number, event: Event) => void;
186
186
  /**
187
- * 表单数据变动
188
187
  * @emits upform (form值)
188
+ * 表单数据变动
189
189
  */
190
190
  upform: (dataForm: ObjAny) => void;
191
191
  };
@@ -194,28 +194,28 @@ export declare const dataEmits: {
194
194
  */
195
195
  export type DataEmits = {
196
196
  /**
197
- * v-model 数据更新
198
197
  * @emits update:modelValue (值)
198
+ * v-model 数据更新
199
199
  */
200
200
  (e: 'update:modelValue', value: boolean): void;
201
201
  /**
202
- * 提交事件
203
202
  * @emits submit (form值:ObjAny)
203
+ * 提交事件
204
204
  */
205
205
  (e: 'submit', obj: ObjAny): void;
206
206
  /**
207
- * 关闭事件
208
207
  * @emits cancel (form值:ObjAny)
208
+ * 关闭事件
209
209
  */
210
210
  (e: 'cancel', obj: ObjAny): void;
211
211
  /**
212
- * buts按钮事件
213
212
  * @emits cancel (buts当前对象:ObjAny, form值, 第几个, Event对象)
213
+ * buts按钮事件
214
214
  */
215
215
  (e: 'buts', obj: ObjAny, dataForm: ObjAny, index: number, event: Event): void;
216
216
  /**
217
- * 表单数据变动
218
217
  * @emits upform (form值)
218
+ * 表单数据变动
219
219
  */
220
220
  (e: 'upform', dataForm: ObjAny): void;
221
221
  };
@@ -2,8 +2,8 @@ import { props, comHandle } from "../../common/urls.js";
2
2
  const dataProps = {
3
3
  ...props,
4
4
  /**
5
- * 展示数据列表
6
5
  * @props { Array<ListObj> } list
6
+ * 展示数据列表
7
7
  */
8
8
  list: {
9
9
  type: Array,
@@ -18,13 +18,13 @@ const dataProps = {
18
18
  }
19
19
  },
20
20
  /**
21
- * 是否全部禁用
22
21
  * @props { Boolean } disabled
22
+ * 是否全部禁用
23
23
  */
24
24
  disabled: { type: Boolean },
25
25
  /**
26
- * 选择数据集合
27
26
  * @props { Object } options
27
+ * 选择数据集合
28
28
  */
29
29
  options: {
30
30
  type: Object,
@@ -33,8 +33,8 @@ const dataProps = {
33
33
  }
34
34
  },
35
35
  /**
36
- * 外部组件集合
37
36
  * @props { Object } compons
37
+ * 外部组件集合
38
38
  */
39
39
  compons: {
40
40
  type: Object,
@@ -43,8 +43,8 @@ const dataProps = {
43
43
  }
44
44
  },
45
45
  /**
46
- * 标签的长度
47
46
  * @props { String } width=auto ( )
47
+ * 标签的长度
48
48
  */
49
49
  labelWidth: {
50
50
  type: [String, Number],
@@ -87,15 +87,15 @@ const dataProps = {
87
87
  default: "18px"
88
88
  },
89
89
  /**
90
- * 默认展示数据
91
90
  * @props { Object } value
91
+ * 默认展示数据
92
92
  */
93
93
  modelValue: {
94
94
  type: Object
95
95
  },
96
96
  /**
97
- * 表单按钮
98
97
  * @props { Object } buts=[]
98
+ * 表单按钮
99
99
  * pid: {1, 调用确认提交的方法; 2, 调用取消的方法}
100
100
  */
101
101
  buts: {
@@ -111,32 +111,32 @@ const dataProps = {
111
111
  };
112
112
  const dataEmits = {
113
113
  /**
114
- * v-model 数据更新
115
114
  * @emits update:modelValue (值)
115
+ * v-model 数据更新
116
116
  */
117
117
  "update:modelValue": (value) => {
118
118
  },
119
119
  /**
120
- * 提交事件
121
120
  * @emits submit (form值:ObjAny)
121
+ * 提交事件
122
122
  */
123
123
  submit: (obj) => {
124
124
  },
125
125
  /**
126
- * 关闭事件
127
126
  * @emits cancel (form值:ObjAny)
127
+ * 关闭事件
128
128
  */
129
129
  cancel: (obj) => {
130
130
  },
131
131
  /**
132
- * buts按钮事件
133
132
  * @emits cancel (buts当前对象:ObjAny, form值, 第几个, Event对象)
133
+ * buts按钮事件
134
134
  */
135
135
  buts: (obj, dataForm, index, event) => {
136
136
  },
137
137
  /**
138
- * 表单数据变动
139
138
  * @emits upform (form值)
139
+ * 表单数据变动
140
140
  */
141
141
  upform: (dataForm) => {
142
142
  }
@@ -41,29 +41,29 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
41
41
  }
42
42
  __expose({
43
43
  /**
44
- * 表单的Dom
45
44
  * @expose { Element } dom
45
+ * 表单的Dom
46
46
  */
47
47
  dom: refEl,
48
48
  closeForm,
49
49
  /**
50
- * 提交表单
51
50
  * @expose submitForm (回调方法?:Function)
51
+ * 提交表单
52
52
  */
53
53
  submitForm,
54
54
  /**
55
- * 验证具体的某个字段
56
55
  * @expose validateField (字段:string, 回调方法?:Function)
56
+ * 验证具体的某个字段
57
57
  */
58
58
  validateField,
59
59
  /**
60
- * 重置表单
61
60
  * @expose resetFields
61
+ * 重置表单
62
62
  */
63
63
  resetFields,
64
64
  /**
65
- * 校验表单
66
65
  * @expose { Promise : 对象true成功false失败 } validate
66
+ * 校验表单
67
67
  */
68
68
  validate
69
69
  });
@@ -314,29 +314,29 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
314
314
  };
315
315
  }>, {
316
316
  /**
317
- * 表单的Dom
318
317
  * @expose { Element } dom
318
+ * 表单的Dom
319
319
  */
320
320
  dom: Ref<any, any>;
321
321
  closeForm: () => void;
322
322
  /**
323
- * 提交表单
324
323
  * @expose submitForm (回调方法?:Function)
324
+ * 提交表单
325
325
  */
326
326
  submitForm: (callback?: Function) => void;
327
327
  /**
328
- * 验证具体的某个字段
329
328
  * @expose validateField (字段:string, 回调方法?:Function)
329
+ * 验证具体的某个字段
330
330
  */
331
331
  validateField: (...arr: any[]) => void;
332
332
  /**
333
- * 重置表单
334
333
  * @expose resetFields
334
+ * 重置表单
335
335
  */
336
336
  resetFields: () => void;
337
337
  /**
338
- * 校验表单
339
338
  * @expose { Promise : 对象true成功false失败 } validate
339
+ * 校验表单
340
340
  */
341
341
  validate: () => Promise<unknown>;
342
342
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
@@ -39,29 +39,29 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
39
39
  }
40
40
  __expose({
41
41
  /**
42
- * 表单的Dom
43
42
  * @expose { Element } dom
43
+ * 表单的Dom
44
44
  */
45
45
  dom: refEl,
46
46
  closeForm,
47
47
  /**
48
- * 提交表单
49
48
  * @expose submitForm (回调方法?:Function)
49
+ * 提交表单
50
50
  */
51
51
  submitForm,
52
52
  /**
53
- * 验证具体的某个字段
54
53
  * @expose validateField (字段:string, 回调方法?:Function)
54
+ * 验证具体的某个字段
55
55
  */
56
56
  validateField,
57
57
  /**
58
- * 重置表单
59
58
  * @expose resetFields
59
+ * 重置表单
60
60
  */
61
61
  resetFields,
62
62
  /**
63
- * 校验表单
64
63
  * @expose { Promise : 对象true成功false失败 } validate
64
+ * 校验表单
65
65
  */
66
66
  validate
67
67
  });
@@ -65,54 +65,55 @@ const index$Z = require("./box-title/index.cjs");
65
65
  const index$_ = require("./box/index.cjs");
66
66
  const index$$ = require("./popup/index.cjs");
67
67
  const index$10 = require("./right-key/index.cjs");
68
- const index$11 = require("./stick-div/index.cjs");
69
- const index$12 = require("./stick-edge/index.cjs");
70
- const index$13 = require("./stick-window/index.cjs");
71
- const index$14 = require("./window/index.cjs");
72
- const index$15 = require("./global-config/index.cjs");
73
- const index$16 = require("./icon-picker/index.cjs");
74
- const index$17 = require("./icon/index.cjs");
75
- const index$18 = require("./iframe/index.cjs");
76
- const index$19 = require("./lists/index.cjs");
77
- const index$1a = require("./menus/index.cjs");
78
- const index$1b = require("./page/index.cjs");
79
- const index$1c = require("./retract/index.cjs");
80
- const index$1d = require("./choice-select/index.cjs");
81
- const index$1e = require("./company-select/index.cjs");
82
- const index$1f = require("./department-select/index.cjs");
83
- const index$1g = require("./role-select/index.cjs");
84
- const index$1h = require("./select-dialog/index.cjs");
85
- const index$1i = require("./select-popover/index.cjs");
86
- const index$1j = require("./tree-select-box/index.cjs");
87
- const index$1k = require("./user-select/index.cjs");
88
- const index$1l = require("./array/index.cjs");
89
- const index$1m = require("./buttons/index.cjs");
90
- const index$1n = require("./cascaders/index.cjs");
91
- const index$1o = require("./checks/index.cjs");
92
- const index$1p = require("./dates-divide/index.cjs");
93
- const index$1q = require("./dates-picker/index.cjs");
94
- const index$1r = require("./dates/index.cjs");
95
- const index$1s = require("./edit-float/index.cjs");
96
- const index$1t = require("./edit/index.cjs");
97
- const index$1u = require("./history/index.cjs");
98
- const index$1v = require("./images/index.cjs");
99
- const index$1w = require("./input-array/index.cjs");
100
- const index$1x = require("./input-history/index.cjs");
101
- const index$1y = require("./input-num/index.cjs");
102
- const index$1z = require("./input-select/index.cjs");
103
- const index$1A = require("./inputs/index.cjs");
104
- const index$1B = require("./labels/index.cjs");
105
- const index$1C = require("./select-scroll/index.cjs");
106
- const index$1D = require("./selector/index.cjs");
107
- const index$1E = require("./selects/index.cjs");
108
- const index$1F = require("./switchs/index.cjs");
109
- const index$1G = require("./text/index.cjs");
110
- const index$1H = require("./paging/index.cjs");
111
- const index$1I = require("./tables/index.cjs");
112
- const index$1J = require("./tablesp/index.cjs");
113
- const index$1K = require("./tabless/index.cjs");
114
- const index$1L = require("./tablesv/index.cjs");
115
- const index$1M = require("./tablesvp/index.cjs");
68
+ const index$11 = require("./seamless-scroll/index.cjs");
69
+ const index$12 = require("./stick-div/index.cjs");
70
+ const index$13 = require("./stick-edge/index.cjs");
71
+ const index$14 = require("./stick-window/index.cjs");
72
+ const index$15 = require("./window/index.cjs");
73
+ const index$16 = require("./global-config/index.cjs");
74
+ const index$17 = require("./icon-picker/index.cjs");
75
+ const index$18 = require("./icon/index.cjs");
76
+ const index$19 = require("./iframe/index.cjs");
77
+ const index$1a = require("./lists/index.cjs");
78
+ const index$1b = require("./menus/index.cjs");
79
+ const index$1c = require("./page/index.cjs");
80
+ const index$1d = require("./retract/index.cjs");
81
+ const index$1e = require("./choice-select/index.cjs");
82
+ const index$1f = require("./company-select/index.cjs");
83
+ const index$1g = require("./department-select/index.cjs");
84
+ const index$1h = require("./role-select/index.cjs");
85
+ const index$1i = require("./select-dialog/index.cjs");
86
+ const index$1j = require("./select-popover/index.cjs");
87
+ const index$1k = require("./tree-select-box/index.cjs");
88
+ const index$1l = require("./user-select/index.cjs");
89
+ const index$1m = require("./array/index.cjs");
90
+ const index$1n = require("./buttons/index.cjs");
91
+ const index$1o = require("./cascaders/index.cjs");
92
+ const index$1p = require("./checks/index.cjs");
93
+ const index$1q = require("./dates-divide/index.cjs");
94
+ const index$1r = require("./dates-picker/index.cjs");
95
+ const index$1s = require("./dates/index.cjs");
96
+ const index$1t = require("./edit-float/index.cjs");
97
+ const index$1u = require("./edit/index.cjs");
98
+ const index$1v = require("./history/index.cjs");
99
+ const index$1w = require("./images/index.cjs");
100
+ const index$1x = require("./input-array/index.cjs");
101
+ const index$1y = require("./input-history/index.cjs");
102
+ const index$1z = require("./input-num/index.cjs");
103
+ const index$1A = require("./input-select/index.cjs");
104
+ const index$1B = require("./inputs/index.cjs");
105
+ const index$1C = require("./labels/index.cjs");
106
+ const index$1D = require("./select-scroll/index.cjs");
107
+ const index$1E = require("./selector/index.cjs");
108
+ const index$1F = require("./selects/index.cjs");
109
+ const index$1G = require("./switchs/index.cjs");
110
+ const index$1H = require("./text/index.cjs");
111
+ const index$1I = require("./paging/index.cjs");
112
+ const index$1J = require("./tables/index.cjs");
113
+ const index$1K = require("./tablesp/index.cjs");
114
+ const index$1L = require("./tabless/index.cjs");
115
+ const index$1M = require("./tablesv/index.cjs");
116
+ const index$1N = require("./tablesvp/index.cjs");
116
117
  const index$i = require("./loading/src/index.cjs");
117
118
  exports.CsConfig = index.CsConfig;
118
119
  exports.CsEmits = index$1.CsEmits;
@@ -178,52 +179,53 @@ exports.BoxTitle = index$Z.BoxTitle;
178
179
  exports.Box = index$_.Box;
179
180
  exports.Popup = index$$.Popup;
180
181
  exports.RightKey = index$10.RightKey;
181
- exports.StickDiv = index$11.StickDiv;
182
- exports.StickEdge = index$12.StickEdge;
183
- exports.StickWindow = index$13.StickWindow;
184
- exports.Window = index$14.Window;
185
- exports.GlobalConfig = index$15.GlobalConfig;
186
- exports.IconPicker = index$16.IconPicker;
187
- exports.Icon = index$17.Icon;
188
- exports.Iframe = index$18.Iframe;
189
- exports.Lists = index$19.Lists;
190
- exports.Menus = index$1a.Menus;
191
- exports.Page = index$1b.Page;
192
- exports.Retract = index$1c.Retract;
193
- exports.ChoiceSelect = index$1d.ChoiceSelect;
194
- exports.CompanySelect = index$1e.CompanySelect;
195
- exports.DepartmentSelect = index$1f.DepartmentSelect;
196
- exports.RoleSelect = index$1g.RoleSelect;
197
- exports.SelectDialog = index$1h.SelectDialog;
198
- exports.SelectPopover = index$1i.SelectPopover;
199
- exports.TreeSelectBox = index$1j.TreeSelectBox;
200
- exports.UserSelect = index$1k.UserSelect;
201
- exports.Array = index$1l.Array;
202
- exports.Buttons = index$1m.Buttons;
203
- exports.Cascaders = index$1n.Cascaders;
204
- exports.Checks = index$1o.Checks;
205
- exports.DatesDivide = index$1p.DatesDivide;
206
- exports.DatesPicker = index$1q.DatesPicker;
207
- exports.Dates = index$1r.Dates;
208
- exports.EditFloat = index$1s.EditFloat;
209
- exports.Edit = index$1t.Edit;
210
- exports.History = index$1u.History;
211
- exports.Images = index$1v.Images;
212
- exports.InputArray = index$1w.InputArray;
213
- exports.InputHistory = index$1x.InputHistory;
214
- exports.InputNum = index$1y.InputNum;
215
- exports.InputSelect = index$1z.InputSelect;
216
- exports.Inputs = index$1A.Inputs;
217
- exports.Labels = index$1B.Labels;
218
- exports.SelectScroll = index$1C.SelectScroll;
219
- exports.Selector = index$1D.Selector;
220
- exports.Selects = index$1E.Selects;
221
- exports.Switchs = index$1F.Switchs;
222
- exports.Text = index$1G.Text;
223
- exports.Paging = index$1H.Paging;
224
- exports.Tables = index$1I.Tables;
225
- exports.Tablesp = index$1J.Tablesp;
226
- exports.Tabless = index$1K.Tabless;
227
- exports.Tablesv = index$1L.Tablesv;
228
- exports.Tablesvp = index$1M.Tablesvp;
182
+ exports.SeamlessScroll = index$11.SeamlessScroll;
183
+ exports.StickDiv = index$12.StickDiv;
184
+ exports.StickEdge = index$13.StickEdge;
185
+ exports.StickWindow = index$14.StickWindow;
186
+ exports.Window = index$15.Window;
187
+ exports.GlobalConfig = index$16.GlobalConfig;
188
+ exports.IconPicker = index$17.IconPicker;
189
+ exports.Icon = index$18.Icon;
190
+ exports.Iframe = index$19.Iframe;
191
+ exports.Lists = index$1a.Lists;
192
+ exports.Menus = index$1b.Menus;
193
+ exports.Page = index$1c.Page;
194
+ exports.Retract = index$1d.Retract;
195
+ exports.ChoiceSelect = index$1e.ChoiceSelect;
196
+ exports.CompanySelect = index$1f.CompanySelect;
197
+ exports.DepartmentSelect = index$1g.DepartmentSelect;
198
+ exports.RoleSelect = index$1h.RoleSelect;
199
+ exports.SelectDialog = index$1i.SelectDialog;
200
+ exports.SelectPopover = index$1j.SelectPopover;
201
+ exports.TreeSelectBox = index$1k.TreeSelectBox;
202
+ exports.UserSelect = index$1l.UserSelect;
203
+ exports.Array = index$1m.Array;
204
+ exports.Buttons = index$1n.Buttons;
205
+ exports.Cascaders = index$1o.Cascaders;
206
+ exports.Checks = index$1p.Checks;
207
+ exports.DatesDivide = index$1q.DatesDivide;
208
+ exports.DatesPicker = index$1r.DatesPicker;
209
+ exports.Dates = index$1s.Dates;
210
+ exports.EditFloat = index$1t.EditFloat;
211
+ exports.Edit = index$1u.Edit;
212
+ exports.History = index$1v.History;
213
+ exports.Images = index$1w.Images;
214
+ exports.InputArray = index$1x.InputArray;
215
+ exports.InputHistory = index$1y.InputHistory;
216
+ exports.InputNum = index$1z.InputNum;
217
+ exports.InputSelect = index$1A.InputSelect;
218
+ exports.Inputs = index$1B.Inputs;
219
+ exports.Labels = index$1C.Labels;
220
+ exports.SelectScroll = index$1D.SelectScroll;
221
+ exports.Selector = index$1E.Selector;
222
+ exports.Selects = index$1F.Selects;
223
+ exports.Switchs = index$1G.Switchs;
224
+ exports.Text = index$1H.Text;
225
+ exports.Paging = index$1I.Paging;
226
+ exports.Tables = index$1J.Tables;
227
+ exports.Tablesp = index$1K.Tablesp;
228
+ exports.Tabless = index$1L.Tabless;
229
+ exports.Tablesv = index$1M.Tablesv;
230
+ exports.Tablesvp = index$1N.Tablesvp;
229
231
  exports.vLoading = index$i.vLoading;
@@ -62,6 +62,7 @@ export * from './box-title/index';
62
62
  export * from './box/index';
63
63
  export * from './popup/index';
64
64
  export * from './right-key/index';
65
+ export * from './seamless-scroll/index';
65
66
  export * from './stick-div/index';
66
67
  export * from './stick-edge/index';
67
68
  export * from './stick-window/index';
@@ -63,6 +63,7 @@ import { BoxTitle } from "./box-title/index.js";
63
63
  import { Box } from "./box/index.js";
64
64
  import { Popup } from "./popup/index.js";
65
65
  import { RightKey } from "./right-key/index.js";
66
+ import { SeamlessScroll } from "./seamless-scroll/index.js";
66
67
  import { StickDiv } from "./stick-div/index.js";
67
68
  import { StickEdge } from "./stick-edge/index.js";
68
69
  import { StickWindow } from "./stick-window/index.js";
@@ -196,6 +197,7 @@ export {
196
197
  Retract,
197
198
  RightKey,
198
199
  RoleSelect,
200
+ SeamlessScroll,
199
201
  Select,
200
202
  SelectDialog,
201
203
  SelectPopover,
@@ -49,6 +49,7 @@
49
49
  @use './box/index.scss' as *;
50
50
  @use './popup/index.scss' as *;
51
51
  @use './right-key/index.scss' as *;
52
+ @use './seamless-scroll/index.scss' as *;
52
53
  @use './window/index.scss' as *;
53
54
  @use './global-config/index.scss' as *;
54
55
  @use './icon/index.scss' as *;