@atlaskit/pragmatic-drag-and-drop-react-accessibility 2.1.8 → 2.2.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
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/pragmatic-drag-and-drop-react-accessibility
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`00e69e0b7c839`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/00e69e0b7c839) -
|
|
8
|
+
Clean up and removal of the `platform-visual-refresh-icons` feature flag.
|
|
9
|
+
|
|
3
10
|
## 2.1.8
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -47,7 +47,7 @@ var DragHandleButtonSmall = exports.DragHandleButtonSmall = /*#__PURE__*/(0, _re
|
|
|
47
47
|
return /*#__PURE__*/_react.default.createElement(_dragHandleButtonBase.DragHandleButtonBase, (0, _extends2.default)({
|
|
48
48
|
ref: ref
|
|
49
49
|
}, buttonProps), /*#__PURE__*/_react.default.createElement(_primitives.Box, {
|
|
50
|
-
xcss: (0, _platformFeatureFlags.fg)('platform-component-visual-refresh')
|
|
50
|
+
xcss: (0, _platformFeatureFlags.fg)('platform-component-visual-refresh') ? iconSmallStylesNew : iconSmallStyles
|
|
51
51
|
}, /*#__PURE__*/_react.default.createElement(_dragHandleVertical.default, {
|
|
52
52
|
color: "currentColor",
|
|
53
53
|
label: label,
|
|
@@ -38,7 +38,7 @@ export const DragHandleButtonSmall = /*#__PURE__*/forwardRef(function DragHandle
|
|
|
38
38
|
return /*#__PURE__*/React.createElement(DragHandleButtonBase, _extends({
|
|
39
39
|
ref: ref
|
|
40
40
|
}, buttonProps), /*#__PURE__*/React.createElement(Box, {
|
|
41
|
-
xcss: fg('platform-component-visual-refresh')
|
|
41
|
+
xcss: fg('platform-component-visual-refresh') ? iconSmallStylesNew : iconSmallStyles
|
|
42
42
|
}, /*#__PURE__*/React.createElement(DragHandleVerticalIcon, {
|
|
43
43
|
color: "currentColor",
|
|
44
44
|
label: label,
|
|
@@ -39,7 +39,7 @@ export var DragHandleButtonSmall = /*#__PURE__*/forwardRef(function DragHandleBu
|
|
|
39
39
|
return /*#__PURE__*/React.createElement(DragHandleButtonBase, _extends({
|
|
40
40
|
ref: ref
|
|
41
41
|
}, buttonProps), /*#__PURE__*/React.createElement(Box, {
|
|
42
|
-
xcss: fg('platform-component-visual-refresh')
|
|
42
|
+
xcss: fg('platform-component-visual-refresh') ? iconSmallStylesNew : iconSmallStyles
|
|
43
43
|
}, /*#__PURE__*/React.createElement(DragHandleVerticalIcon, {
|
|
44
44
|
color: "currentColor",
|
|
45
45
|
label: label,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/pragmatic-drag-and-drop-react-accessibility",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "An optional package for Pragmatic drag and drop containing react components to assist with setting up accessible experiences",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|