ik-next-ui 0.0.11 → 0.0.13

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 (59) hide show
  1. package/dist/IkApprovalProcess/ik.index.es.js +90 -90
  2. package/dist/IkApprovalProcessDetail/ik.index.es.js +4387 -4209
  3. package/dist/IkAvatar/ik.index.es.js +140 -0
  4. package/dist/IkBaseDialog/ik.index.es.js +28 -28
  5. package/dist/IkCollapseCard/ik.index.es.js +11 -11
  6. package/dist/IkDescription/ik.index.es.js +4004 -3826
  7. package/dist/IkDetailPreviewFiles/ik.index.es.js +4060 -3882
  8. package/dist/IkIconPicker/ik.index.es.js +13 -13
  9. package/dist/IkImage/ik-next-ui.css +1 -0
  10. package/dist/IkImage/ik.index.es.js +173 -0
  11. package/dist/IkImageUploadEditor/ik.index.es.js +1416 -1436
  12. package/dist/IkMonacoEditor/ik.index.es.js +1 -1
  13. package/dist/IkPickerUser/ik.index.es.js +55 -55
  14. package/dist/IkPlayer/ik.index.es.js +1316 -1138
  15. package/dist/IkPreviewFile/ik.index.es.js +4307 -4129
  16. package/dist/IkPreviewFileDialog/ik.index.es.js +4107 -3929
  17. package/dist/IkRadioGroup/ik.index.es.js +24 -24
  18. package/dist/IkSideText/ik-next-ui.css +1 -1
  19. package/dist/IkSideText/ik.index.es.js +208 -142
  20. package/dist/IkSvgIcon/ik.index.es.js +10 -10
  21. package/dist/IkUploadFile/ik.index.es.js +4947 -4769
  22. package/dist/IkUploadImage/ik-next-ui.css +1 -1
  23. package/dist/IkUploadImage/ik.index.es.js +32 -31
  24. package/dist/IkVerticalStepBar/ik.index.es.js +15 -15
  25. package/dist/Provider/ik.index.es.js +1 -1
  26. package/dist/build/version.json.d.ts +5 -0
  27. package/dist/ik-next-ui.css +2 -2
  28. package/dist/index.es.js +28408 -28098
  29. package/dist/index.umd.js +133 -132
  30. package/dist/src/components/IkAvatar/index.d.ts +56 -0
  31. package/dist/src/components/IkAvatar/src/index.vue.d.ts +49 -0
  32. package/dist/src/components/IkBtnContent/index.d.ts +34 -0
  33. package/dist/src/components/IkBtnContent/src/index.d.ts +36 -0
  34. package/dist/src/components/IkDragList/index.d.ts +3 -3
  35. package/dist/src/components/IkDragList/src/IkDragList.vue.d.ts +1 -1
  36. package/dist/src/components/IkImage/index.d.ts +107 -0
  37. package/dist/src/components/IkImage/src/index.vue.d.ts +98 -0
  38. package/dist/src/components/IkMonacoEditor/index.d.ts +2 -2
  39. package/dist/src/components/IkMonacoEditor/src/index.vue.d.ts +2 -2
  40. package/dist/src/components/IkPickerUser/index.d.ts +1 -1
  41. package/dist/src/components/IkPickerUser/src/list/GroupList.vue.d.ts +1 -1
  42. package/dist/src/components/IkPickerUser/src/list/PostList.vue.d.ts +1 -1
  43. package/dist/src/components/IkPickerUser/src/list/RoleList.vue.d.ts +1 -1
  44. package/dist/src/components/IkPickerUser/src/picker.vue.d.ts +1 -1
  45. package/dist/src/components/IkSideText/IkSideText.vue.d.ts +10 -1
  46. package/dist/src/components/IkSideText/index.d.ts +10 -1
  47. package/dist/src/components/IkSvgIcon/index.d.ts +2 -2
  48. package/dist/src/components/IkTooltip/index.d.ts +3 -3
  49. package/dist/src/components/IkTooltip/src/index.vue.d.ts +1 -1
  50. package/dist/src/components/IkTree/IkTree.vue.d.ts +2123 -63
  51. package/dist/src/components/IkTree/index.d.ts +6481 -301
  52. package/dist/src/components/IkUploadFile/src/components/ErrorFileItem.vue.d.ts +2 -2
  53. package/dist/src/components/IkUploadImage/index.d.ts +3 -3
  54. package/dist/src/components/IkUploadImage/src/index.vue.d.ts +1 -1
  55. package/dist/src/components/index.d.ts +2 -0
  56. package/dist/src/iking-ui/version.d.ts +1 -1
  57. package/package.json +1 -1
  58. package/dist/src/components/package.json.d.ts +0 -33
  59. package/dist/src/components-dev/IkUmoEditor/index.d.ts +0 -322
@@ -0,0 +1,56 @@
1
+ export declare const IkAvatar: import('../../utils/typescript').SFCWithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ name: {
3
+ type: import('vue').PropType<string>;
4
+ };
5
+ size: {
6
+ type: import('vue').PropType<number>;
7
+ default: number;
8
+ };
9
+ loadUrl: {
10
+ type: import('vue').PropType<string>;
11
+ };
12
+ src: {
13
+ type: import('vue').PropType<string>;
14
+ };
15
+ alt: {
16
+ type: import('vue').PropType<string>;
17
+ };
18
+ fit: {
19
+ type: import('vue').PropType<"fill" | "none" | "cover" | "contain" | "scale-down">;
20
+ default: string;
21
+ };
22
+ shape: {
23
+ type: import('vue').PropType<"circle" | "square">;
24
+ default: string;
25
+ };
26
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
+ name: {
28
+ type: import('vue').PropType<string>;
29
+ };
30
+ size: {
31
+ type: import('vue').PropType<number>;
32
+ default: number;
33
+ };
34
+ loadUrl: {
35
+ type: import('vue').PropType<string>;
36
+ };
37
+ src: {
38
+ type: import('vue').PropType<string>;
39
+ };
40
+ alt: {
41
+ type: import('vue').PropType<string>;
42
+ };
43
+ fit: {
44
+ type: import('vue').PropType<"fill" | "none" | "cover" | "contain" | "scale-down">;
45
+ default: string;
46
+ };
47
+ shape: {
48
+ type: import('vue').PropType<"circle" | "square">;
49
+ default: string;
50
+ };
51
+ }>> & Readonly<{}>, {
52
+ size: number;
53
+ fit: "fill" | "contain" | "cover" | "none" | "scale-down";
54
+ shape: "circle" | "square";
55
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>> & Record<string, any>;
56
+ export default IkAvatar;
@@ -0,0 +1,49 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ src?: string;
3
+ name?: string;
4
+ size?: number;
5
+ shape?: "circle" | "square";
6
+ fit?: "fill" | "contain" | "cover" | "none" | "scale-down";
7
+ alt?: string;
8
+ /** 加载URL */
9
+ loadUrl?: string;
10
+ }>, {
11
+ size: number;
12
+ shape: string;
13
+ fit: string;
14
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
15
+ src?: string;
16
+ name?: string;
17
+ size?: number;
18
+ shape?: "circle" | "square";
19
+ fit?: "fill" | "contain" | "cover" | "none" | "scale-down";
20
+ alt?: string;
21
+ /** 加载URL */
22
+ loadUrl?: string;
23
+ }>, {
24
+ size: number;
25
+ shape: string;
26
+ fit: string;
27
+ }>>> & Readonly<{}>, {
28
+ size: number;
29
+ fit: "fill" | "contain" | "cover" | "none" | "scale-down";
30
+ shape: "circle" | "square";
31
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
32
+ export default _default;
33
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
34
+ type __VLS_TypePropsToRuntimeProps<T> = {
35
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
36
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
37
+ } : {
38
+ type: import('vue').PropType<T[K]>;
39
+ required: true;
40
+ };
41
+ };
42
+ type __VLS_WithDefaults<P, D> = {
43
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
44
+ default: D[K];
45
+ }> : P[K];
46
+ };
47
+ type __VLS_Prettify<T> = {
48
+ [K in keyof T]: T[K];
49
+ } & {};
@@ -0,0 +1,34 @@
1
+ export declare const IkBtnContent: import('../../utils/typescript.js').SFCWithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ num: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ trigger: {
7
+ type: import('vue').PropType<"click" | "hover">;
8
+ default: string;
9
+ };
10
+ placement: {
11
+ type: import('vue').PropType<"top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "bottom">;
12
+ default: string;
13
+ };
14
+ }>, () => import("react").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
+ num: {
16
+ type: NumberConstructor;
17
+ default: number;
18
+ };
19
+ trigger: {
20
+ type: import('vue').PropType<"click" | "hover">;
21
+ default: string;
22
+ };
23
+ placement: {
24
+ type: import('vue').PropType<"top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "bottom">;
25
+ default: string;
26
+ };
27
+ }>> & Readonly<{}>, {
28
+ placement: "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end";
29
+ trigger: "click" | "hover";
30
+ num: number;
31
+ }, {}, {
32
+ MoreFilled: import('vue').DefineComponent<{}, void, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>> & Record<string, any>;
34
+ export default IkBtnContent;
@@ -0,0 +1,36 @@
1
+ import { PropType } from 'vue';
2
+
3
+ declare const IkBtnContent: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
+ num: {
5
+ type: NumberConstructor;
6
+ default: number;
7
+ };
8
+ trigger: {
9
+ type: PropType<"click" | "hover">;
10
+ default: string;
11
+ };
12
+ placement: {
13
+ type: PropType<"top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "bottom">;
14
+ default: string;
15
+ };
16
+ }>, () => import("react").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
+ num: {
18
+ type: NumberConstructor;
19
+ default: number;
20
+ };
21
+ trigger: {
22
+ type: PropType<"click" | "hover">;
23
+ default: string;
24
+ };
25
+ placement: {
26
+ type: PropType<"top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "bottom">;
27
+ default: string;
28
+ };
29
+ }>> & Readonly<{}>, {
30
+ placement: "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end";
31
+ trigger: "click" | "hover";
32
+ num: number;
33
+ }, {}, {
34
+ MoreFilled: import('vue').DefineComponent<{}, void, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
35
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
36
+ export default IkBtnContent;
@@ -140,10 +140,10 @@ export declare const IkDragList: import('../../utils/typescript').SFCWithInstall
140
140
  filter: string;
141
141
  list: import('./src/default-props').TList[];
142
142
  disabled: boolean;
143
+ animation: number;
143
144
  draggable: string;
144
145
  showIcon: boolean;
145
146
  group: string;
146
- animation: number;
147
147
  ghostClass: string;
148
148
  chosenClass: string;
149
149
  dragClass: string;
@@ -307,10 +307,10 @@ export declare const IkDragList: import('../../utils/typescript').SFCWithInstall
307
307
  filter: string;
308
308
  list: import('./src/default-props').TList[];
309
309
  disabled: boolean;
310
+ animation: number;
310
311
  draggable: string;
311
312
  showIcon: boolean;
312
313
  group: string;
313
- animation: number;
314
314
  ghostClass: string;
315
315
  chosenClass: string;
316
316
  dragClass: string;
@@ -475,10 +475,10 @@ export declare const IkDragList: import('../../utils/typescript').SFCWithInstall
475
475
  filter: string;
476
476
  list: import('./src/default-props').TList[];
477
477
  disabled: boolean;
478
+ animation: number;
478
479
  draggable: string;
479
480
  showIcon: boolean;
480
481
  group: string;
481
- animation: number;
482
482
  ghostClass: string;
483
483
  chosenClass: string;
484
484
  dragClass: string;
@@ -274,10 +274,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
274
274
  filter: string;
275
275
  list: TList[];
276
276
  disabled: boolean;
277
+ animation: number;
277
278
  draggable: string;
278
279
  showIcon: boolean;
279
280
  group: string;
280
- animation: number;
281
281
  ghostClass: string;
282
282
  chosenClass: string;
283
283
  dragClass: string;
@@ -0,0 +1,107 @@
1
+ export declare const IkImage: import('../../utils/typescript').SFCWithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ lazy: {
3
+ type: import('vue').PropType<boolean>;
4
+ default: boolean;
5
+ };
6
+ width: {
7
+ type: import('vue').PropType<string | number>;
8
+ };
9
+ height: {
10
+ type: import('vue').PropType<string | number>;
11
+ };
12
+ loadUrl: {
13
+ type: import('vue').PropType<string>;
14
+ };
15
+ preview: {
16
+ type: import('vue').PropType<boolean>;
17
+ default: boolean;
18
+ };
19
+ src: {
20
+ type: import('vue').PropType<string>;
21
+ };
22
+ alt: {
23
+ type: import('vue').PropType<string>;
24
+ };
25
+ previewSrcList: {
26
+ type: import('vue').PropType<string[]>;
27
+ };
28
+ fit: {
29
+ type: import('vue').PropType<"fill" | "none" | "cover" | "contain" | "scale-down">;
30
+ default: string;
31
+ };
32
+ initialIndex: {
33
+ type: import('vue').PropType<number>;
34
+ default: number;
35
+ };
36
+ customClass: {
37
+ type: import('vue').PropType<string>;
38
+ };
39
+ radius: {
40
+ type: import('vue').PropType<string | number>;
41
+ };
42
+ loadingSlot: {
43
+ type: import('vue').PropType<boolean>;
44
+ default: boolean;
45
+ };
46
+ errorSlot: {
47
+ type: import('vue').PropType<boolean>;
48
+ default: boolean;
49
+ };
50
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
51
+ lazy: {
52
+ type: import('vue').PropType<boolean>;
53
+ default: boolean;
54
+ };
55
+ width: {
56
+ type: import('vue').PropType<string | number>;
57
+ };
58
+ height: {
59
+ type: import('vue').PropType<string | number>;
60
+ };
61
+ loadUrl: {
62
+ type: import('vue').PropType<string>;
63
+ };
64
+ preview: {
65
+ type: import('vue').PropType<boolean>;
66
+ default: boolean;
67
+ };
68
+ src: {
69
+ type: import('vue').PropType<string>;
70
+ };
71
+ alt: {
72
+ type: import('vue').PropType<string>;
73
+ };
74
+ previewSrcList: {
75
+ type: import('vue').PropType<string[]>;
76
+ };
77
+ fit: {
78
+ type: import('vue').PropType<"fill" | "none" | "cover" | "contain" | "scale-down">;
79
+ default: string;
80
+ };
81
+ initialIndex: {
82
+ type: import('vue').PropType<number>;
83
+ default: number;
84
+ };
85
+ customClass: {
86
+ type: import('vue').PropType<string>;
87
+ };
88
+ radius: {
89
+ type: import('vue').PropType<string | number>;
90
+ };
91
+ loadingSlot: {
92
+ type: import('vue').PropType<boolean>;
93
+ default: boolean;
94
+ };
95
+ errorSlot: {
96
+ type: import('vue').PropType<boolean>;
97
+ default: boolean;
98
+ };
99
+ }>> & Readonly<{}>, {
100
+ lazy: boolean;
101
+ preview: boolean;
102
+ fit: "fill" | "contain" | "cover" | "none" | "scale-down";
103
+ initialIndex: number;
104
+ loadingSlot: boolean;
105
+ errorSlot: boolean;
106
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>> & Record<string, any>;
107
+ export default IkImage;
@@ -0,0 +1,98 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ /** 图片源地址 */
3
+ src?: string;
4
+ /** 图片描述 */
5
+ alt?: string;
6
+ /** 图片宽度 */
7
+ width?: string | number;
8
+ /** 图片高度 */
9
+ height?: string | number;
10
+ /** 是否启用预览功能 */
11
+ preview?: boolean;
12
+ /** 预览图片列表 */
13
+ previewSrcList?: string[];
14
+ /** 初始预览图片索引 */
15
+ initialIndex?: number;
16
+ /** 是否懒加载 */
17
+ lazy?: boolean;
18
+ /** 图片适应方式 */
19
+ fit?: "fill" | "contain" | "cover" | "none" | "scale-down";
20
+ /** 图片圆角 */
21
+ radius?: string | number;
22
+ /** 自定义类名 */
23
+ customClass?: string;
24
+ /** 加载中占位内容 */
25
+ loadingSlot?: boolean;
26
+ /** 错误占位内容 */
27
+ errorSlot?: boolean;
28
+ /** 加载URL */
29
+ loadUrl?: string;
30
+ }>, {
31
+ preview: boolean;
32
+ lazy: boolean;
33
+ fit: string;
34
+ initialIndex: number;
35
+ loadingSlot: boolean;
36
+ errorSlot: boolean;
37
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
38
+ /** 图片源地址 */
39
+ src?: string;
40
+ /** 图片描述 */
41
+ alt?: string;
42
+ /** 图片宽度 */
43
+ width?: string | number;
44
+ /** 图片高度 */
45
+ height?: string | number;
46
+ /** 是否启用预览功能 */
47
+ preview?: boolean;
48
+ /** 预览图片列表 */
49
+ previewSrcList?: string[];
50
+ /** 初始预览图片索引 */
51
+ initialIndex?: number;
52
+ /** 是否懒加载 */
53
+ lazy?: boolean;
54
+ /** 图片适应方式 */
55
+ fit?: "fill" | "contain" | "cover" | "none" | "scale-down";
56
+ /** 图片圆角 */
57
+ radius?: string | number;
58
+ /** 自定义类名 */
59
+ customClass?: string;
60
+ /** 加载中占位内容 */
61
+ loadingSlot?: boolean;
62
+ /** 错误占位内容 */
63
+ errorSlot?: boolean;
64
+ /** 加载URL */
65
+ loadUrl?: string;
66
+ }>, {
67
+ preview: boolean;
68
+ lazy: boolean;
69
+ fit: string;
70
+ initialIndex: number;
71
+ loadingSlot: boolean;
72
+ errorSlot: boolean;
73
+ }>>> & Readonly<{}>, {
74
+ lazy: boolean;
75
+ preview: boolean;
76
+ fit: "fill" | "contain" | "cover" | "none" | "scale-down";
77
+ initialIndex: number;
78
+ loadingSlot: boolean;
79
+ errorSlot: boolean;
80
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
81
+ export default _default;
82
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
83
+ type __VLS_TypePropsToRuntimeProps<T> = {
84
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
85
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
86
+ } : {
87
+ type: import('vue').PropType<T[K]>;
88
+ required: true;
89
+ };
90
+ };
91
+ type __VLS_WithDefaults<P, D> = {
92
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
93
+ default: D[K];
94
+ }> : P[K];
95
+ };
96
+ type __VLS_Prettify<T> = {
97
+ [K in keyof T]: T[K];
98
+ } & {};
@@ -104,7 +104,7 @@ export declare const IkMonacoEditor: import('../../utils/typescript').SFCWithIns
104
104
  type: import('vue').PropType<(event?: MouseEvent) => void>;
105
105
  };
106
106
  class: {
107
- type: import('vue').PropType<any>;
107
+ type: import('vue').PropType<string | false | Record<string, any> | import('vue').ClassValue[] | null>;
108
108
  };
109
109
  type: {
110
110
  type: import('vue').PropType<"default" | "error" | "danger" | "success" | "warning">;
@@ -165,7 +165,7 @@ export declare const IkMonacoEditor: import('../../utils/typescript').SFCWithIns
165
165
  type: import('vue').PropType<(event?: MouseEvent) => void>;
166
166
  };
167
167
  class: {
168
- type: import('vue').PropType<any>;
168
+ type: import('vue').PropType<string | false | Record<string, any> | import('vue').ClassValue[] | null>;
169
169
  };
170
170
  type: {
171
171
  type: import('vue').PropType<"default" | "error" | "danger" | "success" | "warning">;
@@ -107,7 +107,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
107
107
  type: PropType<(event?: MouseEvent) => void>;
108
108
  };
109
109
  class: {
110
- type: PropType<any>;
110
+ type: PropType<string | false | Record<string, any> | import('vue').ClassValue[] | null>;
111
111
  };
112
112
  type: {
113
113
  type: PropType<"default" | "error" | "danger" | "success" | "warning">;
@@ -168,7 +168,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
168
168
  type: PropType<(event?: MouseEvent) => void>;
169
169
  };
170
170
  class: {
171
- type: PropType<any>;
171
+ type: PropType<string | false | Record<string, any> | import('vue').ClassValue[] | null>;
172
172
  };
173
173
  type: {
174
174
  type: PropType<"default" | "error" | "danger" | "success" | "warning">;
@@ -325,6 +325,7 @@ export declare const IkPickerUser: import('../../utils/typescript').SFCWithInsta
325
325
  width: String | Number;
326
326
  height: String | Number;
327
327
  children: boolean;
328
+ max: number;
328
329
  search: boolean;
329
330
  show: boolean;
330
331
  placeholder: string;
@@ -337,7 +338,6 @@ export declare const IkPickerUser: import('../../utils/typescript').SFCWithInsta
337
338
  elementId: string;
338
339
  elementType: "DEPT" | "USER" | "ROLE" | "POST";
339
340
  };
340
- max: number;
341
341
  emptyText: string;
342
342
  immediate: boolean;
343
343
  groupList: import('./types').TList[];
@@ -100,13 +100,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
100
100
  height: string;
101
101
  list: import('../../types').TList[];
102
102
  children: boolean;
103
+ max: number;
103
104
  multiple: boolean;
104
105
  chooseType: unknown[];
105
106
  fixPropOpt: Record<string, any>;
106
107
  fixTypeOpt: Record<string, any>;
107
108
  imageBaseUrl: string;
108
109
  handList: import('../../types').TList[];
109
- max: number;
110
110
  emptyText: string;
111
111
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
112
112
  export default _default;
@@ -98,13 +98,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
98
98
  height: string;
99
99
  list: import('../../types').TList[];
100
100
  children: boolean;
101
+ max: number;
101
102
  multiple: boolean;
102
103
  chooseType: unknown[];
103
104
  fixPropOpt: Record<string, any>;
104
105
  fixTypeOpt: Record<string, any>;
105
106
  imageBaseUrl: string;
106
107
  handList: import('../../types').TList[];
107
- max: number;
108
108
  emptyText: string;
109
109
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
110
110
  export default _default;
@@ -98,13 +98,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
98
98
  height: string;
99
99
  list: import('../../types').TList[];
100
100
  children: boolean;
101
+ max: number;
101
102
  multiple: boolean;
102
103
  chooseType: unknown[];
103
104
  fixPropOpt: Record<string, any>;
104
105
  fixTypeOpt: Record<string, any>;
105
106
  imageBaseUrl: string;
106
107
  handList: import('../../types').TList[];
107
- max: number;
108
108
  emptyText: string;
109
109
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
110
110
  export default _default;
@@ -327,6 +327,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
327
327
  width: String | Number;
328
328
  height: String | Number;
329
329
  children: boolean;
330
+ max: number;
330
331
  search: boolean;
331
332
  show: boolean;
332
333
  placeholder: string;
@@ -339,7 +340,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
339
340
  elementId: string;
340
341
  elementType: "DEPT" | "USER" | "ROLE" | "POST";
341
342
  };
342
- max: number;
343
343
  emptyText: string;
344
344
  immediate: boolean;
345
345
  groupList: TList[];
@@ -49,6 +49,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
49
49
  type: StringConstructor;
50
50
  default: string;
51
51
  };
52
+ fit: {
53
+ type: PropType<"fill" | "contain" | "cover" | "none" | "scale-down">;
54
+ default: string;
55
+ };
52
56
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
53
57
  name: {
54
58
  type: StringConstructor;
@@ -98,18 +102,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
98
102
  type: StringConstructor;
99
103
  default: string;
100
104
  };
105
+ fit: {
106
+ type: PropType<"fill" | "contain" | "cover" | "none" | "scale-down">;
107
+ default: string;
108
+ };
101
109
  }>> & Readonly<{}>, {
102
110
  text: string;
103
111
  name: string;
104
112
  size: number;
105
113
  loadUrl: string;
106
114
  iconSize: string;
115
+ fit: "fill" | "none" | "cover" | "contain" | "scale-down";
107
116
  avatar: string;
117
+ shape: "circle" | "square";
108
118
  avatarType: string;
109
119
  showIconBg: boolean;
110
120
  iconType: "error" | "success" | "warning" | "primary" | "info";
111
121
  iconBackgroundColor: string;
112
122
  subText: string;
113
- shape: "circle" | "square";
114
123
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
115
124
  export default _default;
@@ -47,6 +47,10 @@ export declare const IkSideText: import('../../utils/typescript').SFCWithInstall
47
47
  type: StringConstructor;
48
48
  default: string;
49
49
  };
50
+ fit: {
51
+ type: import('vue').PropType<"fill" | "contain" | "cover" | "none" | "scale-down">;
52
+ default: string;
53
+ };
50
54
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
51
55
  name: {
52
56
  type: StringConstructor;
@@ -96,18 +100,23 @@ export declare const IkSideText: import('../../utils/typescript').SFCWithInstall
96
100
  type: StringConstructor;
97
101
  default: string;
98
102
  };
103
+ fit: {
104
+ type: import('vue').PropType<"fill" | "contain" | "cover" | "none" | "scale-down">;
105
+ default: string;
106
+ };
99
107
  }>> & Readonly<{}>, {
100
108
  text: string;
101
109
  name: string;
102
110
  size: number;
103
111
  loadUrl: string;
104
112
  iconSize: string;
113
+ fit: "fill" | "none" | "cover" | "contain" | "scale-down";
105
114
  avatar: string;
115
+ shape: "circle" | "square";
106
116
  avatarType: string;
107
117
  showIconBg: boolean;
108
118
  iconType: "error" | "success" | "warning" | "primary" | "info";
109
119
  iconBackgroundColor: string;
110
120
  subText: string;
111
- shape: "circle" | "square";
112
121
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>> & Record<string, any>;
113
122
  export default IkSideText;
@@ -11,7 +11,7 @@ export declare const IkSvgIcon: import('../../utils/typescript').SFCWithInstall<
11
11
  type: import('vue').PropType<(event?: MouseEvent) => void>;
12
12
  };
13
13
  class: {
14
- type: import('vue').PropType<any>;
14
+ type: import('vue').PropType<string | false | Record<string, any> | import('vue').ClassValue[] | null>;
15
15
  };
16
16
  type: {
17
17
  type: import('vue').PropType<"default" | "error" | "danger" | "success" | "warning">;
@@ -72,7 +72,7 @@ export declare const IkSvgIcon: import('../../utils/typescript').SFCWithInstall<
72
72
  type: import('vue').PropType<(event?: MouseEvent) => void>;
73
73
  };
74
74
  class: {
75
- type: import('vue').PropType<any>;
75
+ type: import('vue').PropType<string | false | Record<string, any> | import('vue').ClassValue[] | null>;
76
76
  };
77
77
  type: {
78
78
  type: import('vue').PropType<"default" | "error" | "danger" | "success" | "warning">;