Skip to content

Commit

Permalink
Release build 6.28.0 [ci release]
Browse files Browse the repository at this point in the history
  • Loading branch information
mgurgel authored and github-actions[bot] committed Oct 31, 2024
1 parent fc1746b commit 48fee25
Show file tree
Hide file tree
Showing 96 changed files with 2,739 additions and 611 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
- duckplayer: larger video on mobile landscape (#1164)
- New states in Release Notes (#1105)
- ntp: making the customizer menu more dynamic (#1177)
- Bump @formkit/auto-animate from 0.8.0 to 0.8.2 (#1136)
- Bump @rive-app/canvas-single from 2.21.6 to 2.21.7 (#1172)
15 changes: 12 additions & 3 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2666,11 +2666,19 @@
/** @type {import('../environment').Environment['injectName']} */
"windows"
),
willThrow: false
willThrow: false,
/** @type {import('../environment').Environment['env']} */
env: "production"
});
var THEME_QUERY = "(prefers-color-scheme: dark)";
var REDUCED_MOTION_QUERY = "(prefers-reduced-motion: reduce)";
function EnvironmentProvider({ children, debugState, willThrow = false, injectName = "windows" }) {
function EnvironmentProvider({
children,
debugState,
env = "production",
willThrow = false,
injectName = "windows"
}) {
const [theme, setTheme] = h2(window.matchMedia(THEME_QUERY).matches ? "dark" : "light");
const [isReducedMotion, setReducedMotion] = h2(window.matchMedia(REDUCED_MOTION_QUERY).matches);
y2(() => {
Expand Down Expand Up @@ -2698,7 +2706,8 @@
debugState,
isDarkMode: theme === "dark",
injectName,
willThrow
willThrow,
env
} }, children);
}
function UpdateEnvironment({ search }) {
Expand Down
15 changes: 12 additions & 3 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1701,11 +1701,19 @@
/** @type {import('../environment').Environment['injectName']} */
"windows"
),
willThrow: false
willThrow: false,
/** @type {import('../environment').Environment['env']} */
env: "production"
});
var THEME_QUERY = "(prefers-color-scheme: dark)";
var REDUCED_MOTION_QUERY = "(prefers-reduced-motion: reduce)";
function EnvironmentProvider({ children, debugState, willThrow = false, injectName = "windows" }) {
function EnvironmentProvider({
children,
debugState,
env = "production",
willThrow = false,
injectName = "windows"
}) {
const [theme, setTheme] = h2(window.matchMedia(THEME_QUERY).matches ? "dark" : "light");
const [isReducedMotion, setReducedMotion] = h2(window.matchMedia(REDUCED_MOTION_QUERY).matches);
y2(() => {
Expand Down Expand Up @@ -1733,7 +1741,8 @@
debugState,
isDarkMode: theme === "dark",
injectName,
willThrow
willThrow,
env
} }, children);
}
function UpdateEnvironment({ search }) {
Expand Down
38 changes: 24 additions & 14 deletions Sources/ContentScopeScripts/dist/pages/onboarding/js/index.js

Large diffs are not rendered by default.

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 13 additions & 20 deletions Sources/ContentScopeScripts/dist/pages/release-notes/js/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,13 @@ body:not([data-platform-name]) {
height: var(--sp-6);
}
.ReleaseNotes_checkIcon {
background: url("./Check-Recolorable-24-ABG5R7A5.svg") no-repeat;
background: url("./Check-Color-24-Y2U7ZXXE.svg") no-repeat;
}
.ReleaseNotes_alertIcon {
background: url("./Alert-Recolorable-24-BWKAEUXC.svg") no-repeat;
background: url("./Exclamation-Color-24-AAA3M64P.svg") no-repeat;
}
.ReleaseNotes_warningIcon {
background: url("./Exclamation-High-Color-24-6LOXQFBN.svg") no-repeat;
}
.ReleaseNotes_spinnerIcon {
mask: url("./Spinner-16-YPLGMJ6P.svg") no-repeat;
Expand Down Expand Up @@ -496,27 +499,16 @@ body:not([data-platform-name]) {
}
}
.ReleaseNotes_newTag {
background-color: var(--color-yellow-50);
border-radius: var(--sp-2_5) var(--sp-2_5) var(--sp-2_5) 0;
color: var(--color-black-at-84);
background-color: var(--color-yellow-60);
border-radius: var(--sp-1_5) 0;
color: var(--color-black);
display: inline-block;
padding: 0 var(--sp-2_5);
position: relative;
padding: calc(3 * var(--px-in-rem)) var(--sp-2);
text-transform: uppercase;
top: calc(-1 * var(--sp-0_5));
font-size: calc(13 * var(--px-in-rem));
font-weight: 700;
line-height: calc(20 * var(--px-in-rem));
&::after {
background-color: var(--color-yellow-50);
mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 6'><path fill='currentColor' d='M0 0v5.336A13.975 13.975 0 0 1 10.699 0H0Z'/></svg>");
content: "";
height: calc(6 * var(--px-in-rem));
left: 0;
position: absolute;
top: calc(20 * var(--px-in-rem));
width: calc(11 * var(--px-in-rem));
}
font-size: calc(11.5 * var(--px-in-rem));
font-weight: 600;
line-height: calc(11 * var(--px-in-rem));
}

/* pages/release-notes/app/components/App.module.css */
Expand Down Expand Up @@ -607,6 +599,7 @@ body {
--color-purple-50: #5132a9;
--color-yellow-50: #fcd00a;
--color-green-50: #4cba3c;
--color-yellow-60: #f9be1a;
--color-blue-100: #051133;
--color-blue-90: #0b2059;
--color-blue-80: #14307e;
Expand Down
Loading

0 comments on commit 48fee25

Please sign in to comment.