@cloudscape-design/code-view 3.0.83 → 3.0.85

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.
@@ -2,61 +2,6 @@ module.exports = { classes: [
2
2
  {
3
3
  "name": "CodeViewWrapper",
4
4
  "methods": [
5
- {
6
- "name": "blur",
7
- "returnType": {
8
- "name": "void",
9
- "isNullable": false
10
- },
11
- "parameters": [],
12
- "inheritedFrom": {
13
- "name": "AbstractWrapper.blur"
14
- }
15
- },
16
- {
17
- "name": "click",
18
- "description": "Performs a click by triggering a mouse event.\nNote that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.",
19
- "returnType": {
20
- "name": "void",
21
- "isNullable": false
22
- },
23
- "parameters": [
24
- {
25
- "name": "params",
26
- "typeName": "MouseEventInit",
27
- "flags": {
28
- "isOptional": true
29
- }
30
- }
31
- ],
32
- "inheritedFrom": {
33
- "name": "AbstractWrapper.click"
34
- }
35
- },
36
- {
37
- "name": "find",
38
- "returnType": {
39
- "name": "ElementWrapper",
40
- "isNullable": true,
41
- "typeArguments": [
42
- {
43
- "name": "NewElementType"
44
- }
45
- ]
46
- },
47
- "parameters": [
48
- {
49
- "name": "selector",
50
- "typeName": "string",
51
- "flags": {
52
- "isOptional": false
53
- }
54
- }
55
- ],
56
- "inheritedFrom": {
57
- "name": "AbstractWrapper.find"
58
- }
59
- },
60
5
  {
61
6
  "name": "findActions",
62
7
  "returnType": {
@@ -70,165 +15,6 @@ module.exports = { classes: [
70
15
  },
71
16
  "parameters": []
72
17
  },
73
- {
74
- "name": "findAll",
75
- "returnType": {
76
- "name": "Array",
77
- "isNullable": false,
78
- "typeArguments": [
79
- {
80
- "name": "ElementWrapper<NewElementType>"
81
- }
82
- ]
83
- },
84
- "parameters": [
85
- {
86
- "name": "selector",
87
- "typeName": "string",
88
- "flags": {
89
- "isOptional": false
90
- }
91
- }
92
- ],
93
- "inheritedFrom": {
94
- "name": "AbstractWrapper.findAll"
95
- }
96
- },
97
- {
98
- "name": "findAllByClassName",
99
- "returnType": {
100
- "name": "Array",
101
- "isNullable": false,
102
- "typeArguments": [
103
- {
104
- "name": "ElementWrapper<NewElementType>"
105
- }
106
- ]
107
- },
108
- "parameters": [
109
- {
110
- "name": "className",
111
- "typeName": "string",
112
- "flags": {
113
- "isOptional": false
114
- }
115
- }
116
- ],
117
- "inheritedFrom": {
118
- "name": "AbstractWrapper.findAllByClassName"
119
- }
120
- },
121
- {
122
- "name": "findAllComponents",
123
- "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector.\nIf no CSS selector is specified, returns all of the components that match the specified component type.\nIf no matching component is found, returns an empty array.",
124
- "returnType": {
125
- "name": "Array",
126
- "isNullable": false,
127
- "typeArguments": [
128
- {
129
- "name": "Wrapper"
130
- }
131
- ]
132
- },
133
- "parameters": [
134
- {
135
- "name": "ComponentClass",
136
- "typeName": "ComponentWrapperClass<Wrapper, ElementType>",
137
- "description": "Component's wrapper class",
138
- "flags": {
139
- "isOptional": false
140
- }
141
- },
142
- {
143
- "name": "selector",
144
- "typeName": "string",
145
- "description": "CSS selector",
146
- "flags": {
147
- "isOptional": true
148
- }
149
- }
150
- ],
151
- "inheritedFrom": {
152
- "name": "AbstractWrapper.findAllComponents"
153
- }
154
- },
155
- {
156
- "name": "findAny",
157
- "returnType": {
158
- "name": "ElementWrapper",
159
- "isNullable": true,
160
- "typeArguments": [
161
- {
162
- "name": "NewElementType"
163
- }
164
- ]
165
- },
166
- "parameters": [
167
- {
168
- "name": "selectors",
169
- "typeName": "Array<string>",
170
- "flags": {
171
- "isOptional": false
172
- }
173
- }
174
- ],
175
- "inheritedFrom": {
176
- "name": "AbstractWrapper.findAny"
177
- }
178
- },
179
- {
180
- "name": "findByClassName",
181
- "returnType": {
182
- "name": "ElementWrapper",
183
- "isNullable": true,
184
- "typeArguments": [
185
- {
186
- "name": "NewElementType"
187
- }
188
- ]
189
- },
190
- "parameters": [
191
- {
192
- "name": "className",
193
- "typeName": "string",
194
- "flags": {
195
- "isOptional": false
196
- }
197
- }
198
- ],
199
- "inheritedFrom": {
200
- "name": "AbstractWrapper.findByClassName"
201
- }
202
- },
203
- {
204
- "name": "findComponent",
205
- "description": "Returns the component wrapper matching the specified selector.\nIf the specified selector doesn't match any element, it returns `null`.\n\nNote: This function returns the specified component's wrapper even if the specified selector points to a different component type.",
206
- "returnType": {
207
- "name": "Wrapper",
208
- "isNullable": true
209
- },
210
- "parameters": [
211
- {
212
- "name": "selector",
213
- "typeName": "string",
214
- "description": "CSS selector",
215
- "flags": {
216
- "isOptional": false
217
- }
218
- },
219
- {
220
- "name": "ComponentClass",
221
- "typeName": "WrapperClass<Wrapper, ElementType>",
222
- "description": "Component's wrapper class",
223
- "flags": {
224
- "isOptional": false
225
- }
226
- }
227
- ],
228
- "inheritedFrom": {
229
- "name": "AbstractWrapper.findComponent"
230
- }
231
- },
232
18
  {
233
19
  "name": "findContent",
234
20
  "returnType": {
@@ -241,142 +27,6 @@ module.exports = { classes: [
241
27
  ]
242
28
  },
243
29
  "parameters": []
244
- },
245
- {
246
- "name": "fireEvent",
247
- "returnType": {
248
- "name": "void",
249
- "isNullable": false
250
- },
251
- "parameters": [
252
- {
253
- "name": "event",
254
- "typeName": "Event",
255
- "flags": {
256
- "isOptional": false
257
- }
258
- }
259
- ],
260
- "inheritedFrom": {
261
- "name": "AbstractWrapper.fireEvent"
262
- }
263
- },
264
- {
265
- "name": "focus",
266
- "returnType": {
267
- "name": "void",
268
- "isNullable": false
269
- },
270
- "parameters": [],
271
- "inheritedFrom": {
272
- "name": "AbstractWrapper.focus"
273
- }
274
- },
275
- {
276
- "name": "getElement",
277
- "returnType": {
278
- "name": "ElementType",
279
- "isNullable": false
280
- },
281
- "parameters": [],
282
- "inheritedFrom": {
283
- "name": "AbstractWrapper.getElement"
284
- }
285
- },
286
- {
287
- "name": "keydown",
288
- "returnType": {
289
- "name": "void",
290
- "isNullable": false
291
- },
292
- "parameters": [
293
- {
294
- "name": "keyCode",
295
- "typeName": "KeyCode",
296
- "flags": {
297
- "isOptional": false
298
- }
299
- }
300
- ],
301
- "inheritedFrom": {
302
- "name": "AbstractWrapper.keydown"
303
- }
304
- },
305
- {
306
- "name": "keydown",
307
- "returnType": {
308
- "name": "void",
309
- "isNullable": false
310
- },
311
- "parameters": [
312
- {
313
- "name": "keyboardEventProps",
314
- "typeName": "KeyboardEventInit",
315
- "flags": {
316
- "isOptional": false
317
- }
318
- }
319
- ],
320
- "inheritedFrom": {
321
- "name": "AbstractWrapper.keydown"
322
- }
323
- },
324
- {
325
- "name": "keypress",
326
- "returnType": {
327
- "name": "void",
328
- "isNullable": false
329
- },
330
- "parameters": [
331
- {
332
- "name": "keyCode",
333
- "typeName": "KeyCode",
334
- "flags": {
335
- "isOptional": false
336
- }
337
- }
338
- ],
339
- "inheritedFrom": {
340
- "name": "AbstractWrapper.keypress"
341
- }
342
- },
343
- {
344
- "name": "keyup",
345
- "returnType": {
346
- "name": "void",
347
- "isNullable": false
348
- },
349
- "parameters": [
350
- {
351
- "name": "keyCode",
352
- "typeName": "KeyCode",
353
- "flags": {
354
- "isOptional": false
355
- }
356
- }
357
- ],
358
- "inheritedFrom": {
359
- "name": "AbstractWrapper.keyup"
360
- }
361
- },
362
- {
363
- "name": "matches",
364
- "returnType": {
365
- "name": "this",
366
- "isNullable": true
367
- },
368
- "parameters": [
369
- {
370
- "name": "selector",
371
- "typeName": "string",
372
- "flags": {
373
- "isOptional": false
374
- }
375
- }
376
- ],
377
- "inheritedFrom": {
378
- "name": "AbstractWrapper.matches"
379
- }
380
30
  }
381
31
  ]
382
32
  }
@@ -2,25 +2,6 @@ module.exports = { classes: [
2
2
  {
3
3
  "name": "CodeViewWrapper",
4
4
  "methods": [
5
- {
6
- "name": "find",
7
- "returnType": {
8
- "name": "ElementWrapper",
9
- "isNullable": false
10
- },
11
- "parameters": [
12
- {
13
- "name": "selector",
14
- "typeName": "string",
15
- "flags": {
16
- "isOptional": false
17
- }
18
- }
19
- ],
20
- "inheritedFrom": {
21
- "name": "AbstractWrapper.find"
22
- }
23
- },
24
5
  {
25
6
  "name": "findActions",
26
7
  "returnType": {
@@ -29,154 +10,6 @@ module.exports = { classes: [
29
10
  },
30
11
  "parameters": []
31
12
  },
32
- {
33
- "name": "findAll",
34
- "returnType": {
35
- "name": "MultiElementWrapper",
36
- "isNullable": false,
37
- "typeArguments": [
38
- {
39
- "name": "ElementWrapper"
40
- }
41
- ]
42
- },
43
- "parameters": [
44
- {
45
- "name": "selector",
46
- "typeName": "string",
47
- "flags": {
48
- "isOptional": false
49
- }
50
- }
51
- ],
52
- "inheritedFrom": {
53
- "name": "AbstractWrapper.findAll"
54
- }
55
- },
56
- {
57
- "name": "findAllByClassName",
58
- "returnType": {
59
- "name": "MultiElementWrapper",
60
- "isNullable": false,
61
- "typeArguments": [
62
- {
63
- "name": "ElementWrapper"
64
- }
65
- ]
66
- },
67
- "parameters": [
68
- {
69
- "name": "className",
70
- "typeName": "string",
71
- "flags": {
72
- "isOptional": false
73
- }
74
- }
75
- ],
76
- "inheritedFrom": {
77
- "name": "AbstractWrapper.findAllByClassName"
78
- }
79
- },
80
- {
81
- "name": "findAllComponents",
82
- "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector.\nIf no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.",
83
- "returnType": {
84
- "name": "MultiElementWrapper",
85
- "isNullable": false,
86
- "typeArguments": [
87
- {
88
- "name": "Wrapper"
89
- }
90
- ]
91
- },
92
- "parameters": [
93
- {
94
- "name": "ComponentClass",
95
- "typeName": "ComponentWrapperClass<Wrapper>",
96
- "flags": {
97
- "isOptional": false
98
- }
99
- },
100
- {
101
- "name": "selector",
102
- "typeName": "string",
103
- "description": "CSS Selector",
104
- "flags": {
105
- "isOptional": true
106
- }
107
- }
108
- ],
109
- "inheritedFrom": {
110
- "name": "AbstractWrapper.findAllComponents"
111
- }
112
- },
113
- {
114
- "name": "findAny",
115
- "returnType": {
116
- "name": "ElementWrapper",
117
- "isNullable": false
118
- },
119
- "parameters": [
120
- {
121
- "name": "selectors",
122
- "typeName": "Array<string>",
123
- "flags": {
124
- "isOptional": false
125
- }
126
- }
127
- ],
128
- "inheritedFrom": {
129
- "name": "AbstractWrapper.findAny"
130
- }
131
- },
132
- {
133
- "name": "findByClassName",
134
- "returnType": {
135
- "name": "ElementWrapper",
136
- "isNullable": false
137
- },
138
- "parameters": [
139
- {
140
- "name": "className",
141
- "typeName": "string",
142
- "flags": {
143
- "isOptional": false
144
- }
145
- }
146
- ],
147
- "inheritedFrom": {
148
- "name": "AbstractWrapper.findByClassName"
149
- }
150
- },
151
- {
152
- "name": "findComponent",
153
- "description": "Returns a wrapper that matches the specified component type with the specified CSS selector.\n\nNote: This function returns the specified component's wrapper even if the specified selector points to a different component type.",
154
- "returnType": {
155
- "name": "Wrapper",
156
- "isNullable": false
157
- },
158
- "parameters": [
159
- {
160
- "name": "selector",
161
- "typeName": "string",
162
- "description": "CSS selector",
163
- "flags": {
164
- "isOptional": false
165
- }
166
- },
167
- {
168
- "name": "ComponentClass",
169
- "typeName": "WrapperClass<Wrapper>",
170
- "description": "Component's wrapper class",
171
- "flags": {
172
- "isOptional": false
173
- }
174
- }
175
- ],
176
- "inheritedFrom": {
177
- "name": "AbstractWrapper.findComponent"
178
- }
179
- },
180
13
  {
181
14
  "name": "findContent",
182
15
  "returnType": {
@@ -184,47 +17,6 @@ module.exports = { classes: [
184
17
  "isNullable": false
185
18
  },
186
19
  "parameters": []
187
- },
188
- {
189
- "name": "getElement",
190
- "returnType": {
191
- "name": "string",
192
- "isNullable": false
193
- },
194
- "parameters": [],
195
- "inheritedFrom": {
196
- "name": "AbstractWrapper.getElement"
197
- }
198
- },
199
- {
200
- "name": "matches",
201
- "returnType": {
202
- "name": "ElementWrapper",
203
- "isNullable": false
204
- },
205
- "parameters": [
206
- {
207
- "name": "selector",
208
- "typeName": "string",
209
- "flags": {
210
- "isOptional": false
211
- }
212
- }
213
- ],
214
- "inheritedFrom": {
215
- "name": "AbstractWrapper.matches"
216
- }
217
- },
218
- {
219
- "name": "toSelector",
220
- "returnType": {
221
- "name": "string",
222
- "isNullable": false
223
- },
224
- "parameters": [],
225
- "inheritedFrom": {
226
- "name": "AbstractWrapper.toSelector"
227
- }
228
20
  }
229
21
  ]
230
22
  }
@@ -1,5 +1,5 @@
1
1
  export var PACKAGE_SOURCE = "code-view";
2
- export var PACKAGE_VERSION = "3.0.0 (801da94b)";
2
+ export var PACKAGE_VERSION = "3.0.0 (fa3f7c48)";
3
3
  export var THEME = "open-source-visual-refresh";
4
4
  export var ALWAYS_VISUAL_REFRESH = true;
5
5
  export var SYSTEM = "console";
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "PACKAGE_SOURCE": "code-view",
3
- "PACKAGE_VERSION": "3.0.0 (801da94b)",
3
+ "PACKAGE_VERSION": "3.0.0 (fa3f7c48)",
4
4
  "THEME": "open-source-visual-refresh",
5
5
  "ALWAYS_VISUAL_REFRESH": true,
6
6
  "SYSTEM": "console"
@@ -444,18 +444,18 @@ export var colorStrokeCodeEditorGutterActiveLineDefault = "var(--color-stroke-co
444
444
  export var colorStrokeCodeEditorGutterActiveLineHover = "var(--color-stroke-code-editor-gutter-active-line-hover-vqrb6s, #f9f9fa)";
445
445
  export var colorTextAccent = "var(--color-text-accent-n1kmht, #006ce0)";
446
446
  export var colorTextBodyDefault = "var(--color-text-body-default-vvtq8u, #0f141a)";
447
- export var colorTextBodySecondary = "var(--color-text-body-secondary-bcbgoi, #424650)";
447
+ export var colorTextBodySecondary = "var(--color-text-body-secondary-yna5sb, #424650)";
448
448
  export var colorTextBreadcrumbCurrent = "var(--color-text-breadcrumb-current-2mqnkk, #656871)";
449
449
  export var colorTextBreadcrumbIcon = "var(--color-text-breadcrumb-icon-9j48ot, #8c8c94)";
450
- export var colorTextButtonInlineIconDefault = "var(--color-text-button-inline-icon-default-f8xgpk, #006ce0)";
450
+ export var colorTextButtonInlineIconDefault = "var(--color-text-button-inline-icon-default-sm4ql6, #006ce0)";
451
451
  export var colorTextButtonInlineIconDisabled = "var(--color-text-button-inline-icon-disabled-82hho0, #b4b4bb)";
452
- export var colorTextButtonInlineIconHover = "var(--color-text-button-inline-icon-hover-c08r6g, #002b66)";
452
+ export var colorTextButtonInlineIconHover = "var(--color-text-button-inline-icon-hover-rbyzfc, #002b66)";
453
453
  export var colorTextButtonNormalActive = "var(--color-text-button-normal-active-vihsxh, #002b66)";
454
454
  export var colorTextToggleButtonNormalPressed = "var(--color-text-toggle-button-normal-pressed-wnx2zl, #002b66)";
455
455
  export var colorTextButtonNormalDefault = "var(--color-text-button-normal-default-nzalii, #006ce0)";
456
456
  export var colorTextButtonNormalHover = "var(--color-text-button-normal-hover-gusgyv, #002b66)";
457
- export var colorTextLinkButtonNormalDefault = "var(--color-text-link-button-normal-default-5w3m67, #006ce0)";
458
- export var colorTextLinkButtonNormalHover = "var(--color-text-link-button-normal-hover-4awpjm, #002b66)";
457
+ export var colorTextLinkButtonNormalDefault = "var(--color-text-link-button-normal-default-srprth, #006ce0)";
458
+ export var colorTextLinkButtonNormalHover = "var(--color-text-link-button-normal-hover-jrnyw3, #002b66)";
459
459
  export var colorTextLinkButtonNormalActive = "var(--color-text-link-button-normal-active-js9ryu, #002b66)";
460
460
  export var colorTextButtonPrimaryActive = "var(--color-text-button-primary-active-refmba, #ffffff)";
461
461
  export var colorTextButtonPrimaryDefault = "var(--color-text-button-primary-default-mwl31m, #ffffff)";
@@ -507,13 +507,13 @@ export var colorTextToggleButtonIconPressed = "var(--color-text-toggle-button-ic
507
507
  export var colorTextInteractiveInvertedDefault = "var(--color-text-interactive-inverted-default-xlc0d5, #dedee3)";
508
508
  export var colorTextInteractiveInvertedHover = "var(--color-text-interactive-inverted-hover-65rnp7, #f9f9fa)";
509
509
  export var colorTextInverted = "var(--color-text-inverted-4v4dmq, #ffffff)";
510
- export var colorTextLabel = "var(--color-text-label-8248dg, #0f141a)";
510
+ export var colorTextLabel = "var(--color-text-label-28gfmc, #0f141a)";
511
511
  export var colorTextLayoutToggle = "var(--color-text-layout-toggle-1a15s3, #ffffff)";
512
512
  export var colorTextLayoutToggleActive = "var(--color-text-layout-toggle-active-ifu7qp, #ffffff)";
513
513
  export var colorTextLayoutToggleHover = "var(--color-text-layout-toggle-hover-9jwdce, #006ce0)";
514
514
  export var colorTextLayoutToggleSelected = "var(--color-text-layout-toggle-selected-xpximc, #ffffff)";
515
- export var colorTextLinkDefault = "var(--color-text-link-default-1dmm7z, #006ce0)";
516
- export var colorTextLinkHover = "var(--color-text-link-hover-sq1gxg, #002b66)";
515
+ export var colorTextLinkDefault = "var(--color-text-link-default-hude44, #006ce0)";
516
+ export var colorTextLinkHover = "var(--color-text-link-hover-2hfec2, #002b66)";
517
517
  export var colorTextLinkInvertedHover = "var(--color-text-link-inverted-hover-ocd3u3, #ffffff)";
518
518
  export var colorTextLinkButtonUnderline = "var(--color-text-link-button-underline-z4wjnv, transparent)";
519
519
  export var colorTextLinkButtonUnderlineHover = "var(--color-text-link-button-underline-hover-cn3mqh, transparent)";
@@ -6631,8 +6631,8 @@ module.exports.preset = {
6631
6631
  "dark": "{colorNeutral100}"
6632
6632
  },
6633
6633
  "colorTextBodySecondary": {
6634
- "light": "{colorNeutral650}",
6635
- "dark": "{colorNeutral350}"
6634
+ "light": "{colorNeutral100}",
6635
+ "dark": "{colorNeutral100}"
6636
6636
  },
6637
6637
  "colorTextBreadcrumbCurrent": {
6638
6638
  "light": "{colorNeutral600}",
@@ -6883,8 +6883,8 @@ module.exports.preset = {
6883
6883
  "dark": "{colorNeutral950}"
6884
6884
  },
6885
6885
  "colorTextLabel": {
6886
- "light": "{colorTextFormLabel}",
6887
- "dark": "{colorTextFormLabel}"
6886
+ "light": "{colorNeutral100}",
6887
+ "dark": "{colorNeutral100}"
6888
6888
  },
6889
6889
  "colorTextLayoutToggle": {
6890
6890
  "light": "{colorWhite}",
@@ -6903,12 +6903,12 @@ module.exports.preset = {
6903
6903
  "dark": "{colorNeutral950}"
6904
6904
  },
6905
6905
  "colorTextLinkDefault": {
6906
- "light": "{colorPrimary600}",
6907
- "dark": "{colorPrimary400}"
6906
+ "light": "{colorNeutral100}",
6907
+ "dark": "{colorNeutral100}"
6908
6908
  },
6909
6909
  "colorTextLinkHover": {
6910
- "light": "{colorPrimary900}",
6911
- "dark": "{colorPrimary300}"
6910
+ "light": "{colorWhite}",
6911
+ "dark": "{colorWhite}"
6912
6912
  },
6913
6913
  "colorTextLinkInvertedHover": {
6914
6914
  "light": "{colorWhite}",
@@ -7745,8 +7745,8 @@ module.exports.preset = {
7745
7745
  "dark": "{colorTextNotificationYellow}"
7746
7746
  },
7747
7747
  "colorTextBodySecondary": {
7748
- "light": "{colorNeutral650}",
7749
- "dark": "{colorNeutral350}"
7748
+ "light": "{colorTextNotificationYellow}",
7749
+ "dark": "{colorTextNotificationYellow}"
7750
7750
  },
7751
7751
  "colorTextBreadcrumbCurrent": {
7752
7752
  "light": "{colorNeutral600}",
@@ -7997,8 +7997,8 @@ module.exports.preset = {
7997
7997
  "dark": "{colorNeutral950}"
7998
7998
  },
7999
7999
  "colorTextLabel": {
8000
- "light": "{colorTextFormLabel}",
8001
- "dark": "{colorTextFormLabel}"
8000
+ "light": "{colorTextNotificationYellow}",
8001
+ "dark": "{colorTextNotificationYellow}"
8002
8002
  },
8003
8003
  "colorTextLayoutToggle": {
8004
8004
  "light": "{colorWhite}",
@@ -8017,12 +8017,12 @@ module.exports.preset = {
8017
8017
  "dark": "{colorNeutral950}"
8018
8018
  },
8019
8019
  "colorTextLinkDefault": {
8020
- "light": "{colorPrimary600}",
8021
- "dark": "{colorPrimary400}"
8020
+ "light": "{colorTextNotificationYellow}",
8021
+ "dark": "{colorTextNotificationYellow}"
8022
8022
  },
8023
8023
  "colorTextLinkHover": {
8024
- "light": "{colorPrimary900}",
8025
- "dark": "{colorPrimary300}"
8024
+ "light": "{colorTextNotificationYellow}",
8025
+ "dark": "{colorTextNotificationYellow}"
8026
8026
  },
8027
8027
  "colorTextLinkInvertedHover": {
8028
8028
  "light": "{colorTextNotificationYellow}",
@@ -13269,18 +13269,18 @@ module.exports.preset = {
13269
13269
  "colorStrokeCodeEditorGutterActiveLineHover": "--color-stroke-code-editor-gutter-active-line-hover-vqrb6s",
13270
13270
  "colorTextAccent": "--color-text-accent-n1kmht",
13271
13271
  "colorTextBodyDefault": "--color-text-body-default-vvtq8u",
13272
- "colorTextBodySecondary": "--color-text-body-secondary-bcbgoi",
13272
+ "colorTextBodySecondary": "--color-text-body-secondary-yna5sb",
13273
13273
  "colorTextBreadcrumbCurrent": "--color-text-breadcrumb-current-2mqnkk",
13274
13274
  "colorTextBreadcrumbIcon": "--color-text-breadcrumb-icon-9j48ot",
13275
- "colorTextButtonInlineIconDefault": "--color-text-button-inline-icon-default-f8xgpk",
13275
+ "colorTextButtonInlineIconDefault": "--color-text-button-inline-icon-default-sm4ql6",
13276
13276
  "colorTextButtonInlineIconDisabled": "--color-text-button-inline-icon-disabled-82hho0",
13277
- "colorTextButtonInlineIconHover": "--color-text-button-inline-icon-hover-c08r6g",
13277
+ "colorTextButtonInlineIconHover": "--color-text-button-inline-icon-hover-rbyzfc",
13278
13278
  "colorTextButtonNormalActive": "--color-text-button-normal-active-vihsxh",
13279
13279
  "colorTextToggleButtonNormalPressed": "--color-text-toggle-button-normal-pressed-wnx2zl",
13280
13280
  "colorTextButtonNormalDefault": "--color-text-button-normal-default-nzalii",
13281
13281
  "colorTextButtonNormalHover": "--color-text-button-normal-hover-gusgyv",
13282
- "colorTextLinkButtonNormalDefault": "--color-text-link-button-normal-default-5w3m67",
13283
- "colorTextLinkButtonNormalHover": "--color-text-link-button-normal-hover-4awpjm",
13282
+ "colorTextLinkButtonNormalDefault": "--color-text-link-button-normal-default-srprth",
13283
+ "colorTextLinkButtonNormalHover": "--color-text-link-button-normal-hover-jrnyw3",
13284
13284
  "colorTextLinkButtonNormalActive": "--color-text-link-button-normal-active-js9ryu",
13285
13285
  "colorTextButtonPrimaryActive": "--color-text-button-primary-active-refmba",
13286
13286
  "colorTextButtonPrimaryDefault": "--color-text-button-primary-default-mwl31m",
@@ -13332,13 +13332,13 @@ module.exports.preset = {
13332
13332
  "colorTextInteractiveInvertedDefault": "--color-text-interactive-inverted-default-xlc0d5",
13333
13333
  "colorTextInteractiveInvertedHover": "--color-text-interactive-inverted-hover-65rnp7",
13334
13334
  "colorTextInverted": "--color-text-inverted-4v4dmq",
13335
- "colorTextLabel": "--color-text-label-8248dg",
13335
+ "colorTextLabel": "--color-text-label-28gfmc",
13336
13336
  "colorTextLayoutToggle": "--color-text-layout-toggle-1a15s3",
13337
13337
  "colorTextLayoutToggleActive": "--color-text-layout-toggle-active-ifu7qp",
13338
13338
  "colorTextLayoutToggleHover": "--color-text-layout-toggle-hover-9jwdce",
13339
13339
  "colorTextLayoutToggleSelected": "--color-text-layout-toggle-selected-xpximc",
13340
- "colorTextLinkDefault": "--color-text-link-default-1dmm7z",
13341
- "colorTextLinkHover": "--color-text-link-hover-sq1gxg",
13340
+ "colorTextLinkDefault": "--color-text-link-default-hude44",
13341
+ "colorTextLinkHover": "--color-text-link-hover-2hfec2",
13342
13342
  "colorTextLinkInvertedHover": "--color-text-link-inverted-hover-ocd3u3",
13343
13343
  "colorTextLinkButtonUnderline": "--color-text-link-button-underline-z4wjnv",
13344
13344
  "colorTextLinkButtonUnderlineHover": "--color-text-link-button-underline-hover-cn3mqh",
@@ -6631,8 +6631,8 @@ export var preset = {
6631
6631
  "dark": "{colorNeutral100}"
6632
6632
  },
6633
6633
  "colorTextBodySecondary": {
6634
- "light": "{colorNeutral650}",
6635
- "dark": "{colorNeutral350}"
6634
+ "light": "{colorNeutral100}",
6635
+ "dark": "{colorNeutral100}"
6636
6636
  },
6637
6637
  "colorTextBreadcrumbCurrent": {
6638
6638
  "light": "{colorNeutral600}",
@@ -6883,8 +6883,8 @@ export var preset = {
6883
6883
  "dark": "{colorNeutral950}"
6884
6884
  },
6885
6885
  "colorTextLabel": {
6886
- "light": "{colorTextFormLabel}",
6887
- "dark": "{colorTextFormLabel}"
6886
+ "light": "{colorNeutral100}",
6887
+ "dark": "{colorNeutral100}"
6888
6888
  },
6889
6889
  "colorTextLayoutToggle": {
6890
6890
  "light": "{colorWhite}",
@@ -6903,12 +6903,12 @@ export var preset = {
6903
6903
  "dark": "{colorNeutral950}"
6904
6904
  },
6905
6905
  "colorTextLinkDefault": {
6906
- "light": "{colorPrimary600}",
6907
- "dark": "{colorPrimary400}"
6906
+ "light": "{colorNeutral100}",
6907
+ "dark": "{colorNeutral100}"
6908
6908
  },
6909
6909
  "colorTextLinkHover": {
6910
- "light": "{colorPrimary900}",
6911
- "dark": "{colorPrimary300}"
6910
+ "light": "{colorWhite}",
6911
+ "dark": "{colorWhite}"
6912
6912
  },
6913
6913
  "colorTextLinkInvertedHover": {
6914
6914
  "light": "{colorWhite}",
@@ -7745,8 +7745,8 @@ export var preset = {
7745
7745
  "dark": "{colorTextNotificationYellow}"
7746
7746
  },
7747
7747
  "colorTextBodySecondary": {
7748
- "light": "{colorNeutral650}",
7749
- "dark": "{colorNeutral350}"
7748
+ "light": "{colorTextNotificationYellow}",
7749
+ "dark": "{colorTextNotificationYellow}"
7750
7750
  },
7751
7751
  "colorTextBreadcrumbCurrent": {
7752
7752
  "light": "{colorNeutral600}",
@@ -7997,8 +7997,8 @@ export var preset = {
7997
7997
  "dark": "{colorNeutral950}"
7998
7998
  },
7999
7999
  "colorTextLabel": {
8000
- "light": "{colorTextFormLabel}",
8001
- "dark": "{colorTextFormLabel}"
8000
+ "light": "{colorTextNotificationYellow}",
8001
+ "dark": "{colorTextNotificationYellow}"
8002
8002
  },
8003
8003
  "colorTextLayoutToggle": {
8004
8004
  "light": "{colorWhite}",
@@ -8017,12 +8017,12 @@ export var preset = {
8017
8017
  "dark": "{colorNeutral950}"
8018
8018
  },
8019
8019
  "colorTextLinkDefault": {
8020
- "light": "{colorPrimary600}",
8021
- "dark": "{colorPrimary400}"
8020
+ "light": "{colorTextNotificationYellow}",
8021
+ "dark": "{colorTextNotificationYellow}"
8022
8022
  },
8023
8023
  "colorTextLinkHover": {
8024
- "light": "{colorPrimary900}",
8025
- "dark": "{colorPrimary300}"
8024
+ "light": "{colorTextNotificationYellow}",
8025
+ "dark": "{colorTextNotificationYellow}"
8026
8026
  },
8027
8027
  "colorTextLinkInvertedHover": {
8028
8028
  "light": "{colorTextNotificationYellow}",
@@ -13269,18 +13269,18 @@ export var preset = {
13269
13269
  "colorStrokeCodeEditorGutterActiveLineHover": "--color-stroke-code-editor-gutter-active-line-hover-vqrb6s",
13270
13270
  "colorTextAccent": "--color-text-accent-n1kmht",
13271
13271
  "colorTextBodyDefault": "--color-text-body-default-vvtq8u",
13272
- "colorTextBodySecondary": "--color-text-body-secondary-bcbgoi",
13272
+ "colorTextBodySecondary": "--color-text-body-secondary-yna5sb",
13273
13273
  "colorTextBreadcrumbCurrent": "--color-text-breadcrumb-current-2mqnkk",
13274
13274
  "colorTextBreadcrumbIcon": "--color-text-breadcrumb-icon-9j48ot",
13275
- "colorTextButtonInlineIconDefault": "--color-text-button-inline-icon-default-f8xgpk",
13275
+ "colorTextButtonInlineIconDefault": "--color-text-button-inline-icon-default-sm4ql6",
13276
13276
  "colorTextButtonInlineIconDisabled": "--color-text-button-inline-icon-disabled-82hho0",
13277
- "colorTextButtonInlineIconHover": "--color-text-button-inline-icon-hover-c08r6g",
13277
+ "colorTextButtonInlineIconHover": "--color-text-button-inline-icon-hover-rbyzfc",
13278
13278
  "colorTextButtonNormalActive": "--color-text-button-normal-active-vihsxh",
13279
13279
  "colorTextToggleButtonNormalPressed": "--color-text-toggle-button-normal-pressed-wnx2zl",
13280
13280
  "colorTextButtonNormalDefault": "--color-text-button-normal-default-nzalii",
13281
13281
  "colorTextButtonNormalHover": "--color-text-button-normal-hover-gusgyv",
13282
- "colorTextLinkButtonNormalDefault": "--color-text-link-button-normal-default-5w3m67",
13283
- "colorTextLinkButtonNormalHover": "--color-text-link-button-normal-hover-4awpjm",
13282
+ "colorTextLinkButtonNormalDefault": "--color-text-link-button-normal-default-srprth",
13283
+ "colorTextLinkButtonNormalHover": "--color-text-link-button-normal-hover-jrnyw3",
13284
13284
  "colorTextLinkButtonNormalActive": "--color-text-link-button-normal-active-js9ryu",
13285
13285
  "colorTextButtonPrimaryActive": "--color-text-button-primary-active-refmba",
13286
13286
  "colorTextButtonPrimaryDefault": "--color-text-button-primary-default-mwl31m",
@@ -13332,13 +13332,13 @@ export var preset = {
13332
13332
  "colorTextInteractiveInvertedDefault": "--color-text-interactive-inverted-default-xlc0d5",
13333
13333
  "colorTextInteractiveInvertedHover": "--color-text-interactive-inverted-hover-65rnp7",
13334
13334
  "colorTextInverted": "--color-text-inverted-4v4dmq",
13335
- "colorTextLabel": "--color-text-label-8248dg",
13335
+ "colorTextLabel": "--color-text-label-28gfmc",
13336
13336
  "colorTextLayoutToggle": "--color-text-layout-toggle-1a15s3",
13337
13337
  "colorTextLayoutToggleActive": "--color-text-layout-toggle-active-ifu7qp",
13338
13338
  "colorTextLayoutToggleHover": "--color-text-layout-toggle-hover-9jwdce",
13339
13339
  "colorTextLayoutToggleSelected": "--color-text-layout-toggle-selected-xpximc",
13340
- "colorTextLinkDefault": "--color-text-link-default-1dmm7z",
13341
- "colorTextLinkHover": "--color-text-link-hover-sq1gxg",
13340
+ "colorTextLinkDefault": "--color-text-link-default-hude44",
13341
+ "colorTextLinkHover": "--color-text-link-hover-2hfec2",
13342
13342
  "colorTextLinkInvertedHover": "--color-text-link-inverted-hover-ocd3u3",
13343
13343
  "colorTextLinkButtonUnderline": "--color-text-link-button-underline-z4wjnv",
13344
13344
  "colorTextLinkButtonUnderlineHover": "--color-text-link-button-underline-hover-cn3mqh",
@@ -1,3 +1,3 @@
1
1
  {
2
- "commit": "801da94b66ff1b9a36d7a26e15b54dc8f5038624"
2
+ "commit": "fa3f7c487dfba017009809a5886d8efb00da6db9"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudscape-design/code-view",
3
- "version": "3.0.83",
3
+ "version": "3.0.85",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/cloudscape-design/code-view.git"
@@ -72,10 +72,10 @@
72
72
  "eslint-plugin-react": "^7.31.11",
73
73
  "eslint-plugin-react-hooks": "^5.2.0",
74
74
  "eslint-plugin-simple-import-sort": "^12.1.1",
75
- "eslint-plugin-unicorn": "^59.0.1",
75
+ "eslint-plugin-unicorn": "^62.0.0",
76
76
  "execa": "^6.1.0",
77
- "globby": "^13.1.3",
78
77
  "globals": "^16.1.0",
78
+ "globby": "^13.1.3",
79
79
  "husky": "^9.1.7",
80
80
  "jest-image-snapshot": "^6.1.0",
81
81
  "jsdom": "^20.0.3",