@elliemae/ds-label-value 3.0.0-next.1 → 3.0.0-next.5
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/DSLabelValue.js +49 -0
- package/dist/cjs/DSLabelValue.js.map +7 -0
- package/dist/cjs/components/Group.js +53 -0
- package/dist/cjs/components/Group.js.map +7 -0
- package/dist/cjs/components/Label.js +53 -0
- package/dist/cjs/components/Label.js.map +7 -0
- package/dist/cjs/components/Value.js +66 -0
- package/dist/cjs/components/Value.js.map +7 -0
- package/dist/cjs/components/Wrapper.js +69 -0
- package/dist/cjs/components/Wrapper.js.map +7 -0
- package/dist/cjs/components/defaultProps.js +58 -0
- package/dist/cjs/components/defaultProps.js.map +7 -0
- package/dist/cjs/components/props.js +71 -0
- package/dist/cjs/components/props.js.map +7 -0
- package/dist/cjs/index.js +40 -0
- package/dist/cjs/index.js.map +7 -0
- package/dist/esm/DSLabelValue.js +20 -0
- package/dist/esm/DSLabelValue.js.map +7 -0
- package/dist/esm/components/Group.js +24 -0
- package/dist/esm/components/Group.js.map +7 -0
- package/dist/esm/components/Label.js +24 -0
- package/dist/esm/components/Label.js.map +7 -0
- package/dist/esm/components/Value.js +37 -0
- package/dist/esm/components/Value.js.map +7 -0
- package/dist/esm/components/Wrapper.js +42 -0
- package/dist/esm/components/Wrapper.js.map +7 -0
- package/{esm → dist/esm}/components/defaultProps.js +15 -5
- package/dist/esm/components/defaultProps.js.map +7 -0
- package/dist/esm/components/props.js +46 -0
- package/dist/esm/components/props.js.map +7 -0
- package/dist/esm/index.js +18 -0
- package/dist/esm/index.js.map +7 -0
- package/package.json +40 -31
- package/cjs/DSLabelValue.js +0 -21
- package/cjs/components/Group.js +0 -47
- package/cjs/components/Label.js +0 -47
- package/cjs/components/Value.js +0 -55
- package/cjs/components/Wrapper.js +0 -62
- package/cjs/components/defaultProps.js +0 -31
- package/cjs/components/props.js +0 -47
- package/cjs/index.js +0 -18
- package/esm/DSLabelValue.js +0 -17
- package/esm/components/Group.js +0 -38
- package/esm/components/Label.js +0 -38
- package/esm/components/Value.js +0 -46
- package/esm/components/Wrapper.js +0 -52
- package/esm/components/props.js +0 -40
- package/esm/index.js +0 -5
- package/types/DSLabelValue.d.ts +0 -168
- package/types/components/Group.d.ts +0 -44
- package/types/components/Label.d.ts +0 -33
- package/types/components/Value.d.ts +0 -45
- package/types/components/Wrapper.d.ts +0 -54
- package/types/components/defaultProps.d.ts +0 -20
- package/types/components/props.d.ts +0 -78
- package/types/index.d.ts +0 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import React2 from "react";
|
|
3
|
+
import { describe } from "react-desc";
|
|
4
|
+
import { aggregatedClasses } from "@elliemae/ds-classnames";
|
|
5
|
+
import { labelProps } from "./props";
|
|
6
|
+
import { labelDefault } from "./defaultProps";
|
|
7
|
+
const blockName = "labelValue";
|
|
8
|
+
const LabelStyled = aggregatedClasses("div")(blockName, "label", ({ labelPosition, labelColor }) => ({
|
|
9
|
+
[labelPosition]: labelPosition,
|
|
10
|
+
[labelColor]: labelColor
|
|
11
|
+
}));
|
|
12
|
+
const Label = ({ children, position: labelPosition, color }) => /* @__PURE__ */ React2.createElement(LabelStyled, {
|
|
13
|
+
classProps: { labelPosition, color }
|
|
14
|
+
}, children);
|
|
15
|
+
Label.propTypes = labelProps;
|
|
16
|
+
Label.defaultProps = labelDefault;
|
|
17
|
+
const LabelWithSchema = describe(Label);
|
|
18
|
+
LabelWithSchema.propTypes = labelProps;
|
|
19
|
+
var Label_default = Label;
|
|
20
|
+
export {
|
|
21
|
+
LabelWithSchema,
|
|
22
|
+
Label_default as default
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=Label.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/components/Label.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe } from 'react-desc';\nimport { aggregatedClasses } from '@elliemae/ds-classnames';\nimport { labelProps } from './props';\nimport { labelDefault } from './defaultProps';\n\nconst blockName = 'labelValue';\n\nconst LabelStyled = aggregatedClasses('div')(\n blockName,\n 'label',\n ({ labelPosition, labelColor }) => ({\n [labelPosition]: labelPosition,\n [labelColor]: labelColor,\n }),\n);\n\nconst Label = ({ children, position: labelPosition, color }) => (\n <LabelStyled classProps={{ labelPosition, color }}>{children}</LabelStyled>\n);\n\nLabel.propTypes = labelProps;\nLabel.defaultProps = labelDefault;\n\nconst LabelWithSchema = describe(Label);\nLabelWithSchema.propTypes = labelProps;\n\nexport { LabelWithSchema };\nexport default Label;\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;AACA;AACA;AACA;AAEA,MAAM,YAAY;AAElB,MAAM,cAAc,kBAAkB,OACpC,WACA,SACA,CAAC,EAAE,eAAe,iBAAkB;AAAA,GACjC,gBAAgB;AAAA,GAChB,aAAa;AAAA;AAIlB,MAAM,QAAQ,CAAC,EAAE,UAAU,UAAU,eAAe,YAClD,qCAAC,aAAD;AAAA,EAAa,YAAY,EAAE,eAAe;AAAA,GAAU;AAGtD,MAAM,YAAY;AAClB,MAAM,eAAe;AAErB,MAAM,kBAAkB,SAAS;AACjC,gBAAgB,YAAY;AAG5B,IAAO,gBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import React2 from "react";
|
|
3
|
+
import { describe } from "react-desc";
|
|
4
|
+
import { aggregatedClasses } from "@elliemae/ds-classnames";
|
|
5
|
+
import { valueProps } from "./props";
|
|
6
|
+
import { valueDefault } from "./defaultProps";
|
|
7
|
+
const blockName = "labelValue";
|
|
8
|
+
const ValueStyled = aggregatedClasses("div")(blockName, "value", ({ size, valuePosition, valueColor, semibold }) => ({
|
|
9
|
+
[size]: size,
|
|
10
|
+
[valuePosition]: valuePosition,
|
|
11
|
+
[valueColor]: valueColor,
|
|
12
|
+
semibold
|
|
13
|
+
}));
|
|
14
|
+
const Value = ({
|
|
15
|
+
children,
|
|
16
|
+
position: valuePosition,
|
|
17
|
+
size,
|
|
18
|
+
color: valueColor,
|
|
19
|
+
semibold = false
|
|
20
|
+
}) => /* @__PURE__ */ React2.createElement(ValueStyled, {
|
|
21
|
+
classProps: {
|
|
22
|
+
size,
|
|
23
|
+
valuePosition,
|
|
24
|
+
valueColor,
|
|
25
|
+
semibold
|
|
26
|
+
}
|
|
27
|
+
}, /* @__PURE__ */ React2.createElement("span", null, children));
|
|
28
|
+
Value.propTypes = valueProps;
|
|
29
|
+
Value.defaultProps = valueDefault;
|
|
30
|
+
const ValueWithSchema = describe(Value);
|
|
31
|
+
ValueWithSchema.propTypes = valueProps;
|
|
32
|
+
var Value_default = Value;
|
|
33
|
+
export {
|
|
34
|
+
ValueWithSchema,
|
|
35
|
+
Value_default as default
|
|
36
|
+
};
|
|
37
|
+
//# sourceMappingURL=Value.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/components/Value.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe } from 'react-desc';\nimport { aggregatedClasses } from '@elliemae/ds-classnames';\nimport { valueProps } from './props';\nimport { valueDefault } from './defaultProps';\n\nconst blockName = 'labelValue';\n\nconst ValueStyled = aggregatedClasses('div')(\n blockName,\n 'value',\n ({ size, valuePosition, valueColor, semibold }) => ({\n [size]: size,\n [valuePosition]: valuePosition,\n [valueColor]: valueColor,\n semibold,\n }),\n);\n\nconst Value = ({\n children,\n position: valuePosition,\n size,\n color: valueColor,\n semibold = false,\n}) => (\n <ValueStyled\n classProps={{\n size,\n valuePosition,\n valueColor,\n semibold,\n }}\n >\n <span>{children}</span>\n </ValueStyled>\n);\n\nValue.propTypes = valueProps;\nValue.defaultProps = valueDefault;\n\nconst ValueWithSchema = describe(Value);\nValueWithSchema.propTypes = valueProps;\n\nexport { ValueWithSchema };\nexport default Value;\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;AACA;AACA;AACA;AAEA,MAAM,YAAY;AAElB,MAAM,cAAc,kBAAkB,OACpC,WACA,SACA,CAAC,EAAE,MAAM,eAAe,YAAY,eAAgB;AAAA,GACjD,OAAO;AAAA,GACP,gBAAgB;AAAA,GAChB,aAAa;AAAA,EACd;AAAA;AAIJ,MAAM,QAAQ,CAAC;AAAA,EACb;AAAA,EACA,UAAU;AAAA,EACV;AAAA,EACA,OAAO;AAAA,EACP,WAAW;AAAA,MAEX,qCAAC,aAAD;AAAA,EACE,YAAY;AAAA,IACV;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAAA,GAGF,qCAAC,QAAD,MAAO;AAIX,MAAM,YAAY;AAClB,MAAM,eAAe;AAErB,MAAM,kBAAkB,SAAS;AACjC,gBAAgB,YAAY;AAG5B,IAAO,gBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
3
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
4
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
5
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
6
|
+
var __spreadValues = (a, b) => {
|
|
7
|
+
for (var prop in b || (b = {}))
|
|
8
|
+
if (__hasOwnProp.call(b, prop))
|
|
9
|
+
__defNormalProp(a, prop, b[prop]);
|
|
10
|
+
if (__getOwnPropSymbols)
|
|
11
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
12
|
+
if (__propIsEnum.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
}
|
|
15
|
+
return a;
|
|
16
|
+
};
|
|
17
|
+
import * as React from "react";
|
|
18
|
+
import React2 from "react";
|
|
19
|
+
import { describe } from "react-desc";
|
|
20
|
+
import { aggregatedClasses } from "@elliemae/ds-classnames";
|
|
21
|
+
import { wrapperProps } from "./props";
|
|
22
|
+
import { wrapperDefault } from "./defaultProps";
|
|
23
|
+
const blockName = "labelValue";
|
|
24
|
+
const LabelValueWrapper = aggregatedClasses("div")(blockName, "label-value-wrapper", () => null);
|
|
25
|
+
const Container = aggregatedClasses("div")(blockName, "wrapper", ({ inverted }) => ({
|
|
26
|
+
inverted
|
|
27
|
+
}));
|
|
28
|
+
const Wrapper = ({ containerProps, children, className, icon, inverted }) => /* @__PURE__ */ React2.createElement(Container, {
|
|
29
|
+
classProps: { inverted }
|
|
30
|
+
}, icon, /* @__PURE__ */ React2.createElement(LabelValueWrapper, __spreadValues({
|
|
31
|
+
className
|
|
32
|
+
}, containerProps), children));
|
|
33
|
+
Wrapper.propTypes = wrapperProps;
|
|
34
|
+
Wrapper.defaultProps = wrapperDefault;
|
|
35
|
+
const WrapperWithSchema = describe(Wrapper);
|
|
36
|
+
WrapperWithSchema.propTypes = wrapperProps;
|
|
37
|
+
var Wrapper_default = Wrapper;
|
|
38
|
+
export {
|
|
39
|
+
WrapperWithSchema,
|
|
40
|
+
Wrapper_default as default
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=Wrapper.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/components/Wrapper.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe } from 'react-desc';\nimport { aggregatedClasses } from '@elliemae/ds-classnames';\nimport { wrapperProps } from './props';\nimport { wrapperDefault } from './defaultProps';\n\nconst blockName = 'labelValue';\n\nconst LabelValueWrapper = aggregatedClasses('div')(\n blockName,\n 'label-value-wrapper',\n () => null,\n);\nconst Container = aggregatedClasses('div')(\n blockName,\n 'wrapper',\n ({ inverted }) => ({\n inverted,\n }),\n);\n\nconst Wrapper = ({ containerProps, children, className, icon, inverted }) => (\n <Container classProps={{ inverted }}>\n {icon}\n <LabelValueWrapper className={className} {...containerProps}>\n {children}\n </LabelValueWrapper>\n </Container>\n);\n\nWrapper.propTypes = wrapperProps;\nWrapper.defaultProps = wrapperDefault;\n\nconst WrapperWithSchema = describe(Wrapper);\nWrapperWithSchema.propTypes = wrapperProps;\n\nexport { WrapperWithSchema };\nexport default Wrapper;\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;AAAA;ACAA;AACA;AACA;AACA;AACA;AAEA,MAAM,YAAY;AAElB,MAAM,oBAAoB,kBAAkB,OAC1C,WACA,uBACA,MAAM;AAER,MAAM,YAAY,kBAAkB,OAClC,WACA,WACA,CAAC,EAAE,eAAgB;AAAA,EACjB;AAAA;AAIJ,MAAM,UAAU,CAAC,EAAE,gBAAgB,UAAU,WAAW,MAAM,eAC5D,qCAAC,WAAD;AAAA,EAAW,YAAY,EAAE;AAAA,GACtB,MACD,qCAAC,mBAAD;AAAA,EAAmB;AAAA,GAA0B,iBAC1C;AAKP,QAAQ,YAAY;AACpB,QAAQ,eAAe;AAEvB,MAAM,oBAAoB,SAAS;AACnC,kBAAkB,YAAY;AAG9B,IAAO,kBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import {
|
|
3
|
+
orientationVariants,
|
|
4
|
+
position,
|
|
5
|
+
sizeVariants,
|
|
6
|
+
fontColor
|
|
7
|
+
} from "@elliemae/ds-shared/prop-types";
|
|
3
8
|
const groupDefault = {
|
|
4
9
|
inline: false,
|
|
5
10
|
orientation: orientationVariants.VERTICAL
|
|
@@ -16,9 +21,14 @@ const valueDefault = {
|
|
|
16
21
|
};
|
|
17
22
|
const wrapperDefault = {
|
|
18
23
|
containerProps: {},
|
|
19
|
-
className:
|
|
24
|
+
className: "",
|
|
20
25
|
icon: null,
|
|
21
26
|
inverted: false
|
|
22
27
|
};
|
|
23
|
-
|
|
24
|
-
|
|
28
|
+
export {
|
|
29
|
+
groupDefault,
|
|
30
|
+
labelDefault,
|
|
31
|
+
valueDefault,
|
|
32
|
+
wrapperDefault
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=defaultProps.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/components/defaultProps.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import {\n orientationVariants,\n position,\n sizeVariants,\n fontColor,\n} from '@elliemae/ds-shared/prop-types';\n\nexport const groupDefault = {\n inline: false,\n orientation: orientationVariants.VERTICAL,\n};\n\nexport const labelDefault = {\n position: position.LEFT,\n color: fontColor.NEUTRAL500,\n};\n\nexport const valueDefault = {\n position: position.LEFT,\n size: sizeVariants.M,\n color: fontColor.NEUTRAL700,\n semibold: false,\n};\n\nexport const wrapperDefault = {\n containerProps: {},\n className: '',\n icon: null,\n inverted: false,\n};\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOO,MAAM,eAAe;AAAA,EAC1B,QAAQ;AAAA,EACR,aAAa,oBAAoB;AAAA;AAG5B,MAAM,eAAe;AAAA,EAC1B,UAAU,SAAS;AAAA,EACnB,OAAO,UAAU;AAAA;AAGZ,MAAM,eAAe;AAAA,EAC1B,UAAU,SAAS;AAAA,EACnB,MAAM,aAAa;AAAA,EACnB,OAAO,UAAU;AAAA,EACjB,UAAU;AAAA;AAGL,MAAM,iBAAiB;AAAA,EAC5B,gBAAgB;AAAA,EAChB,WAAW;AAAA,EACX,MAAM;AAAA,EACN,UAAU;AAAA;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { PropTypes } from "react-desc";
|
|
3
|
+
import {
|
|
4
|
+
position,
|
|
5
|
+
fontColor,
|
|
6
|
+
sizeVariants
|
|
7
|
+
} from "@elliemae/ds-shared/prop-types";
|
|
8
|
+
const groupProps = {
|
|
9
|
+
children: PropTypes.element.description("The elements to be wrapped"),
|
|
10
|
+
inline: PropTypes.bool.description("If the label value should be inline"),
|
|
11
|
+
orientation: PropTypes.string.description("'vertical' or 'horizontal'")
|
|
12
|
+
};
|
|
13
|
+
const labelProps = {
|
|
14
|
+
children: PropTypes.oneOfType([
|
|
15
|
+
PropTypes.element,
|
|
16
|
+
PropTypes.string,
|
|
17
|
+
PropTypes.number
|
|
18
|
+
]).description("Label element").isRequired,
|
|
19
|
+
position: PropTypes.string.description("labels position").defaultValue(position.LEFT),
|
|
20
|
+
color: PropTypes.string.description("labels color").defaultValue(fontColor.NEUTRAL500)
|
|
21
|
+
};
|
|
22
|
+
const wrapperProps = {
|
|
23
|
+
containerProps: PropTypes.object.description("Set of Properties attached to the main container"),
|
|
24
|
+
className: PropTypes.string.description("html class attribute"),
|
|
25
|
+
icon: PropTypes.element.description("Icon to be attached near value"),
|
|
26
|
+
inverted: PropTypes.bool.description("Changes the position of the label").defaultValue(false),
|
|
27
|
+
children: PropTypes.element.description("label value").isRequired
|
|
28
|
+
};
|
|
29
|
+
const valueProps = {
|
|
30
|
+
children: PropTypes.oneOfType([
|
|
31
|
+
PropTypes.element,
|
|
32
|
+
PropTypes.string,
|
|
33
|
+
PropTypes.number
|
|
34
|
+
]).description("value element").isRequired,
|
|
35
|
+
size: PropTypes.func.description("values size").defaultValue(sizeVariants.M),
|
|
36
|
+
position: PropTypes.string.description("position of the value").defaultValue(position.LEFT),
|
|
37
|
+
color: PropTypes.string.description("value color").defaultValue(fontColor.NEUTRAL700),
|
|
38
|
+
semibold: PropTypes.bool.description("semibold or not").defaultValue(false)
|
|
39
|
+
};
|
|
40
|
+
export {
|
|
41
|
+
groupProps,
|
|
42
|
+
labelProps,
|
|
43
|
+
valueProps,
|
|
44
|
+
wrapperProps
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=props.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/components/props.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { PropTypes } from 'react-desc';\nimport {\n position,\n fontColor,\n sizeVariants,\n} from '@elliemae/ds-shared/prop-types';\n\nexport const groupProps = {\n /**\n * The elements to be wrapped\n */\n children: PropTypes.element.description('The elements to be wrapped'),\n /**\n * If the label value should be inline\n */\n inline: PropTypes.bool.description('If the label value should be inline'),\n /**\n * 'vertical' or 'horizontal'\n */\n orientation: PropTypes.string.description(\"'vertical' or 'horizontal'\"),\n};\n\nexport const labelProps = {\n children: PropTypes.oneOfType([\n PropTypes.element,\n PropTypes.string,\n PropTypes.number,\n ]).description('Label element').isRequired,\n position: PropTypes.string\n .description('labels position')\n .defaultValue(position.LEFT),\n color: PropTypes.string\n .description('labels color')\n .defaultValue(fontColor.NEUTRAL500),\n};\n\nexport const wrapperProps = {\n containerProps: PropTypes.object.description(\n 'Set of Properties attached to the main container',\n ),\n className: PropTypes.string.description('html class attribute'),\n icon: PropTypes.element.description('Icon to be attached near value'),\n inverted: PropTypes.bool\n .description('Changes the position of the label')\n .defaultValue(false),\n children: PropTypes.element.description('label value').isRequired,\n};\n\nexport const valueProps = {\n children: PropTypes.oneOfType([\n PropTypes.element,\n PropTypes.string,\n PropTypes.number,\n ]).description('value element').isRequired,\n size: PropTypes.func.description('values size').defaultValue(sizeVariants.M),\n position: PropTypes.string\n .description('position of the value')\n .defaultValue(position.LEFT),\n color: PropTypes.string\n .description('value color')\n .defaultValue(fontColor.NEUTRAL700),\n semibold: PropTypes.bool.description('semibold or not').defaultValue(false),\n};\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;AAAA;AAAA;AAAA;AAAA;AAMO,MAAM,aAAa;AAAA,EAIxB,UAAU,UAAU,QAAQ,YAAY;AAAA,EAIxC,QAAQ,UAAU,KAAK,YAAY;AAAA,EAInC,aAAa,UAAU,OAAO,YAAY;AAAA;AAGrC,MAAM,aAAa;AAAA,EACxB,UAAU,UAAU,UAAU;AAAA,IAC5B,UAAU;AAAA,IACV,UAAU;AAAA,IACV,UAAU;AAAA,KACT,YAAY,iBAAiB;AAAA,EAChC,UAAU,UAAU,OACjB,YAAY,mBACZ,aAAa,SAAS;AAAA,EACzB,OAAO,UAAU,OACd,YAAY,gBACZ,aAAa,UAAU;AAAA;AAGrB,MAAM,eAAe;AAAA,EAC1B,gBAAgB,UAAU,OAAO,YAC/B;AAAA,EAEF,WAAW,UAAU,OAAO,YAAY;AAAA,EACxC,MAAM,UAAU,QAAQ,YAAY;AAAA,EACpC,UAAU,UAAU,KACjB,YAAY,qCACZ,aAAa;AAAA,EAChB,UAAU,UAAU,QAAQ,YAAY,eAAe;AAAA;AAGlD,MAAM,aAAa;AAAA,EACxB,UAAU,UAAU,UAAU;AAAA,IAC5B,UAAU;AAAA,IACV,UAAU;AAAA,IACV,UAAU;AAAA,KACT,YAAY,iBAAiB;AAAA,EAChC,MAAM,UAAU,KAAK,YAAY,eAAe,aAAa,aAAa;AAAA,EAC1E,UAAU,UAAU,OACjB,YAAY,yBACZ,aAAa,SAAS;AAAA,EACzB,OAAO,UAAU,OACd,YAAY,eACZ,aAAa,UAAU;AAAA,EAC1B,UAAU,UAAU,KAAK,YAAY,mBAAmB,aAAa;AAAA;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import {
|
|
3
|
+
default as default2,
|
|
4
|
+
default as default3,
|
|
5
|
+
WrapperWithSchema,
|
|
6
|
+
GroupWithSchema,
|
|
7
|
+
LabelWithSchema,
|
|
8
|
+
ValueWithSchema
|
|
9
|
+
} from "./DSLabelValue";
|
|
10
|
+
export {
|
|
11
|
+
default3 as DSLabelValue,
|
|
12
|
+
GroupWithSchema,
|
|
13
|
+
LabelWithSchema,
|
|
14
|
+
ValueWithSchema,
|
|
15
|
+
WrapperWithSchema,
|
|
16
|
+
default2 as default
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/index.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export {\n default,\n default as DSLabelValue,\n WrapperWithSchema,\n GroupWithSchema,\n LabelWithSchema,\n ValueWithSchema,\n} from './DSLabelValue';\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,43 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-label-value",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Label value",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"module": "./dist/esm/index.js",
|
|
10
|
+
"main": "./dist/cjs/index.js",
|
|
11
|
+
"types": "./dist/types/index.d.ts",
|
|
9
12
|
"exports": {
|
|
10
13
|
".": {
|
|
11
|
-
"import": "./esm/index.js",
|
|
12
|
-
"require": "./cjs/index.js"
|
|
14
|
+
"import": "./dist/esm/index.js",
|
|
15
|
+
"require": "./dist/cjs/index.js"
|
|
13
16
|
},
|
|
14
17
|
"./DSLabelValue": {
|
|
15
|
-
"import": "./esm/DSLabelValue.js",
|
|
16
|
-
"require": "./cjs/DSLabelValue.js"
|
|
18
|
+
"import": "./dist/esm/DSLabelValue.js",
|
|
19
|
+
"require": "./dist/cjs/DSLabelValue.js"
|
|
17
20
|
},
|
|
18
21
|
"./components/Wrapper": {
|
|
19
|
-
"import": "./esm/components/Wrapper.js",
|
|
20
|
-
"require": "./cjs/components/Wrapper.js"
|
|
22
|
+
"import": "./dist/esm/components/Wrapper.js",
|
|
23
|
+
"require": "./dist/cjs/components/Wrapper.js"
|
|
21
24
|
},
|
|
22
25
|
"./components/Value": {
|
|
23
|
-
"import": "./esm/components/Value.js",
|
|
24
|
-
"require": "./cjs/components/Value.js"
|
|
26
|
+
"import": "./dist/esm/components/Value.js",
|
|
27
|
+
"require": "./dist/cjs/components/Value.js"
|
|
25
28
|
},
|
|
26
29
|
"./components/props": {
|
|
27
|
-
"import": "./esm/components/props.js",
|
|
28
|
-
"require": "./cjs/components/props.js"
|
|
30
|
+
"import": "./dist/esm/components/props.js",
|
|
31
|
+
"require": "./dist/cjs/components/props.js"
|
|
29
32
|
},
|
|
30
33
|
"./components/Label": {
|
|
31
|
-
"import": "./esm/components/Label.js",
|
|
32
|
-
"require": "./cjs/components/Label.js"
|
|
34
|
+
"import": "./dist/esm/components/Label.js",
|
|
35
|
+
"require": "./dist/cjs/components/Label.js"
|
|
33
36
|
},
|
|
34
37
|
"./components/Group": {
|
|
35
|
-
"import": "./esm/components/Group.js",
|
|
36
|
-
"require": "./cjs/components/Group.js"
|
|
38
|
+
"import": "./dist/esm/components/Group.js",
|
|
39
|
+
"require": "./dist/cjs/components/Group.js"
|
|
37
40
|
},
|
|
38
41
|
"./components/defaultProps": {
|
|
39
|
-
"import": "./esm/components/defaultProps.js",
|
|
40
|
-
"require": "./cjs/components/defaultProps.js"
|
|
42
|
+
"import": "./dist/esm/components/defaultProps.js",
|
|
43
|
+
"require": "./dist/cjs/components/defaultProps.js"
|
|
41
44
|
}
|
|
42
45
|
},
|
|
43
46
|
"sideEffects": [
|
|
@@ -49,19 +52,19 @@
|
|
|
49
52
|
"url": "https://git.elliemae.io/platform-ui/dimsum.git"
|
|
50
53
|
},
|
|
51
54
|
"engines": {
|
|
52
|
-
"
|
|
53
|
-
"node": ">=
|
|
55
|
+
"pnpm": ">=6",
|
|
56
|
+
"node": ">=16"
|
|
54
57
|
},
|
|
55
58
|
"author": "ICE MT",
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
59
|
+
"jestSonar": {
|
|
60
|
+
"sonar56x": true,
|
|
61
|
+
"reportPath": "reports",
|
|
62
|
+
"reportFile": "tests.xml",
|
|
63
|
+
"indent": 4
|
|
61
64
|
},
|
|
62
65
|
"dependencies": {
|
|
63
|
-
"@elliemae/ds-classnames": "3.0.0-next.
|
|
64
|
-
"@elliemae/ds-shared": "3.0.0-next.
|
|
66
|
+
"@elliemae/ds-classnames": "3.0.0-next.5",
|
|
67
|
+
"@elliemae/ds-shared": "3.0.0-next.5",
|
|
65
68
|
"react-desc": "~4.1.3"
|
|
66
69
|
},
|
|
67
70
|
"peerDependencies": {
|
|
@@ -71,7 +74,13 @@
|
|
|
71
74
|
},
|
|
72
75
|
"publishConfig": {
|
|
73
76
|
"access": "public",
|
|
74
|
-
"
|
|
75
|
-
|
|
77
|
+
"typeSafety": false
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"dev": "cross-env NODE_ENV=development node ../../scripts/build/build.mjs --watch",
|
|
81
|
+
"test": "node ../../scripts/testing/test.mjs",
|
|
82
|
+
"lint": "node ../../scripts/lint.mjs",
|
|
83
|
+
"dts": "node ../../scripts/dts.mjs",
|
|
84
|
+
"build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs"
|
|
76
85
|
}
|
|
77
86
|
}
|
package/cjs/DSLabelValue.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var Wrapper = require('./components/Wrapper.js');
|
|
6
|
-
var Group = require('./components/Group.js');
|
|
7
|
-
var Label = require('./components/Label.js');
|
|
8
|
-
var Value = require('./components/Value.js');
|
|
9
|
-
|
|
10
|
-
const DSLabelValue = Object.assign(Wrapper["default"], {
|
|
11
|
-
Group: Group["default"],
|
|
12
|
-
Wrapper: Wrapper["default"],
|
|
13
|
-
Label: Label["default"],
|
|
14
|
-
Value: Value["default"]
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
exports.WrapperWithSchema = Wrapper.WrapperWithSchema;
|
|
18
|
-
exports.GroupWithSchema = Group.GroupWithSchema;
|
|
19
|
-
exports.LabelWithSchema = Label.LabelWithSchema;
|
|
20
|
-
exports.ValueWithSchema = Value.ValueWithSchema;
|
|
21
|
-
exports["default"] = DSLabelValue;
|
package/cjs/components/Group.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
6
|
-
require('react');
|
|
7
|
-
var reactDesc = require('react-desc');
|
|
8
|
-
var dsClassnames = require('@elliemae/ds-classnames');
|
|
9
|
-
var props = require('./props.js');
|
|
10
|
-
var defaultProps = require('./defaultProps.js');
|
|
11
|
-
|
|
12
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
|
-
|
|
14
|
-
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
15
|
-
|
|
16
|
-
const blockName = 'labelValueGroup';
|
|
17
|
-
const WrapperGroup = dsClassnames.aggregatedClasses('div')(blockName, 'wrapper', _ref => {
|
|
18
|
-
let {
|
|
19
|
-
orientation,
|
|
20
|
-
inline
|
|
21
|
-
} = _ref;
|
|
22
|
-
return {
|
|
23
|
-
inline,
|
|
24
|
-
[orientation]: orientation
|
|
25
|
-
};
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
const Group = _ref2 => {
|
|
29
|
-
let {
|
|
30
|
-
children,
|
|
31
|
-
inline,
|
|
32
|
-
orientation
|
|
33
|
-
} = _ref2;
|
|
34
|
-
return /*#__PURE__*/_jsx__default["default"](WrapperGroup, {
|
|
35
|
-
classProps: {
|
|
36
|
-
orientation,
|
|
37
|
-
inline
|
|
38
|
-
}
|
|
39
|
-
}, void 0, children);
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
Group.defaultProps = defaultProps.groupDefault;
|
|
43
|
-
const GroupWithSchema = reactDesc.describe(Group);
|
|
44
|
-
GroupWithSchema.propTypes = props.groupProps;
|
|
45
|
-
|
|
46
|
-
exports.GroupWithSchema = GroupWithSchema;
|
|
47
|
-
exports["default"] = Group;
|
package/cjs/components/Label.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
6
|
-
require('react');
|
|
7
|
-
var reactDesc = require('react-desc');
|
|
8
|
-
var dsClassnames = require('@elliemae/ds-classnames');
|
|
9
|
-
var props = require('./props.js');
|
|
10
|
-
var defaultProps = require('./defaultProps.js');
|
|
11
|
-
|
|
12
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
|
-
|
|
14
|
-
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
15
|
-
|
|
16
|
-
const blockName = 'labelValue';
|
|
17
|
-
const LabelStyled = dsClassnames.aggregatedClasses('div')(blockName, 'label', _ref => {
|
|
18
|
-
let {
|
|
19
|
-
labelPosition,
|
|
20
|
-
labelColor
|
|
21
|
-
} = _ref;
|
|
22
|
-
return {
|
|
23
|
-
[labelPosition]: labelPosition,
|
|
24
|
-
[labelColor]: labelColor
|
|
25
|
-
};
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
const Label = _ref2 => {
|
|
29
|
-
let {
|
|
30
|
-
children,
|
|
31
|
-
position: labelPosition,
|
|
32
|
-
color
|
|
33
|
-
} = _ref2;
|
|
34
|
-
return /*#__PURE__*/_jsx__default["default"](LabelStyled, {
|
|
35
|
-
classProps: {
|
|
36
|
-
labelPosition,
|
|
37
|
-
color
|
|
38
|
-
}
|
|
39
|
-
}, void 0, children);
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
Label.defaultProps = defaultProps.labelDefault;
|
|
43
|
-
const LabelWithSchema = reactDesc.describe(Label);
|
|
44
|
-
LabelWithSchema.propTypes = props.labelProps;
|
|
45
|
-
|
|
46
|
-
exports.LabelWithSchema = LabelWithSchema;
|
|
47
|
-
exports["default"] = Label;
|
package/cjs/components/Value.js
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
6
|
-
require('react');
|
|
7
|
-
var reactDesc = require('react-desc');
|
|
8
|
-
var dsClassnames = require('@elliemae/ds-classnames');
|
|
9
|
-
var props = require('./props.js');
|
|
10
|
-
var defaultProps = require('./defaultProps.js');
|
|
11
|
-
|
|
12
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
|
-
|
|
14
|
-
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
15
|
-
|
|
16
|
-
const blockName = 'labelValue';
|
|
17
|
-
const ValueStyled = dsClassnames.aggregatedClasses('div')(blockName, 'value', _ref => {
|
|
18
|
-
let {
|
|
19
|
-
size,
|
|
20
|
-
valuePosition,
|
|
21
|
-
valueColor,
|
|
22
|
-
semibold
|
|
23
|
-
} = _ref;
|
|
24
|
-
return {
|
|
25
|
-
[size]: size,
|
|
26
|
-
[valuePosition]: valuePosition,
|
|
27
|
-
[valueColor]: valueColor,
|
|
28
|
-
semibold
|
|
29
|
-
};
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
const Value = _ref2 => {
|
|
33
|
-
let {
|
|
34
|
-
children,
|
|
35
|
-
position: valuePosition,
|
|
36
|
-
size,
|
|
37
|
-
color: valueColor,
|
|
38
|
-
semibold = false
|
|
39
|
-
} = _ref2;
|
|
40
|
-
return /*#__PURE__*/_jsx__default["default"](ValueStyled, {
|
|
41
|
-
classProps: {
|
|
42
|
-
size,
|
|
43
|
-
valuePosition,
|
|
44
|
-
valueColor,
|
|
45
|
-
semibold
|
|
46
|
-
}
|
|
47
|
-
}, void 0, /*#__PURE__*/_jsx__default["default"]("span", {}, void 0, children));
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
Value.defaultProps = defaultProps.valueDefault;
|
|
51
|
-
const ValueWithSchema = reactDesc.describe(Value);
|
|
52
|
-
ValueWithSchema.propTypes = props.valueProps;
|
|
53
|
-
|
|
54
|
-
exports.ValueWithSchema = ValueWithSchema;
|
|
55
|
-
exports["default"] = Value;
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
6
|
-
require('core-js/modules/esnext.iterator.constructor.js');
|
|
7
|
-
require('core-js/modules/esnext.iterator.filter.js');
|
|
8
|
-
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
9
|
-
require('core-js/modules/esnext.iterator.for-each.js');
|
|
10
|
-
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
11
|
-
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
12
|
-
require('react');
|
|
13
|
-
var reactDesc = require('react-desc');
|
|
14
|
-
var dsClassnames = require('@elliemae/ds-classnames');
|
|
15
|
-
var props = require('./props.js');
|
|
16
|
-
var defaultProps = require('./defaultProps.js');
|
|
17
|
-
var jsxRuntime = require('react/jsx-runtime');
|
|
18
|
-
|
|
19
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
20
|
-
|
|
21
|
-
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
22
|
-
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
23
|
-
|
|
24
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
25
|
-
|
|
26
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
27
|
-
const blockName = 'labelValue';
|
|
28
|
-
const LabelValueWrapper = dsClassnames.aggregatedClasses('div')(blockName, 'label-value-wrapper', () => null);
|
|
29
|
-
const Container = dsClassnames.aggregatedClasses('div')(blockName, 'wrapper', _ref => {
|
|
30
|
-
let {
|
|
31
|
-
inverted
|
|
32
|
-
} = _ref;
|
|
33
|
-
return {
|
|
34
|
-
inverted
|
|
35
|
-
};
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
const Wrapper = _ref2 => {
|
|
39
|
-
let {
|
|
40
|
-
containerProps,
|
|
41
|
-
children,
|
|
42
|
-
className,
|
|
43
|
-
icon,
|
|
44
|
-
inverted
|
|
45
|
-
} = _ref2;
|
|
46
|
-
return /*#__PURE__*/_jsx__default["default"](Container, {
|
|
47
|
-
classProps: {
|
|
48
|
-
inverted
|
|
49
|
-
}
|
|
50
|
-
}, void 0, icon, /*#__PURE__*/jsxRuntime.jsx(LabelValueWrapper, _objectSpread(_objectSpread({
|
|
51
|
-
className: className
|
|
52
|
-
}, containerProps), {}, {
|
|
53
|
-
children: children
|
|
54
|
-
})));
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
Wrapper.defaultProps = defaultProps.wrapperDefault;
|
|
58
|
-
const WrapperWithSchema = reactDesc.describe(Wrapper);
|
|
59
|
-
WrapperWithSchema.propTypes = props.wrapperProps;
|
|
60
|
-
|
|
61
|
-
exports.WrapperWithSchema = WrapperWithSchema;
|
|
62
|
-
exports["default"] = Wrapper;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var propTypes = require('@elliemae/ds-shared/prop-types');
|
|
6
|
-
|
|
7
|
-
const groupDefault = {
|
|
8
|
-
inline: false,
|
|
9
|
-
orientation: propTypes.orientationVariants.VERTICAL
|
|
10
|
-
};
|
|
11
|
-
const labelDefault = {
|
|
12
|
-
position: propTypes.position.LEFT,
|
|
13
|
-
color: propTypes.fontColor.NEUTRAL500
|
|
14
|
-
};
|
|
15
|
-
const valueDefault = {
|
|
16
|
-
position: propTypes.position.LEFT,
|
|
17
|
-
size: propTypes.sizeVariants.M,
|
|
18
|
-
color: propTypes.fontColor.NEUTRAL700,
|
|
19
|
-
semibold: false
|
|
20
|
-
};
|
|
21
|
-
const wrapperDefault = {
|
|
22
|
-
containerProps: {},
|
|
23
|
-
className: '',
|
|
24
|
-
icon: null,
|
|
25
|
-
inverted: false
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
exports.groupDefault = groupDefault;
|
|
29
|
-
exports.labelDefault = labelDefault;
|
|
30
|
-
exports.valueDefault = valueDefault;
|
|
31
|
-
exports.wrapperDefault = wrapperDefault;
|