@ironsource/shared-ui 2.1.12-rc.2 → 2.1.12-rc.20
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/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_0123c361_lang.css +1 -0
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_0198fee8_lang.css +1 -0
- package/ButtonV4.vue_vue_type_style_index_0_scoped_d7948c77_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_64205c96_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_da34b108_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_79dc2883_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_fd9e4ea2_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_903fc6ae_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_e53c6287_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8d5521da_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_86ea5d2a_lang.css +1 -0
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_a849128a_lang.css +1 -0
- package/DialogV4.vue_vue_type_style_index_0_scoped_eb226e31_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_08cb822e_lang.css +1 -0
- package/FieldLabel.vue_vue_type_style_index_0_scoped_921d4087_lang.css +1 -0
- package/FormRow.vue_vue_type_style_index_0_scoped_2d5a3057_lang.css +1 -0
- package/IconButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_99e51ecc_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_9cdf3a94_lang.css +1 -0
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_01f78cd7_lang.css +1 -0
- package/SubHeader.vue_vue_type_style_index_0_scoped_e6008b6c_lang.css +1 -0
- package/Tooltip.vue_vue_type_style_index_0_scoped_20630944_lang.css +1 -0
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_3b15c693_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_0_scoped_bcb40ed4_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +1 -0
- package/components/appIcon/index.d.ts +3 -3
- package/components/banner/Banner.vue.d.ts +3 -3
- package/components/banner/index.d.ts +7 -7
- package/components/button/common/consts.d.ts +1 -0
- package/components/button/v3/Button.vue.d.ts +3 -3
- package/components/button/v3/ButtonBase.vue.d.ts +3 -3
- package/components/button/v3/IconButton.vue.d.ts +3 -3
- package/components/button/v3/index.d.ts +14 -14
- package/components/button/v4/ButtonV4.vue.d.ts +4 -3
- package/components/button/v4/ButtonV4.vue.js +3 -3
- package/components/button/v4/ButtonV4.vue2.js +1 -1
- package/components/chart/Chart.vue.d.ts +149 -38
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +145 -297
- package/components/chart/ChartHeader.vue.d.ts +45 -11
- package/components/chart/ChartHeader.vue.js +3 -3
- package/components/chart/ChartHeader.vue2.js +64 -53
- package/components/chart/ChartHeaderTrend.vue.d.ts +48 -0
- package/components/chart/ChartHeaderTrend.vue.js +7 -0
- package/components/chart/ChartHeaderTrend.vue2.js +95 -0
- package/components/chart/ChartLegend.vue.d.ts +24 -0
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +82 -63
- package/components/chart/ChartPlane.vue.d.ts +221 -0
- package/components/chart/ChartPlane.vue.js +7 -0
- package/components/chart/ChartPlane.vue2.js +368 -0
- package/components/chart/ChartStoryArgs.d.ts +179 -0
- package/components/chart/ChartTooltip.vue.d.ts +22 -2
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +50 -55
- package/components/chart/LegendSorting.vue.d.ts +37 -0
- package/components/chart/LegendSorting.vue.js +45 -0
- package/components/chart/LegendSorting.vue2.js +4 -0
- package/components/chart/SettingsHeader.vue.d.ts +1 -0
- package/components/chart/SettingsHeader.vue.js +3 -3
- package/components/chart/SettingsHeader.vue2.js +17 -16
- package/components/chart/SubHeader.vue.d.ts +52 -0
- package/components/chart/SubHeader.vue.js +7 -0
- package/components/chart/SubHeader.vue2.js +61 -0
- package/components/chart/TooltipHeader.vue.d.ts +50 -0
- package/components/chart/TooltipHeader.vue.js +7 -0
- package/components/chart/TooltipHeader.vue2.js +69 -0
- package/components/chart/colorPalette.d.ts +4 -0
- package/components/chart/colorPalette.js +54 -0
- package/components/chart/composables/useChartHeight.d.ts +5 -0
- package/components/chart/composables/useChartHeight.js +24 -0
- package/components/chart/composables/useColorsMap.d.ts +10 -0
- package/components/chart/composables/useColorsMap.js +46 -0
- package/components/chart/composables/useTooltipPosition.d.ts +1 -1
- package/components/chart/composables/useTooltipPosition.js +11 -15
- package/components/chart/consts.d.ts +29 -7
- package/components/chart/consts.js +41 -21
- package/components/chart/index.d.ts +515 -118
- package/components/chart/mockData.d.ts +44 -5
- package/components/chart/types.d.ts +37 -6
- package/components/chart/types.js +5 -2
- package/components/chart/utils/formatNumber.d.ts +0 -1
- package/components/chart/utils/highlightUtils.d.ts +3 -0
- package/components/chart/utils/highlightUtils.js +18 -0
- package/components/chart/utils/utils.d.ts +3 -2
- package/components/chart/utils/utils.js +23 -8
- package/components/checkbox/v3/Checkbox.vue.d.ts +3 -3
- package/components/checkbox/v3/index.d.ts +7 -7
- package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
- package/components/dateRange/v4/DateRangeV4.vue2.js +1 -1
- package/components/dialog/v4/DialogV4.vue.d.ts +4 -3
- package/components/dialog/v4/DialogV4.vue.js +4 -4
- package/components/dialog/v4/DialogV4.vue2.js +1 -1
- package/components/dialog/v4/index.d.ts +7 -7
- package/components/dropdown/common/Dropdown.common.js +92 -85
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +76 -76
- package/components/dropdown/v4/DropdownV4.vue.d.ts +8 -0
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +105 -95
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.d.ts +11 -0
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +4 -4
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +12 -10
- package/components/dropdown/v4/OptionV4.vue.d.ts +8 -0
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +91 -69
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +68 -73
- package/components/dropdown/v4/index.d.ts +64 -2
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
- package/components/emptyState/v4/index.d.ts +7 -7
- package/components/forms/FormRow.vue.d.ts +9 -2
- package/components/forms/FormRow.vue.js +3 -3
- package/components/forms/FormRow.vue2.js +25 -14
- package/components/forms/index.d.ts +25 -5
- package/components/search/v3/index.d.ts +3 -3
- package/components/shared/FieldLabel.vue.d.ts +19 -7
- package/components/shared/FieldLabel.vue.js +3 -3
- package/components/shared/FieldLabel.vue2.js +50 -37
- package/components/table/v4/DataGrid.vue.d.ts +4 -3
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +151 -142
- package/components/table/v4/MultipleDataGrid.vue.d.ts +3 -3
- package/components/table/v4/index.d.ts +15 -14
- package/components/tabs/v3/Tabs.vue.d.ts +3 -3
- package/components/tabs/v3/index.d.ts +7 -7
- package/components/tooltip/common/Tooltip.types.d.ts +1 -0
- package/components/tooltip/v3/Tooltip.vue.d.ts +4 -4
- package/components/tooltip/v3/Tooltip.vue.js +2 -2
- package/components/tooltip/v3/Tooltip.vue2.js +1 -1
- package/components/tooltip/v3/index.d.ts +7 -7
- package/components/tooltip/v4/TooltipV4.vue.d.ts +4 -4
- package/components/tooltip/v4/TooltipV4.vue.js +2 -2
- package/components/tooltip/v4/TooltipV4.vue2.js +1 -1
- package/components/tooltip/v4/index.d.ts +7 -7
- package/components/typography/Text.vue.d.ts +3 -3
- package/components/typography/index.d.ts +7 -7
- package/composables/useFormValidation.d.ts +1 -0
- package/composables/useFormValidation.js +32 -27
- package/composables/useFullPageHeight.d.ts +10 -0
- package/composables/useFullPageHeight.js +15 -0
- package/consts/common.d.ts +1 -0
- package/consts/common.js +4 -0
- package/consts/regex.d.ts +1 -0
- package/consts/regex.js +2 -1
- package/index.d.ts +211 -81
- package/index.js +106 -100
- package/package.json +1 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +10 -10
- package/utils/formatNumbers.d.ts +1 -1
- package/utils/formatNumbers.js +19 -6
- package/utils/index.js +7 -0
- package/utils/text.d.ts +3 -0
- package/utils/text.js +24 -5
- package/utils/totals.d.ts +5 -0
- package/utils/totals.js +9 -0
- package/utils/utils.d.ts +1 -0
- package/utils/utils.js +4 -0
- package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_604dfc6f_lang.css +0 -1
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css +0 -1
- package/ButtonV4.vue_vue_type_style_index_0_scoped_bdfce3aa_lang.css +0 -1
- package/Chart.vue_vue_type_style_index_0_scoped_a641383a_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_b8213498_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_4fe1c7d1_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_6744325c_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_3a2aeea3_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_020072b0_lang.css +0 -1
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_8a2714eb_lang.css +0 -1
- package/DialogV4.vue_vue_type_style_index_0_scoped_37da643b_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_d154c5da_lang.css +0 -1
- package/FieldLabel.vue_vue_type_style_index_0_scoped_96ee1c98_lang.css +0 -1
- package/FormRow.vue_vue_type_style_index_0_scoped_fc3897fd_lang.css +0 -1
- package/IconButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_59fb505a_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_1e8837dc_lang.css +0 -1
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_9b6cd9d9_lang.css +0 -1
- package/Tooltip.vue_vue_type_style_index_0_scoped_9020a179_lang.css +0 -1
- package/TooltipV4.vue_vue_type_style_index_0_scoped_66eab856_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_b883d1fa_lang.css +0 -1
- package/components/chart/utils/formatNumber.js +0 -11
|
@@ -1090,6 +1090,7 @@ declare const DropdownTypes: () => (({
|
|
|
1090
1090
|
nameKey: string;
|
|
1091
1091
|
imageKey: string;
|
|
1092
1092
|
iconKey: string;
|
|
1093
|
+
warningKey: string;
|
|
1093
1094
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1094
1095
|
endIconKey: string;
|
|
1095
1096
|
endTextIconKey: string;
|
|
@@ -1152,6 +1153,10 @@ declare const DropdownTypes: () => (({
|
|
|
1152
1153
|
type: import("vue").PropType<string>;
|
|
1153
1154
|
default: any;
|
|
1154
1155
|
};
|
|
1156
|
+
warningKey: {
|
|
1157
|
+
type: import("vue").PropType<string>;
|
|
1158
|
+
default: any;
|
|
1159
|
+
};
|
|
1155
1160
|
iconType: {
|
|
1156
1161
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1157
1162
|
default: string;
|
|
@@ -1193,7 +1198,7 @@ declare const DropdownTypes: () => (({
|
|
|
1193
1198
|
};
|
|
1194
1199
|
}>> & {
|
|
1195
1200
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
1196
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
1201
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
1197
1202
|
$attrs: {
|
|
1198
1203
|
[x: string]: unknown;
|
|
1199
1204
|
};
|
|
@@ -1260,6 +1265,10 @@ declare const DropdownTypes: () => (({
|
|
|
1260
1265
|
type: import("vue").PropType<string>;
|
|
1261
1266
|
default: any;
|
|
1262
1267
|
};
|
|
1268
|
+
warningKey: {
|
|
1269
|
+
type: import("vue").PropType<string>;
|
|
1270
|
+
default: any;
|
|
1271
|
+
};
|
|
1263
1272
|
iconType: {
|
|
1264
1273
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1265
1274
|
default: string;
|
|
@@ -1317,6 +1326,7 @@ declare const DropdownTypes: () => (({
|
|
|
1317
1326
|
nameKey: string;
|
|
1318
1327
|
imageKey: string;
|
|
1319
1328
|
iconKey: string;
|
|
1329
|
+
warningKey: string;
|
|
1320
1330
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1321
1331
|
endIconKey: string;
|
|
1322
1332
|
endTextIconKey: string;
|
|
@@ -1399,6 +1409,10 @@ declare const DropdownTypes: () => (({
|
|
|
1399
1409
|
type: import("vue").PropType<string>;
|
|
1400
1410
|
default: any;
|
|
1401
1411
|
};
|
|
1412
|
+
warningKey: {
|
|
1413
|
+
type: import("vue").PropType<string>;
|
|
1414
|
+
default: any;
|
|
1415
|
+
};
|
|
1402
1416
|
iconType: {
|
|
1403
1417
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1404
1418
|
default: string;
|
|
@@ -1497,6 +1511,10 @@ declare const DropdownTypes: () => (({
|
|
|
1497
1511
|
type: import("vue").PropType<string>;
|
|
1498
1512
|
default: any;
|
|
1499
1513
|
};
|
|
1514
|
+
warningKey: {
|
|
1515
|
+
type: import("vue").PropType<string>;
|
|
1516
|
+
default: any;
|
|
1517
|
+
};
|
|
1500
1518
|
iconType: {
|
|
1501
1519
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1502
1520
|
default: string;
|
|
@@ -1554,6 +1572,7 @@ declare const DropdownTypes: () => (({
|
|
|
1554
1572
|
nameKey: string;
|
|
1555
1573
|
imageKey: string;
|
|
1556
1574
|
iconKey: string;
|
|
1575
|
+
warningKey: string;
|
|
1557
1576
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1558
1577
|
endIconKey: string;
|
|
1559
1578
|
endTextIconKey: string;
|
|
@@ -1570,19 +1589,40 @@ declare const DropdownTypes: () => (({
|
|
|
1570
1589
|
"icon-start"?(_: {}): any;
|
|
1571
1590
|
default?(_: {}): any;
|
|
1572
1591
|
"icon-end"?(_: {}): any;
|
|
1592
|
+
"option-end"?(_: {
|
|
1593
|
+
option: any;
|
|
1594
|
+
}): any;
|
|
1573
1595
|
};
|
|
1574
1596
|
})) | import("vue").DefineComponent<{
|
|
1575
1597
|
testId: {
|
|
1576
1598
|
type: import("vue").PropType<string>;
|
|
1577
1599
|
default: string;
|
|
1578
1600
|
};
|
|
1601
|
+
iconName: {
|
|
1602
|
+
type: import("vue").PropType<string>;
|
|
1603
|
+
default: string;
|
|
1604
|
+
};
|
|
1605
|
+
iconType: {
|
|
1606
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1607
|
+
default: string;
|
|
1608
|
+
};
|
|
1579
1609
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1580
1610
|
testId: {
|
|
1581
1611
|
type: import("vue").PropType<string>;
|
|
1582
1612
|
default: string;
|
|
1583
1613
|
};
|
|
1614
|
+
iconName: {
|
|
1615
|
+
type: import("vue").PropType<string>;
|
|
1616
|
+
default: string;
|
|
1617
|
+
};
|
|
1618
|
+
iconType: {
|
|
1619
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1620
|
+
default: string;
|
|
1621
|
+
};
|
|
1584
1622
|
}>>, {
|
|
1585
1623
|
testId: string;
|
|
1624
|
+
iconName: string;
|
|
1625
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1586
1626
|
}> | import("vue").DefineComponent<{
|
|
1587
1627
|
label: {
|
|
1588
1628
|
type: import("vue").PropType<string>;
|
|
@@ -1759,6 +1799,7 @@ declare const DropdownTypes: () => (({
|
|
|
1759
1799
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1760
1800
|
optionsEndTextIconKey: string;
|
|
1761
1801
|
optionFlagKey: string;
|
|
1802
|
+
optionWarningKey: string;
|
|
1762
1803
|
disabledOptionKey: string;
|
|
1763
1804
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1764
1805
|
optionTwoLinesKey: string;
|
|
@@ -1969,6 +2010,10 @@ declare const DropdownTypes: () => (({
|
|
|
1969
2010
|
type: import("vue").PropType<string>;
|
|
1970
2011
|
default: any;
|
|
1971
2012
|
};
|
|
2013
|
+
optionWarningKey: {
|
|
2014
|
+
type: import("vue").PropType<string>;
|
|
2015
|
+
default: any;
|
|
2016
|
+
};
|
|
1972
2017
|
disabledOptionKey: {
|
|
1973
2018
|
type: import("vue").PropType<string>;
|
|
1974
2019
|
default: string;
|
|
@@ -2030,7 +2075,7 @@ declare const DropdownTypes: () => (({
|
|
|
2030
2075
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
2031
2076
|
onOpened?: () => any;
|
|
2032
2077
|
onClosed?: () => any;
|
|
2033
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
2078
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
2034
2079
|
$attrs: {
|
|
2035
2080
|
[x: string]: unknown;
|
|
2036
2081
|
};
|
|
@@ -2242,6 +2287,10 @@ declare const DropdownTypes: () => (({
|
|
|
2242
2287
|
type: import("vue").PropType<string>;
|
|
2243
2288
|
default: any;
|
|
2244
2289
|
};
|
|
2290
|
+
optionWarningKey: {
|
|
2291
|
+
type: import("vue").PropType<string>;
|
|
2292
|
+
default: any;
|
|
2293
|
+
};
|
|
2245
2294
|
disabledOptionKey: {
|
|
2246
2295
|
type: import("vue").PropType<string>;
|
|
2247
2296
|
default: string;
|
|
@@ -2365,6 +2414,7 @@ declare const DropdownTypes: () => (({
|
|
|
2365
2414
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2366
2415
|
optionsEndTextIconKey: string;
|
|
2367
2416
|
optionFlagKey: string;
|
|
2417
|
+
optionWarningKey: string;
|
|
2368
2418
|
disabledOptionKey: string;
|
|
2369
2419
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2370
2420
|
optionTwoLinesKey: string;
|
|
@@ -2595,6 +2645,10 @@ declare const DropdownTypes: () => (({
|
|
|
2595
2645
|
type: import("vue").PropType<string>;
|
|
2596
2646
|
default: any;
|
|
2597
2647
|
};
|
|
2648
|
+
optionWarningKey: {
|
|
2649
|
+
type: import("vue").PropType<string>;
|
|
2650
|
+
default: any;
|
|
2651
|
+
};
|
|
2598
2652
|
disabledOptionKey: {
|
|
2599
2653
|
type: import("vue").PropType<string>;
|
|
2600
2654
|
default: string;
|
|
@@ -2861,6 +2915,10 @@ declare const DropdownTypes: () => (({
|
|
|
2861
2915
|
type: import("vue").PropType<string>;
|
|
2862
2916
|
default: any;
|
|
2863
2917
|
};
|
|
2918
|
+
optionWarningKey: {
|
|
2919
|
+
type: import("vue").PropType<string>;
|
|
2920
|
+
default: any;
|
|
2921
|
+
};
|
|
2864
2922
|
disabledOptionKey: {
|
|
2865
2923
|
type: import("vue").PropType<string>;
|
|
2866
2924
|
default: string;
|
|
@@ -2984,6 +3042,7 @@ declare const DropdownTypes: () => (({
|
|
|
2984
3042
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2985
3043
|
optionsEndTextIconKey: string;
|
|
2986
3044
|
optionFlagKey: string;
|
|
3045
|
+
optionWarningKey: string;
|
|
2987
3046
|
disabledOptionKey: string;
|
|
2988
3047
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2989
3048
|
optionTwoLinesKey: string;
|
|
@@ -3051,6 +3110,9 @@ declare const DropdownTypes: () => (({
|
|
|
3051
3110
|
active: boolean;
|
|
3052
3111
|
disabled: any;
|
|
3053
3112
|
}): any;
|
|
3113
|
+
"option-end"?(_: {
|
|
3114
|
+
option: any;
|
|
3115
|
+
}): any;
|
|
3054
3116
|
};
|
|
3055
3117
|
})) | import("vue").DefineComponent<{
|
|
3056
3118
|
label: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
title?: string;
|
|
3
3
|
subtitle?: string;
|
|
4
|
-
variant?: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
4
|
+
variant?: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
5
5
|
buttonText?: string;
|
|
6
6
|
iconName?: string;
|
|
7
7
|
iconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -19,7 +19,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
19
19
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
20
20
|
title?: string;
|
|
21
21
|
subtitle?: string;
|
|
22
|
-
variant?: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
22
|
+
variant?: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
23
23
|
buttonText?: string;
|
|
24
24
|
iconName?: string;
|
|
25
25
|
iconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -36,7 +36,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
36
36
|
onClick?: () => any;
|
|
37
37
|
}, {
|
|
38
38
|
title: string;
|
|
39
|
-
variant: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
39
|
+
variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
40
40
|
iconName: string;
|
|
41
41
|
iconSize: string;
|
|
42
42
|
subtitle: string;
|
|
@@ -5,7 +5,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
7
|
title: string;
|
|
8
|
-
variant: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
8
|
+
variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
9
9
|
iconName: string;
|
|
10
10
|
iconSize: string;
|
|
11
11
|
subtitle: string;
|
|
@@ -17,7 +17,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
19
|
variant: {
|
|
20
|
-
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files"
|
|
20
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
21
21
|
default: string;
|
|
22
22
|
};
|
|
23
23
|
iconName: {
|
|
@@ -62,7 +62,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
62
62
|
default: string;
|
|
63
63
|
};
|
|
64
64
|
variant: {
|
|
65
|
-
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files"
|
|
65
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
66
66
|
default: string;
|
|
67
67
|
};
|
|
68
68
|
iconName: {
|
|
@@ -91,7 +91,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
91
91
|
click: () => void;
|
|
92
92
|
}, string, {
|
|
93
93
|
title: string;
|
|
94
|
-
variant: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
94
|
+
variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
95
95
|
iconName: string;
|
|
96
96
|
iconSize: string;
|
|
97
97
|
subtitle: string;
|
|
@@ -123,7 +123,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
123
123
|
default: string;
|
|
124
124
|
};
|
|
125
125
|
variant: {
|
|
126
|
-
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files"
|
|
126
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
127
127
|
default: string;
|
|
128
128
|
};
|
|
129
129
|
iconName: {
|
|
@@ -158,7 +158,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
158
158
|
default: string;
|
|
159
159
|
};
|
|
160
160
|
variant: {
|
|
161
|
-
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files"
|
|
161
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
162
162
|
default: string;
|
|
163
163
|
};
|
|
164
164
|
iconName: {
|
|
@@ -187,7 +187,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
187
187
|
click: () => void;
|
|
188
188
|
}, string, {
|
|
189
189
|
title: string;
|
|
190
|
-
variant: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
190
|
+
variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
191
191
|
iconName: string;
|
|
192
192
|
iconSize: string;
|
|
193
193
|
subtitle: string;
|
|
@@ -1,34 +1,41 @@
|
|
|
1
|
+
import { TooltipTriggers } from '@/components/tooltip/common/Tooltip.types';
|
|
1
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
3
|
label: string;
|
|
3
4
|
mandatory?: boolean;
|
|
4
5
|
testId?: string;
|
|
5
6
|
hoverHelpText?: string;
|
|
6
7
|
hoverHelpTextPlacement?: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
8
|
+
helpTextIconTooltipTrigger?: TooltipTriggers[];
|
|
7
9
|
}>, {
|
|
8
10
|
label: string;
|
|
9
11
|
mandatory: boolean;
|
|
10
12
|
testId: string;
|
|
11
|
-
hoverHelpText:
|
|
13
|
+
hoverHelpText: any;
|
|
12
14
|
hoverHelpTextPlacement: string;
|
|
15
|
+
helpTextIconTooltipTrigger: () => string[];
|
|
13
16
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
14
17
|
label: string;
|
|
15
18
|
mandatory?: boolean;
|
|
16
19
|
testId?: string;
|
|
17
20
|
hoverHelpText?: string;
|
|
18
21
|
hoverHelpTextPlacement?: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
22
|
+
helpTextIconTooltipTrigger?: TooltipTriggers[];
|
|
19
23
|
}>, {
|
|
20
24
|
label: string;
|
|
21
25
|
mandatory: boolean;
|
|
22
26
|
testId: string;
|
|
23
|
-
hoverHelpText:
|
|
27
|
+
hoverHelpText: any;
|
|
24
28
|
hoverHelpTextPlacement: string;
|
|
29
|
+
helpTextIconTooltipTrigger: () => string[];
|
|
25
30
|
}>>>, {
|
|
26
31
|
label: string;
|
|
27
32
|
testId: string;
|
|
28
33
|
mandatory: boolean;
|
|
29
34
|
hoverHelpText: string;
|
|
30
35
|
hoverHelpTextPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
36
|
+
helpTextIconTooltipTrigger: TooltipTriggers[];
|
|
31
37
|
}>, {
|
|
38
|
+
"icon-tooltip-content"?(_: {}): any;
|
|
32
39
|
default?(_: {}): any;
|
|
33
40
|
}>;
|
|
34
41
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./FormRow.vue2.js";
|
|
2
2
|
/* empty css */import _ from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../FormRow.
|
|
4
|
-
const
|
|
3
|
+
// import "../../FormRow.vue_vue_type_style_index_0_scoped_2d5a3057_lang.css"; //*');
|
|
4
|
+
const p = /* @__PURE__ */ _(o, [["__scopeId", "data-v-2d5a3057"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|
|
@@ -1,34 +1,45 @@
|
|
|
1
|
-
import "../../FormRow.
|
|
2
|
-
import
|
|
3
|
-
const
|
|
1
|
+
import "../../FormRow.vue_vue_type_style_index_0_scoped_2d5a3057_lang.css"; import { defineComponent as r, useSlots as i, openBlock as o, createElementBlock as l, createVNode as c, createSlots as d, unref as s, withCtx as h, renderSlot as n, createCommentVNode as m, createElementVNode as p } from "vue";
|
|
2
|
+
import u from "../shared/FieldLabel.vue.js";
|
|
3
|
+
const f = { class: "form-row" }, v = {
|
|
4
4
|
key: 0,
|
|
5
5
|
class: "label-container"
|
|
6
|
-
},
|
|
6
|
+
}, x = { class: "content" }, y = /* @__PURE__ */ r({
|
|
7
7
|
__name: "FormRow",
|
|
8
8
|
props: {
|
|
9
9
|
label: { default: "" },
|
|
10
10
|
mandatory: { type: Boolean, default: !1 },
|
|
11
11
|
testId: { default: "" },
|
|
12
|
-
hoverHelpText: { default:
|
|
13
|
-
hoverHelpTextPlacement: { default: "top" }
|
|
12
|
+
hoverHelpText: { default: null },
|
|
13
|
+
hoverHelpTextPlacement: { default: "top" },
|
|
14
|
+
helpTextIconTooltipTrigger: { default: () => ["hover"] }
|
|
14
15
|
},
|
|
15
16
|
setup(e) {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
const a = i();
|
|
18
|
+
return (t, T) => (o(), l("div", f, [
|
|
19
|
+
e.label ? (o(), l("div", v, [
|
|
20
|
+
c(u, {
|
|
19
21
|
label: e.label,
|
|
20
22
|
mandatory: e.mandatory,
|
|
21
23
|
"hover-help-text": e.hoverHelpText,
|
|
22
24
|
"hover-help-text-placement": e.hoverHelpTextPlacement,
|
|
25
|
+
"help-text-icon-tooltip-trigger": e.helpTextIconTooltipTrigger,
|
|
23
26
|
"test-id": e.testId
|
|
24
|
-
},
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
}, d({ _: 2 }, [
|
|
28
|
+
s(a)["icon-tooltip-content"] ? {
|
|
29
|
+
name: "icon-tooltip-content",
|
|
30
|
+
fn: h(() => [
|
|
31
|
+
n(t.$slots, "icon-tooltip-content", {}, void 0, !0)
|
|
32
|
+
]),
|
|
33
|
+
key: "0"
|
|
34
|
+
} : void 0
|
|
35
|
+
]), 1032, ["label", "mandatory", "hover-help-text", "hover-help-text-placement", "help-text-icon-tooltip-trigger", "test-id"])
|
|
36
|
+
])) : m("", !0),
|
|
37
|
+
p("div", x, [
|
|
38
|
+
n(t.$slots, "default", {}, void 0, !0)
|
|
28
39
|
])
|
|
29
40
|
]));
|
|
30
41
|
}
|
|
31
42
|
});
|
|
32
43
|
export {
|
|
33
|
-
|
|
44
|
+
y as default
|
|
34
45
|
};
|
|
@@ -404,6 +404,7 @@ declare const FormCardTypes: () => (({
|
|
|
404
404
|
mandatory: boolean;
|
|
405
405
|
hoverHelpText: string;
|
|
406
406
|
hoverHelpTextPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
407
|
+
helpTextIconTooltipTrigger: import("../tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
407
408
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
408
409
|
label: {
|
|
409
410
|
type: import("vue").PropType<string>;
|
|
@@ -420,13 +421,17 @@ declare const FormCardTypes: () => (({
|
|
|
420
421
|
};
|
|
421
422
|
hoverHelpText: {
|
|
422
423
|
type: import("vue").PropType<string>;
|
|
423
|
-
default:
|
|
424
|
+
default: any;
|
|
424
425
|
};
|
|
425
426
|
hoverHelpTextPlacement: {
|
|
426
427
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
427
428
|
default: string;
|
|
428
429
|
};
|
|
429
|
-
|
|
430
|
+
helpTextIconTooltipTrigger: {
|
|
431
|
+
type: import("vue").PropType<import("../tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
432
|
+
default: () => string[];
|
|
433
|
+
};
|
|
434
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "mandatory" | "hoverHelpText" | "hoverHelpTextPlacement" | "helpTextIconTooltipTrigger">;
|
|
430
435
|
$attrs: {
|
|
431
436
|
[x: string]: unknown;
|
|
432
437
|
};
|
|
@@ -456,18 +461,23 @@ declare const FormCardTypes: () => (({
|
|
|
456
461
|
};
|
|
457
462
|
hoverHelpText: {
|
|
458
463
|
type: import("vue").PropType<string>;
|
|
459
|
-
default:
|
|
464
|
+
default: any;
|
|
460
465
|
};
|
|
461
466
|
hoverHelpTextPlacement: {
|
|
462
467
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
463
468
|
default: string;
|
|
464
469
|
};
|
|
470
|
+
helpTextIconTooltipTrigger: {
|
|
471
|
+
type: import("vue").PropType<import("../tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
472
|
+
default: () => string[];
|
|
473
|
+
};
|
|
465
474
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
466
475
|
label: string;
|
|
467
476
|
testId: string;
|
|
468
477
|
mandatory: boolean;
|
|
469
478
|
hoverHelpText: string;
|
|
470
479
|
hoverHelpTextPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
480
|
+
helpTextIconTooltipTrigger: import("../tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
471
481
|
}, {}, string> & {
|
|
472
482
|
beforeCreate?: (() => void) | (() => void)[];
|
|
473
483
|
created?: (() => void) | (() => void)[];
|
|
@@ -504,12 +514,16 @@ declare const FormCardTypes: () => (({
|
|
|
504
514
|
};
|
|
505
515
|
hoverHelpText: {
|
|
506
516
|
type: import("vue").PropType<string>;
|
|
507
|
-
default:
|
|
517
|
+
default: any;
|
|
508
518
|
};
|
|
509
519
|
hoverHelpTextPlacement: {
|
|
510
520
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
511
521
|
default: string;
|
|
512
522
|
};
|
|
523
|
+
helpTextIconTooltipTrigger: {
|
|
524
|
+
type: import("vue").PropType<import("../tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
525
|
+
default: () => string[];
|
|
526
|
+
};
|
|
513
527
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
514
528
|
__isFragment?: never;
|
|
515
529
|
__isTeleport?: never;
|
|
@@ -530,20 +544,26 @@ declare const FormCardTypes: () => (({
|
|
|
530
544
|
};
|
|
531
545
|
hoverHelpText: {
|
|
532
546
|
type: import("vue").PropType<string>;
|
|
533
|
-
default:
|
|
547
|
+
default: any;
|
|
534
548
|
};
|
|
535
549
|
hoverHelpTextPlacement: {
|
|
536
550
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
537
551
|
default: string;
|
|
538
552
|
};
|
|
553
|
+
helpTextIconTooltipTrigger: {
|
|
554
|
+
type: import("vue").PropType<import("../tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
555
|
+
default: () => string[];
|
|
556
|
+
};
|
|
539
557
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
540
558
|
label: string;
|
|
541
559
|
testId: string;
|
|
542
560
|
mandatory: boolean;
|
|
543
561
|
hoverHelpText: string;
|
|
544
562
|
hoverHelpTextPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
563
|
+
helpTextIconTooltipTrigger: import("../tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
545
564
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
546
565
|
$slots: {
|
|
566
|
+
"icon-tooltip-content"?(_: {}): any;
|
|
547
567
|
default?(_: {}): any;
|
|
548
568
|
};
|
|
549
569
|
})))[];
|
|
@@ -12,7 +12,7 @@ declare const SearchTypes: () => import("vue").DefineComponent<{
|
|
|
12
12
|
default: boolean;
|
|
13
13
|
};
|
|
14
14
|
size: {
|
|
15
|
-
type: import("vue").PropType<"
|
|
15
|
+
type: import("vue").PropType<"md" | "sm">;
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
18
|
modelValue: {
|
|
@@ -41,7 +41,7 @@ declare const SearchTypes: () => import("vue").DefineComponent<{
|
|
|
41
41
|
default: boolean;
|
|
42
42
|
};
|
|
43
43
|
size: {
|
|
44
|
-
type: import("vue").PropType<"
|
|
44
|
+
type: import("vue").PropType<"md" | "sm">;
|
|
45
45
|
default: string;
|
|
46
46
|
};
|
|
47
47
|
modelValue: {
|
|
@@ -58,7 +58,7 @@ declare const SearchTypes: () => import("vue").DefineComponent<{
|
|
|
58
58
|
testId: string;
|
|
59
59
|
variant: "default" | "transparent" | "inline-table";
|
|
60
60
|
disabled: boolean;
|
|
61
|
-
size: "
|
|
61
|
+
size: "md" | "sm";
|
|
62
62
|
}>[];
|
|
63
63
|
export { default as Search } from './Search.vue';
|
|
64
64
|
export { SearchTypes };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
1
|
+
import { TooltipTriggers } from '@/components/tooltip/common/Tooltip.types';
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
label: string;
|
|
4
4
|
description?: string;
|
|
5
5
|
mandatory?: boolean;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
hoverHelpText?: string;
|
|
8
|
-
hoverHelpTextPlacement?:
|
|
8
|
+
hoverHelpTextPlacement?: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
9
|
+
helpTextIconTooltipTrigger?: TooltipTriggers[];
|
|
9
10
|
testId?: string;
|
|
10
11
|
}>, {
|
|
11
12
|
label: string;
|
|
@@ -13,15 +14,17 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
13
14
|
testId: string;
|
|
14
15
|
mandatory: boolean;
|
|
15
16
|
disabled: boolean;
|
|
16
|
-
hoverHelpText:
|
|
17
|
+
hoverHelpText: any;
|
|
17
18
|
hoverHelpTextPlacement: string;
|
|
19
|
+
helpTextIconTooltipTrigger: () => string[];
|
|
18
20
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
19
21
|
label: string;
|
|
20
22
|
description?: string;
|
|
21
23
|
mandatory?: boolean;
|
|
22
24
|
disabled?: boolean;
|
|
23
25
|
hoverHelpText?: string;
|
|
24
|
-
hoverHelpTextPlacement?:
|
|
26
|
+
hoverHelpTextPlacement?: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
27
|
+
helpTextIconTooltipTrigger?: TooltipTriggers[];
|
|
25
28
|
testId?: string;
|
|
26
29
|
}>, {
|
|
27
30
|
label: string;
|
|
@@ -29,8 +32,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
29
32
|
testId: string;
|
|
30
33
|
mandatory: boolean;
|
|
31
34
|
disabled: boolean;
|
|
32
|
-
hoverHelpText:
|
|
35
|
+
hoverHelpText: any;
|
|
33
36
|
hoverHelpTextPlacement: string;
|
|
37
|
+
helpTextIconTooltipTrigger: () => string[];
|
|
34
38
|
}>>>, {
|
|
35
39
|
label: string;
|
|
36
40
|
testId: string;
|
|
@@ -38,7 +42,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
38
42
|
mandatory: boolean;
|
|
39
43
|
description: string;
|
|
40
44
|
hoverHelpText: string;
|
|
41
|
-
hoverHelpTextPlacement:
|
|
45
|
+
hoverHelpTextPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
46
|
+
helpTextIconTooltipTrigger: TooltipTriggers[];
|
|
47
|
+
}>, {
|
|
48
|
+
"icon-tooltip-content"?(_: {}): any;
|
|
42
49
|
}>;
|
|
43
50
|
export default _default;
|
|
44
51
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -58,3 +65,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
58
65
|
type __VLS_Prettify<T> = {
|
|
59
66
|
[K in keyof T]: T[K];
|
|
60
67
|
} & {};
|
|
68
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
69
|
+
new (): {
|
|
70
|
+
$slots: S;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e from "./FieldLabel.vue2.js";
|
|
2
2
|
/* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../FieldLabel.
|
|
4
|
-
const
|
|
3
|
+
// import "../../FieldLabel.vue_vue_type_style_index_0_scoped_921d4087_lang.css"; //*');
|
|
4
|
+
const d = /* @__PURE__ */ o(e, [["__scopeId", "data-v-921d4087"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
d as default
|
|
7
7
|
};
|