@elastic/eui 97.0.0 → 97.2.0
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/es/components/datagrid/body/cell/data_grid_cell.styles.js +4 -2
- package/es/components/datagrid/body/cell/focus_utils.js +14 -4
- package/es/components/datagrid/body/data_grid_body.js +2 -1
- package/es/components/datagrid/body/data_grid_body_custom.js +5 -2
- package/es/components/datagrid/body/data_grid_body_virtualized.js +8 -4
- package/es/components/datagrid/body/header/column_actions.js +262 -27
- package/es/components/datagrid/body/header/{data_grid_column_resizer.js → column_resizer.js} +10 -4
- package/es/components/datagrid/body/header/{data_grid_column_resizer.styles.js → column_resizer.styles.js} +6 -1
- package/es/components/datagrid/body/header/column_sorting.js +134 -0
- package/es/components/datagrid/body/header/data_grid_control_header_cell.js +3 -3
- package/es/components/datagrid/body/header/data_grid_header_cell.js +86 -305
- package/es/components/datagrid/body/header/data_grid_header_cell.styles.js +1 -1
- package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +19 -17
- package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +1 -2
- package/es/components/datagrid/body/header/data_grid_header_row.js +25 -10
- package/es/components/datagrid/body/header/draggable_columns.js +301 -0
- package/es/components/datagrid/body/header/draggable_columns.styles.js +38 -0
- package/es/components/datagrid/data_grid.js +2 -1
- package/es/components/datagrid/data_grid.stories.utils.js +9 -6
- package/es/components/datagrid/utils/col_widths.js +4 -6
- package/es/components/datagrid/utils/focus.js +2 -2
- package/es/components/datagrid/utils/scrolling.js +13 -10
- package/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +8 -2
- package/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +8 -2
- package/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +8 -2
- package/es/components/date_picker/super_date_picker/super_date_picker.js +27 -5
- package/es/components/drag_and_drop/draggable.js +13 -5
- package/es/components/header/header.styles.js +6 -12
- package/es/components/header/header_links/header_links.js +1 -1
- package/es/components/header/header_links/header_links.styles.js +1 -0
- package/es/components/page_template/inner/page_inner.styles.js +3 -4
- package/es/components/tabs/tab.js +1 -1
- package/eui.d.ts +417 -307
- package/i18ntokens.json +175 -175
- package/lib/components/datagrid/body/cell/data_grid_cell.styles.js +4 -2
- package/lib/components/datagrid/body/cell/focus_utils.js +14 -4
- package/lib/components/datagrid/body/data_grid_body.js +2 -1
- package/lib/components/datagrid/body/data_grid_body_custom.js +5 -2
- package/lib/components/datagrid/body/data_grid_body_virtualized.js +8 -4
- package/lib/components/datagrid/body/header/column_actions.js +265 -29
- package/lib/components/datagrid/body/header/{data_grid_column_resizer.js → column_resizer.js} +11 -5
- package/{optimize/lib/components/datagrid/body/header/data_grid_column_resizer.styles.js → lib/components/datagrid/body/header/column_resizer.styles.js} +6 -1
- package/lib/components/datagrid/body/header/column_sorting.js +144 -0
- package/lib/components/datagrid/body/header/data_grid_control_header_cell.js +3 -3
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +86 -305
- package/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +1 -1
- package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +19 -17
- package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +1 -2
- package/lib/components/datagrid/body/header/data_grid_header_row.js +24 -9
- package/lib/components/datagrid/body/header/draggable_columns.js +308 -0
- package/lib/components/datagrid/body/header/draggable_columns.styles.js +42 -0
- package/lib/components/datagrid/data_grid.js +2 -1
- package/lib/components/datagrid/data_grid.stories.utils.js +9 -6
- package/lib/components/datagrid/utils/col_widths.js +4 -6
- package/lib/components/datagrid/utils/focus.js +2 -2
- package/lib/components/datagrid/utils/scrolling.js +13 -10
- package/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +8 -2
- package/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +8 -2
- package/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +8 -2
- package/lib/components/date_picker/super_date_picker/super_date_picker.js +27 -5
- package/lib/components/drag_and_drop/draggable.js +13 -5
- package/lib/components/header/header.styles.js +6 -12
- package/lib/components/header/header_links/header_links.js +1 -1
- package/lib/components/header/header_links/header_links.styles.js +1 -0
- package/lib/components/page_template/inner/page_inner.styles.js +3 -4
- package/lib/components/tabs/tab.js +1 -1
- package/optimize/es/components/datagrid/body/cell/data_grid_cell.styles.js +4 -2
- package/optimize/es/components/datagrid/body/cell/focus_utils.js +13 -4
- package/optimize/es/components/datagrid/body/data_grid_body_custom.js +3 -1
- package/optimize/es/components/datagrid/body/data_grid_body_virtualized.js +6 -3
- package/optimize/es/components/datagrid/body/header/column_actions.js +250 -26
- package/optimize/es/components/datagrid/body/header/{data_grid_column_resizer.js → column_resizer.js} +8 -3
- package/optimize/es/components/datagrid/body/header/{data_grid_column_resizer.styles.js → column_resizer.styles.js} +6 -1
- package/optimize/es/components/datagrid/body/header/column_sorting.js +134 -0
- package/optimize/es/components/datagrid/body/header/data_grid_control_header_cell.js +2 -2
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +82 -302
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.styles.js +1 -1
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +15 -14
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +1 -2
- package/optimize/es/components/datagrid/body/header/data_grid_header_row.js +25 -10
- package/optimize/es/components/datagrid/body/header/draggable_columns.js +223 -0
- package/optimize/es/components/datagrid/body/header/draggable_columns.styles.js +38 -0
- package/optimize/es/components/datagrid/data_grid.js +2 -1
- package/optimize/es/components/datagrid/data_grid.stories.utils.js +7 -5
- package/optimize/es/components/datagrid/utils/col_widths.js +4 -6
- package/optimize/es/components/datagrid/utils/focus.js +2 -2
- package/optimize/es/components/datagrid/utils/scrolling.js +13 -10
- package/optimize/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +5 -1
- package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +6 -2
- package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +6 -2
- package/optimize/es/components/date_picker/super_date_picker/super_date_picker.js +11 -5
- package/optimize/es/components/drag_and_drop/draggable.js +8 -3
- package/optimize/es/components/header/header.styles.js +6 -12
- package/optimize/es/components/header/header_links/header_links.js +1 -1
- package/optimize/es/components/header/header_links/header_links.styles.js +1 -0
- package/optimize/es/components/page_template/inner/page_inner.styles.js +3 -4
- package/optimize/es/components/tabs/tab.js +1 -1
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell.styles.js +4 -2
- package/optimize/lib/components/datagrid/body/cell/focus_utils.js +13 -4
- package/optimize/lib/components/datagrid/body/data_grid_body_custom.js +3 -1
- package/optimize/lib/components/datagrid/body/data_grid_body_virtualized.js +6 -3
- package/optimize/lib/components/datagrid/body/header/column_actions.js +253 -27
- package/optimize/lib/components/datagrid/body/header/{data_grid_column_resizer.js → column_resizer.js} +9 -4
- package/{test-env/components/datagrid/body/header/data_grid_column_resizer.styles.js → optimize/lib/components/datagrid/body/header/column_resizer.styles.js} +6 -1
- package/optimize/lib/components/datagrid/body/header/column_sorting.js +144 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_control_header_cell.js +2 -2
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +80 -300
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +1 -1
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +15 -14
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +1 -2
- package/optimize/lib/components/datagrid/body/header/data_grid_header_row.js +24 -9
- package/optimize/lib/components/datagrid/body/header/draggable_columns.js +231 -0
- package/optimize/lib/components/datagrid/body/header/draggable_columns.styles.js +43 -0
- package/optimize/lib/components/datagrid/data_grid.js +2 -1
- package/optimize/lib/components/datagrid/data_grid.stories.utils.js +7 -5
- package/optimize/lib/components/datagrid/utils/col_widths.js +4 -6
- package/optimize/lib/components/datagrid/utils/focus.js +2 -2
- package/optimize/lib/components/datagrid/utils/scrolling.js +13 -10
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +5 -1
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +6 -2
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +6 -2
- package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.js +11 -5
- package/optimize/lib/components/drag_and_drop/draggable.js +8 -3
- package/optimize/lib/components/header/header.styles.js +6 -12
- package/optimize/lib/components/header/header_links/header_links.js +1 -1
- package/optimize/lib/components/header/header_links/header_links.styles.js +1 -0
- package/optimize/lib/components/page_template/inner/page_inner.styles.js +3 -4
- package/optimize/lib/components/tabs/tab.js +1 -1
- package/package.json +1 -1
- package/test-env/components/datagrid/body/cell/data_grid_cell.styles.js +4 -2
- package/test-env/components/datagrid/body/cell/focus_utils.js +13 -4
- package/test-env/components/datagrid/body/data_grid_body.js +2 -1
- package/test-env/components/datagrid/body/data_grid_body_custom.js +5 -2
- package/test-env/components/datagrid/body/data_grid_body_virtualized.js +8 -4
- package/test-env/components/datagrid/body/header/column_actions.js +261 -27
- package/test-env/components/datagrid/body/header/{data_grid_column_resizer.js → column_resizer.js} +11 -5
- package/{lib/components/datagrid/body/header/data_grid_column_resizer.styles.js → test-env/components/datagrid/body/header/column_resizer.styles.js} +6 -1
- package/test-env/components/datagrid/body/header/column_sorting.js +144 -0
- package/test-env/components/datagrid/body/header/data_grid_control_header_cell.js +3 -3
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +82 -301
- package/test-env/components/datagrid/body/header/data_grid_header_cell.styles.js +1 -1
- package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.js +19 -17
- package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +1 -2
- package/test-env/components/datagrid/body/header/data_grid_header_row.js +24 -9
- package/test-env/components/datagrid/body/header/draggable_columns.js +305 -0
- package/test-env/components/datagrid/body/header/draggable_columns.styles.js +43 -0
- package/test-env/components/datagrid/data_grid.js +2 -1
- package/test-env/components/datagrid/data_grid.stories.utils.js +9 -6
- package/test-env/components/datagrid/utils/col_widths.js +4 -6
- package/test-env/components/datagrid/utils/focus.js +2 -2
- package/test-env/components/datagrid/utils/scrolling.js +13 -10
- package/test-env/components/date_picker/super_date_picker/date_popover/absolute_tab.js +8 -2
- package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_button.js +8 -2
- package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_content.js +8 -2
- package/test-env/components/date_picker/super_date_picker/super_date_picker.js +27 -5
- package/test-env/components/drag_and_drop/draggable.js +13 -5
- package/test-env/components/header/header.styles.js +6 -12
- package/test-env/components/header/header_links/header_links.js +1 -1
- package/test-env/components/header/header_links/header_links.styles.js +1 -0
- package/test-env/components/page_template/inner/page_inner.styles.js +3 -4
- package/test-env/components/tabs/tab.js +1 -1
package/i18ntokens.json
CHANGED
|
@@ -1067,14 +1067,14 @@
|
|
|
1067
1067
|
"highlighting": "string",
|
|
1068
1068
|
"loc": {
|
|
1069
1069
|
"start": {
|
|
1070
|
-
"line":
|
|
1070
|
+
"line": 192,
|
|
1071
1071
|
"column": 10,
|
|
1072
|
-
"index":
|
|
1072
|
+
"index": 6786
|
|
1073
1073
|
},
|
|
1074
1074
|
"end": {
|
|
1075
|
-
"line":
|
|
1075
|
+
"line": 196,
|
|
1076
1076
|
"column": 12,
|
|
1077
|
-
"index":
|
|
1077
|
+
"index": 6957
|
|
1078
1078
|
}
|
|
1079
1079
|
},
|
|
1080
1080
|
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
@@ -1085,104 +1085,122 @@
|
|
|
1085
1085
|
"highlighting": "string",
|
|
1086
1086
|
"loc": {
|
|
1087
1087
|
"start": {
|
|
1088
|
-
"line":
|
|
1088
|
+
"line": 199,
|
|
1089
1089
|
"column": 10,
|
|
1090
|
-
"index":
|
|
1090
|
+
"index": 7008
|
|
1091
1091
|
},
|
|
1092
1092
|
"end": {
|
|
1093
|
-
"line":
|
|
1093
|
+
"line": 203,
|
|
1094
1094
|
"column": 12,
|
|
1095
|
-
"index":
|
|
1095
|
+
"index": 7218
|
|
1096
1096
|
}
|
|
1097
1097
|
},
|
|
1098
1098
|
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
1099
1099
|
},
|
|
1100
1100
|
{
|
|
1101
|
-
"token": "
|
|
1102
|
-
"defString": "
|
|
1101
|
+
"token": "euiDataGridHeaderCell.actionsButtonAriaLabel",
|
|
1102
|
+
"defString": "{title}. Click to view column header actions.",
|
|
1103
1103
|
"highlighting": "string",
|
|
1104
1104
|
"loc": {
|
|
1105
1105
|
"start": {
|
|
1106
|
-
"line":
|
|
1107
|
-
"column":
|
|
1108
|
-
"index":
|
|
1106
|
+
"line": 120,
|
|
1107
|
+
"column": 35,
|
|
1108
|
+
"index": 3558
|
|
1109
1109
|
},
|
|
1110
1110
|
"end": {
|
|
1111
|
-
"line":
|
|
1112
|
-
"column":
|
|
1113
|
-
"index":
|
|
1111
|
+
"line": 124,
|
|
1112
|
+
"column": 5,
|
|
1113
|
+
"index": 3700
|
|
1114
1114
|
}
|
|
1115
1115
|
},
|
|
1116
1116
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1117
1117
|
},
|
|
1118
1118
|
{
|
|
1119
|
-
"token": "
|
|
1120
|
-
"defString": "
|
|
1119
|
+
"token": "euiDataGridHeaderCell.actionsEnterKeyInstructions",
|
|
1120
|
+
"defString": "Press the Enter key to view this column's actions",
|
|
1121
1121
|
"highlighting": "string",
|
|
1122
1122
|
"loc": {
|
|
1123
1123
|
"start": {
|
|
1124
|
-
"line":
|
|
1125
|
-
"column":
|
|
1126
|
-
"index":
|
|
1124
|
+
"line": 125,
|
|
1125
|
+
"column": 40,
|
|
1126
|
+
"index": 3742
|
|
1127
1127
|
},
|
|
1128
1128
|
"end": {
|
|
1129
|
-
"line":
|
|
1130
|
-
"column":
|
|
1131
|
-
"index":
|
|
1129
|
+
"line": 128,
|
|
1130
|
+
"column": 5,
|
|
1131
|
+
"index": 3876
|
|
1132
1132
|
}
|
|
1133
1133
|
},
|
|
1134
1134
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1135
1135
|
},
|
|
1136
1136
|
{
|
|
1137
|
-
"token": "
|
|
1138
|
-
"defString": "
|
|
1137
|
+
"token": "euiDataGridHeaderCell.actionsPopoverScreenReaderText",
|
|
1138
|
+
"defString": "To navigate through the list of column actions, press the Tab or Up and Down arrow keys.",
|
|
1139
1139
|
"highlighting": "string",
|
|
1140
1140
|
"loc": {
|
|
1141
1141
|
"start": {
|
|
1142
|
-
"line":
|
|
1142
|
+
"line": 294,
|
|
1143
|
+
"column": 6,
|
|
1144
|
+
"index": 8661
|
|
1145
|
+
},
|
|
1146
|
+
"end": {
|
|
1147
|
+
"line": 297,
|
|
1143
1148
|
"column": 8,
|
|
1144
|
-
"index":
|
|
1149
|
+
"index": 8854
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"token": "euiColumnActions.hideColumn",
|
|
1156
|
+
"defString": "Hide column",
|
|
1157
|
+
"highlighting": "string",
|
|
1158
|
+
"loc": {
|
|
1159
|
+
"start": {
|
|
1160
|
+
"line": 405,
|
|
1161
|
+
"column": 6,
|
|
1162
|
+
"index": 11442
|
|
1145
1163
|
},
|
|
1146
1164
|
"end": {
|
|
1147
|
-
"line":
|
|
1165
|
+
"line": 405,
|
|
1148
1166
|
"column": 75,
|
|
1149
|
-
"index":
|
|
1167
|
+
"index": 11511
|
|
1150
1168
|
}
|
|
1151
1169
|
},
|
|
1152
1170
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1153
1171
|
},
|
|
1154
1172
|
{
|
|
1155
|
-
"token": "euiColumnActions.
|
|
1156
|
-
"defString": "
|
|
1173
|
+
"token": "euiColumnActions.moveLeft",
|
|
1174
|
+
"defString": "Move left",
|
|
1157
1175
|
"highlighting": "string",
|
|
1158
1176
|
"loc": {
|
|
1159
1177
|
"start": {
|
|
1160
|
-
"line":
|
|
1161
|
-
"column":
|
|
1162
|
-
"index":
|
|
1178
|
+
"line": 470,
|
|
1179
|
+
"column": 13,
|
|
1180
|
+
"index": 13216
|
|
1163
1181
|
},
|
|
1164
1182
|
"end": {
|
|
1165
|
-
"line":
|
|
1166
|
-
"column":
|
|
1167
|
-
"index":
|
|
1183
|
+
"line": 470,
|
|
1184
|
+
"column": 78,
|
|
1185
|
+
"index": 13281
|
|
1168
1186
|
}
|
|
1169
1187
|
},
|
|
1170
1188
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1171
1189
|
},
|
|
1172
1190
|
{
|
|
1173
|
-
"token": "euiColumnActions.
|
|
1174
|
-
"defString": "
|
|
1191
|
+
"token": "euiColumnActions.moveRight",
|
|
1192
|
+
"defString": "Move right",
|
|
1175
1193
|
"highlighting": "string",
|
|
1176
1194
|
"loc": {
|
|
1177
1195
|
"start": {
|
|
1178
|
-
"line":
|
|
1196
|
+
"line": 492,
|
|
1179
1197
|
"column": 8,
|
|
1180
|
-
"index":
|
|
1198
|
+
"index": 13869
|
|
1181
1199
|
},
|
|
1182
1200
|
"end": {
|
|
1183
|
-
"line":
|
|
1184
|
-
"column":
|
|
1185
|
-
"index":
|
|
1201
|
+
"line": 492,
|
|
1202
|
+
"column": 75,
|
|
1203
|
+
"index": 13936
|
|
1186
1204
|
}
|
|
1187
1205
|
},
|
|
1188
1206
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -1193,14 +1211,14 @@
|
|
|
1193
1211
|
"highlighting": "string",
|
|
1194
1212
|
"loc": {
|
|
1195
1213
|
"start": {
|
|
1196
|
-
"line":
|
|
1214
|
+
"line": 576,
|
|
1197
1215
|
"column": 8,
|
|
1198
|
-
"index":
|
|
1216
|
+
"index": 16095
|
|
1199
1217
|
},
|
|
1200
1218
|
"end": {
|
|
1201
|
-
"line":
|
|
1219
|
+
"line": 580,
|
|
1202
1220
|
"column": 10,
|
|
1203
|
-
"index":
|
|
1221
|
+
"index": 16239
|
|
1204
1222
|
}
|
|
1205
1223
|
},
|
|
1206
1224
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -1211,53 +1229,53 @@
|
|
|
1211
1229
|
"highlighting": "string",
|
|
1212
1230
|
"loc": {
|
|
1213
1231
|
"start": {
|
|
1214
|
-
"line":
|
|
1232
|
+
"line": 582,
|
|
1215
1233
|
"column": 8,
|
|
1216
|
-
"index":
|
|
1234
|
+
"index": 16260
|
|
1217
1235
|
},
|
|
1218
1236
|
"end": {
|
|
1219
|
-
"line":
|
|
1237
|
+
"line": 586,
|
|
1220
1238
|
"column": 10,
|
|
1221
|
-
"index":
|
|
1239
|
+
"index": 16400
|
|
1222
1240
|
}
|
|
1223
1241
|
},
|
|
1224
1242
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1225
1243
|
},
|
|
1226
1244
|
{
|
|
1227
|
-
"token": "
|
|
1228
|
-
"defString": "{
|
|
1245
|
+
"token": "euiColumnActions.unsort",
|
|
1246
|
+
"defString": "Unsort {schemaLabel}",
|
|
1229
1247
|
"highlighting": "string",
|
|
1230
1248
|
"loc": {
|
|
1231
1249
|
"start": {
|
|
1232
|
-
"line":
|
|
1233
|
-
"column":
|
|
1234
|
-
"index":
|
|
1250
|
+
"line": 612,
|
|
1251
|
+
"column": 8,
|
|
1252
|
+
"index": 17048
|
|
1235
1253
|
},
|
|
1236
1254
|
"end": {
|
|
1237
|
-
"line":
|
|
1238
|
-
"column":
|
|
1239
|
-
"index":
|
|
1255
|
+
"line": 616,
|
|
1256
|
+
"column": 10,
|
|
1257
|
+
"index": 17192
|
|
1240
1258
|
}
|
|
1241
1259
|
},
|
|
1242
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1260
|
+
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1243
1261
|
},
|
|
1244
1262
|
{
|
|
1245
|
-
"token": "
|
|
1246
|
-
"defString": "
|
|
1263
|
+
"token": "euiColumnActions.sort",
|
|
1264
|
+
"defString": "Sort {schemaLabel}",
|
|
1247
1265
|
"highlighting": "string",
|
|
1248
1266
|
"loc": {
|
|
1249
1267
|
"start": {
|
|
1250
|
-
"line":
|
|
1251
|
-
"column":
|
|
1252
|
-
"index":
|
|
1268
|
+
"line": 618,
|
|
1269
|
+
"column": 8,
|
|
1270
|
+
"index": 17213
|
|
1253
1271
|
},
|
|
1254
1272
|
"end": {
|
|
1255
|
-
"line":
|
|
1256
|
-
"column":
|
|
1257
|
-
"index":
|
|
1273
|
+
"line": 622,
|
|
1274
|
+
"column": 10,
|
|
1275
|
+
"index": 17353
|
|
1258
1276
|
}
|
|
1259
1277
|
},
|
|
1260
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1278
|
+
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1261
1279
|
},
|
|
1262
1280
|
{
|
|
1263
1281
|
"token": "euiDataGridHeaderCell.sortedByAscendingSingle",
|
|
@@ -1265,17 +1283,17 @@
|
|
|
1265
1283
|
"highlighting": "string",
|
|
1266
1284
|
"loc": {
|
|
1267
1285
|
"start": {
|
|
1268
|
-
"line":
|
|
1286
|
+
"line": 82,
|
|
1269
1287
|
"column": 16,
|
|
1270
|
-
"index":
|
|
1288
|
+
"index": 2747
|
|
1271
1289
|
},
|
|
1272
1290
|
"end": {
|
|
1273
|
-
"line":
|
|
1291
|
+
"line": 86,
|
|
1274
1292
|
"column": 18,
|
|
1275
|
-
"index":
|
|
1293
|
+
"index": 2921
|
|
1276
1294
|
}
|
|
1277
1295
|
},
|
|
1278
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1296
|
+
"filepath": "src/components/datagrid/body/header/column_sorting.tsx"
|
|
1279
1297
|
},
|
|
1280
1298
|
{
|
|
1281
1299
|
"token": "euiDataGridHeaderCell.sortedByDescendingSingle",
|
|
@@ -1283,17 +1301,17 @@
|
|
|
1283
1301
|
"highlighting": "string",
|
|
1284
1302
|
"loc": {
|
|
1285
1303
|
"start": {
|
|
1286
|
-
"line":
|
|
1304
|
+
"line": 90,
|
|
1287
1305
|
"column": 16,
|
|
1288
|
-
"index":
|
|
1306
|
+
"index": 2999
|
|
1289
1307
|
},
|
|
1290
1308
|
"end": {
|
|
1291
|
-
"line":
|
|
1309
|
+
"line": 94,
|
|
1292
1310
|
"column": 18,
|
|
1293
|
-
"index":
|
|
1311
|
+
"index": 3175
|
|
1294
1312
|
}
|
|
1295
1313
|
},
|
|
1296
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1314
|
+
"filepath": "src/components/datagrid/body/header/column_sorting.tsx"
|
|
1297
1315
|
},
|
|
1298
1316
|
{
|
|
1299
1317
|
"token": "euiDataGridHeaderCell.sortedByAscendingFirst",
|
|
@@ -1301,17 +1319,17 @@
|
|
|
1301
1319
|
"highlighting": "string",
|
|
1302
1320
|
"loc": {
|
|
1303
1321
|
"start": {
|
|
1304
|
-
"line":
|
|
1322
|
+
"line": 100,
|
|
1305
1323
|
"column": 16,
|
|
1306
|
-
"index":
|
|
1324
|
+
"index": 3321
|
|
1307
1325
|
},
|
|
1308
1326
|
"end": {
|
|
1309
|
-
"line":
|
|
1327
|
+
"line": 105,
|
|
1310
1328
|
"column": 18,
|
|
1311
|
-
"index":
|
|
1329
|
+
"index": 3549
|
|
1312
1330
|
}
|
|
1313
1331
|
},
|
|
1314
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1332
|
+
"filepath": "src/components/datagrid/body/header/column_sorting.tsx"
|
|
1315
1333
|
},
|
|
1316
1334
|
{
|
|
1317
1335
|
"token": "euiDataGridHeaderCell.sortedByDescendingFirst",
|
|
@@ -1319,17 +1337,17 @@
|
|
|
1319
1337
|
"highlighting": "string",
|
|
1320
1338
|
"loc": {
|
|
1321
1339
|
"start": {
|
|
1322
|
-
"line":
|
|
1340
|
+
"line": 109,
|
|
1323
1341
|
"column": 16,
|
|
1324
|
-
"index":
|
|
1342
|
+
"index": 3627
|
|
1325
1343
|
},
|
|
1326
1344
|
"end": {
|
|
1327
|
-
"line":
|
|
1345
|
+
"line": 114,
|
|
1328
1346
|
"column": 18,
|
|
1329
|
-
"index":
|
|
1347
|
+
"index": 3857
|
|
1330
1348
|
}
|
|
1331
1349
|
},
|
|
1332
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1350
|
+
"filepath": "src/components/datagrid/body/header/column_sorting.tsx"
|
|
1333
1351
|
},
|
|
1334
1352
|
{
|
|
1335
1353
|
"token": "euiDataGridHeaderCell.sortedByAscendingMultiple",
|
|
@@ -1337,17 +1355,17 @@
|
|
|
1337
1355
|
"highlighting": "string",
|
|
1338
1356
|
"loc": {
|
|
1339
1357
|
"start": {
|
|
1340
|
-
"line":
|
|
1358
|
+
"line": 120,
|
|
1341
1359
|
"column": 16,
|
|
1342
|
-
"index":
|
|
1360
|
+
"index": 3986
|
|
1343
1361
|
},
|
|
1344
1362
|
"end": {
|
|
1345
|
-
"line":
|
|
1363
|
+
"line": 125,
|
|
1346
1364
|
"column": 18,
|
|
1347
|
-
"index":
|
|
1365
|
+
"index": 4224
|
|
1348
1366
|
}
|
|
1349
1367
|
},
|
|
1350
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1368
|
+
"filepath": "src/components/datagrid/body/header/column_sorting.tsx"
|
|
1351
1369
|
},
|
|
1352
1370
|
{
|
|
1353
1371
|
"token": "euiDataGridHeaderCell.sortedByDescendingMultiple",
|
|
@@ -1355,35 +1373,17 @@
|
|
|
1355
1373
|
"highlighting": "string",
|
|
1356
1374
|
"loc": {
|
|
1357
1375
|
"start": {
|
|
1358
|
-
"line":
|
|
1376
|
+
"line": 129,
|
|
1359
1377
|
"column": 16,
|
|
1360
|
-
"index":
|
|
1378
|
+
"index": 4302
|
|
1361
1379
|
},
|
|
1362
1380
|
"end": {
|
|
1363
|
-
"line":
|
|
1381
|
+
"line": 134,
|
|
1364
1382
|
"column": 18,
|
|
1365
|
-
"index":
|
|
1383
|
+
"index": 4542
|
|
1366
1384
|
}
|
|
1367
1385
|
},
|
|
1368
|
-
"filepath": "src/components/datagrid/body/header/
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"token": "euiDataGridHeaderCell.actionsPopoverScreenReaderText",
|
|
1372
|
-
"defString": "To navigate through the list of column actions, press the Tab or Up and Down arrow keys.",
|
|
1373
|
-
"highlighting": "string",
|
|
1374
|
-
"loc": {
|
|
1375
|
-
"start": {
|
|
1376
|
-
"line": 421,
|
|
1377
|
-
"column": 6,
|
|
1378
|
-
"index": 13604
|
|
1379
|
-
},
|
|
1380
|
-
"end": {
|
|
1381
|
-
"line": 424,
|
|
1382
|
-
"column": 8,
|
|
1383
|
-
"index": 13797
|
|
1384
|
-
}
|
|
1385
|
-
},
|
|
1386
|
-
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
1386
|
+
"filepath": "src/components/datagrid/body/header/column_sorting.tsx"
|
|
1387
1387
|
},
|
|
1388
1388
|
{
|
|
1389
1389
|
"token": "euiColumnSelector.dragHandleAriaLabel",
|
|
@@ -2471,14 +2471,14 @@
|
|
|
2471
2471
|
"highlighting": "string",
|
|
2472
2472
|
"loc": {
|
|
2473
2473
|
"start": {
|
|
2474
|
-
"line":
|
|
2474
|
+
"line": 552,
|
|
2475
2475
|
"column": 18,
|
|
2476
|
-
"index":
|
|
2476
|
+
"index": 17264
|
|
2477
2477
|
},
|
|
2478
2478
|
"end": {
|
|
2479
|
-
"line":
|
|
2479
|
+
"line": 555,
|
|
2480
2480
|
"column": 20,
|
|
2481
|
-
"index":
|
|
2481
|
+
"index": 17417
|
|
2482
2482
|
}
|
|
2483
2483
|
},
|
|
2484
2484
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
@@ -2867,14 +2867,14 @@
|
|
|
2867
2867
|
"highlighting": "string",
|
|
2868
2868
|
"loc": {
|
|
2869
2869
|
"start": {
|
|
2870
|
-
"line":
|
|
2870
|
+
"line": 83,
|
|
2871
2871
|
"column": 28,
|
|
2872
|
-
"index":
|
|
2872
|
+
"index": 2551
|
|
2873
2873
|
},
|
|
2874
2874
|
"end": {
|
|
2875
|
-
"line":
|
|
2875
|
+
"line": 86,
|
|
2876
2876
|
"column": 3,
|
|
2877
|
-
"index":
|
|
2877
|
+
"index": 2627
|
|
2878
2878
|
}
|
|
2879
2879
|
},
|
|
2880
2880
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
@@ -2885,14 +2885,14 @@
|
|
|
2885
2885
|
"highlighting": "string",
|
|
2886
2886
|
"loc": {
|
|
2887
2887
|
"start": {
|
|
2888
|
-
"line":
|
|
2888
|
+
"line": 87,
|
|
2889
2889
|
"column": 26,
|
|
2890
|
-
"index":
|
|
2890
|
+
"index": 2655
|
|
2891
2891
|
},
|
|
2892
2892
|
"end": {
|
|
2893
|
-
"line":
|
|
2893
|
+
"line": 91,
|
|
2894
2894
|
"column": 3,
|
|
2895
|
-
"index":
|
|
2895
|
+
"index": 2837
|
|
2896
2896
|
}
|
|
2897
2897
|
},
|
|
2898
2898
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
@@ -2903,14 +2903,14 @@
|
|
|
2903
2903
|
"highlighting": "string",
|
|
2904
2904
|
"loc": {
|
|
2905
2905
|
"start": {
|
|
2906
|
-
"line":
|
|
2906
|
+
"line": 104,
|
|
2907
2907
|
"column": 23,
|
|
2908
|
-
"index":
|
|
2908
|
+
"index": 2906
|
|
2909
2909
|
},
|
|
2910
2910
|
"end": {
|
|
2911
|
-
"line":
|
|
2911
|
+
"line": 108,
|
|
2912
2912
|
"column": 3,
|
|
2913
|
-
"index":
|
|
2913
|
+
"index": 3005
|
|
2914
2914
|
}
|
|
2915
2915
|
},
|
|
2916
2916
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
@@ -2921,14 +2921,14 @@
|
|
|
2921
2921
|
"highlighting": "string",
|
|
2922
2922
|
"loc": {
|
|
2923
2923
|
"start": {
|
|
2924
|
-
"line":
|
|
2924
|
+
"line": 109,
|
|
2925
2925
|
"column": 24,
|
|
2926
|
-
"index":
|
|
2926
|
+
"index": 3031
|
|
2927
2927
|
},
|
|
2928
2928
|
"end": {
|
|
2929
|
-
"line":
|
|
2929
|
+
"line": 113,
|
|
2930
2930
|
"column": 3,
|
|
2931
|
-
"index":
|
|
2931
|
+
"index": 3132
|
|
2932
2932
|
}
|
|
2933
2933
|
},
|
|
2934
2934
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
@@ -2939,14 +2939,14 @@
|
|
|
2939
2939
|
"highlighting": "string",
|
|
2940
2940
|
"loc": {
|
|
2941
2941
|
"start": {
|
|
2942
|
-
"line":
|
|
2942
|
+
"line": 74,
|
|
2943
2943
|
"column": 25,
|
|
2944
|
-
"index":
|
|
2944
|
+
"index": 2140
|
|
2945
2945
|
},
|
|
2946
2946
|
"end": {
|
|
2947
|
-
"line":
|
|
2947
|
+
"line": 77,
|
|
2948
2948
|
"column": 3,
|
|
2949
|
-
"index":
|
|
2949
|
+
"index": 2216
|
|
2950
2950
|
}
|
|
2951
2951
|
},
|
|
2952
2952
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -2957,14 +2957,14 @@
|
|
|
2957
2957
|
"highlighting": "string",
|
|
2958
2958
|
"loc": {
|
|
2959
2959
|
"start": {
|
|
2960
|
-
"line":
|
|
2960
|
+
"line": 78,
|
|
2961
2961
|
"column": 23,
|
|
2962
|
-
"index":
|
|
2962
|
+
"index": 2241
|
|
2963
2963
|
},
|
|
2964
2964
|
"end": {
|
|
2965
|
-
"line":
|
|
2965
|
+
"line": 81,
|
|
2966
2966
|
"column": 3,
|
|
2967
|
-
"index":
|
|
2967
|
+
"index": 2313
|
|
2968
2968
|
}
|
|
2969
2969
|
},
|
|
2970
2970
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -2975,14 +2975,14 @@
|
|
|
2975
2975
|
"highlighting": "string",
|
|
2976
2976
|
"loc": {
|
|
2977
2977
|
"start": {
|
|
2978
|
-
"line":
|
|
2978
|
+
"line": 84,
|
|
2979
2979
|
"column": 24,
|
|
2980
|
-
"index":
|
|
2980
|
+
"index": 2416
|
|
2981
2981
|
},
|
|
2982
2982
|
"end": {
|
|
2983
|
-
"line":
|
|
2983
|
+
"line": 87,
|
|
2984
2984
|
"column": 3,
|
|
2985
|
-
"index":
|
|
2985
|
+
"index": 2492
|
|
2986
2986
|
}
|
|
2987
2987
|
},
|
|
2988
2988
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -2993,14 +2993,14 @@
|
|
|
2993
2993
|
"highlighting": "string",
|
|
2994
2994
|
"loc": {
|
|
2995
2995
|
"start": {
|
|
2996
|
-
"line":
|
|
2996
|
+
"line": 88,
|
|
2997
2997
|
"column": 24,
|
|
2998
|
-
"index":
|
|
2998
|
+
"index": 2518
|
|
2999
2999
|
},
|
|
3000
3000
|
"end": {
|
|
3001
|
-
"line":
|
|
3001
|
+
"line": 91,
|
|
3002
3002
|
"column": 3,
|
|
3003
|
-
"index":
|
|
3003
|
+
"index": 2594
|
|
3004
3004
|
}
|
|
3005
3005
|
},
|
|
3006
3006
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -3011,14 +3011,14 @@
|
|
|
3011
3011
|
"highlighting": "string",
|
|
3012
3012
|
"loc": {
|
|
3013
3013
|
"start": {
|
|
3014
|
-
"line":
|
|
3014
|
+
"line": 92,
|
|
3015
3015
|
"column": 19,
|
|
3016
|
-
"index":
|
|
3016
|
+
"index": 2615
|
|
3017
3017
|
},
|
|
3018
3018
|
"end": {
|
|
3019
|
-
"line":
|
|
3019
|
+
"line": 92,
|
|
3020
3020
|
"column": 73,
|
|
3021
|
-
"index":
|
|
3021
|
+
"index": 2669
|
|
3022
3022
|
}
|
|
3023
3023
|
},
|
|
3024
3024
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -3029,14 +3029,14 @@
|
|
|
3029
3029
|
"highlighting": "string",
|
|
3030
3030
|
"loc": {
|
|
3031
3031
|
"start": {
|
|
3032
|
-
"line":
|
|
3032
|
+
"line": 140,
|
|
3033
3033
|
"column": 12,
|
|
3034
|
-
"index":
|
|
3034
|
+
"index": 3943
|
|
3035
3035
|
},
|
|
3036
3036
|
"end": {
|
|
3037
|
-
"line":
|
|
3037
|
+
"line": 143,
|
|
3038
3038
|
"column": 14,
|
|
3039
|
-
"index":
|
|
3039
|
+
"index": 4152
|
|
3040
3040
|
}
|
|
3041
3041
|
},
|
|
3042
3042
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -3047,14 +3047,14 @@
|
|
|
3047
3047
|
"highlighting": "string",
|
|
3048
3048
|
"loc": {
|
|
3049
3049
|
"start": {
|
|
3050
|
-
"line":
|
|
3050
|
+
"line": 155,
|
|
3051
3051
|
"column": 14,
|
|
3052
|
-
"index":
|
|
3052
|
+
"index": 4442
|
|
3053
3053
|
},
|
|
3054
3054
|
"end": {
|
|
3055
|
-
"line":
|
|
3055
|
+
"line": 158,
|
|
3056
3056
|
"column": 16,
|
|
3057
|
-
"index":
|
|
3057
|
+
"index": 4588
|
|
3058
3058
|
}
|
|
3059
3059
|
},
|
|
3060
3060
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -3065,14 +3065,14 @@
|
|
|
3065
3065
|
"highlighting": "string",
|
|
3066
3066
|
"loc": {
|
|
3067
3067
|
"start": {
|
|
3068
|
-
"line":
|
|
3068
|
+
"line": 160,
|
|
3069
3069
|
"column": 14,
|
|
3070
|
-
"index":
|
|
3070
|
+
"index": 4621
|
|
3071
3071
|
},
|
|
3072
3072
|
"end": {
|
|
3073
|
-
"line":
|
|
3073
|
+
"line": 163,
|
|
3074
3074
|
"column": 16,
|
|
3075
|
-
"index":
|
|
3075
|
+
"index": 4763
|
|
3076
3076
|
}
|
|
3077
3077
|
},
|
|
3078
3078
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
@@ -5119,12 +5119,12 @@
|
|
|
5119
5119
|
"start": {
|
|
5120
5120
|
"line": 114,
|
|
5121
5121
|
"column": 4,
|
|
5122
|
-
"index":
|
|
5122
|
+
"index": 3423
|
|
5123
5123
|
},
|
|
5124
5124
|
"end": {
|
|
5125
5125
|
"line": 114,
|
|
5126
5126
|
"column": 75,
|
|
5127
|
-
"index":
|
|
5127
|
+
"index": 3494
|
|
5128
5128
|
}
|
|
5129
5129
|
},
|
|
5130
5130
|
"filepath": "src/components/header/header_links/header_links.tsx"
|
|
@@ -5137,12 +5137,12 @@
|
|
|
5137
5137
|
"start": {
|
|
5138
5138
|
"line": 131,
|
|
5139
5139
|
"column": 4,
|
|
5140
|
-
"index":
|
|
5140
|
+
"index": 3922
|
|
5141
5141
|
},
|
|
5142
5142
|
"end": {
|
|
5143
5143
|
"line": 131,
|
|
5144
5144
|
"column": 69,
|
|
5145
|
-
"index":
|
|
5145
|
+
"index": 3987
|
|
5146
5146
|
}
|
|
5147
5147
|
},
|
|
5148
5148
|
"filepath": "src/components/header/header_links/header_links.tsx"
|