@veracity/vui 4.1.0-alpha.381237.2603160943 → 4.1.0-alpha.381237.2603161102
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/label/theme.js +2 -1
- package/dist/label/theme.js.map +1 -1
- package/dist/popover/usePopover.d.ts +1 -1
- package/dist/popover/usePopover.d.ts.map +1 -1
- package/dist/select/selectButton.js +1 -1
- package/dist/select/selectButton.js.map +1 -1
- package/dist/select/theme.js +16 -4
- package/dist/select/theme.js.map +1 -1
- package/dist/theme/components.d.ts +5 -0
- package/dist/theme/defaultTheme.d.ts +5 -0
- package/package.json +1 -1
package/dist/label/theme.js
CHANGED
package/dist/label/theme.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.js","names":[],"sources":["../../src/label/theme.ts"],"sourcesContent":["const baseStyle = {\n helper: {\n ml: '8px',\n fontWeight: 400,\n },\n}\n\nconst defaultProps = {}\n\nconst sizes = {}\n\nconst variants = {}\n\nconst parts = ['helper']\n\nexport default {\n baseStyle,\n defaultProps,\n parts,\n sizes,\n variants,\n}\n"],"mappings":";AAAA,MAAM,YAAY,EAChB,QAAQ;CACN,IAAI;CACJ,YAAY;CACb,EACF;AAED,MAAM,eAAe,EAAE;AAEvB,MAAM,QAAQ,EAAE;AAEhB,MAAM,WAAW,EAAE;AAEnB,MAAM,QAAQ,CAAC,SAAS;AAExB,oBAAe;CACb;CACA;CACA;CACA;CACA;CACD"}
|
|
1
|
+
{"version":3,"file":"theme.js","names":[],"sources":["../../src/label/theme.ts"],"sourcesContent":["const baseStyle = {\n helper: {\n ml: '8px',\n fontWeight: 400,\n lineHeight: 1\n },\n}\n\nconst defaultProps = {}\n\nconst sizes = {}\n\nconst variants = {}\n\nconst parts = ['helper']\n\nexport default {\n baseStyle,\n defaultProps,\n parts,\n sizes,\n variants,\n}\n"],"mappings":";AAAA,MAAM,YAAY,EAChB,QAAQ;CACN,IAAI;CACJ,YAAY;CACZ,YAAY;CACb,EACF;AAED,MAAM,eAAe,EAAE;AAEvB,MAAM,QAAQ,EAAE;AAEhB,MAAM,WAAW,EAAE;AAEnB,MAAM,QAAQ,CAAC,SAAS;AAExB,oBAAe;CACb;CACA;CACA;CACA;CACA;CACD"}
|
|
@@ -17,9 +17,9 @@ type UsePopoverInternalProps = UsePopoverProps & {
|
|
|
17
17
|
declare function usePopover(props?: UsePopoverInternalProps): {
|
|
18
18
|
close: () => void;
|
|
19
19
|
context: {
|
|
20
|
-
placement: Placement$1;
|
|
21
20
|
x: number;
|
|
22
21
|
y: number;
|
|
22
|
+
placement: Placement$1;
|
|
23
23
|
strategy: Strategy;
|
|
24
24
|
middlewareData: MiddlewareData;
|
|
25
25
|
isPositioned: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"usePopover.d.ts","names":[],"sources":["../../src/popover/usePopover.ts"],"mappings":";;;;;;;;KAqBK,uBAAA,GAA0B,eAAA;EAC7B,MAAA;AAAA;;;;;AAHuD;iBAWjC,UAAA,CAAW,KAAA,GAAO,uBAAA
|
|
1
|
+
{"version":3,"file":"usePopover.d.ts","names":[],"sources":["../../src/popover/usePopover.ts"],"mappings":";;;;;;;;KAqBK,uBAAA,GAA0B,eAAA;EAC7B,MAAA;AAAA;;;;;AAHuD;iBAWjC,UAAA,CAAW,KAAA,GAAO,uBAAA;;;;;eAA4B,WAAA;;;;;;;;;;;;;;;;;;;;;;aA+G7B,WAAA;;sCAAW,aAAA;;;;;;;;;KAQxC,cAAA,GAAiB,UAAA,QAAkB,UAAA"}
|
|
@@ -40,7 +40,7 @@ const SelectButton = vui((props, ref) => {
|
|
|
40
40
|
borderColor: "energyRed.45",
|
|
41
41
|
hoverBorderColor: "energyRed.45"
|
|
42
42
|
} : void 0;
|
|
43
|
-
const textColor = "sandstone.10";
|
|
43
|
+
const textColor = valueText ? "sandstone.10" : "sandstone.55";
|
|
44
44
|
const iconColor = disabled ? "sandstone.10" : "seaBlue.main";
|
|
45
45
|
return /* @__PURE__ */ jsx(PopoverTrigger, {
|
|
46
46
|
as: LineButton,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"selectButton.js","names":[],"sources":["../../src/select/selectButton.tsx"],"sourcesContent":["import Button, { LineButton } from '../button'\nimport { useStyleConfig, vui } from '../core'\nimport { PopoverTrigger } from '../popover'\nimport { cs, ellipsisOverflow } from '../utils'\nimport { useSelectContext } from './context'\nimport type { SelectButtonProps } from './select.types'\n\n/**\n * Displays a custom button component, which opens a popover on click.\n * Text within the button is either selected value or placeholder.\n * Includes special styling for disabled, readOnly and invalid states.\n */\nexport const SelectButton = vui<'button', SelectButtonProps>((props, ref) => {\n const { className, ...rest } = props\n const { disabled, isInvalid, placeholder, readOnly, valueText } = useSelectContext() ?? {}\n const styles = useStyleConfig('Select', useSelectContext())\n\n const text = valueText || placeholder\n\n const disabledProps = disabled\n ? {\n activeBg: 'sandstone.79',\n cursor: 'not-allowed',\n backgroundColor: 'sandstone.79',\n borderColor: 'sandstone.79',\n hoverBg: 'sandstone.79',\n hoverBorderColor: 'sandstone.79',\n activeBorderColor: 'sandstone.79',\n }\n : undefined\n\n const readOnlyProps = readOnly\n ? {\n activeBg: 'sandstone.95',\n bg: 'sandstone.95',\n color: 'seaBlue.main',\n cursor: 'auto',\n disabled: true,\n hoverBg: 'sandstone.95',\n opacity: 1,\n }\n : undefined\n\n const isInvalidProps = isInvalid\n ? {\n borderColor: 'energyRed.45',\n hoverBorderColor: 'energyRed.45',\n }\n : undefined\n\n const textColor = 'sandstone.10'\n const iconColor = disabled ? 'sandstone.10' : 'seaBlue.main'\n\n return (\n <PopoverTrigger\n as={LineButton}\n bg=\"white\"\n className={cs('vui-selectButton', className)}\n disabled={disabled}\n focusRing={2}\n fontWeight=\"regular\"\n iconRight={<Button.Icon color={iconColor} ml=\"auto\" name=\"uiAngleDown\" />}\n isFullWidth\n px={1}\n ref={ref}\n text={\n <Button.Text color={textColor} {...ellipsisOverflow}>\n {text}\n </Button.Text>\n }\n userSelect=\"text\"\n {...styles.button}\n {...disabledProps}\n {...readOnlyProps}\n {...isInvalidProps}\n {...rest}\n />\n )\n})\n\nSelectButton.displayName = 'SelectButton'\nexport default SelectButton\n"],"mappings":";;;;;;;;;;;;;;;AAYA,MAAa,eAAe,KAAkC,OAAO,QAAQ;CAC3E,MAAM,EAAE,WAAW,GAAG,SAAS;CAC/B,MAAM,EAAE,UAAU,WAAW,aAAa,UAAU,cAAc,kBAAkB,IAAI,EAAE;CAC1F,MAAM,SAAS,eAAe,UAAU,kBAAkB,CAAC;CAE3D,MAAM,OAAO,aAAa;CAE1B,MAAM,gBAAgB,WAClB;EACE,UAAU;EACV,QAAQ;EACR,iBAAiB;EACjB,aAAa;EACb,SAAS;EACT,kBAAkB;EAClB,mBAAmB;EACpB,GACD;CAEJ,MAAM,gBAAgB,WAClB;EACE,UAAU;EACV,IAAI;EACJ,OAAO;EACP,QAAQ;EACR,UAAU;EACV,SAAS;EACT,SAAS;EACV,GACD;CAEJ,MAAM,iBAAiB,YACnB;EACE,aAAa;EACb,kBAAkB;EACnB,GACD;CAEJ,MAAM,YAAY;
|
|
1
|
+
{"version":3,"file":"selectButton.js","names":[],"sources":["../../src/select/selectButton.tsx"],"sourcesContent":["import Button, { LineButton } from '../button'\nimport { useStyleConfig, vui } from '../core'\nimport { PopoverTrigger } from '../popover'\nimport { cs, ellipsisOverflow } from '../utils'\nimport { useSelectContext } from './context'\nimport type { SelectButtonProps } from './select.types'\n\n/**\n * Displays a custom button component, which opens a popover on click.\n * Text within the button is either selected value or placeholder.\n * Includes special styling for disabled, readOnly and invalid states.\n */\nexport const SelectButton = vui<'button', SelectButtonProps>((props, ref) => {\n const { className, ...rest } = props\n const { disabled, isInvalid, placeholder, readOnly, valueText } = useSelectContext() ?? {}\n const styles = useStyleConfig('Select', useSelectContext())\n\n const text = valueText || placeholder\n\n const disabledProps = disabled\n ? {\n activeBg: 'sandstone.79',\n cursor: 'not-allowed',\n backgroundColor: 'sandstone.79',\n borderColor: 'sandstone.79',\n hoverBg: 'sandstone.79',\n hoverBorderColor: 'sandstone.79',\n activeBorderColor: 'sandstone.79',\n }\n : undefined\n\n const readOnlyProps = readOnly\n ? {\n activeBg: 'sandstone.95',\n bg: 'sandstone.95',\n color: 'seaBlue.main',\n cursor: 'auto',\n disabled: true,\n hoverBg: 'sandstone.95',\n opacity: 1,\n }\n : undefined\n\n const isInvalidProps = isInvalid\n ? {\n borderColor: 'energyRed.45',\n hoverBorderColor: 'energyRed.45',\n }\n : undefined\n\n const textColor = valueText ? 'sandstone.10' : 'sandstone.55'\n const iconColor = disabled ? 'sandstone.10' : 'seaBlue.main'\n\n return (\n <PopoverTrigger\n as={LineButton}\n bg=\"white\"\n className={cs('vui-selectButton', className)}\n disabled={disabled}\n focusRing={2}\n fontWeight=\"regular\"\n iconRight={<Button.Icon color={iconColor} ml=\"auto\" name=\"uiAngleDown\" />}\n isFullWidth\n px={1}\n ref={ref}\n text={\n <Button.Text color={textColor} {...ellipsisOverflow}>\n {text}\n </Button.Text>\n }\n userSelect=\"text\"\n {...styles.button}\n {...disabledProps}\n {...readOnlyProps}\n {...isInvalidProps}\n {...rest}\n />\n )\n})\n\nSelectButton.displayName = 'SelectButton'\nexport default SelectButton\n"],"mappings":";;;;;;;;;;;;;;;AAYA,MAAa,eAAe,KAAkC,OAAO,QAAQ;CAC3E,MAAM,EAAE,WAAW,GAAG,SAAS;CAC/B,MAAM,EAAE,UAAU,WAAW,aAAa,UAAU,cAAc,kBAAkB,IAAI,EAAE;CAC1F,MAAM,SAAS,eAAe,UAAU,kBAAkB,CAAC;CAE3D,MAAM,OAAO,aAAa;CAE1B,MAAM,gBAAgB,WAClB;EACE,UAAU;EACV,QAAQ;EACR,iBAAiB;EACjB,aAAa;EACb,SAAS;EACT,kBAAkB;EAClB,mBAAmB;EACpB,GACD;CAEJ,MAAM,gBAAgB,WAClB;EACE,UAAU;EACV,IAAI;EACJ,OAAO;EACP,QAAQ;EACR,UAAU;EACV,SAAS;EACT,SAAS;EACV,GACD;CAEJ,MAAM,iBAAiB,YACnB;EACE,aAAa;EACb,kBAAkB;EACnB,GACD;CAEJ,MAAM,YAAY,YAAY,iBAAiB;CAC/C,MAAM,YAAY,WAAW,iBAAiB;AAE9C,QACE,oBAAC;EACC,IAAI;EACJ,IAAG;EACH,WAAW,GAAG,oBAAoB,UAAU;EAClC;EACV,WAAW;EACX,YAAW;EACX,WAAW,oBAAC,OAAO;GAAK,OAAO;GAAW,IAAG;GAAO,MAAK;IAAgB;EACzE;EACA,IAAI;EACC;EACL,MACE,oBAAC,OAAO;GAAK,OAAO;GAAW,GAAI;aAChC;IACW;EAEhB,YAAW;EACX,GAAI,OAAO;EACX,GAAI;EACJ,GAAI;EACJ,GAAI;EACJ,GAAI;GACJ;EAEJ;AAEF,aAAa,cAAc"}
|
package/dist/select/theme.js
CHANGED
|
@@ -14,25 +14,37 @@ const parts = [
|
|
|
14
14
|
];
|
|
15
15
|
const sizes = {
|
|
16
16
|
sm: {
|
|
17
|
-
button: {
|
|
17
|
+
button: {
|
|
18
|
+
size: "sm",
|
|
19
|
+
fontSize: "sm"
|
|
20
|
+
},
|
|
18
21
|
group: { size: "sm" },
|
|
19
22
|
option: { size: "sm" },
|
|
20
23
|
label: { fontSize: "sm" }
|
|
21
24
|
},
|
|
22
25
|
md: {
|
|
23
|
-
button: {
|
|
26
|
+
button: {
|
|
27
|
+
size: "md",
|
|
28
|
+
fontSize: "md"
|
|
29
|
+
},
|
|
24
30
|
group: { size: "md" },
|
|
25
31
|
option: { size: "md" },
|
|
26
32
|
label: { fontSize: "md" }
|
|
27
33
|
},
|
|
28
34
|
lg: {
|
|
29
|
-
button: {
|
|
35
|
+
button: {
|
|
36
|
+
size: "lg",
|
|
37
|
+
fontSize: "md"
|
|
38
|
+
},
|
|
30
39
|
group: { size: "lg" },
|
|
31
40
|
option: { size: "lg" },
|
|
32
41
|
label: { fontSize: "md" }
|
|
33
42
|
},
|
|
34
43
|
xl: {
|
|
35
|
-
button: {
|
|
44
|
+
button: {
|
|
45
|
+
size: "xl",
|
|
46
|
+
fontSize: "lg"
|
|
47
|
+
},
|
|
36
48
|
group: { size: "xl" },
|
|
37
49
|
option: { size: "xl" },
|
|
38
50
|
label: { fontSize: "md" }
|
package/dist/select/theme.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.js","names":[],"sources":["../../src/select/theme.ts"],"sourcesContent":["const baseStyle = {}\n\nconst defaultProps = {\n size: 'lg',\n variant: 'outlined',\n}\n\nconst parts = ['container', 'button', 'content', 'group', 'option', 'label']\n\nconst sizes = {\n sm: {\n button: {\n size: 'sm',\n },\n group: {\n size: 'sm',\n },\n option: {\n size: 'sm',\n },\n label: {\n fontSize: 'sm',\n },\n },\n md: {\n button: {\n size: 'md',\n },\n group: {\n size: 'md',\n },\n option: {\n size: 'md',\n },\n label: {\n fontSize: 'md',\n },\n },\n lg: {\n button: {\n size: 'lg',\n },\n group: {\n size: 'lg',\n },\n option: {\n size: 'lg',\n },\n label: {\n fontSize: 'md',\n },\n },\n xl: {\n button: {\n size: 'xl',\n },\n group: {\n size: 'xl',\n },\n option: {\n size: 'xl',\n },\n label: {\n fontSize: 'md',\n },\n },\n}\n\nconst variants = {\n outlined: {\n button: {\n hoverBg: 'white',\n activeBg: 'white',\n borderColor: 'sandstone.60',\n hoverBorderColor: 'sandstone.60',\n },\n },\n text: {\n button: {\n hoverBg: 'white',\n activeBg: 'white',\n borderColor: 'transparent',\n hoverBorderColor: 'transparent',\n },\n },\n}\n\nexport default {\n baseStyle,\n defaultProps,\n parts,\n sizes,\n variants,\n}\n"],"mappings":";AAAA,MAAM,YAAY,EAAE;AAEpB,MAAM,eAAe;CACnB,MAAM;CACN,SAAS;CACV;AAED,MAAM,QAAQ;CAAC;CAAa;CAAU;CAAW;CAAS;CAAU;CAAQ;AAE5E,MAAM,QAAQ;CACZ,IAAI;EACF,QAAQ,
|
|
1
|
+
{"version":3,"file":"theme.js","names":[],"sources":["../../src/select/theme.ts"],"sourcesContent":["const baseStyle = {}\n\nconst defaultProps = {\n size: 'lg',\n variant: 'outlined',\n}\n\nconst parts = ['container', 'button', 'content', 'group', 'option', 'label']\n\nconst sizes = {\n sm: {\n button: {\n size: 'sm',\n fontSize: 'sm',\n },\n group: {\n size: 'sm',\n },\n option: {\n size: 'sm',\n },\n label: {\n fontSize: 'sm',\n },\n },\n md: {\n button: {\n size: 'md',\n fontSize: 'md',\n },\n group: {\n size: 'md',\n },\n option: {\n size: 'md',\n },\n label: {\n fontSize: 'md',\n },\n },\n lg: {\n button: {\n size: 'lg',\n fontSize: 'md',\n },\n group: {\n size: 'lg',\n },\n option: {\n size: 'lg',\n },\n label: {\n fontSize: 'md',\n },\n },\n xl: {\n button: {\n size: 'xl',\n fontSize: 'lg',\n },\n group: {\n size: 'xl',\n },\n option: {\n size: 'xl',\n },\n label: {\n fontSize: 'md',\n },\n },\n}\n\nconst variants = {\n outlined: {\n button: {\n hoverBg: 'white',\n activeBg: 'white',\n borderColor: 'sandstone.60',\n hoverBorderColor: 'sandstone.60',\n },\n },\n text: {\n button: {\n hoverBg: 'white',\n activeBg: 'white',\n borderColor: 'transparent',\n hoverBorderColor: 'transparent',\n },\n },\n}\n\nexport default {\n baseStyle,\n defaultProps,\n parts,\n sizes,\n variants,\n}\n"],"mappings":";AAAA,MAAM,YAAY,EAAE;AAEpB,MAAM,eAAe;CACnB,MAAM;CACN,SAAS;CACV;AAED,MAAM,QAAQ;CAAC;CAAa;CAAU;CAAW;CAAS;CAAU;CAAQ;AAE5E,MAAM,QAAQ;CACZ,IAAI;EACF,QAAQ;GACN,MAAM;GACN,UAAU;GACX;EACD,OAAO,EACL,MAAM,MACP;EACD,QAAQ,EACN,MAAM,MACP;EACD,OAAO,EACL,UAAU,MACX;EACF;CACD,IAAI;EACF,QAAQ;GACN,MAAM;GACN,UAAU;GACX;EACD,OAAO,EACL,MAAM,MACP;EACD,QAAQ,EACN,MAAM,MACP;EACD,OAAO,EACL,UAAU,MACX;EACF;CACD,IAAI;EACF,QAAQ;GACN,MAAM;GACN,UAAU;GACX;EACD,OAAO,EACL,MAAM,MACP;EACD,QAAQ,EACN,MAAM,MACP;EACD,OAAO,EACL,UAAU,MACX;EACF;CACD,IAAI;EACF,QAAQ;GACN,MAAM;GACN,UAAU;GACX;EACD,OAAO,EACL,MAAM,MACP;EACD,QAAQ,EACN,MAAM,MACP;EACD,OAAO,EACL,UAAU,MACX;EACF;CACF;AAED,MAAM,WAAW;CACf,UAAU,EACR,QAAQ;EACN,SAAS;EACT,UAAU;EACV,aAAa;EACb,kBAAkB;EACnB,EACF;CACD,MAAM,EACJ,QAAQ;EACN,SAAS;EACT,UAAU;EACV,aAAa;EACb,kBAAkB;EACnB,EACF;CACF;AAED,oBAAe;CACb;CACA;CACA;CACA;CACA;CACD"}
|
|
@@ -1196,6 +1196,7 @@ declare const _default: {
|
|
|
1196
1196
|
helper: {
|
|
1197
1197
|
ml: string;
|
|
1198
1198
|
fontWeight: number;
|
|
1199
|
+
lineHeight: number;
|
|
1199
1200
|
};
|
|
1200
1201
|
};
|
|
1201
1202
|
defaultProps: {};
|
|
@@ -1964,6 +1965,7 @@ declare const _default: {
|
|
|
1964
1965
|
sm: {
|
|
1965
1966
|
button: {
|
|
1966
1967
|
size: string;
|
|
1968
|
+
fontSize: string;
|
|
1967
1969
|
};
|
|
1968
1970
|
group: {
|
|
1969
1971
|
size: string;
|
|
@@ -1978,6 +1980,7 @@ declare const _default: {
|
|
|
1978
1980
|
md: {
|
|
1979
1981
|
button: {
|
|
1980
1982
|
size: string;
|
|
1983
|
+
fontSize: string;
|
|
1981
1984
|
};
|
|
1982
1985
|
group: {
|
|
1983
1986
|
size: string;
|
|
@@ -1992,6 +1995,7 @@ declare const _default: {
|
|
|
1992
1995
|
lg: {
|
|
1993
1996
|
button: {
|
|
1994
1997
|
size: string;
|
|
1998
|
+
fontSize: string;
|
|
1995
1999
|
};
|
|
1996
2000
|
group: {
|
|
1997
2001
|
size: string;
|
|
@@ -2006,6 +2010,7 @@ declare const _default: {
|
|
|
2006
2010
|
xl: {
|
|
2007
2011
|
button: {
|
|
2008
2012
|
size: string;
|
|
2013
|
+
fontSize: string;
|
|
2009
2014
|
};
|
|
2010
2015
|
group: {
|
|
2011
2016
|
size: string;
|
|
@@ -1714,6 +1714,7 @@ declare const defaultTheme: {
|
|
|
1714
1714
|
helper: {
|
|
1715
1715
|
ml: string;
|
|
1716
1716
|
fontWeight: number;
|
|
1717
|
+
lineHeight: number;
|
|
1717
1718
|
};
|
|
1718
1719
|
};
|
|
1719
1720
|
defaultProps: {};
|
|
@@ -2482,6 +2483,7 @@ declare const defaultTheme: {
|
|
|
2482
2483
|
sm: {
|
|
2483
2484
|
button: {
|
|
2484
2485
|
size: string;
|
|
2486
|
+
fontSize: string;
|
|
2485
2487
|
};
|
|
2486
2488
|
group: {
|
|
2487
2489
|
size: string;
|
|
@@ -2496,6 +2498,7 @@ declare const defaultTheme: {
|
|
|
2496
2498
|
md: {
|
|
2497
2499
|
button: {
|
|
2498
2500
|
size: string;
|
|
2501
|
+
fontSize: string;
|
|
2499
2502
|
};
|
|
2500
2503
|
group: {
|
|
2501
2504
|
size: string;
|
|
@@ -2510,6 +2513,7 @@ declare const defaultTheme: {
|
|
|
2510
2513
|
lg: {
|
|
2511
2514
|
button: {
|
|
2512
2515
|
size: string;
|
|
2516
|
+
fontSize: string;
|
|
2513
2517
|
};
|
|
2514
2518
|
group: {
|
|
2515
2519
|
size: string;
|
|
@@ -2524,6 +2528,7 @@ declare const defaultTheme: {
|
|
|
2524
2528
|
xl: {
|
|
2525
2529
|
button: {
|
|
2526
2530
|
size: string;
|
|
2531
|
+
fontSize: string;
|
|
2527
2532
|
};
|
|
2528
2533
|
group: {
|
|
2529
2534
|
size: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veracity/vui",
|
|
3
|
-
"version": "4.1.0-alpha.381237.
|
|
3
|
+
"version": "4.1.0-alpha.381237.2603161102",
|
|
4
4
|
"description": "Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Veracity",
|