cnhis-design-vue 3.1.16-beta.2 → 3.1.16-beta.3

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 (37) hide show
  1. package/es/packages/big-table/index.d.ts +651 -1
  2. package/es/packages/big-table/src/BigTable.vue.d.ts +671 -20
  3. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +36 -13
  4. package/es/packages/big-table/src/bigTableProps.d.ts +4 -0
  5. package/es/packages/big-table/src/bigTableProps.js +2 -1
  6. package/es/packages/big-table/src/bigTableState.d.ts +2 -0
  7. package/es/packages/big-table/src/bigTableState.js +3 -1
  8. package/es/packages/big-table/src/hooks/index.d.ts +9 -0
  9. package/es/packages/big-table/src/hooks/index.js +9 -0
  10. package/es/packages/big-table/src/hooks/useAnchor.d.ts +7 -0
  11. package/es/packages/big-table/src/hooks/useAnchor.js +41 -0
  12. package/es/packages/big-table/src/hooks/useEvent.d.ts +1 -1
  13. package/es/packages/big-table/src/hooks/useEvent.js +3 -2
  14. package/es/packages/button-print/index.d.ts +2 -2
  15. package/es/packages/button-print/src/ButtonPrint.vue.d.ts +2 -2
  16. package/es/packages/button-print/src/components/IdentityVerification.vue.d.ts +2 -2
  17. package/es/packages/drag-layout/index.d.ts +2 -2
  18. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +2 -2
  19. package/es/packages/field-set/index.d.ts +1 -1
  20. package/es/packages/field-set/src/FieldSet.vue.d.ts +1 -1
  21. package/es/packages/form-config/index.d.ts +8 -8
  22. package/es/packages/form-config/src/FormConfig.vue.d.ts +8 -8
  23. package/es/packages/form-config/src/components/FormConfigCreator.vue.d.ts +3 -3
  24. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +5 -5
  25. package/es/packages/form-render/index.d.ts +3 -3
  26. package/es/packages/form-render/src/FormRender.vue.d.ts +3 -3
  27. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +6 -5
  28. package/es/packages/form-render/src/hooks/useTypeNormalize.js +1 -1
  29. package/es/packages/scale-view/src/hooks/use-component.d.ts +7 -7
  30. package/es/packages/select-label/index.d.ts +10 -10
  31. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +3 -3
  32. package/es/packages/select-label/src/SelectLabel.vue.d.ts +7 -7
  33. package/es/packages/shortcut-setter/index.d.ts +3 -3
  34. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +3 -3
  35. package/es/packages/time-line/index.d.ts +2 -2
  36. package/es/packages/time-line/src/TimeLine.vue.d.ts +2 -2
  37. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ /// <reference types="lodash" />
1
2
  import { SFCWithInstall } from '../../../es/src/types';
2
3
  export * from './src/hooks/export';
3
4
  declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
@@ -199,6 +200,10 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
199
200
  };
200
201
  resetInlineBatchEdit: FunctionConstructor;
201
202
  resetBatchEditRowStatus: FunctionConstructor;
203
+ anchor: {
204
+ type: ArrayConstructor;
205
+ default: () => never[];
206
+ };
202
207
  }, {
203
208
  _hideAllWrap: null;
204
209
  _beforeSearchConvert: never[];
@@ -2510,6 +2515,8 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
2510
2515
  isHover: boolean;
2511
2516
  isCurrent: boolean;
2512
2517
  };
2518
+ anchorValue: string;
2519
+ anchorList: never[];
2513
2520
  };
2514
2521
  state: {
2515
2522
  curAbleCheckedLen: number;
@@ -2583,6 +2590,8 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
2583
2590
  isHover: boolean;
2584
2591
  isCurrent: boolean;
2585
2592
  };
2593
+ anchorValue: string;
2594
+ anchorList: never[];
2586
2595
  };
2587
2596
  emit: (event: string, ...args: any[]) => void;
2588
2597
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
@@ -2784,6 +2793,10 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
2784
2793
  };
2785
2794
  resetInlineBatchEdit: FunctionConstructor;
2786
2795
  resetBatchEditRowStatus: FunctionConstructor;
2796
+ anchor: {
2797
+ type: ArrayConstructor;
2798
+ default: () => never[];
2799
+ };
2787
2800
  }>> & {
2788
2801
  [x: `on${string}`]: ((...args: any[]) => any) | undefined;
2789
2802
  }>>;
@@ -2854,6 +2867,11 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
2854
2867
  toggleExpandMethod: ({ expanded, row }: any) => boolean;
2855
2868
  loadExpandMethod: ({ row, rowIndex }: any) => Promise<void>;
2856
2869
  nestHandleClickRow: (table: any, data: any) => void;
2870
+ initAnchor: () => void;
2871
+ updateAnchor: (field: string) => void;
2872
+ anchorEvent: ({ scrollLeft }: {
2873
+ scrollLeft: number;
2874
+ }) => void;
2857
2875
  keyDown: ({ $event }: {
2858
2876
  $event: KeyboardEvent;
2859
2877
  }) => void;
@@ -2881,7 +2899,7 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
2881
2899
  loadColumn: (config: any) => void;
2882
2900
  separate: (data: import("../../../es/src/types").AnyObject[], rawData: import("../../../es/src/types").AnyObject[]) => Promise<import("../../../es/src/types").AnyObject[]>;
2883
2901
  onColumnResize: import("vxe-table").VxeTableEvents.ResizableChange;
2884
- separateHandle: import("./src/hooks/useSeparateRow").SeparateHandle;
2902
+ separateHandle: import("./src/hooks").SeparateHandle;
2885
2903
  onResizableChange: (payload: any) => void;
2886
2904
  loadData: (data: any) => Promise<void>;
2887
2905
  setGroupTitleToFristColumnFieldData: (formatList: any) => void;
@@ -3994,6 +4012,633 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
3994
4012
  internalExtraClass: string[];
3995
4013
  arrow: boolean | undefined;
3996
4014
  }>;
4015
+ NTabs: import("vue").DefineComponent<{
4016
+ readonly value: import("vue").PropType<string | number>;
4017
+ readonly defaultValue: import("vue").PropType<string | number>;
4018
+ readonly trigger: {
4019
+ readonly type: import("vue").PropType<"click" | "hover">;
4020
+ readonly default: "click";
4021
+ };
4022
+ readonly type: {
4023
+ readonly type: import("vue").PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
4024
+ readonly default: "bar";
4025
+ };
4026
+ readonly closable: BooleanConstructor;
4027
+ readonly justifyContent: import("vue").PropType<"start" | "end" | "space-around" | "space-between" | "space-evenly" | "center">;
4028
+ readonly size: {
4029
+ readonly type: import("vue").PropType<"small" | "medium" | "large">;
4030
+ readonly default: "medium";
4031
+ };
4032
+ readonly tabStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4033
+ readonly barWidth: NumberConstructor;
4034
+ readonly paneClass: StringConstructor;
4035
+ readonly paneStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4036
+ readonly addable: import("vue").PropType<import("naive-ui/es/tabs/src/interface").Addable>;
4037
+ readonly tabsPadding: {
4038
+ readonly type: NumberConstructor;
4039
+ readonly default: 0;
4040
+ };
4041
+ readonly animated: BooleanConstructor;
4042
+ readonly onBeforeLeave: import("vue").PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
4043
+ readonly onAdd: import("vue").PropType<() => void>;
4044
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4045
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4046
+ readonly onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
4047
+ readonly labelSize: import("vue").PropType<"small" | "medium" | "large">;
4048
+ readonly activeName: import("vue").PropType<string | number>;
4049
+ readonly onActiveNameChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
4050
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
4051
+ colorSegment: string;
4052
+ tabFontSizeCard: string;
4053
+ tabTextColorLine: string;
4054
+ tabTextColorActiveLine: string;
4055
+ tabTextColorHoverLine: string;
4056
+ tabTextColorDisabledLine: string;
4057
+ tabTextColorSegment: string;
4058
+ tabTextColorActiveSegment: string;
4059
+ tabTextColorHoverSegment: string;
4060
+ tabTextColorDisabledSegment: string;
4061
+ tabTextColorBar: string;
4062
+ tabTextColorActiveBar: string;
4063
+ tabTextColorHoverBar: string;
4064
+ tabTextColorDisabledBar: string;
4065
+ tabTextColorCard: string;
4066
+ tabTextColorHoverCard: string;
4067
+ tabTextColorActiveCard: string;
4068
+ tabTextColorDisabledCard: string;
4069
+ barColor: string;
4070
+ closeIconColor: string;
4071
+ closeIconColorHover: string;
4072
+ closeIconColorPressed: string;
4073
+ closeColorHover: string;
4074
+ closeColorPressed: string;
4075
+ closeBorderRadius: string;
4076
+ tabColor: string;
4077
+ tabColorSegment: string;
4078
+ tabBorderColor: string;
4079
+ tabFontWeightActive: string;
4080
+ tabFontWeight: string;
4081
+ tabBorderRadius: string;
4082
+ paneTextColor: string;
4083
+ fontWeightStrong: string;
4084
+ tabFontSizeSmall: string;
4085
+ tabFontSizeMedium: string;
4086
+ tabFontSizeLarge: string;
4087
+ tabGapSmallLine: string;
4088
+ tabGapMediumLine: string;
4089
+ tabGapLargeLine: string;
4090
+ tabPaddingSmallLine: string;
4091
+ tabPaddingMediumLine: string;
4092
+ tabPaddingLargeLine: string;
4093
+ tabGapSmallBar: string;
4094
+ tabGapMediumBar: string;
4095
+ tabGapLargeBar: string;
4096
+ tabPaddingSmallBar: string;
4097
+ tabPaddingMediumBar: string;
4098
+ tabPaddingLargeBar: string;
4099
+ tabGapSmallCard: string;
4100
+ tabGapMediumCard: string;
4101
+ tabGapLargeCard: string;
4102
+ tabPaddingSmallCard: string;
4103
+ tabPaddingMediumCard: string;
4104
+ tabPaddingLargeCard: string;
4105
+ tabPaddingSmallSegment: string;
4106
+ tabPaddingMediumSegment: string;
4107
+ tabPaddingLargeSegment: string;
4108
+ tabGapSmallSegment: string;
4109
+ tabGapMediumSegment: string;
4110
+ tabGapLargeSegment: string;
4111
+ panePaddingSmall: string;
4112
+ panePaddingMedium: string;
4113
+ panePaddingLarge: string;
4114
+ closeSize: string;
4115
+ closeIconSize: string;
4116
+ }, any>>;
4117
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4118
+ colorSegment: string;
4119
+ tabFontSizeCard: string;
4120
+ tabTextColorLine: string;
4121
+ tabTextColorActiveLine: string;
4122
+ tabTextColorHoverLine: string;
4123
+ tabTextColorDisabledLine: string;
4124
+ tabTextColorSegment: string;
4125
+ tabTextColorActiveSegment: string;
4126
+ tabTextColorHoverSegment: string;
4127
+ tabTextColorDisabledSegment: string;
4128
+ tabTextColorBar: string;
4129
+ tabTextColorActiveBar: string;
4130
+ tabTextColorHoverBar: string;
4131
+ tabTextColorDisabledBar: string;
4132
+ tabTextColorCard: string;
4133
+ tabTextColorHoverCard: string;
4134
+ tabTextColorActiveCard: string;
4135
+ tabTextColorDisabledCard: string;
4136
+ barColor: string;
4137
+ closeIconColor: string;
4138
+ closeIconColorHover: string;
4139
+ closeIconColorPressed: string;
4140
+ closeColorHover: string;
4141
+ closeColorPressed: string;
4142
+ closeBorderRadius: string;
4143
+ tabColor: string;
4144
+ tabColorSegment: string;
4145
+ tabBorderColor: string;
4146
+ tabFontWeightActive: string;
4147
+ tabFontWeight: string;
4148
+ tabBorderRadius: string;
4149
+ paneTextColor: string;
4150
+ fontWeightStrong: string;
4151
+ tabFontSizeSmall: string;
4152
+ tabFontSizeMedium: string;
4153
+ tabFontSizeLarge: string;
4154
+ tabGapSmallLine: string;
4155
+ tabGapMediumLine: string;
4156
+ tabGapLargeLine: string;
4157
+ tabPaddingSmallLine: string;
4158
+ tabPaddingMediumLine: string;
4159
+ tabPaddingLargeLine: string;
4160
+ tabGapSmallBar: string;
4161
+ tabGapMediumBar: string;
4162
+ tabGapLargeBar: string;
4163
+ tabPaddingSmallBar: string;
4164
+ tabPaddingMediumBar: string;
4165
+ tabPaddingLargeBar: string;
4166
+ tabGapSmallCard: string;
4167
+ tabGapMediumCard: string;
4168
+ tabGapLargeCard: string;
4169
+ tabPaddingSmallCard: string;
4170
+ tabPaddingMediumCard: string;
4171
+ tabPaddingLargeCard: string;
4172
+ tabPaddingSmallSegment: string;
4173
+ tabPaddingMediumSegment: string;
4174
+ tabPaddingLargeSegment: string;
4175
+ tabGapSmallSegment: string;
4176
+ tabGapMediumSegment: string;
4177
+ tabGapLargeSegment: string;
4178
+ panePaddingSmall: string;
4179
+ panePaddingMedium: string;
4180
+ panePaddingLarge: string;
4181
+ closeSize: string;
4182
+ closeIconSize: string;
4183
+ }, any>>>;
4184
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4185
+ colorSegment: string;
4186
+ tabFontSizeCard: string;
4187
+ tabTextColorLine: string;
4188
+ tabTextColorActiveLine: string;
4189
+ tabTextColorHoverLine: string;
4190
+ tabTextColorDisabledLine: string;
4191
+ tabTextColorSegment: string;
4192
+ tabTextColorActiveSegment: string;
4193
+ tabTextColorHoverSegment: string;
4194
+ tabTextColorDisabledSegment: string;
4195
+ tabTextColorBar: string;
4196
+ tabTextColorActiveBar: string;
4197
+ tabTextColorHoverBar: string;
4198
+ tabTextColorDisabledBar: string;
4199
+ tabTextColorCard: string;
4200
+ tabTextColorHoverCard: string;
4201
+ tabTextColorActiveCard: string;
4202
+ tabTextColorDisabledCard: string;
4203
+ barColor: string;
4204
+ closeIconColor: string;
4205
+ closeIconColorHover: string;
4206
+ closeIconColorPressed: string;
4207
+ closeColorHover: string;
4208
+ closeColorPressed: string;
4209
+ closeBorderRadius: string;
4210
+ tabColor: string;
4211
+ tabColorSegment: string;
4212
+ tabBorderColor: string;
4213
+ tabFontWeightActive: string;
4214
+ tabFontWeight: string;
4215
+ tabBorderRadius: string;
4216
+ paneTextColor: string;
4217
+ fontWeightStrong: string;
4218
+ tabFontSizeSmall: string;
4219
+ tabFontSizeMedium: string;
4220
+ tabFontSizeLarge: string;
4221
+ tabGapSmallLine: string;
4222
+ tabGapMediumLine: string;
4223
+ tabGapLargeLine: string;
4224
+ tabPaddingSmallLine: string;
4225
+ tabPaddingMediumLine: string;
4226
+ tabPaddingLargeLine: string;
4227
+ tabGapSmallBar: string;
4228
+ tabGapMediumBar: string;
4229
+ tabGapLargeBar: string;
4230
+ tabPaddingSmallBar: string;
4231
+ tabPaddingMediumBar: string;
4232
+ tabPaddingLargeBar: string;
4233
+ tabGapSmallCard: string;
4234
+ tabGapMediumCard: string;
4235
+ tabGapLargeCard: string;
4236
+ tabPaddingSmallCard: string;
4237
+ tabPaddingMediumCard: string;
4238
+ tabPaddingLargeCard: string;
4239
+ tabPaddingSmallSegment: string;
4240
+ tabPaddingMediumSegment: string;
4241
+ tabPaddingLargeSegment: string;
4242
+ tabGapSmallSegment: string;
4243
+ tabGapMediumSegment: string;
4244
+ tabGapLargeSegment: string;
4245
+ panePaddingSmall: string;
4246
+ panePaddingMedium: string;
4247
+ panePaddingLarge: string;
4248
+ closeSize: string;
4249
+ closeIconSize: string;
4250
+ }, any>>>;
4251
+ }, {
4252
+ syncBarPosition: () => void;
4253
+ mergedClsPrefix: import("vue").ComputedRef<string>;
4254
+ mergedValue: import("vue").ComputedRef<string | number | null>;
4255
+ renderedNames: Set<string | number>;
4256
+ tabsRailElRef: import("vue").Ref<HTMLElement | null>;
4257
+ tabsPaneWrapperRef: import("vue").Ref<HTMLElement | null>;
4258
+ tabsElRef: import("vue").Ref<HTMLElement | null>;
4259
+ barElRef: import("vue").Ref<HTMLElement | null>;
4260
+ addTabInstRef: import("vue").Ref<import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null>;
4261
+ xScrollInstRef: import("vue").Ref<(import("vueuc").VXScrollInst & {
4262
+ $: import("vue").ComponentInternalInstance;
4263
+ $data: {};
4264
+ $props: {};
4265
+ $attrs: {
4266
+ [x: string]: unknown;
4267
+ };
4268
+ $refs: {
4269
+ [x: string]: unknown;
4270
+ };
4271
+ $slots: Readonly<{
4272
+ [name: string]: import("vue").Slot | undefined;
4273
+ }>;
4274
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
4275
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
4276
+ $emit: (event: string, ...args: any[]) => void;
4277
+ $el: any;
4278
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}> & {
4279
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
4280
+ created?: (() => void) | (() => void)[] | undefined;
4281
+ beforeMount?: (() => void) | (() => void)[] | undefined;
4282
+ mounted?: (() => void) | (() => void)[] | undefined;
4283
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
4284
+ updated?: (() => void) | (() => void)[] | undefined;
4285
+ activated?: (() => void) | (() => void)[] | undefined;
4286
+ deactivated?: (() => void) | (() => void)[] | undefined;
4287
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
4288
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
4289
+ destroyed?: (() => void) | (() => void)[] | undefined;
4290
+ unmounted?: (() => void) | (() => void)[] | undefined;
4291
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
4292
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
4293
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[] | undefined;
4294
+ };
4295
+ $forceUpdate: () => void;
4296
+ $nextTick: typeof import("vue").nextTick;
4297
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
4298
+ } & import("vue").ShallowUnwrapRef<{}> & import("vue").ComponentCustomProperties) | null>;
4299
+ scrollWrapperElRef: import("vue").Ref<HTMLElement | null>;
4300
+ addTabFixed: import("vue").Ref<boolean>;
4301
+ tabWrapperStyle: import("vue").ComputedRef<{
4302
+ display: string;
4303
+ justifyContent: "start" | "end" | "space-around" | "space-between" | "space-evenly" | "center";
4304
+ } | undefined>;
4305
+ handleNavResize: import("lodash").DebouncedFunc<(entry: ResizeObserverEntry) => void>;
4306
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
4307
+ handleScroll: import("lodash").DebouncedFunc<(e: Event) => void>;
4308
+ handleTabsResize: import("lodash").DebouncedFunc<(entry: ResizeObserverEntry) => void>;
4309
+ cssVars: import("vue").ComputedRef<{
4310
+ '--n-bezier': string;
4311
+ '--n-color-segment': string;
4312
+ '--n-bar-color': string;
4313
+ '--n-tab-font-size': string;
4314
+ '--n-tab-text-color': string;
4315
+ '--n-tab-text-color-active': string;
4316
+ '--n-tab-text-color-disabled': string;
4317
+ '--n-tab-text-color-hover': string;
4318
+ '--n-pane-text-color': string;
4319
+ '--n-tab-border-color': string;
4320
+ '--n-tab-border-radius': string;
4321
+ '--n-close-size': string;
4322
+ '--n-close-icon-size': string;
4323
+ '--n-close-color-hover': string;
4324
+ '--n-close-color-pressed': string;
4325
+ '--n-close-border-radius': string;
4326
+ '--n-close-icon-color': string;
4327
+ '--n-close-icon-color-hover': string;
4328
+ '--n-close-icon-color-pressed': string;
4329
+ '--n-tab-color': string;
4330
+ '--n-tab-font-weight': string;
4331
+ '--n-tab-font-weight-active': string;
4332
+ '--n-tab-padding': string;
4333
+ '--n-tab-gap': string;
4334
+ '--n-pane-padding': string;
4335
+ '--n-font-weight-strong': string;
4336
+ '--n-tab-color-segment': string;
4337
+ }> | undefined;
4338
+ themeClass: import("vue").Ref<string> | undefined;
4339
+ animationDirection: import("vue").Ref<"prev" | "next">;
4340
+ renderNameListRef: {
4341
+ value: (string | number)[];
4342
+ };
4343
+ onAnimationBeforeLeave: (el: HTMLElement) => void;
4344
+ onAnimationEnter: (el: HTMLElement) => void;
4345
+ onAnimationAfterEnter: () => void;
4346
+ onRender: (() => void) | undefined;
4347
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4348
+ readonly value: import("vue").PropType<string | number>;
4349
+ readonly defaultValue: import("vue").PropType<string | number>;
4350
+ readonly trigger: {
4351
+ readonly type: import("vue").PropType<"click" | "hover">;
4352
+ readonly default: "click";
4353
+ };
4354
+ readonly type: {
4355
+ readonly type: import("vue").PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
4356
+ readonly default: "bar";
4357
+ };
4358
+ readonly closable: BooleanConstructor;
4359
+ readonly justifyContent: import("vue").PropType<"start" | "end" | "space-around" | "space-between" | "space-evenly" | "center">;
4360
+ readonly size: {
4361
+ readonly type: import("vue").PropType<"small" | "medium" | "large">;
4362
+ readonly default: "medium";
4363
+ };
4364
+ readonly tabStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4365
+ readonly barWidth: NumberConstructor;
4366
+ readonly paneClass: StringConstructor;
4367
+ readonly paneStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4368
+ readonly addable: import("vue").PropType<import("naive-ui/es/tabs/src/interface").Addable>;
4369
+ readonly tabsPadding: {
4370
+ readonly type: NumberConstructor;
4371
+ readonly default: 0;
4372
+ };
4373
+ readonly animated: BooleanConstructor;
4374
+ readonly onBeforeLeave: import("vue").PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
4375
+ readonly onAdd: import("vue").PropType<() => void>;
4376
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4377
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4378
+ readonly onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
4379
+ readonly labelSize: import("vue").PropType<"small" | "medium" | "large">;
4380
+ readonly activeName: import("vue").PropType<string | number>;
4381
+ readonly onActiveNameChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
4382
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
4383
+ colorSegment: string;
4384
+ tabFontSizeCard: string;
4385
+ tabTextColorLine: string;
4386
+ tabTextColorActiveLine: string;
4387
+ tabTextColorHoverLine: string;
4388
+ tabTextColorDisabledLine: string;
4389
+ tabTextColorSegment: string;
4390
+ tabTextColorActiveSegment: string;
4391
+ tabTextColorHoverSegment: string;
4392
+ tabTextColorDisabledSegment: string;
4393
+ tabTextColorBar: string;
4394
+ tabTextColorActiveBar: string;
4395
+ tabTextColorHoverBar: string;
4396
+ tabTextColorDisabledBar: string;
4397
+ tabTextColorCard: string;
4398
+ tabTextColorHoverCard: string;
4399
+ tabTextColorActiveCard: string;
4400
+ tabTextColorDisabledCard: string;
4401
+ barColor: string;
4402
+ closeIconColor: string;
4403
+ closeIconColorHover: string;
4404
+ closeIconColorPressed: string;
4405
+ closeColorHover: string;
4406
+ closeColorPressed: string;
4407
+ closeBorderRadius: string;
4408
+ tabColor: string;
4409
+ tabColorSegment: string;
4410
+ tabBorderColor: string;
4411
+ tabFontWeightActive: string;
4412
+ tabFontWeight: string;
4413
+ tabBorderRadius: string;
4414
+ paneTextColor: string;
4415
+ fontWeightStrong: string;
4416
+ tabFontSizeSmall: string;
4417
+ tabFontSizeMedium: string;
4418
+ tabFontSizeLarge: string;
4419
+ tabGapSmallLine: string;
4420
+ tabGapMediumLine: string;
4421
+ tabGapLargeLine: string;
4422
+ tabPaddingSmallLine: string;
4423
+ tabPaddingMediumLine: string;
4424
+ tabPaddingLargeLine: string;
4425
+ tabGapSmallBar: string;
4426
+ tabGapMediumBar: string;
4427
+ tabGapLargeBar: string;
4428
+ tabPaddingSmallBar: string;
4429
+ tabPaddingMediumBar: string;
4430
+ tabPaddingLargeBar: string;
4431
+ tabGapSmallCard: string;
4432
+ tabGapMediumCard: string;
4433
+ tabGapLargeCard: string;
4434
+ tabPaddingSmallCard: string;
4435
+ tabPaddingMediumCard: string;
4436
+ tabPaddingLargeCard: string;
4437
+ tabPaddingSmallSegment: string;
4438
+ tabPaddingMediumSegment: string;
4439
+ tabPaddingLargeSegment: string;
4440
+ tabGapSmallSegment: string;
4441
+ tabGapMediumSegment: string;
4442
+ tabGapLargeSegment: string;
4443
+ panePaddingSmall: string;
4444
+ panePaddingMedium: string;
4445
+ panePaddingLarge: string;
4446
+ closeSize: string;
4447
+ closeIconSize: string;
4448
+ }, any>>;
4449
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4450
+ colorSegment: string;
4451
+ tabFontSizeCard: string;
4452
+ tabTextColorLine: string;
4453
+ tabTextColorActiveLine: string;
4454
+ tabTextColorHoverLine: string;
4455
+ tabTextColorDisabledLine: string;
4456
+ tabTextColorSegment: string;
4457
+ tabTextColorActiveSegment: string;
4458
+ tabTextColorHoverSegment: string;
4459
+ tabTextColorDisabledSegment: string;
4460
+ tabTextColorBar: string;
4461
+ tabTextColorActiveBar: string;
4462
+ tabTextColorHoverBar: string;
4463
+ tabTextColorDisabledBar: string;
4464
+ tabTextColorCard: string;
4465
+ tabTextColorHoverCard: string;
4466
+ tabTextColorActiveCard: string;
4467
+ tabTextColorDisabledCard: string;
4468
+ barColor: string;
4469
+ closeIconColor: string;
4470
+ closeIconColorHover: string;
4471
+ closeIconColorPressed: string;
4472
+ closeColorHover: string;
4473
+ closeColorPressed: string;
4474
+ closeBorderRadius: string;
4475
+ tabColor: string;
4476
+ tabColorSegment: string;
4477
+ tabBorderColor: string;
4478
+ tabFontWeightActive: string;
4479
+ tabFontWeight: string;
4480
+ tabBorderRadius: string;
4481
+ paneTextColor: string;
4482
+ fontWeightStrong: string;
4483
+ tabFontSizeSmall: string;
4484
+ tabFontSizeMedium: string;
4485
+ tabFontSizeLarge: string;
4486
+ tabGapSmallLine: string;
4487
+ tabGapMediumLine: string;
4488
+ tabGapLargeLine: string;
4489
+ tabPaddingSmallLine: string;
4490
+ tabPaddingMediumLine: string;
4491
+ tabPaddingLargeLine: string;
4492
+ tabGapSmallBar: string;
4493
+ tabGapMediumBar: string;
4494
+ tabGapLargeBar: string;
4495
+ tabPaddingSmallBar: string;
4496
+ tabPaddingMediumBar: string;
4497
+ tabPaddingLargeBar: string;
4498
+ tabGapSmallCard: string;
4499
+ tabGapMediumCard: string;
4500
+ tabGapLargeCard: string;
4501
+ tabPaddingSmallCard: string;
4502
+ tabPaddingMediumCard: string;
4503
+ tabPaddingLargeCard: string;
4504
+ tabPaddingSmallSegment: string;
4505
+ tabPaddingMediumSegment: string;
4506
+ tabPaddingLargeSegment: string;
4507
+ tabGapSmallSegment: string;
4508
+ tabGapMediumSegment: string;
4509
+ tabGapLargeSegment: string;
4510
+ panePaddingSmall: string;
4511
+ panePaddingMedium: string;
4512
+ panePaddingLarge: string;
4513
+ closeSize: string;
4514
+ closeIconSize: string;
4515
+ }, any>>>;
4516
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4517
+ colorSegment: string;
4518
+ tabFontSizeCard: string;
4519
+ tabTextColorLine: string;
4520
+ tabTextColorActiveLine: string;
4521
+ tabTextColorHoverLine: string;
4522
+ tabTextColorDisabledLine: string;
4523
+ tabTextColorSegment: string;
4524
+ tabTextColorActiveSegment: string;
4525
+ tabTextColorHoverSegment: string;
4526
+ tabTextColorDisabledSegment: string;
4527
+ tabTextColorBar: string;
4528
+ tabTextColorActiveBar: string;
4529
+ tabTextColorHoverBar: string;
4530
+ tabTextColorDisabledBar: string;
4531
+ tabTextColorCard: string;
4532
+ tabTextColorHoverCard: string;
4533
+ tabTextColorActiveCard: string;
4534
+ tabTextColorDisabledCard: string;
4535
+ barColor: string;
4536
+ closeIconColor: string;
4537
+ closeIconColorHover: string;
4538
+ closeIconColorPressed: string;
4539
+ closeColorHover: string;
4540
+ closeColorPressed: string;
4541
+ closeBorderRadius: string;
4542
+ tabColor: string;
4543
+ tabColorSegment: string;
4544
+ tabBorderColor: string;
4545
+ tabFontWeightActive: string;
4546
+ tabFontWeight: string;
4547
+ tabBorderRadius: string;
4548
+ paneTextColor: string;
4549
+ fontWeightStrong: string;
4550
+ tabFontSizeSmall: string;
4551
+ tabFontSizeMedium: string;
4552
+ tabFontSizeLarge: string;
4553
+ tabGapSmallLine: string;
4554
+ tabGapMediumLine: string;
4555
+ tabGapLargeLine: string;
4556
+ tabPaddingSmallLine: string;
4557
+ tabPaddingMediumLine: string;
4558
+ tabPaddingLargeLine: string;
4559
+ tabGapSmallBar: string;
4560
+ tabGapMediumBar: string;
4561
+ tabGapLargeBar: string;
4562
+ tabPaddingSmallBar: string;
4563
+ tabPaddingMediumBar: string;
4564
+ tabPaddingLargeBar: string;
4565
+ tabGapSmallCard: string;
4566
+ tabGapMediumCard: string;
4567
+ tabGapLargeCard: string;
4568
+ tabPaddingSmallCard: string;
4569
+ tabPaddingMediumCard: string;
4570
+ tabPaddingLargeCard: string;
4571
+ tabPaddingSmallSegment: string;
4572
+ tabPaddingMediumSegment: string;
4573
+ tabPaddingLargeSegment: string;
4574
+ tabGapSmallSegment: string;
4575
+ tabGapMediumSegment: string;
4576
+ tabGapLargeSegment: string;
4577
+ panePaddingSmall: string;
4578
+ panePaddingMedium: string;
4579
+ panePaddingLarge: string;
4580
+ closeSize: string;
4581
+ closeIconSize: string;
4582
+ }, any>>>;
4583
+ }>>, {
4584
+ readonly type: import("naive-ui/es/tabs/src/interface").TabsType;
4585
+ readonly size: "small" | "medium" | "large";
4586
+ readonly closable: boolean;
4587
+ readonly trigger: "click" | "hover";
4588
+ readonly animated: boolean;
4589
+ readonly tabsPadding: number;
4590
+ }>;
4591
+ NTabPane: import("vue").DefineComponent<{
4592
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4593
+ [key: string]: any;
4594
+ }> | (() => import("vue").VNodeChild)>;
4595
+ readonly name: {
4596
+ readonly type: import("vue").PropType<string | number>;
4597
+ readonly required: true;
4598
+ };
4599
+ readonly disabled: BooleanConstructor;
4600
+ readonly displayDirective: {
4601
+ readonly type: import("vue").PropType<"show" | "if" | "show:lazy">;
4602
+ readonly default: "if";
4603
+ };
4604
+ readonly closable: {
4605
+ readonly type: import("vue").PropType<boolean | undefined>;
4606
+ readonly default: undefined;
4607
+ };
4608
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
4609
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4610
+ [key: string]: any;
4611
+ }> | (() => import("vue").VNodeChild)>;
4612
+ }, {
4613
+ style: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
4614
+ class: import("vue").Ref<string | undefined>;
4615
+ mergedClsPrefix: import("vue").Ref<string>;
4616
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4617
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4618
+ [key: string]: any;
4619
+ }> | (() => import("vue").VNodeChild)>;
4620
+ readonly name: {
4621
+ readonly type: import("vue").PropType<string | number>;
4622
+ readonly required: true;
4623
+ };
4624
+ readonly disabled: BooleanConstructor;
4625
+ readonly displayDirective: {
4626
+ readonly type: import("vue").PropType<"show" | "if" | "show:lazy">;
4627
+ readonly default: "if";
4628
+ };
4629
+ readonly closable: {
4630
+ readonly type: import("vue").PropType<boolean | undefined>;
4631
+ readonly default: undefined;
4632
+ };
4633
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
4634
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4635
+ [key: string]: any;
4636
+ }> | (() => import("vue").VNodeChild)>;
4637
+ }>>, {
4638
+ readonly disabled: boolean;
4639
+ readonly closable: boolean | undefined;
4640
+ readonly displayDirective: "show" | "if" | "show:lazy";
4641
+ }>;
3997
4642
  NIcon: import("vue").DefineComponent<{
3998
4643
  readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
3999
4644
  readonly size: import("vue").PropType<string | number>;
@@ -4271,9 +4916,14 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
4271
4916
  };
4272
4917
  resetInlineBatchEdit: FunctionConstructor;
4273
4918
  resetBatchEditRowStatus: FunctionConstructor;
4919
+ anchor: {
4920
+ type: ArrayConstructor;
4921
+ default: () => never[];
4922
+ };
4274
4923
  }>> & {
4275
4924
  [x: `on${string}`]: ((...args: any[]) => any) | undefined;
4276
4925
  }, {
4926
+ anchor: unknown[];
4277
4927
  data: unknown[];
4278
4928
  showFooter: boolean;
4279
4929
  columnConfig: Record<string, any>;