eddev 0.2.0-beta.13 → 0.2.0-beta.14

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.
@@ -14,14 +14,14 @@ export declare const EDConfigSchema: z.ZodObject<{
14
14
  enabled: boolean;
15
15
  uploads: "proxy" | "remote";
16
16
  plugins: "proxy" | "remote";
17
- theme: "proxy" | "remote" | "copy";
17
+ theme: "copy" | "proxy" | "remote";
18
18
  }, {
19
19
  devAssets?: string[] | undefined;
20
20
  apiOnly?: boolean | undefined;
21
21
  enabled: boolean;
22
22
  uploads: "proxy" | "remote";
23
23
  plugins: "proxy" | "remote";
24
- theme: "proxy" | "remote" | "copy";
24
+ theme: "copy" | "proxy" | "remote";
25
25
  }>>;
26
26
  devUI: z.ZodEnum<["disabled", "enabled"]>;
27
27
  }, "strip", z.ZodTypeAny, {
@@ -32,7 +32,7 @@ export declare const EDConfigSchema: z.ZodObject<{
32
32
  enabled: boolean;
33
33
  uploads: "proxy" | "remote";
34
34
  plugins: "proxy" | "remote";
35
- theme: "proxy" | "remote" | "copy";
35
+ theme: "copy" | "proxy" | "remote";
36
36
  } | undefined;
37
37
  devUI: "disabled" | "enabled";
38
38
  }, {
@@ -43,7 +43,7 @@ export declare const EDConfigSchema: z.ZodObject<{
43
43
  enabled: boolean;
44
44
  uploads: "proxy" | "remote";
45
45
  plugins: "proxy" | "remote";
46
- theme: "proxy" | "remote" | "copy";
46
+ theme: "copy" | "proxy" | "remote";
47
47
  } | undefined;
48
48
  devUI: "disabled" | "enabled";
49
49
  }>;
@@ -6,7 +6,7 @@ export declare function getEDConfig(dir?: string): import("zod").SafeParseReturn
6
6
  enabled: boolean;
7
7
  uploads: "proxy" | "remote";
8
8
  plugins: "proxy" | "remote";
9
- theme: "proxy" | "remote" | "copy";
9
+ theme: "copy" | "proxy" | "remote";
10
10
  } | undefined;
11
11
  devUI: "disabled" | "enabled";
12
12
  }, {
@@ -17,7 +17,7 @@ export declare function getEDConfig(dir?: string): import("zod").SafeParseReturn
17
17
  enabled: boolean;
18
18
  uploads: "proxy" | "remote";
19
19
  plugins: "proxy" | "remote";
20
- theme: "proxy" | "remote" | "copy";
20
+ theme: "copy" | "proxy" | "remote";
21
21
  } | undefined;
22
22
  devUI: "disabled" | "enabled";
23
23
  }>;
@@ -29,7 +29,7 @@ export declare function getEDConfigUnwrapped(dir?: string): {
29
29
  enabled: boolean;
30
30
  uploads: "proxy" | "remote";
31
31
  plugins: "proxy" | "remote";
32
- theme: "proxy" | "remote" | "copy";
32
+ theme: "copy" | "proxy" | "remote";
33
33
  } | undefined;
34
34
  devUI: "disabled" | "enabled";
35
35
  };
@@ -6,7 +6,7 @@ export declare function parseConfig(config: any): import("zod").SafeParseReturnT
6
6
  enabled: boolean;
7
7
  uploads: "proxy" | "remote";
8
8
  plugins: "proxy" | "remote";
9
- theme: "proxy" | "remote" | "copy";
9
+ theme: "copy" | "proxy" | "remote";
10
10
  } | undefined;
11
11
  devUI: "disabled" | "enabled";
12
12
  }, {
@@ -17,7 +17,7 @@ export declare function parseConfig(config: any): import("zod").SafeParseReturnT
17
17
  enabled: boolean;
18
18
  uploads: "proxy" | "remote";
19
19
  plugins: "proxy" | "remote";
20
- theme: "proxy" | "remote" | "copy";
20
+ theme: "copy" | "proxy" | "remote";
21
21
  } | undefined;
22
22
  devUI: "disabled" | "enabled";
23
23
  }>;
@@ -34,7 +34,7 @@ function BreakpointIndicator() {
34
34
  var maxSize = parseFloat(_theme_1.breakpoints[_theme_1.breakpoints.length - 1].min);
35
35
  var _a = (0, usePersistState_1.usePersistState)("breakpoint_indicator", false), expanded = _a[0], setExpanded = _a[1];
36
36
  if (!expanded) {
37
- return ((0, jsx_runtime_1.jsx)(Simple, __assign({ onClick: function () { return setExpanded(true); }, css: colors[bpState.index % colors.length] }, { children: (0, jsx_runtime_1.jsxs)(Text_1.Text, __assign({ variant: "monoBold" }, { children: ["@", bpState.name] }), void 0) }), void 0));
37
+ return ((0, jsx_runtime_1.jsx)(Simple, __assign({ onClick: function () { return setExpanded(true); }, css: colors[bpState.index % colors.length] }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, __assign({ variant: "monoBold" }, { children: bpState.name }), void 0) }), void 0));
38
38
  }
39
39
  return ((0, jsx_runtime_1.jsx)(Expanded, __assign({ onClick: function () { return setExpanded(false); } }, { children: (0, jsx_runtime_1.jsxs)(Items, { children: [_theme_1.breakpoints.map(function (bp, index) {
40
40
  return ((0, jsx_runtime_1.jsx)(Item, __assign({ css: __assign(__assign({}, colors[index % colors.length]), { $$offset: parseFloat(bp.min) / maxSize, $$size: bp.max ? (parseFloat(bp.max) - parseFloat(bp.min)) / maxSize : 0 }), last: index === _theme_1.breakpoints.length - 1, active: bpState.name === bp.key }, { children: (0, jsx_runtime_1.jsx)(Tooltip_1.Tooltip, __assign({ label: "".concat(bp.min, " - ").concat(bp.max || "∞"), nowrap: true, offset: 3 }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, __assign({ variant: "monoTiny", align: "left" }, { children: bp.key }), void 0) }), void 0) }), index));
@@ -1,2 +1,2 @@
1
1
  /// <reference types="react" />
2
- export declare function DevUI(): JSX.Element;
2
+ export default function DevUI(): JSX.Element;
@@ -1,6 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DevUI = void 0;
4
3
  var jsx_runtime_1 = require("react/jsx-runtime");
5
4
  var react_1 = require("react");
6
5
  var usePersistState_1 = require("../hooks/usePersistState");
@@ -17,7 +16,7 @@ function DevUI() {
17
16
  setPanel(panel);
18
17
  }, extras: (0, jsx_runtime_1.jsx)(BreakpointIndicator_1.BreakpointIndicator, {}, void 0) }, void 0), open && PanelComponent && ((0, jsx_runtime_1.jsx)(PanelPosition, { children: (0, jsx_runtime_1.jsx)(PanelComponent, {}, void 0) }, void 0))] }, void 0));
19
18
  }
20
- exports.DevUI = DevUI;
19
+ exports.default = DevUI;
21
20
  var PanelPosition = (0, theme_1.styled)("div", {
22
21
  position: "fixed",
23
22
  left: "0px",
@@ -1,5 +1,5 @@
1
1
  export declare const Text: import("@stitches/react/types/styled-component").StyledComponent<"div", {
2
- variant?: "mono" | "h1" | "monoBold" | "monoTiny" | undefined;
2
+ variant?: "h1" | "mono" | "monoBold" | "monoTiny" | undefined;
3
3
  align?: "left" | "right" | "center" | undefined;
4
4
  }, {}, import("@stitches/react/types/css-util").CSS<{}, {
5
5
  space: {
package/dev-ui/index.d.ts CHANGED
@@ -1 +1 @@
1
- export { DevUI } from "./components/DevUI";
1
+ export * from "./components/DevUI";
package/dev-ui/index.js CHANGED
@@ -1,5 +1,13 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
2
12
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DevUI = void 0;
4
- var DevUI_1 = require("./components/DevUI");
5
- Object.defineProperty(exports, "DevUI", { enumerable: true, get: function () { return DevUI_1.DevUI; } });
13
+ __exportStar(require("./components/DevUI"), exports);
package/dev-ui/theme.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- export declare const styled: <Type extends import("@stitches/react/types/util").Function | keyof JSX.IntrinsicElements | import("react").ComponentType<any>, Composers extends (string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> | {
1
+ /// <reference types="react" />
2
+ export declare const styled: <Type extends import("react").ComponentType<any> | keyof JSX.IntrinsicElements | import("@stitches/react/types/util").Function, Composers extends (string | import("react").ComponentType<any> | import("@stitches/react/types/util").Function | {
2
3
  [name: string]: unknown;
3
4
  })[], CSS = import("@stitches/react/types/css-util").CSS<{}, {
4
5
  space: {
@@ -41,7 +42,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
41
42
  transitions: {
42
43
  default: string;
43
44
  };
44
- }, import("@stitches/react/types/config").DefaultThemeMap, {}>>(type: Type, ...composers: { [K in keyof Composers]: Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS> & {
45
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>(type: Type, ...composers: { [K in keyof Composers]: Composers[K] extends string | import("react").ComponentType<any> | import("@stitches/react/types/util").Function ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS> & {
45
46
  variants?: {
46
47
  [x: string]: {
47
48
  [x: string]: CSS;
@@ -93,7 +94,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
93
94
  transitions: {
94
95
  default: string;
95
96
  };
96
- }, import("@stitches/react/types/config").DefaultThemeMap, {}>>, css: <Composers extends (string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> | {
97
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>, css: <Composers extends (string | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> | import("@stitches/react/types/util").Function | {
97
98
  [name: string]: unknown;
98
99
  })[], CSS = import("@stitches/react/types/css-util").CSS<{}, {
99
100
  space: {
@@ -136,7 +137,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
136
137
  transitions: {
137
138
  default: string;
138
139
  };
139
- }, import("@stitches/react/types/config").DefaultThemeMap, {}>>(...composers: { [K in keyof Composers]: Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS> & {
140
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>(...composers: { [K in keyof Composers]: Composers[K] extends string | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> | import("@stitches/react/types/util").Function ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS> & {
140
141
  variants?: {
141
142
  [x: string]: {
142
143
  [x: string]: CSS;
package/entry/Root.js CHANGED
@@ -33,12 +33,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
33
33
  var jsx_runtime_1 = require("react/jsx-runtime");
34
34
  // @ts-ignore
35
35
  var views_1 = __importStar(require("@manifest/views"));
36
+ var dynamic_1 = require("../dynamic");
36
37
  var react_1 = require("react");
37
- var dev_ui_1 = require("../dev-ui");
38
38
  var routing_1 = require("../routing");
39
+ var DevUI = (0, dynamic_1.dynamic)(function () { return Promise.resolve().then(function () { return __importStar(require("../dev-ui/components/DevUI")); }); });
39
40
  function Root() {
40
41
  var route = (0, routing_1.useRoute)();
41
- return ((0, jsx_runtime_1.jsxs)(react_1.Fragment, { children: [process.devUI ? (0, jsx_runtime_1.jsx)(dev_ui_1.DevUI, {}, void 0) : null, (0, jsx_runtime_1.jsx)(views_1.App, { children: (0, jsx_runtime_1.jsx)(routing_1.Switch, { children: Object.entries(views_1.default).map(function (_a) {
42
+ return ((0, jsx_runtime_1.jsxs)(react_1.Fragment, { children: [process.devUI ? (0, jsx_runtime_1.jsx)(DevUI, {}, void 0) : null, (0, jsx_runtime_1.jsx)(views_1.App, { children: (0, jsx_runtime_1.jsx)(routing_1.Switch, { children: Object.entries(views_1.default).map(function (_a) {
42
43
  var _b, _c;
43
44
  var name = _a[0], Component = _a[1];
44
45
  return ((0, jsx_runtime_1.jsx)(routing_1.Route, __assign({ match: function (route) { var _a; return ((_a = route.data) === null || _a === void 0 ? void 0 : _a.view) === name; } }, { children: (0, jsx_runtime_1.jsx)(Component, __assign({}, (_c = (_b = route.data) === null || _b === void 0 ? void 0 : _b.viewData) === null || _c === void 0 ? void 0 : _c.data), void 0) }), name));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eddev",
3
- "version": "0.2.0-beta.13",
3
+ "version": "0.2.0-beta.14",
4
4
  "main": "./index.js",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { DefaultThemeMap } from "@stitches/react";
2
3
  import { ConfigType } from "@stitches/core/types/config";
3
4
  import { Properties as CSS } from "csstype";
@@ -656,7 +657,7 @@ export declare function createStitches<Prefix extends string = "", Media extends
656
657
  } & { [Scale_4 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })]: { [Token_2 in keyof (Theme & { [Scale_1 in keyof Responsive]: { [T_1 in keyof Responsive[Scale_1]]: string; }; })[Scale_4]]: import("@stitches/react/types/theme").Token<Extract<Token_2, string | number>, string, Extract<Scale_4, string | void>, "">; }; };
657
658
  reset: () => void;
658
659
  getCssText: () => string;
659
- css: <Composers extends (string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> | {
660
+ css: <Composers extends (string | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> | import("@stitches/react/types/util").Function | {
660
661
  [name: string]: unknown;
661
662
  })[], CSS_1 = import("@stitches/react/types/css-util").CSS<{
662
663
  initial: "";
@@ -779,7 +780,7 @@ export declare function createStitches<Prefix extends string = "", Media extends
779
780
  gridColumn: string;
780
781
  "--grid-columns": number;
781
782
  };
782
- }>>(...composers: { [K_1 in keyof Composers]: Composers[K_1] extends string | import("@stitches/react/types/util").Function | import("react").ExoticComponent<any> | import("react").JSXElementConstructor<any> ? Composers[K_1] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
783
+ }>>(...composers: { [K_1 in keyof Composers]: Composers[K_1] extends string | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> | import("@stitches/react/types/util").Function ? Composers[K_1] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
783
784
  variants?: {
784
785
  [x: string]: {
785
786
  [x: string]: CSS_1;
@@ -793,7 +794,7 @@ export declare function createStitches<Prefix extends string = "", Media extends
793
794
  } & CSS_1 & { [K2 in keyof Composers[K_1]]: K2 extends "compoundVariants" | "defaultVariants" | "variants" ? unknown : K2 extends keyof CSS_1 ? CSS_1[K2] : unknown; }; }) => import("@stitches/react/types/styled-component").CssComponent<import("@stitches/react/types/styled-component").StyledComponentType<Composers>, import("@stitches/react/types/styled-component").StyledComponentProps<Composers>, {
794
795
  initial: "";
795
796
  } & Media, CSS_1>;
796
- styled: <Type extends import("@stitches/react/types/util").Function | keyof JSX.IntrinsicElements | import("react").ComponentType<any>, Composers_1 extends (string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> | {
797
+ styled: <Type extends import("react").ComponentType<any> | keyof JSX.IntrinsicElements | import("@stitches/react/types/util").Function, Composers_1 extends (string | import("react").ComponentType<any> | import("@stitches/react/types/util").Function | {
797
798
  [name: string]: unknown;
798
799
  })[], CSS_2 = import("@stitches/react/types/css-util").CSS<{
799
800
  initial: "";
@@ -916,7 +917,7 @@ export declare function createStitches<Prefix extends string = "", Media extends
916
917
  gridColumn: string;
917
918
  "--grid-columns": number;
918
919
  };
919
- }>>(type: Type, ...composers: { [K_2 in keyof Composers_1]: Composers_1[K_2] extends string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> ? Composers_1[K_2] : import("@stitches/react/types/stitches").RemoveIndex<CSS_2> & {
920
+ }>>(type: Type, ...composers: { [K_2 in keyof Composers_1]: Composers_1[K_2] extends string | import("react").ComponentType<any> | import("@stitches/react/types/util").Function ? Composers_1[K_2] : import("@stitches/react/types/stitches").RemoveIndex<CSS_2> & {
920
921
  variants?: {
921
922
  [x: string]: {
922
923
  [x: string]: CSS_2;
@@ -1,6 +0,0 @@
1
- import { ReactNode } from "react";
2
- declare type Props = {
3
- renderBreakpoint: (breakpoint: string, index: number) => ReactNode;
4
- };
5
- export declare function BreakpointList(props: Props): JSX.Element;
6
- export {};
@@ -1,38 +0,0 @@
1
- "use strict";
2
- var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
3
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
4
- if (ar || !(i in from)) {
5
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
6
- ar[i] = from[i];
7
- }
8
- }
9
- return to.concat(ar || Array.prototype.slice.call(from));
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.BreakpointList = void 0;
13
- var jsx_runtime_1 = require("react/jsx-runtime");
14
- // @ts-ignore
15
- var _theme_1 = require("@theme");
16
- var theme_1 = require("../theme");
17
- function BreakpointList(props) {
18
- var breakpoints = __spreadArray(["initial"], _theme_1.originalConfig.breakpoints, true);
19
- return ((0, jsx_runtime_1.jsx)(Row, { children: breakpoints.map(function (breakpoint, index) {
20
- return (0, jsx_runtime_1.jsx)(Cell, { children: props.renderBreakpoint(breakpoint, index) }, void 0);
21
- }) }, void 0));
22
- }
23
- exports.BreakpointList = BreakpointList;
24
- var Row = (0, theme_1.styled)("div", {
25
- display: "flex",
26
- });
27
- var Cell = (0, theme_1.styled)("div", {
28
- flex: "1 1 auto",
29
- width: "100px",
30
- display: "flex",
31
- alignItems: "center",
32
- justifyContent: "center",
33
- borderLeft: "1px solid $colors$bgHoverLight",
34
- borderBottom: "1px solid $colors$bgHoverLight",
35
- "&:hover": {
36
- // backgroundColor: "$bgHoverLight",
37
- },
38
- });
@@ -1,15 +0,0 @@
1
- /// <reference types="react" />
2
- import { BreakpointArray, ResponsiveAtomCalc } from "../../style";
3
- declare type Props = {
4
- editableRange?: boolean;
5
- editableValues?: boolean;
6
- showBreakpointName?: boolean;
7
- showValues?: boolean;
8
- showRange?: boolean;
9
- data: ResponsiveAtomCalc;
10
- breakpoints: BreakpointArray;
11
- };
12
- export declare function ResponsiveScaleEditor(props: Props): JSX.Element;
13
- export declare const RESPONSIVE_COLUMN_WIDTH = "100px";
14
- export declare const RESPONSIVE_ROW_HEIGHT = "25px";
15
- export {};
@@ -1,51 +0,0 @@
1
- "use strict";
2
- var __assign = (this && this.__assign) || function () {
3
- __assign = Object.assign || function(t) {
4
- for (var s, i = 1, n = arguments.length; i < n; i++) {
5
- s = arguments[i];
6
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
- t[p] = s[p];
8
- }
9
- return t;
10
- };
11
- return __assign.apply(this, arguments);
12
- };
13
- Object.defineProperty(exports, "__esModule", { value: true });
14
- exports.RESPONSIVE_ROW_HEIGHT = exports.RESPONSIVE_COLUMN_WIDTH = exports.ResponsiveScaleEditor = void 0;
15
- var jsx_runtime_1 = require("react/jsx-runtime");
16
- var theme_1 = require("../theme");
17
- var NumberField_1 = require("./atoms/NumberField");
18
- var ResponsiveLerpControl_1 = require("./ResponsiveLerpControl");
19
- var Text_1 = require("./atoms/Text");
20
- var ToggleButton_1 = require("./atoms/ToggleButton");
21
- function ResponsiveScaleEditor(props) {
22
- return ((0, jsx_runtime_1.jsxs)(Wrapper, __assign({ css: { $$total: props.data.length } }, { children: [props.showBreakpointName && ((0, jsx_runtime_1.jsx)(Row, { children: props.data.map(function (item, i) {
23
- return ((0, jsx_runtime_1.jsx)(Col, __assign({ css: { textAlign: "center" } }, { children: (0, jsx_runtime_1.jsx)(ToggleButton_1.ToggleButton, { checked: item.defined, onChange: function (checked) { }, label: (0, jsx_runtime_1.jsx)(Text_1.Text, __assign({ as: "span", variant: "monoBold" }, { children: item.breakpoint }), void 0) }, void 0) }), void 0));
24
- }) }, void 0)), props.showRange && (0, jsx_runtime_1.jsx)(ResponsiveLerpControl_1.ResponsiveLerpControl, { data: props.data }, void 0), props.showValues && ((0, jsx_runtime_1.jsx)(Row, { children: props.data.map(function (item, i) {
25
- return ((0, jsx_runtime_1.jsx)(Col, { children: (0, jsx_runtime_1.jsx)(Start, { children: item.type === "px" ? (0, jsx_runtime_1.jsx)(NumberField_1.NumberField, { suffix: "px", value: item.value, onChange: function () { } }, void 0) : null }, void 0) }, void 0));
26
- }) }, void 0))] }), void 0));
27
- }
28
- exports.ResponsiveScaleEditor = ResponsiveScaleEditor;
29
- exports.RESPONSIVE_COLUMN_WIDTH = "100px";
30
- exports.RESPONSIVE_ROW_HEIGHT = "25px";
31
- var Wrapper = (0, theme_1.styled)("div", {
32
- position: "relative",
33
- width: "calc(".concat(exports.RESPONSIVE_COLUMN_WIDTH, " * $$total)"),
34
- });
35
- var Row = (0, theme_1.styled)("div", {
36
- display: "flex",
37
- });
38
- var Col = (0, theme_1.styled)("div", {
39
- position: "relative",
40
- width: exports.RESPONSIVE_COLUMN_WIDTH,
41
- height: exports.RESPONSIVE_ROW_HEIGHT,
42
- boxSizing: "border-box",
43
- borderLeft: "1px solid $colors$bgHover",
44
- display: "flex",
45
- alignItems: "center",
46
- justifyContent: "center",
47
- });
48
- var Start = (0, theme_1.styled)("div", {
49
- position: "absolute",
50
- left: 2,
51
- });