@chrome-devtools/inspector 1.20260104.0 → 1.20260118.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Images.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2025 The Chromium Authors
1
+ // Copyright 2026 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
  const sheet = new CSSStyleSheet();
@@ -173,6 +173,7 @@ style.setProperty('--image-file-gears', 'url(\"' + new URL(new URL('gears.svg',
173
173
  style.setProperty('--image-file-global', 'url(\"' + new URL(new URL('global.svg', import.meta.url).href).toString() + '\")');
174
174
  style.setProperty('--image-file-google', 'url(\"' + new URL(new URL('google.svg', import.meta.url).href).toString() + '\")');
175
175
  style.setProperty('--image-file-goto-filled', 'url(\"' + new URL(new URL('goto-filled.svg', import.meta.url).href).toString() + '\")');
176
+ style.setProperty('--image-file-grid-direction', 'url(\"' + new URL(new URL('grid-direction.svg', import.meta.url).href).toString() + '\")');
176
177
  style.setProperty('--image-file-grid-on', 'url(\"' + new URL(new URL('grid-on.svg', import.meta.url).href).toString() + '\")');
177
178
  style.setProperty('--image-file-group', 'url(\"' + new URL(new URL('group.svg', import.meta.url).href).toString() + '\")');
178
179
  style.setProperty('--image-file-heap-snapshot', 'url(\"' + new URL(new URL('heap-snapshot.svg', import.meta.url).href).toString() + '\")');
@@ -218,6 +219,7 @@ style.setProperty('--image-file-lightbulb', 'url(\"' + new URL(new URL('lightbul
218
219
  style.setProperty('--image-file-lighthouse_logo', 'url(\"' + new URL(new URL('lighthouse_logo.svg', import.meta.url).href).toString() + '\")');
219
220
  style.setProperty('--image-file-list', 'url(\"' + new URL(new URL('list.svg', import.meta.url).href).toString() + '\")');
220
221
  style.setProperty('--image-file-location-on', 'url(\"' + new URL(new URL('location-on.svg', import.meta.url).href).toString() + '\")');
222
+ style.setProperty('--image-file-lock-person', 'url(\"' + new URL(new URL('lock-person.svg', import.meta.url).href).toString() + '\")');
221
223
  style.setProperty('--image-file-lock', 'url(\"' + new URL(new URL('lock.svg', import.meta.url).href).toString() + '\")');
222
224
  style.setProperty('--image-file-mark-email-unread', 'url(\"' + new URL(new URL('mark-email-unread.svg', import.meta.url).href).toString() + '\")');
223
225
  style.setProperty('--image-file-match-case', 'url(\"' + new URL(new URL('match-case.svg', import.meta.url).href).toString() + '\")');
@@ -1,5 +1,5 @@
1
1
 
2
- // Copyright 2025 The Chromium Authors
2
+ // Copyright 2026 The Chromium Authors
3
3
  // Use of this source code is governed by a BSD-style license that can be
4
4
  // found in the LICENSE file.
5
5
  const sheet = new CSSStyleSheet();
@@ -174,6 +174,7 @@ style.setProperty('--image-file-gears', 'url(\"' + new URL('./src/gears.svg', im
174
174
  style.setProperty('--image-file-global', 'url(\"' + new URL('./src/global.svg', import.meta.url).toString() + '\")');
175
175
  style.setProperty('--image-file-google', 'url(\"' + new URL('./src/google.svg', import.meta.url).toString() + '\")');
176
176
  style.setProperty('--image-file-goto-filled', 'url(\"' + new URL('./src/goto-filled.svg', import.meta.url).toString() + '\")');
177
+ style.setProperty('--image-file-grid-direction', 'url(\"' + new URL('./src/grid-direction.svg', import.meta.url).toString() + '\")');
177
178
  style.setProperty('--image-file-grid-on', 'url(\"' + new URL('./src/grid-on.svg', import.meta.url).toString() + '\")');
178
179
  style.setProperty('--image-file-group', 'url(\"' + new URL('./src/group.svg', import.meta.url).toString() + '\")');
179
180
  style.setProperty('--image-file-heap-snapshot', 'url(\"' + new URL('./src/heap-snapshot.svg', import.meta.url).toString() + '\")');
@@ -219,6 +220,7 @@ style.setProperty('--image-file-lightbulb', 'url(\"' + new URL('./src/lightbulb.
219
220
  style.setProperty('--image-file-lighthouse_logo', 'url(\"' + new URL('./src/lighthouse_logo.svg', import.meta.url).toString() + '\")');
220
221
  style.setProperty('--image-file-list', 'url(\"' + new URL('./src/list.svg', import.meta.url).toString() + '\")');
221
222
  style.setProperty('--image-file-location-on', 'url(\"' + new URL('./src/location-on.svg', import.meta.url).toString() + '\")');
223
+ style.setProperty('--image-file-lock-person', 'url(\"' + new URL('./src/lock-person.svg', import.meta.url).toString() + '\")');
222
224
  style.setProperty('--image-file-lock', 'url(\"' + new URL('./src/lock.svg', import.meta.url).toString() + '\")');
223
225
  style.setProperty('--image-file-mark-email-unread', 'url(\"' + new URL('./src/mark-email-unread.svg', import.meta.url).toString() + '\")');
224
226
  style.setProperty('--image-file-match-case', 'url(\"' + new URL('./src/match-case.svg', import.meta.url).toString() + '\")');