@react-hive/honey-layout 1.0.0-beta → 1.3.0-beta
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/components/HoneyBox.d.ts +830 -2
- package/dist/components/HoneyGrid/HoneyGrid.d.ts +1 -1
- package/dist/components/HoneyGrid/HoneyGrid.styled.d.ts +832 -7
- package/dist/components/HoneyGrid/hooks/index.d.ts +1 -1
- package/dist/components/HoneyGridColumn/HoneyGridColumn.styled.d.ts +830 -4
- package/dist/components/HoneyLazyContent.d.ts +8 -8
- package/dist/components/HoneyList/HoneyList.d.ts +1 -1
- package/dist/components/HoneyLoopingList/HoneyLoopingList.d.ts +830 -1
- package/dist/constants.d.ts +0 -2
- package/dist/helpers.d.ts +27 -833
- package/dist/hooks/use-honey-drag.d.ts +1 -1
- package/dist/hooks/use-honey-media-query.d.ts +5 -3
- package/dist/index.js +347 -385
- package/dist/providers/HoneyThemeProvider.d.ts +4 -3
- package/dist/types.d.ts +4 -4
- package/dist/utils.d.ts +1 -1
- package/package.json +9 -9
- /package/dist/components/HoneyGrid/hooks/{useCurrentHoneyGrid.d.ts → use-current-honey-grid.d.ts} +0 -0
package/dist/constants.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { HTMLAttributes } from 'react';
|
|
2
1
|
import { HoneyCSSColorProperty, HoneyCSSDimensionProperty } from './types';
|
|
3
|
-
export declare const HTML_ATTRIBUTES: (keyof HTMLAttributes<HTMLElement>)[];
|
|
4
2
|
export declare const CSS_DIMENSION_PROPERTIES: HoneyCSSDimensionProperty[];
|
|
5
3
|
export declare const CSS_COLOR_PROPERTIES: HoneyCSSColorProperty[];
|