@elliemae/ds-menu-items-section 3.32.2-next.1 → 3.33.0-next.1

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.
@@ -33,18 +33,15 @@ __export(useMenuItemsSection_exports, {
33
33
  module.exports = __toCommonJS(useMenuItemsSection_exports);
34
34
  var React = __toESM(require("react"));
35
35
  var import_react = __toESM(require("react"));
36
- var import_lodash = require("lodash");
37
36
  var import_ds_props_helpers = require("@elliemae/ds-props-helpers");
38
37
  var import_react_desc_prop_types = require("../react-desc-prop-types.js");
39
38
  var import_useValidateProps = require("./useValidateProps.js");
40
39
  const useMenuItemsSection = (propsFromUser) => {
41
40
  const propsWithDefault = (0, import_ds_props_helpers.useMemoMergePropsWithDefault)(propsFromUser, import_react_desc_prop_types.defaultProps);
42
41
  (0, import_useValidateProps.useValidateProps)(propsWithDefault, import_react_desc_prop_types.DSMenuItemsSectionPropTypes);
43
- const globalProps = (0, import_lodash.omit)((0, import_ds_props_helpers.useGetGlobalAttributes)(propsWithDefault), [
44
- "cols",
45
- "rows",
46
- "wrap"
47
- ]);
42
+ const globalProps = (0, import_ds_props_helpers.useGetGlobalAttributes)(
43
+ propsWithDefault
44
+ );
48
45
  const xstyledProps = (0, import_ds_props_helpers.useGetXstyledProps)(propsWithDefault);
49
46
  return import_react.default.useMemo(
50
47
  () => ({
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/config/useMenuItemsSection.ts", "../../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["import React from 'react';\nimport { omit } from 'lodash';\nimport { useGetGlobalAttributes, useGetXstyledProps, useMemoMergePropsWithDefault } from '@elliemae/ds-props-helpers';\nimport { type DSMenuItemsSectionT, DSMenuItemsSectionPropTypes, defaultProps } from '../react-desc-prop-types.js';\nimport { useValidateProps } from './useValidateProps.js';\n\nexport interface MenuItemsSectionCTX {\n propsWithDefault: DSMenuItemsSectionT.InternalProps;\n globalProps: ReturnType<typeof useGetGlobalAttributes>;\n xstyledProps: ReturnType<typeof useGetXstyledProps>;\n}\n\nexport const useMenuItemsSection = (propsFromUser: DSMenuItemsSectionT.Props) => {\n // =============================================================================\n // MERGE WITH DEFAULT AND VALIDATE PROPS\n // =============================================================================\n const propsWithDefault = useMemoMergePropsWithDefault<DSMenuItemsSectionT.InternalProps>(propsFromUser, defaultProps);\n useValidateProps(propsWithDefault, DSMenuItemsSectionPropTypes);\n // =============================================================================\n // GLOBAL ATTRIBUTES & XSTYLED PROPS\n // =============================================================================\n const globalProps = omit(useGetGlobalAttributes<DSMenuItemsSectionT.InternalProps>(propsWithDefault), [\n 'cols',\n 'rows',\n 'wrap',\n ]);\n const xstyledProps = useGetXstyledProps(propsWithDefault);\n\n return React.useMemo(\n () => ({\n propsWithDefault,\n globalProps,\n xstyledProps,\n }),\n [propsWithDefault, globalProps, xstyledProps],\n );\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAAkB;AAClB,oBAAqB;AACrB,8BAAyF;AACzF,mCAAoF;AACpF,8BAAiC;AAQ1B,MAAM,sBAAsB,CAAC,kBAA6C;AAI/E,QAAM,uBAAmB,sDAAgE,eAAe,yCAAY;AACpH,gDAAiB,kBAAkB,wDAA2B;AAI9D,QAAM,kBAAc,wBAAK,gDAA0D,gBAAgB,GAAG;AAAA,IACpG;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACD,QAAM,mBAAe,4CAAmB,gBAAgB;AAExD,SAAO,aAAAA,QAAM;AAAA,IACX,OAAO;AAAA,MACL;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,CAAC,kBAAkB,aAAa,YAAY;AAAA,EAC9C;AACF;",
4
+ "sourcesContent": ["import React from 'react';\nimport { useGetGlobalAttributes, useGetXstyledProps, useMemoMergePropsWithDefault } from '@elliemae/ds-props-helpers';\nimport { type DSMenuItemsSectionT, DSMenuItemsSectionPropTypes, defaultProps } from '../react-desc-prop-types.js';\nimport { useValidateProps } from './useValidateProps.js';\nimport type { DSGridT } from '@elliemae/ds-grid';\n\nexport interface MenuItemsSectionCTX {\n propsWithDefault: DSMenuItemsSectionT.InternalProps;\n globalProps: ReturnType<typeof useGetGlobalAttributes>;\n xstyledProps: ReturnType<typeof useGetXstyledProps>;\n}\n\nexport const useMenuItemsSection = (propsFromUser: DSMenuItemsSectionT.Props) => {\n // =============================================================================\n // MERGE WITH DEFAULT AND VALIDATE PROPS\n // =============================================================================\n const propsWithDefault = useMemoMergePropsWithDefault<DSMenuItemsSectionT.InternalProps>(propsFromUser, defaultProps);\n useValidateProps(propsWithDefault, DSMenuItemsSectionPropTypes);\n // =============================================================================\n // GLOBAL ATTRIBUTES & XSTYLED PROPS\n // =============================================================================\n const globalProps = useGetGlobalAttributes<DSMenuItemsSectionT.InternalProps, HTMLDivElement, DSGridT.Props>(\n propsWithDefault,\n );\n const xstyledProps = useGetXstyledProps(propsWithDefault);\n\n return React.useMemo(\n () => ({\n propsWithDefault,\n globalProps,\n xstyledProps,\n }),\n [propsWithDefault, globalProps, xstyledProps],\n );\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAAkB;AAClB,8BAAyF;AACzF,mCAAoF;AACpF,8BAAiC;AAS1B,MAAM,sBAAsB,CAAC,kBAA6C;AAI/E,QAAM,uBAAmB,sDAAgE,eAAe,yCAAY;AACpH,gDAAiB,kBAAkB,wDAA2B;AAI9D,QAAM,kBAAc;AAAA,IAClB;AAAA,EACF;AACA,QAAM,mBAAe,4CAAmB,gBAAgB;AAExD,SAAO,aAAAA,QAAM;AAAA,IACX,OAAO;AAAA,MACL;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,CAAC,kBAAkB,aAAa,YAAY;AAAA,EAC9C;AACF;",
6
6
  "names": ["React"]
7
7
  }
@@ -1,17 +1,14 @@
1
1
  import * as React from "react";
2
2
  import React2 from "react";
3
- import { omit } from "lodash";
4
3
  import { useGetGlobalAttributes, useGetXstyledProps, useMemoMergePropsWithDefault } from "@elliemae/ds-props-helpers";
5
4
  import { DSMenuItemsSectionPropTypes, defaultProps } from "../react-desc-prop-types.js";
6
5
  import { useValidateProps } from "./useValidateProps.js";
7
6
  const useMenuItemsSection = (propsFromUser) => {
8
7
  const propsWithDefault = useMemoMergePropsWithDefault(propsFromUser, defaultProps);
9
8
  useValidateProps(propsWithDefault, DSMenuItemsSectionPropTypes);
10
- const globalProps = omit(useGetGlobalAttributes(propsWithDefault), [
11
- "cols",
12
- "rows",
13
- "wrap"
14
- ]);
9
+ const globalProps = useGetGlobalAttributes(
10
+ propsWithDefault
11
+ );
15
12
  const xstyledProps = useGetXstyledProps(propsWithDefault);
16
13
  return React2.useMemo(
17
14
  () => ({
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../src/config/useMenuItemsSection.ts"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { omit } from 'lodash';\nimport { useGetGlobalAttributes, useGetXstyledProps, useMemoMergePropsWithDefault } from '@elliemae/ds-props-helpers';\nimport { type DSMenuItemsSectionT, DSMenuItemsSectionPropTypes, defaultProps } from '../react-desc-prop-types.js';\nimport { useValidateProps } from './useValidateProps.js';\n\nexport interface MenuItemsSectionCTX {\n propsWithDefault: DSMenuItemsSectionT.InternalProps;\n globalProps: ReturnType<typeof useGetGlobalAttributes>;\n xstyledProps: ReturnType<typeof useGetXstyledProps>;\n}\n\nexport const useMenuItemsSection = (propsFromUser: DSMenuItemsSectionT.Props) => {\n // =============================================================================\n // MERGE WITH DEFAULT AND VALIDATE PROPS\n // =============================================================================\n const propsWithDefault = useMemoMergePropsWithDefault<DSMenuItemsSectionT.InternalProps>(propsFromUser, defaultProps);\n useValidateProps(propsWithDefault, DSMenuItemsSectionPropTypes);\n // =============================================================================\n // GLOBAL ATTRIBUTES & XSTYLED PROPS\n // =============================================================================\n const globalProps = omit(useGetGlobalAttributes<DSMenuItemsSectionT.InternalProps>(propsWithDefault), [\n 'cols',\n 'rows',\n 'wrap',\n ]);\n const xstyledProps = useGetXstyledProps(propsWithDefault);\n\n return React.useMemo(\n () => ({\n propsWithDefault,\n globalProps,\n xstyledProps,\n }),\n [propsWithDefault, globalProps, xstyledProps],\n );\n};\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAvB,OAAOA,YAAW;AAClB,SAAS,YAAY;AACrB,SAAS,wBAAwB,oBAAoB,oCAAoC;AACzF,SAAmC,6BAA6B,oBAAoB;AACpF,SAAS,wBAAwB;AAQ1B,MAAM,sBAAsB,CAAC,kBAA6C;AAI/E,QAAM,mBAAmB,6BAAgE,eAAe,YAAY;AACpH,mBAAiB,kBAAkB,2BAA2B;AAI9D,QAAM,cAAc,KAAK,uBAA0D,gBAAgB,GAAG;AAAA,IACpG;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACD,QAAM,eAAe,mBAAmB,gBAAgB;AAExD,SAAOA,OAAM;AAAA,IACX,OAAO;AAAA,MACL;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,CAAC,kBAAkB,aAAa,YAAY;AAAA,EAC9C;AACF;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { useGetGlobalAttributes, useGetXstyledProps, useMemoMergePropsWithDefault } from '@elliemae/ds-props-helpers';\nimport { type DSMenuItemsSectionT, DSMenuItemsSectionPropTypes, defaultProps } from '../react-desc-prop-types.js';\nimport { useValidateProps } from './useValidateProps.js';\nimport type { DSGridT } from '@elliemae/ds-grid';\n\nexport interface MenuItemsSectionCTX {\n propsWithDefault: DSMenuItemsSectionT.InternalProps;\n globalProps: ReturnType<typeof useGetGlobalAttributes>;\n xstyledProps: ReturnType<typeof useGetXstyledProps>;\n}\n\nexport const useMenuItemsSection = (propsFromUser: DSMenuItemsSectionT.Props) => {\n // =============================================================================\n // MERGE WITH DEFAULT AND VALIDATE PROPS\n // =============================================================================\n const propsWithDefault = useMemoMergePropsWithDefault<DSMenuItemsSectionT.InternalProps>(propsFromUser, defaultProps);\n useValidateProps(propsWithDefault, DSMenuItemsSectionPropTypes);\n // =============================================================================\n // GLOBAL ATTRIBUTES & XSTYLED PROPS\n // =============================================================================\n const globalProps = useGetGlobalAttributes<DSMenuItemsSectionT.InternalProps, HTMLDivElement, DSGridT.Props>(\n propsWithDefault,\n );\n const xstyledProps = useGetXstyledProps(propsWithDefault);\n\n return React.useMemo(\n () => ({\n propsWithDefault,\n globalProps,\n xstyledProps,\n }),\n [propsWithDefault, globalProps, xstyledProps],\n );\n};\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACAvB,OAAOA,YAAW;AAClB,SAAS,wBAAwB,oBAAoB,oCAAoC;AACzF,SAAmC,6BAA6B,oBAAoB;AACpF,SAAS,wBAAwB;AAS1B,MAAM,sBAAsB,CAAC,kBAA6C;AAI/E,QAAM,mBAAmB,6BAAgE,eAAe,YAAY;AACpH,mBAAiB,kBAAkB,2BAA2B;AAI9D,QAAM,cAAc;AAAA,IAClB;AAAA,EACF;AACA,QAAM,eAAe,mBAAmB,gBAAgB;AAExD,SAAOA,OAAM;AAAA,IACX,OAAO;AAAA,MACL;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,CAAC,kBAAkB,aAAa,YAAY;AAAA,EAC9C;AACF;",
6
6
  "names": ["React"]
7
7
  }
@@ -1,6 +1,7 @@
1
- /// <reference types="lodash" />
1
+ import React from 'react';
2
2
  import { useGetGlobalAttributes, useGetXstyledProps } from '@elliemae/ds-props-helpers';
3
3
  import { type DSMenuItemsSectionT } from '../react-desc-prop-types.js';
4
+ import type { DSGridT } from '@elliemae/ds-grid';
4
5
  export interface MenuItemsSectionCTX {
5
6
  propsWithDefault: DSMenuItemsSectionT.InternalProps;
6
7
  globalProps: ReturnType<typeof useGetGlobalAttributes>;
@@ -8,6 +9,370 @@ export interface MenuItemsSectionCTX {
8
9
  }
9
10
  export declare const useMenuItemsSection: (propsFromUser: DSMenuItemsSectionT.Props) => {
10
11
  propsWithDefault: DSMenuItemsSectionT.InternalProps;
11
- globalProps: import("lodash").Omit<import("@elliemae/ds-props-helpers").GlobalAttributesT<Element>, "cols" | "rows" | "wrap">;
12
+ globalProps: Partial<Pick<DSGridT.Props, "form" | "list" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "cite" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "data" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "height" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "label" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "noValidate" | "open" | "optimum" | "pattern" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "span" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "summary" | "target" | "type" | "useMap" | "value" | "width" | "wmode" | "wrap"> & Omit<{
13
+ "aria-activedescendant"?: string | undefined;
14
+ "aria-atomic"?: boolean | "true" | "false" | undefined;
15
+ "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
16
+ "aria-braillelabel"?: string | undefined;
17
+ "aria-brailleroledescription"?: string | undefined;
18
+ "aria-busy"?: boolean | "true" | "false" | undefined;
19
+ "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
20
+ "aria-colcount"?: number | undefined;
21
+ "aria-colindex"?: number | undefined;
22
+ "aria-colindextext"?: string | undefined;
23
+ "aria-colspan"?: number | undefined;
24
+ "aria-controls"?: string | undefined;
25
+ "aria-current"?: boolean | "true" | "false" | "step" | "page" | "location" | "date" | "time" | undefined;
26
+ "aria-describedby"?: string | undefined;
27
+ "aria-description"?: string | undefined;
28
+ "aria-details"?: string | undefined;
29
+ "aria-disabled"?: boolean | "true" | "false" | undefined;
30
+ "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
31
+ "aria-errormessage"?: string | undefined;
32
+ "aria-expanded"?: boolean | "true" | "false" | undefined;
33
+ "aria-flowto"?: string | undefined;
34
+ "aria-grabbed"?: boolean | "true" | "false" | undefined;
35
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
36
+ "aria-hidden"?: boolean | "true" | "false" | undefined;
37
+ "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
38
+ "aria-keyshortcuts"?: string | undefined;
39
+ "aria-label"?: string | undefined;
40
+ "aria-labelledby"?: string | undefined;
41
+ "aria-level"?: number | undefined;
42
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
43
+ "aria-modal"?: boolean | "true" | "false" | undefined;
44
+ "aria-multiline"?: boolean | "true" | "false" | undefined;
45
+ "aria-multiselectable"?: boolean | "true" | "false" | undefined;
46
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
47
+ "aria-owns"?: string | undefined;
48
+ "aria-placeholder"?: string | undefined;
49
+ "aria-posinset"?: number | undefined;
50
+ "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
51
+ "aria-readonly"?: boolean | "true" | "false" | undefined;
52
+ "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
53
+ "aria-required"?: boolean | "true" | "false" | undefined;
54
+ "aria-roledescription"?: string | undefined;
55
+ "aria-rowcount"?: number | undefined;
56
+ "aria-rowindex"?: number | undefined;
57
+ "aria-rowindextext"?: string | undefined;
58
+ "aria-rowspan"?: number | undefined;
59
+ "aria-selected"?: boolean | "true" | "false" | undefined;
60
+ "aria-setsize"?: number | undefined;
61
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
62
+ "aria-valuemax"?: number | undefined;
63
+ "aria-valuemin"?: number | undefined;
64
+ "aria-valuenow"?: number | undefined;
65
+ "aria-valuetext"?: string | undefined;
66
+ children?: React.ReactNode;
67
+ onCopy?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
68
+ onCopyCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
69
+ onCut?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
70
+ onCutCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
71
+ onPaste?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
72
+ onPasteCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
73
+ onCompositionEnd?: React.CompositionEventHandler<HTMLDivElement> | undefined;
74
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
75
+ onCompositionStart?: React.CompositionEventHandler<HTMLDivElement> | undefined;
76
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
77
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLDivElement> | undefined;
78
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
79
+ onFocus?: React.FocusEventHandler<HTMLDivElement> | undefined;
80
+ onFocusCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
81
+ onBlur?: React.FocusEventHandler<HTMLDivElement> | undefined;
82
+ onBlurCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
83
+ onChange?: React.FormEventHandler<HTMLDivElement> | undefined;
84
+ onChangeCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
85
+ onBeforeInput?: React.FormEventHandler<HTMLDivElement> | undefined;
86
+ onBeforeInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
87
+ onInput?: React.FormEventHandler<HTMLDivElement> | undefined;
88
+ onInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
89
+ onReset?: React.FormEventHandler<HTMLDivElement> | undefined;
90
+ onResetCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
91
+ onSubmit?: React.FormEventHandler<HTMLDivElement> | undefined;
92
+ onSubmitCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
93
+ onInvalid?: React.FormEventHandler<HTMLDivElement> | undefined;
94
+ onInvalidCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
95
+ onLoad?: React.ReactEventHandler<HTMLDivElement> | undefined;
96
+ onLoadCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
97
+ onError?: React.ReactEventHandler<HTMLDivElement> | undefined;
98
+ onErrorCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
99
+ onKeyDown?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
100
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
101
+ onKeyPress?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
102
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
103
+ onKeyUp?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
104
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
105
+ onAbort?: React.ReactEventHandler<HTMLDivElement> | undefined;
106
+ onAbortCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
107
+ onCanPlay?: React.ReactEventHandler<HTMLDivElement> | undefined;
108
+ onCanPlayCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
109
+ onCanPlayThrough?: React.ReactEventHandler<HTMLDivElement> | undefined;
110
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
111
+ onDurationChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
112
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
113
+ onEmptied?: React.ReactEventHandler<HTMLDivElement> | undefined;
114
+ onEmptiedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
115
+ onEncrypted?: React.ReactEventHandler<HTMLDivElement> | undefined;
116
+ onEncryptedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
117
+ onEnded?: React.ReactEventHandler<HTMLDivElement> | undefined;
118
+ onEndedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
119
+ onLoadedData?: React.ReactEventHandler<HTMLDivElement> | undefined;
120
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
121
+ onLoadedMetadata?: React.ReactEventHandler<HTMLDivElement> | undefined;
122
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
123
+ onLoadStart?: React.ReactEventHandler<HTMLDivElement> | undefined;
124
+ onLoadStartCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
125
+ onPause?: React.ReactEventHandler<HTMLDivElement> | undefined;
126
+ onPauseCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
127
+ onPlay?: React.ReactEventHandler<HTMLDivElement> | undefined;
128
+ onPlayCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
129
+ onPlaying?: React.ReactEventHandler<HTMLDivElement> | undefined;
130
+ onPlayingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
131
+ onProgress?: React.ReactEventHandler<HTMLDivElement> | undefined;
132
+ onProgressCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
133
+ onRateChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
134
+ onRateChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
135
+ onResize?: React.ReactEventHandler<HTMLDivElement> | undefined;
136
+ onResizeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
137
+ onSeeked?: React.ReactEventHandler<HTMLDivElement> | undefined;
138
+ onSeekedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
139
+ onSeeking?: React.ReactEventHandler<HTMLDivElement> | undefined;
140
+ onSeekingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
141
+ onStalled?: React.ReactEventHandler<HTMLDivElement> | undefined;
142
+ onStalledCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
143
+ onSuspend?: React.ReactEventHandler<HTMLDivElement> | undefined;
144
+ onSuspendCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
145
+ onTimeUpdate?: React.ReactEventHandler<HTMLDivElement> | undefined;
146
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
147
+ onVolumeChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
148
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
149
+ onWaiting?: React.ReactEventHandler<HTMLDivElement> | undefined;
150
+ onWaitingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
151
+ onAuxClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
152
+ onAuxClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
153
+ onClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
154
+ onClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
155
+ onContextMenu?: React.MouseEventHandler<HTMLDivElement> | undefined;
156
+ onContextMenuCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
157
+ onDoubleClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
158
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
159
+ onDrag?: React.DragEventHandler<HTMLDivElement> | undefined;
160
+ onDragCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
161
+ onDragEnd?: React.DragEventHandler<HTMLDivElement> | undefined;
162
+ onDragEndCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
163
+ onDragEnter?: React.DragEventHandler<HTMLDivElement> | undefined;
164
+ onDragEnterCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
165
+ onDragExit?: React.DragEventHandler<HTMLDivElement> | undefined;
166
+ onDragExitCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
167
+ onDragLeave?: React.DragEventHandler<HTMLDivElement> | undefined;
168
+ onDragLeaveCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
169
+ onDragOver?: React.DragEventHandler<HTMLDivElement> | undefined;
170
+ onDragOverCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
171
+ onDragStart?: React.DragEventHandler<HTMLDivElement> | undefined;
172
+ onDragStartCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
173
+ onDrop?: React.DragEventHandler<HTMLDivElement> | undefined;
174
+ onDropCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
175
+ onMouseDown?: React.MouseEventHandler<HTMLDivElement> | undefined;
176
+ onMouseDownCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
177
+ onMouseEnter?: React.MouseEventHandler<HTMLDivElement> | undefined;
178
+ onMouseLeave?: React.MouseEventHandler<HTMLDivElement> | undefined;
179
+ onMouseMove?: React.MouseEventHandler<HTMLDivElement> | undefined;
180
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
181
+ onMouseOut?: React.MouseEventHandler<HTMLDivElement> | undefined;
182
+ onMouseOutCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
183
+ onMouseOver?: React.MouseEventHandler<HTMLDivElement> | undefined;
184
+ onMouseOverCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
185
+ onMouseUp?: React.MouseEventHandler<HTMLDivElement> | undefined;
186
+ onMouseUpCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
187
+ onSelect?: React.ReactEventHandler<HTMLDivElement> | undefined;
188
+ onSelectCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
189
+ onTouchCancel?: React.TouchEventHandler<HTMLDivElement> | undefined;
190
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
191
+ onTouchEnd?: React.TouchEventHandler<HTMLDivElement> | undefined;
192
+ onTouchEndCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
193
+ onTouchMove?: React.TouchEventHandler<HTMLDivElement> | undefined;
194
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
195
+ onTouchStart?: React.TouchEventHandler<HTMLDivElement> | undefined;
196
+ onTouchStartCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
197
+ onPointerDown?: React.PointerEventHandler<HTMLDivElement> | undefined;
198
+ onPointerDownCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
199
+ onPointerMove?: React.PointerEventHandler<HTMLDivElement> | undefined;
200
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
201
+ onPointerUp?: React.PointerEventHandler<HTMLDivElement> | undefined;
202
+ onPointerUpCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
203
+ onPointerCancel?: React.PointerEventHandler<HTMLDivElement> | undefined;
204
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
205
+ onPointerEnter?: React.PointerEventHandler<HTMLDivElement> | undefined;
206
+ onPointerLeave?: React.PointerEventHandler<HTMLDivElement> | undefined;
207
+ onPointerOver?: React.PointerEventHandler<HTMLDivElement> | undefined;
208
+ onPointerOverCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
209
+ onPointerOut?: React.PointerEventHandler<HTMLDivElement> | undefined;
210
+ onPointerOutCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
211
+ onGotPointerCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
212
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
213
+ onLostPointerCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
214
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
215
+ onScroll?: React.UIEventHandler<HTMLDivElement> | undefined;
216
+ onScrollCapture?: React.UIEventHandler<HTMLDivElement> | undefined;
217
+ onWheel?: React.WheelEventHandler<HTMLDivElement> | undefined;
218
+ onWheelCapture?: React.WheelEventHandler<HTMLDivElement> | undefined;
219
+ onAnimationStart?: React.AnimationEventHandler<HTMLDivElement> | undefined;
220
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
221
+ onAnimationEnd?: React.AnimationEventHandler<HTMLDivElement> | undefined;
222
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
223
+ onAnimationIteration?: React.AnimationEventHandler<HTMLDivElement> | undefined;
224
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
225
+ onTransitionEnd?: React.TransitionEventHandler<HTMLDivElement> | undefined;
226
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLDivElement> | undefined;
227
+ form?: string | undefined;
228
+ list?: string | undefined;
229
+ defaultChecked?: boolean | undefined;
230
+ defaultValue?: string | number | readonly string[] | undefined;
231
+ suppressContentEditableWarning?: boolean | undefined;
232
+ suppressHydrationWarning?: boolean | undefined;
233
+ accessKey?: string | undefined;
234
+ autoFocus?: boolean | undefined;
235
+ className?: string | undefined;
236
+ contentEditable?: boolean | "true" | "false" | "inherit" | "plaintext-only" | undefined;
237
+ contextMenu?: string | undefined;
238
+ dir?: string | undefined;
239
+ draggable?: boolean | "true" | "false" | undefined;
240
+ hidden?: boolean | undefined;
241
+ id?: string | undefined;
242
+ lang?: string | undefined;
243
+ nonce?: string | undefined;
244
+ slot?: string | undefined;
245
+ spellCheck?: boolean | "true" | "false" | undefined;
246
+ style?: React.CSSProperties | undefined;
247
+ tabIndex?: 0 | -1 | undefined;
248
+ title?: string | undefined;
249
+ translate?: "yes" | "no" | undefined;
250
+ radioGroup?: string | undefined;
251
+ role?: React.AriaRole | undefined;
252
+ about?: string | undefined;
253
+ content?: string | undefined;
254
+ datatype?: string | undefined;
255
+ inlist?: any;
256
+ prefix?: string | undefined;
257
+ property?: string | undefined;
258
+ rel?: string | undefined;
259
+ resource?: string | undefined;
260
+ rev?: string | undefined;
261
+ typeof?: string | undefined;
262
+ vocab?: string | undefined;
263
+ autoCapitalize?: string | undefined;
264
+ autoCorrect?: string | undefined;
265
+ autoSave?: string | undefined;
266
+ color?: string | undefined;
267
+ itemProp?: string | undefined;
268
+ itemScope?: boolean | undefined;
269
+ itemType?: string | undefined;
270
+ itemID?: string | undefined;
271
+ itemRef?: string | undefined;
272
+ results?: number | undefined;
273
+ security?: string | undefined;
274
+ unselectable?: "on" | "off" | undefined;
275
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
276
+ is?: string | undefined;
277
+ accept?: string | undefined;
278
+ acceptCharset?: string | undefined;
279
+ action?: string | undefined;
280
+ allowFullScreen?: boolean | undefined;
281
+ allowTransparency?: boolean | undefined;
282
+ alt?: string | undefined;
283
+ async?: boolean | undefined;
284
+ autoComplete?: string | undefined;
285
+ autoPlay?: boolean | undefined;
286
+ capture?: boolean | "user" | "environment" | undefined;
287
+ cellPadding?: string | number | undefined;
288
+ cellSpacing?: string | number | undefined;
289
+ charSet?: string | undefined;
290
+ challenge?: string | undefined;
291
+ checked?: boolean | undefined;
292
+ cite?: string | undefined;
293
+ classID?: string | undefined;
294
+ cols?: number | undefined;
295
+ colSpan?: number | undefined;
296
+ controls?: boolean | undefined;
297
+ coords?: string | undefined;
298
+ crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
299
+ data?: string | undefined;
300
+ dateTime?: string | undefined;
301
+ default?: boolean | undefined;
302
+ defer?: boolean | undefined;
303
+ disabled?: boolean | undefined;
304
+ download?: any;
305
+ encType?: string | undefined;
306
+ formAction?: string | undefined;
307
+ formEncType?: string | undefined;
308
+ formMethod?: string | undefined;
309
+ formNoValidate?: boolean | undefined;
310
+ formTarget?: string | undefined;
311
+ frameBorder?: string | number | undefined;
312
+ headers?: string | undefined;
313
+ height?: string | number | undefined;
314
+ high?: number | undefined;
315
+ href?: string | undefined;
316
+ hrefLang?: string | undefined;
317
+ htmlFor?: string | undefined;
318
+ httpEquiv?: string | undefined;
319
+ integrity?: string | undefined;
320
+ keyParams?: string | undefined;
321
+ keyType?: string | undefined;
322
+ kind?: string | undefined;
323
+ label?: string | undefined;
324
+ loop?: boolean | undefined;
325
+ low?: number | undefined;
326
+ manifest?: string | undefined;
327
+ marginHeight?: number | undefined;
328
+ marginWidth?: number | undefined;
329
+ max?: string | number | undefined;
330
+ maxLength?: number | undefined;
331
+ media?: string | undefined;
332
+ mediaGroup?: string | undefined;
333
+ method?: string | undefined;
334
+ min?: string | number | undefined;
335
+ minLength?: number | undefined;
336
+ multiple?: boolean | undefined;
337
+ muted?: boolean | undefined;
338
+ name?: string | undefined;
339
+ noValidate?: boolean | undefined;
340
+ open?: boolean | undefined;
341
+ optimum?: number | undefined;
342
+ pattern?: string | undefined;
343
+ placeholder?: string | undefined;
344
+ playsInline?: boolean | undefined;
345
+ poster?: string | undefined;
346
+ preload?: string | undefined;
347
+ readOnly?: boolean | undefined;
348
+ required?: boolean | undefined;
349
+ reversed?: boolean | undefined;
350
+ rows?: number | undefined;
351
+ rowSpan?: number | undefined;
352
+ sandbox?: string | undefined;
353
+ scope?: string | undefined;
354
+ scoped?: boolean | undefined;
355
+ scrolling?: string | undefined;
356
+ seamless?: boolean | undefined;
357
+ selected?: boolean | undefined;
358
+ shape?: string | undefined;
359
+ size?: number | undefined;
360
+ sizes?: string | undefined;
361
+ span?: number | undefined;
362
+ src?: string | undefined;
363
+ srcDoc?: string | undefined;
364
+ srcLang?: string | undefined;
365
+ srcSet?: string | undefined;
366
+ start?: number | undefined;
367
+ step?: string | number | undefined;
368
+ summary?: string | undefined;
369
+ target?: string | undefined;
370
+ type?: string | undefined;
371
+ useMap?: string | undefined;
372
+ value?: string | number | readonly string[] | undefined;
373
+ width?: string | number | undefined;
374
+ wmode?: string | undefined;
375
+ wrap?: string | undefined;
376
+ }, keyof DSGridT.Props>>;
12
377
  xstyledProps: import("@elliemae/ds-props-helpers").XstyledProps;
13
378
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-menu-items-section",
3
- "version": "3.32.2-next.1",
3
+ "version": "3.33.0-next.1",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Menu Items Section",
6
6
  "files": [
@@ -36,17 +36,17 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@xstyled/styled-components": "~3.6.0",
39
- "@elliemae/ds-button": "3.32.2-next.1",
40
- "@elliemae/ds-props-helpers": "3.32.2-next.1",
41
- "@elliemae/ds-system": "3.32.2-next.1",
42
- "@elliemae/ds-utilities": "3.32.2-next.1",
43
- "@elliemae/ds-grid": "3.32.2-next.1",
44
- "@elliemae/ds-menu-items-commons": "3.32.2-next.1"
39
+ "@elliemae/ds-button": "3.33.0-next.1",
40
+ "@elliemae/ds-system": "3.33.0-next.1",
41
+ "@elliemae/ds-utilities": "3.33.0-next.1",
42
+ "@elliemae/ds-grid": "3.33.0-next.1",
43
+ "@elliemae/ds-menu-items-commons": "3.33.0-next.1",
44
+ "@elliemae/ds-props-helpers": "3.33.0-next.1"
45
45
  },
46
46
  "devDependencies": {
47
47
  "lodash": "^4.17.21",
48
48
  "styled-components": "~5.3.9",
49
- "@elliemae/ds-monorepo-devops": "3.32.2-next.1"
49
+ "@elliemae/ds-monorepo-devops": "3.33.0-next.1"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "@testing-library/jest-dom": "~5.16.4",