@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.
- package/baseSvg.module.css.cjs +1 -1
- package/baseSvg.module.css.mjs +1 -1
- package/box.d.ts +1 -5
- package/box.module.css.cjs +1 -1
- package/box.module.css.mjs +1 -1
- package/components/baseSvg.d.ts +1 -5
- package/package.json +4 -1
- package/plugins.cjs +7 -11
- package/plugins.mjs +12 -16
- package/style.css +1 -1
- package/types.d.ts +8 -2
package/baseSvg.module.css.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const t={base:"
|
|
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;
|
package/baseSvg.module.css.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const t = { base: "
|
|
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
|
-
|
|
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);
|