@elliemae/ds-classnames 2.2.0-alpha.1 → 2.2.0-alpha.2

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.
Files changed (50) hide show
  1. package/cjs/aggregatedClasses.js +68 -89
  2. package/cjs/aggregatedClasses.js.map +7 -0
  3. package/cjs/aggregatedClasses.md +323 -0
  4. package/cjs/classNameManager.js +68 -77
  5. package/cjs/classNameManager.js.map +7 -0
  6. package/cjs/converPropsToFormModifiers.js +48 -25
  7. package/cjs/converPropsToFormModifiers.js.map +7 -0
  8. package/cjs/convertPropToFeedBackModifiers.js +51 -25
  9. package/cjs/convertPropToFeedBackModifiers.js.map +7 -0
  10. package/cjs/convertPropsToColorModifiers.js +41 -21
  11. package/cjs/convertPropsToColorModifiers.js.map +7 -0
  12. package/cjs/convertPropsToLayoutModifiers.js +51 -27
  13. package/cjs/convertPropsToLayoutModifiers.js.map +7 -0
  14. package/cjs/convertPropsToSizeModifiers.js +62 -28
  15. package/cjs/convertPropsToSizeModifiers.js.map +7 -0
  16. package/cjs/convertPropsToTextModifiers.js +43 -23
  17. package/cjs/convertPropsToTextModifiers.js.map +7 -0
  18. package/cjs/index.js +38 -12
  19. package/cjs/index.js.map +7 -0
  20. package/cjs/validateNativeProps.js +48 -31
  21. package/cjs/validateNativeProps.js.map +7 -0
  22. package/esm/aggregatedClasses.js +41 -75
  23. package/esm/aggregatedClasses.js.map +7 -0
  24. package/esm/aggregatedClasses.md +323 -0
  25. package/esm/classNameManager.js +38 -67
  26. package/esm/classNameManager.js.map +7 -0
  27. package/esm/converPropsToFormModifiers.js +19 -23
  28. package/esm/converPropsToFormModifiers.js.map +7 -0
  29. package/esm/convertPropToFeedBackModifiers.js +22 -23
  30. package/esm/convertPropToFeedBackModifiers.js.map +7 -0
  31. package/esm/convertPropsToColorModifiers.js +12 -19
  32. package/esm/convertPropsToColorModifiers.js.map +7 -0
  33. package/esm/convertPropsToLayoutModifiers.js +22 -25
  34. package/esm/convertPropsToLayoutModifiers.js.map +7 -0
  35. package/esm/convertPropsToSizeModifiers.js +33 -26
  36. package/esm/convertPropsToSizeModifiers.js.map +7 -0
  37. package/esm/convertPropsToTextModifiers.js +14 -21
  38. package/esm/convertPropsToTextModifiers.js.map +7 -0
  39. package/esm/index.js +9 -2
  40. package/esm/index.js.map +7 -0
  41. package/esm/validateNativeProps.js +19 -19
  42. package/esm/validateNativeProps.js.map +7 -0
  43. package/package.json +3 -3
  44. package/types/classNameManager.d.ts +1 -0
  45. package/types/converPropsToFormModifiers.d.ts +1 -0
  46. package/types/convertPropToFeedBackModifiers.d.ts +1 -0
  47. package/types/convertPropsToColorModifiers.d.ts +1 -0
  48. package/types/convertPropsToLayoutModifiers.d.ts +1 -0
  49. package/types/convertPropsToSizeModifiers.d.ts +1 -0
  50. package/types/convertPropsToTextModifiers.d.ts +1 -0
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/classNameManager.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["/* eslint-disable @typescript-eslint/no-explicit-any */\n/* eslint-disable max-params */\nimport { isEmpty } from '@elliemae/ds-utilities/utils';\nimport { dimsumConfig } from '@elliemae/ds-shared/dimsum.config';\nimport { pipe as formPipe } from './converPropsToFormModifiers';\nimport { pipe as layoutModifiers } from './convertPropsToLayoutModifiers';\nimport { pipe as feedBackModifiers } from './convertPropToFeedBackModifiers';\nimport { pipe as sizeModifiers } from './convertPropsToSizeModifiers';\nimport { pipe as textModifiers } from './convertPropsToTextModifiers';\nimport { pipe as colorModifiers } from './convertPropsToColorModifiers';\n\nexport const cssPrefix = `${dimsumConfig.classNamePrefix}-`;\n\nconst executePipelines = (props) => {\n const form = formPipe().execute(props);\n const layout = layoutModifiers().execute(props);\n const feedback = feedBackModifiers().execute(props);\n const size = sizeModifiers().execute(props);\n const text = textModifiers().execute(props);\n const color = colorModifiers().execute(props);\n return [...form, ...layout, ...feedback, ...size, ...text, ...color];\n};\n\n/**\n * Docs: http://getbem.com/naming/\n * blockName\n * cssClassNameModifier: Main modifier\n * props { hasError, hasWarning, hasSuccess, readOnly, disabled}\n *\n * @param blockName\n * @param cssClassNameModifier\n * @param props\n * @param options\n */\nconst cssPipeline: (\n blockName?: string,\n cssClassNameModifier?: string,\n props?: { [key: string]: any },\n options?: { [key: string]: any },\n) => {\n blockName: string;\n cssPrefix: string;\n prefixBlockName: string;\n cssClassName: string;\n mainModifier(modifier: any): string;\n classNameBlock(elementName: any, usePrefix?: boolean): string;\n classNameBlockModifier(modifierName: any, elementBlockName?: string): string;\n classNameElement(elementName: any, elementBlockName?: string): string;\n classNameModifier(modifierName: any, elementName?: string): string;\n} = (blockName = 'block', cssClassNameModifier = '', props = {}, options = {}) => {\n const { prefix, element } = options;\n\n const prefixBlockName = `${prefix || cssPrefix}${blockName}${element ? `__${element}` : ''}`;\n\n // PipeLine\n const pipes = !isEmpty(props) ? executePipelines(props) : [];\n\n const basePipeline = [prefixBlockName, ...pipes];\n\n // specific classname\n const className = cssClassNameModifier\n ? [...basePipeline].join(` ${prefixBlockName}--`).concat(` ${cssClassNameModifier}`)\n : [...basePipeline].join(` ${prefixBlockName}--`);\n\n return {\n blockName,\n cssPrefix,\n prefixBlockName,\n cssClassName: className,\n mainModifier(modifier) {\n return `${className}--${modifier}`;\n },\n classNameBlock(elementName, usePrefix = true) {\n return `${!usePrefix ? blockName : prefixBlockName}-${elementName}`;\n },\n classNameBlockModifier(modifierName, elementBlockName = '') {\n return `${prefixBlockName}-${elementBlockName}--${modifierName}`;\n },\n classNameElement(elementName, elementBlockName = '') {\n return `${prefixBlockName}${elementBlockName ? `-${elementBlockName}` : ''}__${elementName}`;\n },\n classNameModifier(modifierName, elementName = '') {\n return `${prefixBlockName}${elementName ? `__${elementName}` : ''}--${modifierName}`;\n },\n };\n};\n\nexport { cssPipeline as convertPropToCssClassName };\nexport default cssPipeline;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADEvB,mBAAwB;AACxB,oBAA6B;AAC7B,wCAAiC;AACjC,2CAAwC;AACxC,4CAA0C;AAC1C,yCAAsC;AACtC,yCAAsC;AACtC,0CAAuC;AAEhC,MAAM,YAAY,GAAG,2BAAa;AAEzC,MAAM,mBAAmB,CAAC,UAAU;AAClC,QAAM,OAAO,8CAAW,QAAQ;AAChC,QAAM,SAAS,iDAAkB,QAAQ;AACzC,QAAM,WAAW,kDAAoB,QAAQ;AAC7C,QAAM,OAAO,+CAAgB,QAAQ;AACrC,QAAM,OAAO,+CAAgB,QAAQ;AACrC,QAAM,QAAQ,gDAAiB,QAAQ;AACvC,SAAO,CAAC,GAAG,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM,GAAG;AAAA;AAchE,MAAM,cAeF,CAAC,YAAY,SAAS,uBAAuB,IAAI,QAAQ,IAAI,UAAU,OAAO;AAChF,QAAM,EAAE,QAAQ,YAAY;AAE5B,QAAM,kBAAkB,GAAG,UAAU,YAAY,YAAY,UAAU,KAAK,YAAY;AAGxF,QAAM,QAAQ,CAAC,0BAAQ,SAAS,iBAAiB,SAAS;AAE1D,QAAM,eAAe,CAAC,iBAAiB,GAAG;AAG1C,QAAM,YAAY,uBACd,CAAC,GAAG,cAAc,KAAK,IAAI,qBAAqB,OAAO,IAAI,0BAC3D,CAAC,GAAG,cAAc,KAAK,IAAI;AAE/B,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA;AAAA,IACA,cAAc;AAAA,IACd,aAAa,UAAU;AACrB,aAAO,GAAG,cAAc;AAAA;AAAA,IAE1B,eAAe,aAAa,YAAY,MAAM;AAC5C,aAAO,GAAG,CAAC,YAAY,YAAY,mBAAmB;AAAA;AAAA,IAExD,uBAAuB,cAAc,mBAAmB,IAAI;AAC1D,aAAO,GAAG,mBAAmB,qBAAqB;AAAA;AAAA,IAEpD,iBAAiB,aAAa,mBAAmB,IAAI;AACnD,aAAO,GAAG,kBAAkB,mBAAmB,IAAI,qBAAqB,OAAO;AAAA;AAAA,IAEjF,kBAAkB,cAAc,cAAc,IAAI;AAChD,aAAO,GAAG,kBAAkB,cAAc,KAAK,gBAAgB,OAAO;AAAA;AAAA;AAAA;AAM5E,IAAO,2BAAQ;",
6
+ "names": []
7
+ }
@@ -1,39 +1,62 @@
1
- 'use strict';
2
-
3
- require('core-js/modules/esnext.async-iterator.reduce.js');
4
- require('core-js/modules/esnext.iterator.constructor.js');
5
- require('core-js/modules/esnext.iterator.reduce.js');
6
- require('core-js/modules/web.dom-collections.iterator.js');
7
-
8
- const basicAction = _ref => {
9
- let {
10
- readOnly = false,
11
- disabled = false,
12
- checked = false
13
- } = _ref;
14
- const cssModifier = []; // input state modifiers
15
-
16
- if (checked) cssModifier.push('checked');
17
- if (readOnly) cssModifier.push('readonly');
18
- if (disabled) cssModifier.push('disabled');
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 converPropsToFormModifiers_exports = {};
29
+ __export(converPropsToFormModifiers_exports, {
30
+ default: () => converPropsToFormModifiers_default,
31
+ pipe: () => pipe
32
+ });
33
+ var React = __toESM(require("react"));
34
+ const basicAction = ({
35
+ readOnly = false,
36
+ disabled = false,
37
+ checked = false
38
+ }) => {
39
+ const cssModifier = [];
40
+ if (checked)
41
+ cssModifier.push("checked");
42
+ if (readOnly)
43
+ cssModifier.push("readonly");
44
+ if (disabled)
45
+ cssModifier.push("disabled");
19
46
  return cssModifier;
20
47
  };
21
-
22
48
  const instance = [basicAction];
23
-
24
49
  const pipe = () => ({
25
50
  getInstance() {
26
51
  return instance;
27
52
  },
28
-
29
53
  add(customModifier) {
30
54
  instance.push(customModifier);
31
55
  },
32
-
33
56
  execute(props) {
34
57
  return instance.reduce((temp, action) => [...temp, ...action(props)], []);
35
58
  }
36
-
37
59
  });
38
-
39
- module.exports = pipe;
60
+ var converPropsToFormModifiers_default = pipe;
61
+ module.exports = __toCommonJS(converPropsToFormModifiers_exports);
62
+ //# sourceMappingURL=converPropsToFormModifiers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/converPropsToFormModifiers.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["const basicAction = ({\n readOnly = false,\n disabled = false,\n checked = false,\n}) => {\n const cssModifier = [];\n // input state modifiers\n if (checked) cssModifier.push('checked');\n if (readOnly) cssModifier.push('readonly');\n if (disabled) cssModifier.push('disabled');\n return cssModifier;\n};\n\nconst instance = [basicAction];\nconst pipe = () => ({\n getInstance() {\n return instance;\n },\n add(customModifier) {\n instance.push(customModifier);\n },\n execute(props) {\n return instance.reduce((temp, action) => [...temp, ...action(props)], []);\n },\n});\n\nexport { pipe };\nexport default pipe;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,cAAc,CAAC;AAAA,EACnB,WAAW;AAAA,EACX,WAAW;AAAA,EACX,UAAU;AAAA,MACN;AACJ,QAAM,cAAc;AAEpB,MAAI;AAAS,gBAAY,KAAK;AAC9B,MAAI;AAAU,gBAAY,KAAK;AAC/B,MAAI;AAAU,gBAAY,KAAK;AAC/B,SAAO;AAAA;AAGT,MAAM,WAAW,CAAC;AAClB,MAAM,OAAO,MAAO;AAAA,EAClB,cAAc;AACZ,WAAO;AAAA;AAAA,EAET,IAAI,gBAAgB;AAClB,aAAS,KAAK;AAAA;AAAA,EAEhB,QAAQ,OAAO;AACb,WAAO,SAAS,OAAO,CAAC,MAAM,WAAW,CAAC,GAAG,MAAM,GAAG,OAAO,SAAS;AAAA;AAAA;AAK1E,IAAO,qCAAQ;",
6
+ "names": []
7
+ }
@@ -1,39 +1,65 @@
1
- 'use strict';
2
-
3
- require('core-js/modules/esnext.async-iterator.reduce.js');
4
- require('core-js/modules/esnext.iterator.constructor.js');
5
- require('core-js/modules/esnext.iterator.reduce.js');
6
- require('core-js/modules/web.dom-collections.iterator.js');
7
-
8
- const basicAction = _ref => {
9
- let {
10
- hasError = false,
11
- hasWarning = false,
12
- hasSuccess = false,
13
- modalType
14
- } = _ref;
15
- const cssModifier = []; // valid state modifier
16
-
17
- if (hasError) cssModifier.push('error');else if (hasWarning) cssModifier.push('warning');else if (hasSuccess) cssModifier.push('success');
18
- if (modalType) cssModifier.push("modal-type-".concat(modalType));
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 convertPropToFeedBackModifiers_exports = {};
29
+ __export(convertPropToFeedBackModifiers_exports, {
30
+ default: () => convertPropToFeedBackModifiers_default,
31
+ pipe: () => pipe
32
+ });
33
+ var React = __toESM(require("react"));
34
+ const basicAction = ({
35
+ hasError = false,
36
+ hasWarning = false,
37
+ hasSuccess = false,
38
+ modalType
39
+ }) => {
40
+ const cssModifier = [];
41
+ if (hasError)
42
+ cssModifier.push("error");
43
+ else if (hasWarning)
44
+ cssModifier.push("warning");
45
+ else if (hasSuccess)
46
+ cssModifier.push("success");
47
+ if (modalType)
48
+ cssModifier.push(`modal-type-${modalType}`);
19
49
  return cssModifier;
20
50
  };
21
-
22
51
  const instance = [basicAction];
23
-
24
52
  const pipe = () => ({
25
53
  getInstance() {
26
54
  return instance;
27
55
  },
28
-
29
56
  add(customModifier) {
30
57
  instance.push(customModifier);
31
58
  },
32
-
33
59
  execute(props) {
34
60
  return instance.reduce((temp, action) => [...temp, ...action(props)], []);
35
61
  }
36
-
37
62
  });
38
-
39
- module.exports = pipe;
63
+ var convertPropToFeedBackModifiers_default = pipe;
64
+ module.exports = __toCommonJS(convertPropToFeedBackModifiers_exports);
65
+ //# sourceMappingURL=convertPropToFeedBackModifiers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/convertPropToFeedBackModifiers.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["const basicAction = ({\n hasError = false,\n hasWarning = false,\n hasSuccess = false,\n modalType,\n}) => {\n const cssModifier = [];\n // valid state modifier\n if (hasError) cssModifier.push('error');\n else if (hasWarning) cssModifier.push('warning');\n else if (hasSuccess) cssModifier.push('success');\n if (modalType) cssModifier.push(`modal-type-${modalType}`);\n return cssModifier;\n};\n\nconst instance = [basicAction];\nconst pipe = () => ({\n getInstance() {\n return instance;\n },\n add(customModifier) {\n instance.push(customModifier);\n },\n execute(props) {\n return instance.reduce((temp, action) => [...temp, ...action(props)], []);\n },\n});\n\nexport { pipe };\nexport default pipe;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,cAAc,CAAC;AAAA,EACnB,WAAW;AAAA,EACX,aAAa;AAAA,EACb,aAAa;AAAA,EACb;AAAA,MACI;AACJ,QAAM,cAAc;AAEpB,MAAI;AAAU,gBAAY,KAAK;AAAA,WACtB;AAAY,gBAAY,KAAK;AAAA,WAC7B;AAAY,gBAAY,KAAK;AACtC,MAAI;AAAW,gBAAY,KAAK,cAAc;AAC9C,SAAO;AAAA;AAGT,MAAM,WAAW,CAAC;AAClB,MAAM,OAAO,MAAO;AAAA,EAClB,cAAc;AACZ,WAAO;AAAA;AAAA,EAET,IAAI,gBAAgB;AAClB,aAAS,KAAK;AAAA;AAAA,EAEhB,QAAQ,OAAO;AACb,WAAO,SAAS,OAAO,CAAC,MAAM,WAAW,CAAC,GAAG,MAAM,GAAG,OAAO,SAAS;AAAA;AAAA;AAK1E,IAAO,yCAAQ;",
6
+ "names": []
7
+ }
@@ -1,38 +1,58 @@
1
- 'use strict';
2
-
3
- require('core-js/modules/esnext.async-iterator.reduce.js');
4
- require('core-js/modules/esnext.iterator.constructor.js');
5
- require('core-js/modules/esnext.iterator.reduce.js');
6
- require('core-js/modules/web.dom-collections.iterator.js');
7
-
8
- const basicAction = _ref => {
9
- let {
10
- color = null
11
- } = _ref;
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 convertPropsToColorModifiers_exports = {};
29
+ __export(convertPropsToColorModifiers_exports, {
30
+ default: () => convertPropsToColorModifiers_default,
31
+ pipe: () => pipe
32
+ });
33
+ var React = __toESM(require("react"));
34
+ const basicAction = ({ color = null }) => {
12
35
  const cssModifier = [];
13
-
14
36
  if (color && color[0]) {
15
- if (color[1] !== null) cssModifier.push("color-".concat(color[0], "-").concat(color[1]));else cssModifier.push("color-".concat(color[0]));
37
+ if (color[1] !== null)
38
+ cssModifier.push(`color-${color[0]}-${color[1]}`);
39
+ else
40
+ cssModifier.push(`color-${color[0]}`);
16
41
  }
17
-
18
42
  return cssModifier;
19
43
  };
20
-
21
44
  const instance = [basicAction];
22
-
23
45
  const pipe = () => ({
24
46
  getInstance() {
25
47
  return instance;
26
48
  },
27
-
28
49
  add(customModifier) {
29
50
  instance.push(customModifier);
30
51
  },
31
-
32
52
  execute(props) {
33
53
  return instance.reduce((temp, action) => [...temp, ...action(props)], []);
34
54
  }
35
-
36
55
  });
37
-
38
- module.exports = pipe;
56
+ var convertPropsToColorModifiers_default = pipe;
57
+ module.exports = __toCommonJS(convertPropsToColorModifiers_exports);
58
+ //# sourceMappingURL=convertPropsToColorModifiers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/convertPropsToColorModifiers.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["const basicAction = ({ color = null }) => {\n const cssModifier = [];\n if (color && color[0]) {\n if (color[1] !== null) cssModifier.push(`color-${color[0]}-${color[1]}`);\n else cssModifier.push(`color-${color[0]}`);\n }\n return cssModifier;\n};\n\nconst instance = [basicAction];\nconst pipe = () => ({\n getInstance() {\n return instance;\n },\n add(customModifier) {\n instance.push(customModifier);\n },\n execute(props) {\n return instance.reduce((temp, action) => [...temp, ...action(props)], []);\n },\n});\n\nexport { pipe };\nexport default pipe;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,cAAc,CAAC,EAAE,QAAQ,WAAW;AACxC,QAAM,cAAc;AACpB,MAAI,SAAS,MAAM,IAAI;AACrB,QAAI,MAAM,OAAO;AAAM,kBAAY,KAAK,SAAS,MAAM,MAAM,MAAM;AAAA;AAC9D,kBAAY,KAAK,SAAS,MAAM;AAAA;AAEvC,SAAO;AAAA;AAGT,MAAM,WAAW,CAAC;AAClB,MAAM,OAAO,MAAO;AAAA,EAClB,cAAc;AACZ,WAAO;AAAA;AAAA,EAET,IAAI,gBAAgB;AAClB,aAAS,KAAK;AAAA;AAAA,EAEhB,QAAQ,OAAO;AACb,WAAO,SAAS,OAAO,CAAC,MAAM,WAAW,CAAC,GAAG,MAAM,GAAG,OAAO,SAAS;AAAA;AAAA;AAK1E,IAAO,uCAAQ;",
6
+ "names": []
7
+ }
@@ -1,41 +1,65 @@
1
- 'use strict';
2
-
3
- require('core-js/modules/esnext.async-iterator.reduce.js');
4
- require('core-js/modules/esnext.iterator.constructor.js');
5
- require('core-js/modules/esnext.iterator.reduce.js');
6
- require('core-js/modules/web.dom-collections.iterator.js');
7
-
8
- const basicAction = _ref => {
9
- let {
10
- id,
11
- buttonType = 'default',
12
- fluidWidth = false,
13
- fluidHeight = false
14
- } = _ref;
15
- const cssModifier = []; // buttons types
16
-
17
- if (id) cssModifier.push("id-".concat(id));
18
- if (buttonType) cssModifier.push(buttonType);
19
- if (fluidWidth) cssModifier.push('fluid-width');
20
- if (fluidHeight) cssModifier.push('fluid-height');
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 convertPropsToLayoutModifiers_exports = {};
29
+ __export(convertPropsToLayoutModifiers_exports, {
30
+ default: () => convertPropsToLayoutModifiers_default,
31
+ pipe: () => pipe
32
+ });
33
+ var React = __toESM(require("react"));
34
+ const basicAction = ({
35
+ id,
36
+ buttonType = "default",
37
+ fluidWidth = false,
38
+ fluidHeight = false
39
+ }) => {
40
+ const cssModifier = [];
41
+ if (id)
42
+ cssModifier.push(`id-${id}`);
43
+ if (buttonType)
44
+ cssModifier.push(buttonType);
45
+ if (fluidWidth)
46
+ cssModifier.push("fluid-width");
47
+ if (fluidHeight)
48
+ cssModifier.push("fluid-height");
21
49
  return cssModifier;
22
50
  };
23
-
24
51
  const instance = [basicAction];
25
-
26
52
  const pipe = () => ({
27
53
  getInstance() {
28
54
  return instance;
29
55
  },
30
-
31
56
  add(customModifier) {
32
57
  instance.push(customModifier);
33
58
  },
34
-
35
59
  execute(props) {
36
60
  return instance.reduce((temp, action) => [...temp, ...action(props)], []);
37
61
  }
38
-
39
62
  });
40
-
41
- module.exports = pipe;
63
+ var convertPropsToLayoutModifiers_default = pipe;
64
+ module.exports = __toCommonJS(convertPropsToLayoutModifiers_exports);
65
+ //# sourceMappingURL=convertPropsToLayoutModifiers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/convertPropsToLayoutModifiers.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["const basicAction = ({\n id,\n buttonType = 'default',\n fluidWidth = false,\n fluidHeight = false,\n}) => {\n const cssModifier = [];\n // buttons types\n if (id) cssModifier.push(`id-${id}`);\n if (buttonType) cssModifier.push(buttonType);\n if (fluidWidth) cssModifier.push('fluid-width');\n if (fluidHeight) cssModifier.push('fluid-height');\n\n return cssModifier;\n};\n\nconst instance = [basicAction];\nconst pipe = () => ({\n getInstance() {\n return instance;\n },\n add(customModifier) {\n instance.push(customModifier);\n },\n execute(props) {\n return instance.reduce((temp, action) => [...temp, ...action(props)], []);\n },\n});\n\nexport { pipe };\nexport default pipe;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,cAAc,CAAC;AAAA,EACnB;AAAA,EACA,aAAa;AAAA,EACb,aAAa;AAAA,EACb,cAAc;AAAA,MACV;AACJ,QAAM,cAAc;AAEpB,MAAI;AAAI,gBAAY,KAAK,MAAM;AAC/B,MAAI;AAAY,gBAAY,KAAK;AACjC,MAAI;AAAY,gBAAY,KAAK;AACjC,MAAI;AAAa,gBAAY,KAAK;AAElC,SAAO;AAAA;AAGT,MAAM,WAAW,CAAC;AAClB,MAAM,OAAO,MAAO;AAAA,EAClB,cAAc;AACZ,WAAO;AAAA;AAAA,EAET,IAAI,gBAAgB;AAClB,aAAS,KAAK;AAAA;AAAA,EAEhB,QAAQ,OAAO;AACb,WAAO,SAAS,OAAO,CAAC,MAAM,WAAW,CAAC,GAAG,MAAM,GAAG,OAAO,SAAS;AAAA;AAAA;AAK1E,IAAO,wCAAQ;",
6
+ "names": []
7
+ }
@@ -1,43 +1,77 @@
1
- 'use strict';
2
-
3
- require('core-js/modules/esnext.async-iterator.reduce.js');
4
- require('core-js/modules/esnext.iterator.constructor.js');
5
- require('core-js/modules/esnext.iterator.reduce.js');
6
- require('core-js/modules/web.dom-collections.iterator.js');
7
-
8
- const basicAction = _ref => {
9
- let {
10
- size = null,
11
- extraTight = false,
12
- tight = false,
13
- base = false,
14
- bitLoose = false,
15
- loose = false,
16
- extraLoose = false,
17
- superLoose = false
18
- } = _ref;
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 convertPropsToSizeModifiers_exports = {};
29
+ __export(convertPropsToSizeModifiers_exports, {
30
+ default: () => convertPropsToSizeModifiers_default,
31
+ pipe: () => pipe
32
+ });
33
+ var React = __toESM(require("react"));
34
+ const basicAction = ({
35
+ size = null,
36
+ extraTight = false,
37
+ tight = false,
38
+ base = false,
39
+ bitLoose = false,
40
+ loose = false,
41
+ extraLoose = false,
42
+ superLoose = false
43
+ }) => {
19
44
  const cssModifier = [];
20
- if (size) cssModifier.push("".concat(size)); // Size as Flag
21
-
22
- if (extraTight) cssModifier.push('size-extra-tight');else if (tight) cssModifier.push('size-tight');else if (base) cssModifier.push('size-base');else if (bitLoose) cssModifier.push('size-bit-loose');else if (loose) cssModifier.push('size-loose');else if (extraLoose) cssModifier.push('size-extra-loose');else if (superLoose) cssModifier.push('size-super-loose');
45
+ if (size)
46
+ cssModifier.push(`${size}`);
47
+ if (extraTight)
48
+ cssModifier.push("size-extra-tight");
49
+ else if (tight)
50
+ cssModifier.push("size-tight");
51
+ else if (base)
52
+ cssModifier.push("size-base");
53
+ else if (bitLoose)
54
+ cssModifier.push("size-bit-loose");
55
+ else if (loose)
56
+ cssModifier.push("size-loose");
57
+ else if (extraLoose)
58
+ cssModifier.push("size-extra-loose");
59
+ else if (superLoose)
60
+ cssModifier.push("size-super-loose");
23
61
  return cssModifier;
24
62
  };
25
-
26
63
  const instance = [basicAction];
27
-
28
64
  const pipe = () => ({
29
65
  getInstance() {
30
66
  return instance;
31
67
  },
32
-
33
68
  add(customModifier) {
34
69
  instance.push(customModifier);
35
70
  },
36
-
37
71
  execute(props) {
38
72
  return instance.reduce((temp, action) => [...temp, ...action(props)], []);
39
73
  }
40
-
41
74
  });
42
-
43
- module.exports = pipe;
75
+ var convertPropsToSizeModifiers_default = pipe;
76
+ module.exports = __toCommonJS(convertPropsToSizeModifiers_exports);
77
+ //# sourceMappingURL=convertPropsToSizeModifiers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/convertPropsToSizeModifiers.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["const basicAction = ({\n size = null,\n extraTight = false,\n tight = false,\n base = false,\n bitLoose = false,\n loose = false,\n extraLoose = false,\n superLoose = false,\n}) => {\n const cssModifier = [];\n if (size) cssModifier.push(`${size}`);\n // Size as Flag\n if (extraTight) cssModifier.push('size-extra-tight');\n else if (tight) cssModifier.push('size-tight');\n else if (base) cssModifier.push('size-base');\n else if (bitLoose) cssModifier.push('size-bit-loose');\n else if (loose) cssModifier.push('size-loose');\n else if (extraLoose) cssModifier.push('size-extra-loose');\n else if (superLoose) cssModifier.push('size-super-loose');\n return cssModifier;\n};\n\nconst instance = [basicAction];\nconst pipe = () => ({\n getInstance() {\n return instance;\n },\n add(customModifier) {\n instance.push(customModifier);\n },\n execute(props) {\n return instance.reduce((temp, action) => [...temp, ...action(props)], []);\n },\n});\n\nexport { pipe };\nexport default pipe;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,cAAc,CAAC;AAAA,EACnB,OAAO;AAAA,EACP,aAAa;AAAA,EACb,QAAQ;AAAA,EACR,OAAO;AAAA,EACP,WAAW;AAAA,EACX,QAAQ;AAAA,EACR,aAAa;AAAA,EACb,aAAa;AAAA,MACT;AACJ,QAAM,cAAc;AACpB,MAAI;AAAM,gBAAY,KAAK,GAAG;AAE9B,MAAI;AAAY,gBAAY,KAAK;AAAA,WACxB;AAAO,gBAAY,KAAK;AAAA,WACxB;AAAM,gBAAY,KAAK;AAAA,WACvB;AAAU,gBAAY,KAAK;AAAA,WAC3B;AAAO,gBAAY,KAAK;AAAA,WACxB;AAAY,gBAAY,KAAK;AAAA,WAC7B;AAAY,gBAAY,KAAK;AACtC,SAAO;AAAA;AAGT,MAAM,WAAW,CAAC;AAClB,MAAM,OAAO,MAAO;AAAA,EAClB,cAAc;AACZ,WAAO;AAAA;AAAA,EAET,IAAI,gBAAgB;AAClB,aAAS,KAAK;AAAA;AAAA,EAEhB,QAAQ,OAAO;AACb,WAAO,SAAS,OAAO,CAAC,MAAM,WAAW,CAAC,GAAG,MAAM,GAAG,OAAO,SAAS;AAAA;AAAA;AAK1E,IAAO,sCAAQ;",
6
+ "names": []
7
+ }
@@ -1,38 +1,58 @@
1
- 'use strict';
2
-
3
- require('core-js/modules/esnext.async-iterator.reduce.js');
4
- require('core-js/modules/esnext.iterator.constructor.js');
5
- require('core-js/modules/esnext.iterator.reduce.js');
6
- require('core-js/modules/web.dom-collections.iterator.js');
7
-
8
- const basicAction = _ref => {
9
- let {
10
- textEllipsis,
11
- textAlignment,
12
- wordBreak
13
- } = _ref;
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 convertPropsToTextModifiers_exports = {};
29
+ __export(convertPropsToTextModifiers_exports, {
30
+ default: () => convertPropsToTextModifiers_default,
31
+ pipe: () => pipe
32
+ });
33
+ var React = __toESM(require("react"));
34
+ const basicAction = ({ textEllipsis, textAlignment, wordBreak }) => {
14
35
  const cssModifier = [];
15
- if (textEllipsis) cssModifier.push('text-overflow-ellipsis');
16
- if (wordBreak) cssModifier.push('text-overflow-word-break');
17
- if (['left', 'right', 'center', 'justify'].indexOf(textAlignment) > -1) cssModifier.push("text-align-".concat(textAlignment));
36
+ if (textEllipsis)
37
+ cssModifier.push("text-overflow-ellipsis");
38
+ if (wordBreak)
39
+ cssModifier.push("text-overflow-word-break");
40
+ if (["left", "right", "center", "justify"].indexOf(textAlignment) > -1)
41
+ cssModifier.push(`text-align-${textAlignment}`);
18
42
  return cssModifier;
19
43
  };
20
-
21
44
  const instance = [basicAction];
22
-
23
45
  const pipe = () => ({
24
46
  getInstance() {
25
47
  return instance;
26
48
  },
27
-
28
49
  add(customModifier) {
29
50
  instance.push(customModifier);
30
51
  },
31
-
32
52
  execute(props) {
33
53
  return instance.reduce((temp, action) => [...temp, ...action(props)], []);
34
54
  }
35
-
36
55
  });
37
-
38
- module.exports = pipe;
56
+ var convertPropsToTextModifiers_default = pipe;
57
+ module.exports = __toCommonJS(convertPropsToTextModifiers_exports);
58
+ //# sourceMappingURL=convertPropsToTextModifiers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/convertPropsToTextModifiers.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["const basicAction = ({ textEllipsis, textAlignment, wordBreak }) => {\n const cssModifier = [];\n if (textEllipsis) cssModifier.push('text-overflow-ellipsis');\n if (wordBreak) cssModifier.push('text-overflow-word-break');\n if (['left', 'right', 'center', 'justify'].indexOf(textAlignment) > -1)\n cssModifier.push(`text-align-${textAlignment}`);\n return cssModifier;\n};\n\nconst instance = [basicAction];\nconst pipe = () => ({\n getInstance() {\n return instance;\n },\n add(customModifier) {\n instance.push(customModifier);\n },\n execute(props) {\n return instance.reduce((temp, action) => [...temp, ...action(props)], []);\n },\n});\n\nexport { pipe };\nexport default pipe;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,cAAc,CAAC,EAAE,cAAc,eAAe,gBAAgB;AAClE,QAAM,cAAc;AACpB,MAAI;AAAc,gBAAY,KAAK;AACnC,MAAI;AAAW,gBAAY,KAAK;AAChC,MAAI,CAAC,QAAQ,SAAS,UAAU,WAAW,QAAQ,iBAAiB;AAClE,gBAAY,KAAK,cAAc;AACjC,SAAO;AAAA;AAGT,MAAM,WAAW,CAAC;AAClB,MAAM,OAAO,MAAO;AAAA,EAClB,cAAc;AACZ,WAAO;AAAA;AAAA,EAET,IAAI,gBAAgB;AAClB,aAAS,KAAK;AAAA;AAAA,EAEhB,QAAQ,OAAO;AACb,WAAO,SAAS,OAAO,CAAC,MAAM,WAAW,CAAC,GAAG,MAAM,GAAG,OAAO,SAAS;AAAA;AAAA;AAK1E,IAAO,sCAAQ;",
6
+ "names": []
7
+ }