@aplus-frontend/ui 0.0.1-beta.32 → 0.0.1-beta.34

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 (127) hide show
  1. package/es/src/ap-action/interface.d.ts +2 -1
  2. package/es/src/ap-action/item/index.vue2.mjs +20 -20
  3. package/es/src/ap-custom-column/custom-column.vue.mjs +17 -14
  4. package/es/src/ap-field/text/index.vue.d.ts +1 -1
  5. package/es/src/ap-field/text-area/index.vue.d.ts +1 -1
  6. package/es/src/ap-table/components/interface.d.ts +10 -0
  7. package/es/src/ap-table/components/style/pagination.css +12 -0
  8. package/es/src/ap-table/constants.d.ts +5666 -0
  9. package/es/src/ap-table/hooks/use-table-paging.d.ts +57 -0
  10. package/es/src/ap-table/interface.d.ts +155 -0
  11. package/es/src/ap-table/style/ap-table.css +14 -0
  12. package/es/src/ap-table/utils.d.ts +8 -0
  13. package/es/src/base-button/index.d.ts +137 -0
  14. package/es/src/basic/help.vue.d.ts +4 -4
  15. package/es/src/basic/index.d.ts +278 -0
  16. package/es/src/button/index.d.ts +51 -0
  17. package/es/src/config-provider/config-provider-props.d.ts +1 -1
  18. package/es/src/config-provider/config-provider.d.ts +11 -11
  19. package/es/src/config-provider/hooks/use-global-config.d.ts +1 -1
  20. package/es/src/config-provider/index.d.ts +691 -0
  21. package/es/src/container/index.d.ts +178 -0
  22. package/es/src/count-down/index.d.ts +150 -0
  23. package/es/src/cropper/index.d.ts +369 -0
  24. package/es/src/description/description.vue.d.ts +1 -1
  25. package/es/src/description/index.d.ts +214 -0
  26. package/es/src/dropdown/index.d.ts +113 -0
  27. package/es/src/icon/index.d.ts +208 -0
  28. package/es/src/icon-picker/icon-picker.vue.d.ts +2 -2
  29. package/es/src/icon-picker/index.d.ts +190 -0
  30. package/es/src/locale/lang/en.mjs +6 -0
  31. package/es/src/locale/lang/zh-cn.mjs +6 -0
  32. package/es/src/modal/basic.vue.d.ts +1 -1
  33. package/es/src/modal/components/modal-footer.vue.d.ts +1 -1
  34. package/es/src/modal/index.d.ts +963 -0
  35. package/es/src/pro-form/components/api-cascader.vue.d.ts +1 -1
  36. package/es/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
  37. package/es/src/pro-form/components/api-select.vue.d.ts +2 -2
  38. package/es/src/pro-form/components/api-transfer.vue.d.ts +1 -1
  39. package/es/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
  40. package/es/src/pro-form/components/api-tree.vue.d.ts +1 -1
  41. package/es/src/pro-form/hooks/use-label-width.d.ts +6 -6
  42. package/es/src/pro-form/pro-form.vue.d.ts +1 -1
  43. package/es/src/pro-form/style/table-form.css +3 -0
  44. package/es/src/pro-table/components/editable/editable-cell.vue.d.ts +1 -1
  45. package/es/src/pro-table/pro-table.vue.d.ts +1 -1
  46. package/es/src/scroll-bar/index.d.ts +176 -0
  47. package/es/src/strength-meter/index.d.ts +89 -0
  48. package/es/src/theme/antd-global-overwrite/admin/alert.css +16 -6
  49. package/es/src/theme/antd-global-overwrite/admin/form.css +25 -0
  50. package/es/src/theme/antd-global-overwrite/admin/index.css +82 -20
  51. package/es/src/theme/antd-global-overwrite/admin/modal.css +2 -5
  52. package/es/src/theme/antd-global-overwrite/admin/steps.css +20 -9
  53. package/es/src/theme/antd-global-overwrite/admin/table.css +19 -0
  54. package/es/src/theme/antd-global-overwrite/aplus/alert.css +12 -6
  55. package/es/src/theme/antd-global-overwrite/aplus/form.css +40 -0
  56. package/es/src/theme/antd-global-overwrite/aplus/index.css +76 -16
  57. package/es/src/theme/antd-global-overwrite/aplus/modal.css +3 -6
  58. package/es/src/theme/antd-global-overwrite/aplus/steps.css +21 -4
  59. package/es/src/theme/ap-table/ap-table-pagination.css +12 -0
  60. package/es/src/theme/ap-table/ap-table.css +14 -0
  61. package/es/src/theme/pro-form/table-form-inner.css +3 -0
  62. package/es/src/transition/index.d.ts +369 -0
  63. package/es/src/utils/config-provider-preset.d.ts +12 -12
  64. package/lib/src/ap-action/interface.d.ts +2 -1
  65. package/lib/src/ap-action/item/index.vue2.js +1 -1
  66. package/lib/src/ap-custom-column/custom-column.vue.js +1 -1
  67. package/lib/src/ap-field/text/index.vue.d.ts +1 -1
  68. package/lib/src/ap-field/text-area/index.vue.d.ts +1 -1
  69. package/lib/src/ap-table/components/interface.d.ts +10 -0
  70. package/lib/src/ap-table/components/style/pagination.css +12 -0
  71. package/lib/src/ap-table/constants.d.ts +5666 -0
  72. package/lib/src/ap-table/hooks/use-table-paging.d.ts +57 -0
  73. package/lib/src/ap-table/interface.d.ts +155 -0
  74. package/lib/src/ap-table/style/ap-table.css +14 -0
  75. package/lib/src/ap-table/utils.d.ts +8 -0
  76. package/lib/src/base-button/index.d.ts +137 -0
  77. package/lib/src/basic/help.vue.d.ts +4 -4
  78. package/lib/src/basic/index.d.ts +278 -0
  79. package/lib/src/button/index.d.ts +51 -0
  80. package/lib/src/config-provider/config-provider-props.d.ts +1 -1
  81. package/lib/src/config-provider/config-provider.d.ts +11 -11
  82. package/lib/src/config-provider/hooks/use-global-config.d.ts +1 -1
  83. package/lib/src/config-provider/index.d.ts +691 -0
  84. package/lib/src/container/index.d.ts +178 -0
  85. package/lib/src/count-down/index.d.ts +150 -0
  86. package/lib/src/cropper/index.d.ts +369 -0
  87. package/lib/src/description/description.vue.d.ts +1 -1
  88. package/lib/src/description/index.d.ts +214 -0
  89. package/lib/src/dropdown/index.d.ts +113 -0
  90. package/lib/src/icon/index.d.ts +208 -0
  91. package/lib/src/icon-picker/icon-picker.vue.d.ts +2 -2
  92. package/lib/src/icon-picker/index.d.ts +190 -0
  93. package/lib/src/locale/lang/en.js +1 -1
  94. package/lib/src/locale/lang/zh-cn.js +1 -1
  95. package/lib/src/modal/basic.vue.d.ts +1 -1
  96. package/lib/src/modal/components/modal-footer.vue.d.ts +1 -1
  97. package/lib/src/modal/index.d.ts +963 -0
  98. package/lib/src/pro-form/components/api-cascader.vue.d.ts +1 -1
  99. package/lib/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
  100. package/lib/src/pro-form/components/api-select.vue.d.ts +2 -2
  101. package/lib/src/pro-form/components/api-transfer.vue.d.ts +1 -1
  102. package/lib/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
  103. package/lib/src/pro-form/components/api-tree.vue.d.ts +1 -1
  104. package/lib/src/pro-form/hooks/use-label-width.d.ts +6 -6
  105. package/lib/src/pro-form/pro-form.vue.d.ts +1 -1
  106. package/lib/src/pro-form/style/table-form.css +3 -0
  107. package/lib/src/pro-table/components/editable/editable-cell.vue.d.ts +1 -1
  108. package/lib/src/pro-table/pro-table.vue.d.ts +1 -1
  109. package/lib/src/scroll-bar/index.d.ts +176 -0
  110. package/lib/src/strength-meter/index.d.ts +89 -0
  111. package/lib/src/theme/antd-global-overwrite/admin/alert.css +16 -6
  112. package/lib/src/theme/antd-global-overwrite/admin/form.css +25 -0
  113. package/lib/src/theme/antd-global-overwrite/admin/index.css +82 -20
  114. package/lib/src/theme/antd-global-overwrite/admin/modal.css +2 -5
  115. package/lib/src/theme/antd-global-overwrite/admin/steps.css +20 -9
  116. package/lib/src/theme/antd-global-overwrite/admin/table.css +19 -0
  117. package/lib/src/theme/antd-global-overwrite/aplus/alert.css +12 -6
  118. package/lib/src/theme/antd-global-overwrite/aplus/form.css +40 -0
  119. package/lib/src/theme/antd-global-overwrite/aplus/index.css +76 -16
  120. package/lib/src/theme/antd-global-overwrite/aplus/modal.css +3 -6
  121. package/lib/src/theme/antd-global-overwrite/aplus/steps.css +21 -4
  122. package/lib/src/theme/ap-table/ap-table-pagination.css +12 -0
  123. package/lib/src/theme/ap-table/ap-table.css +14 -0
  124. package/lib/src/theme/pro-form/table-form-inner.css +3 -0
  125. package/lib/src/transition/index.d.ts +369 -0
  126. package/lib/src/utils/config-provider-preset.d.ts +12 -12
  127. package/package.json +1 -1
@@ -24,10 +24,10 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
24
24
  onChange?: ((...args: any[]) => any) | undefined;
25
25
  onDefaultChange?: ((...args: any[]) => any) | undefined;
26
26
  }, {
27
- immediate: boolean;
28
27
  resultField: string;
29
28
  labelField: string;
30
29
  valueField: string;
30
+ immediate: boolean;
31
31
  childrenField: string;
32
32
  apiParamKey: string;
33
33
  initFetchParams: Record<string, any>;
@@ -24,11 +24,11 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
24
24
  "onOptions-change"?: ((...args: any[]) => any) | undefined;
25
25
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
26
26
  }, {
27
- immediate: boolean;
28
27
  params: string | Record<string, any>;
29
28
  resultField: string;
30
29
  labelField: string;
31
30
  valueField: string;
31
+ immediate: boolean;
32
32
  isBtn: boolean;
33
33
  }, {}>;
34
34
  export default _default;
@@ -40,13 +40,13 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
40
40
  "onOptions-change"?: ((...args: any[]) => any) | undefined;
41
41
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
42
42
  }, {
43
- immediate: boolean;
44
- options: ApiSelectOption[];
45
43
  params: Record<string, any>;
46
44
  resultField: string;
47
45
  labelField: string;
48
46
  valueField: string;
47
+ immediate: boolean;
49
48
  alwaysLoad: boolean;
49
+ options: ApiSelectOption[];
50
50
  }, {}>, Partial<Record<NonNullable<keyof SelectSlotsType>, (_: any) => any>>>;
51
51
  export default _default;
52
52
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -27,10 +27,10 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
27
27
  "onOptions-change"?: ((...args: any[]) => any) | undefined;
28
28
  }, {
29
29
  disabled: boolean;
30
- immediate: boolean;
31
30
  resultField: string;
32
31
  labelField: string;
33
32
  valueField: string;
33
+ immediate: boolean;
34
34
  alwaysLoad: boolean;
35
35
  showSearch: boolean;
36
36
  showSelectAll: boolean;
@@ -25,10 +25,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
25
25
  "onOptions-change"?: ((...args: any[]) => any) | undefined;
26
26
  "onLoad-data"?: ((...args: any[]) => any) | undefined;
27
27
  }, {
28
- immediate: boolean;
29
28
  resultField: string;
30
29
  labelField: string;
31
30
  valueField: string;
31
+ immediate: boolean;
32
32
  async: boolean;
33
33
  childrenField: string;
34
34
  }, {}>, Partial<Record<NonNullable<AntdTreeSelectSlotNames>, (_: any) => any>>>;
@@ -17,8 +17,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
17
17
  "onOptions-change"?: ((...args: any[]) => any) | undefined;
18
18
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
19
19
  }, {
20
- immediate: boolean;
21
20
  resultField: string;
21
+ immediate: boolean;
22
22
  }, {}>, Partial<Record<NonNullable<AntdTreeSlotNames>, (_: any) => any>>>;
23
23
  export default _default;
24
24
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -96,8 +96,8 @@ export declare function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsR
96
96
  offset: string | number;
97
97
  } | ColSize | undefined;
98
98
  prefixCls?: string | undefined;
99
- span?: (string | number) | undefined;
100
99
  push?: (string | number) | undefined;
100
+ span?: (string | number) | undefined;
101
101
  flex?: (string | number) | undefined;
102
102
  order?: (string | number) | undefined;
103
103
  offset?: (string | number) | undefined;
@@ -110,7 +110,7 @@ export declare function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsR
110
110
  contextmenu?: string | undefined;
111
111
  dir?: string | undefined;
112
112
  draggable?: (boolean | "true" | "false") | undefined;
113
- hidden?: "" | "hidden" | (boolean | "true" | "false") | "until-found" | undefined;
113
+ hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
114
114
  id?: string | undefined;
115
115
  inert?: (boolean | "true" | "false") | undefined;
116
116
  lang?: string | undefined;
@@ -145,18 +145,18 @@ export declare function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsR
145
145
  is?: string | undefined;
146
146
  'aria-activedescendant'?: string | undefined;
147
147
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
148
- 'aria-autocomplete'?: "none" | "inline" | "both" | "list" | undefined;
148
+ 'aria-autocomplete'?: "inline" | "none" | "both" | "list" | undefined;
149
149
  'aria-busy'?: (boolean | "true" | "false") | undefined;
150
150
  'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
151
151
  'aria-colcount'?: (string | number) | undefined;
152
152
  'aria-colindex'?: (string | number) | undefined;
153
153
  'aria-colspan'?: (string | number) | undefined;
154
154
  'aria-controls'?: string | undefined;
155
- 'aria-current'?: "time" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
155
+ 'aria-current'?: "time" | (boolean | "true" | "false") | "page" | "date" | "step" | "location" | undefined;
156
156
  'aria-describedby'?: string | undefined;
157
157
  'aria-details'?: string | undefined;
158
158
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
159
- 'aria-dropeffect'?: "link" | "copy" | "none" | "move" | "execute" | "popup" | undefined;
159
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
160
160
  'aria-errormessage'?: string | undefined;
161
161
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
162
162
  'aria-flowto'?: string | undefined;
@@ -301,8 +301,8 @@ export declare function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsR
301
301
  offset: string | number;
302
302
  } | ColSize | undefined;
303
303
  prefixCls?: string | undefined;
304
- span?: (string | number) | undefined;
305
304
  push?: (string | number) | undefined;
305
+ span?: (string | number) | undefined;
306
306
  flex?: (string | number) | undefined;
307
307
  order?: (string | number) | undefined;
308
308
  offset?: (string | number) | undefined;
@@ -37,8 +37,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
37
37
  submit: (e?: Event | undefined) => Promise<void>;
38
38
  scrollToField: (name: NamePath, options?: ScrollOptions | undefined) => Promise<void>;
39
39
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
40
- reset: (...args: any[]) => void;
41
40
  submit: (...args: any[]) => void;
41
+ reset: (...args: any[]) => void;
42
42
  register: (...args: any[]) => void;
43
43
  "advanced-change": (...args: any[]) => void;
44
44
  "field-value-change": (...args: any[]) => void;
@@ -1,3 +1,6 @@
1
+ .aplus-pro-table-form .table-form-admin .ant-table-wrapper {
2
+ padding: 0;
3
+ }
1
4
  .aplus-pro-table-form .table-form-admin .ant-table .ant-table-tbody > tr > td,
2
5
  .aplus-pro-table-form .table-form-admin .ant-table .ant-table-body .ant-table-tbody > tr.ant-table-row > td {
3
6
  padding: 18px 16px 0px ;
@@ -77,8 +77,8 @@ declare const _default: DefineComponent<{
77
77
  required: true;
78
78
  };
79
79
  }>>, {
80
- column: BasicColumn;
81
80
  value: string | number | boolean | Record<string, any>;
81
+ column: BasicColumn;
82
82
  record: any;
83
83
  }, {}>;
84
84
  export default _default;
@@ -116,10 +116,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
116
116
  "onRow-mouseleave"?: ((...args: any[]) => any) | undefined;
117
117
  "onExpanded-rows-change"?: ((...args: any[]) => any) | undefined;
118
118
  }, {
119
- ellipsis: boolean;
120
119
  pagination: boolean | PaginationProps | null;
121
120
  immediate: boolean;
122
121
  columns: BasicColumn[];
122
+ ellipsis: boolean;
123
123
  rowKey: string | GetRowKey<any>;
124
124
  indentSize: number;
125
125
  showIndexColumn: boolean;
@@ -0,0 +1,176 @@
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
2
+ import { StyleValue } from '../type';
3
+ export * from './interface';
4
+ export declare const Scrollbar: {
5
+ new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
6
+ scrollHeight: {
7
+ type: PropType<number>;
8
+ default: number;
9
+ };
10
+ native: {
11
+ type: PropType<boolean>;
12
+ };
13
+ wrapStyle: {
14
+ type: PropType<StyleValue>;
15
+ default: string;
16
+ };
17
+ wrapClass: {
18
+ type: PropType<string | string[]>;
19
+ default: string;
20
+ };
21
+ viewClass: {
22
+ type: PropType<string | string[]>;
23
+ default: string;
24
+ };
25
+ viewStyle: {
26
+ type: PropType<string | string[]>;
27
+ default: string;
28
+ };
29
+ noresize: {
30
+ type: PropType<boolean>;
31
+ };
32
+ tag: {
33
+ type: PropType<string>;
34
+ default: string;
35
+ };
36
+ }>>, {
37
+ wrap: Ref<any>;
38
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
39
+ scrollHeight: {
40
+ type: PropType<number>;
41
+ default: number;
42
+ };
43
+ native: {
44
+ type: PropType<boolean>;
45
+ };
46
+ wrapStyle: {
47
+ type: PropType<StyleValue>;
48
+ default: string;
49
+ };
50
+ wrapClass: {
51
+ type: PropType<string | string[]>;
52
+ default: string;
53
+ };
54
+ viewClass: {
55
+ type: PropType<string | string[]>;
56
+ default: string;
57
+ };
58
+ viewStyle: {
59
+ type: PropType<string | string[]>;
60
+ default: string;
61
+ };
62
+ noresize: {
63
+ type: PropType<boolean>;
64
+ };
65
+ tag: {
66
+ type: PropType<string>;
67
+ default: string;
68
+ };
69
+ }>>, {
70
+ scrollHeight: number;
71
+ wrapStyle: StyleValue;
72
+ wrapClass: string | string[];
73
+ viewClass: string | string[];
74
+ viewStyle: string | string[];
75
+ tag: string;
76
+ }, true, {}, {}, {
77
+ P: {};
78
+ B: {};
79
+ D: {};
80
+ C: {};
81
+ M: {};
82
+ Defaults: {};
83
+ }, Readonly< ExtractPropTypes<{
84
+ scrollHeight: {
85
+ type: PropType<number>;
86
+ default: number;
87
+ };
88
+ native: {
89
+ type: PropType<boolean>;
90
+ };
91
+ wrapStyle: {
92
+ type: PropType<StyleValue>;
93
+ default: string;
94
+ };
95
+ wrapClass: {
96
+ type: PropType<string | string[]>;
97
+ default: string;
98
+ };
99
+ viewClass: {
100
+ type: PropType<string | string[]>;
101
+ default: string;
102
+ };
103
+ viewStyle: {
104
+ type: PropType<string | string[]>;
105
+ default: string;
106
+ };
107
+ noresize: {
108
+ type: PropType<boolean>;
109
+ };
110
+ tag: {
111
+ type: PropType<string>;
112
+ default: string;
113
+ };
114
+ }>>, {
115
+ wrap: Ref<any>;
116
+ }, {}, {}, {}, {
117
+ scrollHeight: number;
118
+ wrapStyle: StyleValue;
119
+ wrapClass: string | string[];
120
+ viewClass: string | string[];
121
+ viewStyle: string | string[];
122
+ tag: string;
123
+ }>;
124
+ __isFragment?: undefined;
125
+ __isTeleport?: undefined;
126
+ __isSuspense?: undefined;
127
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
128
+ scrollHeight: {
129
+ type: PropType<number>;
130
+ default: number;
131
+ };
132
+ native: {
133
+ type: PropType<boolean>;
134
+ };
135
+ wrapStyle: {
136
+ type: PropType<StyleValue>;
137
+ default: string;
138
+ };
139
+ wrapClass: {
140
+ type: PropType<string | string[]>;
141
+ default: string;
142
+ };
143
+ viewClass: {
144
+ type: PropType<string | string[]>;
145
+ default: string;
146
+ };
147
+ viewStyle: {
148
+ type: PropType<string | string[]>;
149
+ default: string;
150
+ };
151
+ noresize: {
152
+ type: PropType<boolean>;
153
+ };
154
+ tag: {
155
+ type: PropType<string>;
156
+ default: string;
157
+ };
158
+ }>>, {
159
+ wrap: Ref<any>;
160
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
161
+ scrollHeight: number;
162
+ wrapStyle: StyleValue;
163
+ wrapClass: string | string[];
164
+ viewClass: string | string[];
165
+ viewStyle: string | string[];
166
+ tag: string;
167
+ }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
168
+ $slots: {
169
+ default?(_: {}): any;
170
+ };
171
+ }) & Plugin<any[]> & (new (...args: any[]) => {
172
+ $props: {
173
+ onClick?: (() => void) | undefined;
174
+ };
175
+ });
176
+ export default Scrollbar;
@@ -0,0 +1,89 @@
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
2
+ export * from './interface';
3
+ export declare const StrengthMeter: {
4
+ new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
5
+ disabled: {
6
+ type: PropType<boolean>;
7
+ };
8
+ value: {
9
+ type: PropType<string>;
10
+ };
11
+ showInput: {
12
+ type: PropType<boolean>;
13
+ default: boolean;
14
+ };
15
+ }>> & {
16
+ onChange?: ((...args: any[]) => any) | undefined;
17
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
18
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
19
+ change: (...args: any[]) => void;
20
+ "score-change": (...args: any[]) => void;
21
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
22
+ disabled: {
23
+ type: PropType<boolean>;
24
+ };
25
+ value: {
26
+ type: PropType<string>;
27
+ };
28
+ showInput: {
29
+ type: PropType<boolean>;
30
+ default: boolean;
31
+ };
32
+ }>> & {
33
+ onChange?: ((...args: any[]) => any) | undefined;
34
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
35
+ }, {
36
+ showInput: boolean;
37
+ }, true, {}, {}, {
38
+ P: {};
39
+ B: {};
40
+ D: {};
41
+ C: {};
42
+ M: {};
43
+ Defaults: {};
44
+ }, Readonly< ExtractPropTypes<{
45
+ disabled: {
46
+ type: PropType<boolean>;
47
+ };
48
+ value: {
49
+ type: PropType<string>;
50
+ };
51
+ showInput: {
52
+ type: PropType<boolean>;
53
+ default: boolean;
54
+ };
55
+ }>> & {
56
+ onChange?: ((...args: any[]) => any) | undefined;
57
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
58
+ }, {}, {}, {}, {}, {
59
+ showInput: boolean;
60
+ }>;
61
+ __isFragment?: undefined;
62
+ __isTeleport?: undefined;
63
+ __isSuspense?: undefined;
64
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
65
+ disabled: {
66
+ type: PropType<boolean>;
67
+ };
68
+ value: {
69
+ type: PropType<string>;
70
+ };
71
+ showInput: {
72
+ type: PropType<boolean>;
73
+ default: boolean;
74
+ };
75
+ }>> & {
76
+ onChange?: ((...args: any[]) => any) | undefined;
77
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
78
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
79
+ change: (...args: any[]) => void;
80
+ "score-change": (...args: any[]) => void;
81
+ }, string, {
82
+ showInput: boolean;
83
+ }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
84
+ $slots: Partial<Record<string, (_: any) => any>>;
85
+ }) & Plugin<any[]> & (new (...args: any[]) => {
86
+ $props: {
87
+ onClick?: (() => void) | undefined;
88
+ };
89
+ });
@@ -1,21 +1,31 @@
1
1
  .ant-alert {
2
+ align-items: flex-start;
2
3
  width: 100%;
3
- margin: 0 0 4px;
4
- padding: 9px 12px;
4
+ padding: 6px 12px;
5
5
  border-radius: 4px;
6
6
  }
7
+ .ant-alert .ant-alert-icon {
8
+ font-size: 16px;
9
+ transform: translateY(1px);
10
+ margin-inline-end: 8px;
11
+ }
7
12
  .ant-alert .ant-alert-message {
8
- color: #182948;
9
- font-weight: bold;
13
+ color: #333333;
14
+ font-weight: normal !important;
10
15
  font-size: 12px;
11
- line-height: 12px;
16
+ line-height: 18px;
12
17
  }
13
18
  .ant-alert .ant-alert-message .href {
14
- color: #0070ff;
19
+ color: #1890ff;
15
20
  cursor: pointer;
16
21
  }
17
22
  .ant-alert .ant-alert-description {
23
+ color: #333333;
18
24
  font-weight: normal;
19
25
  font-size: 12px;
20
26
  line-height: 18px;
21
27
  }
28
+ .ant-alert-with-description .ant-alert-message {
29
+ margin-bottom: 4px;
30
+ font-weight: bold !important;
31
+ }
@@ -17,6 +17,9 @@
17
17
  .ant-form .ant-form-item-control .ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
18
18
  background-color: #34b77c;
19
19
  }
20
+ .ant-form .ant-form-item-control .ant-select.ant-select-open .ant-select-selection-item {
21
+ color: #bfbfbf;
22
+ }
20
23
  .ant-input::-moz-placeholder {
21
24
  color: #bfbfbf;
22
25
  }
@@ -38,3 +41,25 @@
38
41
  .ant-input-number .ant-input-number-input-wrap > input::placeholder {
39
42
  color: #bfbfbf;
40
43
  }
44
+ input.ant-input[disabled] {
45
+ color: #666666;
46
+ }
47
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] {
48
+ padding: 16px;
49
+ }
50
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: flex-end;
54
+ }
55
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
56
+ order: 1;
57
+ }
58
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
59
+ order: 2;
60
+ margin-right: 0;
61
+ }
62
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
63
+ order: 3;
64
+ margin-left: 0.5rem;
65
+ }