Update Codex from v0.4.2 to v0.4.3
Bug: T260617 Bug: T295711 Bug: T305411 Bug: T321470 Bug: T321873 Bug: T322960 Bug: T324495 Bug: T325326 Bug: T325769 Bug: T326591 Change-Id: I4067d81b5872309425a1ca37672d53e863a1a422
This commit is contained in:
parent
e25503c6a3
commit
8456ede17c
9 changed files with 30 additions and 25 deletions
|
|
@ -92,14 +92,14 @@ For notes on 1.39.x and older releases, see HISTORY.
|
|||
=== External library changes in 1.40 ===
|
||||
|
||||
==== New external libraries ====
|
||||
* Added codex-design-tokens at v0.4.2
|
||||
* Added codex-design-tokens at v0.4.3
|
||||
|
||||
===== New development-only external libraries =====
|
||||
* …
|
||||
|
||||
==== Changed external libraries ====
|
||||
* Updated OOUI from v0.44.3 to v0.46.0.
|
||||
* Updated codex, codex-search, and codex-icons from v0.2.2 to v0.4.2.
|
||||
* Updated codex, codex-search, and codex-icons from v0.2.2 to v0.4.3.
|
||||
* Updated cssjanus/cssjanus from 2.1.0 to 2.1.1.
|
||||
* Updated justinrainbow/json-schema from 5.2.11 to 5.2.12.
|
||||
* Updated symfony/yaml from 5.4.10 to 5.4.12.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
|
||||
// Do not edit directly
|
||||
// Generated on Tue, 13 Dec 2022 23:47:30 GMT
|
||||
// Generated on Tue, 10 Jan 2023 22:59:22 GMT
|
||||
|
||||
@accent-color-base: #36c;
|
||||
@background-color-base: #fff;
|
||||
@background-color-interactive: #eaecf0;
|
||||
@background-color-interactive-subtle: #f8f9fa;
|
||||
|
|
@ -24,8 +25,8 @@
|
|||
@background-color-backdrop-light: rgba( 255, 255, 255, 0.65 ); // Backdrop is the term used by CSS Fullscreen API and is used to dim the background when a modal Dialog is open. Also known as overlay mask.
|
||||
@background-color-backdrop-dark: rgba( 0, 0, 0, 0.65 );
|
||||
@background-color-transparent: rgba( 255, 255, 255, 0 );
|
||||
@background-color-button-quiet--hover: rgba( 0, 24, 73, calc( 7 / 255 ) );
|
||||
@background-color-button-quiet--active: rgba( 0, 24, 73, calc( 21 / 255 ) );
|
||||
@background-color-button-quiet--hover: rgba( 0, 24, 73, 0.027 );
|
||||
@background-color-button-quiet--active: rgba( 0, 24, 73, 0.082 );
|
||||
@background-color-input-binary--checked: #36c;
|
||||
@color-base: #202122;
|
||||
@color-base--hover: #404244; // Aimed to be replaced by `color.gray600` in future.
|
||||
|
|
@ -61,6 +62,8 @@
|
|||
@box-sizing-base: border-box;
|
||||
@min-size-base: 32px; // TODO: Deprecate key and change to `min-size-component`?
|
||||
@min-size-icon: 20px;
|
||||
@min-size-icon-small: 16px;
|
||||
@min-size-indicator: 12px;
|
||||
@size-0: 0;
|
||||
@size-6: 1px;
|
||||
@size-12: 2px;
|
||||
|
|
@ -90,7 +93,9 @@
|
|||
@size-viewport-width-full: 100vw;
|
||||
@size-viewport-height-full: 100vh;
|
||||
@size-icon: 20px; // TODO: This has to be a relative value, for accessibility reasons.
|
||||
@size-icon-small: 16px; // TODO: This has to be a relative value, for accessibility reasons.
|
||||
@size-indicator: 12px; // TODO: This has to be a relative value, for accessibility reasons.
|
||||
@min-width-medium: 256px;
|
||||
@min-width-breakpoint-mobile: 320px; // A mobile device's minimum available screen width. Many older feature phones have screens smaller than this value.
|
||||
@min-width-breakpoint-tablet: 640px; // A tablet device's minimum available screen width. Note: the size chosen is eager to be re-evaluated with Web team and Product Analytics.
|
||||
@min-width-breakpoint-desktop: 1120px; // A desktop device's minimum available screen width.
|
||||
|
|
@ -153,7 +158,7 @@
|
|||
@border-radius-circle: 100%;
|
||||
@box-shadow-drop-small: 0 1px 1px rgba( 0, 0, 0, 0.2 ); // This features color as part of the theme token value.
|
||||
@box-shadow-drop-medium: 0 2px 2px 0 rgba( 0, 0, 0, 0.2 ); // This features color as part of the theme token value.
|
||||
@box-shadow-drop-extra-extra-large: 0 20px 48px 0 rgba( 0, 0, 0, 0.2 ); // This features color as part of the theme token value.
|
||||
@box-shadow-drop-xx-large: 0 20px 48px 0 rgba( 0, 0, 0, 0.2 ); // This features color as part of the theme token value.
|
||||
@box-shadow-inset-small: inset 0 0 0 1px;
|
||||
@box-shadow-inset-medium: inset 0 0 0 2px;
|
||||
@box-shadow-inset-medium-vertical: inset 0 -2px 0 0;
|
||||
|
|
@ -255,9 +260,9 @@
|
|||
// Warning: the following token name is deprecated, use background-color-transparent instead. (Use `background-color-transparent` instead.)
|
||||
@background-color-quiet: rgba( 255, 255, 255, 0 );
|
||||
// Warning: the following token name is deprecated (Use `background-color-button-quiet--hover` instead.)
|
||||
@background-color-quiet--hover: rgba( 0, 24, 73, calc( 7 / 255 ) );
|
||||
@background-color-quiet--hover: rgba( 0, 24, 73, 0.027 );
|
||||
// Warning: the following token name is deprecated (Use `background-color-button-quiet--active` instead.)
|
||||
@background-color-quiet--active: rgba( 0, 24, 73, calc( 21 / 255 ) );
|
||||
@background-color-quiet--active: rgba( 0, 24, 73, 0.082 );
|
||||
// Warning: the following token name is deprecated (Use `background-color-notice-subtle` instead.)
|
||||
@background-color-message-notice: #eaecf0;
|
||||
// Warning: the following token name is deprecated (Use `background-color-error-subtle` instead.)
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1391,7 +1391,7 @@ const al = re($e), Le = F({
|
|||
}
|
||||
}), Ue = () => {
|
||||
De((e) => ({
|
||||
"1dfe40f2": e.currentWidthInPx
|
||||
"17d0bd4c": e.currentWidthInPx
|
||||
}));
|
||||
}, We = Le.setup;
|
||||
Le.setup = We ? (e, t) => (Ue(), We(e, t)) : Ue;
|
||||
|
|
@ -1755,7 +1755,7 @@ const Bo = /* @__PURE__ */ V(il, [["render", vl]]), hl = re($e), Fe = F({
|
|||
}
|
||||
}), Pe = () => {
|
||||
De((e) => ({
|
||||
"115093d8": e.currentWidthInPx
|
||||
"1678b13e": e.currentWidthInPx
|
||||
}));
|
||||
}, Qe = Fe.setup;
|
||||
Fe.setup = Qe ? (e, t) => (Pe(), Qe(e, t)) : Pe;
|
||||
|
|
@ -2156,7 +2156,7 @@ const Tl = /* @__PURE__ */ V(Ml, [["render", El]]), Ve = F({
|
|||
}
|
||||
}), Ge = () => {
|
||||
De((e) => ({
|
||||
"2383866c": e.currentWidthInPx
|
||||
"200f5c42": e.currentWidthInPx
|
||||
}));
|
||||
}, Je = Ve.setup;
|
||||
Ve.setup = Je ? (e, t) => (Ge(), Je(e, t)) : Ge;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -95,8 +95,8 @@ CLDRPluralRuleParser:
|
|||
|
||||
codex:
|
||||
type: tar
|
||||
src: https://registry.npmjs.org/@wikimedia/codex/-/codex-0.4.2.tgz
|
||||
integrity: sha512-+J+3b3ItWJ75yHRMpZLuuwo6rX3FmgfsRp5KOZn69sOPom7LMhSk2dvuQTyJkFaCBy8y/DF+/8/ACuSuSzVChA==
|
||||
src: https://registry.npmjs.org/@wikimedia/codex/-/codex-0.4.3.tgz
|
||||
integrity: sha512-vIRjAm0ooUwFevY9m5XFM1EUhP5UO6ntzr/KkhFgEqeZE6BScRT2x0xxp3JoK2F5L++itWXvOxDpfEveC8h9Yg==
|
||||
dest:
|
||||
package/dist/codex.es.js:
|
||||
package/dist/codex.umd.js:
|
||||
|
|
@ -107,8 +107,8 @@ codex:
|
|||
|
||||
codex-design-tokens:
|
||||
type: tar
|
||||
src: https://registry.npmjs.org/@wikimedia/codex-design-tokens/-/codex-design-tokens-0.4.2.tgz
|
||||
integrity: sha384-3gyxG8uuw4uTkvvsbdp8DSvmFleFfIhjZjIzPf8mc8lGs5KCHAFU3JceJtI5o3e2
|
||||
src: https://registry.npmjs.org/@wikimedia/codex-design-tokens/-/codex-design-tokens-0.4.3.tgz
|
||||
integrity: sha384-1221UACmk6uEAwLYdKYLd/5yiM64AZwf8a8UL1aMwyK08yFijDA8DuZlpCZStN+w
|
||||
dest:
|
||||
package/dist/theme-wikimedia-ui.less:
|
||||
package/LICENSE:
|
||||
|
|
@ -116,8 +116,8 @@ codex-design-tokens:
|
|||
|
||||
codex-icons:
|
||||
type: tar
|
||||
src: https://registry.npmjs.org/@wikimedia/codex-icons/-/codex-icons-0.4.2.tgz
|
||||
integrity: sha384-PQjzn38gPu9fPHVC4QqIqDgRjpA1AhI0e0KdoJcNhyXfrB01Egp2Z6hgzMsHQlD3
|
||||
src: https://registry.npmjs.org/@wikimedia/codex-icons/-/codex-icons-0.4.3.tgz
|
||||
integrity: sha384-fWp/ob9NR7Aszav+dXbNJNWIFxmBnWYFsfvamkbRqEWv5y1+2pMCEJEuGtWTwUEf
|
||||
dest:
|
||||
package/dist/codex-icons.json:
|
||||
package/LICENSE:
|
||||
|
|
@ -125,8 +125,8 @@ codex-icons:
|
|||
|
||||
codex-search:
|
||||
type: tar
|
||||
src: https://registry.npmjs.org/@wikimedia/codex-search/-/codex-search-0.4.2.tgz
|
||||
integrity: sha384-vV/2MZc5VfubDxGAMAPfM1S6ZWQzHBDqZM3v4UdbyOxTmkF3Upjl+t0T+LwP4sOg
|
||||
src: https://registry.npmjs.org/@wikimedia/codex-search/-/codex-search-0.4.3.tgz
|
||||
integrity: sha384-z8kpsZPx1o2AVFBMejRuUER/vdsaAKylNcc6alz+RuLwrepnHrO0FlZMZ4lqv4e+
|
||||
dest:
|
||||
package/dist/codex-search.es.js:
|
||||
package/dist/codex-search.umd.js:
|
||||
|
|
|
|||
Loading…
Reference in a new issue