@wlydfe/pro-ui 0.2.17 → 0.2.19

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 (69) hide show
  1. package/README.md +119 -119
  2. package/es/components/form-item/src/index.vue.d.ts +2 -6
  3. package/es/components/form-item/src/index.vue2.mjs +6 -6
  4. package/es/components/page/index.d.ts +48 -3
  5. package/es/components/page/src/index.vue.d.ts +64 -61
  6. package/es/components/page/src/index.vue2.mjs +2 -3
  7. package/es/components/radio/src/index.vue2.mjs +1 -1
  8. package/es/components/render/src/index.vue2.mjs +1 -1
  9. package/es/components/search/index.d.ts +19 -0
  10. package/es/components/search/src/index.vue.d.ts +3 -0
  11. package/es/components/search/src/index.vue2.mjs +3 -2
  12. package/es/components/search/src/type.d.ts +6 -0
  13. package/es/index.css +11 -11
  14. package/es/version.d.ts +1 -1
  15. package/es/version.mjs +1 -1
  16. package/global.d.ts +29 -29
  17. package/index.js +15 -15
  18. package/index.min.js +2 -2
  19. package/index.min.mjs +2 -2
  20. package/index.mjs +15 -15
  21. package/lib/components/form-item/src/index.vue.d.ts +2 -6
  22. package/lib/components/form-item/src/index.vue2.js +6 -6
  23. package/lib/components/page/index.d.ts +48 -3
  24. package/lib/components/page/src/index.vue.d.ts +64 -61
  25. package/lib/components/page/src/index.vue2.js +2 -3
  26. package/lib/components/radio/src/index.vue2.js +1 -1
  27. package/lib/components/render/src/index.vue2.js +1 -1
  28. package/lib/components/search/index.d.ts +19 -0
  29. package/lib/components/search/src/index.vue.d.ts +3 -0
  30. package/lib/components/search/src/index.vue2.js +3 -2
  31. package/lib/components/search/src/type.d.ts +6 -0
  32. package/lib/{index.css → form.css} +12 -12
  33. package/lib/version.d.ts +1 -1
  34. package/lib/version.js +1 -1
  35. package/locale/en.js +1 -1
  36. package/locale/en.min.js +1 -1
  37. package/locale/en.min.mjs +1 -1
  38. package/locale/en.mjs +1 -1
  39. package/locale/ja.js +1 -1
  40. package/locale/ja.min.js +1 -1
  41. package/locale/ja.min.mjs +1 -1
  42. package/locale/ja.mjs +1 -1
  43. package/locale/ko.js +1 -1
  44. package/locale/ko.min.js +1 -1
  45. package/locale/ko.min.mjs +1 -1
  46. package/locale/ko.mjs +1 -1
  47. package/locale/zh-cn.js +1 -1
  48. package/locale/zh-cn.min.js +1 -1
  49. package/locale/zh-cn.min.mjs +1 -1
  50. package/locale/zh-cn.mjs +1 -1
  51. package/locale/zh-tw.js +1 -1
  52. package/locale/zh-tw.min.js +1 -1
  53. package/locale/zh-tw.min.mjs +1 -1
  54. package/locale/zh-tw.mjs +1 -1
  55. package/package.json +1 -1
  56. package/theme-chalk/src/breadcrumb.scss +9 -9
  57. package/theme-chalk/src/date-picker.scss +96 -96
  58. package/theme-chalk/src/descriptions.scss +41 -41
  59. package/theme-chalk/src/display-item.scss +82 -82
  60. package/theme-chalk/src/drawer-form.scss +16 -16
  61. package/theme-chalk/src/form.scss +34 -34
  62. package/theme-chalk/src/input-tag.scss +91 -91
  63. package/theme-chalk/src/layout.scss +36 -36
  64. package/theme-chalk/src/mixins/function.scss +73 -73
  65. package/theme-chalk/src/search.scss +49 -49
  66. package/theme-chalk/src/sidebar.scss +93 -93
  67. package/theme-chalk/src/steps-form.scss +18 -18
  68. package/theme-chalk/src/table.scss +170 -170
  69. package/theme-chalk/src/var/index.scss +6 -6
@@ -142,6 +142,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
142
142
  hasFooter: boolean;
143
143
  hasReset: boolean;
144
144
  resetText: string;
145
+ hasSearchIcon: boolean;
145
146
  hasUnfold: boolean;
146
147
  defaultUnfold: boolean;
147
148
  searchText: string;
@@ -160,6 +161,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
160
161
  readonly hasFooter: boolean;
161
162
  readonly hasReset: boolean;
162
163
  readonly resetText: string;
164
+ readonly hasSearchIcon: boolean;
163
165
  readonly hasUnfold: boolean;
164
166
  readonly defaultUnfold: boolean;
165
167
  readonly searchText: string;
@@ -226,6 +228,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
226
228
  type: PropType<string>;
227
229
  default: string;
228
230
  };
231
+ hasSearchIcon: {
232
+ type: PropType<boolean>;
233
+ default: boolean;
234
+ };
229
235
  hasUnfold: {
230
236
  type: PropType<boolean>;
231
237
  default: boolean;
@@ -260,7 +266,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
260
266
  onReset?: ((values: FieldValues) => any) | undefined;
261
267
  onSearch?: ((values: FieldValues) => any) | undefined;
262
268
  onCollapse?: ((isShowUnfold: boolean) => any) | undefined;
263
- }, "columns" | "modelValue" | "labelPosition" | "inline" | "showNumber" | "defaultValues" | "rowProps" | "colProps" | "hasFooter" | "hasReset" | "resetText" | "hasUnfold" | "defaultUnfold" | "searchText" | "retractText" | "expandText" | "searchLoading" | "needValidate">;
269
+ }, "columns" | "modelValue" | "labelPosition" | "inline" | "showNumber" | "defaultValues" | "rowProps" | "colProps" | "hasFooter" | "hasReset" | "resetText" | "hasSearchIcon" | "hasUnfold" | "defaultUnfold" | "searchText" | "retractText" | "expandText" | "searchLoading" | "needValidate">;
264
270
  $attrs: {
265
271
  [x: string]: unknown;
266
272
  };
@@ -327,6 +333,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
327
333
  type: PropType<string>;
328
334
  default: string;
329
335
  };
336
+ hasSearchIcon: {
337
+ type: PropType<boolean>;
338
+ default: boolean;
339
+ };
330
340
  hasUnfold: {
331
341
  type: PropType<boolean>;
332
342
  default: boolean;
@@ -642,9 +652,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
642
652
  readonly validator: ((val: unknown) => boolean) | undefined;
643
653
  __epPropKey: true;
644
654
  };
645
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
646
- * TODO: 将会在v0.2.0中移除
647
- */
655
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
648
656
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
649
657
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
650
658
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -752,9 +760,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
752
760
  readonly validator: ((val: unknown) => boolean) | undefined;
753
761
  __epPropKey: true;
754
762
  };
755
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
756
- * TODO: 将会在v0.2.0中移除
757
- */
763
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
758
764
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
759
765
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
760
766
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -808,9 +814,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
808
814
  readonly validator: ((val: unknown) => boolean) | undefined;
809
815
  __epPropKey: true;
810
816
  };
811
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
812
- * TODO: 将会在v0.2.0中移除
813
- */
817
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
814
818
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
815
819
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
816
820
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -1084,9 +1088,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1084
1088
  readonly validator: ((val: unknown) => boolean) | undefined;
1085
1089
  __epPropKey: true;
1086
1090
  };
1087
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
1088
- * TODO: 将会在v0.2.0中移除
1089
- */
1091
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
1090
1092
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
1091
1093
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
1092
1094
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -1194,9 +1196,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1194
1196
  readonly validator: ((val: unknown) => boolean) | undefined;
1195
1197
  __epPropKey: true;
1196
1198
  };
1197
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
1198
- * TODO: 将会在v0.2.0中移除
1199
- */
1199
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
1200
1200
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
1201
1201
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
1202
1202
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -1250,9 +1250,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1250
1250
  readonly validator: ((val: unknown) => boolean) | undefined;
1251
1251
  __epPropKey: true;
1252
1252
  };
1253
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
1254
- * TODO: 将会在v0.2.0中移除
1255
- */
1253
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
1256
1254
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
1257
1255
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
1258
1256
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -1387,14 +1385,16 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1387
1385
  }>;
1388
1386
  readonly fieldProps: PropsItemType<Partial<{
1389
1387
  [key: string]: any;
1390
- style: CSSProperties; /**
1391
- * 表格和搜索是否需要el-card 包裹 默认true
1392
- */
1388
+ style: CSSProperties;
1393
1389
  rows: number;
1394
1390
  autocomplete: string;
1395
1391
  type: "" | "number" | "default" | "search" | "checkbox" | "radio" | "textarea" | "text" | "circle" | "color" | "button" | "success" | "warning" | "info" | "primary" | "danger" | "reset" | "submit" | "time" | "image" | "line" | "date" | "year" | "years" | "month" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "range" | "dashboard" | "hidden" | "datetime-local" | "email" | "file" | "password" | "tel" | "url";
1396
1392
  loading: EpPropMergeType<BooleanConstructor, unknown, unknown> | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
1397
- step: string | number;
1393
+ step: string | number; /**
1394
+ * 自定义的插槽是否对 PlusSearch 组件提供。当启用时,自定义的插槽 PlusTable 内的表单不生效
1395
+ * @version v0.1.25
1396
+ * @default false
1397
+ */
1398
1398
  format: string | ProgressFn | undefined;
1399
1399
  filterMethod: Function | ((node: CascaderNode, keyword: string) => boolean) | undefined;
1400
1400
  id: string | [string, string];
@@ -1464,14 +1464,16 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1464
1464
  }>;
1465
1465
  readonly fieldProps: PropsItemType<Partial<{
1466
1466
  [key: string]: any;
1467
- style: CSSProperties; /**
1468
- * 表格和搜索是否需要el-card 包裹 默认true
1469
- */
1467
+ style: CSSProperties;
1470
1468
  rows: number;
1471
1469
  autocomplete: string;
1472
1470
  type: "" | "number" | "default" | "search" | "checkbox" | "radio" | "textarea" | "text" | "circle" | "color" | "button" | "success" | "warning" | "info" | "primary" | "danger" | "reset" | "submit" | "time" | "image" | "line" | "date" | "year" | "years" | "month" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "range" | "dashboard" | "hidden" | "datetime-local" | "email" | "file" | "password" | "tel" | "url";
1473
1471
  loading: EpPropMergeType<BooleanConstructor, unknown, unknown> | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
1474
- step: string | number;
1472
+ step: string | number; /**
1473
+ * 自定义的插槽是否对 PlusSearch 组件提供。当启用时,自定义的插槽 PlusTable 内的表单不生效
1474
+ * @version v0.1.25
1475
+ * @default false
1476
+ */
1475
1477
  format: string | ProgressFn | undefined;
1476
1478
  filterMethod: Function | ((node: CascaderNode, keyword: string) => boolean) | undefined;
1477
1479
  id: string | [string, string];
@@ -1564,6 +1566,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1564
1566
  hasFooter: boolean;
1565
1567
  hasReset: boolean;
1566
1568
  resetText: string;
1569
+ hasSearchIcon: boolean;
1567
1570
  hasUnfold: boolean;
1568
1571
  defaultUnfold: boolean;
1569
1572
  searchText: string;
@@ -1644,6 +1647,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1644
1647
  type: PropType<string>;
1645
1648
  default: string;
1646
1649
  };
1650
+ hasSearchIcon: {
1651
+ type: PropType<boolean>;
1652
+ default: boolean;
1653
+ };
1647
1654
  hasUnfold: {
1648
1655
  type: PropType<boolean>;
1649
1656
  default: boolean;
@@ -1959,9 +1966,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1959
1966
  readonly validator: ((val: unknown) => boolean) | undefined;
1960
1967
  __epPropKey: true;
1961
1968
  };
1962
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
1963
- * TODO: 将会在v0.2.0中移除
1964
- */
1969
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
1965
1970
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
1966
1971
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
1967
1972
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -2069,9 +2074,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2069
2074
  readonly validator: ((val: unknown) => boolean) | undefined;
2070
2075
  __epPropKey: true;
2071
2076
  };
2072
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
2073
- * TODO: 将会在v0.2.0中移除
2074
- */
2077
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
2075
2078
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
2076
2079
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
2077
2080
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -2125,9 +2128,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2125
2128
  readonly validator: ((val: unknown) => boolean) | undefined;
2126
2129
  __epPropKey: true;
2127
2130
  };
2128
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
2129
- * TODO: 将会在v0.2.0中移除
2130
- */
2131
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
2131
2132
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
2132
2133
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
2133
2134
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -2401,9 +2402,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2401
2402
  readonly validator: ((val: unknown) => boolean) | undefined;
2402
2403
  __epPropKey: true;
2403
2404
  };
2404
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
2405
- * TODO: 将会在v0.2.0中移除
2406
- */
2405
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
2407
2406
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
2408
2407
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
2409
2408
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -2511,9 +2510,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2511
2510
  readonly validator: ((val: unknown) => boolean) | undefined;
2512
2511
  __epPropKey: true;
2513
2512
  };
2514
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
2515
- * TODO: 将会在v0.2.0中移除
2516
- */
2513
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
2517
2514
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
2518
2515
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
2519
2516
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -2567,9 +2564,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2567
2564
  readonly validator: ((val: unknown) => boolean) | undefined;
2568
2565
  __epPropKey: true;
2569
2566
  };
2570
- readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>; /**
2571
- * TODO: 将会在v0.2.0中移除
2572
- */
2567
+ readonly labelPosition: EpPropFinalized<StringConstructor, "top" | "right" | "left", unknown, "right", boolean>;
2573
2568
  readonly requireAsteriskPosition: EpPropFinalized<StringConstructor, "right" | "left", unknown, "left", boolean>;
2574
2569
  readonly labelWidth: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
2575
2570
  readonly labelSuffix: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
@@ -2704,14 +2699,16 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2704
2699
  }>;
2705
2700
  readonly fieldProps: PropsItemType<Partial<{
2706
2701
  [key: string]: any;
2707
- style: CSSProperties; /**
2708
- * 表格和搜索是否需要el-card 包裹 默认true
2709
- */
2702
+ style: CSSProperties;
2710
2703
  rows: number;
2711
2704
  autocomplete: string;
2712
2705
  type: "" | "number" | "default" | "search" | "checkbox" | "radio" | "textarea" | "text" | "circle" | "color" | "button" | "success" | "warning" | "info" | "primary" | "danger" | "reset" | "submit" | "time" | "image" | "line" | "date" | "year" | "years" | "month" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "range" | "dashboard" | "hidden" | "datetime-local" | "email" | "file" | "password" | "tel" | "url";
2713
2706
  loading: EpPropMergeType<BooleanConstructor, unknown, unknown> | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
2714
- step: string | number;
2707
+ step: string | number; /**
2708
+ * 自定义的插槽是否对 PlusSearch 组件提供。当启用时,自定义的插槽 PlusTable 内的表单不生效
2709
+ * @version v0.1.25
2710
+ * @default false
2711
+ */
2715
2712
  format: string | ProgressFn | undefined;
2716
2713
  filterMethod: Function | ((node: CascaderNode, keyword: string) => boolean) | undefined;
2717
2714
  id: string | [string, string];
@@ -2781,14 +2778,16 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2781
2778
  }>;
2782
2779
  readonly fieldProps: PropsItemType<Partial<{
2783
2780
  [key: string]: any;
2784
- style: CSSProperties; /**
2785
- * 表格和搜索是否需要el-card 包裹 默认true
2786
- */
2781
+ style: CSSProperties;
2787
2782
  rows: number;
2788
2783
  autocomplete: string;
2789
2784
  type: "" | "number" | "default" | "search" | "checkbox" | "radio" | "textarea" | "text" | "circle" | "color" | "button" | "success" | "warning" | "info" | "primary" | "danger" | "reset" | "submit" | "time" | "image" | "line" | "date" | "year" | "years" | "month" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "range" | "dashboard" | "hidden" | "datetime-local" | "email" | "file" | "password" | "tel" | "url";
2790
2785
  loading: EpPropMergeType<BooleanConstructor, unknown, unknown> | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
2791
- step: string | number;
2786
+ step: string | number; /**
2787
+ * 自定义的插槽是否对 PlusSearch 组件提供。当启用时,自定义的插槽 PlusTable 内的表单不生效
2788
+ * @version v0.1.25
2789
+ * @default false
2790
+ */
2792
2791
  format: string | ProgressFn | undefined;
2793
2792
  filterMethod: Function | ((node: CascaderNode, keyword: string) => boolean) | undefined;
2794
2793
  id: string | [string, string];
@@ -2876,14 +2875,16 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
2876
2875
  }>;
2877
2876
  readonly fieldProps: PropsItemType<Partial<{
2878
2877
  [key: string]: any;
2879
- style: CSSProperties; /**
2880
- * 表格和搜索是否需要el-card 包裹 默认true
2881
- */
2878
+ style: CSSProperties;
2882
2879
  rows: number;
2883
2880
  autocomplete: string;
2884
2881
  type: "" | "number" | "default" | "search" | "checkbox" | "radio" | "textarea" | "text" | "circle" | "color" | "button" | "success" | "warning" | "info" | "primary" | "danger" | "reset" | "submit" | "time" | "image" | "line" | "date" | "year" | "years" | "month" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "range" | "dashboard" | "hidden" | "datetime-local" | "email" | "file" | "password" | "tel" | "url";
2885
2882
  loading: EpPropMergeType<BooleanConstructor, unknown, unknown> | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
2886
- step: string | number;
2883
+ step: string | number; /**
2884
+ * 自定义的插槽是否对 PlusSearch 组件提供。当启用时,自定义的插槽 PlusTable 内的表单不生效
2885
+ * @version v0.1.25
2886
+ * @default false
2887
+ */
2887
2888
  format: string | ProgressFn | undefined;
2888
2889
  filterMethod: Function | ((node: CascaderNode, keyword: string) => boolean) | undefined;
2889
2890
  id: string | [string, string];
@@ -4794,14 +4795,16 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
4794
4795
  }>;
4795
4796
  readonly fieldProps: PropsItemType<Partial<{
4796
4797
  [key: string]: any;
4797
- style: CSSProperties; /**
4798
- * 表格和搜索是否需要el-card 包裹 默认true
4799
- */
4798
+ style: CSSProperties;
4800
4799
  rows: number;
4801
4800
  autocomplete: string;
4802
4801
  type: "" | "number" | "default" | "search" | "checkbox" | "radio" | "textarea" | "text" | "circle" | "color" | "button" | "success" | "warning" | "info" | "primary" | "danger" | "reset" | "submit" | "time" | "image" | "line" | "date" | "year" | "years" | "month" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "range" | "dashboard" | "hidden" | "datetime-local" | "email" | "file" | "password" | "tel" | "url";
4803
4802
  loading: EpPropMergeType<BooleanConstructor, unknown, unknown> | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
4804
- step: string | number;
4803
+ step: string | number; /**
4804
+ * 自定义的插槽是否对 PlusSearch 组件提供。当启用时,自定义的插槽 PlusTable 内的表单不生效
4805
+ * @version v0.1.25
4806
+ * @default false
4807
+ */
4805
4808
  format: string | ProgressFn | undefined;
4806
4809
  filterMethod: Function | ((node: CascaderNode, keyword: string) => boolean) | undefined;
4807
4810
  id: string | [string, string];
@@ -230,7 +230,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
230
230
  class: "plus-page__table_wrapper"
231
231
  }, {
232
232
  default: vue.withCtx(() => {
233
- var _a2, _b, _c, _d;
233
+ var _a2, _b;
234
234
  return [
235
235
  vue.createVNode(vue.unref(index$2.PlusTable), vue.mergeProps({
236
236
  ref_key: "plusTableInstance",
@@ -238,7 +238,6 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
238
238
  "title-bar": { refresh: true }
239
239
  }, _ctx.table, {
240
240
  adaptive: (_b = (_a2 = _ctx.table) == null ? void 0 : _a2.adaptive) != null ? _b : true,
241
- stripe: (_d = (_c = _ctx.table) == null ? void 0 : _c.stripe) != null ? _d : true,
242
241
  "table-data": vue.unref(tableData),
243
242
  "loading-status": vue.unref(loadingStatus),
244
243
  columns: processedColumns.value,
@@ -297,7 +296,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
297
296
  ])
298
297
  };
299
298
  })
300
- ]), 1040, ["adaptive", "stripe", "table-data", "loading-status", "columns", "pagination"])
299
+ ]), 1040, ["adaptive", "table-data", "loading-status", "columns", "pagination"])
301
300
  ];
302
301
  }),
303
302
  _: 3
@@ -17,7 +17,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
17
17
  options: { default: () => [] },
18
18
  isCancel: { type: Boolean, default: true },
19
19
  fieldSlots: { default: void 0 },
20
- fieldChildrenSlot: { default: void 0 }
20
+ fieldChildrenSlot: { type: Function, default: void 0 }
21
21
  },
22
22
  emits: ["change", "update:modelValue"],
23
23
  setup(__props, { expose: __expose, emit: __emit }) {
@@ -13,7 +13,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
13
13
  __name: "index",
14
14
  props: {
15
15
  renderType: { default: void 0 },
16
- callbackValue: { default: "" },
16
+ callbackValue: { type: [String, Number, Boolean, null, Date, Array, Object], default: "" },
17
17
  customFieldProps: { default: () => ({}) },
18
18
  render: {},
19
19
  params: { default: () => ({}) },
@@ -63,6 +63,10 @@ export declare const PlusSearch: {
63
63
  type: PropType<string>;
64
64
  default: string;
65
65
  };
66
+ hasSearchIcon: {
67
+ type: PropType<boolean>;
68
+ default: boolean;
69
+ };
66
70
  hasUnfold: {
67
71
  type: PropType<boolean>;
68
72
  default: boolean;
@@ -1325,6 +1329,10 @@ export declare const PlusSearch: {
1325
1329
  type: PropType<string>;
1326
1330
  default: string;
1327
1331
  };
1332
+ hasSearchIcon: {
1333
+ type: PropType<boolean>;
1334
+ default: boolean;
1335
+ };
1328
1336
  hasUnfold: {
1329
1337
  type: PropType<boolean>;
1330
1338
  default: boolean;
@@ -1371,6 +1379,7 @@ export declare const PlusSearch: {
1371
1379
  hasFooter: boolean;
1372
1380
  hasReset: boolean;
1373
1381
  resetText: string;
1382
+ hasSearchIcon: boolean;
1374
1383
  hasUnfold: boolean;
1375
1384
  defaultUnfold: boolean;
1376
1385
  searchText: string;
@@ -1438,6 +1447,10 @@ export declare const PlusSearch: {
1438
1447
  type: PropType<string>;
1439
1448
  default: string;
1440
1449
  };
1450
+ hasSearchIcon: {
1451
+ type: PropType<boolean>;
1452
+ default: boolean;
1453
+ };
1441
1454
  hasUnfold: {
1442
1455
  type: PropType<boolean>;
1443
1456
  default: boolean;
@@ -2653,6 +2666,7 @@ export declare const PlusSearch: {
2653
2666
  hasFooter: boolean;
2654
2667
  hasReset: boolean;
2655
2668
  resetText: string;
2669
+ hasSearchIcon: boolean;
2656
2670
  hasUnfold: boolean;
2657
2671
  defaultUnfold: boolean;
2658
2672
  searchText: string;
@@ -2717,6 +2731,10 @@ export declare const PlusSearch: {
2717
2731
  type: PropType<string>;
2718
2732
  default: string;
2719
2733
  };
2734
+ hasSearchIcon: {
2735
+ type: PropType<boolean>;
2736
+ default: boolean;
2737
+ };
2720
2738
  hasUnfold: {
2721
2739
  type: PropType<boolean>;
2722
2740
  default: boolean;
@@ -3938,6 +3956,7 @@ export declare const PlusSearch: {
3938
3956
  hasFooter: boolean;
3939
3957
  hasReset: boolean;
3940
3958
  resetText: string;
3959
+ hasSearchIcon: boolean;
3941
3960
  hasUnfold: boolean;
3942
3961
  defaultUnfold: boolean;
3943
3962
  searchText: string;
@@ -13,6 +13,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
13
13
  defaultValues: () => {};
14
14
  hasFooter: boolean;
15
15
  hasReset: boolean;
16
+ hasSearchIcon: boolean;
16
17
  hasUnfold: boolean;
17
18
  defaultUnfold: boolean;
18
19
  searchLoading: boolean;
@@ -1215,6 +1216,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1215
1216
  defaultValues: () => {};
1216
1217
  hasFooter: boolean;
1217
1218
  hasReset: boolean;
1219
+ hasSearchIcon: boolean;
1218
1220
  hasUnfold: boolean;
1219
1221
  defaultUnfold: boolean;
1220
1222
  searchLoading: boolean;
@@ -1255,6 +1257,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
1255
1257
  hasFooter: boolean;
1256
1258
  hasReset: boolean;
1257
1259
  resetText: string;
1260
+ hasSearchIcon: boolean;
1258
1261
  hasUnfold: boolean;
1259
1262
  defaultUnfold: boolean;
1260
1263
  searchText: string;
@@ -21,6 +21,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
21
21
  defaultValues: { default: () => ({}) },
22
22
  columns: { default: () => [] },
23
23
  hasFooter: { type: Boolean, default: true },
24
+ hasSearchIcon: { type: Boolean, default: true },
24
25
  hasReset: { type: Boolean, default: true },
25
26
  hasUnfold: { type: Boolean, default: true },
26
27
  defaultUnfold: { type: Boolean, default: true },
@@ -146,7 +147,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
146
147
  }, () => [
147
148
  _ctx.hasReset ? (vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElButton), {
148
149
  key: 0,
149
- icon: vue.unref(iconsVue.RefreshRight),
150
+ icon: _ctx.hasSearchIcon ? vue.unref(iconsVue.RefreshRight) : void 0,
150
151
  onClick: handleReset
151
152
  }, {
152
153
  default: vue.withCtx(() => [
@@ -162,7 +163,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
162
163
  vue.createVNode(vue.unref(elementPlus.ElButton), {
163
164
  type: "primary",
164
165
  loading: _ctx.searchLoading,
165
- icon: vue.unref(iconsVue.Search),
166
+ icon: _ctx.hasSearchIcon ? vue.unref(iconsVue.Search) : void 0,
166
167
  onClick: handleSearch.value
167
168
  }, {
168
169
  default: vue.withCtx(() => [
@@ -7,6 +7,12 @@ export type PlusSearchSelfProps = {
7
7
  defaultValues?: FieldValues;
8
8
  columns?: PlusColumn[];
9
9
  hasFooter?: boolean;
10
+ /**
11
+ * 搜索按钮是否显示icon
12
+ * @version 0.2.18
13
+ * @default true
14
+ */
15
+ hasSearchIcon?: boolean;
10
16
  hasReset?: boolean;
11
17
  hasUnfold?: boolean;
12
18
  /**
@@ -1,22 +1,22 @@
1
+ .plus-check-card-group{display:flex;flex-wrap:wrap}.plus-check-card-group .plus-check-card{margin-bottom:16px;margin-right:16px}
1
2
 
2
- .plus-dialog .plus-dialog-footer{align-items:center;display:flex}
3
- .plus-display-item__edit-icon{margin-left:8px}.plus-display-item__image{cursor:pointer;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:30px}.plus-display-item__icon__copy{-webkit-margin-start:4px;color:var(--el-color-primary);cursor:pointer;margin-inline-start:4px;outline:none;text-decoration:none;transition:color .3s;vertical-align:sub}.plus-display-item__pre{background-color:var(--el-color-primary-light-9);border-radius:3px;font-size:85%;line-height:1.45;overflow:auto;padding:0;width:unset}.plus-display-item__badge.is-list .plus-display-item__badge__item+.plus-display-item__badge__item{padding-left:8px}.plus-display-item__badge .plus-display-item__badge__dot{border-radius:50%;display:inline-block;height:6px;position:relative;top:-1px;vertical-align:middle;width:6px}.plus-display-item__badge .plus-display-item__badge__dot--primary{background-color:var(--el-color-primary)}.plus-display-item__badge .plus-display-item__badge__dot--success{background-color:var(--el-color-success)}.plus-display-item__badge .plus-display-item__badge__dot--info{background-color:var(--el-color-info)}.plus-display-item__badge .plus-display-item__badge__dot--warning{background-color:var(--el-color-warning)}.plus-display-item__badge .plus-display-item__badge__dot--danger{background-color:var(--el-color-danger)}.plus-display-item__form .plus-form-item{margin-bottom:0}.plus-display-item__link{max-width:100%}.plus-display-item__link .el-link__inner{display:inline-block;width:100%}
3
+ .plus-check-card{border:1px solid var(--el-border-color);border-radius:var(--el-border-radius-base);box-sizing:border-box;color:var(--el-text-color-regular);cursor:pointer;display:flex;overflow:hidden;padding-block:16px;padding-inline:12px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.plus-check-card--large{width:440px}.plus-check-card--default{width:320px}.plus-check-card--small{width:200px}.plus-check-card--checked{background-color:rgba(var(--el-color-primary-rgb),.1);border-color:var(--el-color-primary);position:relative}.plus-check-card--checked:after{-webkit-border-after:10px solid transparent;-webkit-border-start:10px solid transparent;border:10px solid var(--el-color-primary);border-block-end:10px solid transparent;border-inline-start:10px solid transparent;border-start-end-radius:6px;content:"";height:0;inset-block-start:2px;inset-inline-end:2px;position:absolute;width:0}.plus-check-card--disabled{background-color:var(--el-color-info-light-9);border-color:var(--el-color-info-light-8);cursor:not-allowed}.plus-check-card--disabled:after{border-right-color:var(--el-color-info-light-5);border-top-color:var(--el-color-info-light-5)}.plus-check-card .plus-check-card__avatar-wrapper{-webkit-padding-end:8px;padding-inline-end:8px}.plus-check-card .plus-check-card__right-content{overflow:hidden;width:100%}.plus-check-card .plus-check-card__title{-webkit-margin-after:4px;align-items:center;color:var(--el-text-color-primary);display:flex;justify-content:space-between;margin-block-end:4px;width:100%}.plus-check-card .plus-check-card__title-left{align-items:center;display:flex}.plus-check-card .plus-check-card__title-right{align-items:center;display:flex;vertical-align:middle}.plus-check-card .plus-check-card__description{color:var(--el-text-color-regular);width:100%;word-break:break-all}
4
4
  .plus-description .plus-description__name{word-wrap:break-word;max-width:200px}.plus-description .plus-description__label{min-width:80px}.plus-description .plus-description__label.is-required:before{color:var(--el-color-danger);content:"*";margin-right:4px}.plus-description.no-border .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell{border:0}.plus-description.no-border .el-descriptions__body .el-descriptions__label.el-descriptions__cell.is-bordered-label{background-color:var(--el-fill-color-blank)}
5
- .plus-page .plus-page__table_wrapper{margin-top:20px}
6
- .plus-input-tag{align-items:center;background-color:var(--el-fill-color-blank);border:1px solid var(--el-border-color);border-radius:var(--el-border-radius-base);box-sizing:border-box;display:flex;flex-wrap:wrap;max-width:100%;padding:1px 2px;width:-moz-fit-content;width:fit-content}.plus-input-tag:hover{border-color:var(--el-border-color-hover)}.plus-input-tag.is-focus{border-color:var(--el-color-primary)}.plus-input-tag.is-disabled{background-color:var(--el-disabled-bg-color);cursor:not-allowed}.plus-input-tag.is-disabled:hover{border-color:var(--el-border-color)}.plus-input-tag.is-disabled .el-tag__close{cursor:not-allowed}.plus-input-tag.is-disabled .el-tag__close:hover{background-color:transparent;color:var(--el-tag-hover-color)}.plus-input-tag .plus-input-tag__tag{margin-bottom:1px;margin-right:4px;margin-top:1px}.plus-input-tag .plus-input-tag__input{box-sizing:border-box;flex:1;min-width:85px;padding:0}.plus-input-tag .plus-input-tag__input .el-input__wrapper{box-shadow:none;box-sizing:border-box;padding:0 4px}.plus-input-tag .plus-input-tag__input .el-input__inner{height:24px;line-height:24px}.plus-input-tag .el-input.is-disabled .el-input__wrapper{box-shadow:none}.el-form-item.is-error .plus-input-tag{border-color:var(--el-color-danger)}.el-form-item.is-error .plus-input-tag .el-input__wrapper{box-shadow:none}.el-form-item.is-error .plus-input-tag .el-input__wrapper.is-focus{box-shadow:none!important}.el-form-item.is-error .plus-input-tag .el-input__wrapper:hover{box-shadow:none}
5
+ .plus-drawer-form .el-drawer__header{border-bottom:1px solid var(--el-border-color);margin-bottom:0;padding-bottom:calc(var(--el-drawer-padding-primary)/2);padding-top:calc(var(--el-drawer-padding-primary)/2)}.plus-drawer-form .el-drawer__footer{border-top:1px solid var(--el-border-color);padding-bottom:calc(var(--el-drawer-padding-primary)/2)}
7
6
  .plus-form.no-has-label+.el-form-item__label{padding:0;width:0}.plus-form .plus-form__footer{display:flex;justify-content:flex-end}.plus-form .plus-form__group__item{margin-bottom:20px}.plus-form .plus-form__group__item .plus-form__group__item__icon{align-items:center;display:flex}.plus-form .plus-form__group__item .plus-form__group__item__icon .el-icon{margin-right:5px}.plus-form .plus-form-item-extra{color:var(--el-text-color-placeholder);font-size:var(--el-font-size-base);margin-bottom:18px}
8
- :root{--plus-header-height:60px;--plus-sidebar-collapse-height:60px;--plus-sidebar-width:200px;--plus-sidebar-min-width:64px}.plus-layout{height:100vh;overflow:hidden}.plus-layout.el-container{flex-direction:column}.plus-layout .plus-sidebar{height:calc(100vh - var(--plus-header-height));min-width:var(--plus-sidebar-min-width)}.plus-layout .plus-layout-main{flex:1;height:calc(100vh - var(--plus-header-height));width:calc(100% - var(--plus-sidebar-width))}.plus-layout.collapse .plus-layout-main{width:calc(100% - var(--plus-sidebar-min-width))}.plus-layout .plus-layout-content{padding:0}
9
- .plus-date-picker{align-items:center;border:1px solid var(--el-border-color);border-radius:var(--el-border-radius-base);display:flex;flex-wrap:nowrap;max-width:100%;width:-moz-fit-content;width:fit-content}.plus-date-picker:hover{border-color:var(--el-border-color-hover)}.plus-date-picker.is-focus{border-color:var(--el-color-primary)}.plus-date-picker.is-disabled{background-color:var(--el-disabled-bg-color)}.plus-date-picker.is-disabled:hover{border-color:var(--el-border-color)}.plus-date-picker .plus-date-picker__middle{color:var(--el-text-color-placeholder)}.plus-date-picker .plus-date-picker__start{flex:1;font-size:14px}.plus-date-picker .plus-date-picker__start.is-disabled .el-input__wrapper{box-shadow:none}.plus-date-picker .plus-date-picker__start .el-input__wrapper{border:none;box-shadow:none}.plus-date-picker .el-input__wrapper{width:100%}.plus-date-picker .el-input__wrapper:hover{box-shadow:none}.plus-date-picker .el-input__wrapper.is-focus{box-shadow:none}.plus-date-picker .plus-date-picker__end{flex:1;font-size:14px}.plus-date-picker .plus-date-picker__end.is-disabled .el-input__wrapper{box-shadow:none}.plus-date-picker .plus-date-picker__end .el-input__wrapper{border:none;box-shadow:none}.el-form-item.is-error .plus-date-picker{border-color:var(--el-color-danger)}.el-form-item.is-error .plus-date-picker .el-input__wrapper{box-shadow:none}.el-form-item.is-error .plus-date-picker .el-input__wrapper.is-focus{box-shadow:none!important}.el-form-item.is-error .plus-date-picker .el-input__wrapper:hover{box-shadow:none}
7
+ .plus-input-tag{align-items:center;background-color:var(--el-fill-color-blank);border:1px solid var(--el-border-color);border-radius:var(--el-border-radius-base);box-sizing:border-box;display:flex;flex-wrap:wrap;max-width:100%;padding:1px 2px;width:-moz-fit-content;width:fit-content}.plus-input-tag:hover{border-color:var(--el-border-color-hover)}.plus-input-tag.is-focus{border-color:var(--el-color-primary)}.plus-input-tag.is-disabled{background-color:var(--el-disabled-bg-color);cursor:not-allowed}.plus-input-tag.is-disabled:hover{border-color:var(--el-border-color)}.plus-input-tag.is-disabled .el-tag__close{cursor:not-allowed}.plus-input-tag.is-disabled .el-tag__close:hover{background-color:transparent;color:var(--el-tag-hover-color)}.plus-input-tag .plus-input-tag__tag{margin-bottom:1px;margin-right:4px;margin-top:1px}.plus-input-tag .plus-input-tag__input{box-sizing:border-box;flex:1;min-width:85px;padding:0}.plus-input-tag .plus-input-tag__input .el-input__wrapper{box-shadow:none;box-sizing:border-box;padding:0 4px}.plus-input-tag .plus-input-tag__input .el-input__inner{height:24px;line-height:24px}.plus-input-tag .el-input.is-disabled .el-input__wrapper{box-shadow:none}.el-form-item.is-error .plus-input-tag{border-color:var(--el-color-danger)}.el-form-item.is-error .plus-input-tag .el-input__wrapper{box-shadow:none}.el-form-item.is-error .plus-input-tag .el-input__wrapper.is-focus{box-shadow:none!important}.el-form-item.is-error .plus-input-tag .el-input__wrapper:hover{box-shadow:none}
10
8
  .plus-breadcrumb{margin-bottom:8px}.plus-breadcrumb.no-data{margin-bottom:0}
11
- .plus-check-card{border:1px solid var(--el-border-color);border-radius:var(--el-border-radius-base);box-sizing:border-box;color:var(--el-text-color-regular);cursor:pointer;display:flex;overflow:hidden;padding-block:16px;padding-inline:12px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.plus-check-card--large{width:440px}.plus-check-card--default{width:320px}.plus-check-card--small{width:200px}.plus-check-card--checked{background-color:rgba(var(--el-color-primary-rgb),.1);border-color:var(--el-color-primary);position:relative}.plus-check-card--checked:after{-webkit-border-after:10px solid transparent;-webkit-border-start:10px solid transparent;border:10px solid var(--el-color-primary);border-block-end:10px solid transparent;border-inline-start:10px solid transparent;border-start-end-radius:6px;content:"";height:0;inset-block-start:2px;inset-inline-end:2px;position:absolute;width:0}.plus-check-card--disabled{background-color:var(--el-color-info-light-9);border-color:var(--el-color-info-light-8);cursor:not-allowed}.plus-check-card--disabled:after{border-right-color:var(--el-color-info-light-5);border-top-color:var(--el-color-info-light-5)}.plus-check-card .plus-check-card__avatar-wrapper{-webkit-padding-end:8px;padding-inline-end:8px}.plus-check-card .plus-check-card__right-content{overflow:hidden;width:100%}.plus-check-card .plus-check-card__title{-webkit-margin-after:4px;align-items:center;color:var(--el-text-color-primary);display:flex;justify-content:space-between;margin-block-end:4px;width:100%}.plus-check-card .plus-check-card__title-left{align-items:center;display:flex}.plus-check-card .plus-check-card__title-right{align-items:center;display:flex;vertical-align:middle}.plus-check-card .plus-check-card__description{color:var(--el-text-color-regular);width:100%;word-break:break-all}
9
+ .plus-date-picker{align-items:center;border:1px solid var(--el-border-color);border-radius:var(--el-border-radius-base);display:flex;flex-wrap:nowrap;max-width:100%;width:-moz-fit-content;width:fit-content}.plus-date-picker:hover{border-color:var(--el-border-color-hover)}.plus-date-picker.is-focus{border-color:var(--el-color-primary)}.plus-date-picker.is-disabled{background-color:var(--el-disabled-bg-color)}.plus-date-picker.is-disabled:hover{border-color:var(--el-border-color)}.plus-date-picker .plus-date-picker__middle{color:var(--el-text-color-placeholder)}.plus-date-picker .plus-date-picker__start{flex:1;font-size:14px}.plus-date-picker .plus-date-picker__start.is-disabled .el-input__wrapper{box-shadow:none}.plus-date-picker .plus-date-picker__start .el-input__wrapper{border:none;box-shadow:none}.plus-date-picker .el-input__wrapper{width:100%}.plus-date-picker .el-input__wrapper:hover{box-shadow:none}.plus-date-picker .el-input__wrapper.is-focus{box-shadow:none}.plus-date-picker .plus-date-picker__end{flex:1;font-size:14px}.plus-date-picker .plus-date-picker__end.is-disabled .el-input__wrapper{box-shadow:none}.plus-date-picker .plus-date-picker__end .el-input__wrapper{border:none;box-shadow:none}.el-form-item.is-error .plus-date-picker{border-color:var(--el-color-danger)}.el-form-item.is-error .plus-date-picker .el-input__wrapper{box-shadow:none}.el-form-item.is-error .plus-date-picker .el-input__wrapper.is-focus{box-shadow:none!important}.el-form-item.is-error .plus-date-picker .el-input__wrapper:hover{box-shadow:none}
12
10
 
13
- .plus-form-item{width:100%}.plus-form-item .plus-form-item__label{align-items:center;display:inline-flex}.plus-form-item .plus-form-item__label .plus-table-column__label__icon{margin-left:2px}.plus-form-item .plus-form-item-field,.plus-form-item .plus-form-item-field.el-date-editor{width:100%}
14
- .plus-check-card-group{display:flex;flex-wrap:wrap}.plus-check-card-group .plus-check-card{margin-bottom:16px;margin-right:16px}
15
11
  :root{--plus-header-height:60px;--plus-sidebar-collapse-height:60px;--plus-sidebar-width:200px;--plus-sidebar-min-width:64px}.plus-header{align-items:center;border-bottom:1px solid var(--el-border-color);display:flex;justify-content:space-around}.plus-header.is-fixed{left:0;position:fixed;top:0;width:100%}.plus-header .plus-header__left{align-items:center;display:flex}.plus-header .plus-header__left .plus-header__logo{height:28px}.plus-header .plus-header__left .plus-header__title{color:var(--el-text-color-regular);font-size:18px;font-weight:600;margin:0 0 0 12px;padding:0}.plus-header .plus-header__placeholder{flex:1 1 0%}.plus-header .plus-header__right{align-items:center;display:flex}.plus-header .plus-header__right .plus-header__dropdown-area{align-items:center;cursor:pointer;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none}.plus-header .plus-header__right .plus-header__avatar{border-radius:50%;height:24px;margin-right:4px;width:24px}.plus-header-placeholder{height:var(--plus-header-height);width:100%}
12
+ .plus-form-item{width:100%}.plus-form-item .plus-form-item__label{align-items:center;display:inline-flex}.plus-form-item .plus-form-item__label .plus-table-column__label__icon{margin-left:2px}.plus-form-item .plus-form-item-field,.plus-form-item .plus-form-item-field.el-date-editor{width:100%}
16
13
  .plus-pagination{align-items:center;display:flex;justify-content:space-between;padding:16px 0}
17
-
18
- .plus-drawer-form .el-drawer__header{border-bottom:1px solid var(--el-border-color);margin-bottom:0;padding-bottom:calc(var(--el-drawer-padding-primary)/2);padding-top:calc(var(--el-drawer-padding-primary)/2)}.plus-drawer-form .el-drawer__footer{border-top:1px solid var(--el-border-color);padding-bottom:calc(var(--el-drawer-padding-primary)/2)}
19
14
  .plus-search .plus-form__row{row-gap:18px;width:100%}.plus-search.el-form--inline .el-form-item{margin-bottom:0;margin-right:0}.plus-search.el-form--label-top .plus-search__button__wrapper .el-form-item__label{opacity:0;visibility:hidden}.plus-search.el-form--label-top .plus-search__button__wrapper .el-form-item__content{justify-content:flex-end}.plus-search .plus-search__unfold{margin-left:12px}.plus-search .plus-search__button__wrapper{align-items:flex-start;display:flex;flex:auto;justify-content:flex-end;margin-bottom:0;max-width:100%}.plus-search .plus-search__button__wrapper.el-form-item{margin-right:10px}.plus-search .plus-search__button__wrapper .el-form-item__content{flex:none;flex-wrap:nowrap}
20
- .plus-steps-form .el-steps{margin-bottom:20px}.plus-steps-form-vertical{display:flex}.plus-steps-form-vertical .el-steps--vertical{margin-right:20px}.plus-steps-form-vertical .plus-form{flex:1}
15
+
21
16
  :root{--plus-header-height:60px;--plus-sidebar-collapse-height:60px;--plus-sidebar-width:200px;--plus-sidebar-min-width:64px}.plus-sidebar{height:100%}.plus-sidebar.is-vertical{min-height:400px}.plus-sidebar.is-vertical:not(.el-menu--collapse){flex-shrink:0;width:var(--plus-sidebar-width)}.plus-sidebar.is-vertical.el-menu--collapse .el-menu-item{width:calc(var(--plus-sidebar-min-width) - 2px)}.plus-sidebar.is-vertical .el-scrollbar__wrap{overflow-x:hidden}.plus-sidebar.is-vertical.el-menu--collapse .plus-sidebar__item-title{display:inline-block;height:0;overflow:hidden;visibility:hidden;width:0}.plus-sidebar.is-vertical.el-menu--collapse .el-sub-menu__icon-arrow{display:none}.plus-sidebar.is-vertical .el-scrollbar{height:calc(100% - var(--plus-sidebar-collapse-height))}.plus-sidebar.is-vertical .plus-sidebar__collapse{align-items:flex-start;background-color:var(--el-menu-bg-color);bottom:0;box-sizing:border-box;height:var(--plus-sidebar-collapse-height);left:0;position:absolute;width:calc(var(--plus-sidebar-width) - 2px)}.plus-sidebar.is-vertical .plus-sidebar__collapse.is-collapse{width:calc(var(--plus-sidebar-min-width) - 2px)}.plus-sidebar.is-vertical .plus-sidebar__collapse.is-active{background-color:var(--el-menu-bg-color)}.plus-sidebar.is-vertical .plus-sidebar__collapse [class*=-icon]{cursor:pointer;font-size:20px;margin-top:10px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.plus-sidebar.is-horizontal,.plus-sidebar.is-horizontal .el-scrollbar,.plus-sidebar.is-horizontal .el-scrollbar__wrap{width:100%}.plus-sidebar.is-horizontal .el-scrollbar__view{display:flex;flex-wrap:nowrap;height:100%;width:100%}.plus-sidebar .plus-sidebar__item-title{-webkit-user-select:none;-moz-user-select:none;user-select:none}
17
+ :root{--plus-header-height:60px;--plus-sidebar-collapse-height:60px;--plus-sidebar-width:200px;--plus-sidebar-min-width:64px}.plus-layout{height:100vh;overflow:hidden}.plus-layout.el-container{flex-direction:column}.plus-layout .plus-sidebar{height:calc(100vh - var(--plus-header-height));min-width:var(--plus-sidebar-min-width)}.plus-layout .plus-layout-main{flex:1;height:calc(100vh - var(--plus-header-height));width:calc(100% - var(--plus-sidebar-width))}.plus-layout.collapse .plus-layout-main{width:calc(100% - var(--plus-sidebar-min-width))}.plus-layout .plus-layout-content{padding:0}
18
+ .plus-display-item__edit-icon{margin-left:8px}.plus-display-item__image{cursor:pointer;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:30px}.plus-display-item__icon__copy{-webkit-margin-start:4px;color:var(--el-color-primary);cursor:pointer;margin-inline-start:4px;outline:none;text-decoration:none;transition:color .3s;vertical-align:sub}.plus-display-item__pre{background-color:var(--el-color-primary-light-9);border-radius:3px;font-size:85%;line-height:1.45;overflow:auto;padding:0;width:unset}.plus-display-item__badge.is-list .plus-display-item__badge__item+.plus-display-item__badge__item{padding-left:8px}.plus-display-item__badge .plus-display-item__badge__dot{border-radius:50%;display:inline-block;height:6px;position:relative;top:-1px;vertical-align:middle;width:6px}.plus-display-item__badge .plus-display-item__badge__dot--primary{background-color:var(--el-color-primary)}.plus-display-item__badge .plus-display-item__badge__dot--success{background-color:var(--el-color-success)}.plus-display-item__badge .plus-display-item__badge__dot--info{background-color:var(--el-color-info)}.plus-display-item__badge .plus-display-item__badge__dot--warning{background-color:var(--el-color-warning)}.plus-display-item__badge .plus-display-item__badge__dot--danger{background-color:var(--el-color-danger)}.plus-display-item__form .plus-form-item{margin-bottom:0}.plus-display-item__link{max-width:100%}.plus-display-item__link .el-link__inner{display:inline-block;width:100%}
19
+ .plus-dialog .plus-dialog-footer{align-items:center;display:flex}
20
+ .plus-page .plus-page__table_wrapper{margin-top:20px}
21
+ .plus-steps-form .el-steps{margin-bottom:20px}.plus-steps-form-vertical{display:flex}.plus-steps-form-vertical .el-steps--vertical{margin-right:20px}.plus-steps-form-vertical .plus-form{flex:1}
22
22
  .plus-table .plus-table-column .plus-table-column__header .plus-table-column__header__icon{margin-left:2px;margin-top:-2px;vertical-align:middle}.plus-table .plus-table-action-bar.is-center .cell{justify-content:center}.plus-table .plus-table-action-bar.is-right .cell{justify-content:flex-end}.plus-table .plus-table-action-bar.el-table-fixed-column--right{background-color:var(--el-bg-color)}.plus-table .plus-table-action-bar .cell{align-items:center;display:flex}.plus-table .plus-table-action-bar .plus-table-action-bar__dropdown__link{cursor:pointer;display:inline-flex;-webkit-user-select:none;-moz-user-select:none;user-select:none}.plus-table .plus-table-action-bar .plus-table-action-bar__more-text{margin-right:2px}.plus-table .plus-table-action-bar .plus-table-action-bar__column__link{margin-right:10px}.plus-table .plus-table-action-bar .plus-table-action-bar__dropdown{cursor:pointer;margin-left:12px;vertical-align:baseline}.plus-table .plus-table-action-bar .el-link+.el-link{margin-left:12px}.plus-table .plus-table-action-bar .el-icon{cursor:pointer}.plus-table .plus-table-action-bar .el-icon+.el-icon{margin-left:12px}.plus-table .plus-table-column-drag-sort .plus-table-column-drag-icon{box-sizing:border-box;cursor:move;font-size:18px;padding:4px}.plus-table .plus-table-column-index .plus-table-index-column{align-items:center;display:inline-flex;height:20px;justify-content:center;white-space:nowrap;width:20px;word-break:keep-all}.plus-table .plus-table-column-index .cell .plus-table-column-index__content{align-items:center;display:flex;justify-content:center;overflow:hidden}.plus-table .plus-table-title-bar{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px}.plus-table .plus-table-title-bar__toolbar{align-items:center;display:flex}.plus-table .el-popper{max-width:200px}.plus-table-title-bar__toolbar__density{align-items:center;display:flex;flex-direction:column}.plus-table-title-bar__toolbar__density .el-button{margin-top:10px;width:80px}.plus-table-title-bar__toolbar__density .el-button+.el-button{margin-left:0}.plus-table-title-bar__toolbar__icon{color:var(--el-text-color-regular);cursor:pointer;margin-left:10px;vertical-align:middle}.plus-table-title-bar__toolbar__checkbox__item{margin-left:6px}.plus-table-checkbox-item{align-items:center;display:flex;margin-left:20px}.plus-table-checkbox-handle{cursor:move;font-size:18px}.plus-table-ghost-class{background-color:#fff;border:1px dashed var(--el-color-primary);padding:0 5px}.plus-table-column__edit{cursor:pointer}.plus-table-checkbox-checkAll{display:flex;justify-content:space-between}
package/lib/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "0.2.17";
1
+ export declare const version = "0.2.19";
package/lib/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  'use strict';
2
2
 
3
- const version = "0.2.17";
3
+ const version = "0.2.19";
4
4
 
5
5
  exports.version = version;
package/locale/en.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! @wlydfe/pro-ui v0.2.17 */
1
+ /*! @wlydfe/pro-ui v0.2.19 */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
package/locale/en.min.js CHANGED
@@ -1 +1 @@
1
- /*! @wlydfe/pro-ui v0.2.17 */(function(e,t){typeof exports=="object"&&typeof module!="undefined"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis!="undefined"?globalThis:e||self,e.PlusProComponentsLocaleEn=t())})(this,function(){"use strict";var e={name:"en",plus:{dialog:{confirmText:"Yes",cancelText:"No",title:"Dialog"},datepicker:{startPlaceholder:"Please select start time",endPlaceholder:"Please select end time"},dialogForm:{title:"Dialog form"},drawerForm:{title:"Drawer form",confirmText:"Yes",cancelText:"No"},form:{submitText:"Submit",resetText:"Reset",errorTip:"Please complete the form and submit again!"},field:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},popover:{confirmText:"Yes",cancelText:"No"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract"},table:{title:"Table",density:"Density",refresh:"Refresh",columnSettings:"Column settings",selectAll:"Select all",default:"Default",loose:"Loose",compact:"Compact",action:"Action",more:"More",confirmToPerformThisOperation:"Confirm to perform this operation?",prompt:"Prompt",sort:"Sort",resetText:"Reset"},stepsForm:{nextText:"Next step",preText:"Previous step",submitText:"Submit"},inputTag:{placeholder:"Please enter keywords and press enter or space key"},header:{logout:"logout"}}};return e});
1
+ /*! @wlydfe/pro-ui v0.2.19 */(function(e,t){typeof exports=="object"&&typeof module!="undefined"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis!="undefined"?globalThis:e||self,e.PlusProComponentsLocaleEn=t())})(this,function(){"use strict";var e={name:"en",plus:{dialog:{confirmText:"Yes",cancelText:"No",title:"Dialog"},datepicker:{startPlaceholder:"Please select start time",endPlaceholder:"Please select end time"},dialogForm:{title:"Dialog form"},drawerForm:{title:"Drawer form",confirmText:"Yes",cancelText:"No"},form:{submitText:"Submit",resetText:"Reset",errorTip:"Please complete the form and submit again!"},field:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},popover:{confirmText:"Yes",cancelText:"No"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract"},table:{title:"Table",density:"Density",refresh:"Refresh",columnSettings:"Column settings",selectAll:"Select all",default:"Default",loose:"Loose",compact:"Compact",action:"Action",more:"More",confirmToPerformThisOperation:"Confirm to perform this operation?",prompt:"Prompt",sort:"Sort",resetText:"Reset"},stepsForm:{nextText:"Next step",preText:"Previous step",submitText:"Submit"},inputTag:{placeholder:"Please enter keywords and press enter or space key"},header:{logout:"logout"}}};return e});