@wordpress/boot 0.15.1 → 0.15.2-next.v.202606191442.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/build-module/components/app/use-route-title.mjs +1 -1
- package/build-module/components/app/use-route-title.mjs.map +2 -2
- package/build-module/components/canvas/back-button.mjs +3 -3
- package/build-module/components/canvas/back-button.mjs.map +2 -2
- package/build-module/components/navigation/navigation-item/index.mjs +3 -3
- package/build-module/components/navigation/navigation-item/index.mjs.map +2 -2
- package/build-module/components/navigation/navigation-screen/index.mjs +3 -3
- package/build-module/components/navigation/navigation-screen/index.mjs.map +2 -2
- package/build-module/components/root/index.mjs +3 -3
- package/build-module/components/root/index.mjs.map +2 -2
- package/build-module/components/root/single-page.mjs +3 -3
- package/build-module/components/root/single-page.mjs.map +2 -2
- package/build-module/components/save-button/index.mjs +2 -2
- package/build-module/components/save-button/index.mjs.map +2 -2
- package/build-module/components/site-hub/index.mjs +3 -3
- package/build-module/components/site-hub/index.mjs.map +2 -2
- package/build-module/components/site-icon/index.mjs +3 -3
- package/build-module/components/site-icon/index.mjs.map +2 -2
- package/build-module/components/site-icon-link/index.mjs +3 -3
- package/build-module/components/site-icon-link/index.mjs.map +2 -2
- package/build-module/index.mjs +6 -6
- package/build-module/index.mjs.map +2 -2
- package/build-style/style-rtl.css +159 -75
- package/build-style/style.css +159 -75
- package/build-style/view-transitions-rtl.css +1 -1
- package/build-style/view-transitions.css +1 -1
- package/build-types/components/root/index.d.ts.map +1 -1
- package/build-types/components/save-button/index.d.ts.map +1 -1
- package/build-types/components/site-icon-link/index.d.ts.map +1 -1
- package/package.json +31 -26
- package/src/components/canvas/back-button.scss +2 -2
- package/src/components/navigation/navigation-item/style.scss +3 -3
- package/src/components/navigation/navigation-screen/style.scss +2 -2
- package/src/components/root/index.tsx +0 -1
- package/src/components/root/style.scss +10 -10
- package/src/components/save-button/index.tsx +0 -1
- package/src/components/site-hub/style.scss +4 -4
- package/src/components/site-icon/style.scss +1 -1
- package/src/components/site-icon-link/index.tsx +0 -1
- package/src/components/site-icon-link/style.scss +2 -2
- package/src/{experimental-admin-bar-in-editor.scss → experimental-omnibar.scss} +1 -1
- package/src/style.scss +1 -1
- package/src/view-transitions.scss +1 -1
- package/build-types/components/user-theme-provider/index.d.ts +0 -6
- package/build-types/components/user-theme-provider/index.d.ts.map +0 -1
- /package/build-style/{experimental-admin-bar-in-editor-rtl.css → experimental-omnibar-rtl.css} +0 -0
- /package/build-style/{experimental-admin-bar-in-editor.css → experimental-omnibar.css} +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
.boot-site-hub {
|
|
4
4
|
position: sticky;
|
|
5
5
|
top: 0;
|
|
6
|
-
background-color: var(--wpds-color-
|
|
6
|
+
background-color: var(--wpds-color-background-surface-neutral-weak);
|
|
7
7
|
z-index: 1;
|
|
8
8
|
display: grid;
|
|
9
9
|
grid-template-columns: 60px 1fr auto;
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
&:focus:not(:active) {
|
|
47
47
|
outline:
|
|
48
48
|
var(--wpds-border-width-focus) solid
|
|
49
|
-
var(--wpds-color-stroke-focus
|
|
49
|
+
var(--wpds-color-stroke-focus);
|
|
50
50
|
outline-offset: calc(-1 * var(--wpds-border-width-focus));
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
.boot-site-hub__title-text {
|
|
55
|
-
color: var(--wpds-color-
|
|
55
|
+
color: var(--wpds-color-foreground-content-neutral);
|
|
56
56
|
font-size: variables.$font-size-medium;
|
|
57
57
|
font-weight: variables.$font-weight-medium;
|
|
58
58
|
overflow: hidden;
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.boot-site-hub__url {
|
|
64
|
-
color: var(--wpds-color-
|
|
64
|
+
color: var(--wpds-color-foreground-content-neutral-weak);
|
|
65
65
|
font-size: variables.$font-size-small;
|
|
66
66
|
overflow: hidden;
|
|
67
67
|
text-overflow: ellipsis;
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
* WordPress dependencies
|
|
3
3
|
*/
|
|
4
4
|
import { Link, privateApis as routePrivateApis } from '@wordpress/route';
|
|
5
|
-
// eslint-disable-next-line @wordpress/use-recommended-components -- `Tooltip` is not yet on the recommended `@wordpress/ui` allow-list; landing as a migration step ahead of the wider rollout.
|
|
6
5
|
import { Tooltip } from '@wordpress/ui';
|
|
7
6
|
|
|
8
7
|
/**
|
|
@@ -8,7 +8,7 @@ $header-height: variables.$header-height;
|
|
|
8
8
|
display: inline-flex;
|
|
9
9
|
align-items: center;
|
|
10
10
|
justify-content: center;
|
|
11
|
-
background: var(--wpds-color-
|
|
11
|
+
background: var(--wpds-color-background-surface-neutral-weak);
|
|
12
12
|
text-decoration: none;
|
|
13
13
|
|
|
14
14
|
@media not (prefers-reduced-motion) {
|
|
@@ -18,7 +18,7 @@ $header-height: variables.$header-height;
|
|
|
18
18
|
&:focus:not(:active) {
|
|
19
19
|
outline:
|
|
20
20
|
var(--wpds-border-width-focus) solid
|
|
21
|
-
var(--wpds-color-stroke-focus
|
|
21
|
+
var(--wpds-color-stroke-focus);
|
|
22
22
|
outline-offset: calc(-1 * var(--wpds-border-width-focus));
|
|
23
23
|
}
|
|
24
24
|
}
|
package/src/style.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use "@wordpress/theme/src/prebuilt/css/design-tokens.css" as *;
|
|
2
2
|
@use "@wordpress/base-styles/mixins" as *;
|
|
3
3
|
@use "@wordpress/base-styles/variables" as *;
|
|
4
|
-
@use "./experimental-
|
|
4
|
+
@use "./experimental-omnibar.scss" as *;
|
|
5
5
|
|
|
6
6
|
.boot-layout-container .boot-layout {
|
|
7
7
|
// On mobile the main content area has to scroll, otherwise you can invoke
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { type ThemeProvider as ThemeProviderType } from '@wordpress/theme';
|
|
2
|
-
declare const ThemeProvider: typeof ThemeProviderType;
|
|
3
|
-
export declare function getAdminThemePrimaryColor(): string | undefined;
|
|
4
|
-
export declare function UserThemeProvider({ color, ...restProps }: React.ComponentProps<typeof ThemeProvider>): import("react").JSX.Element;
|
|
5
|
-
export {};
|
|
6
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/user-theme-provider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EACN,KAAK,aAAa,IAAI,iBAAiB,EAEvC,MAAM,kBAAkB,CAAC;AAG1B,QAAA,MAAM,aAAa,EAAE,OAAO,iBACa,CAAC;AAa1C,wBAAgB,yBAAyB,IAAI,MAAM,GAAG,SAAS,CAK9D;AAED,wBAAgB,iBAAiB,CAAE,EAClC,KAAK,EACL,GAAG,SAAS,EACZ,EAAE,KAAK,CAAC,cAAc,CAAE,OAAO,aAAa,CAAE,+BAI9C"}
|
/package/build-style/{experimental-admin-bar-in-editor-rtl.css → experimental-omnibar-rtl.css}
RENAMED
|
File without changes
|
|
File without changes
|