hs-admin-ui 16.9.2 → 16.9.4

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.
@@ -71,22 +71,26 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
71
71
  isVerifySearch?: boolean;
72
72
  isQuickSearch?: boolean;
73
73
  isReverseBtn?: boolean;
74
- readonly disabled: boolean;
75
- readonly labelPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
76
- readonly requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
77
- readonly labelWidth: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
78
- readonly labelSuffix: string;
79
- readonly inline: boolean;
80
- readonly inlineMessage: boolean;
81
- readonly statusIcon: boolean;
82
- readonly showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
83
- readonly validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
84
- readonly hideRequiredAsterisk: boolean;
85
- readonly scrollToError: boolean;
86
- readonly size?: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>;
87
- readonly model?: Record<string, any>;
88
- readonly rules?: Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>;
89
- readonly scrollIntoViewOptions?: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>;
74
+ model?: Record<string, any>;
75
+ rules?: import("element-plus").FormRules;
76
+ labelPosition?: "left" | "right" | "top";
77
+ requireAsteriskPosition?: "left" | "right";
78
+ labelWidth?: string | number;
79
+ labelSuffix?: string;
80
+ inline?: boolean;
81
+ inlineMessage?: boolean;
82
+ statusIcon?: boolean;
83
+ showMessage?: boolean;
84
+ validateOnRuleChange?: boolean;
85
+ hideRequiredAsterisk?: boolean;
86
+ scrollToError?: boolean;
87
+ scrollIntoViewOptions?: boolean | {
88
+ block?: ScrollLogicalPosition;
89
+ inline?: ScrollLogicalPosition;
90
+ behavior?: ScrollBehavior;
91
+ };
92
+ size?: import("element-plus").ComponentSize;
93
+ disabled?: boolean;
90
94
  };
91
95
  formData: ICustomData.Data;
92
96
  formConfig: {
@@ -239,10 +243,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
239
243
  form: string;
240
244
  label: string;
241
245
  resize: "none" | "both" | "horizontal" | "vertical";
242
- type: string;
243
246
  size: string;
244
247
  name: string;
245
- clearable: boolean;
248
+ type: string;
246
249
  disabled: boolean;
247
250
  maxlength: string | number;
248
251
  minlength: string | number;
@@ -251,6 +254,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
251
254
  formatter: Function;
252
255
  parser: Function;
253
256
  readonly: boolean;
257
+ clearable: boolean;
254
258
  tabindex: string | number;
255
259
  autofocus: boolean;
256
260
  rows: number;
@@ -2846,10 +2850,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
2846
2850
  form: string;
2847
2851
  label: string;
2848
2852
  resize: "none" | "both" | "horizontal" | "vertical";
2849
- type: string;
2850
2853
  size: string;
2851
2854
  name: string;
2852
- clearable: boolean;
2855
+ type: string;
2853
2856
  disabled: boolean;
2854
2857
  maxlength: string | number;
2855
2858
  minlength: string | number;
@@ -2858,6 +2861,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
2858
2861
  formatter: Function;
2859
2862
  parser: Function;
2860
2863
  readonly: boolean;
2864
+ clearable: boolean;
2861
2865
  tabindex: string | number;
2862
2866
  autofocus: boolean;
2863
2867
  rows: number;
@@ -3297,22 +3301,26 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
3297
3301
  isVerifySearch?: boolean;
3298
3302
  isQuickSearch?: boolean;
3299
3303
  isReverseBtn?: boolean;
3300
- readonly disabled: boolean;
3301
- readonly labelPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
3302
- readonly requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
3303
- readonly labelWidth: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
3304
- readonly labelSuffix: string;
3305
- readonly inline: boolean;
3306
- readonly inlineMessage: boolean;
3307
- readonly statusIcon: boolean;
3308
- readonly showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
3309
- readonly validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
3310
- readonly hideRequiredAsterisk: boolean;
3311
- readonly scrollToError: boolean;
3312
- readonly size?: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>;
3313
- readonly model?: Record<string, any>;
3314
- readonly rules?: Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>;
3315
- readonly scrollIntoViewOptions?: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>;
3304
+ model?: Record<string, any>;
3305
+ rules?: import("element-plus").FormRules;
3306
+ labelPosition?: "left" | "right" | "top";
3307
+ requireAsteriskPosition?: "left" | "right";
3308
+ labelWidth?: string | number;
3309
+ labelSuffix?: string;
3310
+ inline?: boolean;
3311
+ inlineMessage?: boolean;
3312
+ statusIcon?: boolean;
3313
+ showMessage?: boolean;
3314
+ validateOnRuleChange?: boolean;
3315
+ hideRequiredAsterisk?: boolean;
3316
+ scrollToError?: boolean;
3317
+ scrollIntoViewOptions?: boolean | {
3318
+ block?: ScrollLogicalPosition;
3319
+ inline?: ScrollLogicalPosition;
3320
+ behavior?: ScrollBehavior;
3321
+ };
3322
+ size?: import("element-plus").ComponentSize;
3323
+ disabled?: boolean;
3316
3324
  };
3317
3325
  formData: ICustomData.Data;
3318
3326
  formConfig: {
@@ -3465,10 +3473,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
3465
3473
  form: string;
3466
3474
  label: string;
3467
3475
  resize: "none" | "both" | "horizontal" | "vertical";
3468
- type: string;
3469
3476
  size: string;
3470
3477
  name: string;
3471
- clearable: boolean;
3478
+ type: string;
3472
3479
  disabled: boolean;
3473
3480
  maxlength: string | number;
3474
3481
  minlength: string | number;
@@ -3477,6 +3484,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
3477
3484
  formatter: Function;
3478
3485
  parser: Function;
3479
3486
  readonly: boolean;
3487
+ clearable: boolean;
3480
3488
  tabindex: string | number;
3481
3489
  autofocus: boolean;
3482
3490
  rows: number;
@@ -6072,10 +6080,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
6072
6080
  form: string;
6073
6081
  label: string;
6074
6082
  resize: "none" | "both" | "horizontal" | "vertical";
6075
- type: string;
6076
6083
  size: string;
6077
6084
  name: string;
6078
- clearable: boolean;
6085
+ type: string;
6079
6086
  disabled: boolean;
6080
6087
  maxlength: string | number;
6081
6088
  minlength: string | number;
@@ -6084,6 +6091,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
6084
6091
  formatter: Function;
6085
6092
  parser: Function;
6086
6093
  readonly: boolean;
6094
+ clearable: boolean;
6087
6095
  tabindex: string | number;
6088
6096
  autofocus: boolean;
6089
6097
  rows: number;
@@ -6549,22 +6557,26 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
6549
6557
  isVerifySearch?: boolean;
6550
6558
  isQuickSearch?: boolean;
6551
6559
  isReverseBtn?: boolean;
6552
- readonly disabled: boolean;
6553
- readonly labelPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
6554
- readonly requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
6555
- readonly labelWidth: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
6556
- readonly labelSuffix: string;
6557
- readonly inline: boolean;
6558
- readonly inlineMessage: boolean;
6559
- readonly statusIcon: boolean;
6560
- readonly showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
6561
- readonly validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
6562
- readonly hideRequiredAsterisk: boolean;
6563
- readonly scrollToError: boolean;
6564
- readonly size?: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>;
6565
- readonly model?: Record<string, any>;
6566
- readonly rules?: Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>;
6567
- readonly scrollIntoViewOptions?: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown>;
6560
+ model?: Record<string, any>;
6561
+ rules?: import("element-plus").FormRules;
6562
+ labelPosition?: "left" | "right" | "top";
6563
+ requireAsteriskPosition?: "left" | "right";
6564
+ labelWidth?: string | number;
6565
+ labelSuffix?: string;
6566
+ inline?: boolean;
6567
+ inlineMessage?: boolean;
6568
+ statusIcon?: boolean;
6569
+ showMessage?: boolean;
6570
+ validateOnRuleChange?: boolean;
6571
+ hideRequiredAsterisk?: boolean;
6572
+ scrollToError?: boolean;
6573
+ scrollIntoViewOptions?: boolean | {
6574
+ block?: ScrollLogicalPosition;
6575
+ inline?: ScrollLogicalPosition;
6576
+ behavior?: ScrollBehavior;
6577
+ };
6578
+ size?: import("element-plus").ComponentSize;
6579
+ disabled?: boolean;
6568
6580
  };
6569
6581
  formData: ICustomData.Data;
6570
6582
  formConfig: {
@@ -6717,10 +6729,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
6717
6729
  form: string;
6718
6730
  label: string;
6719
6731
  resize: "none" | "both" | "horizontal" | "vertical";
6720
- type: string;
6721
6732
  size: string;
6722
6733
  name: string;
6723
- clearable: boolean;
6734
+ type: string;
6724
6735
  disabled: boolean;
6725
6736
  maxlength: string | number;
6726
6737
  minlength: string | number;
@@ -6729,6 +6740,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
6729
6740
  formatter: Function;
6730
6741
  parser: Function;
6731
6742
  readonly: boolean;
6743
+ clearable: boolean;
6732
6744
  tabindex: string | number;
6733
6745
  autofocus: boolean;
6734
6746
  rows: number;
@@ -9324,10 +9336,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
9324
9336
  form: string;
9325
9337
  label: string;
9326
9338
  resize: "none" | "both" | "horizontal" | "vertical";
9327
- type: string;
9328
9339
  size: string;
9329
9340
  name: string;
9330
- clearable: boolean;
9341
+ type: string;
9331
9342
  disabled: boolean;
9332
9343
  maxlength: string | number;
9333
9344
  minlength: string | number;
@@ -9336,6 +9347,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
9336
9347
  formatter: Function;
9337
9348
  parser: Function;
9338
9349
  readonly: boolean;
9350
+ clearable: boolean;
9339
9351
  tabindex: string | number;
9340
9352
  autofocus: boolean;
9341
9353
  rows: number;
@@ -9896,10 +9908,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
9896
9908
  form: string;
9897
9909
  label: string;
9898
9910
  resize: "none" | "both" | "horizontal" | "vertical";
9899
- type: string;
9900
9911
  size: string;
9901
9912
  name: string;
9902
- clearable: boolean;
9913
+ type: string;
9903
9914
  disabled: boolean;
9904
9915
  maxlength: string | number;
9905
9916
  minlength: string | number;
@@ -9908,6 +9919,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
9908
9919
  formatter: Function;
9909
9920
  parser: Function;
9910
9921
  readonly: boolean;
9922
+ clearable: boolean;
9911
9923
  tabindex: string | number;
9912
9924
  autofocus: boolean;
9913
9925
  rows: number;
@@ -12503,10 +12515,9 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
12503
12515
  form: string;
12504
12516
  label: string;
12505
12517
  resize: "none" | "both" | "horizontal" | "vertical";
12506
- type: string;
12507
12518
  size: string;
12508
12519
  name: string;
12509
- clearable: boolean;
12520
+ type: string;
12510
12521
  disabled: boolean;
12511
12522
  maxlength: string | number;
12512
12523
  minlength: string | number;
@@ -12515,6 +12526,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
12515
12526
  formatter: Function;
12516
12527
  parser: Function;
12517
12528
  readonly: boolean;
12529
+ clearable: boolean;
12518
12530
  tabindex: string | number;
12519
12531
  autofocus: boolean;
12520
12532
  rows: number;
@@ -4,7 +4,7 @@ export declare const decimalDigits: import("vue").Ref<number, number>;
4
4
  * @param val 对结果进行格式化,用来解决计算过程中精度缺失的问题
5
5
  * @param digits 小数位数,默认值-1,取系统参数设置值
6
6
  */
7
- export declare function fixedNumAccuracy(val: string | number, digits?: number): string;
7
+ export declare function fixedNumAccuracy(val: string | number, _digits?: number): string;
8
8
  /**
9
9
  * 几个数字相加
10
10
  * @example add(0.1, "0.2", 0.3) = 0.6 <==> 0.1 + 0.2 + 0.3
@@ -1,8 +1,8 @@
1
- import { aT as r, bq as u, br as l, bs as s, H as x, aR as m, bt as E } from "./bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-ByEz_9_E.js";
2
- import { W as _, bu as g, bv as H, bw as N, aw as R } from "./bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-ByEz_9_E.js";
3
- import { V as b } from "./components-IEmDaz88.js";
1
+ import { aT as r, bq as u, br as l, bs as s, H as x, aR as m, bt as E } from "./bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-BJmlGXwL.js";
2
+ import { W as _, bu as g, bv as H, bw as N, aw as R } from "./bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-BJmlGXwL.js";
3
+ import { V as b } from "./components-B52fnreL.js";
4
4
  import "vue";
5
- import { i as I } from "./index-Dp6xNYD5.js";
5
+ import { i as I } from "./index-BkI5_xEf.js";
6
6
  function d(a, e) {
7
7
  r.value = e == null ? void 0 : e.NEXT_NAME, u.value = e == null ? void 0 : e.IS_DEV, l.value = e == null ? void 0 : e.currentRoute, s.value = e == null ? void 0 : e.currentRouter, x.has(a, "_context.directives.loading") || a.directive("loading", m.directive), a.use(E).use(b);
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hs-admin-ui",
3
- "version": "16.9.2",
3
+ "version": "16.9.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",