@elliemae/ds-side-panel 3.37.0-rc.3 → 3.37.0-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/react-desc-prop-types.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["import type { WeakValidationMap } from 'react';\nimport type React from 'react';\nimport type {} from '@elliemae/ds-utilities';\nimport type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-props-helpers';\nimport { PropTypes } from '@elliemae/ds-props-helpers';\n\nexport declare namespace DSSidePanelT {\n export interface IProps {\n children?: React.ReactNode;\n isOpen: boolean;\n footer?: React.ReactNode;\n header?: React.ReactNode;\n panelContent?: React.ReactNode;\n panelWidth: number;\n widthWhenIsClosed: number;\n panelContentOverflow: 'auto' | 'hidden';\n withBorder: boolean;\n withBoxShadow: boolean;\n noGridInfluencer?: boolean;\n side?: 'left' | 'right';\n }\n\n export interface Props extends IProps, Omit<GlobalAttributesT<HTMLDivElement>, keyof IProps>, XstyledProps {}\n}\n\nexport const defaultProps: DSSidePanelT.Props = {\n isOpen: false,\n panelWidth: 300,\n widthWhenIsClosed: 0,\n panelContentOverflow: 'auto',\n withBorder: true,\n withBoxShadow: false,\n};\n\nexport const DSInputTextPropTypes = {\n /**\n * Main content\n */\n children: PropTypes.element.isRequired.description('Main content'),\n /**\n * Should show the slide panel or not\n */\n isOpen: PropTypes.bool.description('Should show the slide panel or not'),\n /**\n * Footer for Slide Panel\n */\n footer: PropTypes.element.description('Footer for Slide Panel'),\n /**\n * Header for Slide Panel instance of SlidePanelHeader\n */\n header: PropTypes.element.description('Header for Slide Panel instance of SlidePanelHeader'),\n /**\n * Content for Slide Panel\n */\n panelContent: PropTypes.element.description('Content for Slide Panel'),\n /**\n * Width of the panel open. eg: 300\n */\n panelWidth: PropTypes.number.description('Width of the panel open. eg: 300'),\n\n widthWhenIsClosed: PropTypes.number.description('Width of the panel closed. eg: 0'),\n panelContentOverflow: PropTypes.oneOf(['auto', 'hidden']).description('Overflow on SidePanel content'),\n withBorder: PropTypes.bool.description('Whether the sidepanel has border or not'),\n withBoxShadow: PropTypes.bool.description('Whether the sidepanel has box shadow or not'),\n noGridInfluencer: PropTypes.bool.description('Whether the sidepanel is grid-influencer or not'),\n side: PropTypes.oneOf(['left', 'right'])\n .description('Wheter to put the side panel on the left or right')\n .defaultValue('right'),\n} as WeakValidationMap<unknown>;\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADIvB,8BAA0B;AAqBnB,MAAM,eAAmC;AAAA,EAC9C,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,mBAAmB;AAAA,EACnB,sBAAsB;AAAA,EACtB,YAAY;AAAA,EACZ,eAAe;AACjB;AAEO,MAAM,uBAAuB;AAAA;AAAA;AAAA;AAAA,EAIlC,UAAU,kCAAU,QAAQ,WAAW,YAAY,cAAc;AAAA;AAAA;AAAA;AAAA,EAIjE,QAAQ,kCAAU,KAAK,YAAY,oCAAoC;AAAA;AAAA;AAAA;AAAA,EAIvE,QAAQ,kCAAU,QAAQ,YAAY,wBAAwB;AAAA;AAAA;AAAA;AAAA,EAI9D,QAAQ,kCAAU,QAAQ,YAAY,qDAAqD;AAAA;AAAA;AAAA;AAAA,EAI3F,cAAc,kCAAU,QAAQ,YAAY,yBAAyB;AAAA;AAAA;AAAA;AAAA,EAIrE,YAAY,kCAAU,OAAO,YAAY,kCAAkC;AAAA,EAE3E,mBAAmB,kCAAU,OAAO,YAAY,kCAAkC;AAAA,EAClF,sBAAsB,kCAAU,MAAM,CAAC,QAAQ,QAAQ,CAAC,EAAE,YAAY,+BAA+B;AAAA,EACrG,YAAY,kCAAU,KAAK,YAAY,yCAAyC;AAAA,EAChF,eAAe,kCAAU,KAAK,YAAY,6CAA6C;AAAA,EACvF,kBAAkB,kCAAU,KAAK,YAAY,iDAAiD;AAAA,EAC9F,MAAM,kCAAU,MAAM,CAAC,QAAQ,OAAO,CAAC,EACpC,YAAY,mDAAmD,EAC/D,aAAa,OAAO;AACzB;",
4
+ "sourcesContent": ["import type { WeakValidationMap } from 'react';\nimport type React from 'react';\nimport type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-props-helpers';\nimport { PropTypes } from '@elliemae/ds-props-helpers';\n\nexport declare namespace DSSidePanelT {\n export interface IProps {\n children?: React.ReactNode;\n isOpen: boolean;\n footer?: React.ReactNode;\n header?: React.ReactNode;\n panelContent?: React.ReactNode;\n panelWidth: number;\n widthWhenIsClosed: number;\n panelContentOverflow: 'auto' | 'hidden';\n withBorder: boolean;\n withBoxShadow: boolean;\n noGridInfluencer?: boolean;\n side?: 'left' | 'right';\n }\n\n export interface Props extends IProps, Omit<GlobalAttributesT<HTMLDivElement>, keyof IProps>, XstyledProps {}\n}\n\nexport const defaultProps: DSSidePanelT.Props = {\n isOpen: false,\n panelWidth: 300,\n widthWhenIsClosed: 0,\n panelContentOverflow: 'auto',\n withBorder: true,\n withBoxShadow: false,\n};\n\nexport const DSInputTextPropTypes = {\n /**\n * Main content\n */\n children: PropTypes.element.isRequired.description('Main content'),\n /**\n * Should show the slide panel or not\n */\n isOpen: PropTypes.bool.description('Should show the slide panel or not'),\n /**\n * Footer for Slide Panel\n */\n footer: PropTypes.element.description('Footer for Slide Panel'),\n /**\n * Header for Slide Panel instance of SlidePanelHeader\n */\n header: PropTypes.element.description('Header for Slide Panel instance of SlidePanelHeader'),\n /**\n * Content for Slide Panel\n */\n panelContent: PropTypes.element.description('Content for Slide Panel'),\n /**\n * Width of the panel open. eg: 300\n */\n panelWidth: PropTypes.number.description('Width of the panel open. eg: 300'),\n\n widthWhenIsClosed: PropTypes.number.description('Width of the panel closed. eg: 0'),\n panelContentOverflow: PropTypes.oneOf(['auto', 'hidden']).description('Overflow on SidePanel content'),\n withBorder: PropTypes.bool.description('Whether the sidepanel has border or not'),\n withBoxShadow: PropTypes.bool.description('Whether the sidepanel has box shadow or not'),\n noGridInfluencer: PropTypes.bool.description('Whether the sidepanel is grid-influencer or not'),\n side: PropTypes.oneOf(['left', 'right'])\n .description('Wheter to put the side panel on the left or right')\n .defaultValue('right'),\n} as WeakValidationMap<unknown>;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADGvB,8BAA0B;AAqBnB,MAAM,eAAmC;AAAA,EAC9C,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,mBAAmB;AAAA,EACnB,sBAAsB;AAAA,EACtB,YAAY;AAAA,EACZ,eAAe;AACjB;AAEO,MAAM,uBAAuB;AAAA;AAAA;AAAA;AAAA,EAIlC,UAAU,kCAAU,QAAQ,WAAW,YAAY,cAAc;AAAA;AAAA;AAAA;AAAA,EAIjE,QAAQ,kCAAU,KAAK,YAAY,oCAAoC;AAAA;AAAA;AAAA;AAAA,EAIvE,QAAQ,kCAAU,QAAQ,YAAY,wBAAwB;AAAA;AAAA;AAAA;AAAA,EAI9D,QAAQ,kCAAU,QAAQ,YAAY,qDAAqD;AAAA;AAAA;AAAA;AAAA,EAI3F,cAAc,kCAAU,QAAQ,YAAY,yBAAyB;AAAA;AAAA;AAAA;AAAA,EAIrE,YAAY,kCAAU,OAAO,YAAY,kCAAkC;AAAA,EAE3E,mBAAmB,kCAAU,OAAO,YAAY,kCAAkC;AAAA,EAClF,sBAAsB,kCAAU,MAAM,CAAC,QAAQ,QAAQ,CAAC,EAAE,YAAY,+BAA+B;AAAA,EACrG,YAAY,kCAAU,KAAK,YAAY,yCAAyC;AAAA,EAChF,eAAe,kCAAU,KAAK,YAAY,6CAA6C;AAAA,EACvF,kBAAkB,kCAAU,KAAK,YAAY,iDAAiD;AAAA,EAC9F,MAAM,kCAAU,MAAM,CAAC,QAAQ,OAAO,CAAC,EACpC,YAAY,mDAAmD,EAC/D,aAAa,OAAO;AACzB;",
6
6
  "names": []
7
7
  }
@@ -33,7 +33,8 @@ __export(useDelayedOpen_exports, {
33
33
  module.exports = __toCommonJS(useDelayedOpen_exports);
34
34
  var React = __toESM(require("react"));
35
35
  var import_react = __toESM(require("react"));
36
- var import_ds_utilities = require("@elliemae/ds-utilities");
36
+ var import_useSideEffectSyntheticEvent = require("./useSideEffectSyntheticEvent.js");
37
+ var import_useLatestValueReferenciallyStable = require("./useLatestValueReferenciallyStable.js");
37
38
  const handleOnIsOpenChange = (latestIsOpen, {
38
39
  setIsOpenAnimated,
39
40
  dynamicPropIsOpen
@@ -50,12 +51,12 @@ const handleOnIsOpenChange = (latestIsOpen, {
50
51
  };
51
52
  const useDelayedOpen = (isOpen) => {
52
53
  const [isOpenAnimated, setIsOpenAnimated] = import_react.default.useState(isOpen);
53
- const dynamicPropIsOpen = (0, import_ds_utilities.useLatestValueReferenciallyStable)(isOpen);
54
+ const dynamicPropIsOpen = (0, import_useLatestValueReferenciallyStable.useLatestValueReferenciallyStable)(isOpen);
54
55
  const cbOpts = import_react.default.useMemo(
55
56
  () => ({ setIsOpenAnimated, dynamicPropIsOpen }),
56
57
  [setIsOpenAnimated, dynamicPropIsOpen]
57
58
  );
58
- (0, import_ds_utilities.useSideEffectSyntheticEvent)(isOpen, handleOnIsOpenChange, cbOpts);
59
+ (0, import_useSideEffectSyntheticEvent.useSideEffectSyntheticEvent)(isOpen, handleOnIsOpenChange, cbOpts);
59
60
  return isOpenAnimated;
60
61
  };
61
62
  //# sourceMappingURL=useDelayedOpen.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/useDelayedOpen.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["import React from 'react';\nimport { useSideEffectSyntheticEvent, useLatestValueReferenciallyStable } from '@elliemae/ds-utilities';\n\nconst handleOnIsOpenChange = (\n latestIsOpen: boolean,\n {\n setIsOpenAnimated,\n dynamicPropIsOpen,\n }: {\n setIsOpenAnimated: React.Dispatch<React.SetStateAction<boolean>>;\n dynamicPropIsOpen: React.MutableRefObject<boolean>;\n },\n) => {\n if (latestIsOpen) {\n // We are opening the side panel, render the content right now\n setIsOpenAnimated(true);\n } else {\n // We are closing the side panel, wait for 300ms to unmount the content\n setTimeout(() => {\n if (!dynamicPropIsOpen.current) {\n setIsOpenAnimated(false);\n }\n }, 300);\n }\n};\n\nexport const useDelayedOpen = (isOpen: boolean) => {\n const [isOpenAnimated, setIsOpenAnimated] = React.useState(isOpen);\n const dynamicPropIsOpen = useLatestValueReferenciallyStable(isOpen);\n const cbOpts = React.useMemo(\n () => ({ setIsOpenAnimated, dynamicPropIsOpen }),\n [setIsOpenAnimated, dynamicPropIsOpen],\n );\n\n useSideEffectSyntheticEvent(isOpen, handleOnIsOpenChange, cbOpts);\n\n return isOpenAnimated;\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAAkB;AAClB,0BAA+E;AAE/E,MAAM,uBAAuB,CAC3B,cACA;AAAA,EACE;AAAA,EACA;AACF,MAIG;AACH,MAAI,cAAc;AAEhB,sBAAkB,IAAI;AAAA,EACxB,OAAO;AAEL,eAAW,MAAM;AACf,UAAI,CAAC,kBAAkB,SAAS;AAC9B,0BAAkB,KAAK;AAAA,MACzB;AAAA,IACF,GAAG,GAAG;AAAA,EACR;AACF;AAEO,MAAM,iBAAiB,CAAC,WAAoB;AACjD,QAAM,CAAC,gBAAgB,iBAAiB,IAAI,aAAAA,QAAM,SAAS,MAAM;AACjE,QAAM,wBAAoB,uDAAkC,MAAM;AAClE,QAAM,SAAS,aAAAA,QAAM;AAAA,IACnB,OAAO,EAAE,mBAAmB,kBAAkB;AAAA,IAC9C,CAAC,mBAAmB,iBAAiB;AAAA,EACvC;AAEA,uDAA4B,QAAQ,sBAAsB,MAAM;AAEhE,SAAO;AACT;",
4
+ "sourcesContent": ["import React from 'react';\nimport { useSideEffectSyntheticEvent } from './useSideEffectSyntheticEvent.js';\nimport { useLatestValueReferenciallyStable } from './useLatestValueReferenciallyStable.js';\n\nconst handleOnIsOpenChange = (\n latestIsOpen: boolean,\n {\n setIsOpenAnimated,\n dynamicPropIsOpen,\n }: {\n setIsOpenAnimated: React.Dispatch<React.SetStateAction<boolean>>;\n dynamicPropIsOpen: React.MutableRefObject<boolean>;\n },\n) => {\n if (latestIsOpen) {\n // We are opening the side panel, render the content right now\n setIsOpenAnimated(true);\n } else {\n // We are closing the side panel, wait for 300ms to unmount the content\n setTimeout(() => {\n if (!dynamicPropIsOpen.current) {\n setIsOpenAnimated(false);\n }\n }, 300);\n }\n};\n\nexport const useDelayedOpen = (isOpen: boolean) => {\n const [isOpenAnimated, setIsOpenAnimated] = React.useState(isOpen);\n const dynamicPropIsOpen = useLatestValueReferenciallyStable(isOpen);\n const cbOpts = React.useMemo(\n () => ({ setIsOpenAnimated, dynamicPropIsOpen }),\n [setIsOpenAnimated, dynamicPropIsOpen],\n );\n\n useSideEffectSyntheticEvent(isOpen, handleOnIsOpenChange, cbOpts);\n\n return isOpenAnimated;\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAAkB;AAClB,yCAA4C;AAC5C,+CAAkD;AAElD,MAAM,uBAAuB,CAC3B,cACA;AAAA,EACE;AAAA,EACA;AACF,MAIG;AACH,MAAI,cAAc;AAEhB,sBAAkB,IAAI;AAAA,EACxB,OAAO;AAEL,eAAW,MAAM;AACf,UAAI,CAAC,kBAAkB,SAAS;AAC9B,0BAAkB,KAAK;AAAA,MACzB;AAAA,IACF,GAAG,GAAG;AAAA,EACR;AACF;AAEO,MAAM,iBAAiB,CAAC,WAAoB;AACjD,QAAM,CAAC,gBAAgB,iBAAiB,IAAI,aAAAA,QAAM,SAAS,MAAM;AACjE,QAAM,wBAAoB,4EAAkC,MAAM;AAClE,QAAM,SAAS,aAAAA,QAAM;AAAA,IACnB,OAAO,EAAE,mBAAmB,kBAAkB;AAAA,IAC9C,CAAC,mBAAmB,iBAAiB;AAAA,EACvC;AAEA,sEAA4B,QAAQ,sBAAsB,MAAM;AAEhE,SAAO;AACT;",
6
6
  "names": ["React"]
7
7
  }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var useLatestValueReferenciallyStable_exports = {};
30
+ __export(useLatestValueReferenciallyStable_exports, {
31
+ useLatestValueReferenciallyStable: () => useLatestValueReferenciallyStable
32
+ });
33
+ module.exports = __toCommonJS(useLatestValueReferenciallyStable_exports);
34
+ var React = __toESM(require("react"));
35
+ var import_react = require("react");
36
+ const useLatestValueReferenciallyStable = (referenceVar) => {
37
+ const mutable = (0, import_react.useRef)(referenceVar);
38
+ (0, import_react.useEffect)(() => {
39
+ mutable.current = referenceVar;
40
+ }, [referenceVar]);
41
+ return mutable;
42
+ };
43
+ //# sourceMappingURL=useLatestValueReferenciallyStable.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/useLatestValueReferenciallyStable.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["import type React from 'react';\nimport { useRef, useEffect } from 'react';\ntype UseMakeMutable = <T>(referenceVar: T) => React.MutableRefObject<T>;\n\nexport const useLatestValueReferenciallyStable: UseMakeMutable = (referenceVar) => {\n const mutable = useRef(referenceVar);\n useEffect(() => {\n mutable.current = referenceVar;\n }, [referenceVar]);\n return mutable;\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADCvB,mBAAkC;AAG3B,MAAM,oCAAoD,CAAC,iBAAiB;AACjF,QAAM,cAAU,qBAAO,YAAY;AACnC,8BAAU,MAAM;AACd,YAAQ,UAAU;AAAA,EACpB,GAAG,CAAC,YAAY,CAAC;AACjB,SAAO;AACT;",
6
+ "names": []
7
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var useSideEffectSyntheticEvent_exports = {};
30
+ __export(useSideEffectSyntheticEvent_exports, {
31
+ useSideEffectSyntheticEvent: () => useSideEffectSyntheticEvent
32
+ });
33
+ module.exports = __toCommonJS(useSideEffectSyntheticEvent_exports);
34
+ var React = __toESM(require("react"));
35
+ var import_react = __toESM(require("react"));
36
+ var import_useLatestValueReferenciallyStable = require("./useLatestValueReferenciallyStable.js");
37
+ const useSideEffectSyntheticEvent = (dependency, callback, callbackOpts) => {
38
+ const refCb = (0, import_useLatestValueReferenciallyStable.useLatestValueReferenciallyStable)(callback);
39
+ const refCbOpts = (0, import_useLatestValueReferenciallyStable.useLatestValueReferenciallyStable)(callbackOpts);
40
+ import_react.default.useEffect(() => {
41
+ refCb?.current?.(dependency, refCbOpts.current);
42
+ }, [dependency, refCb, refCbOpts]);
43
+ };
44
+ //# sourceMappingURL=useSideEffectSyntheticEvent.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/useSideEffectSyntheticEvent.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["import React from 'react';\nimport { useLatestValueReferenciallyStable } from './useLatestValueReferenciallyStable.js';\n/**\n * This is a custom hook that allows us to simulate a synthetic event. This ensure we only trigger a side effect when a specific variable(dependency) changes.\n * @param {any} dependency - the variable that we want to listen to\n * @param {Function} callback - the callback that we want to execute when the dependency changes\n * @param {object} callbackOpts - the options to be passed to the callback function\n * @returns {void}\n * @invoke useLatestValueReferenciallyStable\n */\nexport const useSideEffectSyntheticEvent = <T, CBOpts>(\n dependency: T,\n callback: (latestVal: T, opts: CBOpts) => void,\n callbackOpts: CBOpts,\n) => {\n const refCb = useLatestValueReferenciallyStable(callback);\n const refCbOpts = useLatestValueReferenciallyStable(callbackOpts);\n // this is the useEffect that simulates the event\n React.useEffect(() => {\n refCb?.current?.(dependency, refCbOpts.current);\n // the point of this custom hook is making sure we only listen to the dependency and nothing else\n // without violating the rules of hooks/exhaustive-deps rule and making it explicit that we want to simulate an event\n // refCb & refCbOpts are forced to be referentially stable, so we can safely put it in the dependency array\n }, [dependency, refCb, refCbOpts]);\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAAkB;AAClB,+CAAkD;AAS3C,MAAM,8BAA8B,CACzC,YACA,UACA,iBACG;AACH,QAAM,YAAQ,4EAAkC,QAAQ;AACxD,QAAM,gBAAY,4EAAkC,YAAY;AAEhE,eAAAA,QAAM,UAAU,MAAM;AACpB,WAAO,UAAU,YAAY,UAAU,OAAO;AAAA,EAIhD,GAAG,CAAC,YAAY,OAAO,SAAS,CAAC;AACnC;",
6
+ "names": ["React"]
7
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/react-desc-prop-types.ts"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type { WeakValidationMap } from 'react';\nimport type React from 'react';\nimport type {} from '@elliemae/ds-utilities';\nimport type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-props-helpers';\nimport { PropTypes } from '@elliemae/ds-props-helpers';\n\nexport declare namespace DSSidePanelT {\n export interface IProps {\n children?: React.ReactNode;\n isOpen: boolean;\n footer?: React.ReactNode;\n header?: React.ReactNode;\n panelContent?: React.ReactNode;\n panelWidth: number;\n widthWhenIsClosed: number;\n panelContentOverflow: 'auto' | 'hidden';\n withBorder: boolean;\n withBoxShadow: boolean;\n noGridInfluencer?: boolean;\n side?: 'left' | 'right';\n }\n\n export interface Props extends IProps, Omit<GlobalAttributesT<HTMLDivElement>, keyof IProps>, XstyledProps {}\n}\n\nexport const defaultProps: DSSidePanelT.Props = {\n isOpen: false,\n panelWidth: 300,\n widthWhenIsClosed: 0,\n panelContentOverflow: 'auto',\n withBorder: true,\n withBoxShadow: false,\n};\n\nexport const DSInputTextPropTypes = {\n /**\n * Main content\n */\n children: PropTypes.element.isRequired.description('Main content'),\n /**\n * Should show the slide panel or not\n */\n isOpen: PropTypes.bool.description('Should show the slide panel or not'),\n /**\n * Footer for Slide Panel\n */\n footer: PropTypes.element.description('Footer for Slide Panel'),\n /**\n * Header for Slide Panel instance of SlidePanelHeader\n */\n header: PropTypes.element.description('Header for Slide Panel instance of SlidePanelHeader'),\n /**\n * Content for Slide Panel\n */\n panelContent: PropTypes.element.description('Content for Slide Panel'),\n /**\n * Width of the panel open. eg: 300\n */\n panelWidth: PropTypes.number.description('Width of the panel open. eg: 300'),\n\n widthWhenIsClosed: PropTypes.number.description('Width of the panel closed. eg: 0'),\n panelContentOverflow: PropTypes.oneOf(['auto', 'hidden']).description('Overflow on SidePanel content'),\n withBorder: PropTypes.bool.description('Whether the sidepanel has border or not'),\n withBoxShadow: PropTypes.bool.description('Whether the sidepanel has box shadow or not'),\n noGridInfluencer: PropTypes.bool.description('Whether the sidepanel is grid-influencer or not'),\n side: PropTypes.oneOf(['left', 'right'])\n .description('Wheter to put the side panel on the left or right')\n .defaultValue('right'),\n} as WeakValidationMap<unknown>;\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACIvB,SAAS,iBAAiB;AAqBnB,MAAM,eAAmC;AAAA,EAC9C,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,mBAAmB;AAAA,EACnB,sBAAsB;AAAA,EACtB,YAAY;AAAA,EACZ,eAAe;AACjB;AAEO,MAAM,uBAAuB;AAAA;AAAA;AAAA;AAAA,EAIlC,UAAU,UAAU,QAAQ,WAAW,YAAY,cAAc;AAAA;AAAA;AAAA;AAAA,EAIjE,QAAQ,UAAU,KAAK,YAAY,oCAAoC;AAAA;AAAA;AAAA;AAAA,EAIvE,QAAQ,UAAU,QAAQ,YAAY,wBAAwB;AAAA;AAAA;AAAA;AAAA,EAI9D,QAAQ,UAAU,QAAQ,YAAY,qDAAqD;AAAA;AAAA;AAAA;AAAA,EAI3F,cAAc,UAAU,QAAQ,YAAY,yBAAyB;AAAA;AAAA;AAAA;AAAA,EAIrE,YAAY,UAAU,OAAO,YAAY,kCAAkC;AAAA,EAE3E,mBAAmB,UAAU,OAAO,YAAY,kCAAkC;AAAA,EAClF,sBAAsB,UAAU,MAAM,CAAC,QAAQ,QAAQ,CAAC,EAAE,YAAY,+BAA+B;AAAA,EACrG,YAAY,UAAU,KAAK,YAAY,yCAAyC;AAAA,EAChF,eAAe,UAAU,KAAK,YAAY,6CAA6C;AAAA,EACvF,kBAAkB,UAAU,KAAK,YAAY,iDAAiD;AAAA,EAC9F,MAAM,UAAU,MAAM,CAAC,QAAQ,OAAO,CAAC,EACpC,YAAY,mDAAmD,EAC/D,aAAa,OAAO;AACzB;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type { WeakValidationMap } from 'react';\nimport type React from 'react';\nimport type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-props-helpers';\nimport { PropTypes } from '@elliemae/ds-props-helpers';\n\nexport declare namespace DSSidePanelT {\n export interface IProps {\n children?: React.ReactNode;\n isOpen: boolean;\n footer?: React.ReactNode;\n header?: React.ReactNode;\n panelContent?: React.ReactNode;\n panelWidth: number;\n widthWhenIsClosed: number;\n panelContentOverflow: 'auto' | 'hidden';\n withBorder: boolean;\n withBoxShadow: boolean;\n noGridInfluencer?: boolean;\n side?: 'left' | 'right';\n }\n\n export interface Props extends IProps, Omit<GlobalAttributesT<HTMLDivElement>, keyof IProps>, XstyledProps {}\n}\n\nexport const defaultProps: DSSidePanelT.Props = {\n isOpen: false,\n panelWidth: 300,\n widthWhenIsClosed: 0,\n panelContentOverflow: 'auto',\n withBorder: true,\n withBoxShadow: false,\n};\n\nexport const DSInputTextPropTypes = {\n /**\n * Main content\n */\n children: PropTypes.element.isRequired.description('Main content'),\n /**\n * Should show the slide panel or not\n */\n isOpen: PropTypes.bool.description('Should show the slide panel or not'),\n /**\n * Footer for Slide Panel\n */\n footer: PropTypes.element.description('Footer for Slide Panel'),\n /**\n * Header for Slide Panel instance of SlidePanelHeader\n */\n header: PropTypes.element.description('Header for Slide Panel instance of SlidePanelHeader'),\n /**\n * Content for Slide Panel\n */\n panelContent: PropTypes.element.description('Content for Slide Panel'),\n /**\n * Width of the panel open. eg: 300\n */\n panelWidth: PropTypes.number.description('Width of the panel open. eg: 300'),\n\n widthWhenIsClosed: PropTypes.number.description('Width of the panel closed. eg: 0'),\n panelContentOverflow: PropTypes.oneOf(['auto', 'hidden']).description('Overflow on SidePanel content'),\n withBorder: PropTypes.bool.description('Whether the sidepanel has border or not'),\n withBoxShadow: PropTypes.bool.description('Whether the sidepanel has box shadow or not'),\n noGridInfluencer: PropTypes.bool.description('Whether the sidepanel is grid-influencer or not'),\n side: PropTypes.oneOf(['left', 'right'])\n .description('Wheter to put the side panel on the left or right')\n .defaultValue('right'),\n} as WeakValidationMap<unknown>;\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACGvB,SAAS,iBAAiB;AAqBnB,MAAM,eAAmC;AAAA,EAC9C,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,mBAAmB;AAAA,EACnB,sBAAsB;AAAA,EACtB,YAAY;AAAA,EACZ,eAAe;AACjB;AAEO,MAAM,uBAAuB;AAAA;AAAA;AAAA;AAAA,EAIlC,UAAU,UAAU,QAAQ,WAAW,YAAY,cAAc;AAAA;AAAA;AAAA;AAAA,EAIjE,QAAQ,UAAU,KAAK,YAAY,oCAAoC;AAAA;AAAA;AAAA;AAAA,EAIvE,QAAQ,UAAU,QAAQ,YAAY,wBAAwB;AAAA;AAAA;AAAA;AAAA,EAI9D,QAAQ,UAAU,QAAQ,YAAY,qDAAqD;AAAA;AAAA;AAAA;AAAA,EAI3F,cAAc,UAAU,QAAQ,YAAY,yBAAyB;AAAA;AAAA;AAAA;AAAA,EAIrE,YAAY,UAAU,OAAO,YAAY,kCAAkC;AAAA,EAE3E,mBAAmB,UAAU,OAAO,YAAY,kCAAkC;AAAA,EAClF,sBAAsB,UAAU,MAAM,CAAC,QAAQ,QAAQ,CAAC,EAAE,YAAY,+BAA+B;AAAA,EACrG,YAAY,UAAU,KAAK,YAAY,yCAAyC;AAAA,EAChF,eAAe,UAAU,KAAK,YAAY,6CAA6C;AAAA,EACvF,kBAAkB,UAAU,KAAK,YAAY,iDAAiD;AAAA,EAC9F,MAAM,UAAU,MAAM,CAAC,QAAQ,OAAO,CAAC,EACpC,YAAY,mDAAmD,EAC/D,aAAa,OAAO;AACzB;",
6
6
  "names": []
7
7
  }
@@ -1,6 +1,7 @@
1
1
  import * as React from "react";
2
2
  import React2 from "react";
3
- import { useSideEffectSyntheticEvent, useLatestValueReferenciallyStable } from "@elliemae/ds-utilities";
3
+ import { useSideEffectSyntheticEvent } from "./useSideEffectSyntheticEvent.js";
4
+ import { useLatestValueReferenciallyStable } from "./useLatestValueReferenciallyStable.js";
4
5
  const handleOnIsOpenChange = (latestIsOpen, {
5
6
  setIsOpenAnimated,
6
7
  dynamicPropIsOpen
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/useDelayedOpen.ts"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { useSideEffectSyntheticEvent, useLatestValueReferenciallyStable } from '@elliemae/ds-utilities';\n\nconst handleOnIsOpenChange = (\n latestIsOpen: boolean,\n {\n setIsOpenAnimated,\n dynamicPropIsOpen,\n }: {\n setIsOpenAnimated: React.Dispatch<React.SetStateAction<boolean>>;\n dynamicPropIsOpen: React.MutableRefObject<boolean>;\n },\n) => {\n if (latestIsOpen) {\n // We are opening the side panel, render the content right now\n setIsOpenAnimated(true);\n } else {\n // We are closing the side panel, wait for 300ms to unmount the content\n setTimeout(() => {\n if (!dynamicPropIsOpen.current) {\n setIsOpenAnimated(false);\n }\n }, 300);\n }\n};\n\nexport const useDelayedOpen = (isOpen: boolean) => {\n const [isOpenAnimated, setIsOpenAnimated] = React.useState(isOpen);\n const dynamicPropIsOpen = useLatestValueReferenciallyStable(isOpen);\n const cbOpts = React.useMemo(\n () => ({ setIsOpenAnimated, dynamicPropIsOpen }),\n [setIsOpenAnimated, dynamicPropIsOpen],\n );\n\n useSideEffectSyntheticEvent(isOpen, handleOnIsOpenChange, cbOpts);\n\n return isOpenAnimated;\n};\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAvB,OAAOA,YAAW;AAClB,SAAS,6BAA6B,yCAAyC;AAE/E,MAAM,uBAAuB,CAC3B,cACA;AAAA,EACE;AAAA,EACA;AACF,MAIG;AACH,MAAI,cAAc;AAEhB,sBAAkB,IAAI;AAAA,EACxB,OAAO;AAEL,eAAW,MAAM;AACf,UAAI,CAAC,kBAAkB,SAAS;AAC9B,0BAAkB,KAAK;AAAA,MACzB;AAAA,IACF,GAAG,GAAG;AAAA,EACR;AACF;AAEO,MAAM,iBAAiB,CAAC,WAAoB;AACjD,QAAM,CAAC,gBAAgB,iBAAiB,IAAIA,OAAM,SAAS,MAAM;AACjE,QAAM,oBAAoB,kCAAkC,MAAM;AAClE,QAAM,SAASA,OAAM;AAAA,IACnB,OAAO,EAAE,mBAAmB,kBAAkB;AAAA,IAC9C,CAAC,mBAAmB,iBAAiB;AAAA,EACvC;AAEA,8BAA4B,QAAQ,sBAAsB,MAAM;AAEhE,SAAO;AACT;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { useSideEffectSyntheticEvent } from './useSideEffectSyntheticEvent.js';\nimport { useLatestValueReferenciallyStable } from './useLatestValueReferenciallyStable.js';\n\nconst handleOnIsOpenChange = (\n latestIsOpen: boolean,\n {\n setIsOpenAnimated,\n dynamicPropIsOpen,\n }: {\n setIsOpenAnimated: React.Dispatch<React.SetStateAction<boolean>>;\n dynamicPropIsOpen: React.MutableRefObject<boolean>;\n },\n) => {\n if (latestIsOpen) {\n // We are opening the side panel, render the content right now\n setIsOpenAnimated(true);\n } else {\n // We are closing the side panel, wait for 300ms to unmount the content\n setTimeout(() => {\n if (!dynamicPropIsOpen.current) {\n setIsOpenAnimated(false);\n }\n }, 300);\n }\n};\n\nexport const useDelayedOpen = (isOpen: boolean) => {\n const [isOpenAnimated, setIsOpenAnimated] = React.useState(isOpen);\n const dynamicPropIsOpen = useLatestValueReferenciallyStable(isOpen);\n const cbOpts = React.useMemo(\n () => ({ setIsOpenAnimated, dynamicPropIsOpen }),\n [setIsOpenAnimated, dynamicPropIsOpen],\n );\n\n useSideEffectSyntheticEvent(isOpen, handleOnIsOpenChange, cbOpts);\n\n return isOpenAnimated;\n};\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACAvB,OAAOA,YAAW;AAClB,SAAS,mCAAmC;AAC5C,SAAS,yCAAyC;AAElD,MAAM,uBAAuB,CAC3B,cACA;AAAA,EACE;AAAA,EACA;AACF,MAIG;AACH,MAAI,cAAc;AAEhB,sBAAkB,IAAI;AAAA,EACxB,OAAO;AAEL,eAAW,MAAM;AACf,UAAI,CAAC,kBAAkB,SAAS;AAC9B,0BAAkB,KAAK;AAAA,MACzB;AAAA,IACF,GAAG,GAAG;AAAA,EACR;AACF;AAEO,MAAM,iBAAiB,CAAC,WAAoB;AACjD,QAAM,CAAC,gBAAgB,iBAAiB,IAAIA,OAAM,SAAS,MAAM;AACjE,QAAM,oBAAoB,kCAAkC,MAAM;AAClE,QAAM,SAASA,OAAM;AAAA,IACnB,OAAO,EAAE,mBAAmB,kBAAkB;AAAA,IAC9C,CAAC,mBAAmB,iBAAiB;AAAA,EACvC;AAEA,8BAA4B,QAAQ,sBAAsB,MAAM;AAEhE,SAAO;AACT;",
6
6
  "names": ["React"]
7
7
  }
@@ -0,0 +1,13 @@
1
+ import * as React from "react";
2
+ import { useRef, useEffect } from "react";
3
+ const useLatestValueReferenciallyStable = (referenceVar) => {
4
+ const mutable = useRef(referenceVar);
5
+ useEffect(() => {
6
+ mutable.current = referenceVar;
7
+ }, [referenceVar]);
8
+ return mutable;
9
+ };
10
+ export {
11
+ useLatestValueReferenciallyStable
12
+ };
13
+ //# sourceMappingURL=useLatestValueReferenciallyStable.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/useLatestValueReferenciallyStable.ts"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type React from 'react';\nimport { useRef, useEffect } from 'react';\ntype UseMakeMutable = <T>(referenceVar: T) => React.MutableRefObject<T>;\n\nexport const useLatestValueReferenciallyStable: UseMakeMutable = (referenceVar) => {\n const mutable = useRef(referenceVar);\n useEffect(() => {\n mutable.current = referenceVar;\n }, [referenceVar]);\n return mutable;\n};\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACCvB,SAAS,QAAQ,iBAAiB;AAG3B,MAAM,oCAAoD,CAAC,iBAAiB;AACjF,QAAM,UAAU,OAAO,YAAY;AACnC,YAAU,MAAM;AACd,YAAQ,UAAU;AAAA,EACpB,GAAG,CAAC,YAAY,CAAC;AACjB,SAAO;AACT;",
6
+ "names": []
7
+ }
@@ -0,0 +1,14 @@
1
+ import * as React from "react";
2
+ import React2 from "react";
3
+ import { useLatestValueReferenciallyStable } from "./useLatestValueReferenciallyStable.js";
4
+ const useSideEffectSyntheticEvent = (dependency, callback, callbackOpts) => {
5
+ const refCb = useLatestValueReferenciallyStable(callback);
6
+ const refCbOpts = useLatestValueReferenciallyStable(callbackOpts);
7
+ React2.useEffect(() => {
8
+ refCb?.current?.(dependency, refCbOpts.current);
9
+ }, [dependency, refCb, refCbOpts]);
10
+ };
11
+ export {
12
+ useSideEffectSyntheticEvent
13
+ };
14
+ //# sourceMappingURL=useSideEffectSyntheticEvent.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/useSideEffectSyntheticEvent.ts"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { useLatestValueReferenciallyStable } from './useLatestValueReferenciallyStable.js';\n/**\n * This is a custom hook that allows us to simulate a synthetic event. This ensure we only trigger a side effect when a specific variable(dependency) changes.\n * @param {any} dependency - the variable that we want to listen to\n * @param {Function} callback - the callback that we want to execute when the dependency changes\n * @param {object} callbackOpts - the options to be passed to the callback function\n * @returns {void}\n * @invoke useLatestValueReferenciallyStable\n */\nexport const useSideEffectSyntheticEvent = <T, CBOpts>(\n dependency: T,\n callback: (latestVal: T, opts: CBOpts) => void,\n callbackOpts: CBOpts,\n) => {\n const refCb = useLatestValueReferenciallyStable(callback);\n const refCbOpts = useLatestValueReferenciallyStable(callbackOpts);\n // this is the useEffect that simulates the event\n React.useEffect(() => {\n refCb?.current?.(dependency, refCbOpts.current);\n // the point of this custom hook is making sure we only listen to the dependency and nothing else\n // without violating the rules of hooks/exhaustive-deps rule and making it explicit that we want to simulate an event\n // refCb & refCbOpts are forced to be referentially stable, so we can safely put it in the dependency array\n }, [dependency, refCb, refCbOpts]);\n};\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACAvB,OAAOA,YAAW;AAClB,SAAS,yCAAyC;AAS3C,MAAM,8BAA8B,CACzC,YACA,UACA,iBACG;AACH,QAAM,QAAQ,kCAAkC,QAAQ;AACxD,QAAM,YAAY,kCAAkC,YAAY;AAEhE,EAAAA,OAAM,UAAU,MAAM;AACpB,WAAO,UAAU,YAAY,UAAU,OAAO;AAAA,EAIhD,GAAG,CAAC,YAAY,OAAO,SAAS,CAAC;AACnC;",
6
+ "names": ["React"]
7
+ }
@@ -0,0 +1,4 @@
1
+ import type React from 'react';
2
+ type UseMakeMutable = <T>(referenceVar: T) => React.MutableRefObject<T>;
3
+ export declare const useLatestValueReferenciallyStable: UseMakeMutable;
4
+ export {};
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a custom hook that allows us to simulate a synthetic event. This ensure we only trigger a side effect when a specific variable(dependency) changes.
3
+ * @param {any} dependency - the variable that we want to listen to
4
+ * @param {Function} callback - the callback that we want to execute when the dependency changes
5
+ * @param {object} callbackOpts - the options to be passed to the callback function
6
+ * @returns {void}
7
+ * @invoke useLatestValueReferenciallyStable
8
+ */
9
+ export declare const useSideEffectSyntheticEvent: <T, CBOpts>(dependency: T, callback: (latestVal: T, opts: CBOpts) => void, callbackOpts: CBOpts) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-side-panel",
3
- "version": "3.37.0-rc.3",
3
+ "version": "3.37.0-rc.5",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Side Panel",
6
6
  "files": [
@@ -56,18 +56,17 @@
56
56
  "indent": 4
57
57
  },
58
58
  "dependencies": {
59
- "@elliemae/ds-button-v2": "3.37.0-rc.3",
60
- "@elliemae/ds-grid": "3.37.0-rc.3",
61
- "@elliemae/ds-icons": "3.37.0-rc.3",
62
- "@elliemae/ds-props-helpers": "3.37.0-rc.3",
63
- "@elliemae/ds-side-panel-header": "3.37.0-rc.3",
64
- "@elliemae/ds-system": "3.37.0-rc.3",
65
- "@elliemae/ds-utilities": "3.37.0-rc.3"
59
+ "@elliemae/ds-button-v2": "3.37.0-rc.5",
60
+ "@elliemae/ds-grid": "3.37.0-rc.5",
61
+ "@elliemae/ds-icons": "3.37.0-rc.5",
62
+ "@elliemae/ds-props-helpers": "3.37.0-rc.5",
63
+ "@elliemae/ds-system": "3.37.0-rc.5",
64
+ "@elliemae/ds-side-panel-header": "3.37.0-rc.5"
66
65
  },
67
66
  "devDependencies": {
68
67
  "@elliemae/pui-cli": "9.0.0-next.50",
69
68
  "styled-components": "~5.3.9",
70
- "@elliemae/ds-monorepo-devops": "3.37.0-rc.3"
69
+ "@elliemae/ds-monorepo-devops": "3.37.0-rc.5"
71
70
  },
72
71
  "peerDependencies": {
73
72
  "lodash": "^4.17.21",