@atlassian/aui 10.2.1 → 10.2.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.
@@ -1,10 +1,48 @@
1
1
  export default {
2
- 'light': () => (() => {}),
3
- 'light-future': () => (() => {}),
4
- 'dark': () => (() => {}),
5
- 'dark-future': () => (() => {}),
6
- 'spacing': () => (() => {}),
7
- 'shape': () => (() => {}),
8
- 'typography': () => (() => {}),
9
- 'motion': () => (() => {}),
2
+ 'light': () => (() => {}),
3
+ 'dark': () => (() => {}),
4
+ 'light-future': () => {
5
+ console.warn('AUI does not provide "light-future" theme. Setting this theme will have no effect.');
6
+ return () => {};
7
+ },
8
+ 'dark-future': () => {
9
+ console.warn('AUI does not provide "dark-future" theme. Setting this theme will have no effect.');
10
+ return () => {};
11
+ },
12
+ 'spacing': () => {
13
+ console.warn('AUI does not provide "spacing" theme. Setting this theme will have no effect.');
14
+ return () => {};
15
+ },
16
+ 'shape': () => {
17
+ console.warn('AUI does not provide "shape" theme. Setting this theme will have no effect.');
18
+ return () => {};
19
+ },
20
+ 'typography': () => {
21
+ console.warn('AUI does not provide "typography" theme. Setting this theme will have no effect.');
22
+ return () => {};
23
+ },
24
+ 'motion': () => {
25
+ console.warn('AUI does not provide "motion" theme. Setting this theme will have no effect.');
26
+ return () => {};
27
+ },
28
+ 'legacy-light': () => {
29
+ console.warn('AUI does not provide "legacy-light" theme. Setting this theme will have no effect.');
30
+ return () => {};
31
+ },
32
+ 'legacy-dark': () => {
33
+ console.warn('AUI does not provide "legacy-dark" theme. Setting this theme will have no effect.');
34
+ return () => {};
35
+ },
36
+ 'typography-adg3': () => {
37
+ console.warn('AUI does not provide "typography-adg3" theme. Setting this theme will have no effect.');
38
+ return () => {};
39
+ },
40
+ 'typography-modernized': () => {
41
+ console.warn('AUI does not provide "typography-modernized" theme. Setting this theme will have no effect.');
42
+ return () => {};
43
+ },
44
+ 'typography-refreshed': () => {
45
+ console.warn('AUI does not provide "typography-refreshed" theme. Setting this theme will have no effect.');
46
+ return () => {};
47
+ },
10
48
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@atlassian/aui",
3
3
  "description": "Atlassian User Interface library",
4
- "version": "10.2.1",
4
+ "version": "10.2.2",
5
5
  "author": "Atlassian Pty Ltd.",
6
6
  "homepage": "https://aui.atlassian.com",
7
7
  "license": "Apache-2.0",
@@ -38,10 +38,10 @@
38
38
  "dependencies": {
39
39
  "@atlaskit/tokens": "13.0.4",
40
40
  "@atlassian/adg-server-iconfont": "3.1.1",
41
+ "@atlassian/fancy-file-input": "3.0.0",
41
42
  "@popperjs/core": "2.11.8",
42
43
  "backbone": "1.6.0",
43
- "dompurify": "^3.3.2",
44
- "@atlassian/fancy-file-input": "3.0.0",
44
+ "dompurify": "^3.4.7",
45
45
  "jquery-form": "4.3.0",
46
46
  "jquery-ui": "1.14.1",
47
47
  "skatejs": "0.13.17",
@@ -24,7 +24,7 @@
24
24
  em
25
25
  ); // note: this is the same as a compact AUI button.
26
26
  @aui-toggle-icon-top: unit(((@aui-toggle-effective-height - @aui-toggle-icon-size) / 2), px);
27
- @aui-toggle-handle-width: .odd(@aui-toggle-icon-size + @aui-toggle-horizontal-padding) [ @result]; // circles work better with odd numbers
27
+ @aui-toggle-handle-width: .odd(@aui-toggle-icon-size + @aui-toggle-horizontal-padding)[@result]; // circles work better with odd numbers
28
28
  @aui-toggle-slide-width: (@aui-toggle-icon-size * 2);
29
29
 
30
30
  @aui-toggle-default-bg-color: var(--aui-toggle-default-bg-color);