@cronocode/react-box 1.7.8 → 1.8.0
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/components/checkbox.cjs +1 -1
- package/components/checkbox.d.ts +0 -1
- package/components/checkbox.mjs +9 -13
- package/components/flex.mjs +4 -4
- package/core/boxStyles.d.ts +5 -1
- package/core/theme.d.ts +4 -0
- package/core/types.d.ts +5 -11
- package/core.cjs +29 -13
- package/core.mjs +273 -235
- package/package.json +1 -1
- package/core/boxTypes.d.ts +0 -3
package/components/checkbox.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const
|
|
1
|
+
"use strict";const t=require("react/jsx-runtime"),c=require("react"),n=require("../box.cjs"),s=require("../utils.cjs");require("../core.cjs");const u=["name","onInput","onChange","disabled","autoFocus","readOnly","required","value","checked","defaultChecked"];function i(e,o){const r=s.ObjectUtils.buildProps(e,u,{type:"checkbox"});return t.jsx(n,{ref:o,tag:"input",component:"checkbox",...r})}const a=c.forwardRef(i);module.exports=a;
|
package/components/checkbox.d.ts
CHANGED
|
@@ -16,7 +16,6 @@ interface Props extends Omit<BoxProps, 'props'> {
|
|
|
16
16
|
required?: boolean;
|
|
17
17
|
checked?: boolean;
|
|
18
18
|
defaultChecked?: boolean;
|
|
19
|
-
native?: boolean;
|
|
20
19
|
}
|
|
21
20
|
declare const _default: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
|
|
22
21
|
export default _default;
|
package/components/checkbox.mjs
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as c } from "react";
|
|
3
|
+
import n from "../box.mjs";
|
|
4
4
|
import { O as a } from "../utils.mjs";
|
|
5
|
-
import d from "./flex.mjs";
|
|
6
5
|
import "../core.mjs";
|
|
7
|
-
const
|
|
6
|
+
const p = [
|
|
8
7
|
"name",
|
|
9
8
|
"onInput",
|
|
10
9
|
"onChange",
|
|
@@ -16,14 +15,11 @@ const l = [
|
|
|
16
15
|
"checked",
|
|
17
16
|
"defaultChecked"
|
|
18
17
|
];
|
|
19
|
-
function
|
|
20
|
-
const
|
|
21
|
-
return /* @__PURE__ */
|
|
22
|
-
/* @__PURE__ */ e(t, { ref: r, tag: "input", component: "checkbox", ...i, appearance: n ? void 0 : "none" }),
|
|
23
|
-
!n && /* @__PURE__ */ e(t, { position: "absolute", pointerEvents: "none", children: /* @__PURE__ */ e("svg", { xmlns: "http://www.w3.org/2000/svg", width: "100%", viewBox: "0 0 20 20", children: /* @__PURE__ */ e("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ e("path", { stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", d: "M6 10.15L8.5 13 14 7" }) }) }) })
|
|
24
|
-
] });
|
|
18
|
+
function s(o, e) {
|
|
19
|
+
const t = a.buildProps(o, p, { type: "checkbox" });
|
|
20
|
+
return /* @__PURE__ */ r(n, { ref: e, tag: "input", component: "checkbox", ...t });
|
|
25
21
|
}
|
|
26
|
-
const
|
|
22
|
+
const b = c(s);
|
|
27
23
|
export {
|
|
28
|
-
|
|
24
|
+
b as default
|
|
29
25
|
};
|
package/components/flex.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { forwardRef as
|
|
1
|
+
import { jsx as f } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as i } from "react";
|
|
3
3
|
import n from "../box.mjs";
|
|
4
4
|
import "../core.mjs";
|
|
5
5
|
function l(o, r) {
|
|
6
6
|
const { inline: e, ...t } = o;
|
|
7
|
-
return /* @__PURE__ */
|
|
7
|
+
return /* @__PURE__ */ f(n, { ref: r, display: e ? "inline-flex" : "flex", ...t });
|
|
8
8
|
}
|
|
9
|
-
const a =
|
|
9
|
+
const a = i(l);
|
|
10
10
|
export {
|
|
11
11
|
a as default
|
|
12
12
|
};
|
package/core/boxStyles.d.ts
CHANGED
|
@@ -1182,6 +1182,10 @@ export declare const boxThemeStyles: {
|
|
|
1182
1182
|
cssNames: string[];
|
|
1183
1183
|
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1184
1184
|
};
|
|
1185
|
+
backgroundImage: {
|
|
1186
|
+
cssNames: string[];
|
|
1187
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1188
|
+
};
|
|
1185
1189
|
color: {
|
|
1186
1190
|
cssNames: string[];
|
|
1187
1191
|
formatValue: (key: string, value: string | number | boolean) => string;
|
|
@@ -1211,7 +1215,7 @@ export declare const svgThemeStyles: {
|
|
|
1211
1215
|
formatSelector: typeof BoxStylesFormatters.ClassName.svg;
|
|
1212
1216
|
};
|
|
1213
1217
|
};
|
|
1214
|
-
export declare const pseudoClassSuffixes: readonly ["H", "F", "A"];
|
|
1218
|
+
export declare const pseudoClassSuffixes: readonly ["H", "F", "A", "C"];
|
|
1215
1219
|
export type PseudoClassSuffix = (typeof pseudoClassSuffixes)[number];
|
|
1216
1220
|
export declare const pseudoClassClassName: {
|
|
1217
1221
|
hover: {
|
package/core/theme.d.ts
CHANGED
|
@@ -9,6 +9,9 @@ export interface ThemeComponentStyles {
|
|
|
9
9
|
themes?: {
|
|
10
10
|
[name: string]: ThemeStyles;
|
|
11
11
|
};
|
|
12
|
+
children?: {
|
|
13
|
+
[name: string]: ThemeComponentStyles;
|
|
14
|
+
};
|
|
12
15
|
}
|
|
13
16
|
export interface ThemeSetup {
|
|
14
17
|
components?: {
|
|
@@ -24,6 +27,7 @@ interface BoxAugmentedProps {
|
|
|
24
27
|
colors: Record<string, string>;
|
|
25
28
|
shadows: Record<string, string>;
|
|
26
29
|
backgrounds: Record<string, string>;
|
|
30
|
+
backgroundImages: Record<string, string>;
|
|
27
31
|
}
|
|
28
32
|
declare namespace Theme {
|
|
29
33
|
let Styles: ThemeSetup;
|
package/core/types.d.ts
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { StyleItem, aliases, boxStyles } from './boxStyles';
|
|
2
|
+
import { PseudoClassSuffix, StyleItem, aliases, boxStyles } from './boxStyles';
|
|
3
3
|
import { ThemeComponentProps } from './useTheme';
|
|
4
4
|
export type ExtractElementType<T> = T extends React.DetailedHTMLProps<React.HTMLAttributes<infer E>, infer E> ? E : T extends React.SVGProps<infer E> ? E : never;
|
|
5
5
|
export type ExtractElementFromTag<T extends keyof React.JSX.IntrinsicElements> = ExtractElementType<React.JSX.IntrinsicElements[T]>;
|
|
6
|
-
export type
|
|
7
|
-
[K in keyof T as K extends string ? `${K}
|
|
8
|
-
};
|
|
9
|
-
export type Focused<T> = {
|
|
10
|
-
[K in keyof T as K extends string ? `${K}F` : never]: T[K];
|
|
11
|
-
};
|
|
12
|
-
export type Activated<T> = {
|
|
13
|
-
[K in keyof T as K extends string ? `${K}A` : never]: T[K];
|
|
6
|
+
export type PseudoClass<T, TSuffix extends PseudoClassSuffix> = {
|
|
7
|
+
[K in keyof T as K extends string ? `${K}${TSuffix}` : never]: T[K];
|
|
14
8
|
};
|
|
15
9
|
export declare namespace Augmented {
|
|
16
10
|
interface BoxProps {
|
|
@@ -26,11 +20,11 @@ interface BoxPseudoClasses {
|
|
|
26
20
|
hover?: boolean;
|
|
27
21
|
focus?: boolean;
|
|
28
22
|
}
|
|
29
|
-
export type BoxStyleProps = BoxNormalStyles & BoxPseudoClasses &
|
|
23
|
+
export type BoxStyleProps = BoxNormalStyles & BoxPseudoClasses & PseudoClass<BoxNormalStyles, 'H'> & PseudoClass<BoxNormalStyles, 'F'> & PseudoClass<BoxNormalStyles, 'A'> & PseudoClass<BoxNormalStyles, 'C'> & ThemeComponentProps & Augmented.BoxProps;
|
|
30
24
|
interface SvgNormalStyles {
|
|
31
25
|
rotate?: BoxNormalStyles['rotate'];
|
|
32
26
|
flip?: BoxNormalStyles['flip'];
|
|
33
27
|
transitionDuration?: BoxNormalStyles['transitionDuration'];
|
|
34
28
|
}
|
|
35
|
-
export type BoxSvgStyles = SvgNormalStyles &
|
|
29
|
+
export type BoxSvgStyles = SvgNormalStyles & PseudoClass<SvgNormalStyles, 'H'> & PseudoClass<SvgNormalStyles, 'F'> & PseudoClass<SvgNormalStyles, 'A'> & PseudoClass<SvgNormalStyles, 'C'> & ThemeComponentProps & Augmented.SvgProps;
|
|
36
30
|
export {};
|
package/core.cjs
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
"use strict";const A=require("react");var e;(l=>{(u=>{function c(s,n){return`${s}${n.replace("/","-")}`}u.fraction=c;function v(s){return[`${s} path`,`${s} circle`,`${s} rect`,`${s} line`]}u.svg=v})(l.ClassName||(l.ClassName={})),(u=>{function c(t,a){return`${a/4}rem`}u.rem=c;function v(t,a){return`${a}px`}u.px=v;function s(t,a){const[r,b]=a.split("/");return`${+r/+b*100}%`}u.fraction=s;function n(t,a){switch(a){case"fit":return"100%";case"fit-screen":return t.toLocaleLowerCase().includes("height")?"100vh":"100vw";default:return a}}u.widthHeight=n;function d(t){return(a,r)=>`var(--${t}${r});`}u.variables=d;function f(t){return(a,r)=>`var(--${t}${r});`}u.svgVariables=f;function h(t,a){return`repeat(${a},minmax(0,1fr))`}u.gridColumns=h;function p(t,a){return a==="full-row"?"1/-1":`span ${a}/span ${a}`}u.gridColumn=p;function V(t,a){return`${a}ms`}u.ms=V;function N(t,a){return`${a}deg`}u.rotate=N;function T(t,a){return a==="xAxis"?"-1 1":"1 -1"}u.flip=T})(l.Value||(l.Value={}))})(e||(e={}));const i=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,64,68,72,76,80,84,88,92,96,100],X=[-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-22,-24,-26,-28,-30,-32,-34,-36,-38,-40,-44,-48,-52,-56,-60,-64,-68,-72,-76,-80,-84,-88,-92,-96,-100],m=[...i,...X],L=["solid","dashed","dotted","double","groove","ridge","inset","outset","none","hidden"],B=["auto","hidden","scroll","visible"],x=["1/2","1/3","2/3","1/4","2/4","3/4","1/5","2/5","3/5","4/5","1/6","2/6","3/6","4/6","5/6","1/12","2/12","3/12","4/12","5/12","6/12","7/12","8/12","9/12","10/12","11/12"],k=["fit","fit-screen","auto","fit-content","max-content","min-content"],_=["auto","flex-start","flex-end","center","baseline","stretch"],o={display:{cssNames:["display"],values1:{values:["none","block","inline-block","flex","inline-flex","grid","inline-grid","contents"]},values2:{values:[]},values3:{values:[]}},inline:{cssNames:["display"],values1:{values:[!0]},values2:{values:[]},values3:{values:[]}},boxSizing:{cssNames:["box-sizing"],values1:{values:["border-box","content-box"]},values2:{values:[]},values3:{values:[]}},width:{cssNames:["width"],values1:{values:k,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:x,formatValue:e.Value.fraction}},minWidth:{cssNames:["min-width"],values1:{values:k,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:x,formatValue:e.Value.fraction}},maxWidth:{cssNames:["max-width"],values1:{values:k,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:x,formatValue:e.Value.fraction}},height:{cssNames:["height"],values1:{values:k,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:x,formatValue:e.Value.fraction}},minHeight:{cssNames:["min-height"],values1:{values:k,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:x,formatValue:e.Value.fraction}},maxHeight:{cssNames:["max-height"],values1:{values:k,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:x,formatValue:e.Value.fraction}},position:{cssNames:["position"],values1:{values:["static","relative","absolute","fixed","sticky"]},values2:{values:[]},values3:{values:[]}},top:{cssNames:["top"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},right:{cssNames:["right"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},bottom:{cssNames:["bottom"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},left:{cssNames:["left"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},inset:{cssNames:["inset"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},margin:{cssNames:["margin"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginHorizontal:{cssNames:["margin-inline"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginVertical:{cssNames:["margin-block"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginTop:{cssNames:["margin-top"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginRight:{cssNames:["margin-right"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginBottom:{cssNames:["margin-bottom"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginLeft:{cssNames:["margin-left"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},padding:{cssNames:["padding"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingHorizontal:{cssNames:["padding-inline"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingVertical:{cssNames:["padding-block"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingTop:{cssNames:["padding-top"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingRight:{cssNames:["padding-right"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingBottom:{cssNames:["padding-bottom"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingLeft:{cssNames:["padding-left"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},border:{cssNames:["border-width"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderHorizontal:{cssNames:["border-inline-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderVertical:{cssNames:["border-block-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderTop:{cssNames:["border-top-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderRight:{cssNames:["border-right-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderBottom:{cssNames:["border-bottom-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderLeft:{cssNames:["border-left-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderStyle:{cssNames:["border-style"],values1:{values:L},values2:{values:[]},values3:{values:[]}},borderRadius:{cssNames:["border-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusTop:{cssNames:["border-top-left-radius","border-top-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusRight:{cssNames:["border-top-right-radius","border-bottom-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusBottom:{cssNames:["border-bottom-left-radius","border-bottom-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusLeft:{cssNames:["border-top-left-radius","border-bottom-left-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusTopLeft:{cssNames:["border-top-left-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusTopRight:{cssNames:["border-top-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusBottomLeft:{cssNames:["border-bottom-left-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusBottomRight:{cssNames:["border-bottom-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},cursor:{cssNames:["cursor"],values1:{values:["auto","default","none","context-menu","help","pointer","progress","wait","cell","crosshair","text","vertical-text","alias","copy","move","no-drop","not-allowed","e-resize","n-resize","ne-resize","nw-resize","s-resize","se-resize","sw-resize","w-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","col-resize","row-resize","all-scroll","zoom-in","zoom-out","grab","grabbing"]},values2:{values:[]},values3:{values:[]}},zIndex:{cssNames:["z-index"],values1:{values:[1,2,3,4,5,10,11,12,13,14,15,100,101,102,103,104,105,1e3,1001,1002,1003,1004,1005]},values2:{values:[]},values3:{values:[]}},overflow:{cssNames:["overflow"],values1:{values:B},values2:{values:[]},values3:{values:[]}},overflowX:{cssNames:["overflow-x"],values1:{values:B},values2:{values:[]},values3:{values:[]}},overflowY:{cssNames:["overflow-y"],values1:{values:B},values2:{values:[]},values3:{values:[]}},opacity:{cssNames:["opacity"],values1:{values:[0,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]},values2:{values:[]},values3:{values:[]}},fontSize:{cssNames:["font-size"],values1:{values:i,formatValue:e.Value.px},values2:{values:["inherit"]},values3:{values:[]}},fontStyle:{cssNames:["font-style"],values1:{values:["italic","normal","oblique"]},values2:{values:[]},values3:{values:[]}},fontWeight:{cssNames:["font-weight"],values1:{values:[100,200,300,400,500,600,700,800,900]},values2:{values:[]},values3:{values:[]}},letterSpacing:{cssNames:["letter-spacing"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},lineHeight:{cssNames:["line-height"],values1:{values:i,formatValue:e.Value.px},values2:{values:["font-size"],formatValue:()=>"1"},values3:{values:[]}},textDecoration:{cssNames:["text-decoration"],values1:{values:["none","underline","overline","line-through"]},values2:{values:[]},values3:{values:[]}},textTransform:{cssNames:["text-transform"],values1:{values:["none","capitalize","lowercase","uppercase"]},values2:{values:[]},values3:{values:[]}},textAlign:{cssNames:["text-align"],values1:{values:["left","right","center","justify"]},values2:{values:[]},values3:{values:[]}},flexWrap:{cssNames:["flex-wrap"],values1:{values:["nowrap","wrap","wrap-reverse"]},values2:{values:[]},values3:{values:[]}},justifyContent:{cssNames:["justify-content"],values1:{values:["start","end","flex-start","flex-end","center","left","right","space-between","space-around","space-evenly","stretch"]},values2:{values:[]},values3:{values:[]}},alignItems:{cssNames:["align-items"],values1:{values:["stretch","flex-start","flex-end","center","baseline","start","end","self-start","self-end"]},values2:{values:[]},values3:{values:[]}},alignContent:{cssNames:["align-content"],values1:{values:["flex-start","flex-end","center","space-between","space-around","space-evenly","stretch","start","end","baseline"]},values2:{values:[]},values3:{values:[]}},flex1:{cssNames:["flex"],values1:{values:[!0],formatValue:()=>"1"},values2:{values:[]},values3:{values:[]}},flexDirection:{cssNames:["flex-direction"],values1:{values:["row","row-reverse","column","column-reverse"]},values2:{values:[]},values3:{values:[]}},gap:{cssNames:["gap"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},rowGap:{cssNames:["row-gap"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},columnGap:{cssNames:["column-gap"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},order:{cssNames:["order"],values1:{values:i},values2:{values:[]},values3:{values:[]}},flexGrow:{cssNames:["flex-grow"],values1:{values:i},values2:{values:[]},values3:{values:[]}},flexShrink:{cssNames:["flex-shrink"],values1:{values:i},values2:{values:[]},values3:{values:[]}},alignSelf:{cssNames:["align-self"],values1:{values:_},values2:{values:[]},values3:{values:[]}},justifySelf:{cssNames:["justify-self"],values1:{values:_},values2:{values:[]},values3:{values:[]}},gridColumns:{cssNames:["grid-template-columns"],values1:{values:i,formatValue:e.Value.gridColumns},values2:{values:[]},values3:{values:[]}},colSpan:{cssNames:["grid-column"],values1:{values:i,formatValue:e.Value.gridColumn},values2:{values:["full-row"],formatValue:e.Value.gridColumn},values3:{values:[]}},colStart:{cssNames:["grid-column-start"],values1:{values:i},values2:{values:[]},values3:{values:[]}},colEnd:{cssNames:["grid-column-end"],values1:{values:i},values2:{values:[]},values3:{values:[]}},outline:{cssNames:["outline-width"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},outlineStyle:{cssNames:["outline-style"],values1:{values:L},values2:{values:[]},values3:{values:[]}},outlineOffset:{cssNames:["outline-offset"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},transition:{cssNames:["transition-property"],values1:{values:["none","all"]},values2:{values:[]},values3:{values:[]}},transitionDuration:{cssNames:["transition-duration"],values1:{values:[50,100,150,200,250,300,350,400,450,500,550,600,650,700,750,800,850,900,950,1e3],formatValue:e.Value.ms},values2:{values:[]},values3:{values:[]}},userSelect:{cssNames:["user-select"],values1:{values:["none","auto","text","all"]},values2:{values:[]},values3:{values:[]}},appearance:{cssNames:["appearance"],values1:{values:["none"]},values2:{values:[]},values3:{values:[]}},pointerEvents:{cssNames:["pointer-events"],values1:{values:["none","auto","all"]},values2:{values:[]},values3:{values:[]}},whiteSpace:{cssNames:["white-space"],values1:{values:["break-spaces","normal","nowrap","pre","pre-line","pre-wrap"]},values2:{values:[]},values3:{values:[]}},textOverflow:{cssNames:["text-overflow"],values1:{values:["clip","ellipsis"]},values2:{values:[]},values3:{values:[]}},rotate:{cssNames:["rotate"],values1:{values:[0,90,180,270,-90,-180,-270],formatValue:e.Value.rotate},values2:{values:[]},values3:{values:[]}},flip:{cssNames:["scale"],values1:{values:["xAxis","yAxis"],formatValue:e.Value.flip},values2:{values:[]},values3:{values:[]}}},D={shadow:{cssNames:["box-shadow"],formatValue:e.Value.variables("shadow")},background:{cssNames:["background"],formatValue:e.Value.variables("background")},color:{cssNames:["color"],formatValue:e.Value.variables("color")},bgColor:{cssNames:["background-color"],formatValue:e.Value.variables("color")},borderColor:{cssNames:["border-color"],formatValue:e.Value.variables("color")},outlineColor:{cssNames:["outline-color"],formatValue:e.Value.variables("color")}},P={fill:{cssNames:["fill"],formatValue:e.Value.svgVariables("color"),formatSelector:e.ClassName.svg},stroke:{cssNames:["stroke"],formatValue:e.Value.svgVariables("color"),formatSelector:e.ClassName.svg}},Y=["H","F","A"],S={hover:{className:"_h"},focus:{className:"_f"}};Object.keys(D).forEach(l=>{o[l]=D[l],o[l].isThemeStyle=!0});Object.keys(P).forEach(l=>{o[l]=P[l],o[l].isThemeStyle=!0});const C={w:{...o.width,key:"width"},h:{...o.height,key:"height"},m:{...o.margin,key:"margin"},mx:{...o.marginHorizontal,key:"marginHorizontal"},my:{...o.marginVertical,key:"marginVertical"},mt:{...o.marginTop,key:"marginTop"},mr:{...o.marginRight,key:"marginRight"},mb:{...o.marginBottom,key:"marginBottom"},ml:{...o.marginLeft,key:"marginLeft"},p:{...o.padding,key:"padding"},px:{...o.paddingHorizontal,key:"paddingHorizontal"},py:{...o.paddingVertical,key:"paddingVertical"},pt:{...o.paddingTop,key:"paddingTop"},pr:{...o.paddingRight,key:"paddingRight"},pb:{...o.paddingBottom,key:"paddingBottom"},pl:{...o.paddingLeft,key:"paddingLeft"},b:{...o.border,key:"border"},bx:{...o.borderHorizontal,key:"borderHorizontal"},by:{...o.borderVertical,key:"borderVertical"},bt:{...o.borderTop,key:"borderTop"},br:{...o.borderRight,key:"borderRight"},bb:{...o.borderBottom,key:"borderBottom"},bl:{...o.borderLeft,key:"borderLeft"},jc:{...o.justifyContent,key:"justifyContent"},ai:{...o.alignItems,key:"alignItems"},ac:{...o.alignContent,key:"alignContent"},d:{...o.flexDirection,key:"flexDirection"}},J=Object.keys(o),Q=Object.keys(C);Y.forEach(l=>{J.forEach(u=>{o[`${u}${l}`]={...o[u]},o[`${u}${l}`].pseudoSuffix=l}),Q.forEach(u=>{C[`${u}${l}`]={...C[u],key:`${C[u].key}${l}`},C[`${u}${l}`].pseudoSuffix=l})});class Z{constructor(){this._index=0,this._cache={}}getIdentity(u){return this._cache[u]||(this._cache[u]=this.getByIndex(this._index++)),this._cache[u]}getByIndex(u){const{first:c,next:v}=K,s=u-c.length;if(s<0)return c[u];const n=Math.floor(s/v.length),d=s-n*v.length;return this.getByIndex(n)+v[d]}}const K={first:"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",next:"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"};var F;(l=>{l.boxClassName="_box",l.svgClassName="_svg",l.cronoStylesElementId="crono-styles";const u=`:root{--borderColor: black;--outlineColor: black;--lineHeight: 1.2;--fontSize: 14px;--transitionTime: 0.25s;--svgTransitionTime: 0.3s;#crono-box {position: absolute;top: 0;left: 0;height: 0;}}
|
|
1
|
+
"use strict";const I=require("react");var e;(a=>{(l=>{function c(s,d){return`${s}${d.replace("/","-")}`}l.fraction=c;function v(s){return[`${s} path`,`${s} circle`,`${s} rect`,`${s} line`]}l.svg=v})(a.ClassName||(a.ClassName={})),(l=>{function c(o,u){return`${u/4}rem`}l.rem=c;function v(o,u){return`${u}px`}l.px=v;function s(o,u){const[t,N]=u.split("/");return`${+t/+N*100}%`}l.fraction=s;function d(o,u){switch(u){case"fit":return"100%";case"fit-screen":return o.toLocaleLowerCase().includes("height")?"100vh":"100vw";default:return u}}l.widthHeight=d;function n(o){return(u,t)=>`var(--${o}${t});`}l.variables=n;function f(o){return(u,t)=>`var(--${o}${t});`}l.svgVariables=f;function g(o,u){return`repeat(${u},minmax(0,1fr))`}l.gridColumns=g;function p(o,u){return u==="full-row"?"1/-1":`span ${u}/span ${u}`}l.gridColumn=p;function y(o,u){return`${u}ms`}l.ms=y;function k(o,u){return`${u}deg`}l.rotate=k;function h(o,u){return u==="xAxis"?"-1 1":"1 -1"}l.flip=h})(a.Value||(a.Value={}))})(e||(e={}));const i=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,64,68,72,76,80,84,88,92,96,100],X=[-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-22,-24,-26,-28,-30,-32,-34,-36,-38,-40,-44,-48,-52,-56,-60,-64,-68,-72,-76,-80,-84,-88,-92,-96,-100],m=[...i,...X],_=["solid","dashed","dotted","double","groove","ridge","inset","outset","none","hidden"],B=["auto","hidden","scroll","visible"],$=["1/2","1/3","2/3","1/4","2/4","3/4","1/5","2/5","3/5","4/5","1/6","2/6","3/6","4/6","5/6","1/12","2/12","3/12","4/12","5/12","6/12","7/12","8/12","9/12","10/12","11/12"],H=["fit","fit-screen","auto","fit-content","max-content","min-content"],D=["auto","flex-start","flex-end","center","baseline","stretch"],r={display:{cssNames:["display"],values1:{values:["none","block","inline-block","flex","inline-flex","grid","inline-grid","contents"]},values2:{values:[]},values3:{values:[]}},inline:{cssNames:["display"],values1:{values:[!0]},values2:{values:[]},values3:{values:[]}},boxSizing:{cssNames:["box-sizing"],values1:{values:["border-box","content-box"]},values2:{values:[]},values3:{values:[]}},width:{cssNames:["width"],values1:{values:H,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:$,formatValue:e.Value.fraction}},minWidth:{cssNames:["min-width"],values1:{values:H,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:$,formatValue:e.Value.fraction}},maxWidth:{cssNames:["max-width"],values1:{values:H,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:$,formatValue:e.Value.fraction}},height:{cssNames:["height"],values1:{values:H,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:$,formatValue:e.Value.fraction}},minHeight:{cssNames:["min-height"],values1:{values:H,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:$,formatValue:e.Value.fraction}},maxHeight:{cssNames:["max-height"],values1:{values:H,formatValue:e.Value.widthHeight},values2:{values:i,formatValue:e.Value.rem},values3:{values:$,formatValue:e.Value.fraction}},position:{cssNames:["position"],values1:{values:["static","relative","absolute","fixed","sticky"]},values2:{values:[]},values3:{values:[]}},top:{cssNames:["top"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},right:{cssNames:["right"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},bottom:{cssNames:["bottom"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},left:{cssNames:["left"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},inset:{cssNames:["inset"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},margin:{cssNames:["margin"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginHorizontal:{cssNames:["margin-inline"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginVertical:{cssNames:["margin-block"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginTop:{cssNames:["margin-top"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginRight:{cssNames:["margin-right"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginBottom:{cssNames:["margin-bottom"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},marginLeft:{cssNames:["margin-left"],values1:{values:m,formatValue:e.Value.rem},values2:{values:["auto"]},values3:{values:[]}},padding:{cssNames:["padding"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingHorizontal:{cssNames:["padding-inline"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingVertical:{cssNames:["padding-block"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingTop:{cssNames:["padding-top"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingRight:{cssNames:["padding-right"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingBottom:{cssNames:["padding-bottom"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},paddingLeft:{cssNames:["padding-left"],values1:{values:m,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},border:{cssNames:["border-width"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderHorizontal:{cssNames:["border-inline-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderVertical:{cssNames:["border-block-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderTop:{cssNames:["border-top-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderRight:{cssNames:["border-right-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderBottom:{cssNames:["border-bottom-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderLeft:{cssNames:["border-left-width"],values1:{values:m,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},borderStyle:{cssNames:["border-style"],values1:{values:_},values2:{values:[]},values3:{values:[]}},borderRadius:{cssNames:["border-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusTop:{cssNames:["border-top-left-radius","border-top-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusRight:{cssNames:["border-top-right-radius","border-bottom-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusBottom:{cssNames:["border-bottom-left-radius","border-bottom-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusLeft:{cssNames:["border-top-left-radius","border-bottom-left-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusTopLeft:{cssNames:["border-top-left-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusTopRight:{cssNames:["border-top-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusBottomLeft:{cssNames:["border-bottom-left-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},borderRadiusBottomRight:{cssNames:["border-bottom-right-radius"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},cursor:{cssNames:["cursor"],values1:{values:["auto","default","none","context-menu","help","pointer","progress","wait","cell","crosshair","text","vertical-text","alias","copy","move","no-drop","not-allowed","e-resize","n-resize","ne-resize","nw-resize","s-resize","se-resize","sw-resize","w-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","col-resize","row-resize","all-scroll","zoom-in","zoom-out","grab","grabbing"]},values2:{values:[]},values3:{values:[]}},zIndex:{cssNames:["z-index"],values1:{values:[1,2,3,4,5,10,11,12,13,14,15,100,101,102,103,104,105,1e3,1001,1002,1003,1004,1005]},values2:{values:[]},values3:{values:[]}},overflow:{cssNames:["overflow"],values1:{values:B},values2:{values:[]},values3:{values:[]}},overflowX:{cssNames:["overflow-x"],values1:{values:B},values2:{values:[]},values3:{values:[]}},overflowY:{cssNames:["overflow-y"],values1:{values:B},values2:{values:[]},values3:{values:[]}},opacity:{cssNames:["opacity"],values1:{values:[0,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]},values2:{values:[]},values3:{values:[]}},fontSize:{cssNames:["font-size"],values1:{values:i,formatValue:e.Value.px},values2:{values:["inherit"]},values3:{values:[]}},fontStyle:{cssNames:["font-style"],values1:{values:["italic","normal","oblique"]},values2:{values:[]},values3:{values:[]}},fontWeight:{cssNames:["font-weight"],values1:{values:[100,200,300,400,500,600,700,800,900]},values2:{values:[]},values3:{values:[]}},letterSpacing:{cssNames:["letter-spacing"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},lineHeight:{cssNames:["line-height"],values1:{values:i,formatValue:e.Value.px},values2:{values:["font-size"],formatValue:()=>"1"},values3:{values:[]}},textDecoration:{cssNames:["text-decoration"],values1:{values:["none","underline","overline","line-through"]},values2:{values:[]},values3:{values:[]}},textTransform:{cssNames:["text-transform"],values1:{values:["none","capitalize","lowercase","uppercase"]},values2:{values:[]},values3:{values:[]}},textAlign:{cssNames:["text-align"],values1:{values:["left","right","center","justify"]},values2:{values:[]},values3:{values:[]}},flexWrap:{cssNames:["flex-wrap"],values1:{values:["nowrap","wrap","wrap-reverse"]},values2:{values:[]},values3:{values:[]}},justifyContent:{cssNames:["justify-content"],values1:{values:["start","end","flex-start","flex-end","center","left","right","space-between","space-around","space-evenly","stretch"]},values2:{values:[]},values3:{values:[]}},alignItems:{cssNames:["align-items"],values1:{values:["stretch","flex-start","flex-end","center","baseline","start","end","self-start","self-end"]},values2:{values:[]},values3:{values:[]}},alignContent:{cssNames:["align-content"],values1:{values:["flex-start","flex-end","center","space-between","space-around","space-evenly","stretch","start","end","baseline"]},values2:{values:[]},values3:{values:[]}},flex1:{cssNames:["flex"],values1:{values:[!0],formatValue:()=>"1"},values2:{values:[]},values3:{values:[]}},flexDirection:{cssNames:["flex-direction"],values1:{values:["row","row-reverse","column","column-reverse"]},values2:{values:[]},values3:{values:[]}},gap:{cssNames:["gap"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},rowGap:{cssNames:["row-gap"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},columnGap:{cssNames:["column-gap"],values1:{values:i,formatValue:e.Value.rem},values2:{values:[]},values3:{values:[]}},order:{cssNames:["order"],values1:{values:i},values2:{values:[]},values3:{values:[]}},flexGrow:{cssNames:["flex-grow"],values1:{values:i},values2:{values:[]},values3:{values:[]}},flexShrink:{cssNames:["flex-shrink"],values1:{values:i},values2:{values:[]},values3:{values:[]}},alignSelf:{cssNames:["align-self"],values1:{values:D},values2:{values:[]},values3:{values:[]}},justifySelf:{cssNames:["justify-self"],values1:{values:D},values2:{values:[]},values3:{values:[]}},gridColumns:{cssNames:["grid-template-columns"],values1:{values:i,formatValue:e.Value.gridColumns},values2:{values:[]},values3:{values:[]}},colSpan:{cssNames:["grid-column"],values1:{values:i,formatValue:e.Value.gridColumn},values2:{values:["full-row"],formatValue:e.Value.gridColumn},values3:{values:[]}},colStart:{cssNames:["grid-column-start"],values1:{values:i},values2:{values:[]},values3:{values:[]}},colEnd:{cssNames:["grid-column-end"],values1:{values:i},values2:{values:[]},values3:{values:[]}},outline:{cssNames:["outline-width"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},outlineStyle:{cssNames:["outline-style"],values1:{values:_},values2:{values:[]},values3:{values:[]}},outlineOffset:{cssNames:["outline-offset"],values1:{values:i,formatValue:e.Value.px},values2:{values:[]},values3:{values:[]}},transition:{cssNames:["transition-property"],values1:{values:["none","all"]},values2:{values:[]},values3:{values:[]}},transitionDuration:{cssNames:["transition-duration"],values1:{values:[50,100,150,200,250,300,350,400,450,500,550,600,650,700,750,800,850,900,950,1e3],formatValue:e.Value.ms},values2:{values:[]},values3:{values:[]}},userSelect:{cssNames:["user-select"],values1:{values:["none","auto","text","all"]},values2:{values:[]},values3:{values:[]}},appearance:{cssNames:["appearance"],values1:{values:["none"]},values2:{values:[]},values3:{values:[]}},pointerEvents:{cssNames:["pointer-events"],values1:{values:["none","auto","all"]},values2:{values:[]},values3:{values:[]}},whiteSpace:{cssNames:["white-space"],values1:{values:["break-spaces","normal","nowrap","pre","pre-line","pre-wrap"]},values2:{values:[]},values3:{values:[]}},textOverflow:{cssNames:["text-overflow"],values1:{values:["clip","ellipsis"]},values2:{values:[]},values3:{values:[]}},rotate:{cssNames:["rotate"],values1:{values:[0,90,180,270,-90,-180,-270],formatValue:e.Value.rotate},values2:{values:[]},values3:{values:[]}},flip:{cssNames:["scale"],values1:{values:["xAxis","yAxis"],formatValue:e.Value.flip},values2:{values:[]},values3:{values:[]}}},P={shadow:{cssNames:["box-shadow"],formatValue:e.Value.variables("shadow")},background:{cssNames:["background"],formatValue:e.Value.variables("background")},backgroundImage:{cssNames:["background-image"],formatValue:e.Value.variables("backgroundImage")},color:{cssNames:["color"],formatValue:e.Value.variables("color")},bgColor:{cssNames:["background-color"],formatValue:e.Value.variables("color")},borderColor:{cssNames:["border-color"],formatValue:e.Value.variables("color")},outlineColor:{cssNames:["outline-color"],formatValue:e.Value.variables("color")}},q={fill:{cssNames:["fill"],formatValue:e.Value.svgVariables("color"),formatSelector:e.ClassName.svg},stroke:{cssNames:["stroke"],formatValue:e.Value.svgVariables("color"),formatSelector:e.ClassName.svg}},Y=["H","F","A","C"],A={hover:{className:"_h"},focus:{className:"_f"}};Object.keys(P).forEach(a=>{r[a]=P[a],r[a].isThemeStyle=!0});Object.keys(q).forEach(a=>{r[a]=q[a],r[a].isThemeStyle=!0});const z={w:{...r.width,key:"width"},h:{...r.height,key:"height"},m:{...r.margin,key:"margin"},mx:{...r.marginHorizontal,key:"marginHorizontal"},my:{...r.marginVertical,key:"marginVertical"},mt:{...r.marginTop,key:"marginTop"},mr:{...r.marginRight,key:"marginRight"},mb:{...r.marginBottom,key:"marginBottom"},ml:{...r.marginLeft,key:"marginLeft"},p:{...r.padding,key:"padding"},px:{...r.paddingHorizontal,key:"paddingHorizontal"},py:{...r.paddingVertical,key:"paddingVertical"},pt:{...r.paddingTop,key:"paddingTop"},pr:{...r.paddingRight,key:"paddingRight"},pb:{...r.paddingBottom,key:"paddingBottom"},pl:{...r.paddingLeft,key:"paddingLeft"},b:{...r.border,key:"border"},bx:{...r.borderHorizontal,key:"borderHorizontal"},by:{...r.borderVertical,key:"borderVertical"},bt:{...r.borderTop,key:"borderTop"},br:{...r.borderRight,key:"borderRight"},bb:{...r.borderBottom,key:"borderBottom"},bl:{...r.borderLeft,key:"borderLeft"},jc:{...r.justifyContent,key:"justifyContent"},ai:{...r.alignItems,key:"alignItems"},ac:{...r.alignContent,key:"alignContent"},d:{...r.flexDirection,key:"flexDirection"}},J=Object.keys(r),Q=Object.keys(z);Y.forEach(a=>{J.forEach(l=>{r[`${l}${a}`]={...r[l]},r[`${l}${a}`].pseudoSuffix=a}),Q.forEach(l=>{z[`${l}${a}`]={...z[l],key:`${z[l].key}${a}`},z[`${l}${a}`].pseudoSuffix=a})});class Z{constructor(){this._index=0,this._cache={}}getIdentity(l){return this._cache[l]||(this._cache[l]=this.getByIndex(this._index++)),this._cache[l]}getByIndex(l){const{first:c,next:v}=K,s=l-c.length;if(s<0)return c[l];const d=Math.floor(s/v.length),n=s-d*v.length;return this.getByIndex(d)+v[n]}}const K={first:"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",next:"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"};var O;(a=>{a.boxClassName="_box",a.svgClassName="_svg",a.cronoStylesElementId="crono-styles";const l=`:root{--borderColor: black;--outlineColor: black;--lineHeight: 1.2;--fontSize: 14px;--transitionTime: 0.25s;--svgTransitionTime: 0.3s;#crono-box {position: absolute;top: 0;left: 0;height: 0;}}
|
|
2
2
|
html{font-size: 16px;font-family: Arial, sans-serif;}
|
|
3
3
|
body{margin: 0;line-height: var(--lineHeight);font-size: var(--fontSize);}
|
|
4
4
|
a,ul{all: unset;}
|
|
5
|
-
.${
|
|
6
|
-
.${
|
|
7
|
-
`,c=new Z,v=Object.keys(
|
|
8
|
-
`),
|
|
9
|
-
`),
|
|
10
|
-
`),
|
|
5
|
+
.${a.boxClassName}{display: block;border: 0 solid var(--borderColor);outline: 0px solid var(--outlineColor);margin: 0;padding: 0;background-color: initial;transition: all var(--transitionTime);box-sizing: border-box;font-family: inherit;font-size: inherit;}
|
|
6
|
+
.${a.svgClassName}{transition: all var(--svgTransitionTime);}.${a.svgClassName} path,.${a.svgClassName} circle,.${a.svgClassName} rect,.${a.svgClassName} line {transition: all var(--svgTransitionTime);}
|
|
7
|
+
`,c=new Z,v=Object.keys(r);let s=!0,d=v.reduce((o,u)=>(o[u]=new Set,o),{});function n(o,u){if(o in r)return p(o,u);if(o in A)return A[o].className}a.get=n;function f(){if(s){let o=y([l]);o=y(o,"H"),o=y(o,"F"),o=y(o,"A"),o=y(o,"C");const u=h();u.innerHTML=o.join(""),s=!1}}a.flush=f;function g(){d=v.reduce((o,u)=>(o[u]=new Set,o),{})}a.clear=g;function p(o,u){var V;d[o].has(u)||(s=!0,d[o].add(u));const t=k(o,u),N=((V=t.formatClassName)==null?void 0:V.call(t,o,u))??`${o}${u}`;return c.getIdentity(N)}function y(o,u){return Object.entries(d).filter(([N])=>{var V;return((V=r[N])==null?void 0:V.pseudoSuffix)===u}).reduce((N,[V,b])=>(b.forEach(w=>{var L;const x=k(V,w),C=`.${p(V,w)}`;let T=[];u?u==="H"?T=[...t(`${C}:hover`,x),...t(`.${A.hover.className}:hover>${C}`,x)]:u==="F"?T=[...t(`${C}:focus-within`,x),...t(`.${A.focus.className}:focus-within>${C}`,x)]:u==="A"?T=t(`${C}:active`,x):u==="C"&&(T=t(`${C}:checked`,x)):T=t(C,x);const W=((L=x.formatValue)==null?void 0:L.call(x,V,w))??w,G=r[V].cssNames.map(U=>`${U}:${W};`).join("");N.push(`${T.join(",")}{${G}}`)}),N),o);function t(N,V){return V.formatSelector?V.formatSelector(N):[N]}}function k(o,u){const t=r[o];return t.isThemeStyle?t:t.values1.values.includes(u)?t.values1:t.values2.values.includes(u)?t.values2:t.values3}function h(){const u=typeof window<"u"&&typeof window.document<"u"?window.document:global.document;let t=u.getElementById(a.cronoStylesElementId);return t||(t=u.createElement("style"),t.setAttribute("id",a.cronoStylesElementId),t.setAttribute("type","text/css"),u.head.insertBefore(t,u.head.firstChild)),t}})(O||(O={}));const S=O,j={button:{styles:{display:"inline-block",p:3,cursor:"pointer",b:1,borderRadius:1,userSelect:"none"},disabled:{cursor:"default"}},checkbox:{styles:{display:"inline-block"}},radioButton:{styles:{display:"inline-block",b:1,p:2}},textbox:{styles:{display:"inline-block",b:1,borderRadius:1,p:3}},textarea:{styles:{display:"inline-block",b:1,borderRadius:1}}};var E;(a=>{a.Styles=j;function l(n){s(n),a.Styles=n,v()}a.setup=l;function c(n,f){const g=Object.entries(n.colors).map(([b,w])=>`--color${b}: ${w};`).join(`
|
|
8
|
+
`),p=Object.entries(n.shadows).map(([b,w])=>`--shadow${b}: ${w};`).join(`
|
|
9
|
+
`),y=Object.entries(n.backgrounds).map(([b,w])=>`--background${b}: ${w};`).join(`
|
|
10
|
+
`),k=Object.entries(n.backgroundImages).map(([b,w])=>`--backgroundImage${b}: ${w};`).join(`
|
|
11
|
+
`),h=[":root {"];g&&h.push(` ${g}`),p&&h.push(` ${p}`),y&&h.push(` ${y}`),k&&h.push(` ${k}`),h.push("}");const o=Object.keys(n.colors).map(b=>`'${b}'`).join(" | "),u=Object.keys(n.backgrounds).map(b=>`'${b}'`).join(" | "),t=Object.keys(n.backgroundImages).map(b=>`'${b}'`).join(" | "),N=Object.keys(n.shadows).map(b=>`'${b}'`).join(" | "),V=`import '@cronocode/react-box';
|
|
11
12
|
|
|
12
|
-
declare module '${(
|
|
13
|
-
type ColorType = ${
|
|
14
|
-
type BackgroundType = ${
|
|
15
|
-
type
|
|
13
|
+
declare module '${(f==null?void 0:f.namespacePath)??"@cronocode/react-box/core/types"}' {
|
|
14
|
+
type ColorType = ${o};
|
|
15
|
+
type BackgroundType = ${u};
|
|
16
|
+
type BackgroundImageType = ${t};
|
|
17
|
+
type ShadowType = ${N};
|
|
16
18
|
|
|
17
19
|
namespace Augmented {
|
|
18
20
|
interface BoxProps {
|
|
@@ -20,26 +22,38 @@ a,ul{all: unset;}
|
|
|
20
22
|
colorH?: ColorType;
|
|
21
23
|
colorF?: ColorType;
|
|
22
24
|
colorA?: ColorType;
|
|
25
|
+
colorC?: ColorType;
|
|
23
26
|
bgColor?: ColorType;
|
|
24
27
|
bgColorH?: ColorType;
|
|
25
28
|
bgColorF?: ColorType;
|
|
26
29
|
bgColorA?: ColorType;
|
|
30
|
+
bgColorC?: ColorType;
|
|
27
31
|
borderColor?: ColorType;
|
|
28
32
|
borderColorH?: ColorType;
|
|
29
33
|
borderColorF?: ColorType;
|
|
30
34
|
borderColorA?: ColorType;
|
|
35
|
+
borderColorC?: ColorType;
|
|
31
36
|
outlineColor?: ColorType;
|
|
32
37
|
outlineColorH?: ColorType;
|
|
33
38
|
outlineColorF?: ColorType;
|
|
34
39
|
outlineColorA?: ColorType;
|
|
40
|
+
outlineColorC?: ColorType;
|
|
35
41
|
background?: BackgroundType;
|
|
36
42
|
backgroundH?: BackgroundType;
|
|
37
43
|
backgroundF?: BackgroundType;
|
|
38
44
|
backgroundA?: BackgroundType;
|
|
45
|
+
backgroundC?: BackgroundType;
|
|
46
|
+
backgroundImage?: BackgroundImageType;
|
|
47
|
+
backgroundImageH?: BackgroundImageType;
|
|
48
|
+
backgroundImageF?: BackgroundImageType;
|
|
49
|
+
backgroundImageA?: BackgroundImageType;
|
|
50
|
+
backgroundImageC?: BackgroundImageType;
|
|
39
51
|
shadow?: ShadowType;
|
|
40
52
|
shadowH?: ShadowType;
|
|
41
53
|
shadowF?: ShadowType;
|
|
54
|
+
shadowF?: ShadowType;
|
|
42
55
|
shadowA?: ShadowType;
|
|
56
|
+
shadowC?: ShadowType;
|
|
43
57
|
}
|
|
44
58
|
|
|
45
59
|
interface SvgProps {
|
|
@@ -47,12 +61,14 @@ a,ul{all: unset;}
|
|
|
47
61
|
fillH?: ColorType;
|
|
48
62
|
fillF?: ColorType;
|
|
49
63
|
fillA?: ColorType;
|
|
64
|
+
fillC?: ColorType;
|
|
50
65
|
stroke?: ColorType;
|
|
51
66
|
strokeH?: ColorType;
|
|
52
67
|
strokeF?: ColorType;
|
|
53
68
|
strokeA?: ColorType;
|
|
69
|
+
strokeC?: ColorType;
|
|
54
70
|
}
|
|
55
71
|
}
|
|
56
72
|
}
|
|
57
|
-
`;return{variables:
|
|
58
|
-
`),boxDts:
|
|
73
|
+
`;return{variables:h.join(`
|
|
74
|
+
`),boxDts:V}}a.setupAugmentedProps=c;function v(){s(j),Object.keys(j).forEach(f=>{const g=a.Styles[f],p=j[f];g?(g.styles={...p.styles,...g.styles},g.disabled&&p.disabled&&(g.disabled={...p.disabled,...g.disabled})):a.Styles[f]=j[f]})}function s(n){if(!n.components)return;const f=Object.keys(n.components);for(const g of f){const p=n.components[g],y=d(g,p);delete p.children;for(const k of y){const[h,o]=k;n.components[h]=o}}}function d(n,f){if(!f.children)return[];const g=Object.keys(f.children),p=[];for(const y of g){const k=`${n}.${y}`,h=f.children[y],o=d(k,h);p.push(...o),delete h.children,p.push([k,h])}return p}})(E||(E={}));const R=E;function ee(a){const{clean:l,disabled:c,theme:v,component:s}=a;return I.useMemo(()=>{var f,g,p;if(l)return;let d=R.Styles[s]??((f=R.Styles.components)==null?void 0:f[s]);if(!d)return;let n=v?{...d.styles,...(g=d.themes)==null?void 0:g[v].styles}:d.styles;return c?v?{...n,...d.disabled,...(p=d.themes)==null?void 0:p[v].disabled}:{...n,...d.disabled}:n},[s,l,c,v])}const se=typeof window<"u"&&typeof window.document<"u",ae=se?I.useLayoutEffect:I.useEffect;function le(a,l){const c=ee(a);return ae(S.flush,[a]),I.useMemo(()=>{const v=[l?S.svgClassName:S.boxClassName],s=c?{...F(c),...F(a)}:F(a);return"inline"in s&&(s.display==="block"||!s.display?s.display="inline-block":s.display==="flex"?s.display="inline-flex":s.display==="grid"&&(s.display="inline-grid"),delete s.inline),"inlineH"in s&&(s.displayH==="block"||!s.displayH?s.displayH="inline-block":s.displayH==="flex"?s.displayH="inline-flex":s.displayH==="grid"&&(s.displayH="inline-grid"),delete s.inlineH),"inlineF"in s&&(s.displayF==="block"||!s.displayF?s.displayF="inline-block":s.displayF==="flex"?s.displayF="inline-flex":s.displayF==="grid"&&(s.displayF="inline-grid"),delete s.inlineF),"inlineA"in s&&(s.displayA==="block"||!s.displayA?s.displayA="inline-block":s.displayA==="flex"?s.displayA="inline-flex":s.displayA==="grid"&&(s.displayA="inline-grid"),delete s.inlineA),Object.entries(s).forEach(([d,n])=>{v.push(S.get(d,n))}),v},[a,c])}function F(a){const l={...a};return Object.keys(l).forEach(v=>{const s=z[v];s&&(s.key in l||(l[s.key]=l[v]),delete l[v])}),l}function M(...a){return a.reduce((l,c)=>c?typeof c=="string"?(l.push(c),l):Array.isArray(c)?(l.push(...M(...c)),l):(Object.entries(c).forEach(([v,s])=>{s&&l.push(v)}),l):l,[])}exports.StylesContext=S;exports.Theme=R;exports.classNames=M;exports.useStyles=le;
|
package/core.mjs
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
import { useMemo as
|
|
1
|
+
import { useMemo as W, useLayoutEffect as U, useEffect as X } from "react";
|
|
2
2
|
var e;
|
|
3
|
-
((
|
|
4
|
-
((
|
|
5
|
-
function c(
|
|
6
|
-
return `${
|
|
3
|
+
((s) => {
|
|
4
|
+
((l) => {
|
|
5
|
+
function c(a, d) {
|
|
6
|
+
return `${a}${d.replace("/", "-")}`;
|
|
7
7
|
}
|
|
8
|
-
|
|
9
|
-
function v(
|
|
10
|
-
return [`${
|
|
8
|
+
l.fraction = c;
|
|
9
|
+
function v(a) {
|
|
10
|
+
return [`${a} path`, `${a} circle`, `${a} rect`, `${a} line`];
|
|
11
11
|
}
|
|
12
|
-
|
|
13
|
-
})(
|
|
14
|
-
function c(
|
|
15
|
-
return `${
|
|
12
|
+
l.svg = v;
|
|
13
|
+
})(s.ClassName || (s.ClassName = {})), ((l) => {
|
|
14
|
+
function c(o, u) {
|
|
15
|
+
return `${u / 4}rem`;
|
|
16
16
|
}
|
|
17
|
-
|
|
18
|
-
function v(
|
|
19
|
-
return `${
|
|
17
|
+
l.rem = c;
|
|
18
|
+
function v(o, u) {
|
|
19
|
+
return `${u}px`;
|
|
20
20
|
}
|
|
21
|
-
|
|
22
|
-
function
|
|
23
|
-
const [
|
|
24
|
-
return `${+
|
|
21
|
+
l.px = v;
|
|
22
|
+
function a(o, u) {
|
|
23
|
+
const [t, N] = u.split("/");
|
|
24
|
+
return `${+t / +N * 100}%`;
|
|
25
25
|
}
|
|
26
|
-
|
|
27
|
-
function
|
|
28
|
-
switch (
|
|
26
|
+
l.fraction = a;
|
|
27
|
+
function d(o, u) {
|
|
28
|
+
switch (u) {
|
|
29
29
|
case "fit":
|
|
30
30
|
return "100%";
|
|
31
31
|
case "fit-screen":
|
|
32
|
-
return
|
|
32
|
+
return o.toLocaleLowerCase().includes("height") ? "100vh" : "100vw";
|
|
33
33
|
default:
|
|
34
|
-
return
|
|
34
|
+
return u;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
-
|
|
38
|
-
function
|
|
39
|
-
return (
|
|
37
|
+
l.widthHeight = d;
|
|
38
|
+
function n(o) {
|
|
39
|
+
return (u, t) => `var(--${o}${t});`;
|
|
40
40
|
}
|
|
41
|
-
|
|
42
|
-
function f(
|
|
43
|
-
return (
|
|
41
|
+
l.variables = n;
|
|
42
|
+
function f(o) {
|
|
43
|
+
return (u, t) => `var(--${o}${t});`;
|
|
44
44
|
}
|
|
45
|
-
|
|
46
|
-
function
|
|
47
|
-
return `repeat(${
|
|
45
|
+
l.svgVariables = f;
|
|
46
|
+
function g(o, u) {
|
|
47
|
+
return `repeat(${u},minmax(0,1fr))`;
|
|
48
48
|
}
|
|
49
|
-
|
|
50
|
-
function p(
|
|
51
|
-
return
|
|
49
|
+
l.gridColumns = g;
|
|
50
|
+
function p(o, u) {
|
|
51
|
+
return u === "full-row" ? "1/-1" : `span ${u}/span ${u}`;
|
|
52
52
|
}
|
|
53
|
-
|
|
54
|
-
function
|
|
55
|
-
return `${
|
|
53
|
+
l.gridColumn = p;
|
|
54
|
+
function y(o, u) {
|
|
55
|
+
return `${u}ms`;
|
|
56
56
|
}
|
|
57
|
-
|
|
58
|
-
function
|
|
59
|
-
return `${
|
|
57
|
+
l.ms = y;
|
|
58
|
+
function k(o, u) {
|
|
59
|
+
return `${u}deg`;
|
|
60
60
|
}
|
|
61
|
-
|
|
62
|
-
function
|
|
63
|
-
return
|
|
61
|
+
l.rotate = k;
|
|
62
|
+
function h(o, u) {
|
|
63
|
+
return u === "xAxis" ? "-1 1" : "1 -1";
|
|
64
64
|
}
|
|
65
|
-
|
|
66
|
-
})(
|
|
65
|
+
l.flip = h;
|
|
66
|
+
})(s.Value || (s.Value = {}));
|
|
67
67
|
})(e || (e = {}));
|
|
68
68
|
const i = [
|
|
69
69
|
0,
|
|
@@ -163,7 +163,7 @@ const i = [
|
|
|
163
163
|
-92,
|
|
164
164
|
-96,
|
|
165
165
|
-100
|
|
166
|
-
], m = [...i, ...Y], R = ["solid", "dashed", "dotted", "double", "groove", "ridge", "inset", "outset", "none", "hidden"],
|
|
166
|
+
], m = [...i, ...Y], R = ["solid", "dashed", "dotted", "double", "groove", "ridge", "inset", "outset", "none", "hidden"], I = ["auto", "hidden", "scroll", "visible"], $ = [
|
|
167
167
|
"1/2",
|
|
168
168
|
"1/3",
|
|
169
169
|
"2/3",
|
|
@@ -190,7 +190,7 @@ const i = [
|
|
|
190
190
|
"9/12",
|
|
191
191
|
"10/12",
|
|
192
192
|
"11/12"
|
|
193
|
-
],
|
|
193
|
+
], H = ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"], L = ["auto", "flex-start", "flex-end", "center", "baseline", "stretch"], r = {
|
|
194
194
|
/** The `display` CSS property sets whether an element is treated as a block or inline box and the layout used for its children, such as flow layout, grid or flex. */
|
|
195
195
|
display: {
|
|
196
196
|
cssNames: ["display"],
|
|
@@ -214,60 +214,60 @@ const i = [
|
|
|
214
214
|
},
|
|
215
215
|
width: {
|
|
216
216
|
cssNames: ["width"],
|
|
217
|
-
values1: { values:
|
|
217
|
+
values1: { values: H, formatValue: e.Value.widthHeight },
|
|
218
218
|
values2: { values: i, formatValue: e.Value.rem },
|
|
219
219
|
values3: {
|
|
220
|
-
values:
|
|
220
|
+
values: $,
|
|
221
221
|
formatValue: e.Value.fraction
|
|
222
222
|
// formatClassName: BoxStylesFormatters.ClassName.fraction,
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
225
|
minWidth: {
|
|
226
226
|
cssNames: ["min-width"],
|
|
227
|
-
values1: { values:
|
|
227
|
+
values1: { values: H, formatValue: e.Value.widthHeight },
|
|
228
228
|
values2: { values: i, formatValue: e.Value.rem },
|
|
229
229
|
values3: {
|
|
230
|
-
values:
|
|
230
|
+
values: $,
|
|
231
231
|
formatValue: e.Value.fraction
|
|
232
232
|
// formatClassName: BoxStylesFormatters.ClassName.fraction,
|
|
233
233
|
}
|
|
234
234
|
},
|
|
235
235
|
maxWidth: {
|
|
236
236
|
cssNames: ["max-width"],
|
|
237
|
-
values1: { values:
|
|
237
|
+
values1: { values: H, formatValue: e.Value.widthHeight },
|
|
238
238
|
values2: { values: i, formatValue: e.Value.rem },
|
|
239
239
|
values3: {
|
|
240
|
-
values:
|
|
240
|
+
values: $,
|
|
241
241
|
formatValue: e.Value.fraction
|
|
242
242
|
// formatClassName: BoxStylesFormatters.ClassName.fraction,
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
height: {
|
|
246
246
|
cssNames: ["height"],
|
|
247
|
-
values1: { values:
|
|
247
|
+
values1: { values: H, formatValue: e.Value.widthHeight },
|
|
248
248
|
values2: { values: i, formatValue: e.Value.rem },
|
|
249
249
|
values3: {
|
|
250
|
-
values:
|
|
250
|
+
values: $,
|
|
251
251
|
formatValue: e.Value.fraction
|
|
252
252
|
// formatClassName: BoxStylesFormatters.ClassName.fraction,
|
|
253
253
|
}
|
|
254
254
|
},
|
|
255
255
|
minHeight: {
|
|
256
256
|
cssNames: ["min-height"],
|
|
257
|
-
values1: { values:
|
|
257
|
+
values1: { values: H, formatValue: e.Value.widthHeight },
|
|
258
258
|
values2: { values: i, formatValue: e.Value.rem },
|
|
259
259
|
values3: {
|
|
260
|
-
values:
|
|
260
|
+
values: $,
|
|
261
261
|
formatValue: e.Value.fraction
|
|
262
262
|
// formatClassName: BoxStylesFormatters.ClassName.fraction,
|
|
263
263
|
}
|
|
264
264
|
},
|
|
265
265
|
maxHeight: {
|
|
266
266
|
cssNames: ["max-height"],
|
|
267
|
-
values1: { values:
|
|
267
|
+
values1: { values: H, formatValue: e.Value.widthHeight },
|
|
268
268
|
values2: { values: i, formatValue: e.Value.rem },
|
|
269
269
|
values3: {
|
|
270
|
-
values:
|
|
270
|
+
values: $,
|
|
271
271
|
formatValue: e.Value.fraction
|
|
272
272
|
// formatClassName: BoxStylesFormatters.ClassName.fraction,
|
|
273
273
|
}
|
|
@@ -549,19 +549,19 @@ const i = [
|
|
|
549
549
|
},
|
|
550
550
|
overflow: {
|
|
551
551
|
cssNames: ["overflow"],
|
|
552
|
-
values1: { values:
|
|
552
|
+
values1: { values: I },
|
|
553
553
|
values2: { values: [] },
|
|
554
554
|
values3: { values: [] }
|
|
555
555
|
},
|
|
556
556
|
overflowX: {
|
|
557
557
|
cssNames: ["overflow-x"],
|
|
558
|
-
values1: { values:
|
|
558
|
+
values1: { values: I },
|
|
559
559
|
values2: { values: [] },
|
|
560
560
|
values3: { values: [] }
|
|
561
561
|
},
|
|
562
562
|
overflowY: {
|
|
563
563
|
cssNames: ["overflow-y"],
|
|
564
|
-
values1: { values:
|
|
564
|
+
values1: { values: I },
|
|
565
565
|
values2: { values: [] },
|
|
566
566
|
values3: { values: [] }
|
|
567
567
|
},
|
|
@@ -722,13 +722,13 @@ const i = [
|
|
|
722
722
|
},
|
|
723
723
|
alignSelf: {
|
|
724
724
|
cssNames: ["align-self"],
|
|
725
|
-
values1: { values:
|
|
725
|
+
values1: { values: L },
|
|
726
726
|
values2: { values: [] },
|
|
727
727
|
values3: { values: [] }
|
|
728
728
|
},
|
|
729
729
|
justifySelf: {
|
|
730
730
|
cssNames: ["justify-self"],
|
|
731
|
-
values1: { values:
|
|
731
|
+
values1: { values: L },
|
|
732
732
|
values2: { values: [] },
|
|
733
733
|
values3: { values: [] }
|
|
734
734
|
},
|
|
@@ -831,14 +831,15 @@ const i = [
|
|
|
831
831
|
values2: { values: [] },
|
|
832
832
|
values3: { values: [] }
|
|
833
833
|
}
|
|
834
|
-
},
|
|
834
|
+
}, _ = {
|
|
835
835
|
shadow: { cssNames: ["box-shadow"], formatValue: e.Value.variables("shadow") },
|
|
836
836
|
background: { cssNames: ["background"], formatValue: e.Value.variables("background") },
|
|
837
|
+
backgroundImage: { cssNames: ["background-image"], formatValue: e.Value.variables("backgroundImage") },
|
|
837
838
|
color: { cssNames: ["color"], formatValue: e.Value.variables("color") },
|
|
838
839
|
bgColor: { cssNames: ["background-color"], formatValue: e.Value.variables("color") },
|
|
839
840
|
borderColor: { cssNames: ["border-color"], formatValue: e.Value.variables("color") },
|
|
840
841
|
outlineColor: { cssNames: ["outline-color"], formatValue: e.Value.variables("color") }
|
|
841
|
-
},
|
|
842
|
+
}, D = {
|
|
842
843
|
fill: {
|
|
843
844
|
cssNames: ["fill"],
|
|
844
845
|
formatValue: e.Value.svgVariables("color"),
|
|
@@ -849,155 +850,155 @@ const i = [
|
|
|
849
850
|
formatValue: e.Value.svgVariables("color"),
|
|
850
851
|
formatSelector: e.ClassName.svg
|
|
851
852
|
}
|
|
852
|
-
}, J = ["H", "F", "A"],
|
|
853
|
+
}, J = ["H", "F", "A", "C"], S = {
|
|
853
854
|
hover: { className: "_h" },
|
|
854
855
|
focus: { className: "_f" }
|
|
855
856
|
};
|
|
856
|
-
Object.keys(
|
|
857
|
-
|
|
857
|
+
Object.keys(_).forEach((s) => {
|
|
858
|
+
r[s] = _[s], r[s].isThemeStyle = !0;
|
|
858
859
|
});
|
|
859
|
-
Object.keys(
|
|
860
|
-
|
|
860
|
+
Object.keys(D).forEach((s) => {
|
|
861
|
+
r[s] = D[s], r[s].isThemeStyle = !0;
|
|
861
862
|
});
|
|
862
|
-
const
|
|
863
|
-
w: { ...
|
|
864
|
-
h: { ...
|
|
865
|
-
m: { ...
|
|
866
|
-
mx: { ...
|
|
867
|
-
my: { ...
|
|
868
|
-
mt: { ...
|
|
869
|
-
mr: { ...
|
|
870
|
-
mb: { ...
|
|
871
|
-
ml: { ...
|
|
872
|
-
p: { ...
|
|
873
|
-
px: { ...
|
|
874
|
-
py: { ...
|
|
875
|
-
pt: { ...
|
|
876
|
-
pr: { ...
|
|
877
|
-
pb: { ...
|
|
878
|
-
pl: { ...
|
|
879
|
-
b: { ...
|
|
880
|
-
bx: { ...
|
|
881
|
-
by: { ...
|
|
882
|
-
bt: { ...
|
|
883
|
-
br: { ...
|
|
884
|
-
bb: { ...
|
|
885
|
-
bl: { ...
|
|
886
|
-
jc: { ...
|
|
887
|
-
ai: { ...
|
|
888
|
-
ac: { ...
|
|
889
|
-
d: { ...
|
|
890
|
-
}, Q = Object.keys(
|
|
891
|
-
J.forEach((
|
|
892
|
-
Q.forEach((
|
|
893
|
-
|
|
894
|
-
}), Z.forEach((
|
|
895
|
-
|
|
863
|
+
const z = {
|
|
864
|
+
w: { ...r.width, key: "width" },
|
|
865
|
+
h: { ...r.height, key: "height" },
|
|
866
|
+
m: { ...r.margin, key: "margin" },
|
|
867
|
+
mx: { ...r.marginHorizontal, key: "marginHorizontal" },
|
|
868
|
+
my: { ...r.marginVertical, key: "marginVertical" },
|
|
869
|
+
mt: { ...r.marginTop, key: "marginTop" },
|
|
870
|
+
mr: { ...r.marginRight, key: "marginRight" },
|
|
871
|
+
mb: { ...r.marginBottom, key: "marginBottom" },
|
|
872
|
+
ml: { ...r.marginLeft, key: "marginLeft" },
|
|
873
|
+
p: { ...r.padding, key: "padding" },
|
|
874
|
+
px: { ...r.paddingHorizontal, key: "paddingHorizontal" },
|
|
875
|
+
py: { ...r.paddingVertical, key: "paddingVertical" },
|
|
876
|
+
pt: { ...r.paddingTop, key: "paddingTop" },
|
|
877
|
+
pr: { ...r.paddingRight, key: "paddingRight" },
|
|
878
|
+
pb: { ...r.paddingBottom, key: "paddingBottom" },
|
|
879
|
+
pl: { ...r.paddingLeft, key: "paddingLeft" },
|
|
880
|
+
b: { ...r.border, key: "border" },
|
|
881
|
+
bx: { ...r.borderHorizontal, key: "borderHorizontal" },
|
|
882
|
+
by: { ...r.borderVertical, key: "borderVertical" },
|
|
883
|
+
bt: { ...r.borderTop, key: "borderTop" },
|
|
884
|
+
br: { ...r.borderRight, key: "borderRight" },
|
|
885
|
+
bb: { ...r.borderBottom, key: "borderBottom" },
|
|
886
|
+
bl: { ...r.borderLeft, key: "borderLeft" },
|
|
887
|
+
jc: { ...r.justifyContent, key: "justifyContent" },
|
|
888
|
+
ai: { ...r.alignItems, key: "alignItems" },
|
|
889
|
+
ac: { ...r.alignContent, key: "alignContent" },
|
|
890
|
+
d: { ...r.flexDirection, key: "flexDirection" }
|
|
891
|
+
}, Q = Object.keys(r), Z = Object.keys(z);
|
|
892
|
+
J.forEach((s) => {
|
|
893
|
+
Q.forEach((l) => {
|
|
894
|
+
r[`${l}${s}`] = { ...r[l] }, r[`${l}${s}`].pseudoSuffix = s;
|
|
895
|
+
}), Z.forEach((l) => {
|
|
896
|
+
z[`${l}${s}`] = { ...z[l], key: `${z[l].key}${s}` }, z[`${l}${s}`].pseudoSuffix = s;
|
|
896
897
|
});
|
|
897
898
|
});
|
|
898
899
|
class K {
|
|
899
900
|
constructor() {
|
|
900
901
|
this._index = 0, this._cache = {};
|
|
901
902
|
}
|
|
902
|
-
getIdentity(
|
|
903
|
-
return this._cache[
|
|
903
|
+
getIdentity(l) {
|
|
904
|
+
return this._cache[l] || (this._cache[l] = this.getByIndex(this._index++)), this._cache[l];
|
|
904
905
|
}
|
|
905
|
-
getByIndex(
|
|
906
|
-
const { first: c, next: v } = ee,
|
|
907
|
-
if (
|
|
908
|
-
return c[
|
|
909
|
-
const
|
|
910
|
-
return this.getByIndex(
|
|
906
|
+
getByIndex(l) {
|
|
907
|
+
const { first: c, next: v } = ee, a = l - c.length;
|
|
908
|
+
if (a < 0)
|
|
909
|
+
return c[l];
|
|
910
|
+
const d = Math.floor(a / v.length), n = a - d * v.length;
|
|
911
|
+
return this.getByIndex(d) + v[n];
|
|
911
912
|
}
|
|
912
913
|
}
|
|
913
914
|
const ee = {
|
|
914
915
|
first: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
|
915
916
|
next: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
|
|
916
917
|
};
|
|
917
|
-
var
|
|
918
|
-
((
|
|
919
|
-
|
|
920
|
-
const
|
|
918
|
+
var F;
|
|
919
|
+
((s) => {
|
|
920
|
+
s.boxClassName = "_box", s.svgClassName = "_svg", s.cronoStylesElementId = "crono-styles";
|
|
921
|
+
const l = `:root{--borderColor: black;--outlineColor: black;--lineHeight: 1.2;--fontSize: 14px;--transitionTime: 0.25s;--svgTransitionTime: 0.3s;#crono-box {position: absolute;top: 0;left: 0;height: 0;}}
|
|
921
922
|
html{font-size: 16px;font-family: Arial, sans-serif;}
|
|
922
923
|
body{margin: 0;line-height: var(--lineHeight);font-size: var(--fontSize);}
|
|
923
924
|
a,ul{all: unset;}
|
|
924
|
-
.${
|
|
925
|
-
.${
|
|
926
|
-
`, c = new K(), v = Object.keys(
|
|
927
|
-
let
|
|
928
|
-
(
|
|
925
|
+
.${s.boxClassName}{display: block;border: 0 solid var(--borderColor);outline: 0px solid var(--outlineColor);margin: 0;padding: 0;background-color: initial;transition: all var(--transitionTime);box-sizing: border-box;font-family: inherit;font-size: inherit;}
|
|
926
|
+
.${s.svgClassName}{transition: all var(--svgTransitionTime);}.${s.svgClassName} path,.${s.svgClassName} circle,.${s.svgClassName} rect,.${s.svgClassName} line {transition: all var(--svgTransitionTime);}
|
|
927
|
+
`, c = new K(), v = Object.keys(r);
|
|
928
|
+
let a = !0, d = v.reduce(
|
|
929
|
+
(o, u) => (o[u] = /* @__PURE__ */ new Set(), o),
|
|
929
930
|
{}
|
|
930
931
|
);
|
|
931
|
-
function
|
|
932
|
-
if (
|
|
933
|
-
return p(
|
|
934
|
-
if (
|
|
935
|
-
return
|
|
932
|
+
function n(o, u) {
|
|
933
|
+
if (o in r)
|
|
934
|
+
return p(o, u);
|
|
935
|
+
if (o in S)
|
|
936
|
+
return S[o].className;
|
|
936
937
|
}
|
|
937
|
-
|
|
938
|
+
s.get = n;
|
|
938
939
|
function f() {
|
|
939
|
-
if (
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
a.innerHTML = t.join(""), s = !1;
|
|
940
|
+
if (a) {
|
|
941
|
+
let o = y([l]);
|
|
942
|
+
o = y(o, "H"), o = y(o, "F"), o = y(o, "A"), o = y(o, "C");
|
|
943
|
+
const u = h();
|
|
944
|
+
u.innerHTML = o.join(""), a = !1;
|
|
945
945
|
}
|
|
946
946
|
}
|
|
947
|
-
|
|
948
|
-
function
|
|
949
|
-
|
|
950
|
-
(
|
|
947
|
+
s.flush = f;
|
|
948
|
+
function g() {
|
|
949
|
+
d = v.reduce(
|
|
950
|
+
(o, u) => (o[u] = /* @__PURE__ */ new Set(), o),
|
|
951
951
|
{}
|
|
952
952
|
);
|
|
953
953
|
}
|
|
954
|
-
|
|
955
|
-
function p(
|
|
956
|
-
var
|
|
957
|
-
|
|
958
|
-
const
|
|
959
|
-
return c.getIdentity(
|
|
954
|
+
s.clear = g;
|
|
955
|
+
function p(o, u) {
|
|
956
|
+
var V;
|
|
957
|
+
d[o].has(u) || (a = !0, d[o].add(u));
|
|
958
|
+
const t = k(o, u), N = ((V = t.formatClassName) == null ? void 0 : V.call(t, o, u)) ?? `${o}${u}`;
|
|
959
|
+
return c.getIdentity(N);
|
|
960
960
|
}
|
|
961
|
-
function
|
|
962
|
-
return Object.entries(
|
|
963
|
-
var
|
|
964
|
-
return ((
|
|
965
|
-
}).reduce((
|
|
966
|
-
var
|
|
967
|
-
const
|
|
968
|
-
let
|
|
969
|
-
|
|
970
|
-
...
|
|
971
|
-
...
|
|
972
|
-
] :
|
|
973
|
-
...
|
|
974
|
-
...
|
|
975
|
-
] :
|
|
976
|
-
const G = ((
|
|
977
|
-
|
|
978
|
-
}),
|
|
979
|
-
function
|
|
980
|
-
return
|
|
961
|
+
function y(o, u) {
|
|
962
|
+
return Object.entries(d).filter(([N]) => {
|
|
963
|
+
var V;
|
|
964
|
+
return ((V = r[N]) == null ? void 0 : V.pseudoSuffix) === u;
|
|
965
|
+
}).reduce((N, [V, b]) => (b.forEach((w) => {
|
|
966
|
+
var E;
|
|
967
|
+
const x = k(V, w), C = `.${p(V, w)}`;
|
|
968
|
+
let T = [];
|
|
969
|
+
u ? u === "H" ? T = [
|
|
970
|
+
...t(`${C}:hover`, x),
|
|
971
|
+
...t(`.${S.hover.className}:hover>${C}`, x)
|
|
972
|
+
] : u === "F" ? T = [
|
|
973
|
+
...t(`${C}:focus-within`, x),
|
|
974
|
+
...t(`.${S.focus.className}:focus-within>${C}`, x)
|
|
975
|
+
] : u === "A" ? T = t(`${C}:active`, x) : u === "C" && (T = t(`${C}:checked`, x)) : T = t(C, x);
|
|
976
|
+
const G = ((E = x.formatValue) == null ? void 0 : E.call(x, V, w)) ?? w, M = r[V].cssNames.map((q) => `${q}:${G};`).join("");
|
|
977
|
+
N.push(`${T.join(",")}{${M}}`);
|
|
978
|
+
}), N), o);
|
|
979
|
+
function t(N, V) {
|
|
980
|
+
return V.formatSelector ? V.formatSelector(N) : [N];
|
|
981
981
|
}
|
|
982
982
|
}
|
|
983
|
-
function
|
|
984
|
-
const
|
|
985
|
-
return
|
|
983
|
+
function k(o, u) {
|
|
984
|
+
const t = r[o];
|
|
985
|
+
return t.isThemeStyle ? t : t.values1.values.includes(u) ? t.values1 : t.values2.values.includes(u) ? t.values2 : t.values3;
|
|
986
986
|
}
|
|
987
|
-
function
|
|
988
|
-
const
|
|
989
|
-
let
|
|
990
|
-
return
|
|
987
|
+
function h() {
|
|
988
|
+
const u = typeof window < "u" && typeof window.document < "u" ? window.document : global.document;
|
|
989
|
+
let t = u.getElementById(s.cronoStylesElementId);
|
|
990
|
+
return t || (t = u.createElement("style"), t.setAttribute("id", s.cronoStylesElementId), t.setAttribute("type", "text/css"), u.head.insertBefore(t, u.head.firstChild)), t;
|
|
991
991
|
}
|
|
992
|
-
})(
|
|
993
|
-
const
|
|
992
|
+
})(F || (F = {}));
|
|
993
|
+
const A = F, j = {
|
|
994
994
|
button: {
|
|
995
995
|
styles: {
|
|
996
996
|
display: "inline-block",
|
|
997
997
|
p: 3,
|
|
998
998
|
cursor: "pointer",
|
|
999
999
|
b: 1,
|
|
1000
|
-
borderRadius: 1
|
|
1000
|
+
borderRadius: 1,
|
|
1001
|
+
userSelect: "none"
|
|
1001
1002
|
},
|
|
1002
1003
|
disabled: {
|
|
1003
1004
|
cursor: "default"
|
|
@@ -1005,9 +1006,7 @@ const S = E, j = {
|
|
|
1005
1006
|
},
|
|
1006
1007
|
checkbox: {
|
|
1007
1008
|
styles: {
|
|
1008
|
-
display: "inline-block"
|
|
1009
|
-
b: 1,
|
|
1010
|
-
p: 2
|
|
1009
|
+
display: "inline-block"
|
|
1011
1010
|
}
|
|
1012
1011
|
},
|
|
1013
1012
|
radioButton: {
|
|
@@ -1033,25 +1032,27 @@ const S = E, j = {
|
|
|
1033
1032
|
}
|
|
1034
1033
|
}
|
|
1035
1034
|
};
|
|
1036
|
-
var
|
|
1037
|
-
((
|
|
1038
|
-
|
|
1039
|
-
function
|
|
1040
|
-
|
|
1035
|
+
var O;
|
|
1036
|
+
((s) => {
|
|
1037
|
+
s.Styles = j;
|
|
1038
|
+
function l(n) {
|
|
1039
|
+
a(n), s.Styles = n, v();
|
|
1041
1040
|
}
|
|
1042
|
-
|
|
1043
|
-
function c(
|
|
1044
|
-
const
|
|
1045
|
-
`),
|
|
1046
|
-
`),
|
|
1047
|
-
`),
|
|
1048
|
-
|
|
1049
|
-
|
|
1041
|
+
s.setup = l;
|
|
1042
|
+
function c(n, f) {
|
|
1043
|
+
const g = Object.entries(n.colors).map(([b, w]) => `--color${b}: ${w};`).join(`
|
|
1044
|
+
`), p = Object.entries(n.shadows).map(([b, w]) => `--shadow${b}: ${w};`).join(`
|
|
1045
|
+
`), y = Object.entries(n.backgrounds).map(([b, w]) => `--background${b}: ${w};`).join(`
|
|
1046
|
+
`), k = Object.entries(n.backgroundImages).map(([b, w]) => `--backgroundImage${b}: ${w};`).join(`
|
|
1047
|
+
`), h = [":root {"];
|
|
1048
|
+
g && h.push(` ${g}`), p && h.push(` ${p}`), y && h.push(` ${y}`), k && h.push(` ${k}`), h.push("}");
|
|
1049
|
+
const o = Object.keys(n.colors).map((b) => `'${b}'`).join(" | "), u = Object.keys(n.backgrounds).map((b) => `'${b}'`).join(" | "), t = Object.keys(n.backgroundImages).map((b) => `'${b}'`).join(" | "), N = Object.keys(n.shadows).map((b) => `'${b}'`).join(" | "), V = `import '@cronocode/react-box';
|
|
1050
1050
|
|
|
1051
|
-
declare module '${(
|
|
1052
|
-
type ColorType = ${
|
|
1053
|
-
type BackgroundType = ${
|
|
1054
|
-
type
|
|
1051
|
+
declare module '${(f == null ? void 0 : f.namespacePath) ?? "@cronocode/react-box/core/types"}' {
|
|
1052
|
+
type ColorType = ${o};
|
|
1053
|
+
type BackgroundType = ${u};
|
|
1054
|
+
type BackgroundImageType = ${t};
|
|
1055
|
+
type ShadowType = ${N};
|
|
1055
1056
|
|
|
1056
1057
|
namespace Augmented {
|
|
1057
1058
|
interface BoxProps {
|
|
@@ -1059,26 +1060,38 @@ var F;
|
|
|
1059
1060
|
colorH?: ColorType;
|
|
1060
1061
|
colorF?: ColorType;
|
|
1061
1062
|
colorA?: ColorType;
|
|
1063
|
+
colorC?: ColorType;
|
|
1062
1064
|
bgColor?: ColorType;
|
|
1063
1065
|
bgColorH?: ColorType;
|
|
1064
1066
|
bgColorF?: ColorType;
|
|
1065
1067
|
bgColorA?: ColorType;
|
|
1068
|
+
bgColorC?: ColorType;
|
|
1066
1069
|
borderColor?: ColorType;
|
|
1067
1070
|
borderColorH?: ColorType;
|
|
1068
1071
|
borderColorF?: ColorType;
|
|
1069
1072
|
borderColorA?: ColorType;
|
|
1073
|
+
borderColorC?: ColorType;
|
|
1070
1074
|
outlineColor?: ColorType;
|
|
1071
1075
|
outlineColorH?: ColorType;
|
|
1072
1076
|
outlineColorF?: ColorType;
|
|
1073
1077
|
outlineColorA?: ColorType;
|
|
1078
|
+
outlineColorC?: ColorType;
|
|
1074
1079
|
background?: BackgroundType;
|
|
1075
1080
|
backgroundH?: BackgroundType;
|
|
1076
1081
|
backgroundF?: BackgroundType;
|
|
1077
1082
|
backgroundA?: BackgroundType;
|
|
1083
|
+
backgroundC?: BackgroundType;
|
|
1084
|
+
backgroundImage?: BackgroundImageType;
|
|
1085
|
+
backgroundImageH?: BackgroundImageType;
|
|
1086
|
+
backgroundImageF?: BackgroundImageType;
|
|
1087
|
+
backgroundImageA?: BackgroundImageType;
|
|
1088
|
+
backgroundImageC?: BackgroundImageType;
|
|
1078
1089
|
shadow?: ShadowType;
|
|
1079
1090
|
shadowH?: ShadowType;
|
|
1080
1091
|
shadowF?: ShadowType;
|
|
1092
|
+
shadowF?: ShadowType;
|
|
1081
1093
|
shadowA?: ShadowType;
|
|
1094
|
+
shadowC?: ShadowType;
|
|
1082
1095
|
}
|
|
1083
1096
|
|
|
1084
1097
|
interface SvgProps {
|
|
@@ -1086,67 +1099,92 @@ var F;
|
|
|
1086
1099
|
fillH?: ColorType;
|
|
1087
1100
|
fillF?: ColorType;
|
|
1088
1101
|
fillA?: ColorType;
|
|
1102
|
+
fillC?: ColorType;
|
|
1089
1103
|
stroke?: ColorType;
|
|
1090
1104
|
strokeH?: ColorType;
|
|
1091
1105
|
strokeF?: ColorType;
|
|
1092
1106
|
strokeA?: ColorType;
|
|
1107
|
+
strokeC?: ColorType;
|
|
1093
1108
|
}
|
|
1094
1109
|
}
|
|
1095
1110
|
}
|
|
1096
1111
|
`;
|
|
1097
1112
|
return {
|
|
1098
|
-
variables:
|
|
1113
|
+
variables: h.join(`
|
|
1099
1114
|
`),
|
|
1100
|
-
boxDts:
|
|
1115
|
+
boxDts: V
|
|
1101
1116
|
};
|
|
1102
1117
|
}
|
|
1103
|
-
|
|
1118
|
+
s.setupAugmentedProps = c;
|
|
1104
1119
|
function v() {
|
|
1105
|
-
Object.keys(j).forEach((
|
|
1106
|
-
const
|
|
1107
|
-
|
|
1120
|
+
a(j), Object.keys(j).forEach((f) => {
|
|
1121
|
+
const g = s.Styles[f], p = j[f];
|
|
1122
|
+
g ? (g.styles = { ...p.styles, ...g.styles }, g.disabled && p.disabled && (g.disabled = { ...p.disabled, ...g.disabled })) : s.Styles[f] = j[f];
|
|
1108
1123
|
});
|
|
1109
1124
|
}
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1125
|
+
function a(n) {
|
|
1126
|
+
if (!n.components)
|
|
1127
|
+
return;
|
|
1128
|
+
const f = Object.keys(n.components);
|
|
1129
|
+
for (const g of f) {
|
|
1130
|
+
const p = n.components[g], y = d(g, p);
|
|
1131
|
+
delete p.children;
|
|
1132
|
+
for (const k of y) {
|
|
1133
|
+
const [h, o] = k;
|
|
1134
|
+
n.components[h] = o;
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
function d(n, f) {
|
|
1139
|
+
if (!f.children)
|
|
1140
|
+
return [];
|
|
1141
|
+
const g = Object.keys(f.children), p = [];
|
|
1142
|
+
for (const y of g) {
|
|
1143
|
+
const k = `${n}.${y}`, h = f.children[y], o = d(k, h);
|
|
1144
|
+
p.push(...o), delete h.children, p.push([k, h]);
|
|
1145
|
+
}
|
|
1146
|
+
return p;
|
|
1147
|
+
}
|
|
1148
|
+
})(O || (O = {}));
|
|
1149
|
+
const P = O;
|
|
1150
|
+
function ae(s) {
|
|
1151
|
+
const { clean: l, disabled: c, theme: v, component: a } = s;
|
|
1152
|
+
return W(() => {
|
|
1153
|
+
var f, g, p;
|
|
1154
|
+
if (l)
|
|
1117
1155
|
return;
|
|
1118
|
-
let
|
|
1119
|
-
if (!
|
|
1156
|
+
let d = P.Styles[a] ?? ((f = P.Styles.components) == null ? void 0 : f[a]);
|
|
1157
|
+
if (!d)
|
|
1120
1158
|
return;
|
|
1121
|
-
let
|
|
1122
|
-
return c ? v ? { ...
|
|
1123
|
-
}, [
|
|
1159
|
+
let n = v ? { ...d.styles, ...(g = d.themes) == null ? void 0 : g[v].styles } : d.styles;
|
|
1160
|
+
return c ? v ? { ...n, ...d.disabled, ...(p = d.themes) == null ? void 0 : p[v].disabled } : { ...n, ...d.disabled } : n;
|
|
1161
|
+
}, [a, l, c, v]);
|
|
1124
1162
|
}
|
|
1125
|
-
const
|
|
1126
|
-
function
|
|
1127
|
-
const c =
|
|
1128
|
-
return le(
|
|
1129
|
-
const v = [
|
|
1130
|
-
return "inline" in
|
|
1131
|
-
v.push(
|
|
1163
|
+
const se = typeof window < "u" && typeof window.document < "u", le = se ? U : X;
|
|
1164
|
+
function te(s, l) {
|
|
1165
|
+
const c = ae(s);
|
|
1166
|
+
return le(A.flush, [s]), W(() => {
|
|
1167
|
+
const v = [l ? A.svgClassName : A.boxClassName], a = c ? { ...B(c), ...B(s) } : B(s);
|
|
1168
|
+
return "inline" in a && (a.display === "block" || !a.display ? a.display = "inline-block" : a.display === "flex" ? a.display = "inline-flex" : a.display === "grid" && (a.display = "inline-grid"), delete a.inline), "inlineH" in a && (a.displayH === "block" || !a.displayH ? a.displayH = "inline-block" : a.displayH === "flex" ? a.displayH = "inline-flex" : a.displayH === "grid" && (a.displayH = "inline-grid"), delete a.inlineH), "inlineF" in a && (a.displayF === "block" || !a.displayF ? a.displayF = "inline-block" : a.displayF === "flex" ? a.displayF = "inline-flex" : a.displayF === "grid" && (a.displayF = "inline-grid"), delete a.inlineF), "inlineA" in a && (a.displayA === "block" || !a.displayA ? a.displayA = "inline-block" : a.displayA === "flex" ? a.displayA = "inline-flex" : a.displayA === "grid" && (a.displayA = "inline-grid"), delete a.inlineA), Object.entries(a).forEach(([d, n]) => {
|
|
1169
|
+
v.push(A.get(d, n));
|
|
1132
1170
|
}), v;
|
|
1133
|
-
}, [
|
|
1171
|
+
}, [s, c]);
|
|
1134
1172
|
}
|
|
1135
|
-
function B(
|
|
1136
|
-
const
|
|
1137
|
-
return Object.keys(
|
|
1138
|
-
const
|
|
1139
|
-
|
|
1140
|
-
}),
|
|
1173
|
+
function B(s) {
|
|
1174
|
+
const l = { ...s };
|
|
1175
|
+
return Object.keys(l).forEach((v) => {
|
|
1176
|
+
const a = z[v];
|
|
1177
|
+
a && (a.key in l || (l[a.key] = l[v]), delete l[v]);
|
|
1178
|
+
}), l;
|
|
1141
1179
|
}
|
|
1142
|
-
function ue(...
|
|
1143
|
-
return
|
|
1144
|
-
|
|
1145
|
-
}),
|
|
1180
|
+
function ue(...s) {
|
|
1181
|
+
return s.reduce((l, c) => c ? typeof c == "string" ? (l.push(c), l) : Array.isArray(c) ? (l.push(...ue(...c)), l) : (Object.entries(c).forEach(([v, a]) => {
|
|
1182
|
+
a && l.push(v);
|
|
1183
|
+
}), l) : l, []);
|
|
1146
1184
|
}
|
|
1147
1185
|
export {
|
|
1148
|
-
S,
|
|
1149
|
-
|
|
1186
|
+
A as S,
|
|
1187
|
+
P as T,
|
|
1150
1188
|
ue as c,
|
|
1151
|
-
|
|
1189
|
+
te as u
|
|
1152
1190
|
};
|
package/package.json
CHANGED
package/core/boxTypes.d.ts
DELETED