@zendeskgarden/react-theming 9.0.0-next.3 → 9.0.0-next.5

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.
package/dist/index.cjs.js CHANGED
@@ -728,7 +728,7 @@ exports.ThemeProvider = ThemeProvider;
728
728
  exports.arrowStyles = arrowStyles;
729
729
  exports.focusStyles = focusStyles;
730
730
  exports.getArrowPosition = getArrowPosition;
731
- exports.getColor = getColor;
731
+ exports.getColorV8 = getColor;
732
732
  exports.getFloatingPlacements = getFloatingPlacements;
733
733
  exports.getFocusBoxShadow = getFocusBoxShadow;
734
734
  exports.getLineHeight = getLineHeight;
package/dist/index.esm.js CHANGED
@@ -711,4 +711,4 @@ const ARROW_POSITION = ['top', 'top-left', 'top-right', 'right', 'right-top', 'r
711
711
  const MENU_POSITION = ['top', 'right', 'bottom', 'left'];
712
712
  const PLACEMENT = ['top', 'top-start', 'top-end', 'bottom', 'bottom-start', 'bottom-end', 'end', 'end-top', 'end-bottom', 'start', 'start-top', 'start-bottom'];
713
713
 
714
- export { ARROW_POSITION, DEFAULT_THEME, MENU_POSITION, PALETTE, PLACEMENT, SELECTOR_FOCUS_VISIBLE, ThemeProvider, arrowStyles, focusStyles, getArrowPosition, getColor, getFloatingPlacements, getFocusBoxShadow, getLineHeight, getMenuPosition, mediaQuery, menuStyles, retrieveComponentStyles, useDocument, useText, useWindow };
714
+ export { ARROW_POSITION, DEFAULT_THEME, MENU_POSITION, PALETTE, PLACEMENT, SELECTOR_FOCUS_VISIBLE, ThemeProvider, arrowStyles, focusStyles, getArrowPosition, getColor as getColorV8, getFloatingPlacements, getFocusBoxShadow, getLineHeight, getMenuPosition, mediaQuery, menuStyles, retrieveComponentStyles, useDocument, useText, useWindow };
@@ -9,7 +9,7 @@ export { default as DEFAULT_THEME } from './elements/theme';
9
9
  export { default as PALETTE } from './elements/palette';
10
10
  export { default as retrieveComponentStyles } from './utils/retrieveComponentStyles';
11
11
  export { getArrowPosition } from './utils/getArrowPosition';
12
- export { getColor } from './utils/getColor';
12
+ export { getColor as getColorV8 } from './utils/_getColor';
13
13
  export { getFloatingPlacements } from './utils/getFloatingPlacements';
14
14
  export { getFocusBoxShadow } from './utils/getFocusBoxShadow';
15
15
  export { default as getLineHeight } from './utils/getLineHeight';
@@ -5,7 +5,7 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import { IGardenTheme } from '../types';
8
- import { Hue } from './getColor';
8
+ import { Hue } from './_getColor';
9
9
  export type FocusBoxShadowParameters = {
10
10
  boxShadow?: string;
11
11
  inset?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-theming",
3
- "version": "9.0.0-next.3",
3
+ "version": "9.0.0-next.5",
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>",
@@ -31,7 +31,7 @@
31
31
  "peerDependencies": {
32
32
  "react": ">=16.8.0",
33
33
  "react-dom": ">=16.8.0",
34
- "styled-components": "^4.2.0 || ^5.1.0"
34
+ "styled-components": "^4.2.0 || ^5.3.1"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/lodash.memoize": "4.1.9"
@@ -46,5 +46,5 @@
46
46
  "access": "public"
47
47
  },
48
48
  "zendeskgarden:src": "src/index.ts",
49
- "gitHead": "d5086e8a3ae0c8608361966954bf434ef03005ec"
49
+ "gitHead": "806fa33feb06142c3f69b6a87b53628469117e4d"
50
50
  }