@elliemae/ds-system 3.1.2 → 3.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ds-styled/index.js +1 -5
- package/dist/cjs/ds-styled/index.js.map +2 -2
- package/dist/cjs/ds-styled/types.js +0 -10
- package/dist/cjs/ds-styled/types.js.map +2 -2
- package/dist/cjs/ds-styled/utilities/color.js +2 -18
- package/dist/cjs/ds-styled/utilities/color.js.map +2 -2
- package/dist/cjs/ds-styled/utilities/index.js +4 -3
- package/dist/cjs/ds-styled/utilities/index.js.map +2 -2
- package/dist/esm/ds-styled/index.js +1 -5
- package/dist/esm/ds-styled/index.js.map +2 -2
- package/dist/esm/ds-styled/types.js +0 -6
- package/dist/esm/ds-styled/types.js.map +3 -3
- package/dist/esm/ds-styled/utilities/color.js +2 -18
- package/dist/esm/ds-styled/utilities/color.js.map +2 -2
- package/dist/esm/ds-styled/utilities/index.js +4 -3
- package/dist/esm/ds-styled/utilities/index.js.map +2 -2
- package/package.json +3 -3
|
@@ -22,7 +22,6 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
22
22
|
var ds_styled_exports = {};
|
|
23
23
|
__export(ds_styled_exports, {
|
|
24
24
|
boxShadows: () => import_system.boxShadow,
|
|
25
|
-
color: () => import_color.color,
|
|
26
25
|
flexboxes: () => import_system.flexboxes,
|
|
27
26
|
fontSize: () => import_system.fontSize,
|
|
28
27
|
grids: () => import_system.grids,
|
|
@@ -33,9 +32,6 @@ module.exports = __toCommonJS(ds_styled_exports);
|
|
|
33
32
|
var React = __toESM(require("react"));
|
|
34
33
|
__reExport(ds_styled_exports, require("./styled"), module.exports);
|
|
35
34
|
var import_system = require("@xstyled/system");
|
|
36
|
-
__reExport(ds_styled_exports, require("./utilities
|
|
37
|
-
__reExport(ds_styled_exports, require("./utilities/background"), module.exports);
|
|
38
|
-
__reExport(ds_styled_exports, require("./utilities/sizing"), module.exports);
|
|
39
|
-
var import_color = require("./utilities/color");
|
|
35
|
+
__reExport(ds_styled_exports, require("./utilities"), module.exports);
|
|
40
36
|
__reExport(ds_styled_exports, require("./types"), module.exports);
|
|
41
37
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/ds-styled/index.ts", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["export * from './styled';\
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;
|
|
4
|
+
"sourcesContent": ["export * from './styled';\nexport { layout, space, flexboxes, grids, boxShadow as boxShadows, fontSize } from '@xstyled/system';\nexport * from './utilities';\nexport * from './types';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,8BAAc,qBAAd;AACA,oBAAmF;AACnF,8BAAc,wBAFd;AAGA,8BAAc,oBAHd;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -4,10 +4,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __getProtoOf = Object.getPrototypeOf;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __export = (target, all) => {
|
|
8
|
-
for (var name in all)
|
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
-
};
|
|
11
7
|
var __copyProps = (to, from, except, desc) => {
|
|
12
8
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
9
|
for (let key of __getOwnPropNames(from))
|
|
@@ -19,12 +15,6 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
15
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
20
16
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
17
|
var types_exports = {};
|
|
22
|
-
__export(types_exports, {
|
|
23
|
-
LayoutProps: () => import_system.LayoutProps,
|
|
24
|
-
SizingProps: () => import_system.SizingProps,
|
|
25
|
-
SpaceProps: () => import_system.SpaceProps
|
|
26
|
-
});
|
|
27
18
|
module.exports = __toCommonJS(types_exports);
|
|
28
19
|
var React = __toESM(require("react"));
|
|
29
|
-
var import_system = require("@xstyled/system");
|
|
30
20
|
//# sourceMappingURL=types.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/ds-styled/types.ts", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-explicit-any */\nimport type {\n AnyStyledComponent,\n StyledComponentInnerAttrs,\n StyledComponentInnerComponent,\n StyledComponentInnerOtherProps,\n CSSObject,\n StyledComponent,\n StyledComponentPropsWithRef,\n ThemedStyledProps,\n Interpolation,\n InterpolationFunction,\n StyledConfig,\n} from 'styled-components';\nimport type { Theme as PuiTheme } from '@elliemae/pui-theme';\n\nexport interface Theme extends PuiTheme {\n components?: {\n [componentName: string]: {\n styleOverrides?: CSSObject;\n variants?: { props: Record<string, { toString: () => string }>; style: CSSObject }[];\n };\n };\n}\n\ntype Attrs<P, A extends Partial<P>, T> = ((props: ThemedStyledProps<P, T>) => A) | A;\n\ninterface DSStyledConfig {\n name: string | null;\n slot: string | null;\n}\n\ntype ThemedStyledFunctionBase<\n C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,\n T extends object,\n O extends object = Record<string, unknown>,\n A extends keyof any = never,\n> = <U extends object>(\n first:\n | TemplateStringsArray\n | CSSObject\n | InterpolationFunction<ThemedStyledProps<StyledComponentPropsWithRef<C> & O & U, T>>,\n ...rest: Array<Interpolation<ThemedStyledProps<StyledComponentPropsWithRef<C> & O & U, T>>>\n) => StyledComponent<C, T, O & U, A>;\n\ninterface ThemedStyledFunction<\n C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,\n T extends object,\n O extends object = Record<string, unknown>,\n A extends keyof any = never,\n> extends ThemedStyledFunctionBase<C, T, O, A> {\n // Fun thing: 'attrs' can also provide a polymorphic 'as' prop\n // My head already hurts enough so maybe later...\n attrs<\n U,\n NewA extends Partial<StyledComponentPropsWithRef<C> & U> & {\n [others: string]: any;\n } = any,\n >(\n attrs: Attrs<StyledComponentPropsWithRef<C> & U, NewA, T>,\n ): ThemedStyledFunction<C, T, O & NewA, A | keyof NewA>;\n\n withConfig: <Props extends O = O>(\n config: StyledConfig<StyledComponentPropsWithRef<C> & Props>,\n ) => ThemedStyledFunction<C, T, Props, A>;\n}\n\nexport type DSStyledFunction = <C extends AnyStyledComponent | keyof JSX.IntrinsicElements | React.ComponentType<any>>(\n tag: C,\n options?: DSStyledConfig,\n) => ThemedStyledFunction<\n C extends AnyStyledComponent ? StyledComponentInnerComponent<C> : C,\n Theme,\n C extends AnyStyledComponent ? StyledComponentInnerOtherProps<C> : unknown,\n C extends AnyStyledComponent ? StyledComponentInnerAttrs<C> : never\n>;\n\nexport type DSStyledObject = {\n [TTag in keyof JSX.IntrinsicElements]: ThemedStyledFunction<keyof JSX.IntrinsicElements, Theme>;\n};\n\nexport type DSStyledFunctionInternal = (\n ...args: Parameters<ReturnType<DSStyledFunction>>\n) => ReturnType<ReturnType<DSStyledFunction>>;\n\nexport type PropsWithTheme = { theme?: Theme } & Record<string, unknown>;\n\nexport type ThProps = Required<PropsWithTheme>;\n\nexport { SpaceProps, LayoutProps, SizingProps } from '@xstyled/system';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-explicit-any */\nimport type {\n AnyStyledComponent,\n StyledComponentInnerAttrs,\n StyledComponentInnerComponent,\n StyledComponentInnerOtherProps,\n CSSObject,\n StyledComponent,\n StyledComponentPropsWithRef,\n ThemedStyledProps,\n Interpolation,\n InterpolationFunction,\n StyledConfig,\n} from 'styled-components';\nimport type { Theme as PuiTheme } from '@elliemae/pui-theme';\n\nexport interface Theme extends PuiTheme {\n components?: {\n [componentName: string]: {\n styleOverrides?: CSSObject;\n variants?: { props: Record<string, { toString: () => string }>; style: CSSObject }[];\n };\n };\n}\n\ntype Attrs<P, A extends Partial<P>, T> = ((props: ThemedStyledProps<P, T>) => A) | A;\n\ninterface DSStyledConfig {\n name: string | null;\n slot: string | null;\n}\n\ntype ThemedStyledFunctionBase<\n C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,\n T extends object,\n O extends object = Record<string, unknown>,\n A extends keyof any = never,\n> = <U extends object>(\n first:\n | TemplateStringsArray\n | CSSObject\n | InterpolationFunction<ThemedStyledProps<StyledComponentPropsWithRef<C> & O & U, T>>,\n ...rest: Array<Interpolation<ThemedStyledProps<StyledComponentPropsWithRef<C> & O & U, T>>>\n) => StyledComponent<C, T, O & U, A>;\n\ninterface ThemedStyledFunction<\n C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,\n T extends object,\n O extends object = Record<string, unknown>,\n A extends keyof any = never,\n> extends ThemedStyledFunctionBase<C, T, O, A> {\n // Fun thing: 'attrs' can also provide a polymorphic 'as' prop\n // My head already hurts enough so maybe later...\n attrs<\n U,\n NewA extends Partial<StyledComponentPropsWithRef<C> & U> & {\n [others: string]: any;\n } = any,\n >(\n attrs: Attrs<StyledComponentPropsWithRef<C> & U, NewA, T>,\n ): ThemedStyledFunction<C, T, O & NewA, A | keyof NewA>;\n\n withConfig: <Props extends O = O>(\n config: StyledConfig<StyledComponentPropsWithRef<C> & Props>,\n ) => ThemedStyledFunction<C, T, Props, A>;\n}\n\nexport type DSStyledFunction = <C extends AnyStyledComponent | keyof JSX.IntrinsicElements | React.ComponentType<any>>(\n tag: C,\n options?: DSStyledConfig,\n) => ThemedStyledFunction<\n C extends AnyStyledComponent ? StyledComponentInnerComponent<C> : C,\n Theme,\n C extends AnyStyledComponent ? StyledComponentInnerOtherProps<C> : unknown,\n C extends AnyStyledComponent ? StyledComponentInnerAttrs<C> : never\n>;\n\nexport type DSStyledObject = {\n [TTag in keyof JSX.IntrinsicElements]: ThemedStyledFunction<keyof JSX.IntrinsicElements, Theme>;\n};\n\nexport type DSStyledFunctionInternal = (\n ...args: Parameters<ReturnType<DSStyledFunction>>\n) => ReturnType<ReturnType<DSStyledFunction>>;\n\nexport type PropsWithTheme = { theme?: Theme } & Record<string, unknown>;\n\nexport type ThProps = Required<PropsWithTheme>;\n\nexport type { SpaceProps, LayoutProps, SizingProps } from '@xstyled/system';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;AAAA;AAAA;ACAA,YAAuB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -29,27 +29,11 @@ var import_th = require("../../th");
|
|
|
29
29
|
function colorGetter(value) {
|
|
30
30
|
return (props) => `${import_th.th.color(value, value)(props)}`;
|
|
31
31
|
}
|
|
32
|
-
const cssColorGetter = (value) => {
|
|
33
|
-
if (!value)
|
|
34
|
-
return null;
|
|
35
|
-
if (typeof value === "string") {
|
|
36
|
-
return (props) => ({
|
|
37
|
-
color: colorGetter(value)(props)
|
|
38
|
-
});
|
|
39
|
-
}
|
|
40
|
-
return (props) => Object.keys(value).reduce((prev, current) => {
|
|
41
|
-
if (current === "_")
|
|
42
|
-
prev.color = colorGetter(value[current])(props);
|
|
43
|
-
else
|
|
44
|
-
prev[`&:${current}`] = { color: colorGetter(value[current])(props) };
|
|
45
|
-
return prev;
|
|
46
|
-
}, {});
|
|
47
|
-
};
|
|
48
32
|
colorGetter.meta = {};
|
|
49
33
|
const colorStyled = (0, import_system.style)({
|
|
50
34
|
prop: ["color"],
|
|
51
|
-
css:
|
|
52
|
-
|
|
35
|
+
css: ["color"],
|
|
36
|
+
themeGet: colorGetter
|
|
53
37
|
});
|
|
54
38
|
const color = (0, import_system.compose)(colorStyled);
|
|
55
39
|
//# sourceMappingURL=color.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../src/ds-styled/utilities/color.ts", "../../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["import { style, compose
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,
|
|
4
|
+
"sourcesContent": ["import { style, compose } from '@xstyled/system';\nimport { th } from '../../th';\nimport type { PropsWithTheme, ThProps } from '../types';\n\nfunction colorGetter(value: string) {\n return (props: PropsWithTheme): string => `${th.color(value, value)(props as ThProps)}`;\n}\n\ncolorGetter.meta = {};\n\nconst colorStyled = style({\n prop: ['color'],\n css: ['color'],\n themeGet: colorGetter,\n});\n\nexport const color = compose(colorStyled);\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,oBAA+B;AAC/B,gBAAmB;AAGnB,qBAAqB,OAAe;AAClC,SAAO,CAAC,UAAkC,GAAG,aAAG,MAAM,OAAO,KAAK,EAAE,KAAgB;AACtF;AAEA,YAAY,OAAO,CAAC;AAEpB,MAAM,cAAc,yBAAM;AAAA,EACxB,MAAM,CAAC,OAAO;AAAA,EACd,KAAK,CAAC,OAAO;AAAA,EACb,UAAU;AACZ,CAAC;AAEM,MAAM,QAAQ,2BAAQ,WAAW;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -18,10 +18,11 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
18
18
|
var utilities_exports = {};
|
|
19
19
|
module.exports = __toCommonJS(utilities_exports);
|
|
20
20
|
var React = __toESM(require("react"));
|
|
21
|
+
__reExport(utilities_exports, require("./background"), module.exports);
|
|
22
|
+
__reExport(utilities_exports, require("./border"), module.exports);
|
|
23
|
+
__reExport(utilities_exports, require("./color"), module.exports);
|
|
24
|
+
__reExport(utilities_exports, require("./helpers"), module.exports);
|
|
21
25
|
__reExport(utilities_exports, require("./magicCssTransform"), module.exports);
|
|
22
26
|
__reExport(utilities_exports, require("./resolvers"), module.exports);
|
|
23
|
-
__reExport(utilities_exports, require("./helpers"), module.exports);
|
|
24
27
|
__reExport(utilities_exports, require("./sizing"), module.exports);
|
|
25
|
-
__reExport(utilities_exports, require("./border"), module.exports);
|
|
26
|
-
__reExport(utilities_exports, require("./background"), module.exports);
|
|
27
28
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../src/ds-styled/utilities/index.ts", "../../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["export * from './
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;AAAA;AAAA;ACAA,YAAuB;ADAvB,8BAAc,
|
|
4
|
+
"sourcesContent": ["export * from './background';\nexport * from './border';\nexport * from './color';\nexport * from './helpers';\nexport * from './magicCssTransform';\nexport * from './resolvers';\nexport * from './sizing';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;AAAA;AAAA;ACAA,YAAuB;ADAvB,8BAAc,yBAAd;AACA,8BAAc,qBADd;AAEA,8BAAc,oBAFd;AAGA,8BAAc,sBAHd;AAIA,8BAAc,gCAJd;AAKA,8BAAc,wBALd;AAMA,8BAAc,qBANd;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
export * from "./styled";
|
|
3
3
|
import { layout, space, flexboxes, grids, boxShadow, fontSize } from "@xstyled/system";
|
|
4
|
-
export * from "./utilities
|
|
5
|
-
export * from "./utilities/background";
|
|
6
|
-
export * from "./utilities/sizing";
|
|
7
|
-
import { color } from "./utilities/color";
|
|
4
|
+
export * from "./utilities";
|
|
8
5
|
export * from "./types";
|
|
9
6
|
export {
|
|
10
7
|
boxShadow as boxShadows,
|
|
11
|
-
color,
|
|
12
8
|
flexboxes,
|
|
13
9
|
fontSize,
|
|
14
10
|
grids,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/ds-styled/index.ts"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './styled';\
|
|
5
|
-
"mappings": "AAAA;ACAA;
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './styled';\nexport { layout, space, flexboxes, grids, boxShadow as boxShadows, fontSize } from '@xstyled/system';\nexport * from './utilities';\nexport * from './types';\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;AACA;AACA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../../../../scripts/build/transpile/react-shim.js"
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n"
|
|
5
|
-
"mappings": "AAAA;
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": "AAAA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -4,27 +4,11 @@ import { th } from "../../th";
|
|
|
4
4
|
function colorGetter(value) {
|
|
5
5
|
return (props) => `${th.color(value, value)(props)}`;
|
|
6
6
|
}
|
|
7
|
-
const cssColorGetter = (value) => {
|
|
8
|
-
if (!value)
|
|
9
|
-
return null;
|
|
10
|
-
if (typeof value === "string") {
|
|
11
|
-
return (props) => ({
|
|
12
|
-
color: colorGetter(value)(props)
|
|
13
|
-
});
|
|
14
|
-
}
|
|
15
|
-
return (props) => Object.keys(value).reduce((prev, current) => {
|
|
16
|
-
if (current === "_")
|
|
17
|
-
prev.color = colorGetter(value[current])(props);
|
|
18
|
-
else
|
|
19
|
-
prev[`&:${current}`] = { color: colorGetter(value[current])(props) };
|
|
20
|
-
return prev;
|
|
21
|
-
}, {});
|
|
22
|
-
};
|
|
23
7
|
colorGetter.meta = {};
|
|
24
8
|
const colorStyled = style({
|
|
25
9
|
prop: ["color"],
|
|
26
|
-
css:
|
|
27
|
-
|
|
10
|
+
css: ["color"],
|
|
11
|
+
themeGet: colorGetter
|
|
28
12
|
});
|
|
29
13
|
const color = compose(colorStyled);
|
|
30
14
|
export {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../../src/ds-styled/utilities/color.ts"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { style, compose
|
|
5
|
-
"mappings": "AAAA;ACAA;AACA;AAGA,qBAAqB,OAAe;AAClC,SAAO,CAAC,UAAkC,GAAG,GAAG,MAAM,OAAO,KAAK,EAAE,KAAgB;AACtF;AAEA,
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { style, compose } from '@xstyled/system';\nimport { th } from '../../th';\nimport type { PropsWithTheme, ThProps } from '../types';\n\nfunction colorGetter(value: string) {\n return (props: PropsWithTheme): string => `${th.color(value, value)(props as ThProps)}`;\n}\n\ncolorGetter.meta = {};\n\nconst colorStyled = style({\n prop: ['color'],\n css: ['color'],\n themeGet: colorGetter,\n});\n\nexport const color = compose(colorStyled);\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;AAGA,qBAAqB,OAAe;AAClC,SAAO,CAAC,UAAkC,GAAG,GAAG,MAAM,OAAO,KAAK,EAAE,KAAgB;AACtF;AAEA,YAAY,OAAO,CAAC;AAEpB,MAAM,cAAc,MAAM;AAAA,EACxB,MAAM,CAAC,OAAO;AAAA,EACd,KAAK,CAAC,OAAO;AAAA,EACb,UAAU;AACZ,CAAC;AAEM,MAAM,QAAQ,QAAQ,WAAW;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
+
export * from "./background";
|
|
3
|
+
export * from "./border";
|
|
4
|
+
export * from "./color";
|
|
5
|
+
export * from "./helpers";
|
|
2
6
|
export * from "./magicCssTransform";
|
|
3
7
|
export * from "./resolvers";
|
|
4
|
-
export * from "./helpers";
|
|
5
8
|
export * from "./sizing";
|
|
6
|
-
export * from "./border";
|
|
7
|
-
export * from "./background";
|
|
8
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../../src/ds-styled/utilities/index.ts"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './
|
|
5
|
-
"mappings": "AAAA;ACAA;AACA;AACA;AACA;AACA;AACA;",
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './background';\nexport * from './border';\nexport * from './color';\nexport * from './helpers';\nexport * from './magicCssTransform';\nexport * from './resolvers';\nexport * from './sizing';\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-system",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - System",
|
|
6
6
|
"files": [
|
|
@@ -96,12 +96,12 @@
|
|
|
96
96
|
"polished": "~3.6.7"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@elliemae/pui-theme": "~2.
|
|
99
|
+
"@elliemae/pui-theme": "~2.6.0",
|
|
100
100
|
"@testing-library/jest-dom": "~5.16.2",
|
|
101
101
|
"styled-components": "~5.3.3"
|
|
102
102
|
},
|
|
103
103
|
"peerDependencies": {
|
|
104
|
-
"@elliemae/pui-theme": "^2.
|
|
104
|
+
"@elliemae/pui-theme": "^2.6.0",
|
|
105
105
|
"lodash": "^4.17.21",
|
|
106
106
|
"react": "~17.0.2",
|
|
107
107
|
"react-dom": "^17.0.2",
|