@elastic/eui 94.3.0 → 94.4.1
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/README.md +3 -0
- package/dist/eui_charts_theme.js +1519 -1519
- package/dist/eui_charts_theme.js.map +1 -1
- package/dist/eui_theme_dark.css +41 -497
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +41 -497
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +5 -1
- package/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +25 -11
- package/es/components/form/form.styles.js +26 -3
- package/es/components/markdown_editor/markdown_editor.js +12 -8
- package/es/components/markdown_editor/markdown_editor.styles.js +29 -0
- package/es/components/markdown_editor/markdown_editor_drop_zone.js +22 -9
- package/es/components/markdown_editor/markdown_editor_drop_zone.styles.js +33 -0
- package/es/components/markdown_editor/markdown_editor_footer.js +11 -2
- package/es/components/markdown_editor/markdown_editor_footer.styles.js +26 -0
- package/es/components/markdown_editor/markdown_editor_text_area.js +6 -1
- package/es/components/markdown_editor/markdown_editor_text_area.styles.js +22 -0
- package/es/components/markdown_editor/markdown_editor_toolbar.js +10 -2
- package/es/components/markdown_editor/markdown_editor_toolbar.styles.js +21 -0
- package/es/components/markdown_editor/markdown_format.js +9 -6
- package/es/components/markdown_editor/markdown_format.styles.js +25 -10
- package/es/components/markdown_editor/plugins/markdown_checkbox/renderer.js +9 -3
- package/es/components/markdown_editor/plugins/markdown_tooltip/renderer.js +13 -2
- package/es/components/selectable/selectable.js +10 -2
- package/es/components/selectable/selectable_list/selectable_list.js +95 -42
- package/es/components/selectable/selectable_list/selectable_list_item.js +234 -204
- package/es/components/selectable/selectable_option.js +9 -1
- package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +10 -2
- package/es/components/text/text_color.js +4 -1
- package/es/components/toast/global_toast_list_item.js +5 -5
- package/eui.d.ts +332 -234
- package/i18ntokens.json +124 -106
- package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +5 -1
- package/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +25 -11
- package/lib/components/form/form.styles.js +30 -4
- package/lib/components/markdown_editor/markdown_editor.js +12 -8
- package/lib/components/markdown_editor/markdown_editor.styles.js +37 -0
- package/lib/components/markdown_editor/markdown_editor_drop_zone.js +20 -8
- package/lib/components/markdown_editor/markdown_editor_drop_zone.styles.js +38 -0
- package/lib/components/markdown_editor/markdown_editor_footer.js +10 -1
- package/lib/components/markdown_editor/markdown_editor_footer.styles.js +33 -0
- package/lib/components/markdown_editor/markdown_editor_text_area.js +6 -1
- package/lib/components/markdown_editor/markdown_editor_text_area.styles.js +29 -0
- package/lib/components/markdown_editor/markdown_editor_toolbar.js +10 -2
- package/lib/components/markdown_editor/markdown_editor_toolbar.styles.js +28 -0
- package/lib/components/markdown_editor/markdown_format.js +8 -5
- package/lib/components/markdown_editor/markdown_format.styles.js +25 -10
- package/lib/components/markdown_editor/plugins/markdown_checkbox/renderer.js +9 -4
- package/lib/components/markdown_editor/plugins/markdown_tooltip/renderer.js +19 -10
- package/lib/components/selectable/selectable.js +10 -2
- package/lib/components/selectable/selectable_list/selectable_list.js +95 -42
- package/lib/components/selectable/selectable_list/selectable_list_item.js +241 -210
- package/lib/components/selectable/selectable_option.js +12 -1
- package/lib/components/selectable/selectable_templates/selectable_template_sitewide.js +10 -2
- package/lib/components/text/text_color.js +6 -2
- package/lib/components/toast/global_toast_list_item.js +5 -5
- package/optimize/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +5 -1
- package/optimize/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +25 -11
- package/optimize/es/components/form/form.styles.js +26 -3
- package/optimize/es/components/markdown_editor/markdown_editor.js +12 -8
- package/optimize/es/components/markdown_editor/markdown_editor.styles.js +29 -0
- package/optimize/es/components/markdown_editor/markdown_editor_drop_zone.js +19 -9
- package/optimize/es/components/markdown_editor/markdown_editor_drop_zone.styles.js +33 -0
- package/optimize/es/components/markdown_editor/markdown_editor_footer.js +11 -2
- package/optimize/es/components/markdown_editor/markdown_editor_footer.styles.js +26 -0
- package/optimize/es/components/markdown_editor/markdown_editor_text_area.js +6 -1
- package/optimize/es/components/markdown_editor/markdown_editor_text_area.styles.js +22 -0
- package/optimize/es/components/markdown_editor/markdown_editor_toolbar.js +10 -2
- package/optimize/es/components/markdown_editor/markdown_editor_toolbar.styles.js +21 -0
- package/optimize/es/components/markdown_editor/markdown_format.js +9 -6
- package/optimize/es/components/markdown_editor/markdown_format.styles.js +25 -10
- package/optimize/es/components/markdown_editor/plugins/markdown_checkbox/renderer.js +9 -3
- package/optimize/es/components/markdown_editor/plugins/markdown_tooltip/renderer.js +13 -2
- package/optimize/es/components/selectable/selectable_list/selectable_list.js +81 -38
- package/optimize/es/components/selectable/selectable_list/selectable_list_item.js +217 -198
- package/optimize/es/components/selectable/selectable_option.js +9 -1
- package/optimize/es/components/text/text_color.js +4 -1
- package/optimize/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +5 -1
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +25 -11
- package/optimize/lib/components/form/form.styles.js +30 -4
- package/optimize/lib/components/markdown_editor/markdown_editor.js +12 -8
- package/optimize/lib/components/markdown_editor/markdown_editor.styles.js +37 -0
- package/optimize/lib/components/markdown_editor/markdown_editor_drop_zone.js +24 -16
- package/optimize/lib/components/markdown_editor/markdown_editor_drop_zone.styles.js +38 -0
- package/optimize/lib/components/markdown_editor/markdown_editor_footer.js +10 -1
- package/optimize/lib/components/markdown_editor/markdown_editor_footer.styles.js +33 -0
- package/optimize/lib/components/markdown_editor/markdown_editor_text_area.js +6 -1
- package/optimize/lib/components/markdown_editor/markdown_editor_text_area.styles.js +29 -0
- package/optimize/lib/components/markdown_editor/markdown_editor_toolbar.js +10 -2
- package/optimize/lib/components/markdown_editor/markdown_editor_toolbar.styles.js +28 -0
- package/optimize/lib/components/markdown_editor/markdown_format.js +8 -5
- package/optimize/lib/components/markdown_editor/markdown_format.styles.js +25 -10
- package/optimize/lib/components/markdown_editor/plugins/markdown_checkbox/renderer.js +9 -4
- package/optimize/lib/components/markdown_editor/plugins/markdown_tooltip/renderer.js +19 -10
- package/optimize/lib/components/selectable/selectable_list/selectable_list.js +81 -38
- package/optimize/lib/components/selectable/selectable_list/selectable_list_item.js +224 -204
- package/optimize/lib/components/selectable/selectable_option.js +12 -1
- package/optimize/lib/components/text/text_color.js +6 -2
- package/package.json +5 -12
- package/src/components/date_picker/react-datepicker/LICENSE +21 -0
- package/src/components/date_picker/react-datepicker/README.md +168 -0
- package/src/components/date_picker/super_date_picker/date_popover/_absolute_tab.scss +13 -18
- package/src/components/form/checkbox/_checkbox.scss +23 -6
- package/src/components/index.scss +0 -1
- package/src/components/selectable/selectable_list/_selectable_list_item.scss +4 -0
- package/src/components/selectable/selectable_templates/_selectable_template_sitewide_option.scss +5 -1
- package/src/services/theme/README.md +153 -0
- package/src/test/README.md +44 -0
- package/src/themes/amsterdam/overrides/_index.scss +0 -1
- package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js +5 -1
- package/test-env/components/date_picker/super_date_picker/date_popover/absolute_tab.js +25 -11
- package/test-env/components/form/form.styles.js +30 -4
- package/test-env/components/markdown_editor/markdown_editor.js +12 -8
- package/test-env/components/markdown_editor/markdown_editor.styles.js +37 -0
- package/test-env/components/markdown_editor/markdown_editor_drop_zone.js +24 -16
- package/test-env/components/markdown_editor/markdown_editor_drop_zone.styles.js +38 -0
- package/test-env/components/markdown_editor/markdown_editor_footer.js +10 -1
- package/test-env/components/markdown_editor/markdown_editor_footer.styles.js +33 -0
- package/test-env/components/markdown_editor/markdown_editor_text_area.js +6 -1
- package/test-env/components/markdown_editor/markdown_editor_text_area.styles.js +29 -0
- package/test-env/components/markdown_editor/markdown_editor_toolbar.js +10 -2
- package/test-env/components/markdown_editor/markdown_editor_toolbar.styles.js +28 -0
- package/test-env/components/markdown_editor/markdown_format.js +8 -5
- package/test-env/components/markdown_editor/markdown_format.styles.js +25 -10
- package/test-env/components/markdown_editor/plugins/markdown_checkbox/renderer.js +9 -4
- package/test-env/components/markdown_editor/plugins/markdown_tooltip/renderer.js +19 -10
- package/test-env/components/selectable/selectable.js +10 -2
- package/test-env/components/selectable/selectable_list/selectable_list.js +95 -42
- package/test-env/components/selectable/selectable_list/selectable_list_item.js +233 -205
- package/test-env/components/selectable/selectable_option.js +12 -1
- package/test-env/components/selectable/selectable_templates/selectable_template_sitewide.js +10 -2
- package/test-env/components/text/text_color.js +6 -2
- package/test-env/components/toast/global_toast_list_item.js +5 -5
- package/src/components/markdown_editor/_index.scss +0 -9
- package/src/components/markdown_editor/_markdown_editor.scss +0 -22
- package/src/components/markdown_editor/_markdown_editor_drop_zone.scss +0 -58
- package/src/components/markdown_editor/_markdown_editor_footer.scss +0 -42
- package/src/components/markdown_editor/_markdown_editor_preview.scss +0 -20
- package/src/components/markdown_editor/_markdown_editor_text_area.scss +0 -43
- package/src/components/markdown_editor/_markdown_editor_toolbar.scss +0 -29
- package/src/components/markdown_editor/_markdown_format.scss +0 -78
- package/src/components/markdown_editor/_variables.scss +0 -1
- package/src/components/markdown_editor/plugins/markdown_tooltip.scss +0 -4
- package/src/themes/amsterdam/overrides/_markdown_editor.scss +0 -18
package/i18ntokens.json
CHANGED
|
@@ -611,6 +611,24 @@
|
|
|
611
611
|
},
|
|
612
612
|
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
613
613
|
},
|
|
614
|
+
{
|
|
615
|
+
"token": "euiCollapsedNavButton.ariaLabelButtonIcon",
|
|
616
|
+
"defString": "{title}, quick navigation menu",
|
|
617
|
+
"highlighting": "string",
|
|
618
|
+
"loc": {
|
|
619
|
+
"start": {
|
|
620
|
+
"line": 67,
|
|
621
|
+
"column": 30,
|
|
622
|
+
"index": 2043
|
|
623
|
+
},
|
|
624
|
+
"end": {
|
|
625
|
+
"line": 71,
|
|
626
|
+
"column": 3,
|
|
627
|
+
"index": 2159
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.tsx"
|
|
631
|
+
},
|
|
614
632
|
{
|
|
615
633
|
"token": "euiColorPickerSwatch.ariaLabel",
|
|
616
634
|
"defString": "Select {color} as the color",
|
|
@@ -2700,19 +2718,19 @@
|
|
|
2700
2718
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
2701
2719
|
},
|
|
2702
2720
|
{
|
|
2703
|
-
"token": "euiAbsoluteTab.
|
|
2704
|
-
"defString": "
|
|
2721
|
+
"token": "euiAbsoluteTab.dateFormatButtonLabel",
|
|
2722
|
+
"defString": "Parse date",
|
|
2705
2723
|
"highlighting": "string",
|
|
2706
2724
|
"loc": {
|
|
2707
2725
|
"start": {
|
|
2708
|
-
"line":
|
|
2726
|
+
"line": 169,
|
|
2709
2727
|
"column": 8,
|
|
2710
|
-
"index":
|
|
2728
|
+
"index": 4887
|
|
2711
2729
|
},
|
|
2712
2730
|
"end": {
|
|
2713
|
-
"line":
|
|
2731
|
+
"line": 179,
|
|
2714
2732
|
"column": 9,
|
|
2715
|
-
"index":
|
|
2733
|
+
"index": 5249
|
|
2716
2734
|
}
|
|
2717
2735
|
},
|
|
2718
2736
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
@@ -2723,14 +2741,14 @@
|
|
|
2723
2741
|
"highlighting": "string",
|
|
2724
2742
|
"loc": {
|
|
2725
2743
|
"start": {
|
|
2726
|
-
"line":
|
|
2744
|
+
"line": 169,
|
|
2727
2745
|
"column": 8,
|
|
2728
|
-
"index":
|
|
2746
|
+
"index": 4887
|
|
2729
2747
|
},
|
|
2730
2748
|
"end": {
|
|
2731
|
-
"line":
|
|
2749
|
+
"line": 179,
|
|
2732
2750
|
"column": 9,
|
|
2733
|
-
"index":
|
|
2751
|
+
"index": 5249
|
|
2734
2752
|
}
|
|
2735
2753
|
},
|
|
2736
2754
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
@@ -5225,14 +5243,14 @@
|
|
|
5225
5243
|
"highlighting": "string",
|
|
5226
5244
|
"loc": {
|
|
5227
5245
|
"start": {
|
|
5228
|
-
"line":
|
|
5246
|
+
"line": 89,
|
|
5229
5247
|
"column": 20,
|
|
5230
|
-
"index":
|
|
5248
|
+
"index": 2586
|
|
5231
5249
|
},
|
|
5232
5250
|
"end": {
|
|
5233
|
-
"line":
|
|
5251
|
+
"line": 92,
|
|
5234
5252
|
"column": 5,
|
|
5235
|
-
"index":
|
|
5253
|
+
"index": 2681
|
|
5236
5254
|
}
|
|
5237
5255
|
},
|
|
5238
5256
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5243,14 +5261,14 @@
|
|
|
5243
5261
|
"highlighting": "string",
|
|
5244
5262
|
"loc": {
|
|
5245
5263
|
"start": {
|
|
5246
|
-
"line":
|
|
5264
|
+
"line": 93,
|
|
5247
5265
|
"column": 21,
|
|
5248
|
-
"index":
|
|
5266
|
+
"index": 2704
|
|
5249
5267
|
},
|
|
5250
5268
|
"end": {
|
|
5251
|
-
"line":
|
|
5269
|
+
"line": 96,
|
|
5252
5270
|
"column": 5,
|
|
5253
|
-
"index":
|
|
5271
|
+
"index": 2802
|
|
5254
5272
|
}
|
|
5255
5273
|
},
|
|
5256
5274
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5261,14 +5279,14 @@
|
|
|
5261
5279
|
"highlighting": "string",
|
|
5262
5280
|
"loc": {
|
|
5263
5281
|
"start": {
|
|
5264
|
-
"line":
|
|
5282
|
+
"line": 97,
|
|
5265
5283
|
"column": 25,
|
|
5266
|
-
"index":
|
|
5284
|
+
"index": 2829
|
|
5267
5285
|
},
|
|
5268
5286
|
"end": {
|
|
5269
|
-
"line":
|
|
5287
|
+
"line": 100,
|
|
5270
5288
|
"column": 5,
|
|
5271
|
-
"index":
|
|
5289
|
+
"index": 2931
|
|
5272
5290
|
}
|
|
5273
5291
|
},
|
|
5274
5292
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5279,14 +5297,14 @@
|
|
|
5279
5297
|
"highlighting": "string",
|
|
5280
5298
|
"loc": {
|
|
5281
5299
|
"start": {
|
|
5282
|
-
"line":
|
|
5300
|
+
"line": 101,
|
|
5283
5301
|
"column": 24,
|
|
5284
|
-
"index":
|
|
5302
|
+
"index": 2957
|
|
5285
5303
|
},
|
|
5286
5304
|
"end": {
|
|
5287
|
-
"line":
|
|
5305
|
+
"line": 105,
|
|
5288
5306
|
"column": 5,
|
|
5289
|
-
"index":
|
|
5307
|
+
"index": 3102
|
|
5290
5308
|
}
|
|
5291
5309
|
},
|
|
5292
5310
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5297,14 +5315,14 @@
|
|
|
5297
5315
|
"highlighting": "string",
|
|
5298
5316
|
"loc": {
|
|
5299
5317
|
"start": {
|
|
5300
|
-
"line":
|
|
5318
|
+
"line": 106,
|
|
5301
5319
|
"column": 22,
|
|
5302
|
-
"index":
|
|
5320
|
+
"index": 3126
|
|
5303
5321
|
},
|
|
5304
5322
|
"end": {
|
|
5305
|
-
"line":
|
|
5323
|
+
"line": 109,
|
|
5306
5324
|
"column": 5,
|
|
5307
|
-
"index":
|
|
5325
|
+
"index": 3213
|
|
5308
5326
|
}
|
|
5309
5327
|
},
|
|
5310
5328
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5315,14 +5333,14 @@
|
|
|
5315
5333
|
"highlighting": "string",
|
|
5316
5334
|
"loc": {
|
|
5317
5335
|
"start": {
|
|
5318
|
-
"line":
|
|
5336
|
+
"line": 110,
|
|
5319
5337
|
"column": 22,
|
|
5320
|
-
"index":
|
|
5338
|
+
"index": 3237
|
|
5321
5339
|
},
|
|
5322
5340
|
"end": {
|
|
5323
|
-
"line":
|
|
5341
|
+
"line": 113,
|
|
5324
5342
|
"column": 5,
|
|
5325
|
-
"index":
|
|
5343
|
+
"index": 3331
|
|
5326
5344
|
}
|
|
5327
5345
|
},
|
|
5328
5346
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5333,14 +5351,14 @@
|
|
|
5333
5351
|
"highlighting": "string",
|
|
5334
5352
|
"loc": {
|
|
5335
5353
|
"start": {
|
|
5336
|
-
"line":
|
|
5354
|
+
"line": 116,
|
|
5337
5355
|
"column": 22,
|
|
5338
|
-
"index":
|
|
5356
|
+
"index": 3361
|
|
5339
5357
|
},
|
|
5340
5358
|
"end": {
|
|
5341
|
-
"line":
|
|
5359
|
+
"line": 119,
|
|
5342
5360
|
"column": 3,
|
|
5343
|
-
"index":
|
|
5361
|
+
"index": 3437
|
|
5344
5362
|
}
|
|
5345
5363
|
},
|
|
5346
5364
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5351,14 +5369,14 @@
|
|
|
5351
5369
|
"highlighting": "string",
|
|
5352
5370
|
"loc": {
|
|
5353
5371
|
"start": {
|
|
5354
|
-
"line":
|
|
5372
|
+
"line": 189,
|
|
5355
5373
|
"column": 12,
|
|
5356
|
-
"index":
|
|
5374
|
+
"index": 5383
|
|
5357
5375
|
},
|
|
5358
5376
|
"end": {
|
|
5359
|
-
"line":
|
|
5377
|
+
"line": 192,
|
|
5360
5378
|
"column": 14,
|
|
5361
|
-
"index":
|
|
5379
|
+
"index": 5495
|
|
5362
5380
|
}
|
|
5363
5381
|
},
|
|
5364
5382
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5369,14 +5387,14 @@
|
|
|
5369
5387
|
"highlighting": "string",
|
|
5370
5388
|
"loc": {
|
|
5371
5389
|
"start": {
|
|
5372
|
-
"line":
|
|
5390
|
+
"line": 212,
|
|
5373
5391
|
"column": 6,
|
|
5374
|
-
"index":
|
|
5392
|
+
"index": 6041
|
|
5375
5393
|
},
|
|
5376
5394
|
"end": {
|
|
5377
|
-
"line":
|
|
5395
|
+
"line": 215,
|
|
5378
5396
|
"column": 8,
|
|
5379
|
-
"index":
|
|
5397
|
+
"index": 6154
|
|
5380
5398
|
}
|
|
5381
5399
|
},
|
|
5382
5400
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5387,14 +5405,14 @@
|
|
|
5387
5405
|
"highlighting": "string",
|
|
5388
5406
|
"loc": {
|
|
5389
5407
|
"start": {
|
|
5390
|
-
"line":
|
|
5408
|
+
"line": 246,
|
|
5391
5409
|
"column": 16,
|
|
5392
|
-
"index":
|
|
5410
|
+
"index": 7049
|
|
5393
5411
|
},
|
|
5394
5412
|
"end": {
|
|
5395
|
-
"line":
|
|
5413
|
+
"line": 255,
|
|
5396
5414
|
"column": 17,
|
|
5397
|
-
"index":
|
|
5415
|
+
"index": 7477
|
|
5398
5416
|
}
|
|
5399
5417
|
},
|
|
5400
5418
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5405,14 +5423,14 @@
|
|
|
5405
5423
|
"highlighting": "string",
|
|
5406
5424
|
"loc": {
|
|
5407
5425
|
"start": {
|
|
5408
|
-
"line":
|
|
5426
|
+
"line": 246,
|
|
5409
5427
|
"column": 16,
|
|
5410
|
-
"index":
|
|
5428
|
+
"index": 7049
|
|
5411
5429
|
},
|
|
5412
5430
|
"end": {
|
|
5413
|
-
"line":
|
|
5431
|
+
"line": 255,
|
|
5414
5432
|
"column": 17,
|
|
5415
|
-
"index":
|
|
5433
|
+
"index": 7477
|
|
5416
5434
|
}
|
|
5417
5435
|
},
|
|
5418
5436
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5423,14 +5441,14 @@
|
|
|
5423
5441
|
"highlighting": "string",
|
|
5424
5442
|
"loc": {
|
|
5425
5443
|
"start": {
|
|
5426
|
-
"line":
|
|
5444
|
+
"line": 284,
|
|
5427
5445
|
"column": 16,
|
|
5428
|
-
"index":
|
|
5446
|
+
"index": 8537
|
|
5429
5447
|
},
|
|
5430
5448
|
"end": {
|
|
5431
|
-
"line":
|
|
5449
|
+
"line": 287,
|
|
5432
5450
|
"column": 18,
|
|
5433
|
-
"index":
|
|
5451
|
+
"index": 8660
|
|
5434
5452
|
}
|
|
5435
5453
|
},
|
|
5436
5454
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5441,14 +5459,14 @@
|
|
|
5441
5459
|
"highlighting": "string",
|
|
5442
5460
|
"loc": {
|
|
5443
5461
|
"start": {
|
|
5444
|
-
"line":
|
|
5462
|
+
"line": 314,
|
|
5445
5463
|
"column": 8,
|
|
5446
|
-
"index":
|
|
5464
|
+
"index": 9427
|
|
5447
5465
|
},
|
|
5448
5466
|
"end": {
|
|
5449
|
-
"line":
|
|
5467
|
+
"line": 317,
|
|
5450
5468
|
"column": 9,
|
|
5451
|
-
"index":
|
|
5469
|
+
"index": 9559
|
|
5452
5470
|
}
|
|
5453
5471
|
},
|
|
5454
5472
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -5459,14 +5477,14 @@
|
|
|
5459
5477
|
"highlighting": "string",
|
|
5460
5478
|
"loc": {
|
|
5461
5479
|
"start": {
|
|
5462
|
-
"line":
|
|
5480
|
+
"line": 251,
|
|
5463
5481
|
"column": 12,
|
|
5464
|
-
"index":
|
|
5482
|
+
"index": 7162
|
|
5465
5483
|
},
|
|
5466
5484
|
"end": {
|
|
5467
|
-
"line":
|
|
5485
|
+
"line": 251,
|
|
5468
5486
|
"column": 80,
|
|
5469
|
-
"index":
|
|
5487
|
+
"index": 7230
|
|
5470
5488
|
}
|
|
5471
5489
|
},
|
|
5472
5490
|
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
@@ -5477,14 +5495,14 @@
|
|
|
5477
5495
|
"highlighting": "string",
|
|
5478
5496
|
"loc": {
|
|
5479
5497
|
"start": {
|
|
5480
|
-
"line":
|
|
5498
|
+
"line": 262,
|
|
5481
5499
|
"column": 12,
|
|
5482
|
-
"index":
|
|
5500
|
+
"index": 7527
|
|
5483
5501
|
},
|
|
5484
5502
|
"end": {
|
|
5485
|
-
"line":
|
|
5503
|
+
"line": 265,
|
|
5486
5504
|
"column": 14,
|
|
5487
|
-
"index":
|
|
5505
|
+
"index": 7645
|
|
5488
5506
|
}
|
|
5489
5507
|
},
|
|
5490
5508
|
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
@@ -5909,14 +5927,14 @@
|
|
|
5909
5927
|
"highlighting": "string",
|
|
5910
5928
|
"loc": {
|
|
5911
5929
|
"start": {
|
|
5912
|
-
"line":
|
|
5930
|
+
"line": 213,
|
|
5913
5931
|
"column": 10,
|
|
5914
|
-
"index":
|
|
5932
|
+
"index": 6354
|
|
5915
5933
|
},
|
|
5916
5934
|
"end": {
|
|
5917
|
-
"line":
|
|
5935
|
+
"line": 216,
|
|
5918
5936
|
"column": 12,
|
|
5919
|
-
"index":
|
|
5937
|
+
"index": 6469
|
|
5920
5938
|
}
|
|
5921
5939
|
},
|
|
5922
5940
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -5927,14 +5945,14 @@
|
|
|
5927
5945
|
"highlighting": "string",
|
|
5928
5946
|
"loc": {
|
|
5929
5947
|
"start": {
|
|
5930
|
-
"line":
|
|
5948
|
+
"line": 219,
|
|
5931
5949
|
"column": 10,
|
|
5932
|
-
"index":
|
|
5950
|
+
"index": 6515
|
|
5933
5951
|
},
|
|
5934
5952
|
"end": {
|
|
5935
|
-
"line":
|
|
5953
|
+
"line": 222,
|
|
5936
5954
|
"column": 12,
|
|
5937
|
-
"index":
|
|
5955
|
+
"index": 6659
|
|
5938
5956
|
}
|
|
5939
5957
|
},
|
|
5940
5958
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -5945,14 +5963,14 @@
|
|
|
5945
5963
|
"highlighting": "string",
|
|
5946
5964
|
"loc": {
|
|
5947
5965
|
"start": {
|
|
5948
|
-
"line":
|
|
5966
|
+
"line": 227,
|
|
5949
5967
|
"column": 10,
|
|
5950
|
-
"index":
|
|
5968
|
+
"index": 6733
|
|
5951
5969
|
},
|
|
5952
5970
|
"end": {
|
|
5953
|
-
"line":
|
|
5971
|
+
"line": 230,
|
|
5954
5972
|
"column": 12,
|
|
5955
|
-
"index":
|
|
5973
|
+
"index": 6881
|
|
5956
5974
|
}
|
|
5957
5975
|
},
|
|
5958
5976
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -5963,14 +5981,14 @@
|
|
|
5963
5981
|
"highlighting": "string",
|
|
5964
5982
|
"loc": {
|
|
5965
5983
|
"start": {
|
|
5966
|
-
"line":
|
|
5984
|
+
"line": 235,
|
|
5967
5985
|
"column": 10,
|
|
5968
|
-
"index":
|
|
5986
|
+
"index": 6947
|
|
5969
5987
|
},
|
|
5970
5988
|
"end": {
|
|
5971
|
-
"line":
|
|
5989
|
+
"line": 238,
|
|
5972
5990
|
"column": 12,
|
|
5973
|
-
"index":
|
|
5991
|
+
"index": 7064
|
|
5974
5992
|
}
|
|
5975
5993
|
},
|
|
5976
5994
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -5981,14 +5999,14 @@
|
|
|
5981
5999
|
"highlighting": "string",
|
|
5982
6000
|
"loc": {
|
|
5983
6001
|
"start": {
|
|
5984
|
-
"line":
|
|
6002
|
+
"line": 241,
|
|
5985
6003
|
"column": 10,
|
|
5986
|
-
"index":
|
|
6004
|
+
"index": 7110
|
|
5987
6005
|
},
|
|
5988
6006
|
"end": {
|
|
5989
|
-
"line":
|
|
6007
|
+
"line": 244,
|
|
5990
6008
|
"column": 12,
|
|
5991
|
-
"index":
|
|
6009
|
+
"index": 7258
|
|
5992
6010
|
}
|
|
5993
6011
|
},
|
|
5994
6012
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -5999,14 +6017,14 @@
|
|
|
5999
6017
|
"highlighting": "string",
|
|
6000
6018
|
"loc": {
|
|
6001
6019
|
"start": {
|
|
6002
|
-
"line":
|
|
6020
|
+
"line": 249,
|
|
6003
6021
|
"column": 10,
|
|
6004
|
-
"index":
|
|
6022
|
+
"index": 7321
|
|
6005
6023
|
},
|
|
6006
6024
|
"end": {
|
|
6007
|
-
"line":
|
|
6025
|
+
"line": 252,
|
|
6008
6026
|
"column": 12,
|
|
6009
|
-
"index":
|
|
6027
|
+
"index": 7448
|
|
6010
6028
|
}
|
|
6011
6029
|
},
|
|
6012
6030
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -6017,14 +6035,14 @@
|
|
|
6017
6035
|
"highlighting": "string",
|
|
6018
6036
|
"loc": {
|
|
6019
6037
|
"start": {
|
|
6020
|
-
"line":
|
|
6038
|
+
"line": 255,
|
|
6021
6039
|
"column": 10,
|
|
6022
|
-
"index":
|
|
6040
|
+
"index": 7494
|
|
6023
6041
|
},
|
|
6024
6042
|
"end": {
|
|
6025
|
-
"line":
|
|
6043
|
+
"line": 258,
|
|
6026
6044
|
"column": 12,
|
|
6027
|
-
"index":
|
|
6045
|
+
"index": 7651
|
|
6028
6046
|
}
|
|
6029
6047
|
},
|
|
6030
6048
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -6035,14 +6053,14 @@
|
|
|
6035
6053
|
"highlighting": "string",
|
|
6036
6054
|
"loc": {
|
|
6037
6055
|
"start": {
|
|
6038
|
-
"line":
|
|
6056
|
+
"line": 261,
|
|
6039
6057
|
"column": 10,
|
|
6040
|
-
"index":
|
|
6058
|
+
"index": 7704
|
|
6041
6059
|
},
|
|
6042
6060
|
"end": {
|
|
6043
|
-
"line":
|
|
6061
|
+
"line": 264,
|
|
6044
6062
|
"column": 12,
|
|
6045
|
-
"index":
|
|
6063
|
+
"index": 7871
|
|
6046
6064
|
}
|
|
6047
6065
|
},
|
|
6048
6066
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -6053,14 +6071,14 @@
|
|
|
6053
6071
|
"highlighting": "string",
|
|
6054
6072
|
"loc": {
|
|
6055
6073
|
"start": {
|
|
6056
|
-
"line":
|
|
6074
|
+
"line": 267,
|
|
6057
6075
|
"column": 10,
|
|
6058
|
-
"index":
|
|
6076
|
+
"index": 7924
|
|
6059
6077
|
},
|
|
6060
6078
|
"end": {
|
|
6061
|
-
"line":
|
|
6079
|
+
"line": 270,
|
|
6062
6080
|
"column": 12,
|
|
6063
|
-
"index":
|
|
6081
|
+
"index": 8091
|
|
6064
6082
|
}
|
|
6065
6083
|
},
|
|
6066
6084
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_button.js
CHANGED
|
@@ -13,6 +13,7 @@ var _button_icon = require("../../../button/button_icon");
|
|
|
13
13
|
var _tool_tip = require("../../../tool_tip");
|
|
14
14
|
var _context = require("../../context");
|
|
15
15
|
var _collapsed_nav_button = require("./collapsed_nav_button.styles");
|
|
16
|
+
var _i18n = require("../../../i18n");
|
|
16
17
|
var _react2 = require("@emotion/react");
|
|
17
18
|
var _excluded = ["href", "title", "icon", "iconProps", "isSelected", "onClick", "hideToolTip", "linkProps", "titleElement"];
|
|
18
19
|
/*
|
|
@@ -46,6 +47,9 @@ var EuiCollapsedNavButton = function EuiCollapsedNavButton(_ref) {
|
|
|
46
47
|
var buttonClassName = (0, _classnames.default)('euiCollapsedNavButton', linkProps === null || linkProps === void 0 ? void 0 : linkProps.className);
|
|
47
48
|
var tooltipStyles = (0, _services.useEuiMemoizedStyles)(_collapsed_nav_button.euiCollapsedNavItemTooltipStyles);
|
|
48
49
|
var tooltipCssStyles = [tooltipStyles.euiCollapsedNavItemTooltip, tooltipStyles[side], hideToolTip && tooltipStyles.hidden];
|
|
50
|
+
var buttonIconAriaLabel = (0, _i18n.useEuiI18n)('euiCollapsedNavButton.ariaLabelButtonIcon', '{title}, quick navigation menu', {
|
|
51
|
+
title: title
|
|
52
|
+
});
|
|
49
53
|
return (0, _react2.jsx)(_tool_tip.EuiToolTip, {
|
|
50
54
|
content: title,
|
|
51
55
|
css: tooltipCssStyles,
|
|
@@ -58,7 +62,7 @@ var EuiCollapsedNavButton = function EuiCollapsedNavButton(_ref) {
|
|
|
58
62
|
color: "text",
|
|
59
63
|
href: href,
|
|
60
64
|
onClick: onClick,
|
|
61
|
-
"aria-label":
|
|
65
|
+
"aria-label": buttonIconAriaLabel
|
|
62
66
|
}, linkProps, {
|
|
63
67
|
// Exclusive union shenanigans
|
|
64
68
|
className: buttonClassName,
|
|
@@ -8,8 +8,9 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
8
8
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
9
9
|
var _moment = _interopRequireDefault(require("moment"));
|
|
10
10
|
var _datemath = _interopRequireDefault(require("@elastic/datemath"));
|
|
11
|
-
var _services = require("../../../../services");
|
|
12
11
|
var _form = require("../../../form");
|
|
12
|
+
var _flex = require("../../../flex");
|
|
13
|
+
var _button = require("../../../button");
|
|
13
14
|
var _code = require("../../../code");
|
|
14
15
|
var _i18n = require("../../../i18n");
|
|
15
16
|
var _date_picker = require("../../date_picker");
|
|
@@ -162,20 +163,29 @@ var EuiAbsoluteTab = /*#__PURE__*/function (_Component) {
|
|
|
162
163
|
locale: locale,
|
|
163
164
|
utcOffset: utcOffset
|
|
164
165
|
}), (0, _react2.jsx)(_i18n.EuiI18n, {
|
|
165
|
-
tokens: ['euiAbsoluteTab.
|
|
166
|
-
defaults: ['
|
|
166
|
+
tokens: ['euiAbsoluteTab.dateFormatButtonLabel', 'euiAbsoluteTab.dateFormatError'],
|
|
167
|
+
defaults: ['Parse date', 'Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.'],
|
|
167
168
|
values: {
|
|
168
169
|
dateFormat: (0, _react2.jsx)(_code.EuiCode, null, dateFormat)
|
|
169
170
|
}
|
|
170
171
|
}, function (_ref) {
|
|
171
172
|
var _ref2 = _slicedToArray(_ref, 2),
|
|
172
|
-
|
|
173
|
+
dateFormatButtonLabel = _ref2[0],
|
|
173
174
|
dateFormatError = _ref2[1];
|
|
174
|
-
return (0, _react2.jsx)(
|
|
175
|
+
return (0, _react2.jsx)(_flex.EuiFlexGroup, {
|
|
176
|
+
component: "form",
|
|
177
|
+
onSubmit: function onSubmit(e) {
|
|
178
|
+
e.preventDefault(); // Prevents a page refresh/reload
|
|
179
|
+
_this2.parseUserDateInput(textInputValue);
|
|
180
|
+
},
|
|
181
|
+
className: "euiSuperDatePicker__absoluteDateForm",
|
|
182
|
+
gutterSize: "s",
|
|
183
|
+
responsive: false
|
|
184
|
+
}, (0, _react2.jsx)(_form.EuiFormRow, {
|
|
175
185
|
className: "euiSuperDatePicker__absoluteDateFormRow",
|
|
176
186
|
isInvalid: isTextInvalid,
|
|
177
187
|
error: isTextInvalid ? dateFormatError : undefined,
|
|
178
|
-
helpText: hasUnparsedText
|
|
188
|
+
helpText: hasUnparsedText && !isTextInvalid ? dateFormatError : undefined
|
|
179
189
|
}, (0, _react2.jsx)(_form.EuiFieldText, {
|
|
180
190
|
compressed: true,
|
|
181
191
|
isInvalid: isTextInvalid,
|
|
@@ -184,13 +194,17 @@ var EuiAbsoluteTab = /*#__PURE__*/function (_Component) {
|
|
|
184
194
|
onPaste: function onPaste(event) {
|
|
185
195
|
_this2.parseUserDateInput(event.clipboardData.getData('text'));
|
|
186
196
|
},
|
|
187
|
-
onKeyDown: function onKeyDown(event) {
|
|
188
|
-
if (event.key === _services.keys.ENTER) {
|
|
189
|
-
_this2.parseUserDateInput(textInputValue);
|
|
190
|
-
}
|
|
191
|
-
},
|
|
192
197
|
"data-test-subj": "superDatePickerAbsoluteDateInput",
|
|
193
198
|
prepend: (0, _react2.jsx)(_form.EuiFormLabel, null, labelPrefix)
|
|
199
|
+
})), hasUnparsedText && (0, _react2.jsx)(_button.EuiButtonIcon, {
|
|
200
|
+
type: "submit",
|
|
201
|
+
className: "euiSuperDatePicker__absoluteDateFormSubmit",
|
|
202
|
+
size: "s",
|
|
203
|
+
display: "base",
|
|
204
|
+
iconType: "check",
|
|
205
|
+
"aria-label": dateFormatButtonLabel,
|
|
206
|
+
title: dateFormatButtonLabel,
|
|
207
|
+
"data-test-subj": "parseAbsoluteDateFormat"
|
|
194
208
|
}));
|
|
195
209
|
}));
|
|
196
210
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.euiFormVariables = exports.euiFormControlSize = exports.euiCustomControl = void 0;
|
|
6
|
+
exports.euiFormVariables = exports.euiFormControlText = exports.euiFormControlSize = exports.euiFormControlFocusStyles = exports.euiFormControlDefaultShadow = exports.euiCustomControl = void 0;
|
|
7
7
|
var _services = require("../../services");
|
|
8
8
|
var _global_styling = require("../../global_styling");
|
|
9
9
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
@@ -72,7 +72,9 @@ var euiFormVariables = function euiFormVariables(euiThemeContext) {
|
|
|
72
72
|
xxl: euiTheme.size.xxl
|
|
73
73
|
}
|
|
74
74
|
};
|
|
75
|
-
return _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, sizes), colors), customControlColors), iconSizes), controlLayout)
|
|
75
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, sizes), colors), customControlColors), iconSizes), controlLayout), {}, {
|
|
76
|
+
animationTiming: "".concat(euiTheme.animation.fast, " ease-in")
|
|
77
|
+
});
|
|
76
78
|
};
|
|
77
79
|
exports.euiFormVariables = euiFormVariables;
|
|
78
80
|
var euiFormControlSize = function euiFormControlSize(euiThemeContext) {
|
|
@@ -108,6 +110,30 @@ var euiCustomControl = function euiCustomControl(euiThemeContext) {
|
|
|
108
110
|
} else if (type === 'square') {
|
|
109
111
|
borderRadiusStyle = "border-radius: ".concat(form.controlCompressedBorderRadius, ";");
|
|
110
112
|
}
|
|
111
|
-
return "\n ".concat(padddingStyle, "\n ").concat(borderRadiusStyle, "\n border: ").concat(euiTheme.border.width.thin, " solid ").concat(form.customControlBorderColor, ";\n background: ").concat(euiTheme.colors.emptyShade, " no-repeat center;\n\n ").concat(_global_styling.euiCanAnimate, " {\n transition: background-color ").concat(
|
|
113
|
+
return "\n ".concat(padddingStyle, "\n ").concat(borderRadiusStyle, "\n border: ").concat(euiTheme.border.width.thin, " solid ").concat(form.customControlBorderColor, ";\n background: ").concat(euiTheme.colors.emptyShade, " no-repeat center;\n\n ").concat(_global_styling.euiCanAnimate, " {\n transition: background-color ").concat(form.animationTiming, ",\n border-color ").concat(form.animationTiming, ";\n }\n ");
|
|
112
114
|
};
|
|
113
|
-
exports.euiCustomControl = euiCustomControl;
|
|
115
|
+
exports.euiCustomControl = euiCustomControl;
|
|
116
|
+
var euiFormControlText = function euiFormControlText(euiThemeContext) {
|
|
117
|
+
var euiTheme = euiThemeContext.euiTheme;
|
|
118
|
+
var _euiFontSize = (0, _global_styling.euiFontSize)(euiThemeContext, 's'),
|
|
119
|
+
fontSize = _euiFontSize.fontSize;
|
|
120
|
+
var _euiFormVariables = euiFormVariables(euiThemeContext),
|
|
121
|
+
controlPlaceholderText = _euiFormVariables.controlPlaceholderText;
|
|
122
|
+
return "\n font-family: ".concat(euiTheme.font.family, ";\n font-size: ").concat(fontSize, ";\n color: ").concat(euiTheme.colors.text, ";\n\n ").concat(euiPlaceholderPerBrowser("color: ".concat(controlPlaceholderText)), "\n ");
|
|
123
|
+
};
|
|
124
|
+
exports.euiFormControlText = euiFormControlText;
|
|
125
|
+
var euiFormControlDefaultShadow = function euiFormControlDefaultShadow(euiThemeContext) {
|
|
126
|
+
var euiTheme = euiThemeContext.euiTheme;
|
|
127
|
+
var form = euiFormVariables(euiThemeContext);
|
|
128
|
+
return "\n box-shadow: inset 0 0 0 1px ".concat(form.borderColor, ";\n background-color: ").concat(form.backgroundColor, ";\n\n background-repeat: no-repeat;\n background-size: 0% 100%;\n background-image: linear-gradient(to top,\n var(--euiFormStateColor),\n var(--euiFormStateColor) ").concat(euiTheme.border.width.thick, ",\n transparent ").concat(euiTheme.border.width.thick, ",\n transparent 100%\n );\n\n ").concat(_global_styling.euiCanAnimate, " {\n transition:\n box-shadow ").concat(form.animationTiming, ",\n background-image ").concat(form.animationTiming, ",\n background-size ").concat(form.animationTiming, ",\n background-color ").concat(form.animationTiming, ";\n }\n ");
|
|
129
|
+
};
|
|
130
|
+
exports.euiFormControlDefaultShadow = euiFormControlDefaultShadow;
|
|
131
|
+
var euiFormControlFocusStyles = function euiFormControlFocusStyles(_ref) {
|
|
132
|
+
var euiTheme = _ref.euiTheme,
|
|
133
|
+
colorMode = _ref.colorMode;
|
|
134
|
+
return "\n --euiFormStateColor: ".concat(euiTheme.colors.primary, ";\n background-color: ").concat(colorMode === 'DARK' ? (0, _services.shade)(euiTheme.colors.emptyShade, 0.4) : euiTheme.colors.emptyShade, ";\n background-size: 100% 100%;\n outline: none; /* Remove all outlines and rely on our own bottom border gradient */\n");
|
|
135
|
+
};
|
|
136
|
+
exports.euiFormControlFocusStyles = euiFormControlFocusStyles;
|
|
137
|
+
var euiPlaceholderPerBrowser = function euiPlaceholderPerBrowser(content) {
|
|
138
|
+
return "\n &::-webkit-input-placeholder { ".concat(content, "; opacity: 1; }\n &::-moz-placeholder { ").concat(content, "; opacity: 1; }\n &:-ms-input-placeholder { ").concat(content, "; opacity: 1; }\n &:-moz-placeholder { ").concat(content, "; opacity: 1; }\n &::placeholder { ").concat(content, "; opacity: 1; }\n");
|
|
139
|
+
};
|