@chrome-devtools/rehydrated-devtools-app 1.20260104.0 → 1.20260111.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 +2 -1
- package/Images.prebundle.js +2 -1
- package/{chunk-1z5pdyd9.js → chunk-tcwbnmsw.js} +1723 -1709
- package/locales/en-US.json +1 -1
- package/locales/generated/collected-ui-strings.d +1 -1
- package/locales/generated/en-US.json +402 -12
- package/lock-person.svg +1 -0
- package/package.json +1 -1
- package/rehydrated_devtools_app.html +1 -1
- package/src/lock-person.svg +1 -0
package/Images.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright
|
|
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();
|
|
@@ -218,6 +218,7 @@ style.setProperty('--image-file-lightbulb', 'url(\"' + new URL(new URL('lightbul
|
|
|
218
218
|
style.setProperty('--image-file-lighthouse_logo', 'url(\"' + new URL(new URL('lighthouse_logo.svg', import.meta.url).href).toString() + '\")');
|
|
219
219
|
style.setProperty('--image-file-list', 'url(\"' + new URL(new URL('list.svg', import.meta.url).href).toString() + '\")');
|
|
220
220
|
style.setProperty('--image-file-location-on', 'url(\"' + new URL(new URL('location-on.svg', import.meta.url).href).toString() + '\")');
|
|
221
|
+
style.setProperty('--image-file-lock-person', 'url(\"' + new URL(new URL('lock-person.svg', import.meta.url).href).toString() + '\")');
|
|
221
222
|
style.setProperty('--image-file-lock', 'url(\"' + new URL(new URL('lock.svg', import.meta.url).href).toString() + '\")');
|
|
222
223
|
style.setProperty('--image-file-mark-email-unread', 'url(\"' + new URL(new URL('mark-email-unread.svg', import.meta.url).href).toString() + '\")');
|
|
223
224
|
style.setProperty('--image-file-match-case', 'url(\"' + new URL(new URL('match-case.svg', import.meta.url).href).toString() + '\")');
|
package/Images.prebundle.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
// Copyright
|
|
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();
|
|
@@ -219,6 +219,7 @@ style.setProperty('--image-file-lightbulb', 'url(\"' + new URL('./src/lightbulb.
|
|
|
219
219
|
style.setProperty('--image-file-lighthouse_logo', 'url(\"' + new URL('./src/lighthouse_logo.svg', import.meta.url).toString() + '\")');
|
|
220
220
|
style.setProperty('--image-file-list', 'url(\"' + new URL('./src/list.svg', import.meta.url).toString() + '\")');
|
|
221
221
|
style.setProperty('--image-file-location-on', 'url(\"' + new URL('./src/location-on.svg', import.meta.url).toString() + '\")');
|
|
222
|
+
style.setProperty('--image-file-lock-person', 'url(\"' + new URL('./src/lock-person.svg', import.meta.url).toString() + '\")');
|
|
222
223
|
style.setProperty('--image-file-lock', 'url(\"' + new URL('./src/lock.svg', import.meta.url).toString() + '\")');
|
|
223
224
|
style.setProperty('--image-file-mark-email-unread', 'url(\"' + new URL('./src/mark-email-unread.svg', import.meta.url).toString() + '\")');
|
|
224
225
|
style.setProperty('--image-file-match-case', 'url(\"' + new URL('./src/match-case.svg', import.meta.url).toString() + '\")');
|