@cronocode/react-box 1.5.3 → 1.5.4

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 +1 @@
1
- "use strict";const t={base:"b67",rotate0:"b68",rotateH0:"b69",hovertrue:"_h",rotate90:"b7a",rotateH90:"b7b",rotate180:"b7c",rotateH180:"b7d",rotate270:"b7e",rotateH270:"b7f",flipxAxis:"b7g",flipHxAxis:"b7h",flipyAxis:"b7i",flipHyAxis:"b7j",rotateF0:"b7k",focustrue:"_f",rotateF90:"b7l",rotateF180:"b7m",rotateF270:"b7n",flipFxAxis:"b7o",flipFyAxis:"b7p",rotateA0:"b7q",rotateA90:"b7r",rotateA180:"b7s",rotateA270:"b7t",flipAxAxis:"b7u",flipAyAxis:"b7v"};exports.classes=t;
1
+ "use strict";const t={base:"a",rotate0:"b",rotateH0:"c",hovertrue:"_h",rotate90:"d",rotateH90:"e",rotate180:"f",rotateH180:"g",rotate270:"h",rotateH270:"i",flipxAxis:"j",flipHxAxis:"k",flipyAxis:"l",flipHyAxis:"m",rotateF0:"n",focustrue:"_f",rotateF90:"o",rotateF180:"p",rotateF270:"q",flipFxAxis:"r",flipFyAxis:"s",rotateA0:"t",rotateA90:"u",rotateA180:"v",rotateA270:"w",flipAxAxis:"x",flipAyAxis:"y"};exports.classes=t;
@@ -1,4 +1,4 @@
1
- const t = { base: "b67", rotate0: "b68", rotateH0: "b69", hovertrue: "_h", rotate90: "b7a", rotateH90: "b7b", rotate180: "b7c", rotateH180: "b7d", rotate270: "b7e", rotateH270: "b7f", flipxAxis: "b7g", flipHxAxis: "b7h", flipyAxis: "b7i", flipHyAxis: "b7j", rotateF0: "b7k", focustrue: "_f", rotateF90: "b7l", rotateF180: "b7m", rotateF270: "b7n", flipFxAxis: "b7o", flipFyAxis: "b7p", rotateA0: "b7q", rotateA90: "b7r", rotateA180: "b7s", rotateA270: "b7t", flipAxAxis: "b7u", flipAyAxis: "b7v" };
1
+ const t = { base: "a", rotate0: "b", rotateH0: "c", hovertrue: "_h", rotate90: "d", rotateH90: "e", rotate180: "f", rotateH180: "g", rotate270: "h", rotateH270: "i", flipxAxis: "j", flipHxAxis: "k", flipyAxis: "l", flipHyAxis: "m", rotateF0: "n", focustrue: "_f", rotateF90: "o", rotateF180: "p", rotateF270: "q", flipFxAxis: "r", flipFyAxis: "s", rotateA0: "t", rotateA90: "u", rotateA180: "v", rotateA270: "w", flipAxAxis: "x", flipAyAxis: "y" };
2
2
  export {
3
3
  t as c
4
4
  };
package/box.d.ts CHANGED
@@ -4,11 +4,7 @@ import ClassNameUtils from './utils/className/classNameUtils';
4
4
  import { ThemeComponentProps } from './theme';
5
5
  type AllProps<TTag extends keyof React.ReactHTML> = React.ComponentProps<TTag>;
6
6
  type TagPropsType<TTag extends keyof React.ReactHTML> = Omit<AllProps<TTag>, 'className' | 'style' | 'ref'>;
7
- export declare namespace Augmented {
8
- interface Props {
9
- }
10
- }
11
- interface Props<TTag extends keyof React.ReactHTML> extends BoxStyles, ThemeComponentProps, Augmented.Props {
7
+ interface Props<TTag extends keyof React.ReactHTML> extends BoxStyles, ThemeComponentProps {
12
8
  children?: React.ReactNode | ((props: {
13
9
  isHover: boolean;
14
10
  }) => React.ReactNode);