@atlassian/aui 9.10.1 → 9.10.3
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-design-tokens-api-full.js +1 -1
- package/dist/aui/aui-prototyping-design-tokens-api.js +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.css +6 -6
- package/dist/aui/aui-prototyping.css.map +1 -1
- package/dist/aui/aui-prototyping.js +24 -21
- package/dist/aui/aui-prototyping.js.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.css +6 -6
- package/dist/aui/aui-prototyping.nodeps.css.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.js +32 -29
- package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
- package/entry/token-themes-generated/npm/themes/typography.js +27 -0
- package/package.json +2 -2
- package/src/js/aui/tables-sortable.js +1 -0
- package/src/js-vendor/jquery/jquery.tablesorter.js +1920 -1891
- package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-base-themes.js +0 -26
- package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-theme-import-map.js +0 -51
- package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-theme.css +0 -795
- package/entry/token-themes-generated/p2/themes/dark-future.js +0 -7
- package/entry/token-themes-generated/p2/themes/dark-new-input-border.js +0 -7
- package/entry/token-themes-generated/p2/themes/dark.js +0 -394
- package/entry/token-themes-generated/p2/themes/legacy-dark.js +0 -394
- package/entry/token-themes-generated/p2/themes/legacy-light.js +0 -394
- package/entry/token-themes-generated/p2/themes/light-future.js +0 -7
- package/entry/token-themes-generated/p2/themes/light-new-input-border.js +0 -7
- package/entry/token-themes-generated/p2/themes/light.js +0 -394
- package/entry/token-themes-generated/p2/themes/shape.js +0 -15
- package/entry/token-themes-generated/p2/themes/spacing.js +0 -27
- package/entry/token-themes-generated/p2/themes/typography-adg3.js +0 -48
- package/entry/token-themes-generated/p2/themes/typography-minor3.js +0 -35
|
@@ -1,26 +0,0 @@
|
|
|
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);
|
|
@@ -1,51 +0,0 @@
|
|
|
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
|
-
};
|