@atlaskit/drawer 7.10.0 → 7.12.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +710 -691
  2. package/dist/cjs/components/blanket.js +16 -8
  3. package/dist/cjs/components/index.js +4 -2
  4. package/dist/cjs/components/primitives/content.js +41 -14
  5. package/dist/cjs/components/primitives/drawer-wrapper.js +10 -2
  6. package/dist/cjs/components/primitives/index.js +11 -2
  7. package/dist/cjs/components/primitives/sidebar.js +5 -1
  8. package/dist/es2019/components/blanket.js +8 -1
  9. package/dist/es2019/components/index.js +4 -2
  10. package/dist/es2019/components/primitives/content.js +37 -11
  11. package/dist/es2019/components/primitives/drawer-wrapper.js +11 -2
  12. package/dist/es2019/components/primitives/index.js +12 -2
  13. package/dist/es2019/components/primitives/sidebar.js +5 -1
  14. package/dist/esm/components/blanket.js +16 -8
  15. package/dist/esm/components/index.js +4 -2
  16. package/dist/esm/components/primitives/content.js +41 -13
  17. package/dist/esm/components/primitives/drawer-wrapper.js +11 -2
  18. package/dist/esm/components/primitives/index.js +12 -2
  19. package/dist/esm/components/primitives/sidebar.js +5 -1
  20. package/dist/types/components/blanket.d.ts +3 -0
  21. package/dist/types/components/index.d.ts +2 -2
  22. package/dist/types/components/primitives/content.d.ts +4 -1
  23. package/dist/types/components/primitives/drawer-wrapper.d.ts +3 -0
  24. package/dist/types/components/primitives/index.d.ts +4 -1
  25. package/dist/types/components/primitives/sidebar.d.ts +3 -0
  26. package/dist/types/components/types.d.ts +8 -0
  27. package/dist/types-ts4.5/components/blanket.d.ts +3 -0
  28. package/dist/types-ts4.5/components/index.d.ts +2 -2
  29. package/dist/types-ts4.5/components/primitives/content.d.ts +4 -1
  30. package/dist/types-ts4.5/components/primitives/drawer-wrapper.d.ts +3 -0
  31. package/dist/types-ts4.5/components/primitives/index.d.ts +4 -1
  32. package/dist/types-ts4.5/components/primitives/sidebar.d.ts +3 -0
  33. package/dist/types-ts4.5/components/types.d.ts +8 -0
  34. package/package.json +100 -102
  35. package/report.api.md +117 -128
@@ -1,8 +1,12 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  var _excluded = ["cssFn"];
4
+ /**
5
+ * @jsxRuntime classic
6
+ */
4
7
  /** @jsx jsx */
5
8
 
9
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
6
10
  import { css, jsx } from '@emotion/react';
7
11
  import { N500 } from '@atlaskit/theme/colors';
8
12
  var defaultStyle = {
@@ -23,7 +27,7 @@ var sidebarCSS = function sidebarCSS() {
23
27
  var Sidebar = function Sidebar(_ref) {
24
28
  var cssFn = _ref.cssFn,
25
29
  props = _objectWithoutProperties(_ref, _excluded);
26
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @repo/internal/react/no-unsafe-spread-props
30
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @repo/internal/react/no-unsafe-spread-props, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
27
31
  return jsx("div", _extends({
28
32
  css: css(cssFn(defaultStyle))
29
33
  }, props));
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import React from 'react';
3
6
  import { jsx } from '@emotion/react';
@@ -22,10 +22,10 @@ export declare class DrawerBase extends Component<DrawerProps, {
22
22
  handleKeyDown: (event: KeyboardEvent) => void;
23
23
  render(): JSX.Element | null;
24
24
  }
25
- declare const _default: React.ForwardRefExoticComponent<Pick<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "children" | "onKeyDown" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | keyof import("./types").DrawerLabel> & Partial<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "width" | keyof import("./types").FocusLockSettings>> & Partial<Pick<{
25
+ declare const _default: React.ForwardRefExoticComponent<Pick<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "scrollContentLabel" | "children" | "onKeyDown" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | keyof import("./types").DrawerLabel> & Partial<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "width" | keyof import("./types").FocusLockSettings>> & Partial<Pick<{
26
26
  autoFocusFirstElem?: boolean | (() => HTMLElement | null) | undefined;
27
27
  isFocusLockEnabled?: boolean | undefined;
28
28
  shouldReturnFocus?: boolean | React.RefObject<HTMLElement> | undefined;
29
29
  width: DrawerWidth;
30
- }, never>> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "width" | "children" | "onKeyDown" | "key" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | "analyticsContext" | keyof import("./types").FocusLockSettings | keyof import("./types").DrawerLabel> & React.RefAttributes<any>>;
30
+ }, never>> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "scrollContentLabel" | "width" | "children" | "onKeyDown" | "key" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | "analyticsContext" | keyof import("./types").FocusLockSettings | keyof import("./types").DrawerLabel> & React.RefAttributes<any>>;
31
31
  export default _default;
@@ -1,8 +1,11 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type CSSObject, jsx } from '@emotion/react';
3
6
  import { type ContentProps } from '../types';
4
7
  declare const _default: {
5
- component: ({ cssFn, ...props }: ContentProps) => jsx.JSX.Element;
8
+ component: ({ cssFn, scrollContentLabel, ...props }: ContentProps) => jsx.JSX.Element;
6
9
  cssFn: () => CSSObject;
7
10
  };
8
11
  export default _default;
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type ReactElement, type Ref } from 'react';
3
6
  import { type DrawerPrimitiveProps, type Widths } from '../types';
@@ -1,5 +1,8 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { jsx } from '@emotion/react';
3
6
  import { type DrawerPrimitiveProps } from '../types';
4
- declare const DrawerPrimitive: ({ children, icon: Icon, closeLabel, onClose, onCloseComplete, onOpenComplete, overrides, testId, in: isOpen, shouldReturnFocus, autoFocusFirstElem, isFocusLockEnabled, width, label, titleId, }: DrawerPrimitiveProps) => jsx.JSX.Element;
7
+ declare const DrawerPrimitive: ({ children, icon: Icon, closeLabel, scrollContentLabel, onClose, onCloseComplete, onOpenComplete, overrides, testId, in: isOpen, shouldReturnFocus, autoFocusFirstElem, isFocusLockEnabled, width, label, titleId, }: DrawerPrimitiveProps) => jsx.JSX.Element;
5
8
  export default DrawerPrimitive;
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type FC } from 'react';
3
6
  import { type CSSObject } from '@emotion/react';
@@ -36,6 +36,10 @@ export interface BaseProps {
36
36
  * This is the accessible name for the close/back control of the drawer. The default is "Close drawer".
37
37
  */
38
38
  closeLabel?: string;
39
+ /**
40
+ * When the content is scrollable, this is the accessible name for the the drawer region. The default is "Scrollable content".
41
+ */
42
+ scrollContentLabel?: ContentProps['scrollContentLabel'];
39
43
  /**
40
44
  * Sets the width of the drawer.
41
45
  */
@@ -110,6 +114,10 @@ export interface ContentProps extends React.HTMLProps<HTMLDivElement> {
110
114
  * @deprecated Please avoid using this prop as we intend to remove the prop completely in a future release. See DSP-2673 for more information.
111
115
  */
112
116
  cssFn: (defaultStyles: CSSObject) => CSSObject;
117
+ /**
118
+ * When the content is scrollable, this is the accessible name for the the drawer region. The default is "Scrollable content".
119
+ */
120
+ scrollContentLabel?: string;
113
121
  }
114
122
  export type ContentCSSProps = Omit<ContentProps, 'cssFn'>;
115
123
  export interface DrawerPrimitiveProps extends BaseProps, FocusLockSettings, DrawerLabel {
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import React from 'react';
3
6
  import { jsx } from '@emotion/react';
@@ -22,10 +22,10 @@ export declare class DrawerBase extends Component<DrawerProps, {
22
22
  handleKeyDown: (event: KeyboardEvent) => void;
23
23
  render(): JSX.Element | null;
24
24
  }
25
- declare const _default: React.ForwardRefExoticComponent<Pick<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "children" | "onKeyDown" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | keyof import("./types").DrawerLabel> & Partial<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "width" | keyof import("./types").FocusLockSettings>> & Partial<Pick<{
25
+ declare const _default: React.ForwardRefExoticComponent<Pick<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "scrollContentLabel" | "children" | "onKeyDown" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | keyof import("./types").DrawerLabel> & Partial<Pick<Omit<DrawerProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, "width" | keyof import("./types").FocusLockSettings>> & Partial<Pick<{
26
26
  autoFocusFirstElem?: boolean | (() => HTMLElement | null) | undefined;
27
27
  isFocusLockEnabled?: boolean | undefined;
28
28
  shouldReturnFocus?: boolean | React.RefObject<HTMLElement> | undefined;
29
29
  width: DrawerWidth;
30
- }, never>> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "width" | "children" | "onKeyDown" | "key" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | "analyticsContext" | keyof import("./types").FocusLockSettings | keyof import("./types").DrawerLabel> & React.RefAttributes<any>>;
30
+ }, never>> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "scrollContentLabel" | "width" | "children" | "onKeyDown" | "key" | "onClose" | "testId" | "icon" | "closeLabel" | "onOpenComplete" | "onCloseComplete" | "shouldUnmountOnExit" | "overrides" | "zIndex" | "isOpen" | "analyticsContext" | keyof import("./types").FocusLockSettings | keyof import("./types").DrawerLabel> & React.RefAttributes<any>>;
31
31
  export default _default;
@@ -1,8 +1,11 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type CSSObject, jsx } from '@emotion/react';
3
6
  import { type ContentProps } from '../types';
4
7
  declare const _default: {
5
- component: ({ cssFn, ...props }: ContentProps) => jsx.JSX.Element;
8
+ component: ({ cssFn, scrollContentLabel, ...props }: ContentProps) => jsx.JSX.Element;
6
9
  cssFn: () => CSSObject;
7
10
  };
8
11
  export default _default;
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type ReactElement, type Ref } from 'react';
3
6
  import { type DrawerPrimitiveProps, type Widths } from '../types';
@@ -1,5 +1,8 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { jsx } from '@emotion/react';
3
6
  import { type DrawerPrimitiveProps } from '../types';
4
- declare const DrawerPrimitive: ({ children, icon: Icon, closeLabel, onClose, onCloseComplete, onOpenComplete, overrides, testId, in: isOpen, shouldReturnFocus, autoFocusFirstElem, isFocusLockEnabled, width, label, titleId, }: DrawerPrimitiveProps) => jsx.JSX.Element;
7
+ declare const DrawerPrimitive: ({ children, icon: Icon, closeLabel, scrollContentLabel, onClose, onCloseComplete, onOpenComplete, overrides, testId, in: isOpen, shouldReturnFocus, autoFocusFirstElem, isFocusLockEnabled, width, label, titleId, }: DrawerPrimitiveProps) => jsx.JSX.Element;
5
8
  export default DrawerPrimitive;
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type FC } from 'react';
3
6
  import { type CSSObject } from '@emotion/react';
@@ -36,6 +36,10 @@ export interface BaseProps {
36
36
  * This is the accessible name for the close/back control of the drawer. The default is "Close drawer".
37
37
  */
38
38
  closeLabel?: string;
39
+ /**
40
+ * When the content is scrollable, this is the accessible name for the the drawer region. The default is "Scrollable content".
41
+ */
42
+ scrollContentLabel?: ContentProps['scrollContentLabel'];
39
43
  /**
40
44
  * Sets the width of the drawer.
41
45
  */
@@ -110,6 +114,10 @@ export interface ContentProps extends React.HTMLProps<HTMLDivElement> {
110
114
  * @deprecated Please avoid using this prop as we intend to remove the prop completely in a future release. See DSP-2673 for more information.
111
115
  */
112
116
  cssFn: (defaultStyles: CSSObject) => CSSObject;
117
+ /**
118
+ * When the content is scrollable, this is the accessible name for the the drawer region. The default is "Scrollable content".
119
+ */
120
+ scrollContentLabel?: string;
113
121
  }
114
122
  export type ContentCSSProps = Omit<ContentProps, 'cssFn'>;
115
123
  export interface DrawerPrimitiveProps extends BaseProps, FocusLockSettings, DrawerLabel {
package/package.json CHANGED
@@ -1,103 +1,101 @@
1
1
  {
2
- "name": "@atlaskit/drawer",
3
- "version": "7.10.0",
4
- "description": "A drawer is a panel that slides in from the left side of the screen.",
5
- "publishConfig": {
6
- "registry": "https://registry.npmjs.org/"
7
- },
8
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
9
- "author": "Atlassian Pty Ltd",
10
- "license": "Apache-2.0",
11
- "main": "dist/cjs/index.js",
12
- "module": "dist/esm/index.js",
13
- "module:es2019": "dist/es2019/index.js",
14
- "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.5 <4.9": {
17
- "*": [
18
- "dist/types-ts4.5/*",
19
- "dist/types-ts4.5/index.d.ts"
20
- ]
21
- }
22
- },
23
- "sideEffects": false,
24
- "atlaskit:src": "src/index.tsx",
25
- "af:exports": {
26
- ".": "./src/index.tsx",
27
- "./constants": "./src/constants.tsx"
28
- },
29
- "homepage": "https://atlassian.design/components/drawer",
30
- "atlassian": {
31
- "team": "Design System Team",
32
- "releaseModel": "continuous",
33
- "productPushConsumption": [
34
- "jira"
35
- ],
36
- "website": {
37
- "name": "Drawer",
38
- "category": "Components"
39
- },
40
- "runReact18": true
41
- },
42
- "dependencies": {
43
- "@atlaskit/analytics-next": "^9.3.0",
44
- "@atlaskit/blanket": "^13.1.0",
45
- "@atlaskit/button": "^17.17.0",
46
- "@atlaskit/icon": "^22.3.0",
47
- "@atlaskit/motion": "^1.6.0",
48
- "@atlaskit/portal": "^4.5.0",
49
- "@atlaskit/theme": "^12.8.0",
50
- "@atlaskit/tokens": "^1.49.0",
51
- "@babel/runtime": "^7.0.0",
52
- "@emotion/react": "^11.7.1",
53
- "bind-event-listener": "^3.0.0",
54
- "exenv": "^1.2.2",
55
- "react-focus-lock": "^2.9.5",
56
- "react-scrolllock": "^5.0.1",
57
- "tiny-invariant": "^1.2.0",
58
- "use-callback-ref": "^1.2.3"
59
- },
60
- "peerDependencies": {
61
- "react": "^16.8.0 || ^17.0.0 || ~18.2.0"
62
- },
63
- "devDependencies": {
64
- "@af/accessibility-testing": "*",
65
- "@af/integration-testing": "*",
66
- "@af/visual-regression": "*",
67
- "@atlaskit/ds-lib": "^2.3.0",
68
- "@atlaskit/ssr": "*",
69
- "@atlaskit/visual-regression": "*",
70
- "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
71
- "@testing-library/react": "^12.1.5",
72
- "@testing-library/user-event": "^14.4.3",
73
- "@types/exenv": "^1.2.0",
74
- "lodash": "^4.17.21",
75
- "react-dom": "^16.8.0",
76
- "react-lorem-component": "^0.13.0",
77
- "typescript": "~5.4.2",
78
- "wait-for-expect": "^1.2.0"
79
- },
80
- "techstack": {
81
- "@atlassian/frontend": {
82
- "import-structure": "atlassian-conventions"
83
- },
84
- "@repo/internal": {
85
- "dom-events": "use-bind-event-listener",
86
- "design-system": "v1",
87
- "analytics": "analytics-next",
88
- "design-tokens": [
89
- "color",
90
- "spacing"
91
- ],
92
- "styling": [
93
- "static",
94
- "emotion"
95
- ],
96
- "deprecation": "no-deprecated-imports",
97
- "ui-components": [
98
- "primitives"
99
- ]
100
- }
101
- },
102
- "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
103
- }
2
+ "name": "@atlaskit/drawer",
3
+ "version": "7.12.0",
4
+ "description": "A drawer is a panel that slides in from the left side of the screen.",
5
+ "publishConfig": {
6
+ "registry": "https://registry.npmjs.org/"
7
+ },
8
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
9
+ "author": "Atlassian Pty Ltd",
10
+ "license": "Apache-2.0",
11
+ "main": "dist/cjs/index.js",
12
+ "module": "dist/esm/index.js",
13
+ "module:es2019": "dist/es2019/index.js",
14
+ "types": "dist/types/index.d.ts",
15
+ "typesVersions": {
16
+ ">=4.5 <4.9": {
17
+ "*": [
18
+ "dist/types-ts4.5/*",
19
+ "dist/types-ts4.5/index.d.ts"
20
+ ]
21
+ }
22
+ },
23
+ "sideEffects": false,
24
+ "atlaskit:src": "src/index.tsx",
25
+ "af:exports": {
26
+ ".": "./src/index.tsx",
27
+ "./constants": "./src/constants.tsx"
28
+ },
29
+ "homepage": "https://atlassian.design/components/drawer",
30
+ "atlassian": {
31
+ "team": "Design System Team",
32
+ "releaseModel": "continuous",
33
+ "productPushConsumption": [
34
+ "jira"
35
+ ],
36
+ "website": {
37
+ "name": "Drawer",
38
+ "category": "Components"
39
+ },
40
+ "runReact18": true
41
+ },
42
+ "dependencies": {
43
+ "@atlaskit/analytics-next": "^9.3.0",
44
+ "@atlaskit/blanket": "^13.2.0",
45
+ "@atlaskit/button": "^17.19.0",
46
+ "@atlaskit/icon": "^22.4.0",
47
+ "@atlaskit/motion": "^1.7.0",
48
+ "@atlaskit/portal": "^4.6.0",
49
+ "@atlaskit/theme": "^12.10.0",
50
+ "@atlaskit/tokens": "^1.51.0",
51
+ "@babel/runtime": "^7.0.0",
52
+ "@emotion/react": "^11.7.1",
53
+ "bind-event-listener": "^3.0.0",
54
+ "exenv": "^1.2.2",
55
+ "react-focus-lock": "^2.9.5",
56
+ "react-scrolllock": "^5.0.1",
57
+ "tiny-invariant": "^1.2.0",
58
+ "use-callback-ref": "^1.2.3"
59
+ },
60
+ "peerDependencies": {
61
+ "react": "^16.8.0 || ^17.0.0 || ~18.2.0"
62
+ },
63
+ "devDependencies": {
64
+ "@af/accessibility-testing": "*",
65
+ "@af/integration-testing": "*",
66
+ "@af/visual-regression": "*",
67
+ "@atlaskit/ds-lib": "^2.3.0",
68
+ "@atlaskit/ssr": "*",
69
+ "@atlaskit/visual-regression": "*",
70
+ "@testing-library/react": "^12.1.5",
71
+ "@testing-library/user-event": "^14.4.3",
72
+ "@types/exenv": "^1.2.0",
73
+ "lodash": "^4.17.21",
74
+ "react-dom": "^16.8.0",
75
+ "react-lorem-component": "^0.13.0",
76
+ "typescript": "~5.4.2",
77
+ "wait-for-expect": "^1.2.0"
78
+ },
79
+ "techstack": {
80
+ "@atlassian/frontend": {
81
+ "import-structure": "atlassian-conventions"
82
+ },
83
+ "@repo/internal": {
84
+ "dom-events": "use-bind-event-listener",
85
+ "design-system": "v1",
86
+ "analytics": "analytics-next",
87
+ "design-tokens": [
88
+ "color",
89
+ "spacing"
90
+ ],
91
+ "styling": [
92
+ "static",
93
+ "emotion"
94
+ ],
95
+ "deprecation": "no-deprecated-imports",
96
+ "ui-components": [
97
+ "primitives"
98
+ ]
99
+ }
100
+ }
101
+ }