@react-hive/honey-layout 6.5.0 → 6.5.2

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.
@@ -1,5 +1,5 @@
1
1
  import { HTMLAttributes } from 'react';
2
- import { FastOmit, HoneyFontName, HoneyColor, HoneyCSSColor, HoneyStyledContext, HoneyStyledFunction, HoneyDimensionName, HoneyBreakpointName, HoneyBreakpoints, HoneySpacings, HoneyCSSDimensionUnit, HoneyCSSDimensionValue, HoneyCSSMediaRule } from '@react-hive/honey-style';
2
+ import { FastOmit, HoneyFontName, HoneyColor, HoneyCSSColor, HoneyStyledContext, HoneyStyledFunction, HoneyDimensionName, HoneyBreakpointName, HoneyBreakpoints, HoneySpacings, HoneyMediaQueryRule, HoneyCSSDimensionUnit, HoneyCSSDimensionValue } from '@react-hive/honey-style';
3
3
  import { Nullable, HoneyScreenState, HoneyCSSShorthandTuple, HoneyCSSShorthandDimensionOutput, HoneyCSSSpacingValue, HoneyPrefixedCSSProperties } from '../types';
4
4
  export declare const noop: () => void;
5
5
  export declare function assert(condition: any, message: string): asserts condition;
@@ -117,7 +117,7 @@ export declare const createStyles: (breakpoint: HoneyBreakpointName) => HoneySty
117
117
  *
118
118
  * @returns Styled functions for generating media queries.
119
119
  */
120
- export declare const bpMedia: (breakpoint: HoneyBreakpointName, ruleOptions?: FastOmit<HoneyCSSMediaRule, "width" | "minWidth" | "maxWidth">) => {
120
+ export declare const bpMedia: (breakpoint: HoneyBreakpointName, ruleOptions?: FastOmit<HoneyMediaQueryRule, "width" | "minWidth" | "maxWidth">) => {
121
121
  down: HoneyStyledFunction<object>;
122
122
  up: HoneyStyledFunction<object>;
123
123
  };