@atlassian/aui 9.3.20 → 9.3.22
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-css-deprecations.js +1 -1
- package/dist/aui/aui-css-deprecations.js.map +1 -1
- package/dist/aui/aui-prototyping-browserfocus.css +1 -353
- package/dist/aui/aui-prototyping-darkmode.css +1 -262
- package/dist/aui/aui-prototyping.css +6 -6
- package/dist/aui/aui-prototyping.js +25 -22
- package/dist/aui/aui-prototyping.js.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.css +6 -6
- package/dist/aui/aui-prototyping.nodeps.js +26 -23
- package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
- package/package.json +3 -7
- package/src/js/aui/forms/create-forms-component-body.js +3 -3
- package/src/js/aui/forms/custom-checkbox.js +1 -1
- package/src/js/aui/forms/custom-radio.js +1 -1
- package/src/js/aui/tables-sortable.js +1 -0
- package/src/js-vendor/jquery/jquery.tablesorter.js +1920 -1891
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlassian/aui",
|
|
3
3
|
"description": "Atlassian User Interface library",
|
|
4
|
-
"version": "9.3.
|
|
4
|
+
"version": "9.3.22",
|
|
5
5
|
"author": "Atlassian Pty Ltd.",
|
|
6
6
|
"homepage": "https://aui.atlassian.com",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@popperjs/core": "2.4.4",
|
|
38
38
|
"backbone": "1.4.0",
|
|
39
39
|
"css.escape": "1.5.0",
|
|
40
|
-
"dompurify": "2.
|
|
40
|
+
"dompurify": "2.5.7",
|
|
41
41
|
"fancy-file-input": "2.0.4",
|
|
42
42
|
"jquery-ui": "1.13.2",
|
|
43
43
|
"skatejs": "0.13.17",
|
|
@@ -50,7 +50,6 @@
|
|
|
50
50
|
"@atlassian/aui-webpack-config": "2.0.0",
|
|
51
51
|
"@babel/core": "7.14.0",
|
|
52
52
|
"@babel/preset-env": "7.14.1",
|
|
53
|
-
"bundlesize": "1.0.0-beta.2",
|
|
54
53
|
"cross-env": "7.0.3",
|
|
55
54
|
"eslint": "7.24.0",
|
|
56
55
|
"glob": "7.1.2",
|
|
@@ -68,9 +67,6 @@
|
|
|
68
67
|
"dist/build:legacy": "yarn dist/build:core && yarn dist/build:exts",
|
|
69
68
|
"dist/build:prototyping": "webpack --config webpack/dist.prototyping.webpack.config.js",
|
|
70
69
|
"build": "yarn dist/build:prototyping",
|
|
71
|
-
"watch": "yarn dist/build:prototyping --watch"
|
|
72
|
-
"bundlesize/verify-dist": "node scripts/verify-dist-structure.js",
|
|
73
|
-
"bundlesize/gzipped": "node scripts/generate-bundlesize-config.js > configs/bundlesize-gzipped.json && bundlesize --config configs/bundlesize-gzipped.json",
|
|
74
|
-
"bundlesize/raw": "node scripts/generate-bundlesize-config.js raw > configs/bundlesize-raw.json && bundlesize --config configs/bundlesize-raw.json"
|
|
70
|
+
"watch": "yarn dist/build:prototyping --watch"
|
|
75
71
|
}
|
|
76
72
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import skate from
|
|
2
|
-
import {onChildrenChange} from
|
|
3
|
-
import jQuery from
|
|
1
|
+
import skate from 'skatejs';
|
|
2
|
+
import {onChildrenChange} from '../internal/detect-children-change';
|
|
3
|
+
import jQuery from 'jquery';
|
|
4
4
|
|
|
5
5
|
export function createFormsComponentBody(type) {
|
|
6
6
|
|