@zohodesk/dot 1.9.11 → 1.9.13

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.
Files changed (68) hide show
  1. package/README.md +20 -0
  2. package/es/ActionButton/__tests__/ActionButton.spec.js +4 -5
  3. package/es/AttachmentViewer/AttachmentImage.js +3 -1
  4. package/es/AttachmentViewer/AttachmentViewer.js +340 -273
  5. package/es/AttachmentViewer/AttachmentViewer.module.css +8 -15
  6. package/es/AttachmentViewer/__tests__/AttachmentViewer.spec.js +104 -100
  7. package/es/AttachmentViewer/__tests__/__snapshots__/AttachmentViewer.spec.js.snap +778 -1
  8. package/es/AttachmentViewer/props/defaultProps.js +4 -2
  9. package/es/AttachmentViewer/props/propTypes.js +9 -2
  10. package/es/AttachmentViewer/utils.js +6 -7
  11. package/es/AudioPlayer/utils/utils.js +2 -5
  12. package/es/DotProvider/hooks/useDotProvider.js +14 -15
  13. package/es/DotProvider/hooks/useDownloadAssetsAndSetAttr.js +12 -13
  14. package/es/DotProvider/props/defaultProps.js +1 -1
  15. package/es/DotProvider/utils/assetPromiseHandlers/themeAppearanceAssetPromise.js +3 -4
  16. package/es/DotProvider/utils/assetPromiseHandlers/themeColorAssetPromise.js +4 -5
  17. package/es/DotProvider/utils/errorValidation.js +5 -6
  18. package/es/DotProvider/utils/getAssetsImportPromises.js +4 -5
  19. package/es/Drawer/Drawer.js +6 -8
  20. package/es/FreezeLayer/css/cssJSLogic.js +4 -5
  21. package/es/Hooks/Dragger/useDragger.js +5 -6
  22. package/es/Hooks/Dragger/utils/DraggerUtil.js +7 -8
  23. package/es/Hooks/useFreezeLayer.js +4 -5
  24. package/es/Link/Link.js +4 -3
  25. package/es/Link/props/propTypes.js +1 -0
  26. package/es/Onboarding/CarouselDots/CarouselDots.js +29 -32
  27. package/es/Onboarding/Onboarding.js +23 -24
  28. package/es/Onboarding/hooks/useOnboarding.js +4 -5
  29. package/es/Onboarding/hooks/useOnboardingSlider.js +5 -6
  30. package/es/deprecated/SelectDropdown/SelectDropdown.js +43 -47
  31. package/es/dropdown/ToggleDropDown/ToggleDropDown.js +214 -225
  32. package/es/errorstate/Inconvenience/Inconvenience.js +32 -36
  33. package/es/errorstate/NoRequestFound/NoRequestFound.js +32 -36
  34. package/es/errorstate/PermissionPlay/PermissionPlay.js +31 -35
  35. package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +32 -36
  36. package/es/errorstate/UnableToProcess/UnableToProcess.js +32 -36
  37. package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +32 -36
  38. package/es/errorstate/WillBack/WillBack.js +30 -34
  39. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +81 -85
  40. package/es/list/status/StatusDropdown/StatusDropdown.js +109 -113
  41. package/es/list/status/StatusDropdown/__tests__/StatusDropdown.spec.js +3 -4
  42. package/es/lookup/header/Search/Search.js +4 -5
  43. package/es/lookup/header/Search/__tests__/Search.spec.js +3 -4
  44. package/es/lookup/header/ViewDropDown/ViewDropDown.js +67 -75
  45. package/es/utils/General.js +2 -7
  46. package/es/utils/editorUtils.js +1 -5
  47. package/es/version2/lookup/AlertHeader/AlertHeader.js +5 -3
  48. package/es/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js +24 -0
  49. package/es/version2/lookup/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +34 -0
  50. package/es/version2/lookup/AlertHeader/css/cssJSLogic.js +4 -5
  51. package/es/version2/lookup/AlertHeader/props/propTypes.js +2 -1
  52. package/es/version2/notification/DesktopNotification/DesktopNotification.js +59 -63
  53. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +40 -44
  54. package/lib/AttachmentViewer/AttachmentImage.js +3 -1
  55. package/lib/AttachmentViewer/AttachmentViewer.js +158 -82
  56. package/lib/AttachmentViewer/AttachmentViewer.module.css +8 -15
  57. package/lib/AttachmentViewer/__tests__/AttachmentViewer.spec.js +100 -100
  58. package/lib/AttachmentViewer/__tests__/__snapshots__/AttachmentViewer.spec.js.snap +778 -1
  59. package/lib/AttachmentViewer/props/defaultProps.js +6 -2
  60. package/lib/AttachmentViewer/props/propTypes.js +9 -2
  61. package/lib/DotProvider/props/defaultProps.js +2 -2
  62. package/lib/Link/Link.js +4 -3
  63. package/lib/Link/props/propTypes.js +1 -0
  64. package/lib/version2/lookup/AlertHeader/AlertHeader.js +5 -2
  65. package/lib/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js +26 -0
  66. package/lib/version2/lookup/AlertHeader/__tests__/__snapshots__/AlertHeader.spec.js.snap +34 -0
  67. package/lib/version2/lookup/AlertHeader/props/propTypes.js +2 -1
  68. package/package.json +26 -24
@@ -4,6 +4,9 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.AttachmentViewer_defaultProps = exports.AttachmentImage_defaultProps = void 0;
7
+
8
+ var _General = require("../../utils/General");
9
+
7
10
  var AttachmentImage_defaultProps = {
8
11
  dataId: 'AttachmentImage',
9
12
  customClass: {
@@ -18,7 +21,8 @@ var AttachmentViewer_defaultProps = {
18
21
  maintainZoom: false,
19
22
  isActive: false,
20
23
  dataId: 'AttachmentViewer',
21
- i18nKeys: {},
22
- customProps: {}
24
+ i18nKeys: _General.DUMMY_OBJECT,
25
+ customProps: _General.DUMMY_OBJECT,
26
+ hasCount: true
23
27
  };
24
28
  exports.AttachmentViewer_defaultProps = AttachmentViewer_defaultProps;
@@ -13,6 +13,9 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
13
13
 
14
14
  var AttachmentImage_propTypes = {
15
15
  alt: _propTypes["default"].string,
16
+ imageRef: _propTypes["default"].oneOfType([_propTypes["default"].func, _propTypes["default"].shape({
17
+ current: _propTypes["default"].any
18
+ })]),
16
19
  customClass: _propTypes["default"].shape({
17
20
  customImageClass: _propTypes["default"].string,
18
21
  customChildrenClass: _propTypes["default"].string
@@ -41,7 +44,7 @@ var AttachmentViewer_propTypes = {
41
44
  showText: _propTypes["default"].string,
42
45
  previewUnsupportedText: _propTypes["default"].string
43
46
  }),
44
- needDownload: _propTypes["default"].string,
47
+ needDownload: _propTypes["default"].bool,
45
48
  previewObj: _propTypes["default"].object,
46
49
  responsiveId: _propTypes["default"].string,
47
50
  maintainZoom: _propTypes["default"].bool,
@@ -54,8 +57,12 @@ var AttachmentViewer_propTypes = {
54
57
  document: _propTypes["default"].arrayOf(_propTypes["default"].string)
55
58
  }),
56
59
  renderUnSupportedElement: _propTypes["default"].func,
60
+ renderCustomImagePreviewElement: _propTypes["default"].func,
57
61
  customProps: _propTypes["default"].shape({
58
62
  avatarProps: _propTypes["default"].exact(_propTypes2.propTypes)
59
- })
63
+ }),
64
+ hasCount: _propTypes["default"].bool,
65
+ renderCustomIcons: _propTypes["default"].oneOfType([_propTypes["default"].func, _propTypes["default"].node]),
66
+ onSelectedAttachmentChange: _propTypes["default"].func
60
67
  };
61
68
  exports.AttachmentViewer_propTypes = AttachmentViewer_propTypes;
@@ -7,7 +7,7 @@ exports.defaultProps = void 0;
7
7
 
8
8
  var _constants = require("../utils/constants");
9
9
 
10
- var _utils = require("@zohodesk/utils");
10
+ var _constant = require("@zohodesk/utils/es/constantProps/constant");
11
11
 
12
12
  var defaultProps = {
13
13
  themeAppearance: _constants.THEME_APPEARANCE_LIGHT,
@@ -16,7 +16,7 @@ var defaultProps = {
16
16
  baseFontUnit: '16px',
17
17
  zoomUnitVariable: '--zd_baseUnit',
18
18
  fontUnitVariable: '--zd_baseFontUnit',
19
- excludeFeatures: _utils.DUMMY_ARRAY,
19
+ excludeFeatures: _constant.DUMMY_ARRAY,
20
20
  themeAppearanceAttr: 'data-mode',
21
21
  themeColorAttr: 'data-theme'
22
22
  };
package/lib/Link/Link.js CHANGED
@@ -110,7 +110,8 @@ var Link = /*#__PURE__*/function (_React$Component) {
110
110
  rel = _this$props2.rel,
111
111
  dataId = _this$props2.dataId,
112
112
  customProps = _this$props2.customProps,
113
- ariaLabel = _this$props2.ariaLabel;
113
+ ariaLabel = _this$props2.ariaLabel,
114
+ downloadName = _this$props2.downloadName;
114
115
  var _this$context$options = this.context.options,
115
116
  isLink = _this$context$options.isLink,
116
117
  constructURL = _this$context$options.constructURL;
@@ -118,10 +119,10 @@ var Link = /*#__PURE__*/function (_React$Component) {
118
119
  var option = {};
119
120
 
120
121
  if (download) {
121
- option.download = true;
122
+ option.download = downloadName || true;
122
123
  }
123
124
 
124
- var ignoreKeys = ['children', 'href', 'target', 'urlData', 'urlName', 'className', 'title', 'download', 'rel', 'dataId', 'hasReload', 'customProps', 'option', 'ariaLabel'];
125
+ var ignoreKeys = ['children', 'href', 'target', 'urlData', 'urlName', 'className', 'title', 'download', 'downloadName', 'rel', 'dataId', 'hasReload', 'customProps', 'option', 'ariaLabel'];
125
126
  var others = Object.keys(this.props).filter(function (key) {
126
127
  return ignoreKeys.indexOf(key) == -1;
127
128
  }).reduce(function (res, key) {
@@ -23,6 +23,7 @@ var propTypes = {
23
23
  customProps: _propTypes["default"].object,
24
24
  onClick: _propTypes["default"].func,
25
25
  download: _propTypes["default"].bool,
26
+ downloadName: _propTypes["default"].string,
26
27
  ariaLabel: _propTypes["default"].string,
27
28
  key: _propTypes["default"].string
28
29
  };
@@ -15,6 +15,8 @@ var _AlertClose = _interopRequireDefault(require("../../AlertClose/AlertClose"))
15
15
 
16
16
  var _AlertIcons = _interopRequireDefault(require("../../alertIcons/AlertIcons"));
17
17
 
18
+ var _renderNode = _interopRequireDefault(require("@zohodesk/utils/es/renderNode"));
19
+
18
20
  var _AlertHeaderNewModule = _interopRequireDefault(require("./css/AlertHeaderNew.module.css"));
19
21
 
20
22
  var _cssJSLogic2 = _interopRequireDefault(require("./css/cssJSLogic"));
@@ -48,7 +50,8 @@ function AlertHeader(props) {
48
50
  type = props.type,
49
51
  htmlId = props.htmlId,
50
52
  customStyle = props.customStyle,
51
- dragBoundaryLimit = props.dragBoundaryLimit;
53
+ dragBoundaryLimit = props.dragBoundaryLimit,
54
+ renderAlertIcon = props.renderAlertIcon;
52
55
  var finalStyle = (0, _utils.mergeStyle)(_AlertHeaderNewModule["default"], customStyle);
53
56
 
54
57
  var _cssJSLogic = (0, _cssJSLogic2["default"])({
@@ -75,7 +78,7 @@ function AlertHeader(props) {
75
78
  eleRef: dragRef
76
79
  }, needIcon && /*#__PURE__*/_react["default"].createElement("div", {
77
80
  className: finalStyle.iconContainer
78
- }, /*#__PURE__*/_react["default"].createElement(_AlertIcons["default"], {
81
+ }, (0, _renderNode["default"])(renderAlertIcon) || /*#__PURE__*/_react["default"].createElement(_AlertIcons["default"], {
79
82
  type: type
80
83
  })), (title || children) && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
81
84
  flexible: true
@@ -15,4 +15,30 @@ describe('AlertHeader', function () {
15
15
 
16
16
  expect(asFragment()).toMatchSnapshot();
17
17
  });
18
+ test('renders custom renderAlertIcon when needIcon is true', function () {
19
+ var customIcon = /*#__PURE__*/_react["default"].createElement("span", {
20
+ "data-test-id": "custom-icon"
21
+ }, "icon");
22
+
23
+ var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_AlertHeader["default"], {
24
+ needIcon: true,
25
+ renderAlertIcon: customIcon
26
+ })),
27
+ asFragment = _render2.asFragment;
28
+
29
+ expect(asFragment()).toMatchSnapshot();
30
+ });
31
+ test('does not render custom renderAlertIcon when needIcon is false', function () {
32
+ var customIcon = /*#__PURE__*/_react["default"].createElement("span", {
33
+ "data-test-id": "custom-icon"
34
+ }, "icon");
35
+
36
+ var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_AlertHeader["default"], {
37
+ needIcon: false,
38
+ renderAlertIcon: customIcon
39
+ })),
40
+ asFragment = _render3.asFragment;
41
+
42
+ expect(asFragment()).toMatchSnapshot();
43
+ });
18
44
  });
@@ -1,5 +1,17 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
+ exports[`AlertHeader does not render custom renderAlertIcon when needIcon is false 1`] = `
4
+ <DocumentFragment>
5
+ <div
6
+ class="container danger flex rowdir wrap vCenter"
7
+ data-drag-hook="true"
8
+ data-id="containerComponent"
9
+ data-selector-id="container"
10
+ data-test-id="containerComponent"
11
+ />
12
+ </DocumentFragment>
13
+ `;
14
+
3
15
  exports[`AlertHeader rendering the defult props 1`] = `
4
16
  <DocumentFragment>
5
17
  <div
@@ -86,3 +98,25 @@ exports[`AlertHeader rendering the defult props 1`] = `
86
98
  </div>
87
99
  </DocumentFragment>
88
100
  `;
101
+
102
+ exports[`AlertHeader renders custom renderAlertIcon when needIcon is true 1`] = `
103
+ <DocumentFragment>
104
+ <div
105
+ class="container danger flex rowdir wrap vCenter"
106
+ data-drag-hook="true"
107
+ data-id="containerComponent"
108
+ data-selector-id="container"
109
+ data-test-id="containerComponent"
110
+ >
111
+ <div
112
+ class="iconContainer"
113
+ >
114
+ <span
115
+ data-test-id="custom-icon"
116
+ >
117
+ icon
118
+ </span>
119
+ </div>
120
+ </div>
121
+ </DocumentFragment>
122
+ `;
@@ -25,6 +25,7 @@ var _default = {
25
25
  left: _propTypes["default"].number,
26
26
  right: _propTypes["default"].number,
27
27
  bottom: _propTypes["default"].number
28
- })
28
+ }),
29
+ renderAlertIcon: _propTypes["default"].oneOfType([_propTypes["default"].func, _propTypes["default"].node])
29
30
  };
30
31
  exports["default"] = _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.9.11",
3
+ "version": "1.9.13",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "scripts": {
20
20
  "clean": "react-cli clean lib es coverage assets && mkdir assets",
21
- "dubCheck": "node ./node_modules/@zohodesk-private/node-plugins/es/dublication_css_file_finder ../components/src ../internal/desk-components/src node_modules/@zohodesk/icons/es node_modules/@zohodesk/variables/es node_modules/@zohodesk/svg/es",
21
+ "dubCheck": "npx z-node-plugins dub:check ../components/src ../internal/desk-components/src node_modules/@zohodesk/icons/es node_modules/@zohodesk/variables/es node_modules/@zohodesk/svg/es",
22
22
  "build:lib": "cbt build:lib src,assets lib,assets",
23
23
  "build:es": "cbt build:es src,assets es,assets",
24
24
  "build:es:watch": "cbt build:es src es",
@@ -40,22 +40,22 @@
40
40
  "download": "npm run downloadOnly && cd ../ && npm run download",
41
41
  "downloadOnly": "react-cli clean ./node_modules ./package-lock.json && npm install --legacy-peer-deps",
42
42
  "expublish": "node ../publish.js -- exp",
43
- "css:lineheight:validate": "node ./node_modules/@zohodesk-private/node-plugins/es/lineheight_automation/lineHeightErrorCheck.js ./src/",
44
- "variable:addignore": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableIgnore.js ./src",
45
- "variable:convert": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/pxParserPostcss.js ./src",
46
- "variable:check": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableErrorCheck.js ./src ./node_modules/@zohodesk-private/css-variable-migrator/es/config/cssVariableReplacementOptions.json",
43
+ "css:lineheight:validate": "npx z-node-plugins lineheight:errorcheck ./src/",
44
+ "variable:addignore": "npx css-variable-migrator addignore ./src",
45
+ "variable:convert": "npx css-variable-migrator convert ./src",
46
+ "variable:check": "npx css-variable-migrator check ./src",
47
47
  "css:review": " npm run dubCheck && npm run css:lineheight:validate && npm run theme:validate ",
48
- "theme:validate": "node ./node_modules/@zohodesk-private/node-plugins/es/appearance_theme_validation validate ./src ./.cli ./.cli/stringContains.js",
49
- "theme:addignore": "node ./node_modules/@zohodesk-private/node-plugins/es/appearance_theme_validation addignore ./src ./.cli ./.cli/stringContains.js",
50
- "theme:removeignore": "node ./node_modules/@zohodesk-private/node-plugins/es/appearance_theme_validation removeignore ./src ./.cli",
48
+ "theme:validate": "npx z-node-plugins theme:validate ./src ./.cli ./.cli/stringContains.js",
49
+ "theme:addignore": "npx z-node-plugins theme:addignore ./src ./.cli ./.cli/stringContains.js",
50
+ "theme:removeignore": "npx z-node-plugins theme:removeignore ./src ./.cli",
51
51
  "review:props": "node ./node_modules/@zohodesk-private/react-prop-validator/es/propValidation.js propValidationArg.json",
52
- "css:layer_config_generate": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/scan_css_generate_json.js ./src ./assets css_layer_config.json",
53
- "css:layer_wrap_es": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/write_layer_in_css.js ./es ./assets css_layer_config.json --rewrite=src=es --rewrite=assets=assets --skip-existing-layer",
54
- "css:layer_wrap_lib": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/write_layer_in_css.js ./lib ./assets css_layer_config.json --rewrite=src=lib --rewrite=assets=assets --skip-existing-layer",
55
- "css:layer_generate_order": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/generate_layer_order.js css_layer_config.json ./src/dot_layer.module.css",
56
- "css:layer_config_validate": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/validate.js css_layer_config.json ./src/ ./assets",
52
+ "css:layer_config_generate": "npx z-node-plugins css:scan ./src ./assets css_layer_config.json",
53
+ "css:layer_wrap_es": "npx z-node-plugins css:layer_wrap ./es ./assets css_layer_config.json --rewrite=src=es --rewrite=assets=assets --skip-existing-layer",
54
+ "css:layer_wrap_lib": "npx z-node-plugins css:layer_wrap ./lib ./assets css_layer_config.json --rewrite=src=lib --rewrite=assets=assets --skip-existing-layer",
55
+ "css:layer_generate_order": "npx z-node-plugins css:layer_order css_layer_config.json ./src/dot_layer.module.css",
56
+ "css:layer_config_validate": "npx z-node-plugins css:layer_validate css_layer_config.json ./src/ ./assets",
57
57
  "css:build": "npm run css:layer_config_validate && npm run css:layer_generate_order && npm run build",
58
- "css:layer_remove": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/remove_layer.js ./es ./assets css_layer_config.json --rewrite=src=es --rewrite=assets=assets",
58
+ "css:layer_remove": "npx z-node-plugins css:layer_remove ./es ./assets css_layer_config.json --rewrite=src=es --rewrite=assets=assets",
59
59
  "cssVariableConvert": "react-cli variableConverter ./lib ./lib && react-cli variableConverter ./es ./es",
60
60
  "publish": "node ../publish.js",
61
61
  "check_package": "node ../check_dependencies.js"
@@ -66,15 +66,15 @@
66
66
  "@testing-library/react-hooks": "^7.0.2",
67
67
  "@testing-library/user-event": "^13.0.10",
68
68
  "@zohodesk-private/color-variable-preprocessor": "1.3.1",
69
- "@zohodesk-private/css-variable-migrator": "1.0.9",
70
- "@zohodesk-private/node-plugins": "1.1.13",
69
+ "@zohodesk-private/css-variable-migrator": "1.0.11",
70
+ "@zohodesk-private/node-plugins": "1.1.14",
71
71
  "@zohodesk-private/react-prop-validator": "1.2.3",
72
72
  "@zohodesk/a11y": "2.3.9",
73
- "@zohodesk/client_build_tool": "0.0.20",
74
- "@zohodesk/components": "1.6.12",
73
+ "@zohodesk/client_build_tool": "0.0.23",
74
+ "@zohodesk/components": "1.6.16",
75
75
  "@zohodesk/dotkit": "1.0.9",
76
76
  "@zohodesk/hooks": "2.0.8",
77
- "@zohodesk/icons": "1.2.8",
77
+ "@zohodesk/icons": "1.3.3",
78
78
  "@zohodesk/layout": "3.1.0",
79
79
  "@zohodesk/react-cli": "1.1.27",
80
80
  "@zohodesk/svg": "1.3.5",
@@ -83,19 +83,21 @@
83
83
  "@zohodesk/virtualizer": "1.0.13",
84
84
  "postcss-discard-comments": "^7.0.5",
85
85
  "react-sortable-hoc": "^0.8.3",
86
- "velocity-react": "1.4.3"
86
+ "velocity-react": "1.4.3",
87
+ "@dot-system/css-utility": "0.1.1"
87
88
  },
88
89
  "peerDependencies": {
89
90
  "velocity-react": "1.4.3",
90
91
  "@zohodesk/variables": "1.3.1",
91
- "@zohodesk/components": "1.6.12",
92
- "@zohodesk/icons": "1.2.8",
92
+ "@zohodesk/components": "1.6.16",
93
+ "@zohodesk/icons": "1.3.3",
93
94
  "@zohodesk/svg": "1.3.5",
94
95
  "@zohodesk/virtualizer": "1.0.13",
95
96
  "react-sortable-hoc": "^0.8.3",
96
97
  "@zohodesk/hooks": "2.0.8",
97
98
  "@zohodesk/utils": "1.3.16",
98
99
  "@zohodesk/a11y": "2.3.9",
99
- "@zohodesk/layout": "3.1.0"
100
+ "@zohodesk/layout": "3.1.0",
101
+ "@dot-system/css-utility": "0.1.1"
100
102
  }
101
103
  }