@ironsource/shared-ui 2.1.8-rc.7 → 2.1.8-rc.9

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 (46) hide show
  1. package/Chart.vue_vue_type_style_index_0_scoped_df85e0af_lang.css +1 -0
  2. package/ChartHeader.vue_vue_type_style_index_0_scoped_2e3de9c5_lang.css +1 -0
  3. package/DataGrid.vue_vue_type_style_index_0_scoped_d27e1304_lang.css +1 -0
  4. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_fd7a490e_lang.css +1 -0
  5. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_cfedf78b_lang.css +1 -0
  6. package/SettingsHeader.vue_vue_type_style_index_0_scoped_1791e4fe_lang.css +1 -0
  7. package/Table.vue_vue_type_style_index_0_scoped_9375215d_lang.css +1 -0
  8. package/components/chart/Chart.vue.d.ts +15 -2
  9. package/components/chart/Chart.vue.js +3 -3
  10. package/components/chart/Chart.vue2.js +160 -141
  11. package/components/chart/ChartHeader.vue.d.ts +5 -0
  12. package/components/chart/ChartHeader.vue.js +2 -2
  13. package/components/chart/ChartHeader.vue2.js +31 -29
  14. package/components/chart/SettingsHeader.vue.d.ts +30 -0
  15. package/components/chart/SettingsHeader.vue.js +7 -0
  16. package/components/chart/SettingsHeader.vue2.js +57 -0
  17. package/components/chart/consts.d.ts +2 -0
  18. package/components/chart/consts.js +17 -11
  19. package/components/chart/index.d.ts +320 -74
  20. package/components/chart/types.d.ts +4 -0
  21. package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +1 -0
  22. package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
  23. package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +33 -31
  24. package/components/dropdown/v4/index.d.ts +1 -0
  25. package/components/loader/v4/index.js +6 -0
  26. package/components/table/common/Table.types.d.ts +6 -0
  27. package/components/table/v3/Table.vue.d.ts +3 -13
  28. package/components/table/v3/Table.vue.js +5 -5
  29. package/components/table/v3/Table.vue2.js +2 -2
  30. package/components/table/v3/index.d.ts +7 -42
  31. package/components/table/v4/DataGrid.vue.d.ts +3 -13
  32. package/components/table/v4/DataGrid.vue.js +3 -3
  33. package/components/table/v4/DataGrid.vue2.js +5 -5
  34. package/components/table/v4/MultipleDataGrid.vue.d.ts +7 -1
  35. package/components/table/v4/MultipleDataGrid.vue.js +3 -3
  36. package/components/table/v4/MultipleDataGrid.vue2.js +76 -75
  37. package/components/table/v4/index.d.ts +28 -43
  38. package/index.d.ts +332 -170
  39. package/index.js +128 -126
  40. package/package.json +4 -1
  41. package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +0 -1
  42. package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +0 -1
  43. package/DataGrid.vue_vue_type_style_index_0_scoped_2f666594_lang.css +0 -1
  44. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_1726ad49_lang.css +0 -1
  45. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css +0 -1
  46. package/Table.vue_vue_type_style_index_0_scoped_76fef9bd_lang.css +0 -1
package/index.d.ts CHANGED
@@ -4181,6 +4181,266 @@ declare const _default: {
4181
4181
  destroy: () => boolean;
4182
4182
  };
4183
4183
  snackbarTypes: readonly ["success", "info", "error"];
4184
+ Loader: {
4185
+ new (...args: any[]): {
4186
+ $: import("vue").ComponentInternalInstance;
4187
+ $data: {};
4188
+ $props: Partial<{
4189
+ maxWidth: number;
4190
+ strokeWidth: number;
4191
+ paddingOffsetPx: number;
4192
+ paddingOffsetPercentage: number;
4193
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
4194
+ maxWidth: {
4195
+ type: import("vue").PropType<number>;
4196
+ default: any;
4197
+ };
4198
+ strokeWidth: {
4199
+ type: import("vue").PropType<number>;
4200
+ default: number;
4201
+ };
4202
+ paddingOffsetPx: {
4203
+ type: import("vue").PropType<number>;
4204
+ default: number;
4205
+ };
4206
+ paddingOffsetPercentage: {
4207
+ type: import("vue").PropType<number>;
4208
+ default: number;
4209
+ };
4210
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "maxWidth" | "strokeWidth" | "paddingOffsetPx" | "paddingOffsetPercentage">;
4211
+ $attrs: {
4212
+ [x: string]: unknown;
4213
+ };
4214
+ $refs: {
4215
+ [x: string]: unknown;
4216
+ };
4217
+ $slots: Readonly<{
4218
+ [name: string]: import("vue").Slot;
4219
+ }>;
4220
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
4221
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
4222
+ $emit: (event: string, ...args: any[]) => void;
4223
+ $el: any;
4224
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4225
+ maxWidth: {
4226
+ type: import("vue").PropType<number>;
4227
+ default: any;
4228
+ };
4229
+ strokeWidth: {
4230
+ type: import("vue").PropType<number>;
4231
+ default: number;
4232
+ };
4233
+ paddingOffsetPx: {
4234
+ type: import("vue").PropType<number>;
4235
+ default: number;
4236
+ };
4237
+ paddingOffsetPercentage: {
4238
+ type: import("vue").PropType<number>;
4239
+ default: number;
4240
+ };
4241
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
4242
+ maxWidth: number;
4243
+ strokeWidth: number;
4244
+ paddingOffsetPx: number;
4245
+ paddingOffsetPercentage: number;
4246
+ }, {}, string> & {
4247
+ beforeCreate?: (() => void) | (() => void)[];
4248
+ created?: (() => void) | (() => void)[];
4249
+ beforeMount?: (() => void) | (() => void)[];
4250
+ mounted?: (() => void) | (() => void)[];
4251
+ beforeUpdate?: (() => void) | (() => void)[];
4252
+ updated?: (() => void) | (() => void)[];
4253
+ activated?: (() => void) | (() => void)[];
4254
+ deactivated?: (() => void) | (() => void)[];
4255
+ beforeDestroy?: (() => void) | (() => void)[];
4256
+ beforeUnmount?: (() => void) | (() => void)[];
4257
+ destroyed?: (() => void) | (() => void)[];
4258
+ unmounted?: (() => void) | (() => void)[];
4259
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
4260
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
4261
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
4262
+ };
4263
+ $forceUpdate: () => void;
4264
+ $nextTick: typeof import("vue").nextTick;
4265
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
4266
+ } & Readonly<import("vue").ExtractPropTypes<{
4267
+ maxWidth: {
4268
+ type: import("vue").PropType<number>;
4269
+ default: any;
4270
+ };
4271
+ strokeWidth: {
4272
+ type: import("vue").PropType<number>;
4273
+ default: number;
4274
+ };
4275
+ paddingOffsetPx: {
4276
+ type: import("vue").PropType<number>;
4277
+ default: number;
4278
+ };
4279
+ paddingOffsetPercentage: {
4280
+ type: import("vue").PropType<number>;
4281
+ default: number;
4282
+ };
4283
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
4284
+ __isFragment?: never;
4285
+ __isTeleport?: never;
4286
+ __isSuspense?: never;
4287
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4288
+ maxWidth: {
4289
+ type: import("vue").PropType<number>;
4290
+ default: any;
4291
+ };
4292
+ strokeWidth: {
4293
+ type: import("vue").PropType<number>;
4294
+ default: number;
4295
+ };
4296
+ paddingOffsetPx: {
4297
+ type: import("vue").PropType<number>;
4298
+ default: number;
4299
+ };
4300
+ paddingOffsetPercentage: {
4301
+ type: import("vue").PropType<number>;
4302
+ default: number;
4303
+ };
4304
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
4305
+ maxWidth: number;
4306
+ strokeWidth: number;
4307
+ paddingOffsetPx: number;
4308
+ paddingOffsetPercentage: number;
4309
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
4310
+ $slots: {
4311
+ default?(_: {}): any;
4312
+ };
4313
+ });
4314
+ LoaderTypes: () => ({
4315
+ new (...args: any[]): {
4316
+ $: import("vue").ComponentInternalInstance;
4317
+ $data: {};
4318
+ $props: Partial<{
4319
+ maxWidth: number;
4320
+ strokeWidth: number;
4321
+ paddingOffsetPx: number;
4322
+ paddingOffsetPercentage: number;
4323
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
4324
+ maxWidth: {
4325
+ type: import("vue").PropType<number>;
4326
+ default: any;
4327
+ };
4328
+ strokeWidth: {
4329
+ type: import("vue").PropType<number>;
4330
+ default: number;
4331
+ };
4332
+ paddingOffsetPx: {
4333
+ type: import("vue").PropType<number>;
4334
+ default: number;
4335
+ };
4336
+ paddingOffsetPercentage: {
4337
+ type: import("vue").PropType<number>;
4338
+ default: number;
4339
+ };
4340
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "maxWidth" | "strokeWidth" | "paddingOffsetPx" | "paddingOffsetPercentage">;
4341
+ $attrs: {
4342
+ [x: string]: unknown;
4343
+ };
4344
+ $refs: {
4345
+ [x: string]: unknown;
4346
+ };
4347
+ $slots: Readonly<{
4348
+ [name: string]: import("vue").Slot;
4349
+ }>;
4350
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
4351
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
4352
+ $emit: (event: string, ...args: any[]) => void;
4353
+ $el: any;
4354
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4355
+ maxWidth: {
4356
+ type: import("vue").PropType<number>;
4357
+ default: any;
4358
+ };
4359
+ strokeWidth: {
4360
+ type: import("vue").PropType<number>;
4361
+ default: number;
4362
+ };
4363
+ paddingOffsetPx: {
4364
+ type: import("vue").PropType<number>;
4365
+ default: number;
4366
+ };
4367
+ paddingOffsetPercentage: {
4368
+ type: import("vue").PropType<number>;
4369
+ default: number;
4370
+ };
4371
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
4372
+ maxWidth: number;
4373
+ strokeWidth: number;
4374
+ paddingOffsetPx: number;
4375
+ paddingOffsetPercentage: number;
4376
+ }, {}, string> & {
4377
+ beforeCreate?: (() => void) | (() => void)[];
4378
+ created?: (() => void) | (() => void)[];
4379
+ beforeMount?: (() => void) | (() => void)[];
4380
+ mounted?: (() => void) | (() => void)[];
4381
+ beforeUpdate?: (() => void) | (() => void)[];
4382
+ updated?: (() => void) | (() => void)[];
4383
+ activated?: (() => void) | (() => void)[];
4384
+ deactivated?: (() => void) | (() => void)[];
4385
+ beforeDestroy?: (() => void) | (() => void)[];
4386
+ beforeUnmount?: (() => void) | (() => void)[];
4387
+ destroyed?: (() => void) | (() => void)[];
4388
+ unmounted?: (() => void) | (() => void)[];
4389
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
4390
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
4391
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
4392
+ };
4393
+ $forceUpdate: () => void;
4394
+ $nextTick: typeof import("vue").nextTick;
4395
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
4396
+ } & Readonly<import("vue").ExtractPropTypes<{
4397
+ maxWidth: {
4398
+ type: import("vue").PropType<number>;
4399
+ default: any;
4400
+ };
4401
+ strokeWidth: {
4402
+ type: import("vue").PropType<number>;
4403
+ default: number;
4404
+ };
4405
+ paddingOffsetPx: {
4406
+ type: import("vue").PropType<number>;
4407
+ default: number;
4408
+ };
4409
+ paddingOffsetPercentage: {
4410
+ type: import("vue").PropType<number>;
4411
+ default: number;
4412
+ };
4413
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
4414
+ __isFragment?: never;
4415
+ __isTeleport?: never;
4416
+ __isSuspense?: never;
4417
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4418
+ maxWidth: {
4419
+ type: import("vue").PropType<number>;
4420
+ default: any;
4421
+ };
4422
+ strokeWidth: {
4423
+ type: import("vue").PropType<number>;
4424
+ default: number;
4425
+ };
4426
+ paddingOffsetPx: {
4427
+ type: import("vue").PropType<number>;
4428
+ default: number;
4429
+ };
4430
+ paddingOffsetPercentage: {
4431
+ type: import("vue").PropType<number>;
4432
+ default: number;
4433
+ };
4434
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
4435
+ maxWidth: number;
4436
+ strokeWidth: number;
4437
+ paddingOffsetPx: number;
4438
+ paddingOffsetPercentage: number;
4439
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
4440
+ $slots: {
4441
+ default?(_: {}): any;
4442
+ };
4443
+ }))[];
4184
4444
  SkeletonTypes: () => ({
4185
4445
  new (...args: any[]): {
4186
4446
  $: import("vue").ComponentInternalInstance;
@@ -5321,12 +5581,7 @@ declare const _default: {
5321
5581
  "onUpdate:search"?: (query: string) => any;
5322
5582
  onOnScroll?: (event: Event) => any;
5323
5583
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
5324
- onSaveRow?: (args_0: {
5325
- value: unknown;
5326
- confirm: () => void;
5327
- rowIndex: number;
5328
- cellIndex: number;
5329
- }) => any;
5584
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
5330
5585
  onLoadMore?: () => any;
5331
5586
  onOnClearSearch?: () => any;
5332
5587
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -5344,12 +5599,7 @@ declare const _default: {
5344
5599
  }>;
5345
5600
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5346
5601
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5347
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
5348
- value: unknown;
5349
- confirm: () => void;
5350
- rowIndex: number;
5351
- cellIndex: number;
5352
- }) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
5602
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
5353
5603
  $el: any;
5354
5604
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5355
5605
  sort: {
@@ -5465,12 +5715,7 @@ declare const _default: {
5465
5715
  "onUpdate:search"?: (query: string) => any;
5466
5716
  onOnScroll?: (event: Event) => any;
5467
5717
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
5468
- onSaveRow?: (args_0: {
5469
- value: unknown;
5470
- confirm: () => void;
5471
- rowIndex: number;
5472
- cellIndex: number;
5473
- }) => any;
5718
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
5474
5719
  onLoadMore?: () => any;
5475
5720
  onOnClearSearch?: () => any;
5476
5721
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -5484,12 +5729,7 @@ declare const _default: {
5484
5729
  "update:selection": (selection: unknown[]) => void;
5485
5730
  onScroll: (event: Event) => void;
5486
5731
  onClearSearch: () => void;
5487
- saveRow: (args_0: {
5488
- value: unknown;
5489
- confirm: () => void;
5490
- rowIndex: number;
5491
- cellIndex: number;
5492
- }) => void;
5732
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
5493
5733
  loadMore: () => void;
5494
5734
  selectAll: (value: boolean) => void;
5495
5735
  selectRow: (value: boolean) => void;
@@ -5654,12 +5894,7 @@ declare const _default: {
5654
5894
  "onUpdate:search"?: (query: string) => any;
5655
5895
  onOnScroll?: (event: Event) => any;
5656
5896
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
5657
- onSaveRow?: (args_0: {
5658
- value: unknown;
5659
- confirm: () => void;
5660
- rowIndex: number;
5661
- cellIndex: number;
5662
- }) => any;
5897
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
5663
5898
  onLoadMore?: () => any;
5664
5899
  onOnClearSearch?: () => any;
5665
5900
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -5785,12 +6020,7 @@ declare const _default: {
5785
6020
  "onUpdate:search"?: (query: string) => any;
5786
6021
  onOnScroll?: (event: Event) => any;
5787
6022
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
5788
- onSaveRow?: (args_0: {
5789
- value: unknown;
5790
- confirm: () => void;
5791
- rowIndex: number;
5792
- cellIndex: number;
5793
- }) => any;
6023
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
5794
6024
  onLoadMore?: () => any;
5795
6025
  onOnClearSearch?: () => any;
5796
6026
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -5804,12 +6034,7 @@ declare const _default: {
5804
6034
  "update:selection": (selection: unknown[]) => void;
5805
6035
  onScroll: (event: Event) => void;
5806
6036
  onClearSearch: () => void;
5807
- saveRow: (args_0: {
5808
- value: unknown;
5809
- confirm: () => void;
5810
- rowIndex: number;
5811
- cellIndex: number;
5812
- }) => void;
6037
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
5813
6038
  loadMore: () => void;
5814
6039
  selectAll: (value: boolean) => void;
5815
6040
  selectRow: (value: boolean) => void;
@@ -6106,12 +6331,7 @@ declare const _default: {
6106
6331
  "onUpdate:search"?: (query: string) => any;
6107
6332
  onOnScroll?: (event: Event) => any;
6108
6333
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6109
- onSaveRow?: (args_0: {
6110
- value: unknown;
6111
- confirm: () => void;
6112
- rowIndex: number;
6113
- cellIndex: number;
6114
- }) => any;
6334
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6115
6335
  onLoadMore?: () => any;
6116
6336
  onOnClearSearch?: () => any;
6117
6337
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -6129,12 +6349,7 @@ declare const _default: {
6129
6349
  }>;
6130
6350
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6131
6351
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6132
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
6133
- value: unknown;
6134
- confirm: () => void;
6135
- rowIndex: number;
6136
- cellIndex: number;
6137
- }) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
6352
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
6138
6353
  $el: any;
6139
6354
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6140
6355
  sort: {
@@ -6250,12 +6465,7 @@ declare const _default: {
6250
6465
  "onUpdate:search"?: (query: string) => any;
6251
6466
  onOnScroll?: (event: Event) => any;
6252
6467
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6253
- onSaveRow?: (args_0: {
6254
- value: unknown;
6255
- confirm: () => void;
6256
- rowIndex: number;
6257
- cellIndex: number;
6258
- }) => any;
6468
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6259
6469
  onLoadMore?: () => any;
6260
6470
  onOnClearSearch?: () => any;
6261
6471
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -6269,12 +6479,7 @@ declare const _default: {
6269
6479
  "update:selection": (selection: unknown[]) => void;
6270
6480
  onScroll: (event: Event) => void;
6271
6481
  onClearSearch: () => void;
6272
- saveRow: (args_0: {
6273
- value: unknown;
6274
- confirm: () => void;
6275
- rowIndex: number;
6276
- cellIndex: number;
6277
- }) => void;
6482
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
6278
6483
  loadMore: () => void;
6279
6484
  selectAll: (value: boolean) => void;
6280
6485
  selectRow: (value: boolean) => void;
@@ -6439,12 +6644,7 @@ declare const _default: {
6439
6644
  "onUpdate:search"?: (query: string) => any;
6440
6645
  onOnScroll?: (event: Event) => any;
6441
6646
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6442
- onSaveRow?: (args_0: {
6443
- value: unknown;
6444
- confirm: () => void;
6445
- rowIndex: number;
6446
- cellIndex: number;
6447
- }) => any;
6647
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6448
6648
  onLoadMore?: () => any;
6449
6649
  onOnClearSearch?: () => any;
6450
6650
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -6570,12 +6770,7 @@ declare const _default: {
6570
6770
  "onUpdate:search"?: (query: string) => any;
6571
6771
  onOnScroll?: (event: Event) => any;
6572
6772
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6573
- onSaveRow?: (args_0: {
6574
- value: unknown;
6575
- confirm: () => void;
6576
- rowIndex: number;
6577
- cellIndex: number;
6578
- }) => any;
6773
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6579
6774
  onLoadMore?: () => any;
6580
6775
  onOnClearSearch?: () => any;
6581
6776
  "onUpdate:selection"?: (selection: unknown[]) => any;
@@ -6589,12 +6784,7 @@ declare const _default: {
6589
6784
  "update:selection": (selection: unknown[]) => void;
6590
6785
  onScroll: (event: Event) => void;
6591
6786
  onClearSearch: () => void;
6592
- saveRow: (args_0: {
6593
- value: unknown;
6594
- confirm: () => void;
6595
- rowIndex: number;
6596
- cellIndex: number;
6597
- }) => void;
6787
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
6598
6788
  loadMore: () => void;
6599
6789
  selectAll: (value: boolean) => void;
6600
6790
  selectRow: (value: boolean) => void;
@@ -6845,6 +7035,9 @@ declare const _default: {
6845
7035
  }>> & {
6846
7036
  "onUpdate:search"?: (query: string) => any;
6847
7037
  onOnScroll?: (scrollTop: number) => any;
7038
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7039
+ tableIndex: number;
7040
+ }) => any;
6848
7041
  onOnClearSearch?: () => any;
6849
7042
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
6850
7043
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
@@ -6859,7 +7052,9 @@ declare const _default: {
6859
7052
  }>;
6860
7053
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6861
7054
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6862
- $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
7055
+ $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7056
+ tableIndex: number;
7057
+ }) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
6863
7058
  $el: any;
6864
7059
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6865
7060
  search: {
@@ -6939,6 +7134,9 @@ declare const _default: {
6939
7134
  }>> & {
6940
7135
  "onUpdate:search"?: (query: string) => any;
6941
7136
  onOnScroll?: (scrollTop: number) => any;
7137
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7138
+ tableIndex: number;
7139
+ }) => any;
6942
7140
  onOnClearSearch?: () => any;
6943
7141
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
6944
7142
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -6946,6 +7144,9 @@ declare const _default: {
6946
7144
  onScroll: (scrollTop: number) => void;
6947
7145
  onClearSearch: () => void;
6948
7146
  clickRow: (rowIndex: number, tableIndex: number) => void;
7147
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7148
+ tableIndex: number;
7149
+ }) => void;
6949
7150
  }, string, {
6950
7151
  search: string;
6951
7152
  testId: string;
@@ -7063,6 +7264,9 @@ declare const _default: {
7063
7264
  }>> & {
7064
7265
  "onUpdate:search"?: (query: string) => any;
7065
7266
  onOnScroll?: (scrollTop: number) => any;
7267
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7268
+ tableIndex: number;
7269
+ }) => any;
7066
7270
  onOnClearSearch?: () => any;
7067
7271
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7068
7272
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -7147,6 +7351,9 @@ declare const _default: {
7147
7351
  }>> & {
7148
7352
  "onUpdate:search"?: (query: string) => any;
7149
7353
  onOnScroll?: (scrollTop: number) => any;
7354
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7355
+ tableIndex: number;
7356
+ }) => any;
7150
7357
  onOnClearSearch?: () => any;
7151
7358
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7152
7359
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -7154,6 +7361,9 @@ declare const _default: {
7154
7361
  onScroll: (scrollTop: number) => void;
7155
7362
  onClearSearch: () => void;
7156
7363
  clickRow: (rowIndex: number, tableIndex: number) => void;
7364
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7365
+ tableIndex: number;
7366
+ }) => void;
7157
7367
  }, string, {
7158
7368
  search: string;
7159
7369
  testId: string;
@@ -7296,6 +7506,9 @@ declare const _default: {
7296
7506
  }>> & {
7297
7507
  "onUpdate:search"?: (query: string) => any;
7298
7508
  onOnScroll?: (scrollTop: number) => any;
7509
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7510
+ tableIndex: number;
7511
+ }) => any;
7299
7512
  onOnClearSearch?: () => any;
7300
7513
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7301
7514
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
@@ -7310,7 +7523,9 @@ declare const _default: {
7310
7523
  }>;
7311
7524
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7312
7525
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7313
- $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
7526
+ $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7527
+ tableIndex: number;
7528
+ }) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
7314
7529
  $el: any;
7315
7530
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
7316
7531
  search: {
@@ -7390,6 +7605,9 @@ declare const _default: {
7390
7605
  }>> & {
7391
7606
  "onUpdate:search"?: (query: string) => any;
7392
7607
  onOnScroll?: (scrollTop: number) => any;
7608
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7609
+ tableIndex: number;
7610
+ }) => any;
7393
7611
  onOnClearSearch?: () => any;
7394
7612
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7395
7613
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -7397,6 +7615,9 @@ declare const _default: {
7397
7615
  onScroll: (scrollTop: number) => void;
7398
7616
  onClearSearch: () => void;
7399
7617
  clickRow: (rowIndex: number, tableIndex: number) => void;
7618
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7619
+ tableIndex: number;
7620
+ }) => void;
7400
7621
  }, string, {
7401
7622
  search: string;
7402
7623
  testId: string;
@@ -7514,6 +7735,9 @@ declare const _default: {
7514
7735
  }>> & {
7515
7736
  "onUpdate:search"?: (query: string) => any;
7516
7737
  onOnScroll?: (scrollTop: number) => any;
7738
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7739
+ tableIndex: number;
7740
+ }) => any;
7517
7741
  onOnClearSearch?: () => any;
7518
7742
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7519
7743
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -7598,6 +7822,9 @@ declare const _default: {
7598
7822
  }>> & {
7599
7823
  "onUpdate:search"?: (query: string) => any;
7600
7824
  onOnScroll?: (scrollTop: number) => any;
7825
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7826
+ tableIndex: number;
7827
+ }) => any;
7601
7828
  onOnClearSearch?: () => any;
7602
7829
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7603
7830
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -7605,6 +7832,9 @@ declare const _default: {
7605
7832
  onScroll: (scrollTop: number) => void;
7606
7833
  onClearSearch: () => void;
7607
7834
  clickRow: (rowIndex: number, tableIndex: number) => void;
7835
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7836
+ tableIndex: number;
7837
+ }) => void;
7608
7838
  }, string, {
7609
7839
  search: string;
7610
7840
  testId: string;
@@ -7731,12 +7961,7 @@ declare const _default: {
7731
7961
  }>> & {
7732
7962
  onOnScroll?: (event: Event) => any;
7733
7963
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
7734
- onSaveRow?: (args_0: {
7735
- value: unknown;
7736
- confirm: () => void;
7737
- rowIndex: number;
7738
- cellIndex: number;
7739
- }) => any;
7964
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
7740
7965
  onLoadMore?: () => any;
7741
7966
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
7742
7967
  $attrs: {
@@ -7750,12 +7975,7 @@ declare const _default: {
7750
7975
  }>;
7751
7976
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7752
7977
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7753
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
7754
- value: unknown;
7755
- confirm: () => void;
7756
- rowIndex: number;
7757
- cellIndex: number;
7758
- }) => void) & ((event: "loadMore") => void);
7978
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void);
7759
7979
  $el: any;
7760
7980
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
7761
7981
  sort: {
@@ -7825,22 +8045,12 @@ declare const _default: {
7825
8045
  }>> & {
7826
8046
  onOnScroll?: (event: Event) => any;
7827
8047
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
7828
- onSaveRow?: (args_0: {
7829
- value: unknown;
7830
- confirm: () => void;
7831
- rowIndex: number;
7832
- cellIndex: number;
7833
- }) => any;
8048
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
7834
8049
  onLoadMore?: () => any;
7835
8050
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7836
8051
  "update:sort": (newSort: tableV3.Sort) => void;
7837
8052
  onScroll: (event: Event) => void;
7838
- saveRow: (args_0: {
7839
- value: unknown;
7840
- confirm: () => void;
7841
- rowIndex: number;
7842
- cellIndex: number;
7843
- }) => void;
8053
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
7844
8054
  loadMore: () => void;
7845
8055
  }, string, {
7846
8056
  testId: string;
@@ -7943,12 +8153,7 @@ declare const _default: {
7943
8153
  }>> & {
7944
8154
  onOnScroll?: (event: Event) => any;
7945
8155
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
7946
- onSaveRow?: (args_0: {
7947
- value: unknown;
7948
- confirm: () => void;
7949
- rowIndex: number;
7950
- cellIndex: number;
7951
- }) => any;
8156
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
7952
8157
  onLoadMore?: () => any;
7953
8158
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
7954
8159
  __isFragment?: never;
@@ -8022,22 +8227,12 @@ declare const _default: {
8022
8227
  }>> & {
8023
8228
  onOnScroll?: (event: Event) => any;
8024
8229
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8025
- onSaveRow?: (args_0: {
8026
- value: unknown;
8027
- confirm: () => void;
8028
- rowIndex: number;
8029
- cellIndex: number;
8030
- }) => any;
8230
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8031
8231
  onLoadMore?: () => any;
8032
8232
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8033
8233
  "update:sort": (newSort: tableV3.Sort) => void;
8034
8234
  onScroll: (event: Event) => void;
8035
- saveRow: (args_0: {
8036
- value: unknown;
8037
- confirm: () => void;
8038
- rowIndex: number;
8039
- cellIndex: number;
8040
- }) => void;
8235
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
8041
8236
  loadMore: () => void;
8042
8237
  }, string, {
8043
8238
  testId: string;
@@ -8159,12 +8354,7 @@ declare const _default: {
8159
8354
  }>> & {
8160
8355
  onOnScroll?: (event: Event) => any;
8161
8356
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8162
- onSaveRow?: (args_0: {
8163
- value: unknown;
8164
- confirm: () => void;
8165
- rowIndex: number;
8166
- cellIndex: number;
8167
- }) => any;
8357
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8168
8358
  onLoadMore?: () => any;
8169
8359
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
8170
8360
  $attrs: {
@@ -8178,12 +8368,7 @@ declare const _default: {
8178
8368
  }>;
8179
8369
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
8180
8370
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
8181
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
8182
- value: unknown;
8183
- confirm: () => void;
8184
- rowIndex: number;
8185
- cellIndex: number;
8186
- }) => void) & ((event: "loadMore") => void);
8371
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void);
8187
8372
  $el: any;
8188
8373
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
8189
8374
  sort: {
@@ -8253,22 +8438,12 @@ declare const _default: {
8253
8438
  }>> & {
8254
8439
  onOnScroll?: (event: Event) => any;
8255
8440
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8256
- onSaveRow?: (args_0: {
8257
- value: unknown;
8258
- confirm: () => void;
8259
- rowIndex: number;
8260
- cellIndex: number;
8261
- }) => any;
8441
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8262
8442
  onLoadMore?: () => any;
8263
8443
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8264
8444
  "update:sort": (newSort: tableV3.Sort) => void;
8265
8445
  onScroll: (event: Event) => void;
8266
- saveRow: (args_0: {
8267
- value: unknown;
8268
- confirm: () => void;
8269
- rowIndex: number;
8270
- cellIndex: number;
8271
- }) => void;
8446
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
8272
8447
  loadMore: () => void;
8273
8448
  }, string, {
8274
8449
  testId: string;
@@ -8371,12 +8546,7 @@ declare const _default: {
8371
8546
  }>> & {
8372
8547
  onOnScroll?: (event: Event) => any;
8373
8548
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8374
- onSaveRow?: (args_0: {
8375
- value: unknown;
8376
- confirm: () => void;
8377
- rowIndex: number;
8378
- cellIndex: number;
8379
- }) => any;
8549
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8380
8550
  onLoadMore?: () => any;
8381
8551
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
8382
8552
  __isFragment?: never;
@@ -8450,22 +8620,12 @@ declare const _default: {
8450
8620
  }>> & {
8451
8621
  onOnScroll?: (event: Event) => any;
8452
8622
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8453
- onSaveRow?: (args_0: {
8454
- value: unknown;
8455
- confirm: () => void;
8456
- rowIndex: number;
8457
- cellIndex: number;
8458
- }) => any;
8623
+ onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8459
8624
  onLoadMore?: () => any;
8460
8625
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8461
8626
  "update:sort": (newSort: tableV3.Sort) => void;
8462
8627
  onScroll: (event: Event) => void;
8463
- saveRow: (args_0: {
8464
- value: unknown;
8465
- confirm: () => void;
8466
- rowIndex: number;
8467
- cellIndex: number;
8468
- }) => void;
8628
+ saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
8469
8629
  loadMore: () => void;
8470
8630
  }, string, {
8471
8631
  testId: string;
@@ -17033,6 +17193,7 @@ declare const _default: {
17033
17193
  $slots: {
17034
17194
  image?(_: {}): any;
17035
17195
  "icon-start"?(_: {}): any;
17196
+ "displayed-value"?(_: {}): any;
17036
17197
  "end-icon"?(_: {}): any;
17037
17198
  };
17038
17199
  });
@@ -18339,6 +18500,7 @@ declare const _default: {
18339
18500
  $slots: {
18340
18501
  image?(_: {}): any;
18341
18502
  "icon-start"?(_: {}): any;
18503
+ "displayed-value"?(_: {}): any;
18342
18504
  "end-icon"?(_: {}): any;
18343
18505
  };
18344
18506
  })) | ({