@elliemae/ds-separator 2.2.0 → 2.3.0-alpha.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/cjs/DSSeparator.js +92 -125
- package/cjs/DSSeparator.js.map +7 -0
- package/cjs/index.js +36 -11
- package/cjs/index.js.map +7 -0
- package/esm/DSSeparator.js +60 -111
- package/esm/DSSeparator.js.map +7 -0
- package/esm/index.js +7 -1
- package/esm/index.js.map +7 -0
- package/package.json +2 -2
package/cjs/DSSeparator.js
CHANGED
|
@@ -1,146 +1,113 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
var
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __reExport = (target, module2, copyDefault, desc) => {
|
|
13
|
+
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(module2))
|
|
15
|
+
if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
|
|
16
|
+
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return target;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (module2, isNodeMode) => {
|
|
21
|
+
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
|
|
22
|
+
};
|
|
23
|
+
var __toCommonJS = /* @__PURE__ */ ((cache) => {
|
|
24
|
+
return (module2, temp) => {
|
|
25
|
+
return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
|
|
26
|
+
};
|
|
27
|
+
})(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
|
|
28
|
+
var DSSeparator_exports = {};
|
|
29
|
+
__export(DSSeparator_exports, {
|
|
30
|
+
DSSeparator: () => DSSeparator,
|
|
31
|
+
DSSeparatorWithSchema: () => DSSeparatorWithSchema,
|
|
32
|
+
default: () => DSSeparator_default
|
|
33
|
+
});
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
var import_react = __toESM(require("react"));
|
|
36
|
+
var import_react_desc = require("react-desc");
|
|
37
|
+
var import_ds_classnames = require("@elliemae/ds-classnames");
|
|
38
|
+
const blockName = "separator";
|
|
26
39
|
const MARGIN_SIZE = {
|
|
27
|
-
S:
|
|
28
|
-
M:
|
|
29
|
-
L:
|
|
30
|
-
none:
|
|
40
|
+
S: "s",
|
|
41
|
+
M: "m",
|
|
42
|
+
L: "l",
|
|
43
|
+
none: "none"
|
|
31
44
|
};
|
|
32
45
|
const POSITION = {
|
|
33
|
-
INITIAL:
|
|
34
|
-
CENTER:
|
|
35
|
-
END:
|
|
46
|
+
INITIAL: "initial",
|
|
47
|
+
CENTER: "center",
|
|
48
|
+
END: "end"
|
|
36
49
|
};
|
|
37
|
-
const SeparatorWrapper =
|
|
38
|
-
|
|
50
|
+
const SeparatorWrapper = (0, import_ds_classnames.aggregatedClasses)("div")("separator-wrapper", null, ({ margin, orientation, dashed, position }) => ({
|
|
51
|
+
dashed,
|
|
52
|
+
[margin]: margin,
|
|
53
|
+
[orientation]: orientation,
|
|
54
|
+
[position]: position
|
|
55
|
+
}));
|
|
56
|
+
const Separator = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, null, ({ dashed, margin, orientation, type }) => ({
|
|
57
|
+
dashed,
|
|
58
|
+
[margin]: margin,
|
|
59
|
+
[orientation]: orientation,
|
|
60
|
+
[type]: type
|
|
61
|
+
}));
|
|
62
|
+
const types = ["category-level", "group-level", "non-form"];
|
|
63
|
+
const DSSeparator = ({
|
|
64
|
+
containerProps,
|
|
65
|
+
dashed,
|
|
66
|
+
margin,
|
|
67
|
+
orientation,
|
|
68
|
+
type,
|
|
69
|
+
position,
|
|
70
|
+
className,
|
|
71
|
+
style
|
|
72
|
+
}) => /* @__PURE__ */ import_react.default.createElement(SeparatorWrapper, {
|
|
73
|
+
...containerProps,
|
|
74
|
+
className,
|
|
75
|
+
classProps: {
|
|
39
76
|
margin,
|
|
40
77
|
orientation,
|
|
41
78
|
dashed,
|
|
42
79
|
position
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
[orientation]: orientation,
|
|
48
|
-
[position]: position
|
|
49
|
-
};
|
|
50
|
-
});
|
|
51
|
-
const Separator = dsClassnames.aggregatedClasses('div')(blockName, null, _ref2 => {
|
|
52
|
-
let {
|
|
80
|
+
},
|
|
81
|
+
style
|
|
82
|
+
}, /* @__PURE__ */ import_react.default.createElement(Separator, {
|
|
83
|
+
classProps: {
|
|
53
84
|
dashed,
|
|
54
85
|
margin,
|
|
55
86
|
orientation,
|
|
56
87
|
type
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
dashed,
|
|
60
|
-
[margin]: margin,
|
|
61
|
-
[orientation]: orientation,
|
|
62
|
-
[type]: type
|
|
63
|
-
};
|
|
64
|
-
});
|
|
65
|
-
const types = ['category-level', 'group-level', 'non-form'];
|
|
66
|
-
|
|
67
|
-
const DSSeparator = _ref3 => {
|
|
68
|
-
let {
|
|
69
|
-
containerProps,
|
|
70
|
-
dashed,
|
|
71
|
-
margin,
|
|
72
|
-
orientation,
|
|
73
|
-
type,
|
|
74
|
-
position,
|
|
75
|
-
className,
|
|
76
|
-
style
|
|
77
|
-
} = _ref3;
|
|
78
|
-
return /*#__PURE__*/jsxRuntime.jsx(SeparatorWrapper, _objectSpread(_objectSpread({}, containerProps), {}, {
|
|
79
|
-
className: className,
|
|
80
|
-
classProps: {
|
|
81
|
-
margin,
|
|
82
|
-
orientation,
|
|
83
|
-
dashed,
|
|
84
|
-
position
|
|
85
|
-
},
|
|
86
|
-
style: style,
|
|
87
|
-
children: /*#__PURE__*/_jsx__default["default"](Separator, {
|
|
88
|
-
classProps: {
|
|
89
|
-
dashed,
|
|
90
|
-
margin,
|
|
91
|
-
orientation,
|
|
92
|
-
type
|
|
93
|
-
}
|
|
94
|
-
})
|
|
95
|
-
}));
|
|
96
|
-
};
|
|
97
|
-
|
|
88
|
+
}
|
|
89
|
+
}));
|
|
98
90
|
DSSeparator.defaultProps = {
|
|
99
91
|
containerProps: {},
|
|
100
92
|
dashed: false,
|
|
101
93
|
margin: MARGIN_SIZE.S,
|
|
102
|
-
orientation:
|
|
103
|
-
type:
|
|
94
|
+
orientation: "horizontal",
|
|
95
|
+
type: "category-level",
|
|
104
96
|
position: POSITION.INITIAL
|
|
105
97
|
};
|
|
106
98
|
const props = {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* If the separator has to be dashed or solid
|
|
118
|
-
*/
|
|
119
|
-
dashed: reactDesc.PropTypes.bool.description('If the separator has to be dashed or solid'),
|
|
120
|
-
|
|
121
|
-
/**
|
|
122
|
-
* Amount of margin to be added to the separator
|
|
123
|
-
*/
|
|
124
|
-
margin: reactDesc.PropTypes.oneOf(['s', 'm', 'l', 'none']).description('Amount of margin to be added to the separator'),
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* Orientation 'horizontal' or 'vertical'
|
|
128
|
-
*/
|
|
129
|
-
orientation: reactDesc.PropTypes.string.description("Orientation 'horizontal' or 'vertical'"),
|
|
130
|
-
|
|
131
|
-
/**
|
|
132
|
-
* ['category-level', 'group-level', 'non-form']
|
|
133
|
-
*/
|
|
134
|
-
type: reactDesc.PropTypes.oneOf(types).description("['category-level', 'group-level', 'non-form']"),
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* ['initial', 'center', 'end']
|
|
138
|
-
*/
|
|
139
|
-
position: reactDesc.PropTypes.oneOf(['initial', 'center', 'end']).description("['initial', 'center', 'end']")
|
|
99
|
+
className: import_react_desc.PropTypes.string.description("class for separator"),
|
|
100
|
+
style: import_react_desc.PropTypes.object.description("style object for separator"),
|
|
101
|
+
containerProps: import_react_desc.PropTypes.object.description("Injected props to wrapper element of component"),
|
|
102
|
+
dashed: import_react_desc.PropTypes.bool.description("If the separator has to be dashed or solid"),
|
|
103
|
+
margin: import_react_desc.PropTypes.oneOf(["s", "m", "l", "none"]).description("Amount of margin to be added to the separator"),
|
|
104
|
+
orientation: import_react_desc.PropTypes.string.description("Orientation 'horizontal' or 'vertical'"),
|
|
105
|
+
type: import_react_desc.PropTypes.oneOf(types).description("['category-level', 'group-level', 'non-form']"),
|
|
106
|
+
position: import_react_desc.PropTypes.oneOf(["initial", "center", "end"]).description("['initial', 'center', 'end']")
|
|
140
107
|
};
|
|
141
|
-
|
|
108
|
+
DSSeparator.propTypes = props;
|
|
109
|
+
const DSSeparatorWithSchema = (0, import_react_desc.describe)(DSSeparator);
|
|
142
110
|
DSSeparatorWithSchema.propTypes = props;
|
|
143
|
-
|
|
144
|
-
exports
|
|
145
|
-
|
|
146
|
-
exports["default"] = DSSeparator;
|
|
111
|
+
var DSSeparator_default = DSSeparator;
|
|
112
|
+
module.exports = __toCommonJS(DSSeparator_exports);
|
|
113
|
+
//# sourceMappingURL=DSSeparator.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/DSSeparator.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
+
"sourcesContent": ["import React from 'react';\nimport { PropTypes, describe } from 'react-desc';\nimport { aggregatedClasses } from '@elliemae/ds-classnames';\n\nconst blockName = 'separator';\n\nconst MARGIN_SIZE = {\n S: 's',\n M: 'm',\n L: 'l',\n none: 'none',\n};\n\nconst POSITION = {\n INITIAL: 'initial',\n CENTER: 'center',\n END: 'end',\n};\n\nconst SeparatorWrapper = aggregatedClasses('div')(\n 'separator-wrapper',\n null,\n ({ margin, orientation, dashed, position }) => ({\n dashed,\n [margin]: margin,\n [orientation]: orientation,\n [position]: position,\n }),\n);\n\nconst Separator = aggregatedClasses('div')(\n blockName,\n null,\n ({ dashed, margin, orientation, type }) => ({\n dashed,\n [margin]: margin,\n [orientation]: orientation,\n [type]: type,\n }),\n);\n\nconst types = ['category-level', 'group-level', 'non-form'];\n\nconst DSSeparator = ({\n containerProps,\n dashed,\n margin,\n orientation,\n type,\n position,\n className,\n style,\n}) => (\n <SeparatorWrapper\n {...containerProps}\n className={className}\n classProps={{\n margin,\n orientation,\n dashed,\n position,\n }}\n style={style}\n >\n <Separator\n classProps={{\n dashed,\n margin,\n orientation,\n type,\n }}\n />\n </SeparatorWrapper>\n);\n\nDSSeparator.defaultProps = {\n containerProps: {},\n dashed: false,\n margin: MARGIN_SIZE.S,\n orientation: 'horizontal',\n type: 'category-level',\n position: POSITION.INITIAL,\n};\n\nconst props = {\n /** class for separator */\n className: PropTypes.string.description('class for separator'),\n /** style object for separator */\n style: PropTypes.object.description('style object for separator'),\n /** Injected props to wrapper element of component */\n containerProps: PropTypes.object.description(\n 'Injected props to wrapper element of component',\n ),\n /**\n * If the separator has to be dashed or solid\n */\n dashed: PropTypes.bool.description(\n 'If the separator has to be dashed or solid',\n ),\n /**\n * Amount of margin to be added to the separator\n */\n margin: PropTypes.oneOf(['s', 'm', 'l', 'none']).description(\n 'Amount of margin to be added to the separator',\n ),\n /**\n * Orientation 'horizontal' or 'vertical'\n */\n orientation: PropTypes.string.description(\n \"Orientation 'horizontal' or 'vertical'\",\n ),\n /**\n * ['category-level', 'group-level', 'non-form']\n */\n type: PropTypes.oneOf(types).description(\n \"['category-level', 'group-level', 'non-form']\",\n ),\n /**\n * ['initial', 'center', 'end']\n */\n position: PropTypes.oneOf(['initial', 'center', 'end']).description(\n \"['initial', 'center', 'end']\",\n ),\n};\n\nDSSeparator.propTypes = props;\n\nconst DSSeparatorWithSchema = describe(DSSeparator);\n\nDSSeparatorWithSchema.propTypes = props;\n\nexport { DSSeparator, DSSeparatorWithSchema };\nexport default DSSeparator;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAAkB;AAClB,wBAAoC;AACpC,2BAAkC;AAElC,MAAM,YAAY;AAElB,MAAM,cAAc;AAAA,EAClB,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,MAAM;AAAA;AAGR,MAAM,WAAW;AAAA,EACf,SAAS;AAAA,EACT,QAAQ;AAAA,EACR,KAAK;AAAA;AAGP,MAAM,mBAAmB,4CAAkB,OACzC,qBACA,MACA,CAAC,EAAE,QAAQ,aAAa,QAAQ,eAAgB;AAAA,EAC9C;AAAA,GACC,SAAS;AAAA,GACT,cAAc;AAAA,GACd,WAAW;AAAA;AAIhB,MAAM,YAAY,4CAAkB,OAClC,WACA,MACA,CAAC,EAAE,QAAQ,QAAQ,aAAa,WAAY;AAAA,EAC1C;AAAA,GACC,SAAS;AAAA,GACT,cAAc;AAAA,GACd,OAAO;AAAA;AAIZ,MAAM,QAAQ,CAAC,kBAAkB,eAAe;AAEhD,MAAM,cAAc,CAAC;AAAA,EACnB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,MAEA,mDAAC,kBAAD;AAAA,KACM;AAAA,EACJ;AAAA,EACA,YAAY;AAAA,IACV;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAAA,EAEF;AAAA,GAEA,mDAAC,WAAD;AAAA,EACE,YAAY;AAAA,IACV;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAAA;AAMR,YAAY,eAAe;AAAA,EACzB,gBAAgB;AAAA,EAChB,QAAQ;AAAA,EACR,QAAQ,YAAY;AAAA,EACpB,aAAa;AAAA,EACb,MAAM;AAAA,EACN,UAAU,SAAS;AAAA;AAGrB,MAAM,QAAQ;AAAA,EAEZ,WAAW,4BAAU,OAAO,YAAY;AAAA,EAExC,OAAO,4BAAU,OAAO,YAAY;AAAA,EAEpC,gBAAgB,4BAAU,OAAO,YAC/B;AAAA,EAKF,QAAQ,4BAAU,KAAK,YACrB;AAAA,EAKF,QAAQ,4BAAU,MAAM,CAAC,KAAK,KAAK,KAAK,SAAS,YAC/C;AAAA,EAKF,aAAa,4BAAU,OAAO,YAC5B;AAAA,EAKF,MAAM,4BAAU,MAAM,OAAO,YAC3B;AAAA,EAKF,UAAU,4BAAU,MAAM,CAAC,WAAW,UAAU,QAAQ,YACtD;AAAA;AAIJ,YAAY,YAAY;AAExB,MAAM,wBAAwB,gCAAS;AAEvC,sBAAsB,YAAY;AAGlC,IAAO,sBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/cjs/index.js
CHANGED
|
@@ -1,11 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __reExport = (target, module2, copyDefault, desc) => {
|
|
13
|
+
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(module2))
|
|
15
|
+
if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
|
|
16
|
+
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return target;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (module2, isNodeMode) => {
|
|
21
|
+
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
|
|
22
|
+
};
|
|
23
|
+
var __toCommonJS = /* @__PURE__ */ ((cache) => {
|
|
24
|
+
return (module2, temp) => {
|
|
25
|
+
return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
|
|
26
|
+
};
|
|
27
|
+
})(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
|
|
28
|
+
var src_exports = {};
|
|
29
|
+
__export(src_exports, {
|
|
30
|
+
default: () => import_DSSeparator.default
|
|
31
|
+
});
|
|
32
|
+
var React = __toESM(require("react"));
|
|
33
|
+
__reExport(src_exports, require("./DSSeparator"));
|
|
34
|
+
var import_DSSeparator = __toESM(require("./DSSeparator"));
|
|
35
|
+
module.exports = __toCommonJS(src_exports);
|
|
36
|
+
//# sourceMappingURL=index.js.map
|
package/cjs/index.js.map
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/index.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
+
"sourcesContent": ["export * from './DSSeparator';\nexport { default } from './DSSeparator';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,wBAAc;AACd,yBAAwB;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/esm/DSSeparator.js
CHANGED
|
@@ -1,135 +1,84 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
7
|
-
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
8
|
-
import 'react';
|
|
9
|
-
import { PropTypes, describe } from 'react-desc';
|
|
10
|
-
import { aggregatedClasses } from '@elliemae/ds-classnames';
|
|
11
|
-
import { jsx } from 'react/jsx-runtime';
|
|
12
|
-
|
|
13
|
-
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; }
|
|
14
|
-
|
|
15
|
-
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(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; }
|
|
16
|
-
const blockName = 'separator';
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import React2 from "react";
|
|
3
|
+
import { PropTypes, describe } from "react-desc";
|
|
4
|
+
import { aggregatedClasses } from "@elliemae/ds-classnames";
|
|
5
|
+
const blockName = "separator";
|
|
17
6
|
const MARGIN_SIZE = {
|
|
18
|
-
S:
|
|
19
|
-
M:
|
|
20
|
-
L:
|
|
21
|
-
none:
|
|
7
|
+
S: "s",
|
|
8
|
+
M: "m",
|
|
9
|
+
L: "l",
|
|
10
|
+
none: "none"
|
|
22
11
|
};
|
|
23
12
|
const POSITION = {
|
|
24
|
-
INITIAL:
|
|
25
|
-
CENTER:
|
|
26
|
-
END:
|
|
13
|
+
INITIAL: "initial",
|
|
14
|
+
CENTER: "center",
|
|
15
|
+
END: "end"
|
|
27
16
|
};
|
|
28
|
-
const SeparatorWrapper = aggregatedClasses(
|
|
29
|
-
|
|
17
|
+
const SeparatorWrapper = aggregatedClasses("div")("separator-wrapper", null, ({ margin, orientation, dashed, position }) => ({
|
|
18
|
+
dashed,
|
|
19
|
+
[margin]: margin,
|
|
20
|
+
[orientation]: orientation,
|
|
21
|
+
[position]: position
|
|
22
|
+
}));
|
|
23
|
+
const Separator = aggregatedClasses("div")(blockName, null, ({ dashed, margin, orientation, type }) => ({
|
|
24
|
+
dashed,
|
|
25
|
+
[margin]: margin,
|
|
26
|
+
[orientation]: orientation,
|
|
27
|
+
[type]: type
|
|
28
|
+
}));
|
|
29
|
+
const types = ["category-level", "group-level", "non-form"];
|
|
30
|
+
const DSSeparator = ({
|
|
31
|
+
containerProps,
|
|
32
|
+
dashed,
|
|
33
|
+
margin,
|
|
34
|
+
orientation,
|
|
35
|
+
type,
|
|
36
|
+
position,
|
|
37
|
+
className,
|
|
38
|
+
style
|
|
39
|
+
}) => /* @__PURE__ */ React2.createElement(SeparatorWrapper, {
|
|
40
|
+
...containerProps,
|
|
41
|
+
className,
|
|
42
|
+
classProps: {
|
|
30
43
|
margin,
|
|
31
44
|
orientation,
|
|
32
45
|
dashed,
|
|
33
46
|
position
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
[orientation]: orientation,
|
|
39
|
-
[position]: position
|
|
40
|
-
};
|
|
41
|
-
});
|
|
42
|
-
const Separator = aggregatedClasses('div')(blockName, null, _ref2 => {
|
|
43
|
-
let {
|
|
47
|
+
},
|
|
48
|
+
style
|
|
49
|
+
}, /* @__PURE__ */ React2.createElement(Separator, {
|
|
50
|
+
classProps: {
|
|
44
51
|
dashed,
|
|
45
52
|
margin,
|
|
46
53
|
orientation,
|
|
47
54
|
type
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
dashed,
|
|
51
|
-
[margin]: margin,
|
|
52
|
-
[orientation]: orientation,
|
|
53
|
-
[type]: type
|
|
54
|
-
};
|
|
55
|
-
});
|
|
56
|
-
const types = ['category-level', 'group-level', 'non-form'];
|
|
57
|
-
|
|
58
|
-
const DSSeparator = _ref3 => {
|
|
59
|
-
let {
|
|
60
|
-
containerProps,
|
|
61
|
-
dashed,
|
|
62
|
-
margin,
|
|
63
|
-
orientation,
|
|
64
|
-
type,
|
|
65
|
-
position,
|
|
66
|
-
className,
|
|
67
|
-
style
|
|
68
|
-
} = _ref3;
|
|
69
|
-
return /*#__PURE__*/jsx(SeparatorWrapper, _objectSpread(_objectSpread({}, containerProps), {}, {
|
|
70
|
-
className: className,
|
|
71
|
-
classProps: {
|
|
72
|
-
margin,
|
|
73
|
-
orientation,
|
|
74
|
-
dashed,
|
|
75
|
-
position
|
|
76
|
-
},
|
|
77
|
-
style: style,
|
|
78
|
-
children: /*#__PURE__*/_jsx(Separator, {
|
|
79
|
-
classProps: {
|
|
80
|
-
dashed,
|
|
81
|
-
margin,
|
|
82
|
-
orientation,
|
|
83
|
-
type
|
|
84
|
-
}
|
|
85
|
-
})
|
|
86
|
-
}));
|
|
87
|
-
};
|
|
88
|
-
|
|
55
|
+
}
|
|
56
|
+
}));
|
|
89
57
|
DSSeparator.defaultProps = {
|
|
90
58
|
containerProps: {},
|
|
91
59
|
dashed: false,
|
|
92
60
|
margin: MARGIN_SIZE.S,
|
|
93
|
-
orientation:
|
|
94
|
-
type:
|
|
61
|
+
orientation: "horizontal",
|
|
62
|
+
type: "category-level",
|
|
95
63
|
position: POSITION.INITIAL
|
|
96
64
|
};
|
|
97
65
|
const props = {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
/** Injected props to wrapper element of component */
|
|
105
|
-
containerProps: PropTypes.object.description('Injected props to wrapper element of component'),
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* If the separator has to be dashed or solid
|
|
109
|
-
*/
|
|
110
|
-
dashed: PropTypes.bool.description('If the separator has to be dashed or solid'),
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* Amount of margin to be added to the separator
|
|
114
|
-
*/
|
|
115
|
-
margin: PropTypes.oneOf(['s', 'm', 'l', 'none']).description('Amount of margin to be added to the separator'),
|
|
116
|
-
|
|
117
|
-
/**
|
|
118
|
-
* Orientation 'horizontal' or 'vertical'
|
|
119
|
-
*/
|
|
66
|
+
className: PropTypes.string.description("class for separator"),
|
|
67
|
+
style: PropTypes.object.description("style object for separator"),
|
|
68
|
+
containerProps: PropTypes.object.description("Injected props to wrapper element of component"),
|
|
69
|
+
dashed: PropTypes.bool.description("If the separator has to be dashed or solid"),
|
|
70
|
+
margin: PropTypes.oneOf(["s", "m", "l", "none"]).description("Amount of margin to be added to the separator"),
|
|
120
71
|
orientation: PropTypes.string.description("Orientation 'horizontal' or 'vertical'"),
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* ['category-level', 'group-level', 'non-form']
|
|
124
|
-
*/
|
|
125
72
|
type: PropTypes.oneOf(types).description("['category-level', 'group-level', 'non-form']"),
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* ['initial', 'center', 'end']
|
|
129
|
-
*/
|
|
130
|
-
position: PropTypes.oneOf(['initial', 'center', 'end']).description("['initial', 'center', 'end']")
|
|
73
|
+
position: PropTypes.oneOf(["initial", "center", "end"]).description("['initial', 'center', 'end']")
|
|
131
74
|
};
|
|
75
|
+
DSSeparator.propTypes = props;
|
|
132
76
|
const DSSeparatorWithSchema = describe(DSSeparator);
|
|
133
77
|
DSSeparatorWithSchema.propTypes = props;
|
|
134
|
-
|
|
135
|
-
export {
|
|
78
|
+
var DSSeparator_default = DSSeparator;
|
|
79
|
+
export {
|
|
80
|
+
DSSeparator,
|
|
81
|
+
DSSeparatorWithSchema,
|
|
82
|
+
DSSeparator_default as default
|
|
83
|
+
};
|
|
84
|
+
//# sourceMappingURL=DSSeparator.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/DSSeparator.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { PropTypes, describe } from 'react-desc';\nimport { aggregatedClasses } from '@elliemae/ds-classnames';\n\nconst blockName = 'separator';\n\nconst MARGIN_SIZE = {\n S: 's',\n M: 'm',\n L: 'l',\n none: 'none',\n};\n\nconst POSITION = {\n INITIAL: 'initial',\n CENTER: 'center',\n END: 'end',\n};\n\nconst SeparatorWrapper = aggregatedClasses('div')(\n 'separator-wrapper',\n null,\n ({ margin, orientation, dashed, position }) => ({\n dashed,\n [margin]: margin,\n [orientation]: orientation,\n [position]: position,\n }),\n);\n\nconst Separator = aggregatedClasses('div')(\n blockName,\n null,\n ({ dashed, margin, orientation, type }) => ({\n dashed,\n [margin]: margin,\n [orientation]: orientation,\n [type]: type,\n }),\n);\n\nconst types = ['category-level', 'group-level', 'non-form'];\n\nconst DSSeparator = ({\n containerProps,\n dashed,\n margin,\n orientation,\n type,\n position,\n className,\n style,\n}) => (\n <SeparatorWrapper\n {...containerProps}\n className={className}\n classProps={{\n margin,\n orientation,\n dashed,\n position,\n }}\n style={style}\n >\n <Separator\n classProps={{\n dashed,\n margin,\n orientation,\n type,\n }}\n />\n </SeparatorWrapper>\n);\n\nDSSeparator.defaultProps = {\n containerProps: {},\n dashed: false,\n margin: MARGIN_SIZE.S,\n orientation: 'horizontal',\n type: 'category-level',\n position: POSITION.INITIAL,\n};\n\nconst props = {\n /** class for separator */\n className: PropTypes.string.description('class for separator'),\n /** style object for separator */\n style: PropTypes.object.description('style object for separator'),\n /** Injected props to wrapper element of component */\n containerProps: PropTypes.object.description(\n 'Injected props to wrapper element of component',\n ),\n /**\n * If the separator has to be dashed or solid\n */\n dashed: PropTypes.bool.description(\n 'If the separator has to be dashed or solid',\n ),\n /**\n * Amount of margin to be added to the separator\n */\n margin: PropTypes.oneOf(['s', 'm', 'l', 'none']).description(\n 'Amount of margin to be added to the separator',\n ),\n /**\n * Orientation 'horizontal' or 'vertical'\n */\n orientation: PropTypes.string.description(\n \"Orientation 'horizontal' or 'vertical'\",\n ),\n /**\n * ['category-level', 'group-level', 'non-form']\n */\n type: PropTypes.oneOf(types).description(\n \"['category-level', 'group-level', 'non-form']\",\n ),\n /**\n * ['initial', 'center', 'end']\n */\n position: PropTypes.oneOf(['initial', 'center', 'end']).description(\n \"['initial', 'center', 'end']\",\n ),\n};\n\nDSSeparator.propTypes = props;\n\nconst DSSeparatorWithSchema = describe(DSSeparator);\n\nDSSeparatorWithSchema.propTypes = props;\n\nexport { DSSeparator, DSSeparatorWithSchema };\nexport default DSSeparator;\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;AACA;AAEA,MAAM,YAAY;AAElB,MAAM,cAAc;AAAA,EAClB,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,MAAM;AAAA;AAGR,MAAM,WAAW;AAAA,EACf,SAAS;AAAA,EACT,QAAQ;AAAA,EACR,KAAK;AAAA;AAGP,MAAM,mBAAmB,kBAAkB,OACzC,qBACA,MACA,CAAC,EAAE,QAAQ,aAAa,QAAQ,eAAgB;AAAA,EAC9C;AAAA,GACC,SAAS;AAAA,GACT,cAAc;AAAA,GACd,WAAW;AAAA;AAIhB,MAAM,YAAY,kBAAkB,OAClC,WACA,MACA,CAAC,EAAE,QAAQ,QAAQ,aAAa,WAAY;AAAA,EAC1C;AAAA,GACC,SAAS;AAAA,GACT,cAAc;AAAA,GACd,OAAO;AAAA;AAIZ,MAAM,QAAQ,CAAC,kBAAkB,eAAe;AAEhD,MAAM,cAAc,CAAC;AAAA,EACnB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,MAEA,qCAAC,kBAAD;AAAA,KACM;AAAA,EACJ;AAAA,EACA,YAAY;AAAA,IACV;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAAA,EAEF;AAAA,GAEA,qCAAC,WAAD;AAAA,EACE,YAAY;AAAA,IACV;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAAA;AAMR,YAAY,eAAe;AAAA,EACzB,gBAAgB;AAAA,EAChB,QAAQ;AAAA,EACR,QAAQ,YAAY;AAAA,EACpB,aAAa;AAAA,EACb,MAAM;AAAA,EACN,UAAU,SAAS;AAAA;AAGrB,MAAM,QAAQ;AAAA,EAEZ,WAAW,UAAU,OAAO,YAAY;AAAA,EAExC,OAAO,UAAU,OAAO,YAAY;AAAA,EAEpC,gBAAgB,UAAU,OAAO,YAC/B;AAAA,EAKF,QAAQ,UAAU,KAAK,YACrB;AAAA,EAKF,QAAQ,UAAU,MAAM,CAAC,KAAK,KAAK,KAAK,SAAS,YAC/C;AAAA,EAKF,aAAa,UAAU,OAAO,YAC5B;AAAA,EAKF,MAAM,UAAU,MAAM,OAAO,YAC3B;AAAA,EAKF,UAAU,UAAU,MAAM,CAAC,WAAW,UAAU,QAAQ,YACtD;AAAA;AAIJ,YAAY,YAAY;AAExB,MAAM,wBAAwB,SAAS;AAEvC,sBAAsB,YAAY;AAGlC,IAAO,sBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/esm/index.js
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
export * from "./DSSeparator";
|
|
3
|
+
import { default as default2 } from "./DSSeparator";
|
|
4
|
+
export {
|
|
5
|
+
default2 as default
|
|
6
|
+
};
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
package/esm/index.js.map
ADDED
|
@@ -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 * from './DSSeparator';\nexport { default } from './DSSeparator';\n"],
|
|
5
|
+
"mappings": "AAAA;ACAA;AACA;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-separator",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0-alpha.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Separator",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"build": "node ../../scripts/build/build.js"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@elliemae/ds-classnames": "2.
|
|
39
|
+
"@elliemae/ds-classnames": "2.3.0-alpha.3",
|
|
40
40
|
"react-desc": "~4.1.3"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|