chrome-devtools-frontend 1.0.1553956 → 1.0.1555430

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 (85) hide show
  1. package/front_end/Images/src/spark.svg +10 -0
  2. package/front_end/core/protocol_client/InspectorBackend.ts +1 -1
  3. package/front_end/core/root/Runtime.ts +0 -4
  4. package/front_end/core/sdk/DOMModel.ts +101 -7
  5. package/front_end/core/sdk/ResourceTreeModel.ts +0 -1
  6. package/front_end/generated/SupportedCSSProperties.js +18 -0
  7. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +1 -1
  8. package/front_end/models/ai_assistance/agents/StylingAgent.ts +1 -1
  9. package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +1 -1
  10. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +1 -1
  11. package/front_end/{ui/components → models}/annotations/AnnotationRepository.ts +3 -3
  12. package/front_end/models/annotations/README.md +7 -0
  13. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
  14. package/front_end/models/javascript_metadata/NativeFunctions.js +15 -23
  15. package/front_end/models/stack_trace/StackTrace.ts +13 -2
  16. package/front_end/models/stack_trace/StackTraceImpl.ts +81 -6
  17. package/front_end/models/stack_trace/StackTraceModel.ts +35 -3
  18. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +45 -4
  19. package/front_end/panels/ai_assistance/components/ArtifactsViewer.ts +57 -0
  20. package/front_end/panels/ai_assistance/components/ChatView.ts +1 -0
  21. package/front_end/panels/ai_assistance/components/artifactsViewer.css +10 -0
  22. package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +2 -6
  23. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +133 -118
  24. package/front_end/panels/application/preloading/PreloadingView.ts +12 -6
  25. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +230 -237
  26. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +96 -79
  27. package/front_end/panels/application/preloading/components/preloadingGrid.css +26 -29
  28. package/front_end/panels/application/preloading/preloadingView.css +6 -0
  29. package/front_end/panels/common/Annotation.ts +1 -1
  30. package/front_end/panels/common/AnnotationManager.ts +1 -1
  31. package/front_end/panels/common/ExtensionView.ts +1 -0
  32. package/front_end/panels/console/ConsoleContextSelector.ts +74 -9
  33. package/front_end/panels/console/consoleContextSelector.css +31 -29
  34. package/front_end/panels/coverage/coverageListView.css +59 -57
  35. package/front_end/panels/elements/ElementsPanel.ts +1 -1
  36. package/front_end/panels/elements/ElementsTreeElement.ts +39 -1
  37. package/front_end/panels/elements/ElementsTreeOutline.ts +23 -21
  38. package/front_end/panels/elements/TopLayerContainer.ts +26 -91
  39. package/front_end/panels/explain/components/ConsoleInsight.ts +3 -3
  40. package/front_end/panels/network/NetworkItemView.ts +1 -1
  41. package/front_end/panels/network/NetworkLogView.ts +1 -1
  42. package/front_end/panels/network/NetworkPanel.ts +1 -1
  43. package/front_end/panels/recorder/RecorderController.ts +0 -1
  44. package/front_end/panels/security/CookieControlsView.ts +21 -10
  45. package/front_end/panels/security/SecurityPanelSidebar.ts +5 -0
  46. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +0 -1
  47. package/front_end/panels/timeline/TimelineUIUtils.ts +5 -8
  48. package/front_end/panels/timeline/components/Sidebar.ts +16 -7
  49. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +169 -129
  50. package/front_end/panels/timeline/components/TimelineSummary.ts +75 -54
  51. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +16 -25
  52. package/front_end/panels/timeline/components/insights/Cache.ts +12 -8
  53. package/front_end/panels/timeline/components/insights/Checklist.ts +53 -43
  54. package/front_end/panels/timeline/components/insights/DOMSize.ts +25 -21
  55. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +6 -3
  56. package/front_end/panels/timeline/components/insights/DuplicatedJavaScript.ts +7 -7
  57. package/front_end/panels/timeline/components/insights/FontDisplay.ts +7 -5
  58. package/front_end/panels/timeline/components/insights/ForcedReflow.ts +11 -9
  59. package/front_end/panels/timeline/components/insights/INPBreakdown.ts +7 -6
  60. package/front_end/panels/timeline/components/insights/ImageDelivery.ts +7 -5
  61. package/front_end/panels/timeline/components/insights/InsightRenderer.ts +20 -18
  62. package/front_end/panels/timeline/components/insights/LCPBreakdown.ts +12 -12
  63. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +7 -3
  64. package/front_end/panels/timeline/components/insights/LegacyJavaScript.ts +7 -7
  65. package/front_end/panels/timeline/components/insights/ModernHTTP.ts +7 -5
  66. package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +15 -13
  67. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +2 -2
  68. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +15 -14
  69. package/front_end/panels/timeline/components/insights/Table.ts +152 -130
  70. package/front_end/panels/timeline/components/insights/ThirdParties.ts +11 -9
  71. package/front_end/panels/timeline/components/sidebarInsightsTab.css +50 -48
  72. package/front_end/panels/timeline/components/timelineSummary.css +58 -57
  73. package/front_end/panels/timeline/thirdPartyTreeView.css +109 -0
  74. package/front_end/panels/timeline/timelineDetailsView.css +2 -4
  75. package/front_end/panels/timeline/timelinePanel.css +0 -110
  76. package/front_end/third_party/chromium/README.chromium +1 -1
  77. package/front_end/ui/components/settings/SettingCheckbox.ts +4 -6
  78. package/front_end/ui/legacy/TabbedPane.ts +20 -13
  79. package/front_end/ui/legacy/ViewManager.ts +2 -32
  80. package/front_end/ui/legacy/Widget.ts +1 -3
  81. package/front_end/ui/legacy/tabbedPane.css +4 -7
  82. package/front_end/ui/visual_logging/KnownContextValues.ts +1 -0
  83. package/package.json +1 -1
  84. /package/front_end/{ui/components → models}/annotations/AnnotationType.ts +0 -0
  85. /package/front_end/{ui/components → models}/annotations/annotations.ts +0 -0
@@ -4,6 +4,115 @@
4
4
  * found in the LICENSE file.
5
5
  */
6
6
 
7
+ devtools-performance-third-party-tree-view {
8
+ .background-bar-container {
9
+ /* Dont need the bars in 3p table */
10
+ display: none;
11
+ }
12
+
13
+ .timeline-tree-view devtools-toolbar {
14
+ border: 0;
15
+ }
16
+
17
+ .timeline-tree-view .data-grid .odd {
18
+ background: none;
19
+ }
20
+
21
+ .timeline-tree-view .data-grid {
22
+ border-width: 0 !important; /* stylelint-disable-line declaration-no-important */
23
+
24
+ th {
25
+ background-color: var(--sys-color-cdt-base-container);
26
+ font-weight: var(--ref-typeface-weight-medium);
27
+ /* Center to give some gap against sorting triangle */
28
+ text-align: center;
29
+
30
+ &.site-column {
31
+ text-align: left;
32
+ }
33
+ }
34
+
35
+ tr .numeric-column,
36
+ tr .site-column {
37
+ border-left: none;
38
+ border-bottom: var(--sys-size-1) solid var(--sys-color-divider);
39
+ /* Don't let devtools-button size mess with things */
40
+ contain: strict;
41
+ padding: 0;
42
+ line-height: 21px;
43
+ }
44
+
45
+ .bottom-filler-td,
46
+ th.sortable {
47
+ border: none;
48
+ }
49
+
50
+ tr {
51
+ height: 22px;
52
+ }
53
+
54
+ devtools-button {
55
+ display: inline-flex;
56
+ visibility: hidden;
57
+ margin: 0 8px 0 4px;
58
+ vertical-align: top;
59
+ }
60
+
61
+ tr.revealed:hover,
62
+ tr.selected {
63
+ devtools-button {
64
+ visibility: visible;
65
+ }
66
+ }
67
+
68
+ /* Default data-grid has this element on the edge of the rows,
69
+ we don't need them for the 3P table. So for now set display to none. */
70
+ .corner,
71
+ &.data-grid-fits-viewport .corner {
72
+ display: none;
73
+ }
74
+
75
+ .data-grid-resizer:hover {
76
+ background: linear-gradient(to right, transparent, transparent 2px, var(--sys-color-divider) 2px, var(--sys-color-divider) 3px, transparent 3px) no-repeat 0 0 / 100% 100%;
77
+ }
78
+ }
79
+
80
+ .widget.vbox.timeline-tree-view {
81
+ /* See column width comments in populateColumns() */
82
+ max-width: min(100%, 550px);
83
+ min-width: 350px; /* Lower than this, there's not enough room for the entity name */
84
+ padding: 0 0 0 var(--sys-size-6);
85
+ border-left: var(--sys-size-1) solid var(--sys-color-divider);
86
+ }
87
+
88
+ /* While timeline treeview name-container uses flexbox to layout, it's overkill for this table's purposes.
89
+ By not using it, we can benefit from text-overflow:ellipsis applying correctly to names and entity-badges */
90
+ .timeline-tree-view .data-grid .name-container {
91
+ display: block;
92
+ padding-left: 2px;
93
+
94
+ .activity-name {
95
+ display: inline;
96
+ }
97
+
98
+ .activity-icon-container {
99
+ display: none;
100
+ }
101
+
102
+ .entity-badge {
103
+ margin-left: var(--sys-size-4);
104
+ font-weight: var(--ref-typeface-weight-medium);
105
+ padding: 0 var(--sys-size-2);
106
+ background-color: var(--sys-color-tonal-container);
107
+ border-radius: var(--sys-shape-corner-extra-small);
108
+ height: 16px;
109
+ line-height: 16px;
110
+ font-size: var(--sys-typescale-body5-size);
111
+ display: inline-block;
112
+ }
113
+ }
114
+ }
115
+
7
116
  .empty-table {
8
117
  display: none;
9
118
  }
@@ -60,10 +60,8 @@
60
60
  padding: var(--sys-size-4) 0 0;
61
61
  height: 100%;
62
62
 
63
- & > devtools-performance-timeline-summary {
64
- /* The category summary can't be more narrow than this, so we'll force a horizontal scrollbar
65
- Also this style can't be applied on the element's :host without !important, thus its here. */
66
- min-width: 192px;
63
+ >.widget:has(.timeline-summary) {
64
+ flex-grow: 0;
67
65
  }
68
66
  }
69
67
 
@@ -314,116 +314,6 @@
314
314
  flex: none;
315
315
  }
316
316
 
317
-
318
- devtools-performance-third-party-tree-view {
319
- .background-bar-container {
320
- /* Dont need the bars in 3p table */
321
- display: none;
322
- }
323
-
324
- .timeline-tree-view devtools-toolbar {
325
- border: 0;
326
- }
327
-
328
- .timeline-tree-view .data-grid .odd {
329
- background: none;
330
- }
331
-
332
- .timeline-tree-view .data-grid {
333
- border-width: 0 !important; /* stylelint-disable-line declaration-no-important */
334
-
335
- th {
336
- background-color: var(--sys-color-cdt-base-container);
337
- font-weight: var(--ref-typeface-weight-medium);
338
- /* Center to give some gap against sorting triangle */
339
- text-align: center;
340
-
341
- &.site-column {
342
- text-align: left;
343
- }
344
- }
345
-
346
- tr .numeric-column,
347
- tr .site-column {
348
- border-left: none;
349
- border-bottom: var(--sys-size-1) solid var(--sys-color-divider);
350
- /* Don't let devtools-button size mess with things */
351
- contain: strict;
352
- padding: 0;
353
- line-height: 21px;
354
- }
355
-
356
- .bottom-filler-td,
357
- th.sortable {
358
- border: none;
359
- }
360
-
361
- tr {
362
- height: 22px;
363
- }
364
-
365
- devtools-button {
366
- display: inline-flex;
367
- visibility: hidden;
368
- margin: 0 8px 0 4px;
369
- vertical-align: top;
370
- }
371
-
372
- tr.revealed:hover,
373
- tr.selected {
374
- devtools-button {
375
- visibility: visible;
376
- }
377
- }
378
-
379
- /* Default data-grid has this element on the edge of the rows,
380
- we don't need them for the 3P table. So for now set display to none. */
381
- .corner,
382
- &.data-grid-fits-viewport .corner {
383
- display: none;
384
- }
385
-
386
- .data-grid-resizer:hover {
387
- background: linear-gradient(to right, transparent, transparent 2px, var(--sys-color-divider) 2px, var(--sys-color-divider) 3px, transparent 3px) no-repeat 0 0 / 100% 100%;
388
- }
389
- }
390
-
391
- .widget.vbox.timeline-tree-view {
392
- /* See column width comments in populateColumns() */
393
- max-width: min(100%, 550px);
394
- min-width: 350px; /* Lower than this, there's not enough room for the entity name */
395
- padding: 0 0 0 var(--sys-size-6);
396
- border-left: var(--sys-size-1) solid var(--sys-color-divider);
397
- }
398
-
399
- /* While timeline treeview name-container uses flexbox to layout, it's overkill for this table's purposes.
400
- By not using it, we can benefit from text-overflow:ellipsis applying correctly to names and entity-badges */
401
- .timeline-tree-view .data-grid .name-container {
402
- display: block;
403
- padding-left: 2px;
404
-
405
- .activity-name {
406
- display: inline;
407
- }
408
-
409
- .activity-icon-container {
410
- display: none;
411
- }
412
-
413
- .entity-badge {
414
- margin-left: var(--sys-size-4);
415
- font-weight: var(--ref-typeface-weight-medium);
416
- padding: 0 var(--sys-size-2);
417
- background-color: var(--sys-color-tonal-container);
418
- border-radius: var(--sys-shape-corner-extra-small);
419
- height: 16px;
420
- line-height: 16px;
421
- font-size: var(--sys-typescale-body5-size);
422
- display: inline-block;
423
- }
424
- }
425
- }
426
-
427
317
  devtools-toolbar {
428
318
  .history-dropdown-button {
429
319
  width: var(--sys-size-23);
@@ -1,7 +1,7 @@
1
1
  Name: Dependencies sourced from the upstream `chromium` repository
2
2
  URL: https://chromium.googlesource.com/chromium/src
3
3
  Version: N/A
4
- Revision: 0f255732c24a64c7d64af50a8f1624c4c15d7d86
4
+ Revision: b5f7f1049c1c66374a70dc4e9110c063c9c66aea
5
5
  Update Mechanism: Manual (https://crbug.com/428069060)
6
6
  License: BSD-3-Clause
7
7
  License File: LICENSE
@@ -5,7 +5,7 @@
5
5
 
6
6
  import '../tooltips/tooltips.js';
7
7
  import './SettingDeprecationWarning.js';
8
- import '../../legacy/legacy.js';
8
+ import '../../kit/kit.js';
9
9
 
10
10
  import type * as Common from '../../../core/common/common.js';
11
11
  import * as Host from '../../../core/host/host.js';
@@ -90,13 +90,11 @@ export class SettingCheckbox extends HTMLElement {
90
90
  <devtools-tooltip id=${id} variant="rich">
91
91
  <span>${learnMore.tooltip()}</span><br />
92
92
  ${url
93
- ? html`<x-link
93
+ ? html`<devtools-link
94
94
  href=${url}
95
95
  class="link"
96
- jslog=${VisualLogging.link(jsLogContext).track({
97
- click: true,
98
- })}
99
- >${i18nString(UIStrings.learnMore)}</x-link
96
+ .jslogContext=${jsLogContext}
97
+ >${i18nString(UIStrings.learnMore)}</devtools-link
100
98
  >`
101
99
  : Lit.nothing}
102
100
  </devtools-tooltip>
@@ -9,8 +9,8 @@ import './Toolbar.js';
9
9
  import * as Common from '../../core/common/common.js';
10
10
  import * as i18n from '../../core/i18n/i18n.js';
11
11
  import * as Platform from '../../core/platform/platform.js';
12
+ import * as Annotations from '../../models/annotations/annotations.js';
12
13
  import * as Geometry from '../../models/geometry/geometry.js';
13
- import * as Annotations from '../../ui/components/annotations/annotations.js';
14
14
  import * as Buttons from '../../ui/components/buttons/buttons.js';
15
15
  import {type LitTemplate, render} from '../../ui/lit/lit.js';
16
16
  import * as VisualLogging from '../../ui/visual_logging/visual_logging.js';
@@ -1203,11 +1203,21 @@ export class TabbedPaneTab {
1203
1203
  if (!this.#tabElement) {
1204
1204
  return;
1205
1205
  }
1206
- const iconElement = this.#tabElement.querySelector('.ai-icon');
1206
+ const iconElement = this.#tabElement.querySelector('.spark');
1207
1207
  if (iconVisible) {
1208
1208
  if (!iconElement) {
1209
- const closeButton = this.#tabElement.querySelector('.close-button');
1210
- this.#tabElement.insertBefore(this.createTabAnnotationIcon(), closeButton);
1209
+ const spark = this.createTabAnnotationIcon();
1210
+ this.#tabElement.appendChild(spark);
1211
+
1212
+ const parentRect = this.#tabElement.parentElement?.getBoundingClientRect();
1213
+ if (!parentRect) {
1214
+ return;
1215
+ }
1216
+ const containerRect = this.tabElement.getBoundingClientRect();
1217
+ const iconWidth = spark.getBoundingClientRect().width;
1218
+ // Position the icon so that its right edge is at the container's right edge.
1219
+ const x = containerRect.x - parentRect.x + containerRect.width - iconWidth;
1220
+ (spark as HTMLElement).style.left = `${x}px`;
1211
1221
  }
1212
1222
  } else {
1213
1223
  iconElement?.remove();
@@ -1393,17 +1403,14 @@ export class TabbedPaneTab {
1393
1403
  return tabElement as HTMLElement;
1394
1404
  }
1395
1405
 
1396
- private createTabAnnotationIcon(): HTMLDivElement {
1397
- // TODO(finnur): Replace the ai-icon with the squiggly svg once it becomes available.
1398
- const iconContainer = document.createElement('div');
1399
- iconContainer.classList.add('ai-icon');
1406
+ private createTabAnnotationIcon(): Icon {
1400
1407
  const tabAnnotationIcon = new Icon();
1401
- tabAnnotationIcon.name = 'smart-assistant';
1408
+ tabAnnotationIcon.name = 'spark';
1402
1409
  tabAnnotationIcon.classList.add('small');
1403
- iconContainer.appendChild(tabAnnotationIcon);
1404
- iconContainer.setAttribute('title', i18nString(UIStrings.panelContainsAnnotation));
1405
- iconContainer.setAttribute('aria-label', i18nString(UIStrings.panelContainsAnnotation));
1406
- return iconContainer;
1410
+ tabAnnotationIcon.classList.add('spark');
1411
+ tabAnnotationIcon.setAttribute('title', i18nString(UIStrings.panelContainsAnnotation));
1412
+ tabAnnotationIcon.setAttribute('aria-label', i18nString(UIStrings.panelContainsAnnotation));
1413
+ return tabAnnotationIcon;
1407
1414
  }
1408
1415
 
1409
1416
  private createCloseIconButton(): Buttons.Button.Button {
@@ -9,7 +9,7 @@ import * as Common from '../../core/common/common.js';
9
9
  import * as Host from '../../core/host/host.js';
10
10
  import * as i18n from '../../core/i18n/i18n.js';
11
11
  import * as Platform from '../../core/platform/platform.js';
12
- import * as Root from '../../core/root/root.js';
12
+ import type * as Root from '../../core/root/root.js';
13
13
  import type * as Foundation from '../../foundation/foundation.js';
14
14
  import {createIcon, type Icon} from '../kit/kit.js';
15
15
  import * as VisualLogging from '../visual_logging/visual_logging.js';
@@ -18,7 +18,7 @@ import * as ARIAUtils from './ARIAUtils.js';
18
18
  import type {ContextMenu} from './ContextMenu.js';
19
19
  import {type EventData, Events as TabbedPaneEvents, TabbedPane} from './TabbedPane.js';
20
20
  import {type ItemsProvider, type ToolbarItem, ToolbarMenuButton} from './Toolbar.js';
21
- import {createTextChild, PromotionManager} from './UIUtils.js';
21
+ import {createTextChild} from './UIUtils.js';
22
22
  import type {TabbedViewLocation, View, ViewLocation} from './View.js';
23
23
  import viewContainersStyles from './viewContainers.css.js';
24
24
  import {
@@ -756,31 +756,6 @@ class TabbedLocation extends Location implements TabbedViewLocation {
756
756
  const views = Array.from(this.views.values());
757
757
  views.sort((viewa, viewb) => viewa.title().localeCompare(viewb.title()));
758
758
 
759
- const freestylerView = views.find(view => view.viewId() === 'freestyler');
760
- if (freestylerView) {
761
- const featureName = Root.Runtime.hostConfig.devToolsFreestyler?.featureName;
762
- const promotionId =
763
- (freestylerView instanceof PreRegisteredView) ? freestylerView.featurePromotionId() : undefined;
764
- // Register this with the PromotionManager and the back-end, in order to make sure that
765
- // showing the general ai assistance panel new badge is synchronized.
766
- const handler = (): void => {
767
- void this.showView(freestylerView, undefined, true);
768
- if (promotionId) {
769
- PromotionManager.instance().recordFeatureInteraction(promotionId);
770
- }
771
- };
772
- contextMenu.defaultSection().appendItem(freestylerView.title(), handler, {
773
- isPreviewFeature: freestylerView.isPreviewFeature(),
774
- jslogContext: freestylerView.viewId(),
775
- // Request to show a new badge in the native context menu only if:
776
- // 1. The promotion manager agrees that we may show it, or 2. the promotion manager doesn't track this badge.
777
- // Note that this is only a request to show the new badge, the back-end will decide whether
778
- // or not it will show it depending on the user education service.
779
- featureName: !promotionId || PromotionManager.instance().maybeShowPromotion(promotionId) ? featureName :
780
- undefined,
781
- });
782
- }
783
-
784
759
  for (const view of views) {
785
760
  const title = view.title();
786
761
 
@@ -792,11 +767,6 @@ class TabbedLocation extends Location implements TabbedViewLocation {
792
767
  continue;
793
768
  }
794
769
 
795
- if (view.viewId() === 'freestyler') {
796
- // We have already taken care of this.
797
- continue;
798
- }
799
-
800
770
  const isPreviewFeature = view.isPreviewFeature();
801
771
  contextMenu.defaultSection().appendItem(
802
772
  title, this.showView.bind(this, view, undefined, true), {isPreviewFeature, jslogContext: view.viewId()});
@@ -998,9 +998,7 @@ export class Widget {
998
998
  * assert.isTrue(widget.someDataLoaded);
999
999
  * ```
1000
1000
  *
1001
- * @returns a promise that resolves to a `boolean` when the widget has finished
1002
- * updating, the value is `true` if there are no more pending updates,
1003
- * and `false` if the update cycle triggered another update.
1001
+ * @returns a promise that resolves when the widget has finished updating.
1004
1002
  */
1005
1003
  get updateComplete(): Promise<void> {
1006
1004
  return this.#updateComplete;
@@ -521,12 +521,9 @@
521
521
  }
522
522
  }
523
523
 
524
- .tabbed-pane-header-tab.ai .ai-icon {
525
- background-color: var(--sys-color-primary);
526
- border-radius: 50%;
527
- margin-left: 4px;
528
- }
524
+ .spark {
525
+ position: absolute;
526
+ top: 2px;
529
527
 
530
- .tabbed-pane-header-tab.ai .ai-icon devtools-icon {
531
- color: var(--sys-color-on-primary);
528
+ --icon-default: var(--sys-color-primary);
532
529
  }
@@ -4055,6 +4055,7 @@ export const knownContextValues = new Set([
4055
4055
  'translate',
4056
4056
  'transport',
4057
4057
  'tree',
4058
+ 'trigger-scope',
4058
4059
  'tritanopia',
4059
4060
  'trust-tokens',
4060
4061
  'trusted-type-violation',
package/package.json CHANGED
@@ -104,5 +104,5 @@
104
104
  "flat-cache": "6.1.12"
105
105
  }
106
106
  },
107
- "version": "1.0.1553956"
107
+ "version": "1.0.1555430"
108
108
  }