@elliemae/ds-decision-graph 3.33.0-next.0 → 3.33.0-next.2

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