@atlaskit/editor-toolbar 1.9.4 → 1.10.0
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/CHANGELOG.md +13 -0
- package/dist/cjs/index.js +14 -0
- package/dist/cjs/ui/icons/SortAscendingIcon.js +13 -0
- package/dist/cjs/ui/icons/SortDescendingIcon.js +13 -0
- package/dist/es2019/index.js +2 -0
- package/dist/es2019/ui/icons/SortAscendingIcon.js +2 -0
- package/dist/es2019/ui/icons/SortDescendingIcon.js +2 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/ui/icons/SortAscendingIcon.js +2 -0
- package/dist/esm/ui/icons/SortDescendingIcon.js +2 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/ui/icons/SortAscendingIcon.d.ts +1 -0
- package/dist/types/ui/icons/SortDescendingIcon.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/icons/SortAscendingIcon.d.ts +1 -0
- package/dist/types-ts4.5/ui/icons/SortDescendingIcon.d.ts +1 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-toolbar
|
|
2
2
|
|
|
3
|
+
## 1.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`84066f0a13142`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/84066f0a13142) -
|
|
8
|
+
Update table sort icons
|
|
9
|
+
|
|
10
|
+
## 1.9.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 1.9.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -358,6 +358,18 @@ Object.defineProperty(exports, "ShowMoreHorizontalIcon", {
|
|
|
358
358
|
return _ShowMoreHorizontal.ShowMoreHorizontalIcon;
|
|
359
359
|
}
|
|
360
360
|
});
|
|
361
|
+
Object.defineProperty(exports, "SortAscendingIcon", {
|
|
362
|
+
enumerable: true,
|
|
363
|
+
get: function get() {
|
|
364
|
+
return _SortAscendingIcon.SortAscendingIcon;
|
|
365
|
+
}
|
|
366
|
+
});
|
|
367
|
+
Object.defineProperty(exports, "SortDescendingIcon", {
|
|
368
|
+
enumerable: true,
|
|
369
|
+
get: function get() {
|
|
370
|
+
return _SortDescendingIcon.SortDescendingIcon;
|
|
371
|
+
}
|
|
372
|
+
});
|
|
361
373
|
Object.defineProperty(exports, "StrikeThroughIcon", {
|
|
362
374
|
enumerable: true,
|
|
363
375
|
get: function get() {
|
|
@@ -671,6 +683,8 @@ var _ImageIcon = require("./ui/icons/ImageIcon");
|
|
|
671
683
|
var _MentionIcon = require("./ui/icons/MentionIcon");
|
|
672
684
|
var _ArrowDownIcon = require("./ui/icons/ArrowDownIcon");
|
|
673
685
|
var _ArrowUpIcon = require("./ui/icons/ArrowUpIcon");
|
|
686
|
+
var _SortAscendingIcon = require("./ui/icons/SortAscendingIcon");
|
|
687
|
+
var _SortDescendingIcon = require("./ui/icons/SortDescendingIcon");
|
|
674
688
|
var _TableIcon = require("./ui/icons/TableIcon");
|
|
675
689
|
var _TableColumnAddLeftIcon = require("./ui/icons/TableColumnAddLeftIcon");
|
|
676
690
|
var _TableColumnAddRightIcon = require("./ui/icons/TableColumnAddRightIcon");
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "SortAscendingIcon", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _sortAscending.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _sortAscending = _interopRequireDefault(require("@atlaskit/icon/core/sort-ascending"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "SortDescendingIcon", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _sortDescending.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _sortDescending = _interopRequireDefault(require("@atlaskit/icon/core/sort-descending"));
|
package/dist/es2019/index.js
CHANGED
|
@@ -72,6 +72,8 @@ export { ImageIcon } from './ui/icons/ImageIcon';
|
|
|
72
72
|
export { MentionIcon } from './ui/icons/MentionIcon';
|
|
73
73
|
export { ArrowDownIcon } from './ui/icons/ArrowDownIcon';
|
|
74
74
|
export { ArrowUpIcon } from './ui/icons/ArrowUpIcon';
|
|
75
|
+
export { SortAscendingIcon } from './ui/icons/SortAscendingIcon';
|
|
76
|
+
export { SortDescendingIcon } from './ui/icons/SortDescendingIcon';
|
|
75
77
|
export { TableIcon } from './ui/icons/TableIcon';
|
|
76
78
|
export { TableColumnAddLeftIcon } from './ui/icons/TableColumnAddLeftIcon';
|
|
77
79
|
export { TableColumnAddRightIcon } from './ui/icons/TableColumnAddRightIcon';
|
package/dist/esm/index.js
CHANGED
|
@@ -72,6 +72,8 @@ export { ImageIcon } from './ui/icons/ImageIcon';
|
|
|
72
72
|
export { MentionIcon } from './ui/icons/MentionIcon';
|
|
73
73
|
export { ArrowDownIcon } from './ui/icons/ArrowDownIcon';
|
|
74
74
|
export { ArrowUpIcon } from './ui/icons/ArrowUpIcon';
|
|
75
|
+
export { SortAscendingIcon } from './ui/icons/SortAscendingIcon';
|
|
76
|
+
export { SortDescendingIcon } from './ui/icons/SortDescendingIcon';
|
|
75
77
|
export { TableIcon } from './ui/icons/TableIcon';
|
|
76
78
|
export { TableColumnAddLeftIcon } from './ui/icons/TableColumnAddLeftIcon';
|
|
77
79
|
export { TableColumnAddRightIcon } from './ui/icons/TableColumnAddRightIcon';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -71,6 +71,8 @@ export { ImageIcon } from './ui/icons/ImageIcon';
|
|
|
71
71
|
export { MentionIcon } from './ui/icons/MentionIcon';
|
|
72
72
|
export { ArrowDownIcon } from './ui/icons/ArrowDownIcon';
|
|
73
73
|
export { ArrowUpIcon } from './ui/icons/ArrowUpIcon';
|
|
74
|
+
export { SortAscendingIcon } from './ui/icons/SortAscendingIcon';
|
|
75
|
+
export { SortDescendingIcon } from './ui/icons/SortDescendingIcon';
|
|
74
76
|
export { TableIcon } from './ui/icons/TableIcon';
|
|
75
77
|
export { TableColumnAddLeftIcon } from './ui/icons/TableColumnAddLeftIcon';
|
|
76
78
|
export { TableColumnAddRightIcon } from './ui/icons/TableColumnAddRightIcon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as SortAscendingIcon } from '@atlaskit/icon/core/sort-ascending';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as SortDescendingIcon } from '@atlaskit/icon/core/sort-descending';
|
|
@@ -71,6 +71,8 @@ export { ImageIcon } from './ui/icons/ImageIcon';
|
|
|
71
71
|
export { MentionIcon } from './ui/icons/MentionIcon';
|
|
72
72
|
export { ArrowDownIcon } from './ui/icons/ArrowDownIcon';
|
|
73
73
|
export { ArrowUpIcon } from './ui/icons/ArrowUpIcon';
|
|
74
|
+
export { SortAscendingIcon } from './ui/icons/SortAscendingIcon';
|
|
75
|
+
export { SortDescendingIcon } from './ui/icons/SortDescendingIcon';
|
|
74
76
|
export { TableIcon } from './ui/icons/TableIcon';
|
|
75
77
|
export { TableColumnAddLeftIcon } from './ui/icons/TableColumnAddLeftIcon';
|
|
76
78
|
export { TableColumnAddRightIcon } from './ui/icons/TableColumnAddRightIcon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as SortAscendingIcon } from '@atlaskit/icon/core/sort-ascending';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as SortDescendingIcon } from '@atlaskit/icon/core/sort-descending';
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"registry": "https://registry.npmjs.org/"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.10.0",
|
|
7
7
|
"description": "Common UI for Toolbars across the platform",
|
|
8
8
|
"atlassian": {
|
|
9
9
|
"react-compiler": {
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"@atlaskit/browser-apis": "^0.0.2",
|
|
33
33
|
"@atlaskit/css": "^0.19.0",
|
|
34
34
|
"@atlaskit/dropdown-menu": "^16.10.0",
|
|
35
|
-
"@atlaskit/icon": "^35.
|
|
36
|
-
"@atlaskit/icon-lab": "^6.
|
|
35
|
+
"@atlaskit/icon": "^35.4.0",
|
|
36
|
+
"@atlaskit/icon-lab": "^6.13.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
38
|
"@atlaskit/popup": "^4.23.0",
|
|
39
39
|
"@atlaskit/primitives": "^19.0.0",
|
|
40
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
40
|
+
"@atlaskit/tmp-editor-statsig": "^88.4.0",
|
|
41
41
|
"@atlaskit/tokens": "^13.1.0",
|
|
42
|
-
"@atlaskit/tooltip": "^22.
|
|
42
|
+
"@atlaskit/tooltip": "^22.6.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@compiled/react": "^0.20.0",
|
|
45
45
|
"chromatism": "^2.6.0"
|