@ironsource/shared-ui 2.1.11-rc.47 → 2.1.11-rc.49
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.
- package/Chart.vue_vue_type_style_index_0_scoped_277fde76_lang.css +1 -0
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_e43ac1c9_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8f96cf5a_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_26488faf_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_75002075_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_b883d1fa_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +5 -0
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +69 -66
- package/components/chart/index.d.ts +20 -1
- package/components/dropdown/common/Dropdown.common.js +36 -34
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +55 -40
- package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +20 -0
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +136 -97
- package/components/dropdown/v4/DropdownV4.vue.d.ts +2 -0
- package/components/dropdown/v4/DropdownV4.vue.js +2 -2
- package/components/dropdown/v4/DropdownV4.vue2.js +7 -7
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +86 -86
- package/components/dropdown/v4/index.d.ts +43 -1
- package/components/table/common/Table.common.d.ts +1 -1
- package/components/table/common/Table.common.js +78 -70
- package/components/table/common/consts.d.ts +4 -0
- package/components/table/common/consts.js +7 -0
- package/components/table/v4/DataGrid.vue.d.ts +10 -5
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +173 -171
- package/components/table/v4/index.d.ts +39 -20
- package/index.d.ts +164 -42
- package/index.js +1 -1
- package/package.json +1 -1
- package/testids/index.d.ts +1 -0
- package/testids/index.js +13 -13
- package/Chart.vue_vue_type_style_index_0_scoped_04b9d6b3_lang.css +0 -1
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_039dd922_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_2aee12ad_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_2406226b_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_6466948d_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_bdfb0aef_lang.css +0 -1
|
@@ -29,11 +29,12 @@ declare const DataGridTypes: () => (({
|
|
|
29
29
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
30
30
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
31
31
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
32
|
-
isSelectionSticky: boolean;
|
|
33
32
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
34
33
|
zIndexBase: number;
|
|
35
34
|
rowCustomClassKey: string;
|
|
36
35
|
rowDataKey: string;
|
|
36
|
+
isSelectionSticky: boolean;
|
|
37
|
+
isSelectionBordered: boolean;
|
|
37
38
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
38
39
|
sort: {
|
|
39
40
|
type: import("vue").PropType<import("../common/Table.types").Sort>;
|
|
@@ -131,10 +132,6 @@ declare const DataGridTypes: () => (({
|
|
|
131
132
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
132
133
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
133
134
|
};
|
|
134
|
-
isSelectionSticky: {
|
|
135
|
-
type: import("vue").PropType<boolean>;
|
|
136
|
-
default: boolean;
|
|
137
|
-
};
|
|
138
135
|
emptyStateVariant: {
|
|
139
136
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
140
137
|
default: any;
|
|
@@ -151,6 +148,14 @@ declare const DataGridTypes: () => (({
|
|
|
151
148
|
type: import("vue").PropType<string>;
|
|
152
149
|
default: string;
|
|
153
150
|
};
|
|
151
|
+
isSelectionSticky: {
|
|
152
|
+
type: import("vue").PropType<boolean>;
|
|
153
|
+
default: boolean;
|
|
154
|
+
};
|
|
155
|
+
isSelectionBordered: {
|
|
156
|
+
type: import("vue").PropType<boolean>;
|
|
157
|
+
default: boolean;
|
|
158
|
+
};
|
|
154
159
|
}>> & {
|
|
155
160
|
onSelectAll?: (value: boolean) => any;
|
|
156
161
|
onLoadMore?: () => any;
|
|
@@ -162,7 +167,7 @@ declare const DataGridTypes: () => (({
|
|
|
162
167
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
163
168
|
onSelectRow?: (value: boolean) => any;
|
|
164
169
|
onClickRow?: (rowIndex: number) => any;
|
|
165
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "
|
|
170
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
166
171
|
$attrs: {
|
|
167
172
|
[x: string]: unknown;
|
|
168
173
|
};
|
|
@@ -273,10 +278,6 @@ declare const DataGridTypes: () => (({
|
|
|
273
278
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
274
279
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
275
280
|
};
|
|
276
|
-
isSelectionSticky: {
|
|
277
|
-
type: import("vue").PropType<boolean>;
|
|
278
|
-
default: boolean;
|
|
279
|
-
};
|
|
280
281
|
emptyStateVariant: {
|
|
281
282
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
282
283
|
default: any;
|
|
@@ -293,6 +294,14 @@ declare const DataGridTypes: () => (({
|
|
|
293
294
|
type: import("vue").PropType<string>;
|
|
294
295
|
default: string;
|
|
295
296
|
};
|
|
297
|
+
isSelectionSticky: {
|
|
298
|
+
type: import("vue").PropType<boolean>;
|
|
299
|
+
default: boolean;
|
|
300
|
+
};
|
|
301
|
+
isSelectionBordered: {
|
|
302
|
+
type: import("vue").PropType<boolean>;
|
|
303
|
+
default: boolean;
|
|
304
|
+
};
|
|
296
305
|
}>> & {
|
|
297
306
|
onSelectAll?: (value: boolean) => any;
|
|
298
307
|
onLoadMore?: () => any;
|
|
@@ -340,11 +349,12 @@ declare const DataGridTypes: () => (({
|
|
|
340
349
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
341
350
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
342
351
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
343
|
-
isSelectionSticky: boolean;
|
|
344
352
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
345
353
|
zIndexBase: number;
|
|
346
354
|
rowCustomClassKey: string;
|
|
347
355
|
rowDataKey: string;
|
|
356
|
+
isSelectionSticky: boolean;
|
|
357
|
+
isSelectionBordered: boolean;
|
|
348
358
|
}, {}, string> & {
|
|
349
359
|
beforeCreate?: (() => void) | (() => void)[];
|
|
350
360
|
created?: (() => void) | (() => void)[];
|
|
@@ -462,10 +472,6 @@ declare const DataGridTypes: () => (({
|
|
|
462
472
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
463
473
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
464
474
|
};
|
|
465
|
-
isSelectionSticky: {
|
|
466
|
-
type: import("vue").PropType<boolean>;
|
|
467
|
-
default: boolean;
|
|
468
|
-
};
|
|
469
475
|
emptyStateVariant: {
|
|
470
476
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
471
477
|
default: any;
|
|
@@ -482,6 +488,14 @@ declare const DataGridTypes: () => (({
|
|
|
482
488
|
type: import("vue").PropType<string>;
|
|
483
489
|
default: string;
|
|
484
490
|
};
|
|
491
|
+
isSelectionSticky: {
|
|
492
|
+
type: import("vue").PropType<boolean>;
|
|
493
|
+
default: boolean;
|
|
494
|
+
};
|
|
495
|
+
isSelectionBordered: {
|
|
496
|
+
type: import("vue").PropType<boolean>;
|
|
497
|
+
default: boolean;
|
|
498
|
+
};
|
|
485
499
|
}>> & {
|
|
486
500
|
onSelectAll?: (value: boolean) => any;
|
|
487
501
|
onLoadMore?: () => any;
|
|
@@ -596,10 +610,6 @@ declare const DataGridTypes: () => (({
|
|
|
596
610
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
597
611
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
598
612
|
};
|
|
599
|
-
isSelectionSticky: {
|
|
600
|
-
type: import("vue").PropType<boolean>;
|
|
601
|
-
default: boolean;
|
|
602
|
-
};
|
|
603
613
|
emptyStateVariant: {
|
|
604
614
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
605
615
|
default: any;
|
|
@@ -616,6 +626,14 @@ declare const DataGridTypes: () => (({
|
|
|
616
626
|
type: import("vue").PropType<string>;
|
|
617
627
|
default: string;
|
|
618
628
|
};
|
|
629
|
+
isSelectionSticky: {
|
|
630
|
+
type: import("vue").PropType<boolean>;
|
|
631
|
+
default: boolean;
|
|
632
|
+
};
|
|
633
|
+
isSelectionBordered: {
|
|
634
|
+
type: import("vue").PropType<boolean>;
|
|
635
|
+
default: boolean;
|
|
636
|
+
};
|
|
619
637
|
}>> & {
|
|
620
638
|
onSelectAll?: (value: boolean) => any;
|
|
621
639
|
onLoadMore?: () => any;
|
|
@@ -663,11 +681,12 @@ declare const DataGridTypes: () => (({
|
|
|
663
681
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
664
682
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
665
683
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
666
|
-
isSelectionSticky: boolean;
|
|
667
684
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
668
685
|
zIndexBase: number;
|
|
669
686
|
rowCustomClassKey: string;
|
|
670
687
|
rowDataKey: string;
|
|
688
|
+
isSelectionSticky: boolean;
|
|
689
|
+
isSelectionBordered: boolean;
|
|
671
690
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
672
691
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
673
692
|
column: import("../common/Table.types").Column;
|