@zendeskgarden/react-notifications 9.0.0-next.2 → 9.0.0-next.20

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 +6 -4
  2. package/dist/esm/elements/Alert.js +56 -0
  3. package/dist/esm/elements/Notification.js +55 -0
  4. package/dist/esm/elements/Well.js +47 -0
  5. package/dist/esm/elements/content/Close.js +40 -0
  6. package/dist/esm/elements/content/Paragraph.js +28 -0
  7. package/dist/esm/elements/content/Title.js +35 -0
  8. package/dist/esm/elements/global-alert/GlobalAlert.js +78 -0
  9. package/dist/esm/elements/global-alert/GlobalAlertButton.js +47 -0
  10. package/dist/esm/elements/global-alert/GlobalAlertClose.js +43 -0
  11. package/dist/esm/elements/global-alert/GlobalAlertContent.js +30 -0
  12. package/dist/esm/elements/global-alert/GlobalAlertTitle.js +44 -0
  13. package/dist/esm/elements/toaster/Toast.js +62 -0
  14. package/dist/esm/elements/toaster/ToastContext.js +11 -0
  15. package/dist/esm/elements/toaster/ToastProvider.js +51 -0
  16. package/dist/esm/elements/toaster/ToastSlot.js +82 -0
  17. package/dist/esm/elements/toaster/reducer.js +66 -0
  18. package/dist/esm/elements/toaster/styled.js +71 -0
  19. package/dist/esm/elements/toaster/useToast.js +70 -0
  20. package/dist/esm/index.js +15 -0
  21. package/dist/esm/node_modules/@zendeskgarden/svg-icons/src/16/alert-error-stroke.svg.js +37 -0
  22. package/dist/esm/node_modules/@zendeskgarden/svg-icons/src/16/alert-warning-stroke.svg.js +32 -0
  23. package/dist/esm/node_modules/@zendeskgarden/svg-icons/src/16/check-circle-stroke.svg.js +33 -0
  24. package/dist/esm/node_modules/@zendeskgarden/svg-icons/src/16/info-stroke.svg.js +37 -0
  25. package/dist/esm/node_modules/@zendeskgarden/svg-icons/src/16/x-stroke.svg.js +26 -0
  26. package/dist/esm/styled/StyledAlert.js +51 -0
  27. package/dist/esm/styled/StyledBase.js +92 -0
  28. package/dist/esm/styled/StyledIcon.js +61 -0
  29. package/dist/esm/styled/StyledNotification.js +56 -0
  30. package/dist/esm/styled/StyledWell.js +47 -0
  31. package/dist/esm/styled/content/StyledClose.js +70 -0
  32. package/dist/esm/styled/content/StyledParagraph.js +22 -0
  33. package/dist/esm/styled/content/StyledTitle.js +25 -0
  34. package/dist/esm/styled/global-alert/StyledGlobalAlert.js +160 -0
  35. package/dist/esm/styled/global-alert/StyledGlobalAlertButton.js +118 -0
  36. package/dist/esm/styled/global-alert/StyledGlobalAlertClose.js +103 -0
  37. package/dist/esm/styled/global-alert/StyledGlobalAlertContent.js +22 -0
  38. package/dist/esm/styled/global-alert/StyledGlobalAlertIcon.js +65 -0
  39. package/dist/esm/styled/global-alert/StyledGlobalAlertTitle.js +49 -0
  40. package/dist/esm/types/index.js +9 -0
  41. package/dist/esm/utils/icons.js +25 -0
  42. package/dist/esm/utils/useGlobalAlertContext.js +14 -0
  43. package/dist/esm/utils/useNotificationsContext.js +14 -0
  44. package/dist/index.cjs.js +811 -440
  45. package/dist/typings/elements/Alert.d.ts +9 -1
  46. package/dist/typings/elements/Notification.d.ts +9 -1
  47. package/dist/typings/elements/Well.d.ts +7 -1
  48. package/dist/typings/elements/content/Close.d.ts +2 -0
  49. package/dist/typings/elements/content/Paragraph.d.ts +2 -0
  50. package/dist/typings/elements/content/Title.d.ts +2 -0
  51. package/dist/typings/index.d.ts +2 -6
  52. package/dist/typings/styled/StyledAlert.d.ts +8 -3
  53. package/dist/typings/styled/StyledBase.d.ts +8 -6
  54. package/dist/typings/styled/StyledIcon.d.ts +11 -2
  55. package/dist/typings/styled/StyledNotification.d.ts +11 -3
  56. package/dist/typings/styled/StyledWell.d.ts +7 -2
  57. package/dist/typings/styled/content/StyledClose.d.ts +5 -3
  58. package/dist/typings/styled/content/StyledTitle.d.ts +1 -1
  59. package/dist/typings/styled/global-alert/StyledGlobalAlert.d.ts +1 -1
  60. package/dist/typings/styled/global-alert/StyledGlobalAlertButton.d.ts +4 -11
  61. package/dist/typings/styled/global-alert/StyledGlobalAlertClose.d.ts +2 -3
  62. package/dist/typings/styled/global-alert/StyledGlobalAlertIcon.d.ts +2 -2
  63. package/dist/typings/styled/global-alert/StyledGlobalAlertTitle.d.ts +2 -2
  64. package/dist/typings/utils/icons.d.ts +1 -1
  65. package/dist/typings/{elements/global-alert/utility.d.ts → utils/useGlobalAlertContext.d.ts} +1 -1
  66. package/dist/typings/utils/useNotificationsContext.d.ts +2 -3
  67. package/package.json +9 -9
  68. package/dist/index.esm.js +0 -1124
@@ -6,7 +6,15 @@
6
6
  */
7
7
  import React from 'react';
8
8
  import { IAlertProps } from '../types';
9
+ import { Title } from './content/Title';
10
+ import { Paragraph } from './content/Paragraph';
11
+ import { Close } from './content/Close';
12
+ export declare const AlertComponent: React.ForwardRefExoticComponent<IAlertProps & React.RefAttributes<HTMLDivElement>>;
9
13
  /**
10
14
  * @extends HTMLAttributes<HTMLDivElement>
11
15
  */
12
- export declare const Alert: React.ForwardRefExoticComponent<IAlertProps & React.RefAttributes<HTMLDivElement>>;
16
+ export declare const Alert: React.ForwardRefExoticComponent<IAlertProps & React.RefAttributes<HTMLDivElement>> & {
17
+ Close: typeof Close;
18
+ Paragraph: typeof Paragraph;
19
+ Title: typeof Title;
20
+ };
@@ -6,7 +6,15 @@
6
6
  */
7
7
  import React from 'react';
8
8
  import { INotificationProps } from '../types';
9
+ import { Title } from './content/Title';
10
+ import { Paragraph } from './content/Paragraph';
11
+ import { Close } from './content/Close';
12
+ export declare const NotificationComponent: React.ForwardRefExoticComponent<INotificationProps & React.RefAttributes<HTMLDivElement>>;
9
13
  /**
10
14
  * @extends HTMLAttributes<HTMLDivElement>
11
15
  */
12
- export declare const Notification: React.ForwardRefExoticComponent<INotificationProps & React.RefAttributes<HTMLDivElement>>;
16
+ export declare const Notification: React.ForwardRefExoticComponent<INotificationProps & React.RefAttributes<HTMLDivElement>> & {
17
+ Close: typeof Close;
18
+ Paragraph: typeof Paragraph;
19
+ Title: typeof Title;
20
+ };
@@ -6,7 +6,13 @@
6
6
  */
7
7
  import React from 'react';
8
8
  import { IWellProps } from '../types';
9
+ import { Title } from './content/Title';
10
+ import { Paragraph } from './content/Paragraph';
11
+ export declare const WellComponent: React.ForwardRefExoticComponent<IWellProps & React.RefAttributes<HTMLDivElement>>;
9
12
  /**
10
13
  * @extends HTMLAttributes<HTMLDivElement>
11
14
  */
12
- export declare const Well: React.ForwardRefExoticComponent<IWellProps & React.RefAttributes<HTMLDivElement>>;
15
+ export declare const Well: React.ForwardRefExoticComponent<IWellProps & React.RefAttributes<HTMLDivElement>> & {
16
+ Paragraph: typeof Paragraph;
17
+ Title: typeof Title;
18
+ };
@@ -6,6 +6,8 @@
6
6
  */
7
7
  import React from 'react';
8
8
  /**
9
+ * @deprecated use `Alert.Close` or `Notification.Close` instead
10
+ *
9
11
  * @extends ButtonHTMLAttributes<HTMLButtonElement>
10
12
  */
11
13
  export declare const Close: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
@@ -6,6 +6,8 @@
6
6
  */
7
7
  import React from 'react';
8
8
  /**
9
+ * @deprecated use `Alert.Paragraph`, `Notification.Paragraph`, or `Well.Paragraph` instead
10
+ *
9
11
  * @extends HTMLAttributes<HTMLParagraphElement>
10
12
  */
11
13
  export declare const Paragraph: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
@@ -7,6 +7,8 @@
7
7
  import React from 'react';
8
8
  import { ITitleProps } from '../../types';
9
9
  /**
10
+ * @deprecated use `Alert.Title`, `Notification.Title`, or `Well.Title` instead
11
+ *
10
12
  * @extends HTMLAttributes<HTMLDivElement>
11
13
  */
12
14
  export declare const Title: React.ForwardRefExoticComponent<ITitleProps & React.RefAttributes<HTMLDivElement>>;
@@ -11,10 +11,6 @@ export { Close } from './elements/content/Close';
11
11
  export { Paragraph } from './elements/content/Paragraph';
12
12
  export { Title } from './elements/content/Title';
13
13
  export { ToastProvider } from './elements/toaster/ToastProvider';
14
- export { useToast, type IToastOptions, type IToast,
15
- /** @deprecated can be dereferenced via IToast['content'] */
16
- type Content as ToastContent } from './elements/toaster/useToast';
14
+ export { useToast, type IToastOptions, type IToast } from './elements/toaster/useToast';
17
15
  export { GlobalAlert } from './elements/global-alert/GlobalAlert';
18
- export type { IAlertProps, INotificationProps, IWellProps, ITitleProps, IToastProviderProps, IGlobalAlertProps, IGlobalAlertButtonProps, IGlobalAlertTitleProps,
19
- /** @deprecated can be dereferenced via IToastOptions['placement'] */
20
- Placement as ToastPlacement } from './types';
16
+ export type { IAlertProps, INotificationProps, IWellProps, ITitleProps, IToastProviderProps, IGlobalAlertProps, IGlobalAlertButtonProps, IGlobalAlertTitleProps } from './types';
@@ -5,13 +5,18 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import { DefaultTheme } from 'styled-components';
8
- export interface IStyledAlertProps {
9
- hue?: string;
8
+ import { IStyledBaseProps } from './StyledBase';
9
+ import { Type } from '../types';
10
+ export interface IStyledAlertProps extends IStyledBaseProps {
11
+ $type?: Type;
10
12
  }
11
13
  /**
12
14
  * Supports all `<div>` props
13
15
  */
14
- export declare const StyledAlert: import("styled-components").StyledComponent<"div", DefaultTheme, import("./StyledBase").IStyledBaseProps & {
16
+ export declare const StyledAlert: import("styled-components").StyledComponent<"div", DefaultTheme, {
17
+ 'data-garden-id': string;
18
+ 'data-garden-version': string;
19
+ } & IStyledBaseProps & {
15
20
  'data-garden-id': string;
16
21
  'data-garden-version': string;
17
22
  } & IStyledAlertProps, "data-garden-id" | "data-garden-version">;
@@ -4,11 +4,13 @@
4
4
  * Use of this source code is governed under the Apache License, Version 2.0
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
- import { DefaultTheme } from 'styled-components';
7
+ import { ThemeProps, DefaultTheme } from 'styled-components';
8
8
  import { Type } from '../types';
9
- export interface IStyledBaseProps {
10
- isFloating?: boolean;
11
- hue?: string;
12
- type?: Type;
9
+ export interface IStyledBaseProps extends ThemeProps<DefaultTheme> {
10
+ $isFloating?: boolean;
11
+ $type?: Type;
13
12
  }
14
- export declare const StyledBase: import("styled-components").StyledComponent<"div", DefaultTheme, IStyledBaseProps, never>;
13
+ export declare const StyledBase: import("styled-components").StyledComponent<"div", DefaultTheme, {
14
+ 'data-garden-id': string;
15
+ 'data-garden-version': string;
16
+ } & IStyledBaseProps, "data-garden-id" | "data-garden-version">;
@@ -4,5 +4,14 @@
4
4
  * Use of this source code is governed under the Apache License, Version 2.0
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
- import React from 'react';
8
- export declare const StyledIcon: import("styled-components").StyledComponent<({ children, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>, import("styled-components").DefaultTheme, {}, never>;
7
+ /// <reference types="react" />
8
+ import { DefaultTheme, ThemeProps } from 'styled-components';
9
+ import { Type } from '../types';
10
+ interface IStyledIconProps extends ThemeProps<DefaultTheme> {
11
+ $type?: Type;
12
+ }
13
+ export declare const StyledIcon: import("styled-components").StyledComponent<({ children, theme, ...props }: any) => import("react").DetailedReactHTMLElement<any, HTMLElement>, DefaultTheme, {
14
+ 'data-garden-id': string;
15
+ 'data-garden-version': string;
16
+ } & IStyledIconProps, "data-garden-id" | "data-garden-version">;
17
+ export {};
@@ -5,11 +5,19 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import { DefaultTheme } from 'styled-components';
8
- import { INotificationProps } from '../types';
8
+ import { Type } from '../types';
9
+ import { IStyledBaseProps } from './StyledBase';
10
+ interface IStyledNotificationProps extends IStyledBaseProps {
11
+ $type?: Type;
12
+ }
9
13
  /**
10
14
  * Supports all `<div>` props
11
15
  */
12
- export declare const StyledNotification: import("styled-components").StyledComponent<"div", DefaultTheme, import("./StyledBase").IStyledBaseProps & {
16
+ export declare const StyledNotification: import("styled-components").StyledComponent<"div", DefaultTheme, {
13
17
  'data-garden-id': string;
14
18
  'data-garden-version': string;
15
- } & INotificationProps, "data-garden-id" | "data-garden-version">;
19
+ } & IStyledBaseProps & {
20
+ 'data-garden-id': string;
21
+ 'data-garden-version': string;
22
+ } & IStyledNotificationProps, "data-garden-id" | "data-garden-version">;
23
+ export {};
@@ -4,13 +4,18 @@
4
4
  * Use of this source code is governed under the Apache License, Version 2.0
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
+ import { DefaultTheme } from 'styled-components';
7
8
  export interface IStyledWellProps {
8
- isRecessed?: boolean;
9
+ $isRecessed?: boolean;
10
+ $isFloating?: boolean;
9
11
  }
10
12
  /**
11
13
  * Supports all `<div>` props
12
14
  */
13
- export declare const StyledWell: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("./StyledBase").IStyledBaseProps & {
15
+ export declare const StyledWell: import("styled-components").StyledComponent<"div", DefaultTheme, {
16
+ 'data-garden-id': string;
17
+ 'data-garden-version': string;
18
+ } & import("./StyledBase").IStyledBaseProps & {
14
19
  'data-garden-id': string;
15
20
  'data-garden-version': string;
16
21
  } & IStyledWellProps, "data-garden-id" | "data-garden-version">;
@@ -4,9 +4,11 @@
4
4
  * Use of this source code is governed under the Apache License, Version 2.0
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
- import { Hue } from '../../utils/useNotificationsContext';
7
+ /// <reference types="react" />
8
+ import { DefaultTheme } from 'styled-components';
9
+ import { Type } from '../../types';
8
10
  interface IStyledCloseProps {
9
- hue?: Hue;
11
+ $type?: Type;
10
12
  }
11
13
  /**
12
14
  * Used to close a Notification. Supports all `<button>` props
@@ -14,7 +16,7 @@ interface IStyledCloseProps {
14
16
  * 1. Reset for <button> element.
15
17
  * 2. Remove dotted outline from Firefox on focus.
16
18
  */
17
- export declare const StyledClose: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
19
+ export declare const StyledClose: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@zendeskgarden/react-buttons").IIconButtonProps & import("react").RefAttributes<HTMLButtonElement>>, DefaultTheme, {
18
20
  'data-garden-id': string;
19
21
  'data-garden-version': string;
20
22
  } & IStyledCloseProps, "data-garden-id" | "data-garden-version">;
@@ -5,7 +5,7 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  export interface IStyledTitleProps {
8
- isRegular?: boolean;
8
+ $isRegular?: boolean;
9
9
  }
10
10
  /**
11
11
  * 1. Reset for <h1>, etc.
@@ -7,7 +7,7 @@
7
7
  import { DefaultTheme } from 'styled-components';
8
8
  import { IGlobalAlertProps } from '../../types';
9
9
  interface IStyledGlobalAlertProps {
10
- alertType: IGlobalAlertProps['type'];
10
+ $alertType: IGlobalAlertProps['type'];
11
11
  }
12
12
  export declare const StyledGlobalAlert: import("styled-components").StyledComponent<"div", DefaultTheme, {
13
13
  'data-garden-id': string;
@@ -8,27 +8,20 @@
8
8
  import { DefaultTheme } from 'styled-components';
9
9
  import { IGlobalAlertProps } from '../../types';
10
10
  interface IStyledGlobalAlertButtonProps {
11
- alertType: IGlobalAlertProps['type'];
11
+ $alertType: IGlobalAlertProps['type'];
12
12
  isBasic?: boolean;
13
13
  }
14
14
  export declare const StyledGlobalAlertButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@zendeskgarden/react-buttons").IButtonProps & import("react").RefAttributes<HTMLButtonElement>> & {
15
15
  EndIcon: {
16
- (props: import("@zendeskgarden/react-buttons").IButtonEndIconProps): import("react").JSX.Element;
16
+ ({ isRotated, ...props }: import("@zendeskgarden/react-buttons").IButtonEndIconProps): import("react").JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  StartIcon: {
20
- (props: import("@zendeskgarden/react-buttons").IButtonEndIconProps): import("react").JSX.Element;
20
+ ({ isRotated, ...props }: import("@zendeskgarden/react-buttons").IButtonEndIconProps): import("react").JSX.Element;
21
21
  displayName: string;
22
22
  };
23
23
  }, DefaultTheme, {
24
24
  'data-garden-id': string;
25
25
  'data-garden-version': string;
26
- focusInset: false;
27
- isDanger: false;
28
- isLink: false;
29
- isNeutral: false;
30
- isPill: false;
31
- isStretched: false;
32
- size: "small";
33
- } & IStyledGlobalAlertButtonProps, "isDanger" | "size" | "isStretched" | "isNeutral" | "isLink" | "isPill" | "focusInset" | "data-garden-id" | "data-garden-version">;
26
+ } & IStyledGlobalAlertButtonProps, "data-garden-id" | "data-garden-version">;
34
27
  export {};
@@ -8,12 +8,11 @@
8
8
  import { DefaultTheme, ThemeProps } from 'styled-components';
9
9
  import { IGlobalAlertProps } from '../../types';
10
10
  interface IStyledGlobalAlertCloseProps {
11
- alertType: IGlobalAlertProps['type'];
11
+ $alertType: IGlobalAlertProps['type'];
12
12
  }
13
13
  export declare const colorStyles: (props: ThemeProps<DefaultTheme> & IStyledGlobalAlertCloseProps) => import("styled-components").FlattenSimpleInterpolation;
14
14
  export declare const StyledGlobalAlertClose: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@zendeskgarden/react-buttons").IIconButtonProps & import("react").RefAttributes<HTMLButtonElement>>, DefaultTheme, {
15
15
  'data-garden-id': string;
16
16
  'data-garden-version': string;
17
- size: "small";
18
- } & IStyledGlobalAlertCloseProps, "size" | "data-garden-id" | "data-garden-version">;
17
+ } & IStyledGlobalAlertCloseProps, "data-garden-id" | "data-garden-version">;
19
18
  export {};
@@ -4,9 +4,9 @@
4
4
  * Use of this source code is governed under the Apache License, Version 2.0
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
- import React from 'react';
7
+ /// <reference types="react" />
8
8
  import { DefaultTheme } from 'styled-components';
9
- export declare const StyledGlobalAlertIcon: import("styled-components").StyledComponent<({ children, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>, DefaultTheme, {
9
+ export declare const StyledGlobalAlertIcon: import("styled-components").StyledComponent<({ children, theme, ...props }: any) => import("react").DetailedReactHTMLElement<any, HTMLElement>, DefaultTheme, {
10
10
  'data-garden-id': string;
11
11
  'data-garden-version': string;
12
12
  }, "data-garden-id" | "data-garden-version">;
@@ -7,8 +7,8 @@
7
7
  import { DefaultTheme } from 'styled-components';
8
8
  import { IGlobalAlertProps, IGlobalAlertTitleProps } from '../../types';
9
9
  interface IStyledGlobalAlertTitleProps {
10
- alertType: IGlobalAlertProps['type'];
11
- isRegular?: IGlobalAlertTitleProps['isRegular'];
10
+ $alertType: IGlobalAlertProps['type'];
11
+ $isRegular?: IGlobalAlertTitleProps['isRegular'];
12
12
  }
13
13
  export declare const StyledGlobalAlertTitle: import("styled-components").StyledComponent<"div", DefaultTheme, {
14
14
  'data-garden-id': string;
@@ -6,4 +6,4 @@
6
6
  */
7
7
  import { Type } from '../types';
8
8
  export declare const validationIcons: Record<Type, Record<string, unknown>>;
9
- export declare const validationHues: Record<Type, string>;
9
+ export declare const validationTypes: Record<Type, Type>;
@@ -5,7 +5,7 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  /// <reference types="react" />
8
- import { IGlobalAlertProps } from '../../types';
8
+ import { IGlobalAlertProps } from '../types';
9
9
  export type GlobalAlertContextProps = Pick<IGlobalAlertProps, 'type'>;
10
10
  export declare const GlobalAlertContext: import("react").Context<GlobalAlertContextProps>;
11
11
  export declare const useGlobalAlertContext: () => GlobalAlertContextProps;
@@ -5,6 +5,5 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  /// <reference types="react" />
8
- export type Hue = 'successHue' | 'warningHue' | 'dangerHue' | 'neutralHue';
9
- export declare const NotificationsContext: import("react").Context<Hue | undefined>;
10
- export declare const useNotificationsContext: () => Hue | undefined;
8
+ export declare const NotificationsContext: import("react").Context<"success" | "warning" | "error" | "info" | undefined>;
9
+ export declare const useNotificationsContext: () => "success" | "warning" | "error" | "info" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-notifications",
3
- "version": "9.0.0-next.2",
3
+ "version": "9.0.0-next.20",
4
4
  "description": "Notification and Well components within the Garden Design System",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zendesk Garden <garden@zendesk.com>",
@@ -10,7 +10,7 @@
10
10
  "url": "https://github.com/zendeskgarden/react-components/issues"
11
11
  },
12
12
  "main": "dist/index.cjs.js",
13
- "module": "dist/index.esm.js",
13
+ "module": "dist/esm/index.js",
14
14
  "files": [
15
15
  "dist"
16
16
  ],
@@ -21,22 +21,22 @@
21
21
  "sideEffects": false,
22
22
  "types": "dist/typings/index.d.ts",
23
23
  "dependencies": {
24
- "@zendeskgarden/react-buttons": "^9.0.0-next.2",
25
- "polished": "^4.1.1",
24
+ "@zendeskgarden/react-buttons": "^9.0.0-next.20",
25
+ "polished": "^4.3.1",
26
26
  "prop-types": "^15.5.7",
27
27
  "react-transition-group": "^4.4.2",
28
28
  "react-uid": "^2.3.1"
29
29
  },
30
30
  "peerDependencies": {
31
- "@zendeskgarden/react-theming": "^8.67.0",
31
+ "@zendeskgarden/react-theming": ">=9.0.0-next",
32
32
  "react": ">=16.8.0",
33
33
  "react-dom": ">=16.8.0",
34
- "styled-components": "^5.1.0"
34
+ "styled-components": "^5.3.1"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/react-transition-group": "4.4.10",
38
- "@zendeskgarden/react-theming": "^9.0.0-next.2",
39
- "@zendeskgarden/svg-icons": "7.0.0"
38
+ "@zendeskgarden/react-theming": "^9.0.0-next.20",
39
+ "@zendeskgarden/svg-icons": "7.1.1"
40
40
  },
41
41
  "keywords": [
42
42
  "components",
@@ -48,5 +48,5 @@
48
48
  "access": "public"
49
49
  },
50
50
  "zendeskgarden:src": "src/index.ts",
51
- "gitHead": "e47dd011fedf130106acdb485a023340564171af"
51
+ "gitHead": "eab087ac0d6e74b3a4489d37d067baf7a225e7a8"
52
52
  }