@atlassian/aui 9.11.0 → 9.11.2

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.
Files changed (35) hide show
  1. package/dist/aui/aui-prototyping-design-tokens-api-full.js +1 -1
  2. package/dist/aui/aui-prototyping-design-tokens-api.js +1 -1
  3. package/dist/aui/aui-prototyping-design-tokens-base-themes-css.css +1 -1
  4. package/dist/aui/aui-prototyping-design-tokens-base-themes-css.js +1 -1
  5. package/dist/aui/aui-prototyping-design-tokens-base-themes.js +1 -1
  6. package/dist/aui/aui-prototyping.css +6 -6
  7. package/dist/aui/aui-prototyping.css.map +1 -1
  8. package/dist/aui/aui-prototyping.js +23 -20
  9. package/dist/aui/aui-prototyping.js.map +1 -1
  10. package/dist/aui/aui-prototyping.nodeps.css +6 -6
  11. package/dist/aui/aui-prototyping.nodeps.css.map +1 -1
  12. package/dist/aui/aui-prototyping.nodeps.js +23 -20
  13. package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
  14. package/entry/token-themes-generated/npm/themes/typography.js +27 -0
  15. package/package.json +1 -1
  16. package/src/js/aui/inline-dialog.js +3 -0
  17. package/src/js/aui/tables-sortable.js +1 -0
  18. package/src/js-vendor/jquery/jquery.tablesorter.js +1920 -1891
  19. package/src/less/aui-appheader.less +1 -1
  20. package/src/less/dropdown2.less +2 -4
  21. package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-base-themes.js +0 -26
  22. package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-theme-import-map.js +0 -51
  23. package/entry/token-themes-generated/p2/aui-prototyping-design-tokens-theme.css +0 -797
  24. package/entry/token-themes-generated/p2/themes/dark-future.js +0 -7
  25. package/entry/token-themes-generated/p2/themes/dark-new-input-border.js +0 -7
  26. package/entry/token-themes-generated/p2/themes/dark.js +0 -395
  27. package/entry/token-themes-generated/p2/themes/legacy-dark.js +0 -395
  28. package/entry/token-themes-generated/p2/themes/legacy-light.js +0 -395
  29. package/entry/token-themes-generated/p2/themes/light-future.js +0 -7
  30. package/entry/token-themes-generated/p2/themes/light-new-input-border.js +0 -7
  31. package/entry/token-themes-generated/p2/themes/light.js +0 -395
  32. package/entry/token-themes-generated/p2/themes/shape.js +0 -15
  33. package/entry/token-themes-generated/p2/themes/spacing.js +0 -27
  34. package/entry/token-themes-generated/p2/themes/typography-adg3.js +0 -50
  35. package/entry/token-themes-generated/p2/themes/typography-minor3.js +0 -41
@@ -34,7 +34,7 @@ aui-header,
34
34
  @section-gap: 20px;
35
35
 
36
36
  box-sizing: border-box;
37
- padding: 0 @aui-grid;
37
+ padding: 7px @aui-grid 10px @aui-grid;
38
38
  position: relative;
39
39
 
40
40
  .aui-header-before {
@@ -44,10 +44,8 @@
44
44
  font: inherit;
45
45
  margin: 0;
46
46
  text-align: left;
47
- // these could be removed if the parent was `display: flex`... but that might mess up consumers' CSS overrides
48
- width: -moz-available;
49
- width: -webkit-fill-available;
50
- width: fill-available;
47
+ // this could be removed if the parent was `display: flex`... but that might mess up consumers' CSS overrides
48
+ width: stretch;
51
49
  }
52
50
 
53
51
  .dropdown-items({
@@ -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
- };