@elliemae/ds-page-header-v2 3.53.0-beta.8 → 3.53.0-next.10
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.
- package/dist/cjs/PageHeader.js.map +1 -1
- package/dist/esm/PageHeader.js.map +1 -1
- package/dist/types/config/usePageHeader.d.ts +362 -361
- package/dist/types/react-desc-prop-types.d.ts +1 -0
- package/package.json +14 -14
- package/dist/cjs/tests/utils.js +0 -124
- package/dist/cjs/tests/utils.js.map +0 -7
- package/dist/esm/tests/utils.js +0 -94
- package/dist/esm/tests/utils.js.map +0 -7
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["../../src/PageHeader.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
4
|
-
"sourcesContent": ["/* eslint-disable complexity */\n/* eslint-disable max-lines */\nimport type { WeakValidationMap } from 'react';\nimport React from 'react';\nimport { describe } from '@elliemae/ds-props-helpers';\nimport { Grid } from '@elliemae/ds-grid';\nimport {\n Container,\n ContainerWBorder,\n PageHeaderCustomRenderer,\n PageHeaderToolbarWrapper,\n PageHeaderMenu,\n PageHeaderBack,\n} from './styled.js';\nimport { usePageHeader } from './config/usePageHeader.js';\nimport { PageHeaderTitle } from './components/page-header-title/index.js';\nimport { PageHeaderEditableTitle } from './components/page-header-editable-title/index.js';\nimport { PageHeaderSummary } from './components/page-header-summary/index.js';\nimport type { DSPageHeaderT } from './react-desc-prop-types.js';\nimport { PageHeaderPropTypes, defaultProps } from './react-desc-prop-types.js';\nimport { DSPageHeaderDataTestIds, DSPageHeaderName } from './exported-related/index.js';\n\nconst MenuRegion: React.ComponentType<{ CurrentMenu?: React.ComponentType }> = ({ CurrentMenu }) => {\n if (!CurrentMenu) return null;\n return (\n <PageHeaderMenu>\n <CurrentMenu />\n </PageHeaderMenu>\n );\n};\n\nconst DSPageHeaderV2: React.ComponentType<DSPageHeaderT.Props> = (props) => {\n const {\n currentBackArrow,\n CurrentMenu,\n currentBreadcrumbs,\n currentSummary,\n currentToolbar,\n currentPageTitle,\n containerProps,\n withBottomSeparator,\n globalAttributes,\n xStyledProps,\n } = usePageHeader(props);\n\n const { isSkeleton } = props;\n const wrapperRow = ['auto', '1fr'];\n const mainRow = ['1fr', 'auto'];\n const pageTitleRow = [\n isSkeleton ? '2fr' : 'auto',\n CurrentMenu !== undefined && '30px',\n currentSummary !== undefined && 'auto',\n '1fr',\n ].filter((col) => typeof col === 'string');\n\n return (\n <Container\n {...containerProps}\n {...globalAttributes}\n {...xStyledProps}\n data-testid={DSPageHeaderDataTestIds.CONTAINER}\n >\n <ContainerWBorder withBottomSeparator={withBottomSeparator}>\n <Grid cols={wrapperRow}>\n <Grid>\n <PageHeaderBack>{currentBackArrow}</PageHeaderBack>\n </Grid>\n <Grid rows={['auto', 'auto']}>\n <Grid className=\"em-ds-page-header-v2-breadcrumb\">{currentBreadcrumbs}</Grid>\n <Grid cols={mainRow} alignItems=\"center\">\n <Grid cols={pageTitleRow} alignItems=\"center\">\n {currentPageTitle}\n <MenuRegion CurrentMenu={CurrentMenu} />\n {currentSummary}\n <div />\n </Grid>\n <Grid>\n <PageHeaderToolbarWrapper>{currentToolbar}</PageHeaderToolbarWrapper>\n </Grid>\n </Grid>\n </Grid>\n </Grid>\n </ContainerWBorder>\n </Container>\n );\n};\n\nDSPageHeaderV2.defaultProps = defaultProps;\nDSPageHeaderV2.displayName = DSPageHeaderName;\nconst DSPageHeaderWithSchema = describe(DSPageHeaderV2);\n\nDSPageHeaderWithSchema.propTypes = PageHeaderPropTypes as WeakValidationMap<unknown>;\n\nexport {\n DSPageHeaderV2,\n PageHeaderTitle,\n PageHeaderEditableTitle,\n PageHeaderSummary,\n PageHeaderMenu,\n PageHeaderCustomRenderer,\n DSPageHeaderWithSchema,\n};\n\nexport default DSPageHeaderV2;\n", "import * as React from 'react';\nexport { React };\n"],
|
4
|
+
"sourcesContent": ["/* eslint-disable complexity */\n/* eslint-disable max-lines */\nimport type { WeakValidationMap } from 'react';\nimport React from 'react';\nimport { describe } from '@elliemae/ds-props-helpers';\nimport { Grid } from '@elliemae/ds-grid';\nimport {\n Container,\n ContainerWBorder,\n PageHeaderCustomRenderer,\n PageHeaderToolbarWrapper,\n PageHeaderMenu,\n PageHeaderBack,\n} from './styled.js';\nimport { usePageHeader } from './config/usePageHeader.js';\nimport { PageHeaderTitle } from './components/page-header-title/index.js';\nimport { PageHeaderEditableTitle } from './components/page-header-editable-title/index.js';\nimport { PageHeaderSummary } from './components/page-header-summary/index.js';\nimport type { DSPageHeaderT } from './react-desc-prop-types.js';\nimport { PageHeaderPropTypes, defaultProps } from './react-desc-prop-types.js';\nimport { DSPageHeaderDataTestIds, DSPageHeaderName } from './exported-related/index.js';\n\nconst MenuRegion: React.ComponentType<{ CurrentMenu?: React.ComponentType }> = ({ CurrentMenu }) => {\n if (!CurrentMenu) return null;\n return (\n <PageHeaderMenu>\n <CurrentMenu />\n </PageHeaderMenu>\n );\n};\n\nconst DSPageHeaderV2: React.ComponentType<DSPageHeaderT.Props> = (props) => {\n const {\n currentBackArrow,\n CurrentMenu,\n currentBreadcrumbs,\n currentSummary,\n currentToolbar,\n currentPageTitle,\n containerProps,\n withBottomSeparator,\n globalAttributes,\n xStyledProps,\n } = usePageHeader(props);\n\n const { isSkeleton } = props;\n const wrapperRow = ['auto', '1fr'];\n const mainRow = ['1fr', 'auto'];\n const pageTitleRow = [\n isSkeleton ? '2fr' : 'auto',\n CurrentMenu !== undefined && '30px',\n currentSummary !== undefined && 'auto',\n '1fr',\n ].filter((col) => typeof col === 'string') as string[];\n\n return (\n <Container\n {...containerProps}\n {...globalAttributes}\n {...xStyledProps}\n data-testid={DSPageHeaderDataTestIds.CONTAINER}\n >\n <ContainerWBorder withBottomSeparator={withBottomSeparator}>\n <Grid cols={wrapperRow}>\n <Grid>\n <PageHeaderBack>{currentBackArrow}</PageHeaderBack>\n </Grid>\n <Grid rows={['auto', 'auto']}>\n <Grid className=\"em-ds-page-header-v2-breadcrumb\">{currentBreadcrumbs}</Grid>\n <Grid cols={mainRow} alignItems=\"center\">\n <Grid cols={pageTitleRow} alignItems=\"center\">\n {currentPageTitle}\n <MenuRegion CurrentMenu={CurrentMenu} />\n {currentSummary}\n <div />\n </Grid>\n <Grid>\n <PageHeaderToolbarWrapper>{currentToolbar}</PageHeaderToolbarWrapper>\n </Grid>\n </Grid>\n </Grid>\n </Grid>\n </ContainerWBorder>\n </Container>\n );\n};\n\nDSPageHeaderV2.defaultProps = defaultProps;\nDSPageHeaderV2.displayName = DSPageHeaderName;\nconst DSPageHeaderWithSchema = describe(DSPageHeaderV2);\n\nDSPageHeaderWithSchema.propTypes = PageHeaderPropTypes as WeakValidationMap<unknown>;\n\nexport {\n DSPageHeaderV2,\n PageHeaderTitle,\n PageHeaderEditableTitle,\n PageHeaderSummary,\n PageHeaderMenu,\n PageHeaderCustomRenderer,\n DSPageHeaderWithSchema,\n};\n\nexport default DSPageHeaderV2;\n", "import * as React from 'react';\nexport { React };\n"],
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;AD0BjB;AAtBN,8BAAyB;AACzB,qBAAqB;AACrB,oBAOO;AACP,2BAA8B;AAC9B,+BAAgC;AAChC,wCAAwC;AACxC,iCAAkC;AAElC,mCAAkD;AAClD,8BAA0D;AAE1D,MAAM,aAAyE,CAAC,EAAE,YAAY,MAAM;AAClG,MAAI,CAAC,YAAa,QAAO;AACzB,SACE,4CAAC,gCACC,sDAAC,eAAY,GACf;AAEJ;AAEA,MAAM,iBAA2D,CAAC,UAAU;AAC1E,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,QAAI,oCAAc,KAAK;AAEvB,QAAM,EAAE,WAAW,IAAI;AACvB,QAAM,aAAa,CAAC,QAAQ,KAAK;AACjC,QAAM,UAAU,CAAC,OAAO,MAAM;AAC9B,QAAM,eAAe;AAAA,IACnB,aAAa,QAAQ;AAAA,IACrB,gBAAgB,UAAa;AAAA,IAC7B,mBAAmB,UAAa;AAAA,IAChC;AAAA,EACF,EAAE,OAAO,CAAC,QAAQ,OAAO,QAAQ,QAAQ;AAEzC,SACE;AAAA,IAAC;AAAA;AAAA,MACE,GAAG;AAAA,MACH,GAAG;AAAA,MACH,GAAG;AAAA,MACJ,eAAa,gDAAwB;AAAA,MAErC,sDAAC,kCAAiB,qBAChB,uDAAC,uBAAK,MAAM,YACV;AAAA,oDAAC,uBACC,sDAAC,gCAAgB,4BAAiB,GACpC;AAAA,QACA,6CAAC,uBAAK,MAAM,CAAC,QAAQ,MAAM,GACzB;AAAA,sDAAC,uBAAK,WAAU,mCAAmC,8BAAmB;AAAA,UACtE,6CAAC,uBAAK,MAAM,SAAS,YAAW,UAC9B;AAAA,yDAAC,uBAAK,MAAM,cAAc,YAAW,UAClC;AAAA;AAAA,cACD,4CAAC,cAAW,aAA0B;AAAA,cACrC;AAAA,cACD,4CAAC,SAAI;AAAA,eACP;AAAA,YACA,4CAAC,uBACC,sDAAC,0CAA0B,0BAAe,GAC5C;AAAA,aACF;AAAA,WACF;AAAA,SACF,GACF;AAAA;AAAA,EACF;AAEJ;AAEA,eAAe,eAAe;AAC9B,eAAe,cAAc;AAC7B,MAAM,6BAAyB,kCAAS,cAAc;AAEtD,uBAAuB,YAAY;AAYnC,IAAO,qBAAQ;",
|
6
6
|
"names": []
|
7
7
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/PageHeader.tsx"],
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable complexity */\n/* eslint-disable max-lines */\nimport type { WeakValidationMap } from 'react';\nimport React from 'react';\nimport { describe } from '@elliemae/ds-props-helpers';\nimport { Grid } from '@elliemae/ds-grid';\nimport {\n Container,\n ContainerWBorder,\n PageHeaderCustomRenderer,\n PageHeaderToolbarWrapper,\n PageHeaderMenu,\n PageHeaderBack,\n} from './styled.js';\nimport { usePageHeader } from './config/usePageHeader.js';\nimport { PageHeaderTitle } from './components/page-header-title/index.js';\nimport { PageHeaderEditableTitle } from './components/page-header-editable-title/index.js';\nimport { PageHeaderSummary } from './components/page-header-summary/index.js';\nimport type { DSPageHeaderT } from './react-desc-prop-types.js';\nimport { PageHeaderPropTypes, defaultProps } from './react-desc-prop-types.js';\nimport { DSPageHeaderDataTestIds, DSPageHeaderName } from './exported-related/index.js';\n\nconst MenuRegion: React.ComponentType<{ CurrentMenu?: React.ComponentType }> = ({ CurrentMenu }) => {\n if (!CurrentMenu) return null;\n return (\n <PageHeaderMenu>\n <CurrentMenu />\n </PageHeaderMenu>\n );\n};\n\nconst DSPageHeaderV2: React.ComponentType<DSPageHeaderT.Props> = (props) => {\n const {\n currentBackArrow,\n CurrentMenu,\n currentBreadcrumbs,\n currentSummary,\n currentToolbar,\n currentPageTitle,\n containerProps,\n withBottomSeparator,\n globalAttributes,\n xStyledProps,\n } = usePageHeader(props);\n\n const { isSkeleton } = props;\n const wrapperRow = ['auto', '1fr'];\n const mainRow = ['1fr', 'auto'];\n const pageTitleRow = [\n isSkeleton ? '2fr' : 'auto',\n CurrentMenu !== undefined && '30px',\n currentSummary !== undefined && 'auto',\n '1fr',\n ].filter((col) => typeof col === 'string');\n\n return (\n <Container\n {...containerProps}\n {...globalAttributes}\n {...xStyledProps}\n data-testid={DSPageHeaderDataTestIds.CONTAINER}\n >\n <ContainerWBorder withBottomSeparator={withBottomSeparator}>\n <Grid cols={wrapperRow}>\n <Grid>\n <PageHeaderBack>{currentBackArrow}</PageHeaderBack>\n </Grid>\n <Grid rows={['auto', 'auto']}>\n <Grid className=\"em-ds-page-header-v2-breadcrumb\">{currentBreadcrumbs}</Grid>\n <Grid cols={mainRow} alignItems=\"center\">\n <Grid cols={pageTitleRow} alignItems=\"center\">\n {currentPageTitle}\n <MenuRegion CurrentMenu={CurrentMenu} />\n {currentSummary}\n <div />\n </Grid>\n <Grid>\n <PageHeaderToolbarWrapper>{currentToolbar}</PageHeaderToolbarWrapper>\n </Grid>\n </Grid>\n </Grid>\n </Grid>\n </ContainerWBorder>\n </Container>\n );\n};\n\nDSPageHeaderV2.defaultProps = defaultProps;\nDSPageHeaderV2.displayName = DSPageHeaderName;\nconst DSPageHeaderWithSchema = describe(DSPageHeaderV2);\n\nDSPageHeaderWithSchema.propTypes = PageHeaderPropTypes as WeakValidationMap<unknown>;\n\nexport {\n DSPageHeaderV2,\n PageHeaderTitle,\n PageHeaderEditableTitle,\n PageHeaderSummary,\n PageHeaderMenu,\n PageHeaderCustomRenderer,\n DSPageHeaderWithSchema,\n};\n\nexport default DSPageHeaderV2;\n"],
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable complexity */\n/* eslint-disable max-lines */\nimport type { WeakValidationMap } from 'react';\nimport React from 'react';\nimport { describe } from '@elliemae/ds-props-helpers';\nimport { Grid } from '@elliemae/ds-grid';\nimport {\n Container,\n ContainerWBorder,\n PageHeaderCustomRenderer,\n PageHeaderToolbarWrapper,\n PageHeaderMenu,\n PageHeaderBack,\n} from './styled.js';\nimport { usePageHeader } from './config/usePageHeader.js';\nimport { PageHeaderTitle } from './components/page-header-title/index.js';\nimport { PageHeaderEditableTitle } from './components/page-header-editable-title/index.js';\nimport { PageHeaderSummary } from './components/page-header-summary/index.js';\nimport type { DSPageHeaderT } from './react-desc-prop-types.js';\nimport { PageHeaderPropTypes, defaultProps } from './react-desc-prop-types.js';\nimport { DSPageHeaderDataTestIds, DSPageHeaderName } from './exported-related/index.js';\n\nconst MenuRegion: React.ComponentType<{ CurrentMenu?: React.ComponentType }> = ({ CurrentMenu }) => {\n if (!CurrentMenu) return null;\n return (\n <PageHeaderMenu>\n <CurrentMenu />\n </PageHeaderMenu>\n );\n};\n\nconst DSPageHeaderV2: React.ComponentType<DSPageHeaderT.Props> = (props) => {\n const {\n currentBackArrow,\n CurrentMenu,\n currentBreadcrumbs,\n currentSummary,\n currentToolbar,\n currentPageTitle,\n containerProps,\n withBottomSeparator,\n globalAttributes,\n xStyledProps,\n } = usePageHeader(props);\n\n const { isSkeleton } = props;\n const wrapperRow = ['auto', '1fr'];\n const mainRow = ['1fr', 'auto'];\n const pageTitleRow = [\n isSkeleton ? '2fr' : 'auto',\n CurrentMenu !== undefined && '30px',\n currentSummary !== undefined && 'auto',\n '1fr',\n ].filter((col) => typeof col === 'string') as string[];\n\n return (\n <Container\n {...containerProps}\n {...globalAttributes}\n {...xStyledProps}\n data-testid={DSPageHeaderDataTestIds.CONTAINER}\n >\n <ContainerWBorder withBottomSeparator={withBottomSeparator}>\n <Grid cols={wrapperRow}>\n <Grid>\n <PageHeaderBack>{currentBackArrow}</PageHeaderBack>\n </Grid>\n <Grid rows={['auto', 'auto']}>\n <Grid className=\"em-ds-page-header-v2-breadcrumb\">{currentBreadcrumbs}</Grid>\n <Grid cols={mainRow} alignItems=\"center\">\n <Grid cols={pageTitleRow} alignItems=\"center\">\n {currentPageTitle}\n <MenuRegion CurrentMenu={CurrentMenu} />\n {currentSummary}\n <div />\n </Grid>\n <Grid>\n <PageHeaderToolbarWrapper>{currentToolbar}</PageHeaderToolbarWrapper>\n </Grid>\n </Grid>\n </Grid>\n </Grid>\n </ContainerWBorder>\n </Container>\n );\n};\n\nDSPageHeaderV2.defaultProps = defaultProps;\nDSPageHeaderV2.displayName = DSPageHeaderName;\nconst DSPageHeaderWithSchema = describe(DSPageHeaderV2);\n\nDSPageHeaderWithSchema.propTypes = PageHeaderPropTypes as WeakValidationMap<unknown>;\n\nexport {\n DSPageHeaderV2,\n PageHeaderTitle,\n PageHeaderEditableTitle,\n PageHeaderSummary,\n PageHeaderMenu,\n PageHeaderCustomRenderer,\n DSPageHeaderWithSchema,\n};\n\nexport default DSPageHeaderV2;\n"],
|
5
5
|
"mappings": "AAAA,YAAY,WAAW;AC0BjB,cA4CQ,YA5CR;AAtBN,SAAS,gBAAgB;AACzB,SAAS,YAAY;AACrB;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,qBAAqB;AAC9B,SAAS,uBAAuB;AAChC,SAAS,+BAA+B;AACxC,SAAS,yBAAyB;AAElC,SAAS,qBAAqB,oBAAoB;AAClD,SAAS,yBAAyB,wBAAwB;AAE1D,MAAM,aAAyE,CAAC,EAAE,YAAY,MAAM;AAClG,MAAI,CAAC,YAAa,QAAO;AACzB,SACE,oBAAC,kBACC,8BAAC,eAAY,GACf;AAEJ;AAEA,MAAM,iBAA2D,CAAC,UAAU;AAC1E,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI,cAAc,KAAK;AAEvB,QAAM,EAAE,WAAW,IAAI;AACvB,QAAM,aAAa,CAAC,QAAQ,KAAK;AACjC,QAAM,UAAU,CAAC,OAAO,MAAM;AAC9B,QAAM,eAAe;AAAA,IACnB,aAAa,QAAQ;AAAA,IACrB,gBAAgB,UAAa;AAAA,IAC7B,mBAAmB,UAAa;AAAA,IAChC;AAAA,EACF,EAAE,OAAO,CAAC,QAAQ,OAAO,QAAQ,QAAQ;AAEzC,SACE;AAAA,IAAC;AAAA;AAAA,MACE,GAAG;AAAA,MACH,GAAG;AAAA,MACH,GAAG;AAAA,MACJ,eAAa,wBAAwB;AAAA,MAErC,8BAAC,oBAAiB,qBAChB,+BAAC,QAAK,MAAM,YACV;AAAA,4BAAC,QACC,8BAAC,kBAAgB,4BAAiB,GACpC;AAAA,QACA,qBAAC,QAAK,MAAM,CAAC,QAAQ,MAAM,GACzB;AAAA,8BAAC,QAAK,WAAU,mCAAmC,8BAAmB;AAAA,UACtE,qBAAC,QAAK,MAAM,SAAS,YAAW,UAC9B;AAAA,iCAAC,QAAK,MAAM,cAAc,YAAW,UAClC;AAAA;AAAA,cACD,oBAAC,cAAW,aAA0B;AAAA,cACrC;AAAA,cACD,oBAAC,SAAI;AAAA,eACP;AAAA,YACA,oBAAC,QACC,8BAAC,4BAA0B,0BAAe,GAC5C;AAAA,aACF;AAAA,WACF;AAAA,SACF,GACF;AAAA;AAAA,EACF;AAEJ;AAEA,eAAe,eAAe;AAC9B,eAAe,cAAc;AAC7B,MAAM,yBAAyB,SAAS,cAAc;AAEtD,uBAAuB,YAAY;AAYnC,IAAO,qBAAQ;",
|
6
6
|
"names": []
|
7
7
|
}
|
@@ -1,67 +1,68 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
import type { DSPageHeaderT } from '../react-desc-prop-types.js';
|
2
3
|
export declare const usePageHeader: (props: DSPageHeaderT.Props) => {
|
3
4
|
withBottomSeparator?: boolean | undefined;
|
4
5
|
containerProps?: object | undefined;
|
5
|
-
rows?: number | undefined
|
6
|
-
cols?: number | undefined
|
7
|
-
className?: string | undefined
|
8
|
-
wrap?: string | undefined
|
9
|
-
span?: number | undefined
|
10
|
-
form?: string | undefined
|
11
|
-
list?: string | undefined
|
12
|
-
"aria-activedescendant"?: string | undefined
|
6
|
+
rows?: number | undefined;
|
7
|
+
cols?: number | undefined;
|
8
|
+
className?: string | undefined;
|
9
|
+
wrap?: string | undefined;
|
10
|
+
span?: number | undefined;
|
11
|
+
form?: string | undefined;
|
12
|
+
list?: string | undefined;
|
13
|
+
"aria-activedescendant"?: string | undefined;
|
13
14
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
14
|
-
"aria-autocomplete"?: "none" | "
|
15
|
-
"aria-braillelabel"?: string | undefined
|
16
|
-
"aria-brailleroledescription"?: string | undefined
|
15
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
16
|
+
"aria-braillelabel"?: string | undefined;
|
17
|
+
"aria-brailleroledescription"?: string | undefined;
|
17
18
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
18
|
-
"aria-checked"?: boolean | "
|
19
|
-
"aria-colcount"?: number | undefined
|
20
|
-
"aria-colindex"?: number | undefined
|
21
|
-
"aria-colindextext"?: string | undefined
|
22
|
-
"aria-colspan"?: number | undefined
|
23
|
-
"aria-controls"?: string | undefined
|
24
|
-
"aria-current"?: boolean | "
|
25
|
-
"aria-describedby"?: string | undefined
|
26
|
-
"aria-description"?: string | undefined
|
27
|
-
"aria-details"?: string | 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;
|
28
29
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
29
|
-
"aria-dropeffect"?: "none" | "
|
30
|
-
"aria-errormessage"?: string | undefined
|
30
|
+
"aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
31
|
+
"aria-errormessage"?: string | undefined;
|
31
32
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
32
|
-
"aria-flowto"?: string | undefined
|
33
|
+
"aria-flowto"?: string | undefined;
|
33
34
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
34
|
-
"aria-haspopup"?: boolean | "
|
35
|
+
"aria-haspopup"?: boolean | "menu" | "true" | "false" | "dialog" | "grid" | "listbox" | "tree" | undefined;
|
35
36
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
36
|
-
"aria-invalid"?: boolean | "
|
37
|
-
"aria-keyshortcuts"?: string | undefined
|
38
|
-
"aria-label"?: string | undefined
|
39
|
-
"aria-labelledby"?: string | undefined
|
40
|
-
"aria-level"?: number | undefined
|
41
|
-
"aria-live"?: "off" | "assertive" | "polite" | 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;
|
42
43
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
43
44
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
44
45
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
45
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined
|
46
|
-
"aria-owns"?: string | undefined
|
47
|
-
"aria-placeholder"?: string | undefined
|
48
|
-
"aria-posinset"?: number | undefined
|
49
|
-
"aria-pressed"?: boolean | "
|
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;
|
50
51
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
51
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
52
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
52
53
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
53
|
-
"aria-roledescription"?: string | undefined
|
54
|
-
"aria-rowcount"?: number | undefined
|
55
|
-
"aria-rowindex"?: number | undefined
|
56
|
-
"aria-rowindextext"?: string | undefined
|
57
|
-
"aria-rowspan"?: number | 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;
|
58
59
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
59
|
-
"aria-setsize"?: number | undefined
|
60
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined
|
61
|
-
"aria-valuemax"?: number | undefined
|
62
|
-
"aria-valuemin"?: number | undefined
|
63
|
-
"aria-valuenow"?: number | undefined
|
64
|
-
"aria-valuetext"?: string | 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;
|
65
66
|
children?: import("react").ReactNode;
|
66
67
|
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
67
68
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
@@ -81,7 +82,7 @@ export declare const usePageHeader: (props: DSPageHeaderT.Props) => {
|
|
81
82
|
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
82
83
|
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
83
84
|
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
84
|
-
onBeforeInput?: import("react").
|
85
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
85
86
|
onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
86
87
|
onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
87
88
|
onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
@@ -221,213 +222,213 @@ export declare const usePageHeader: (props: DSPageHeaderT.Props) => {
|
|
221
222
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
222
223
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
223
224
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
224
|
-
defaultChecked?: boolean | undefined
|
225
|
+
defaultChecked?: boolean | undefined;
|
225
226
|
defaultValue?: string | number | readonly string[] | undefined;
|
226
|
-
suppressContentEditableWarning?: boolean | undefined
|
227
|
-
suppressHydrationWarning?: boolean | undefined
|
228
|
-
accessKey?: string | undefined
|
229
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" |
|
230
|
-
autoFocus?: boolean | undefined
|
227
|
+
suppressContentEditableWarning?: boolean | undefined;
|
228
|
+
suppressHydrationWarning?: boolean | undefined;
|
229
|
+
accessKey?: string | undefined;
|
230
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
231
|
+
autoFocus?: boolean | undefined;
|
231
232
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
232
|
-
contextMenu?: string | undefined
|
233
|
-
dir?: string | undefined
|
233
|
+
contextMenu?: string | undefined;
|
234
|
+
dir?: string | undefined;
|
234
235
|
draggable?: (boolean | "true" | "false") | undefined;
|
235
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined
|
236
|
-
hidden?: boolean | undefined
|
237
|
-
id?: string | undefined
|
238
|
-
lang?: string | undefined
|
239
|
-
nonce?: string | undefined
|
240
|
-
slot?: string | undefined
|
236
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
237
|
+
hidden?: boolean | undefined;
|
238
|
+
id?: string | undefined;
|
239
|
+
lang?: string | undefined;
|
240
|
+
nonce?: string | undefined;
|
241
|
+
slot?: string | undefined;
|
241
242
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
242
243
|
style?: import("react").CSSProperties | undefined;
|
243
244
|
tabIndex?: 0 | -1 | undefined;
|
244
|
-
title?: string | undefined
|
245
|
-
translate?: "yes" | "no" | undefined
|
246
|
-
radioGroup?: string | undefined
|
245
|
+
title?: string | undefined;
|
246
|
+
translate?: "yes" | "no" | undefined;
|
247
|
+
radioGroup?: string | undefined;
|
247
248
|
role?: import("react").AriaRole | undefined;
|
248
|
-
about?: string | undefined
|
249
|
-
content?: string | undefined
|
250
|
-
datatype?: string | undefined
|
249
|
+
about?: string | undefined;
|
250
|
+
content?: string | undefined;
|
251
|
+
datatype?: string | undefined;
|
251
252
|
inlist?: any;
|
252
|
-
prefix?: string | undefined
|
253
|
-
property?: string | undefined
|
254
|
-
rel?: string | undefined
|
255
|
-
resource?: string | undefined
|
256
|
-
rev?: string | undefined
|
257
|
-
typeof?: string | undefined
|
258
|
-
vocab?: string | undefined
|
259
|
-
autoCorrect?: string | undefined
|
260
|
-
autoSave?: string | undefined
|
261
|
-
color?: string | undefined
|
262
|
-
itemProp?: string | undefined
|
263
|
-
itemScope?: boolean | undefined
|
264
|
-
itemType?: string | undefined
|
265
|
-
itemID?: string | undefined
|
266
|
-
itemRef?: string | undefined
|
267
|
-
results?: number | undefined
|
268
|
-
security?: string | undefined
|
269
|
-
unselectable?: "
|
270
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" |
|
271
|
-
is?: string | undefined
|
272
|
-
exportparts?: string | undefined
|
273
|
-
part?: string | undefined
|
274
|
-
accept?: string | undefined
|
275
|
-
acceptCharset?: string | undefined
|
253
|
+
prefix?: string | undefined;
|
254
|
+
property?: string | undefined;
|
255
|
+
rel?: string | undefined;
|
256
|
+
resource?: string | undefined;
|
257
|
+
rev?: string | undefined;
|
258
|
+
typeof?: string | undefined;
|
259
|
+
vocab?: string | undefined;
|
260
|
+
autoCorrect?: string | undefined;
|
261
|
+
autoSave?: string | undefined;
|
262
|
+
color?: string | undefined;
|
263
|
+
itemProp?: string | undefined;
|
264
|
+
itemScope?: boolean | undefined;
|
265
|
+
itemType?: string | undefined;
|
266
|
+
itemID?: string | undefined;
|
267
|
+
itemRef?: string | undefined;
|
268
|
+
results?: number | undefined;
|
269
|
+
security?: string | undefined;
|
270
|
+
unselectable?: "off" | "on" | undefined;
|
271
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
272
|
+
is?: string | undefined;
|
273
|
+
exportparts?: string | undefined;
|
274
|
+
part?: string | undefined;
|
275
|
+
accept?: string | undefined;
|
276
|
+
acceptCharset?: string | undefined;
|
276
277
|
action?: string | undefined;
|
277
|
-
allowFullScreen?: boolean | undefined
|
278
|
-
allowTransparency?: boolean | undefined
|
279
|
-
alt?: string | undefined
|
280
|
-
async?: boolean | undefined
|
281
|
-
autoComplete?: string | undefined
|
282
|
-
autoPlay?: boolean | undefined
|
283
|
-
capture?: boolean | "user" | "environment" | undefined
|
284
|
-
cellPadding?:
|
285
|
-
cellSpacing?:
|
286
|
-
charSet?: string | undefined
|
287
|
-
challenge?: string | undefined
|
288
|
-
checked?: boolean | undefined
|
289
|
-
cite?: string | undefined
|
290
|
-
classID?: string | undefined
|
291
|
-
colSpan?: number | undefined
|
292
|
-
controls?: boolean | undefined
|
293
|
-
coords?: string | undefined
|
278
|
+
allowFullScreen?: boolean | undefined;
|
279
|
+
allowTransparency?: boolean | undefined;
|
280
|
+
alt?: string | undefined;
|
281
|
+
async?: boolean | undefined;
|
282
|
+
autoComplete?: string | undefined;
|
283
|
+
autoPlay?: boolean | undefined;
|
284
|
+
capture?: boolean | "user" | "environment" | undefined;
|
285
|
+
cellPadding?: string | number | undefined;
|
286
|
+
cellSpacing?: string | number | undefined;
|
287
|
+
charSet?: string | undefined;
|
288
|
+
challenge?: string | undefined;
|
289
|
+
checked?: boolean | undefined;
|
290
|
+
cite?: string | undefined;
|
291
|
+
classID?: string | undefined;
|
292
|
+
colSpan?: number | undefined;
|
293
|
+
controls?: boolean | undefined;
|
294
|
+
coords?: string | undefined;
|
294
295
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
295
|
-
data?: string | undefined
|
296
|
-
dateTime?: string | undefined
|
297
|
-
default?: boolean | undefined
|
298
|
-
defer?: boolean | undefined
|
299
|
-
disabled?: boolean | undefined
|
296
|
+
data?: string | undefined;
|
297
|
+
dateTime?: string | undefined;
|
298
|
+
default?: boolean | undefined;
|
299
|
+
defer?: boolean | undefined;
|
300
|
+
disabled?: boolean | undefined;
|
300
301
|
download?: any;
|
301
|
-
encType?: string | undefined
|
302
|
+
encType?: string | undefined;
|
302
303
|
formAction?: string | undefined;
|
303
|
-
formEncType?: string | undefined
|
304
|
-
formMethod?: string | undefined
|
305
|
-
formNoValidate?: boolean | undefined
|
306
|
-
formTarget?: string | undefined
|
307
|
-
frameBorder?:
|
308
|
-
headers?: string | undefined
|
309
|
-
height?:
|
310
|
-
high?: number | undefined
|
311
|
-
href?: string | undefined
|
312
|
-
hrefLang?: string | undefined
|
313
|
-
htmlFor?: string | undefined
|
314
|
-
httpEquiv?: string | undefined
|
315
|
-
integrity?: string | undefined
|
316
|
-
keyParams?: string | undefined
|
317
|
-
keyType?: string | undefined
|
318
|
-
kind?: string | undefined
|
319
|
-
label?: string | undefined
|
320
|
-
loop?: boolean | undefined
|
321
|
-
low?: number | undefined
|
322
|
-
manifest?: string | undefined
|
323
|
-
marginHeight?: number | undefined
|
324
|
-
marginWidth?: number | undefined
|
325
|
-
max?:
|
326
|
-
maxLength?: number | undefined
|
327
|
-
media?: string | undefined
|
328
|
-
mediaGroup?: string | undefined
|
329
|
-
method?: string | undefined
|
330
|
-
min?:
|
331
|
-
minLength?: number | undefined
|
332
|
-
multiple?: boolean | undefined
|
333
|
-
muted?: boolean | undefined
|
334
|
-
name?: string | undefined
|
335
|
-
noValidate?: boolean | undefined
|
336
|
-
open?: boolean | undefined
|
337
|
-
optimum?: number | undefined
|
338
|
-
pattern?: string | undefined
|
339
|
-
placeholder?: string | undefined
|
340
|
-
playsInline?: boolean | undefined
|
341
|
-
poster?: string | undefined
|
342
|
-
preload?: string | undefined
|
343
|
-
readOnly?: boolean | undefined
|
344
|
-
required?: boolean | undefined
|
345
|
-
reversed?: boolean | undefined
|
346
|
-
rowSpan?: number | undefined
|
347
|
-
sandbox?: string | undefined
|
348
|
-
scope?: string | undefined
|
349
|
-
scoped?: boolean | undefined
|
350
|
-
scrolling?: string | undefined
|
351
|
-
seamless?: boolean | undefined
|
352
|
-
selected?: boolean | undefined
|
353
|
-
shape?: string | undefined
|
354
|
-
size?: number | undefined
|
355
|
-
sizes?: string | undefined
|
356
|
-
src?: string | undefined
|
357
|
-
srcDoc?: string | undefined
|
358
|
-
srcLang?: string | undefined
|
359
|
-
srcSet?: string | undefined
|
360
|
-
start?: number | undefined
|
361
|
-
step?:
|
362
|
-
target?: string | undefined
|
363
|
-
type?: string | undefined
|
364
|
-
useMap?: string | undefined
|
304
|
+
formEncType?: string | undefined;
|
305
|
+
formMethod?: string | undefined;
|
306
|
+
formNoValidate?: boolean | undefined;
|
307
|
+
formTarget?: string | undefined;
|
308
|
+
frameBorder?: string | number | undefined;
|
309
|
+
headers?: string | undefined;
|
310
|
+
height?: string | number | undefined;
|
311
|
+
high?: number | undefined;
|
312
|
+
href?: string | undefined;
|
313
|
+
hrefLang?: string | undefined;
|
314
|
+
htmlFor?: string | undefined;
|
315
|
+
httpEquiv?: string | undefined;
|
316
|
+
integrity?: string | undefined;
|
317
|
+
keyParams?: string | undefined;
|
318
|
+
keyType?: string | undefined;
|
319
|
+
kind?: string | undefined;
|
320
|
+
label?: string | undefined;
|
321
|
+
loop?: boolean | undefined;
|
322
|
+
low?: number | undefined;
|
323
|
+
manifest?: string | undefined;
|
324
|
+
marginHeight?: number | undefined;
|
325
|
+
marginWidth?: number | undefined;
|
326
|
+
max?: string | number | undefined;
|
327
|
+
maxLength?: number | undefined;
|
328
|
+
media?: string | undefined;
|
329
|
+
mediaGroup?: string | undefined;
|
330
|
+
method?: string | undefined;
|
331
|
+
min?: string | number | undefined;
|
332
|
+
minLength?: number | undefined;
|
333
|
+
multiple?: boolean | undefined;
|
334
|
+
muted?: boolean | undefined;
|
335
|
+
name?: string | undefined;
|
336
|
+
noValidate?: boolean | undefined;
|
337
|
+
open?: boolean | undefined;
|
338
|
+
optimum?: number | undefined;
|
339
|
+
pattern?: string | undefined;
|
340
|
+
placeholder?: string | undefined;
|
341
|
+
playsInline?: boolean | undefined;
|
342
|
+
poster?: string | undefined;
|
343
|
+
preload?: string | undefined;
|
344
|
+
readOnly?: boolean | undefined;
|
345
|
+
required?: boolean | undefined;
|
346
|
+
reversed?: boolean | undefined;
|
347
|
+
rowSpan?: number | undefined;
|
348
|
+
sandbox?: string | undefined;
|
349
|
+
scope?: string | undefined;
|
350
|
+
scoped?: boolean | undefined;
|
351
|
+
scrolling?: string | undefined;
|
352
|
+
seamless?: boolean | undefined;
|
353
|
+
selected?: boolean | undefined;
|
354
|
+
shape?: string | undefined;
|
355
|
+
size?: number | undefined;
|
356
|
+
sizes?: string | undefined;
|
357
|
+
src?: string | undefined;
|
358
|
+
srcDoc?: string | undefined;
|
359
|
+
srcLang?: string | undefined;
|
360
|
+
srcSet?: string | undefined;
|
361
|
+
start?: number | undefined;
|
362
|
+
step?: string | number | undefined;
|
363
|
+
target?: string | undefined;
|
364
|
+
type?: string | undefined;
|
365
|
+
useMap?: string | undefined;
|
365
366
|
value?: string | number | readonly string[] | undefined;
|
366
|
-
width?:
|
367
|
-
wmode?: string | undefined
|
367
|
+
width?: string | number | undefined;
|
368
|
+
wmode?: string | undefined;
|
368
369
|
propsWithDefaults: DSPageHeaderT.InternalProps;
|
369
370
|
globalAttributes: Partial<Pick<object, "summary" | "rows" | "cols" | "className" | "wrap" | "span" | "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" | "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" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "cite" | "classID" | "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" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "value" | "width" | "wmode"> & Omit<{
|
370
|
-
summary?: string | undefined
|
371
|
-
rows?: number | undefined
|
372
|
-
cols?: number | undefined
|
373
|
-
className?: string | undefined
|
374
|
-
wrap?: string | undefined
|
375
|
-
span?: number | undefined
|
376
|
-
form?: string | undefined
|
377
|
-
list?: string | undefined
|
378
|
-
"aria-activedescendant"?: string | undefined
|
371
|
+
summary?: string | undefined;
|
372
|
+
rows?: number | undefined;
|
373
|
+
cols?: number | undefined;
|
374
|
+
className?: string | undefined;
|
375
|
+
wrap?: string | undefined;
|
376
|
+
span?: number | undefined;
|
377
|
+
form?: string | undefined;
|
378
|
+
list?: string | undefined;
|
379
|
+
"aria-activedescendant"?: string | undefined;
|
379
380
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
380
|
-
"aria-autocomplete"?: "none" | "
|
381
|
-
"aria-braillelabel"?: string | undefined
|
382
|
-
"aria-brailleroledescription"?: string | undefined
|
381
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
382
|
+
"aria-braillelabel"?: string | undefined;
|
383
|
+
"aria-brailleroledescription"?: string | undefined;
|
383
384
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
384
|
-
"aria-checked"?: boolean | "
|
385
|
-
"aria-colcount"?: number | undefined
|
386
|
-
"aria-colindex"?: number | undefined
|
387
|
-
"aria-colindextext"?: string | undefined
|
388
|
-
"aria-colspan"?: number | undefined
|
389
|
-
"aria-controls"?: string | undefined
|
390
|
-
"aria-current"?: boolean | "
|
391
|
-
"aria-describedby"?: string | undefined
|
392
|
-
"aria-description"?: string | undefined
|
393
|
-
"aria-details"?: string | undefined
|
385
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
386
|
+
"aria-colcount"?: number | undefined;
|
387
|
+
"aria-colindex"?: number | undefined;
|
388
|
+
"aria-colindextext"?: string | undefined;
|
389
|
+
"aria-colspan"?: number | undefined;
|
390
|
+
"aria-controls"?: string | undefined;
|
391
|
+
"aria-current"?: boolean | "true" | "false" | "step" | "page" | "location" | "date" | "time" | undefined;
|
392
|
+
"aria-describedby"?: string | undefined;
|
393
|
+
"aria-description"?: string | undefined;
|
394
|
+
"aria-details"?: string | undefined;
|
394
395
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
395
|
-
"aria-dropeffect"?: "none" | "
|
396
|
-
"aria-errormessage"?: string | undefined
|
396
|
+
"aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
397
|
+
"aria-errormessage"?: string | undefined;
|
397
398
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
398
|
-
"aria-flowto"?: string | undefined
|
399
|
+
"aria-flowto"?: string | undefined;
|
399
400
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
400
|
-
"aria-haspopup"?: boolean | "
|
401
|
+
"aria-haspopup"?: boolean | "menu" | "true" | "false" | "dialog" | "grid" | "listbox" | "tree" | undefined;
|
401
402
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
402
|
-
"aria-invalid"?: boolean | "
|
403
|
-
"aria-keyshortcuts"?: string | undefined
|
404
|
-
"aria-label"?: string | undefined
|
405
|
-
"aria-labelledby"?: string | undefined
|
406
|
-
"aria-level"?: number | undefined
|
407
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined
|
403
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
404
|
+
"aria-keyshortcuts"?: string | undefined;
|
405
|
+
"aria-label"?: string | undefined;
|
406
|
+
"aria-labelledby"?: string | undefined;
|
407
|
+
"aria-level"?: number | undefined;
|
408
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
408
409
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
409
410
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
410
411
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
411
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined
|
412
|
-
"aria-owns"?: string | undefined
|
413
|
-
"aria-placeholder"?: string | undefined
|
414
|
-
"aria-posinset"?: number | undefined
|
415
|
-
"aria-pressed"?: boolean | "
|
412
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
413
|
+
"aria-owns"?: string | undefined;
|
414
|
+
"aria-placeholder"?: string | undefined;
|
415
|
+
"aria-posinset"?: number | undefined;
|
416
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
416
417
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
417
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
418
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
418
419
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
419
|
-
"aria-roledescription"?: string | undefined
|
420
|
-
"aria-rowcount"?: number | undefined
|
421
|
-
"aria-rowindex"?: number | undefined
|
422
|
-
"aria-rowindextext"?: string | undefined
|
423
|
-
"aria-rowspan"?: number | undefined
|
420
|
+
"aria-roledescription"?: string | undefined;
|
421
|
+
"aria-rowcount"?: number | undefined;
|
422
|
+
"aria-rowindex"?: number | undefined;
|
423
|
+
"aria-rowindextext"?: string | undefined;
|
424
|
+
"aria-rowspan"?: number | undefined;
|
424
425
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
425
|
-
"aria-setsize"?: number | undefined
|
426
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined
|
427
|
-
"aria-valuemax"?: number | undefined
|
428
|
-
"aria-valuemin"?: number | undefined
|
429
|
-
"aria-valuenow"?: number | undefined
|
430
|
-
"aria-valuetext"?: string | undefined
|
426
|
+
"aria-setsize"?: number | undefined;
|
427
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
428
|
+
"aria-valuemax"?: number | undefined;
|
429
|
+
"aria-valuemin"?: number | undefined;
|
430
|
+
"aria-valuenow"?: number | undefined;
|
431
|
+
"aria-valuetext"?: string | undefined;
|
431
432
|
children?: import("react").ReactNode;
|
432
433
|
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
433
434
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
@@ -447,7 +448,7 @@ export declare const usePageHeader: (props: DSPageHeaderT.Props) => {
|
|
447
448
|
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
448
449
|
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
449
450
|
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
450
|
-
onBeforeInput?: import("react").
|
451
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
451
452
|
onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
452
453
|
onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
453
454
|
onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
@@ -587,150 +588,150 @@ export declare const usePageHeader: (props: DSPageHeaderT.Props) => {
|
|
587
588
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
588
589
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
589
590
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
590
|
-
defaultChecked?: boolean | undefined
|
591
|
+
defaultChecked?: boolean | undefined;
|
591
592
|
defaultValue?: string | number | readonly string[] | undefined;
|
592
|
-
suppressContentEditableWarning?: boolean | undefined
|
593
|
-
suppressHydrationWarning?: boolean | undefined
|
594
|
-
accessKey?: string | undefined
|
595
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" |
|
596
|
-
autoFocus?: boolean | undefined
|
593
|
+
suppressContentEditableWarning?: boolean | undefined;
|
594
|
+
suppressHydrationWarning?: boolean | undefined;
|
595
|
+
accessKey?: string | undefined;
|
596
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
597
|
+
autoFocus?: boolean | undefined;
|
597
598
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
598
|
-
contextMenu?: string | undefined
|
599
|
-
dir?: string | undefined
|
599
|
+
contextMenu?: string | undefined;
|
600
|
+
dir?: string | undefined;
|
600
601
|
draggable?: (boolean | "true" | "false") | undefined;
|
601
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined
|
602
|
-
hidden?: boolean | undefined
|
603
|
-
id?: string | undefined
|
604
|
-
lang?: string | undefined
|
605
|
-
nonce?: string | undefined
|
606
|
-
slot?: string | undefined
|
602
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
603
|
+
hidden?: boolean | undefined;
|
604
|
+
id?: string | undefined;
|
605
|
+
lang?: string | undefined;
|
606
|
+
nonce?: string | undefined;
|
607
|
+
slot?: string | undefined;
|
607
608
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
608
609
|
style?: import("react").CSSProperties | undefined;
|
609
610
|
tabIndex?: 0 | -1 | undefined;
|
610
|
-
title?: string | undefined
|
611
|
-
translate?: "yes" | "no" | undefined
|
612
|
-
radioGroup?: string | undefined
|
611
|
+
title?: string | undefined;
|
612
|
+
translate?: "yes" | "no" | undefined;
|
613
|
+
radioGroup?: string | undefined;
|
613
614
|
role?: import("react").AriaRole | undefined;
|
614
|
-
about?: string | undefined
|
615
|
-
content?: string | undefined
|
616
|
-
datatype?: string | undefined
|
615
|
+
about?: string | undefined;
|
616
|
+
content?: string | undefined;
|
617
|
+
datatype?: string | undefined;
|
617
618
|
inlist?: any;
|
618
|
-
prefix?: string | undefined
|
619
|
-
property?: string | undefined
|
620
|
-
rel?: string | undefined
|
621
|
-
resource?: string | undefined
|
622
|
-
rev?: string | undefined
|
623
|
-
typeof?: string | undefined
|
624
|
-
vocab?: string | undefined
|
625
|
-
autoCorrect?: string | undefined
|
626
|
-
autoSave?: string | undefined
|
627
|
-
color?: string | undefined
|
628
|
-
itemProp?: string | undefined
|
629
|
-
itemScope?: boolean | undefined
|
630
|
-
itemType?: string | undefined
|
631
|
-
itemID?: string | undefined
|
632
|
-
itemRef?: string | undefined
|
633
|
-
results?: number | undefined
|
634
|
-
security?: string | undefined
|
635
|
-
unselectable?: "
|
636
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" |
|
637
|
-
is?: string | undefined
|
638
|
-
exportparts?: string | undefined
|
639
|
-
part?: string | undefined
|
640
|
-
accept?: string | undefined
|
641
|
-
acceptCharset?: string | undefined
|
619
|
+
prefix?: string | undefined;
|
620
|
+
property?: string | undefined;
|
621
|
+
rel?: string | undefined;
|
622
|
+
resource?: string | undefined;
|
623
|
+
rev?: string | undefined;
|
624
|
+
typeof?: string | undefined;
|
625
|
+
vocab?: string | undefined;
|
626
|
+
autoCorrect?: string | undefined;
|
627
|
+
autoSave?: string | undefined;
|
628
|
+
color?: string | undefined;
|
629
|
+
itemProp?: string | undefined;
|
630
|
+
itemScope?: boolean | undefined;
|
631
|
+
itemType?: string | undefined;
|
632
|
+
itemID?: string | undefined;
|
633
|
+
itemRef?: string | undefined;
|
634
|
+
results?: number | undefined;
|
635
|
+
security?: string | undefined;
|
636
|
+
unselectable?: "off" | "on" | undefined;
|
637
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
638
|
+
is?: string | undefined;
|
639
|
+
exportparts?: string | undefined;
|
640
|
+
part?: string | undefined;
|
641
|
+
accept?: string | undefined;
|
642
|
+
acceptCharset?: string | undefined;
|
642
643
|
action?: string | undefined;
|
643
|
-
allowFullScreen?: boolean | undefined
|
644
|
-
allowTransparency?: boolean | undefined
|
645
|
-
alt?: string | undefined
|
646
|
-
async?: boolean | undefined
|
647
|
-
autoComplete?: string | undefined
|
648
|
-
autoPlay?: boolean | undefined
|
649
|
-
capture?: boolean | "user" | "environment" | undefined
|
650
|
-
cellPadding?:
|
651
|
-
cellSpacing?:
|
652
|
-
charSet?: string | undefined
|
653
|
-
challenge?: string | undefined
|
654
|
-
checked?: boolean | undefined
|
655
|
-
cite?: string | undefined
|
656
|
-
classID?: string | undefined
|
657
|
-
colSpan?: number | undefined
|
658
|
-
controls?: boolean | undefined
|
659
|
-
coords?: string | undefined
|
644
|
+
allowFullScreen?: boolean | undefined;
|
645
|
+
allowTransparency?: boolean | undefined;
|
646
|
+
alt?: string | undefined;
|
647
|
+
async?: boolean | undefined;
|
648
|
+
autoComplete?: string | undefined;
|
649
|
+
autoPlay?: boolean | undefined;
|
650
|
+
capture?: boolean | "user" | "environment" | undefined;
|
651
|
+
cellPadding?: string | number | undefined;
|
652
|
+
cellSpacing?: string | number | undefined;
|
653
|
+
charSet?: string | undefined;
|
654
|
+
challenge?: string | undefined;
|
655
|
+
checked?: boolean | undefined;
|
656
|
+
cite?: string | undefined;
|
657
|
+
classID?: string | undefined;
|
658
|
+
colSpan?: number | undefined;
|
659
|
+
controls?: boolean | undefined;
|
660
|
+
coords?: string | undefined;
|
660
661
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
661
|
-
data?: string | undefined
|
662
|
-
dateTime?: string | undefined
|
663
|
-
default?: boolean | undefined
|
664
|
-
defer?: boolean | undefined
|
665
|
-
disabled?: boolean | undefined
|
662
|
+
data?: string | undefined;
|
663
|
+
dateTime?: string | undefined;
|
664
|
+
default?: boolean | undefined;
|
665
|
+
defer?: boolean | undefined;
|
666
|
+
disabled?: boolean | undefined;
|
666
667
|
download?: any;
|
667
|
-
encType?: string | undefined
|
668
|
+
encType?: string | undefined;
|
668
669
|
formAction?: string | undefined;
|
669
|
-
formEncType?: string | undefined
|
670
|
-
formMethod?: string | undefined
|
671
|
-
formNoValidate?: boolean | undefined
|
672
|
-
formTarget?: string | undefined
|
673
|
-
frameBorder?:
|
674
|
-
headers?: string | undefined
|
675
|
-
height?:
|
676
|
-
high?: number | undefined
|
677
|
-
href?: string | undefined
|
678
|
-
hrefLang?: string | undefined
|
679
|
-
htmlFor?: string | undefined
|
680
|
-
httpEquiv?: string | undefined
|
681
|
-
integrity?: string | undefined
|
682
|
-
keyParams?: string | undefined
|
683
|
-
keyType?: string | undefined
|
684
|
-
kind?: string | undefined
|
685
|
-
label?: string | undefined
|
686
|
-
loop?: boolean | undefined
|
687
|
-
low?: number | undefined
|
688
|
-
manifest?: string | undefined
|
689
|
-
marginHeight?: number | undefined
|
690
|
-
marginWidth?: number | undefined
|
691
|
-
max?:
|
692
|
-
maxLength?: number | undefined
|
693
|
-
media?: string | undefined
|
694
|
-
mediaGroup?: string | undefined
|
695
|
-
method?: string | undefined
|
696
|
-
min?:
|
697
|
-
minLength?: number | undefined
|
698
|
-
multiple?: boolean | undefined
|
699
|
-
muted?: boolean | undefined
|
700
|
-
name?: string | undefined
|
701
|
-
noValidate?: boolean | undefined
|
702
|
-
open?: boolean | undefined
|
703
|
-
optimum?: number | undefined
|
704
|
-
pattern?: string | undefined
|
705
|
-
placeholder?: string | undefined
|
706
|
-
playsInline?: boolean | undefined
|
707
|
-
poster?: string | undefined
|
708
|
-
preload?: string | undefined
|
709
|
-
readOnly?: boolean | undefined
|
710
|
-
required?: boolean | undefined
|
711
|
-
reversed?: boolean | undefined
|
712
|
-
rowSpan?: number | undefined
|
713
|
-
sandbox?: string | undefined
|
714
|
-
scope?: string | undefined
|
715
|
-
scoped?: boolean | undefined
|
716
|
-
scrolling?: string | undefined
|
717
|
-
seamless?: boolean | undefined
|
718
|
-
selected?: boolean | undefined
|
719
|
-
shape?: string | undefined
|
720
|
-
size?: number | undefined
|
721
|
-
sizes?: string | undefined
|
722
|
-
src?: string | undefined
|
723
|
-
srcDoc?: string | undefined
|
724
|
-
srcLang?: string | undefined
|
725
|
-
srcSet?: string | undefined
|
726
|
-
start?: number | undefined
|
727
|
-
step?:
|
728
|
-
target?: string | undefined
|
729
|
-
type?: string | undefined
|
730
|
-
useMap?: string | undefined
|
670
|
+
formEncType?: string | undefined;
|
671
|
+
formMethod?: string | undefined;
|
672
|
+
formNoValidate?: boolean | undefined;
|
673
|
+
formTarget?: string | undefined;
|
674
|
+
frameBorder?: string | number | undefined;
|
675
|
+
headers?: string | undefined;
|
676
|
+
height?: string | number | undefined;
|
677
|
+
high?: number | undefined;
|
678
|
+
href?: string | undefined;
|
679
|
+
hrefLang?: string | undefined;
|
680
|
+
htmlFor?: string | undefined;
|
681
|
+
httpEquiv?: string | undefined;
|
682
|
+
integrity?: string | undefined;
|
683
|
+
keyParams?: string | undefined;
|
684
|
+
keyType?: string | undefined;
|
685
|
+
kind?: string | undefined;
|
686
|
+
label?: string | undefined;
|
687
|
+
loop?: boolean | undefined;
|
688
|
+
low?: number | undefined;
|
689
|
+
manifest?: string | undefined;
|
690
|
+
marginHeight?: number | undefined;
|
691
|
+
marginWidth?: number | undefined;
|
692
|
+
max?: string | number | undefined;
|
693
|
+
maxLength?: number | undefined;
|
694
|
+
media?: string | undefined;
|
695
|
+
mediaGroup?: string | undefined;
|
696
|
+
method?: string | undefined;
|
697
|
+
min?: string | number | undefined;
|
698
|
+
minLength?: number | undefined;
|
699
|
+
multiple?: boolean | undefined;
|
700
|
+
muted?: boolean | undefined;
|
701
|
+
name?: string | undefined;
|
702
|
+
noValidate?: boolean | undefined;
|
703
|
+
open?: boolean | undefined;
|
704
|
+
optimum?: number | undefined;
|
705
|
+
pattern?: string | undefined;
|
706
|
+
placeholder?: string | undefined;
|
707
|
+
playsInline?: boolean | undefined;
|
708
|
+
poster?: string | undefined;
|
709
|
+
preload?: string | undefined;
|
710
|
+
readOnly?: boolean | undefined;
|
711
|
+
required?: boolean | undefined;
|
712
|
+
reversed?: boolean | undefined;
|
713
|
+
rowSpan?: number | undefined;
|
714
|
+
sandbox?: string | undefined;
|
715
|
+
scope?: string | undefined;
|
716
|
+
scoped?: boolean | undefined;
|
717
|
+
scrolling?: string | undefined;
|
718
|
+
seamless?: boolean | undefined;
|
719
|
+
selected?: boolean | undefined;
|
720
|
+
shape?: string | undefined;
|
721
|
+
size?: number | undefined;
|
722
|
+
sizes?: string | undefined;
|
723
|
+
src?: string | undefined;
|
724
|
+
srcDoc?: string | undefined;
|
725
|
+
srcLang?: string | undefined;
|
726
|
+
srcSet?: string | undefined;
|
727
|
+
start?: number | undefined;
|
728
|
+
step?: string | number | undefined;
|
729
|
+
target?: string | undefined;
|
730
|
+
type?: string | undefined;
|
731
|
+
useMap?: string | undefined;
|
731
732
|
value?: string | number | readonly string[] | undefined;
|
732
|
-
width?:
|
733
|
-
wmode?: string | undefined
|
733
|
+
width?: string | number | undefined;
|
734
|
+
wmode?: string | undefined;
|
734
735
|
}, never>>;
|
735
736
|
xStyledProps: import("@elliemae/ds-props-helpers").XstyledProps;
|
736
737
|
currentBackArrow: import("react/jsx-runtime.js").JSX.Element | undefined;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@elliemae/ds-page-header-v2",
|
3
|
-
"version": "3.53.0-
|
3
|
+
"version": "3.53.0-next.10",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "ICE MT - Dimsum - Page Header V2",
|
6
6
|
"files": [
|
@@ -37,23 +37,23 @@
|
|
37
37
|
},
|
38
38
|
"dependencies": {
|
39
39
|
"prop-types": "~15.8.1",
|
40
|
-
"@elliemae/ds-breadcrumb": "3.53.0-
|
41
|
-
"@elliemae/ds-
|
42
|
-
"@elliemae/ds-
|
43
|
-
"@elliemae/ds-form": "3.53.0-
|
44
|
-
"@elliemae/ds-grid": "3.53.0-
|
45
|
-
"@elliemae/ds-
|
46
|
-
"@elliemae/ds-
|
47
|
-
"@elliemae/ds-
|
48
|
-
"@elliemae/ds-
|
49
|
-
"@elliemae/ds-
|
50
|
-
"@elliemae/ds-
|
40
|
+
"@elliemae/ds-breadcrumb": "3.53.0-next.10",
|
41
|
+
"@elliemae/ds-form-input-text": "3.53.0-next.10",
|
42
|
+
"@elliemae/ds-button": "3.53.0-next.10",
|
43
|
+
"@elliemae/ds-form": "3.53.0-next.10",
|
44
|
+
"@elliemae/ds-grid": "3.53.0-next.10",
|
45
|
+
"@elliemae/ds-props-helpers": "3.53.0-next.10",
|
46
|
+
"@elliemae/ds-icon": "3.53.0-next.10",
|
47
|
+
"@elliemae/ds-icons": "3.53.0-next.10",
|
48
|
+
"@elliemae/ds-truncated-tooltip-text": "3.53.0-next.10",
|
49
|
+
"@elliemae/ds-skeleton": "3.53.0-next.10",
|
50
|
+
"@elliemae/ds-system": "3.53.0-next.10"
|
51
51
|
},
|
52
52
|
"devDependencies": {
|
53
|
-
"@elliemae/pui-cli": "9.0.0-next.
|
53
|
+
"@elliemae/pui-cli": "9.0.0-next.63",
|
54
54
|
"jest": "~29.7.0",
|
55
55
|
"styled-components": "~5.3.9",
|
56
|
-
"@elliemae/ds-monorepo-devops": "3.53.0-
|
56
|
+
"@elliemae/ds-monorepo-devops": "3.53.0-next.10"
|
57
57
|
},
|
58
58
|
"peerDependencies": {
|
59
59
|
"lodash-es": "^4.17.21",
|
package/dist/cjs/tests/utils.js
DELETED
@@ -1,124 +0,0 @@
|
|
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 utils_exports = {};
|
30
|
-
__export(utils_exports, {
|
31
|
-
options: () => options
|
32
|
-
});
|
33
|
-
module.exports = __toCommonJS(utils_exports);
|
34
|
-
var React = __toESM(require("react"));
|
35
|
-
var import_ds_system = require("@elliemae/ds-system");
|
36
|
-
const subItems = [
|
37
|
-
{
|
38
|
-
id: "id3",
|
39
|
-
label: "SubMenu List Item-1",
|
40
|
-
onClick: (e) => (0, import_ds_system.logger)(e, "subMenu id3")
|
41
|
-
},
|
42
|
-
{
|
43
|
-
id: "id4",
|
44
|
-
type: "subMenu",
|
45
|
-
label: "SubMenu List Item-2",
|
46
|
-
onClick: (e) => (0, import_ds_system.logger)(e, "subMenu id4"),
|
47
|
-
subItems: [
|
48
|
-
{
|
49
|
-
id: "id5",
|
50
|
-
label: "SubMenu List Item-2",
|
51
|
-
onClick: (e) => (0, import_ds_system.logger)(e, "subMenu id5")
|
52
|
-
}
|
53
|
-
]
|
54
|
-
}
|
55
|
-
];
|
56
|
-
const options = [
|
57
|
-
{
|
58
|
-
type: "SelectionGroup",
|
59
|
-
id: "select-option",
|
60
|
-
multi: false,
|
61
|
-
closeOnClick: false,
|
62
|
-
interactionType: "click",
|
63
|
-
items: [
|
64
|
-
{
|
65
|
-
id: "id-1",
|
66
|
-
selectable: true,
|
67
|
-
type: "subMenu",
|
68
|
-
label: "View Example 123",
|
69
|
-
rightAddonType: "elipsis",
|
70
|
-
interactionType: "click",
|
71
|
-
subItems
|
72
|
-
},
|
73
|
-
{
|
74
|
-
id: "id-2",
|
75
|
-
type: "subMenu",
|
76
|
-
label: "Option 2",
|
77
|
-
rightAddonType: "elipsis",
|
78
|
-
interactionType: "click",
|
79
|
-
subItems
|
80
|
-
},
|
81
|
-
{
|
82
|
-
id: "id-3",
|
83
|
-
type: "subMenu",
|
84
|
-
label: "Option 3",
|
85
|
-
rightAddonType: "elipsis",
|
86
|
-
interactionType: "click",
|
87
|
-
subItems
|
88
|
-
},
|
89
|
-
{
|
90
|
-
id: "id-4",
|
91
|
-
type: "subMenu",
|
92
|
-
label: "Option 4",
|
93
|
-
rightAddonType: "elipsis",
|
94
|
-
interactionType: "click",
|
95
|
-
subItems
|
96
|
-
},
|
97
|
-
{
|
98
|
-
id: "id-5",
|
99
|
-
type: "subMenu",
|
100
|
-
label: "Option 5",
|
101
|
-
rightAddonType: "elipsis",
|
102
|
-
interactionType: "click",
|
103
|
-
subItems
|
104
|
-
},
|
105
|
-
{
|
106
|
-
id: "id-6",
|
107
|
-
type: "subMenu",
|
108
|
-
label: "Option 6",
|
109
|
-
rightAddonType: "elipsis",
|
110
|
-
interactionType: "click",
|
111
|
-
subItems
|
112
|
-
},
|
113
|
-
{
|
114
|
-
id: "id-7",
|
115
|
-
type: "subMenu",
|
116
|
-
label: "Truncate long option Other Custom View Long Long Long Long Long",
|
117
|
-
rightAddonType: "elipsis",
|
118
|
-
interactionType: "click",
|
119
|
-
subItems
|
120
|
-
}
|
121
|
-
]
|
122
|
-
}
|
123
|
-
];
|
124
|
-
//# sourceMappingURL=utils.js.map
|
@@ -1,7 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 3,
|
3
|
-
"sources": ["../../../src/tests/utils.js", "../../../../../../scripts/build/transpile/react-shim.js"],
|
4
|
-
"sourcesContent": ["import { logger } from '@elliemae/ds-system';\n\nconst subItems = [\n {\n id: 'id3',\n label: 'SubMenu List Item-1',\n onClick: (e) => logger(e, 'subMenu id3'),\n },\n {\n id: 'id4',\n type: 'subMenu',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id4'),\n subItems: [\n {\n id: 'id5',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id5'),\n },\n ],\n },\n];\n\nexport const options = [\n {\n type: 'SelectionGroup',\n id: 'select-option',\n multi: false,\n closeOnClick: false,\n interactionType: 'click',\n items: [\n {\n id: 'id-1',\n selectable: true,\n type: 'subMenu',\n label: 'View Example 123',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-2',\n type: 'subMenu',\n label: 'Option 2',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-3',\n type: 'subMenu',\n label: 'Option 3',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-4',\n type: 'subMenu',\n label: 'Option 4',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-5',\n type: 'subMenu',\n label: 'Option 5',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-6',\n type: 'subMenu',\n label: 'Option 6',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-7',\n type: 'subMenu',\n label: 'Truncate long option Other Custom View Long Long Long Long Long',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n ],\n },\n];\n", "import * as React from 'react';\nexport { React };\n"],
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,uBAAuB;AAEvB,MAAM,WAAW;AAAA,EACf;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,SAAS,CAAC,UAAM,yBAAO,GAAG,aAAa;AAAA,EACzC;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,MAAM;AAAA,IACN,OAAO;AAAA,IACP,SAAS,CAAC,UAAM,yBAAO,GAAG,aAAa;AAAA,IACvC,UAAU;AAAA,MACR;AAAA,QACE,IAAI;AAAA,QACJ,OAAO;AAAA,QACP,SAAS,CAAC,UAAM,yBAAO,GAAG,aAAa;AAAA,MACzC;AAAA,IACF;AAAA,EACF;AACF;AAEO,MAAM,UAAU;AAAA,EACrB;AAAA,IACE,MAAM;AAAA,IACN,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,cAAc;AAAA,IACd,iBAAiB;AAAA,IACjB,OAAO;AAAA,MACL;AAAA,QACE,IAAI;AAAA,QACJ,YAAY;AAAA,QACZ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACF;",
|
6
|
-
"names": []
|
7
|
-
}
|
package/dist/esm/tests/utils.js
DELETED
@@ -1,94 +0,0 @@
|
|
1
|
-
import * as React from "react";
|
2
|
-
import { logger } from "@elliemae/ds-system";
|
3
|
-
const subItems = [
|
4
|
-
{
|
5
|
-
id: "id3",
|
6
|
-
label: "SubMenu List Item-1",
|
7
|
-
onClick: (e) => logger(e, "subMenu id3")
|
8
|
-
},
|
9
|
-
{
|
10
|
-
id: "id4",
|
11
|
-
type: "subMenu",
|
12
|
-
label: "SubMenu List Item-2",
|
13
|
-
onClick: (e) => logger(e, "subMenu id4"),
|
14
|
-
subItems: [
|
15
|
-
{
|
16
|
-
id: "id5",
|
17
|
-
label: "SubMenu List Item-2",
|
18
|
-
onClick: (e) => logger(e, "subMenu id5")
|
19
|
-
}
|
20
|
-
]
|
21
|
-
}
|
22
|
-
];
|
23
|
-
const options = [
|
24
|
-
{
|
25
|
-
type: "SelectionGroup",
|
26
|
-
id: "select-option",
|
27
|
-
multi: false,
|
28
|
-
closeOnClick: false,
|
29
|
-
interactionType: "click",
|
30
|
-
items: [
|
31
|
-
{
|
32
|
-
id: "id-1",
|
33
|
-
selectable: true,
|
34
|
-
type: "subMenu",
|
35
|
-
label: "View Example 123",
|
36
|
-
rightAddonType: "elipsis",
|
37
|
-
interactionType: "click",
|
38
|
-
subItems
|
39
|
-
},
|
40
|
-
{
|
41
|
-
id: "id-2",
|
42
|
-
type: "subMenu",
|
43
|
-
label: "Option 2",
|
44
|
-
rightAddonType: "elipsis",
|
45
|
-
interactionType: "click",
|
46
|
-
subItems
|
47
|
-
},
|
48
|
-
{
|
49
|
-
id: "id-3",
|
50
|
-
type: "subMenu",
|
51
|
-
label: "Option 3",
|
52
|
-
rightAddonType: "elipsis",
|
53
|
-
interactionType: "click",
|
54
|
-
subItems
|
55
|
-
},
|
56
|
-
{
|
57
|
-
id: "id-4",
|
58
|
-
type: "subMenu",
|
59
|
-
label: "Option 4",
|
60
|
-
rightAddonType: "elipsis",
|
61
|
-
interactionType: "click",
|
62
|
-
subItems
|
63
|
-
},
|
64
|
-
{
|
65
|
-
id: "id-5",
|
66
|
-
type: "subMenu",
|
67
|
-
label: "Option 5",
|
68
|
-
rightAddonType: "elipsis",
|
69
|
-
interactionType: "click",
|
70
|
-
subItems
|
71
|
-
},
|
72
|
-
{
|
73
|
-
id: "id-6",
|
74
|
-
type: "subMenu",
|
75
|
-
label: "Option 6",
|
76
|
-
rightAddonType: "elipsis",
|
77
|
-
interactionType: "click",
|
78
|
-
subItems
|
79
|
-
},
|
80
|
-
{
|
81
|
-
id: "id-7",
|
82
|
-
type: "subMenu",
|
83
|
-
label: "Truncate long option Other Custom View Long Long Long Long Long",
|
84
|
-
rightAddonType: "elipsis",
|
85
|
-
interactionType: "click",
|
86
|
-
subItems
|
87
|
-
}
|
88
|
-
]
|
89
|
-
}
|
90
|
-
];
|
91
|
-
export {
|
92
|
-
options
|
93
|
-
};
|
94
|
-
//# sourceMappingURL=utils.js.map
|
@@ -1,7 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 3,
|
3
|
-
"sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../src/tests/utils.js"],
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { logger } from '@elliemae/ds-system';\n\nconst subItems = [\n {\n id: 'id3',\n label: 'SubMenu List Item-1',\n onClick: (e) => logger(e, 'subMenu id3'),\n },\n {\n id: 'id4',\n type: 'subMenu',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id4'),\n subItems: [\n {\n id: 'id5',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id5'),\n },\n ],\n },\n];\n\nexport const options = [\n {\n type: 'SelectionGroup',\n id: 'select-option',\n multi: false,\n closeOnClick: false,\n interactionType: 'click',\n items: [\n {\n id: 'id-1',\n selectable: true,\n type: 'subMenu',\n label: 'View Example 123',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-2',\n type: 'subMenu',\n label: 'Option 2',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-3',\n type: 'subMenu',\n label: 'Option 3',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-4',\n type: 'subMenu',\n label: 'Option 4',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-5',\n type: 'subMenu',\n label: 'Option 5',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-6',\n type: 'subMenu',\n label: 'Option 6',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-7',\n type: 'subMenu',\n label: 'Truncate long option Other Custom View Long Long Long Long Long',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n ],\n },\n];\n"],
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,cAAc;AAEvB,MAAM,WAAW;AAAA,EACf;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,SAAS,CAAC,MAAM,OAAO,GAAG,aAAa;AAAA,EACzC;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,MAAM;AAAA,IACN,OAAO;AAAA,IACP,SAAS,CAAC,MAAM,OAAO,GAAG,aAAa;AAAA,IACvC,UAAU;AAAA,MACR;AAAA,QACE,IAAI;AAAA,QACJ,OAAO;AAAA,QACP,SAAS,CAAC,MAAM,OAAO,GAAG,aAAa;AAAA,MACzC;AAAA,IACF;AAAA,EACF;AACF;AAEO,MAAM,UAAU;AAAA,EACrB;AAAA,IACE,MAAM;AAAA,IACN,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,cAAc;AAAA,IACd,iBAAiB;AAAA,IACjB,OAAO;AAAA,MACL;AAAA,QACE,IAAI;AAAA,QACJ,YAAY;AAAA,QACZ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACF;",
|
6
|
-
"names": []
|
7
|
-
}
|