@digigov/ui 2.0.0-af1b5f33 → 2.0.0-b3ec0588

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.
@@ -213,11 +213,11 @@ var TableSortLabel = exports.TableSortLabel = /*#__PURE__*/_react["default"].for
213
213
  }, /*#__PURE__*/_react["default"].createElement(_icons.CaretIcon, {
214
214
  direction: 'up',
215
215
  size: "sm",
216
- variant: direction === 1 ? 'dark' : 'gray'
216
+ color: direction === 1 ? 'dark' : 'gray'
217
217
  }), /*#__PURE__*/_react["default"].createElement(_icons.CaretIcon, {
218
218
  direction: 'down',
219
219
  size: "sm",
220
- variant: direction === -1 ? 'dark' : 'gray'
220
+ color: direction === -1 ? 'dark' : 'gray'
221
221
  }))), /*#__PURE__*/_react["default"].createElement(_Dropdown.DropdownContent, null, /*#__PURE__*/_react["default"].createElement(_NavList.NavList, {
222
222
  layout: "vertical"
223
223
  }, /*#__PURE__*/_react["default"].createElement(_NavList.NavListItemAction, {
@@ -46,11 +46,11 @@ export var TableSortLabel = /*#__PURE__*/React.forwardRef(function TableSortLabe
46
46
  }, /*#__PURE__*/React.createElement(CaretIcon, {
47
47
  direction: 'up',
48
48
  size: "sm",
49
- variant: direction === 1 ? 'dark' : 'gray'
49
+ color: direction === 1 ? 'dark' : 'gray'
50
50
  }), /*#__PURE__*/React.createElement(CaretIcon, {
51
51
  direction: 'down',
52
52
  size: "sm",
53
- variant: direction === -1 ? 'dark' : 'gray'
53
+ color: direction === -1 ? 'dark' : 'gray'
54
54
  }))), /*#__PURE__*/React.createElement(DropdownContent, null, /*#__PURE__*/React.createElement(NavList, {
55
55
  layout: "vertical"
56
56
  }, /*#__PURE__*/React.createElement(NavListItemAction, {
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Digigov v2.0.0-af1b5f33
1
+ /** @license Digigov v2.0.0-b3ec0588
2
2
  *
3
3
  * This source code is licensed under the BSD-2-Clause license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digigov/ui",
3
- "version": "2.0.0-af1b5f33",
3
+ "version": "2.0.0-b3ec0588",
4
4
  "description": "@digigov reusable components toolkit",
5
5
  "main": "./cjs/index.js",
6
6
  "module": "./index.js",
@@ -8,7 +8,7 @@
8
8
  "@uides/react-qr-reader": "3.0.0",
9
9
  "yup": "0.32.11",
10
10
  "publint": "0.1.8",
11
- "@digigov/react-icons": "2.0.0-af1b5f33",
11
+ "@digigov/react-icons": "2.0.0-b3ec0588",
12
12
  "dompurify": "3.0.6"
13
13
  },
14
14
  "peerDependencies": {
@@ -18,8 +18,8 @@
18
18
  "clsx": "1.1.1",
19
19
  "react": "^16.8.0 || ^17.0.0",
20
20
  "react-dom": "^16.8.0 || ^17.0.0",
21
- "@digigov/react-core": "2.0.0-af1b5f33",
22
- "@digigov/css": "2.0.0-af1b5f33"
21
+ "@digigov/react-core": "2.0.0-b3ec0588",
22
+ "@digigov/css": "2.0.0-b3ec0588"
23
23
  },
24
24
  "gitHead": "c903a46306f77f55ad7fc4d2e274006f39a6c871",
25
25
  "private": false,
@@ -48,12 +48,12 @@ export const TableSortLabel = React.forwardRef<
48
48
  <CaretIcon
49
49
  direction={'up'}
50
50
  size="sm"
51
- variant={direction === 1 ? 'dark' : 'gray'}
51
+ color={direction === 1 ? 'dark' : 'gray'}
52
52
  />
53
53
  <CaretIcon
54
54
  direction={'down'}
55
55
  size="sm"
56
- variant={direction === -1 ? 'dark' : 'gray'}
56
+ color={direction === -1 ? 'dark' : 'gray'}
57
57
  />
58
58
  </TableSortIconContainer>
59
59
  </DropdownButton>