@zendeskgarden/react-theming 8.62.2 → 8.63.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.
@@ -6,10 +6,10 @@
6
6
  */
7
7
  import { ThemeProps } from 'styled-components';
8
8
  export declare const ARROW_POSITION: readonly ["top", "top-left", "top-right", "right", "right-top", "right-bottom", "bottom", "bottom-left", "bottom-right", "left", "left-top", "left-bottom"];
9
- export declare type ArrowPosition = typeof ARROW_POSITION[number];
9
+ export type ArrowPosition = (typeof ARROW_POSITION)[number];
10
10
  export declare const MENU_POSITION: readonly ["top", "right", "bottom", "left"];
11
- export declare type MenuPosition = typeof MENU_POSITION[number];
12
- declare type Hue = Record<number | string, string> | string;
11
+ export type MenuPosition = (typeof MENU_POSITION)[number];
12
+ type Hue = Record<number | string, string> | string;
13
13
  export interface IGardenTheme {
14
14
  rtl: boolean;
15
15
  document?: any;
@@ -5,7 +5,7 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import { ArrowPosition } from '../types';
8
- declare type ArrowOptions = {
8
+ type ArrowOptions = {
9
9
  size?: string;
10
10
  inset?: string;
11
11
  animationModifier?: string;
@@ -5,7 +5,7 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import { DefaultTheme } from 'styled-components';
8
- declare type Hue = Record<number | string, string> | string;
8
+ type Hue = Record<number | string, string> | string;
9
9
  /**
10
10
  * Get the palette color for the given hue, shade, and theme.
11
11
  *
@@ -5,8 +5,8 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import { DefaultTheme } from 'styled-components';
8
- declare type QUERY = 'up' | 'down' | 'only' | 'between';
9
- declare type BREAKPOINT = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
8
+ type QUERY = 'up' | 'down' | 'only' | 'between';
9
+ type BREAKPOINT = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
10
10
  /**
11
11
  * Get a media query string for the given query specifier, breakpoint name, and theme.
12
12
  *
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import { DefaultTheme } from 'styled-components';
8
8
  import { MenuPosition } from '../types';
9
- declare type MenuOptions = {
9
+ type MenuOptions = {
10
10
  theme?: DefaultTheme;
11
11
  hidden?: boolean;
12
12
  margin?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-theming",
3
- "version": "8.62.2",
3
+ "version": "8.63.0",
4
4
  "description": "Theming utilities and components within the Garden Design System",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zendesk Garden <garden@zendesk.com>",
@@ -22,7 +22,7 @@
22
22
  "types": "dist/typings/index.d.ts",
23
23
  "dependencies": {
24
24
  "@zendeskgarden/container-focusvisible": "^1.0.0",
25
- "@zendeskgarden/container-utilities": "^0.7.0",
25
+ "@zendeskgarden/container-utilities": "^1.0.0",
26
26
  "polished": "^4.0.0",
27
27
  "prop-types": "^15.5.7"
28
28
  },
@@ -41,5 +41,5 @@
41
41
  "access": "public"
42
42
  },
43
43
  "zendeskgarden:src": "src/index.ts",
44
- "gitHead": "27a7d6c021f3360396af60d51ecbf66e9076a405"
44
+ "gitHead": "4b8715305a769881b143c7195c5b31e687422926"
45
45
  }