@elliemae/ds-dialog 2.2.1 → 2.3.0-alpha.4

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 (43) hide show
  1. package/cjs/DSDialog.js +82 -102
  2. package/cjs/DSDialog.js.map +7 -0
  3. package/cjs/DSDialogDatatestid.js +36 -8
  4. package/cjs/DSDialogDatatestid.js.map +7 -0
  5. package/cjs/DSDialogInternalTypes.js +27 -2
  6. package/cjs/DSDialogInternalTypes.js.map +7 -0
  7. package/cjs/DSDialogTypes.js +27 -2
  8. package/cjs/DSDialogTypes.js.map +7 -0
  9. package/cjs/defaultProps.js +38 -11
  10. package/cjs/defaultProps.js.map +7 -0
  11. package/cjs/index.js +94 -24
  12. package/cjs/index.js.map +7 -0
  13. package/cjs/propTypes.js +44 -16
  14. package/cjs/propTypes.js.map +7 -0
  15. package/cjs/styles.js +149 -143
  16. package/cjs/styles.js.map +7 -0
  17. package/cjs/utils.js +50 -30
  18. package/cjs/utils.js.map +7 -0
  19. package/esm/DSDialog.js +50 -82
  20. package/esm/DSDialog.js.map +7 -0
  21. package/esm/DSDialogDatatestid.js +7 -4
  22. package/esm/DSDialogDatatestid.js.map +7 -0
  23. package/esm/DSDialogInternalTypes.js +2 -1
  24. package/esm/DSDialogInternalTypes.js.map +7 -0
  25. package/esm/DSDialogTypes.js +2 -1
  26. package/esm/DSDialogTypes.js.map +7 -0
  27. package/esm/defaultProps.js +8 -6
  28. package/esm/defaultProps.js.map +7 -0
  29. package/esm/index.js +75 -4
  30. package/esm/index.js.map +7 -0
  31. package/esm/propTypes.js +15 -12
  32. package/esm/propTypes.js.map +7 -0
  33. package/esm/styles.js +120 -123
  34. package/esm/styles.js.map +7 -0
  35. package/esm/utils.js +21 -23
  36. package/esm/utils.js.map +7 -0
  37. package/package.json +3 -3
  38. package/types/DSDialog.d.ts +2 -27
  39. package/types/DSDialogInternalTypes.d.ts +4 -4
  40. package/types/index.d.ts +49 -1
  41. package/types/propTypes.d.ts +2 -19
  42. package/types/styles.d.ts +4 -4
  43. package/types/utils.d.ts +6 -6
package/cjs/DSDialog.js CHANGED
@@ -1,119 +1,99 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var _defineProperty = require('@babel/runtime/helpers/defineProperty');
6
- var _jsx = require('@babel/runtime/helpers/jsx');
7
- var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
8
- require('core-js/modules/web.dom-collections.iterator.js');
9
- require('core-js/modules/esnext.async-iterator.filter.js');
10
- require('core-js/modules/esnext.iterator.constructor.js');
11
- require('core-js/modules/esnext.iterator.filter.js');
12
- require('core-js/modules/esnext.async-iterator.for-each.js');
13
- require('core-js/modules/esnext.iterator.for-each.js');
14
- var ReactDOM = require('react-dom');
15
- var react = require('react');
16
- var reactDesc = require('react-desc');
17
- var dsPropsHelpers = require('@elliemae/ds-props-helpers');
18
- var styles = require('./styles.js');
19
- var propTypes = require('./propTypes.js');
20
- var defaultProps = require('./defaultProps.js');
21
- var utils = require('./utils.js');
22
- var DSDialogDatatestid = require('./DSDialogDatatestid.js');
23
- var jsxRuntime = require('react/jsx-runtime');
24
-
25
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
26
-
27
- var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
28
- var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
29
- var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
30
- var ReactDOM__default = /*#__PURE__*/_interopDefaultLegacy(ReactDOM);
31
-
32
- const _excluded = ["children", "isOpen", "onClickOutside", "centered", "size", "removeAutoFocus", "zIndex"];
33
-
34
- 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; }
35
-
36
- 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; }
37
-
38
- const DSDialog = props => {
39
- var _FixedBody;
40
-
41
- const propsWithDefault = dsPropsHelpers.useMemoMergePropsWithDefault(props, defaultProps.defaultProps);
42
- const [bodyInfo, setBodyInfo] = react.useState({
43
- overflow: false,
44
- padding: '0px'
45
- });
46
- dsPropsHelpers.useValidateTypescriptPropTypes(propsWithDefault, propTypes.propTypes);
47
-
48
- const {
49
- children,
50
- isOpen,
51
- onClickOutside,
52
- centered,
53
- size,
54
- removeAutoFocus,
55
- zIndex
56
- } = propsWithDefault,
57
- rest = _objectWithoutProperties__default["default"](propsWithDefault, _excluded);
58
-
59
- const containerRef = react.useRef(null);
60
- const handleOutsideClick = react.useCallback(e => {
61
- if (e.target.dataset.portalbg) onClickOutside();
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 DSDialog_exports = {};
29
+ __export(DSDialog_exports, {
30
+ DSDialog: () => DSDialog,
31
+ DSDialogWithSchema: () => DSDialogWithSchema
32
+ });
33
+ var React = __toESM(require("react"));
34
+ var import_react_dom = __toESM(require("react-dom"));
35
+ var import_react = __toESM(require("react"));
36
+ var import_ds_props_helpers = require("@elliemae/ds-props-helpers");
37
+ var import_styles = require("./styles");
38
+ var import_propTypes = require("./propTypes");
39
+ var import_defaultProps = require("./defaultProps");
40
+ var import_utils = require("./utils");
41
+ var import_DSDialogDatatestid = require("./DSDialogDatatestid");
42
+ const DSDialog = (props) => {
43
+ const propsWithDefault = (0, import_ds_props_helpers.useMemoMergePropsWithDefault)(props, import_defaultProps.defaultProps);
44
+ const [bodyInfo, setBodyInfo] = (0, import_react.useState)({ overflow: false, padding: "0px" });
45
+ (0, import_ds_props_helpers.useValidateTypescriptPropTypes)(propsWithDefault, import_propTypes.propTypes);
46
+ const { children, isOpen, onClickOutside, centered, size, removeAutoFocus, zIndex, ...rest } = propsWithDefault;
47
+ const containerRef = (0, import_react.useRef)(null);
48
+ const handleOutsideClick = (0, import_react.useCallback)((e) => {
49
+ if (e.target.dataset.portalbg)
50
+ onClickOutside();
62
51
  }, [onClickOutside]);
63
- const handleOnKeyDown = react.useCallback(e => {
64
- if (e.key === 'Escape') onClickOutside();
52
+ const handleOnKeyDown = (0, import_react.useCallback)((e) => {
53
+ if (e.key === "Escape")
54
+ onClickOutside();
65
55
  }, [onClickOutside]);
66
- react.useEffect(() => {
67
- var _window$getComputedSt;
68
-
69
- const body = document.getElementsByTagName('body')[0];
70
- const {
71
- offsetHeight,
72
- scrollHeight
73
- } = body;
74
- const padding = (_window$getComputedSt = window.getComputedStyle(body, null)) === null || _window$getComputedSt === void 0 ? void 0 : _window$getComputedSt.getPropertyValue('padding-right');
75
- if (!isOpen) return setBodyInfo({
76
- overflow: false,
77
- padding: '0px'
78
- });
56
+ (0, import_react.useEffect)(() => {
57
+ const body = document.getElementsByTagName("body")[0];
58
+ const { offsetHeight, scrollHeight } = body;
59
+ const padding = window.getComputedStyle(body, null)?.getPropertyValue("padding-right");
60
+ if (!isOpen)
61
+ return setBodyInfo({ overflow: false, padding: "0px" });
79
62
  return setBodyInfo({
80
63
  overflow: offsetHeight < scrollHeight,
81
64
  padding
82
65
  });
83
66
  }, [isOpen]);
84
- react.useEffect(() => {
85
- var _containerRef$current;
86
-
87
- if (isOpen && !removeAutoFocus) containerRef === null || containerRef === void 0 ? void 0 : (_containerRef$current = containerRef.current) === null || _containerRef$current === void 0 ? void 0 : _containerRef$current.focus();
67
+ (0, import_react.useEffect)(() => {
68
+ if (isOpen && !removeAutoFocus)
69
+ containerRef?.current?.focus();
88
70
  }, [isOpen, removeAutoFocus]);
89
-
71
+ const globalAttributes = (0, import_ds_props_helpers.useGetGlobalAttributes)(propsWithDefault, { onClick: handleOutsideClick });
90
72
  if (isOpen) {
91
- return /*#__PURE__*/ReactDOM__default["default"].createPortal( /*#__PURE__*/_jsx__default["default"](styles.StyledDialogBackground, {
73
+ return import_react_dom.default.createPortal(/* @__PURE__ */ import_react.default.createElement(import_styles.StyledDialogBackground, {
92
74
  onClick: handleOutsideClick,
93
75
  "data-portalbg": true,
94
- "data-testid": DSDialogDatatestid.DSDialogDatatestid.BACKGROUND,
95
- zIndex: zIndex
96
- }, void 0, _FixedBody || (_FixedBody = /*#__PURE__*/_jsx__default["default"](styles.FixedBody, {
97
- bodyInfo: bodyInfo
98
- })), /*#__PURE__*/jsxRuntime.jsx(styles.StyledDialogContainer, _objectSpread(_objectSpread({
76
+ "data-testid": import_DSDialogDatatestid.DSDialogDatatestid.BACKGROUND,
77
+ zIndex,
78
+ ...globalAttributes
79
+ }, /* @__PURE__ */ import_react.default.createElement(import_styles.FixedBody, {
80
+ bodyInfo
81
+ }), /* @__PURE__ */ import_react.default.createElement(import_styles.StyledDialogContainer, {
99
82
  role: "dialog",
100
83
  "aria-modal": true,
101
84
  ref: containerRef,
102
- tabIndex: !removeAutoFocus ? 0 : undefined,
103
- onKeyDown: handleOnKeyDown
104
- }, utils.getSpaceProps(rest)), {}, {
105
- size: size,
106
- centered: centered,
107
- "data-testid": DSDialogDatatestid.DSDialogDatatestid.CONTAINER,
108
- children: children
109
- }))), document.getElementsByTagName('body')[0]);
85
+ tabIndex: !removeAutoFocus ? 0 : void 0,
86
+ onKeyDown: handleOnKeyDown,
87
+ ...(0, import_utils.getSpaceProps)(rest),
88
+ size,
89
+ centered,
90
+ "data-testid": import_DSDialogDatatestid.DSDialogDatatestid.CONTAINER
91
+ }, children)), document.getElementsByTagName("body")[0]);
110
92
  }
111
-
112
93
  return null;
113
94
  };
114
-
115
- const DSDialogWithSchema = reactDesc.describe(DSDialog);
116
- DSDialogWithSchema.propTypes = propTypes.propTypes;
117
-
118
- exports.DSDialog = DSDialog;
119
- exports.DSDialogWithSchema = DSDialogWithSchema;
95
+ DSDialog.propTypes = import_propTypes.propTypes;
96
+ const DSDialogWithSchema = (0, import_ds_props_helpers.describe)(DSDialog);
97
+ DSDialogWithSchema.propTypes = import_propTypes.propTypes;
98
+ module.exports = __toCommonJS(DSDialog_exports);
99
+ //# sourceMappingURL=DSDialog.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/DSDialog.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["import ReactDOM from 'react-dom';\nimport React, { useCallback, useRef, useEffect, useState } from 'react';\nimport {\n useMemoMergePropsWithDefault,\n useValidateTypescriptPropTypes,\n useGetGlobalAttributes,\n describe,\n} from '@elliemae/ds-props-helpers';\nimport { FixedBody, StyledDialogBackground, StyledDialogContainer } from './styles';\nimport { propTypes } from './propTypes';\nimport { defaultProps } from './defaultProps';\nimport { getSpaceProps } from './utils';\nimport { DSDialogDatatestid } from './DSDialogDatatestid';\nimport type { BodyInfoT, DSDialogPropsWithDefaultT } from './DSDialogInternalTypes';\nimport type { DSDialogPropsT } from './DSDialogTypes';\n\nconst DSDialog: React.ComponentType<DSDialogPropsT> = (props) => {\n const propsWithDefault = useMemoMergePropsWithDefault(props, defaultProps) as DSDialogPropsWithDefaultT;\n const [bodyInfo, setBodyInfo] = useState<BodyInfoT>({ overflow: false, padding: '0px' });\n\n useValidateTypescriptPropTypes(propsWithDefault, propTypes);\n\n const { children, isOpen, onClickOutside, centered, size, removeAutoFocus, zIndex, ...rest } = propsWithDefault;\n\n const containerRef = useRef<HTMLDivElement | null>(null);\n\n const handleOutsideClick = useCallback(\n (e: React.MouseEvent) => {\n if ((e.target as HTMLDivElement).dataset.portalbg) onClickOutside();\n },\n [onClickOutside],\n );\n\n const handleOnKeyDown = useCallback(\n (e: React.KeyboardEvent) => {\n if (e.key === 'Escape') onClickOutside();\n },\n [onClickOutside],\n );\n\n useEffect(() => {\n const body = document.getElementsByTagName('body')[0];\n const { offsetHeight, scrollHeight } = body;\n const padding = window.getComputedStyle(body, null)?.getPropertyValue('padding-right');\n\n if (!isOpen) return setBodyInfo({ overflow: false, padding: '0px' });\n\n return setBodyInfo({\n overflow: offsetHeight < scrollHeight,\n padding,\n });\n }, [isOpen]);\n\n useEffect(() => {\n if (isOpen && !removeAutoFocus) containerRef?.current?.focus();\n }, [isOpen, removeAutoFocus]);\n\n const globalAttributes = useGetGlobalAttributes(propsWithDefault, { onClick: handleOutsideClick });\n\n if (isOpen) {\n return ReactDOM.createPortal(\n <StyledDialogBackground\n onClick={handleOutsideClick}\n data-portalbg\n data-testid={DSDialogDatatestid.BACKGROUND}\n zIndex={zIndex}\n {...globalAttributes}\n >\n <FixedBody bodyInfo={bodyInfo} />\n <StyledDialogContainer\n role=\"dialog\"\n aria-modal\n ref={containerRef}\n tabIndex={!removeAutoFocus ? 0 : undefined}\n onKeyDown={handleOnKeyDown}\n {...getSpaceProps(rest)}\n size={size}\n centered={centered}\n data-testid={DSDialogDatatestid.CONTAINER}\n >\n {children}\n </StyledDialogContainer>\n </StyledDialogBackground>,\n document.getElementsByTagName('body')[0],\n );\n }\n\n return null;\n};\n\nDSDialog.propTypes = propTypes;\n\nconst DSDialogWithSchema = describe(DSDialog);\nDSDialogWithSchema.propTypes = propTypes;\n\nexport { DSDialog, DSDialogWithSchema };\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,uBAAqB;AACrB,mBAAgE;AAChE,8BAKO;AACP,oBAAyE;AACzE,uBAA0B;AAC1B,0BAA6B;AAC7B,mBAA8B;AAC9B,gCAAmC;AAInC,MAAM,WAAgD,CAAC,UAAU;AAC/D,QAAM,mBAAmB,0DAA6B,OAAO;AAC7D,QAAM,CAAC,UAAU,eAAe,2BAAoB,EAAE,UAAU,OAAO,SAAS;AAEhF,8DAA+B,kBAAkB;AAEjD,QAAM,EAAE,UAAU,QAAQ,gBAAgB,UAAU,MAAM,iBAAiB,WAAW,SAAS;AAE/F,QAAM,eAAe,yBAA8B;AAEnD,QAAM,qBAAqB,8BACzB,CAAC,MAAwB;AACvB,QAAK,EAAE,OAA0B,QAAQ;AAAU;AAAA,KAErD,CAAC;AAGH,QAAM,kBAAkB,8BACtB,CAAC,MAA2B;AAC1B,QAAI,EAAE,QAAQ;AAAU;AAAA,KAE1B,CAAC;AAGH,8BAAU,MAAM;AACd,UAAM,OAAO,SAAS,qBAAqB,QAAQ;AACnD,UAAM,EAAE,cAAc,iBAAiB;AACvC,UAAM,UAAU,OAAO,iBAAiB,MAAM,OAAO,iBAAiB;AAEtE,QAAI,CAAC;AAAQ,aAAO,YAAY,EAAE,UAAU,OAAO,SAAS;AAE5D,WAAO,YAAY;AAAA,MACjB,UAAU,eAAe;AAAA,MACzB;AAAA;AAAA,KAED,CAAC;AAEJ,8BAAU,MAAM;AACd,QAAI,UAAU,CAAC;AAAiB,oBAAc,SAAS;AAAA,KACtD,CAAC,QAAQ;AAEZ,QAAM,mBAAmB,oDAAuB,kBAAkB,EAAE,SAAS;AAE7E,MAAI,QAAQ;AACV,WAAO,yBAAS,aACd,mDAAC,sCAAD;AAAA,MACE,SAAS;AAAA,MACT,iBAAa;AAAA,MACb,eAAa,6CAAmB;AAAA,MAChC;AAAA,SACI;AAAA,OAEJ,mDAAC,yBAAD;AAAA,MAAW;AAAA,QACX,mDAAC,qCAAD;AAAA,MACE,MAAK;AAAA,MACL,cAAU;AAAA,MACV,KAAK;AAAA,MACL,UAAU,CAAC,kBAAkB,IAAI;AAAA,MACjC,WAAW;AAAA,SACP,gCAAc;AAAA,MAClB;AAAA,MACA;AAAA,MACA,eAAa,6CAAmB;AAAA,OAE/B,YAGL,SAAS,qBAAqB,QAAQ;AAAA;AAI1C,SAAO;AAAA;AAGT,SAAS,YAAY;AAErB,MAAM,qBAAqB,sCAAS;AACpC,mBAAmB,YAAY;",
6
+ "names": []
7
+ }
@@ -1,10 +1,38 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
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 DSDialogDatatestid_exports = {};
29
+ __export(DSDialogDatatestid_exports, {
30
+ DSDialogDatatestid: () => DSDialogDatatestid
31
+ });
32
+ var React = __toESM(require("react"));
5
33
  const DSDialogDatatestid = {
6
- CONTAINER: 'ds-dialog-container',
7
- BACKGROUND: 'ds-dialog-background'
34
+ CONTAINER: "ds-dialog-container",
35
+ BACKGROUND: "ds-dialog-background"
8
36
  };
9
-
10
- exports.DSDialogDatatestid = DSDialogDatatestid;
37
+ module.exports = __toCommonJS(DSDialogDatatestid_exports);
38
+ //# sourceMappingURL=DSDialogDatatestid.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/DSDialogDatatestid.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["export const DSDialogDatatestid = {\n CONTAINER: 'ds-dialog-container',\n BACKGROUND: 'ds-dialog-background',\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAhB,MAAM,qBAAqB;AAAA,EAChC,WAAW;AAAA,EACX,YAAY;AAAA;",
6
+ "names": []
7
+ }
@@ -1,2 +1,27 @@
1
- 'use strict';
2
-
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 __reExport = (target, module2, copyDefault, desc) => {
9
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
10
+ for (let key of __getOwnPropNames(module2))
11
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
12
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
13
+ }
14
+ return target;
15
+ };
16
+ var __toESM = (module2, isNodeMode) => {
17
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
18
+ };
19
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
20
+ return (module2, temp) => {
21
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
22
+ };
23
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
24
+ var DSDialogInternalTypes_exports = {};
25
+ var React = __toESM(require("react"));
26
+ module.exports = __toCommonJS(DSDialogInternalTypes_exports);
27
+ //# sourceMappingURL=DSDialogInternalTypes.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/DSDialogInternalTypes.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["import type { DSDialogPropsT, Sizes } from './DSDialogTypes';\n\nexport interface BodyInfoT {\n overflow: boolean;\n padding: string;\n}\n\nexport interface DSDialogDefaultPropsT {\n isOpen: boolean;\n centered: boolean;\n size: Sizes;\n removeAutoFocus: boolean;\n onClickOutside: () => void;\n zIndex: number;\n}\n\nexport interface StyledDialogContainerPropsT {\n size: Sizes;\n centered: boolean;\n}\n\nexport interface StyledDialogBackgroundT {\n zIndex: number;\n}\n\nexport interface FixedBodyT {\n isBodyOverflow: boolean;\n}\n\nexport type DSDialogPropsWithDefaultT = Required<DSDialogPropsT>;\n\nexport type GetSpaceArgsT = Partial<Record<string, string | number>>;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;ACAA,YAAuB;",
6
+ "names": []
7
+ }
@@ -1,2 +1,27 @@
1
- 'use strict';
2
-
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 __reExport = (target, module2, copyDefault, desc) => {
9
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
10
+ for (let key of __getOwnPropNames(module2))
11
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
12
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
13
+ }
14
+ return target;
15
+ };
16
+ var __toESM = (module2, isNodeMode) => {
17
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
18
+ };
19
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
20
+ return (module2, temp) => {
21
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
22
+ };
23
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
24
+ var DSDialogTypes_exports = {};
25
+ var React = __toESM(require("react"));
26
+ module.exports = __toCommonJS(DSDialogTypes_exports);
27
+ //# sourceMappingURL=DSDialogTypes.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/DSDialogTypes.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["export type Sizes = 'default' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large';\n\nexport interface DSDialogPropsT {\n isOpen?: boolean;\n children: React.ReactNode;\n onClickOutside?: () => void;\n size?: Sizes;\n centered?: boolean;\n removeAutoFocus?: boolean;\n zIndex?: number;\n}\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;ACAA,YAAuB;",
6
+ "names": []
7
+ }
@@ -1,18 +1,45 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var utils = require('./utils.js');
6
-
7
- const noop = () => {};
8
-
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 defaultProps_exports = {};
29
+ __export(defaultProps_exports, {
30
+ defaultProps: () => defaultProps
31
+ });
32
+ var React = __toESM(require("react"));
33
+ var import_utils = require("./utils");
34
+ const noop = () => {
35
+ };
9
36
  const defaultProps = {
10
37
  isOpen: false,
11
38
  centered: false,
12
- size: utils.DSDialogSizes.DEFAULT,
39
+ size: import_utils.DSDialogSizes.DEFAULT,
13
40
  removeAutoFocus: false,
14
41
  onClickOutside: noop,
15
42
  zIndex: 10
16
43
  };
17
-
18
- exports.defaultProps = defaultProps;
44
+ module.exports = __toCommonJS(defaultProps_exports);
45
+ //# sourceMappingURL=defaultProps.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/defaultProps.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["import { DSDialogSizes } from './utils';\nimport type { DSDialogDefaultPropsT } from './DSDialogInternalTypes';\n\nconst noop = () => {};\n\nexport const defaultProps: DSDialogDefaultPropsT = {\n isOpen: false,\n centered: false,\n size: DSDialogSizes.DEFAULT,\n removeAutoFocus: false,\n onClickOutside: noop,\n zIndex: 10,\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAA8B;AAG9B,MAAM,OAAO,MAAM;AAAA;AAEZ,MAAM,eAAsC;AAAA,EACjD,QAAQ;AAAA,EACR,UAAU;AAAA,EACV,MAAM,2BAAc;AAAA,EACpB,iBAAiB;AAAA,EACjB,gBAAgB;AAAA,EAChB,QAAQ;AAAA;",
6
+ "names": []
7
+ }
package/cjs/index.js CHANGED
@@ -1,24 +1,94 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var DSDialog = require('./DSDialog.js');
6
- var DSDialogDatatestid = require('./DSDialogDatatestid.js');
7
- var utils = require('./utils.js');
8
- var styles = require('./styles.js');
9
-
10
-
11
-
12
- exports.DSDialog = DSDialog.DSDialog;
13
- exports.DSDialogWithSchema = DSDialog.DSDialogWithSchema;
14
- exports.DSDialogDatatestid = DSDialogDatatestid.DSDialogDatatestid;
15
- exports.DSDialogSizes = utils.DSDialogSizes;
16
- exports.DSDialogAddon = styles.DSDialogAddon;
17
- exports.DSDialogBody = styles.DSDialogBody;
18
- exports.DSDialogDefaultLayout = styles.DSDialogDefaultLayout;
19
- exports.DSDialogFooter = styles.DSDialogFooter;
20
- exports.DSDialogHeader = styles.DSDialogHeader;
21
- exports.DSDialogPrimaryMessage = styles.DSDialogPrimaryMessage;
22
- exports.DSDialogSecondaryMessage = styles.DSDialogSecondaryMessage;
23
- exports.DSDialogSeparator = styles.DSDialogSeparator;
24
- exports.DSDialogTitle = styles.DSDialogTitle;
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
+ DSDialogAddon: () => import_styles.DSDialogAddon,
31
+ DSDialogAddonWithSchema: () => DSDialogAddonWithSchema,
32
+ DSDialogBody: () => import_styles.DSDialogBody,
33
+ DSDialogBodyWithSchema: () => DSDialogBodyWithSchema,
34
+ DSDialogDefaultLayout: () => import_styles.DSDialogDefaultLayout,
35
+ DSDialogDefaultLayoutWithSchema: () => DSDialogDefaultLayoutWithSchema,
36
+ DSDialogFooter: () => import_styles.DSDialogFooter,
37
+ DSDialogFooterWithSchema: () => DSDialogFooterWithSchema,
38
+ DSDialogHeader: () => import_styles.DSDialogHeader,
39
+ DSDialogHeaderWithSchema: () => DSDialogHeaderWithSchema,
40
+ DSDialogPrimaryMessage: () => import_styles.DSDialogPrimaryMessage,
41
+ DSDialogPrimaryMessageWithSchema: () => DSDialogPrimaryMessageWithSchema,
42
+ DSDialogSecondaryMessage: () => import_styles.DSDialogSecondaryMessage,
43
+ DSDialogSecondaryMessageWithSchema: () => DSDialogSecondaryMessageWithSchema,
44
+ DSDialogSeparator: () => import_styles.DSDialogSeparator,
45
+ DSDialogSeparatorWithSchema: () => DSDialogSeparatorWithSchema,
46
+ DSDialogSizes: () => import_utils.DSDialogSizes,
47
+ DSDialogTitle: () => import_styles.DSDialogTitle,
48
+ DSDialogTitleWithSchema: () => DSDialogTitleWithSchema
49
+ });
50
+ var React = __toESM(require("react"));
51
+ var import_react_desc = require("react-desc");
52
+ var import_ds_props_helpers = require("@elliemae/ds-props-helpers");
53
+ var import_styles = require("./styles");
54
+ __reExport(src_exports, require("./DSDialog"));
55
+ __reExport(src_exports, require("./DSDialogDatatestid"));
56
+ var import_utils = require("./utils");
57
+ import_styles.DSDialogBody.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
58
+ import_styles.DSDialogHeader.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
59
+ import_styles.DSDialogFooter.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
60
+ import_styles.DSDialogSeparator.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
61
+ import_styles.DSDialogTitle.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
62
+ import_styles.DSDialogAddon.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
63
+ import_styles.DSDialogDefaultLayout.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
64
+ import_styles.DSDialogPrimaryMessage.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
65
+ import_styles.DSDialogSecondaryMessage.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
66
+ import_styles.DSDialogBody.displayName = "DSDialogBody";
67
+ import_styles.DSDialogHeader.displayName = "DSDialogHeader";
68
+ import_styles.DSDialogFooter.displayName = "DSDialogFooter";
69
+ import_styles.DSDialogSeparator.displayName = "DSDialogSeparator";
70
+ import_styles.DSDialogTitle.displayName = "DSDialogTitle";
71
+ import_styles.DSDialogAddon.displayName = "DSDialogAddon";
72
+ import_styles.DSDialogDefaultLayout.displayName = "DSDialogDefaultLayout";
73
+ import_styles.DSDialogPrimaryMessage.displayName = "DSDialogPrimaryMessage";
74
+ import_styles.DSDialogSecondaryMessage.displayName = "DSDialogSecondaryMessage";
75
+ const DSDialogBodyWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogBody);
76
+ const DSDialogHeaderWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogHeader);
77
+ const DSDialogFooterWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogFooter);
78
+ const DSDialogSeparatorWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogSeparator);
79
+ const DSDialogTitleWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogTitle);
80
+ const DSDialogAddonWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogAddon);
81
+ const DSDialogDefaultLayoutWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogDefaultLayout);
82
+ const DSDialogPrimaryMessageWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogPrimaryMessage);
83
+ const DSDialogSecondaryMessageWithSchema = (0, import_react_desc.describe)(import_styles.DSDialogSecondaryMessage);
84
+ DSDialogBodyWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
85
+ DSDialogHeaderWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
86
+ DSDialogFooterWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
87
+ DSDialogSeparatorWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
88
+ DSDialogTitleWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
89
+ DSDialogAddonWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
90
+ DSDialogDefaultLayoutWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
91
+ DSDialogPrimaryMessageWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
92
+ DSDialogSecondaryMessageWithSchema.propTypes = import_ds_props_helpers.globalAttributesPropTypes;
93
+ module.exports = __toCommonJS(src_exports);
94
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["import { describe } from 'react-desc';\nimport { globalAttributesPropTypes } from '@elliemae/ds-props-helpers';\nimport {\n DSDialogBody,\n DSDialogHeader,\n DSDialogFooter,\n DSDialogSeparator,\n DSDialogTitle,\n DSDialogAddon,\n DSDialogDefaultLayout,\n DSDialogPrimaryMessage,\n DSDialogSecondaryMessage,\n} from './styles';\n\nDSDialogBody.propTypes = globalAttributesPropTypes;\nDSDialogHeader.propTypes = globalAttributesPropTypes;\nDSDialogFooter.propTypes = globalAttributesPropTypes;\nDSDialogSeparator.propTypes = globalAttributesPropTypes;\nDSDialogTitle.propTypes = globalAttributesPropTypes;\nDSDialogAddon.propTypes = globalAttributesPropTypes;\nDSDialogDefaultLayout.propTypes = globalAttributesPropTypes;\nDSDialogPrimaryMessage.propTypes = globalAttributesPropTypes;\nDSDialogSecondaryMessage.propTypes = globalAttributesPropTypes;\nDSDialogBody.displayName = 'DSDialogBody';\nDSDialogHeader.displayName = 'DSDialogHeader';\nDSDialogFooter.displayName = 'DSDialogFooter';\nDSDialogSeparator.displayName = 'DSDialogSeparator';\nDSDialogTitle.displayName = 'DSDialogTitle';\nDSDialogAddon.displayName = 'DSDialogAddon';\nDSDialogDefaultLayout.displayName = 'DSDialogDefaultLayout';\nDSDialogPrimaryMessage.displayName = 'DSDialogPrimaryMessage';\nDSDialogSecondaryMessage.displayName = 'DSDialogSecondaryMessage';\n\nconst DSDialogBodyWithSchema = describe(DSDialogBody);\nconst DSDialogHeaderWithSchema = describe(DSDialogHeader);\nconst DSDialogFooterWithSchema = describe(DSDialogFooter);\nconst DSDialogSeparatorWithSchema = describe(DSDialogSeparator);\nconst DSDialogTitleWithSchema = describe(DSDialogTitle);\nconst DSDialogAddonWithSchema = describe(DSDialogAddon);\nconst DSDialogDefaultLayoutWithSchema = describe(DSDialogDefaultLayout);\nconst DSDialogPrimaryMessageWithSchema = describe(DSDialogPrimaryMessage);\nconst DSDialogSecondaryMessageWithSchema = describe(DSDialogSecondaryMessage);\n\nDSDialogBodyWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogHeaderWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogFooterWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogSeparatorWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogTitleWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogAddonWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogDefaultLayoutWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogPrimaryMessageWithSchema.propTypes = globalAttributesPropTypes;\nDSDialogSecondaryMessageWithSchema.propTypes = globalAttributesPropTypes;\n\nexport * from './DSDialog';\nexport * from './DSDialogDatatestid';\nexport { DSDialogSizes } from './utils';\nexport {\n DSDialogBody,\n DSDialogHeader,\n DSDialogFooter,\n DSDialogSeparator,\n DSDialogTitle,\n DSDialogAddon,\n DSDialogDefaultLayout,\n DSDialogPrimaryMessage,\n DSDialogSecondaryMessage,\n DSDialogBodyWithSchema,\n DSDialogHeaderWithSchema,\n DSDialogFooterWithSchema,\n DSDialogSeparatorWithSchema,\n DSDialogTitleWithSchema,\n DSDialogAddonWithSchema,\n DSDialogDefaultLayoutWithSchema,\n DSDialogPrimaryMessageWithSchema,\n DSDialogSecondaryMessageWithSchema,\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,wBAAyB;AACzB,8BAA0C;AAC1C,oBAUO;AAyCP,wBAAc;AACd,wBAAc;AACd,mBAA8B;AAzC9B,2BAAa,YAAY;AACzB,6BAAe,YAAY;AAC3B,6BAAe,YAAY;AAC3B,gCAAkB,YAAY;AAC9B,4BAAc,YAAY;AAC1B,4BAAc,YAAY;AAC1B,oCAAsB,YAAY;AAClC,qCAAuB,YAAY;AACnC,uCAAyB,YAAY;AACrC,2BAAa,cAAc;AAC3B,6BAAe,cAAc;AAC7B,6BAAe,cAAc;AAC7B,gCAAkB,cAAc;AAChC,4BAAc,cAAc;AAC5B,4BAAc,cAAc;AAC5B,oCAAsB,cAAc;AACpC,qCAAuB,cAAc;AACrC,uCAAyB,cAAc;AAEvC,MAAM,yBAAyB,gCAAS;AACxC,MAAM,2BAA2B,gCAAS;AAC1C,MAAM,2BAA2B,gCAAS;AAC1C,MAAM,8BAA8B,gCAAS;AAC7C,MAAM,0BAA0B,gCAAS;AACzC,MAAM,0BAA0B,gCAAS;AACzC,MAAM,kCAAkC,gCAAS;AACjD,MAAM,mCAAmC,gCAAS;AAClD,MAAM,qCAAqC,gCAAS;AAEpD,uBAAuB,YAAY;AACnC,yBAAyB,YAAY;AACrC,yBAAyB,YAAY;AACrC,4BAA4B,YAAY;AACxC,wBAAwB,YAAY;AACpC,wBAAwB,YAAY;AACpC,gCAAgC,YAAY;AAC5C,iCAAiC,YAAY;AAC7C,mCAAmC,YAAY;",
6
+ "names": []
7
+ }