@atlassian/aui 9.11.3 → 9.11.5
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/dist/aui/aui-prototyping-browserfocus.css +2 -651
- package/dist/aui/aui-prototyping-browserfocus.css.map +1 -0
- package/dist/aui/aui-prototyping-darkmode.css +2 -285
- package/dist/aui/aui-prototyping-darkmode.css.map +1 -0
- package/dist/aui/aui-prototyping-design-tokens-api-full.js +2 -2
- package/dist/aui/aui-prototyping-design-tokens-api-full.js.map +1 -1
- package/dist/aui/aui-prototyping-design-tokens-api.js +2 -2
- package/dist/aui/aui-prototyping-design-tokens-api.js.map +1 -1
- package/dist/aui/aui-prototyping-design-tokens-base-themes-css.css +1 -1
- package/dist/aui/aui-prototyping-design-tokens-base-themes-css.js +1 -1
- package/dist/aui/aui-prototyping-design-tokens-base-themes.js +1 -1
- package/dist/aui/aui-prototyping-design-tokens-compatibility.css +2 -115
- package/dist/aui/aui-prototyping-design-tokens-compatibility.css.map +1 -0
- package/dist/aui/aui-prototyping.css +5 -5
- package/dist/aui/aui-prototyping.css.map +1 -1
- package/dist/aui/aui-prototyping.js +2 -2
- package/dist/aui/aui-prototyping.js.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.css +5 -5
- package/dist/aui/aui-prototyping.nodeps.css.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.js +2 -2
- package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
- package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-base-themes.js +26 -0
- package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-theme-import-map.js +51 -0
- package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-theme.css +797 -0
- package/entry/token-themes-generated/p2/themes/dark-future.js +7 -0
- package/entry/token-themes-generated/p2/themes/dark-new-input-border.js +7 -0
- package/entry/token-themes-generated/p2/themes/dark.js +395 -0
- package/entry/token-themes-generated/p2/themes/legacy-dark.js +395 -0
- package/entry/token-themes-generated/p2/themes/legacy-light.js +395 -0
- package/entry/token-themes-generated/p2/themes/light-future.js +7 -0
- package/entry/token-themes-generated/p2/themes/light-new-input-border.js +7 -0
- package/entry/token-themes-generated/p2/themes/light.js +395 -0
- package/entry/token-themes-generated/p2/themes/shape.js +15 -0
- package/entry/token-themes-generated/p2/themes/spacing.js +27 -0
- package/entry/token-themes-generated/p2/themes/typography-adg3.js +50 -0
- package/entry/token-themes-generated/p2/themes/typography-minor3.js +41 -0
- package/package.json +75 -78
- package/src/js/aui/avatar-group.js +4 -4
- package/src/js/aui/banner.js +2 -2
- package/src/js/aui/date-picker.js +10 -8
- package/src/js/aui/design-tokens/design-tokens-init.js +2 -2
- package/src/js/aui/design-tokens/design-tokens-testing-theme.js +6 -6
- package/src/js/aui/focus-manager.js +51 -1
- package/src/less/imports/aui-theme/components/form-notification.less +1 -1
- package/entry/token-themes-generated/npm/themes/typography.js +0 -27
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
let style;
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
/* ------ THEME: light ------ */
|
|
5
|
+
|
|
6
|
+
style = document.createElement('style');
|
|
7
|
+
style.dataset.theme = 'light';
|
|
8
|
+
style.textContent += require('./themes/light.js').default;
|
|
9
|
+
document.head.appendChild(style);
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
/* ------ THEME: dark ------ */
|
|
14
|
+
|
|
15
|
+
style = document.createElement('style');
|
|
16
|
+
style.dataset.theme = 'dark';
|
|
17
|
+
style.textContent += require('./themes/dark.js').default;
|
|
18
|
+
document.head.appendChild(style);
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/* ------ THEME: original ------ */
|
|
22
|
+
|
|
23
|
+
style = document.createElement('style');
|
|
24
|
+
style.dataset.theme = 'original';
|
|
25
|
+
style.textContent += '';
|
|
26
|
+
document.head.appendChild(style);
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
'light': () => import(
|
|
3
|
+
/* webpackChunkName: "./themes/light" */
|
|
4
|
+
'./themes/light.js'
|
|
5
|
+
),
|
|
6
|
+
'light-future': () => import(
|
|
7
|
+
/* webpackChunkName: "./themes/light-future" */
|
|
8
|
+
'./themes/light-future.js'
|
|
9
|
+
),
|
|
10
|
+
'dark': () => import(
|
|
11
|
+
/* webpackChunkName: "./themes/dark" */
|
|
12
|
+
'./themes/dark.js'
|
|
13
|
+
),
|
|
14
|
+
'dark-future': () => import(
|
|
15
|
+
/* webpackChunkName: "./themes/dark-future" */
|
|
16
|
+
'./themes/dark-future.js'
|
|
17
|
+
),
|
|
18
|
+
'legacy-light': () => import(
|
|
19
|
+
/* webpackChunkName: "./themes/legacy-light" */
|
|
20
|
+
'./themes/legacy-light.js'
|
|
21
|
+
),
|
|
22
|
+
'legacy-dark': () => import(
|
|
23
|
+
/* webpackChunkName: "./themes/legacy-dark" */
|
|
24
|
+
'./themes/legacy-dark.js'
|
|
25
|
+
),
|
|
26
|
+
'spacing': () => import(
|
|
27
|
+
/* webpackChunkName: "./themes/spacing" */
|
|
28
|
+
'./themes/spacing.js'
|
|
29
|
+
),
|
|
30
|
+
'shape': () => import(
|
|
31
|
+
/* webpackChunkName: "./themes/shape" */
|
|
32
|
+
'./themes/shape.js'
|
|
33
|
+
),
|
|
34
|
+
'typography-adg3': () => import(
|
|
35
|
+
/* webpackChunkName: "./themes/typography-adg3" */
|
|
36
|
+
'./themes/typography-adg3.js'
|
|
37
|
+
),
|
|
38
|
+
'typography-minor3': () => import(
|
|
39
|
+
/* webpackChunkName: "./themes/typography-minor3" */
|
|
40
|
+
'./themes/typography-minor3.js'
|
|
41
|
+
),
|
|
42
|
+
'light-new-input-border': () => import(
|
|
43
|
+
/* webpackChunkName: "./themes/light-new-input-border" */
|
|
44
|
+
'./themes/light-new-input-border.js'
|
|
45
|
+
),
|
|
46
|
+
'dark-new-input-border': () => import(
|
|
47
|
+
/* webpackChunkName: "./themes/dark-new-input-border" */
|
|
48
|
+
'./themes/dark-new-input-border.js'
|
|
49
|
+
),
|
|
50
|
+
'original': () => Promise.resolve(''),
|
|
51
|
+
};
|