@gitlab/ui 134.9.0 → 135.0.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.
Files changed (107) hide show
  1. package/dist/components/base/accordion/accordion_item.js +1 -1
  2. package/dist/components/base/animated_icon/base_animated_icon.js +3 -0
  3. package/dist/components/base/color_mode_toggle/color_mode_toggle.js +11 -1
  4. package/dist/components/base/filtered_search/filtered_search.js +9 -0
  5. package/dist/components/base/filtered_search/filtered_search_suggestion.js +3 -0
  6. package/dist/components/base/filtered_search/filtered_search_term.js +9 -0
  7. package/dist/components/base/filtered_search/filtered_search_token.js +15 -0
  8. package/dist/components/base/filtered_search/filtered_search_token_segment.js +27 -0
  9. package/dist/components/base/form/form_combobox/form_combobox.js +18 -0
  10. package/dist/components/base/form/form_date/form_date.js +18 -0
  11. package/dist/components/base/form/form_fields/form_field_validator.js +9 -0
  12. package/dist/components/base/form/form_fields/form_fields_loop.js +3 -0
  13. package/dist/components/base/markdown/markdown.js +3 -0
  14. package/dist/components/base/new_dropdowns/base_dropdown/base_dropdown.js +54 -0
  15. package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.js +3 -0
  16. package/dist/components/base/new_dropdowns/listbox/listbox.js +3 -0
  17. package/dist/components/base/new_dropdowns/listbox/listbox_group.js +6 -0
  18. package/dist/components/base/new_dropdowns/listbox/listbox_item.js +15 -0
  19. package/dist/components/base/search_box_by_click/search_box_by_click.js +6 -0
  20. package/dist/components/base/segmented_control/segmented_control.js +6 -0
  21. package/dist/components/base/table_lite/table_lite.js +9 -0
  22. package/dist/components/base/tabs/tab/tab.js +3 -0
  23. package/dist/components/base/tabs/tabs/tabs.js +21 -0
  24. package/dist/components/base/toast/toast.js +12 -0
  25. package/dist/components/base/toggle/toggle.js +3 -0
  26. package/dist/components/base/token_selector/token_container.js +12 -0
  27. package/dist/components/base/token_selector/token_selector_dropdown.js +27 -0
  28. package/dist/components/charts/area/area.js +36 -0
  29. package/dist/components/charts/bar/bar.js +15 -0
  30. package/dist/components/charts/chart/chart.js +7 -1
  31. package/dist/components/charts/column/column.js +24 -0
  32. package/dist/components/charts/discrete_scatter/discrete_scatter.js +21 -0
  33. package/dist/components/charts/gauge/gauge.js +21 -0
  34. package/dist/components/charts/heatmap/heatmap.js +33 -0
  35. package/dist/components/charts/legend/legend.js +15 -0
  36. package/dist/components/charts/line/line.js +33 -0
  37. package/dist/components/charts/series_label/series_label.js +6 -0
  38. package/dist/components/charts/shared/tooltip/tooltip.js +6 -0
  39. package/dist/components/charts/shared/tooltip/tooltip_default_format/tooltip_default_format.js +3 -0
  40. package/dist/components/charts/single_stat/single_stat.js +30 -0
  41. package/dist/components/charts/stacked_column/stacked_column.js +55 -0
  42. package/dist/components/regions/empty_state/empty_state.js +3 -0
  43. package/dist/components/shared_components/clear_icon_button/clear_icon_button.js +6 -0
  44. package/dist/components/shared_components/close_button/close_button.js +3 -0
  45. package/dist/components/utilities/animated_number/animated_number.js +9 -0
  46. package/dist/components/utilities/intersperse/intersperse.js +6 -0
  47. package/dist/index.css +1 -1
  48. package/dist/index.css.map +1 -1
  49. package/dist/tailwind.css +1 -1
  50. package/dist/tailwind.css.map +1 -1
  51. package/dist/tokens/tokens_story.js +3 -0
  52. package/package.json +4 -3
  53. package/src/components/base/accordion/accordion_item.vue +6 -3
  54. package/src/components/base/animated_icon/base_animated_icon.vue +3 -0
  55. package/src/components/base/color_mode_toggle/color_mode_toggle.vue +11 -0
  56. package/src/components/base/filtered_search/filtered_search.vue +9 -0
  57. package/src/components/base/filtered_search/filtered_search_suggestion.vue +3 -0
  58. package/src/components/base/filtered_search/filtered_search_term.vue +9 -0
  59. package/src/components/base/filtered_search/filtered_search_token.vue +15 -0
  60. package/src/components/base/filtered_search/filtered_search_token_segment.vue +27 -0
  61. package/src/components/base/form/form_combobox/form_combobox.vue +18 -0
  62. package/src/components/base/form/form_date/form_date.vue +18 -0
  63. package/src/components/base/form/form_fields/form_field_validator.vue +9 -0
  64. package/src/components/base/form/form_fields/form_fields_loop.vue +3 -0
  65. package/src/components/base/icon/icon.figma.batch.ts +26 -0
  66. package/src/components/base/markdown/markdown.vue +3 -0
  67. package/src/components/base/new_dropdowns/base_dropdown/base_dropdown.vue +54 -0
  68. package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.vue +3 -0
  69. package/src/components/base/new_dropdowns/listbox/listbox.vue +3 -0
  70. package/src/components/base/new_dropdowns/listbox/listbox_group.vue +6 -0
  71. package/src/components/base/new_dropdowns/listbox/listbox_item.vue +15 -0
  72. package/src/components/base/pagination/pagination.scss +1 -0
  73. package/src/components/base/search_box_by_click/search_box_by_click.vue +6 -0
  74. package/src/components/base/segmented_control/segmented_control.vue +6 -0
  75. package/src/components/base/table_lite/table_lite.vue +9 -0
  76. package/src/components/base/tabs/tab/tab.vue +3 -0
  77. package/src/components/base/tabs/tabs/tabs.vue +21 -0
  78. package/src/components/base/toast/toast.vue +12 -0
  79. package/src/components/base/toggle/toggle.vue +3 -0
  80. package/src/components/base/token_selector/token_container.vue +12 -0
  81. package/src/components/base/token_selector/token_selector_dropdown.vue +27 -0
  82. package/src/components/charts/area/area.vue +36 -0
  83. package/src/components/charts/bar/bar.vue +15 -0
  84. package/src/components/charts/chart/chart.vue +7 -1
  85. package/src/components/charts/column/column.vue +24 -0
  86. package/src/components/charts/discrete_scatter/discrete_scatter.vue +21 -0
  87. package/src/components/charts/gauge/gauge.vue +21 -0
  88. package/src/components/charts/heatmap/heatmap.vue +33 -0
  89. package/src/components/charts/legend/legend.vue +15 -0
  90. package/src/components/charts/line/line.vue +33 -0
  91. package/src/components/charts/series_label/series_label.vue +6 -0
  92. package/src/components/charts/shared/tooltip/tooltip.vue +6 -0
  93. package/src/components/charts/shared/tooltip/tooltip_default_format/tooltip_default_format.vue +3 -0
  94. package/src/components/charts/single_stat/single_stat.vue +30 -0
  95. package/src/components/charts/stacked_column/stacked_column.vue +55 -0
  96. package/src/components/regions/empty_state/empty_state.vue +3 -0
  97. package/src/components/shared_components/clear_icon_button/clear_icon_button.vue +6 -0
  98. package/src/components/shared_components/close_button/close_button.vue +3 -0
  99. package/src/components/utilities/animated_number/animated_number.vue +9 -0
  100. package/src/components/utilities/intersperse/intersperse.vue +6 -0
  101. package/src/tokens/build/figma/mode.dark.json +35 -18
  102. package/src/tokens/build/figma/mode.json +35 -18
  103. package/src/tokens/build/json/tokens.dark.json +70 -36
  104. package/src/tokens/build/json/tokens.json +70 -36
  105. package/src/tokens/contextual/toggle.tokens.json +34 -17
  106. package/src/tokens/semantic/highlight.tokens.json +1 -1
  107. package/src/tokens/tokens_story.vue +3 -0
@@ -12,11 +12,17 @@ export default {
12
12
  GlTooltip: GlTooltipDirective,
13
13
  },
14
14
  props: {
15
+ /**
16
+ * The title attribute for the clear button.
17
+ */
15
18
  title: {
16
19
  type: String,
17
20
  required: false,
18
21
  default: () => translate('ClearIconButton.title', 'Clear'),
19
22
  },
23
+ /**
24
+ * Container element for the tooltip.
25
+ */
20
26
  tooltipContainer: {
21
27
  required: false,
22
28
  default: false,
@@ -8,6 +8,9 @@ export default {
8
8
  GlButton,
9
9
  },
10
10
  props: {
11
+ /**
12
+ * The aria-label for the close button.
13
+ */
11
14
  label: {
12
15
  type: String,
13
16
  required: false,
@@ -4,6 +4,9 @@ import { formatNumberToLocale } from '../../../utils/number_utils';
4
4
  export default {
5
5
  name: 'AnimatedNumber',
6
6
  props: {
7
+ /**
8
+ * The numeric value to animate.
9
+ */
7
10
  number: {
8
11
  type: Number,
9
12
  required: true,
@@ -24,11 +27,17 @@ export default {
24
27
  required: false,
25
28
  default: 0,
26
29
  },
30
+ /**
31
+ * When true, formats the number with digit group separators.
32
+ */
27
33
  useDelimiters: {
28
34
  type: Boolean,
29
35
  required: false,
30
36
  default: false,
31
37
  },
38
+ /**
39
+ * When true, animates the number when the component is mounted.
40
+ */
32
41
  animateOnMount: {
33
42
  type: Boolean,
34
43
  required: false,
@@ -44,11 +44,17 @@ export default {
44
44
  name: 'GlIntersperse',
45
45
  functional: true,
46
46
  props: {
47
+ /**
48
+ * The separator content to place between items.
49
+ */
47
50
  separator: {
48
51
  type: String,
49
52
  default: ', ',
50
53
  required: false,
51
54
  },
55
+ /**
56
+ * The separator content to place before the last item.
57
+ */
52
58
  lastSeparator: {
53
59
  type: String,
54
60
  default: '',
@@ -5115,7 +5115,8 @@
5115
5115
  "$description": "Used for the track color of an unchecked toggle switch in the default state.",
5116
5116
  "$extensions": {
5117
5117
  "com.figma.scopes": [
5118
- "SHAPE_FILL"
5118
+ "SHAPE_FILL",
5119
+ "FRAME_FILL"
5119
5120
  ]
5120
5121
  }
5121
5122
  },
@@ -5125,7 +5126,8 @@
5125
5126
  "$description": "Used for the track color of an unchecked toggle switch in the hover state.",
5126
5127
  "$extensions": {
5127
5128
  "com.figma.scopes": [
5128
- "SHAPE_FILL"
5129
+ "SHAPE_FILL",
5130
+ "FRAME_FILL"
5129
5131
  ]
5130
5132
  }
5131
5133
  },
@@ -5135,7 +5137,8 @@
5135
5137
  "$description": "Used for the track color of an unchecked toggle switch in the focus state.",
5136
5138
  "$extensions": {
5137
5139
  "com.figma.scopes": [
5138
- "SHAPE_FILL"
5140
+ "SHAPE_FILL",
5141
+ "FRAME_FILL"
5139
5142
  ]
5140
5143
  }
5141
5144
  },
@@ -5145,7 +5148,8 @@
5145
5148
  "$description": "Used for the track color of an unchecked toggle switch in the active state.",
5146
5149
  "$extensions": {
5147
5150
  "com.figma.scopes": [
5148
- "SHAPE_FILL"
5151
+ "SHAPE_FILL",
5152
+ "FRAME_FILL"
5149
5153
  ]
5150
5154
  }
5151
5155
  },
@@ -5155,7 +5159,8 @@
5155
5159
  "$description": "Used for the track color of a checked toggle switch in the default state.",
5156
5160
  "$extensions": {
5157
5161
  "com.figma.scopes": [
5158
- "SHAPE_FILL"
5162
+ "SHAPE_FILL",
5163
+ "FRAME_FILL"
5159
5164
  ]
5160
5165
  }
5161
5166
  },
@@ -5165,7 +5170,8 @@
5165
5170
  "$description": "Used for the track color of a checked toggle switch in the hover state.",
5166
5171
  "$extensions": {
5167
5172
  "com.figma.scopes": [
5168
- "SHAPE_FILL"
5173
+ "SHAPE_FILL",
5174
+ "FRAME_FILL"
5169
5175
  ]
5170
5176
  }
5171
5177
  },
@@ -5175,7 +5181,8 @@
5175
5181
  "$description": "Used for the track color of a checked toggle switch in the focus state.",
5176
5182
  "$extensions": {
5177
5183
  "com.figma.scopes": [
5178
- "SHAPE_FILL"
5184
+ "SHAPE_FILL",
5185
+ "FRAME_FILL"
5179
5186
  ]
5180
5187
  }
5181
5188
  },
@@ -5185,7 +5192,8 @@
5185
5192
  "$description": "Used for the track color of a checked toggle switch in the active state.",
5186
5193
  "$extensions": {
5187
5194
  "com.figma.scopes": [
5188
- "SHAPE_FILL"
5195
+ "SHAPE_FILL",
5196
+ "FRAME_FILL"
5189
5197
  ]
5190
5198
  }
5191
5199
  },
@@ -5195,7 +5203,8 @@
5195
5203
  "$description": "Used for the background color of the unchecked toggle switch thumb in the default state.",
5196
5204
  "$extensions": {
5197
5205
  "com.figma.scopes": [
5198
- "SHAPE_FILL"
5206
+ "SHAPE_FILL",
5207
+ "FRAME_FILL"
5199
5208
  ]
5200
5209
  }
5201
5210
  },
@@ -5205,7 +5214,8 @@
5205
5214
  "$description": "Used for the background color of the unchecked toggle switch thumb in the hover state.",
5206
5215
  "$extensions": {
5207
5216
  "com.figma.scopes": [
5208
- "SHAPE_FILL"
5217
+ "SHAPE_FILL",
5218
+ "FRAME_FILL"
5209
5219
  ]
5210
5220
  }
5211
5221
  },
@@ -5215,7 +5225,8 @@
5215
5225
  "$description": "Used for the background color of the unchecked toggle switch thumb in the focus state.",
5216
5226
  "$extensions": {
5217
5227
  "com.figma.scopes": [
5218
- "SHAPE_FILL"
5228
+ "SHAPE_FILL",
5229
+ "FRAME_FILL"
5219
5230
  ]
5220
5231
  }
5221
5232
  },
@@ -5225,7 +5236,8 @@
5225
5236
  "$description": "Used for the background color of the unchecked toggle switch thumb in the active state.",
5226
5237
  "$extensions": {
5227
5238
  "com.figma.scopes": [
5228
- "SHAPE_FILL"
5239
+ "SHAPE_FILL",
5240
+ "FRAME_FILL"
5229
5241
  ]
5230
5242
  }
5231
5243
  },
@@ -5235,7 +5247,8 @@
5235
5247
  "$description": "Used for the background color of the checked toggle switch thumb in the default state.",
5236
5248
  "$extensions": {
5237
5249
  "com.figma.scopes": [
5238
- "SHAPE_FILL"
5250
+ "SHAPE_FILL",
5251
+ "FRAME_FILL"
5239
5252
  ]
5240
5253
  }
5241
5254
  },
@@ -5245,7 +5258,8 @@
5245
5258
  "$description": "Used for the background color of the checked toggle switch thumb in the hover state.",
5246
5259
  "$extensions": {
5247
5260
  "com.figma.scopes": [
5248
- "SHAPE_FILL"
5261
+ "SHAPE_FILL",
5262
+ "FRAME_FILL"
5249
5263
  ]
5250
5264
  }
5251
5265
  },
@@ -5255,7 +5269,8 @@
5255
5269
  "$description": "Used for the background color of the checked toggle switch thumb in the focus state.",
5256
5270
  "$extensions": {
5257
5271
  "com.figma.scopes": [
5258
- "SHAPE_FILL"
5272
+ "SHAPE_FILL",
5273
+ "FRAME_FILL"
5259
5274
  ]
5260
5275
  }
5261
5276
  },
@@ -5265,7 +5280,8 @@
5265
5280
  "$description": "Used for the background color of the checked toggle switch thumb in the active state.",
5266
5281
  "$extensions": {
5267
5282
  "com.figma.scopes": [
5268
- "SHAPE_FILL"
5283
+ "SHAPE_FILL",
5284
+ "FRAME_FILL"
5269
5285
  ]
5270
5286
  }
5271
5287
  },
@@ -5275,7 +5291,8 @@
5275
5291
  "$description": "Used for the background color of the toggle switch thumb in the disabled state.",
5276
5292
  "$extensions": {
5277
5293
  "com.figma.scopes": [
5278
- "SHAPE_FILL"
5294
+ "SHAPE_FILL",
5295
+ "FRAME_FILL"
5279
5296
  ]
5280
5297
  }
5281
5298
  },
@@ -6922,7 +6939,7 @@
6922
6939
  "$description": "Used to provide additional visual emphasis for borders of temporarily targeted elements or when visualizing connections between related content, distinct from persistent states.",
6923
6940
  "$extensions": {
6924
6941
  "com.figma.scopes": [
6925
- "TEXT_FILL"
6942
+ "STROKE_COLOR"
6926
6943
  ]
6927
6944
  }
6928
6945
  },
@@ -5059,7 +5059,8 @@
5059
5059
  "$description": "Used for the track color of an unchecked toggle switch in the default state.",
5060
5060
  "$extensions": {
5061
5061
  "com.figma.scopes": [
5062
- "SHAPE_FILL"
5062
+ "SHAPE_FILL",
5063
+ "FRAME_FILL"
5063
5064
  ]
5064
5065
  }
5065
5066
  },
@@ -5069,7 +5070,8 @@
5069
5070
  "$description": "Used for the track color of an unchecked toggle switch in the hover state.",
5070
5071
  "$extensions": {
5071
5072
  "com.figma.scopes": [
5072
- "SHAPE_FILL"
5073
+ "SHAPE_FILL",
5074
+ "FRAME_FILL"
5073
5075
  ]
5074
5076
  }
5075
5077
  },
@@ -5079,7 +5081,8 @@
5079
5081
  "$description": "Used for the track color of an unchecked toggle switch in the focus state.",
5080
5082
  "$extensions": {
5081
5083
  "com.figma.scopes": [
5082
- "SHAPE_FILL"
5084
+ "SHAPE_FILL",
5085
+ "FRAME_FILL"
5083
5086
  ]
5084
5087
  }
5085
5088
  },
@@ -5089,7 +5092,8 @@
5089
5092
  "$description": "Used for the track color of an unchecked toggle switch in the active state.",
5090
5093
  "$extensions": {
5091
5094
  "com.figma.scopes": [
5092
- "SHAPE_FILL"
5095
+ "SHAPE_FILL",
5096
+ "FRAME_FILL"
5093
5097
  ]
5094
5098
  }
5095
5099
  },
@@ -5099,7 +5103,8 @@
5099
5103
  "$description": "Used for the track color of a checked toggle switch in the default state.",
5100
5104
  "$extensions": {
5101
5105
  "com.figma.scopes": [
5102
- "SHAPE_FILL"
5106
+ "SHAPE_FILL",
5107
+ "FRAME_FILL"
5103
5108
  ]
5104
5109
  }
5105
5110
  },
@@ -5109,7 +5114,8 @@
5109
5114
  "$description": "Used for the track color of a checked toggle switch in the hover state.",
5110
5115
  "$extensions": {
5111
5116
  "com.figma.scopes": [
5112
- "SHAPE_FILL"
5117
+ "SHAPE_FILL",
5118
+ "FRAME_FILL"
5113
5119
  ]
5114
5120
  }
5115
5121
  },
@@ -5119,7 +5125,8 @@
5119
5125
  "$description": "Used for the track color of a checked toggle switch in the focus state.",
5120
5126
  "$extensions": {
5121
5127
  "com.figma.scopes": [
5122
- "SHAPE_FILL"
5128
+ "SHAPE_FILL",
5129
+ "FRAME_FILL"
5123
5130
  ]
5124
5131
  }
5125
5132
  },
@@ -5129,7 +5136,8 @@
5129
5136
  "$description": "Used for the track color of a checked toggle switch in the active state.",
5130
5137
  "$extensions": {
5131
5138
  "com.figma.scopes": [
5132
- "SHAPE_FILL"
5139
+ "SHAPE_FILL",
5140
+ "FRAME_FILL"
5133
5141
  ]
5134
5142
  }
5135
5143
  },
@@ -5139,7 +5147,8 @@
5139
5147
  "$description": "Used for the background color of the unchecked toggle switch thumb in the default state.",
5140
5148
  "$extensions": {
5141
5149
  "com.figma.scopes": [
5142
- "SHAPE_FILL"
5150
+ "SHAPE_FILL",
5151
+ "FRAME_FILL"
5143
5152
  ]
5144
5153
  }
5145
5154
  },
@@ -5149,7 +5158,8 @@
5149
5158
  "$description": "Used for the background color of the unchecked toggle switch thumb in the hover state.",
5150
5159
  "$extensions": {
5151
5160
  "com.figma.scopes": [
5152
- "SHAPE_FILL"
5161
+ "SHAPE_FILL",
5162
+ "FRAME_FILL"
5153
5163
  ]
5154
5164
  }
5155
5165
  },
@@ -5159,7 +5169,8 @@
5159
5169
  "$description": "Used for the background color of the unchecked toggle switch thumb in the focus state.",
5160
5170
  "$extensions": {
5161
5171
  "com.figma.scopes": [
5162
- "SHAPE_FILL"
5172
+ "SHAPE_FILL",
5173
+ "FRAME_FILL"
5163
5174
  ]
5164
5175
  }
5165
5176
  },
@@ -5169,7 +5180,8 @@
5169
5180
  "$description": "Used for the background color of the unchecked toggle switch thumb in the active state.",
5170
5181
  "$extensions": {
5171
5182
  "com.figma.scopes": [
5172
- "SHAPE_FILL"
5183
+ "SHAPE_FILL",
5184
+ "FRAME_FILL"
5173
5185
  ]
5174
5186
  }
5175
5187
  },
@@ -5179,7 +5191,8 @@
5179
5191
  "$description": "Used for the background color of the checked toggle switch thumb in the default state.",
5180
5192
  "$extensions": {
5181
5193
  "com.figma.scopes": [
5182
- "SHAPE_FILL"
5194
+ "SHAPE_FILL",
5195
+ "FRAME_FILL"
5183
5196
  ]
5184
5197
  }
5185
5198
  },
@@ -5189,7 +5202,8 @@
5189
5202
  "$description": "Used for the background color of the checked toggle switch thumb in the hover state.",
5190
5203
  "$extensions": {
5191
5204
  "com.figma.scopes": [
5192
- "SHAPE_FILL"
5205
+ "SHAPE_FILL",
5206
+ "FRAME_FILL"
5193
5207
  ]
5194
5208
  }
5195
5209
  },
@@ -5199,7 +5213,8 @@
5199
5213
  "$description": "Used for the background color of the checked toggle switch thumb in the focus state.",
5200
5214
  "$extensions": {
5201
5215
  "com.figma.scopes": [
5202
- "SHAPE_FILL"
5216
+ "SHAPE_FILL",
5217
+ "FRAME_FILL"
5203
5218
  ]
5204
5219
  }
5205
5220
  },
@@ -5209,7 +5224,8 @@
5209
5224
  "$description": "Used for the background color of the checked toggle switch thumb in the active state.",
5210
5225
  "$extensions": {
5211
5226
  "com.figma.scopes": [
5212
- "SHAPE_FILL"
5227
+ "SHAPE_FILL",
5228
+ "FRAME_FILL"
5213
5229
  ]
5214
5230
  }
5215
5231
  },
@@ -5219,7 +5235,8 @@
5219
5235
  "$description": "Used for the background color of the toggle switch thumb in the disabled state.",
5220
5236
  "$extensions": {
5221
5237
  "com.figma.scopes": [
5222
- "SHAPE_FILL"
5238
+ "SHAPE_FILL",
5239
+ "FRAME_FILL"
5223
5240
  ]
5224
5241
  }
5225
5242
  },
@@ -6858,7 +6875,7 @@
6858
6875
  "$description": "Used to provide additional visual emphasis for borders of temporarily targeted elements or when visualizing connections between related content, distinct from persistent states.",
6859
6876
  "$extensions": {
6860
6877
  "com.figma.scopes": [
6861
- "TEXT_FILL"
6878
+ "STROKE_COLOR"
6862
6879
  ]
6863
6880
  }
6864
6881
  },