@uva-glass/component-library 1.47.8 → 1.48.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/CheckboxTree.css +1 -0
- package/dist/components/Accordion/Accordion.d.ts +2 -2
- package/dist/components/Accordion/Accordion.js.map +1 -1
- package/dist/components/ActionList/ActionList.d.ts +6 -0
- package/dist/components/ActionList/ActionList.js +1 -1
- package/dist/components/ActionList/ActionList.js.map +1 -1
- package/dist/components/ActionList/ActionList.stories.js +4 -3
- package/dist/components/ActionList/ActionList.stories.js.map +1 -1
- package/dist/components/AppStatusBar/AppStatusBar.d.ts +3 -0
- package/dist/components/AppStatusBar/AppStatusBar.js.map +1 -1
- package/dist/components/AppStatusBar/AppStatusBar.stories.js +8 -7
- package/dist/components/AppStatusBar/AppStatusBar.stories.js.map +1 -1
- package/dist/components/Attention/Attention.d.ts +1 -0
- package/dist/components/Attention/Attention.js.map +1 -1
- package/dist/components/Attention/Attention.stories.js +3 -2
- package/dist/components/Attention/Attention.stories.js.map +1 -1
- package/dist/components/Backdrop/Backdrop.d.ts +1 -0
- package/dist/components/Backdrop/Backdrop.js.map +1 -1
- package/dist/components/Backdrop/Backdrop.stories.js +8 -7
- package/dist/components/Backdrop/Backdrop.stories.js.map +1 -1
- package/dist/components/Button/Button.stories.js +9 -9
- package/dist/components/Checkbox/Checkbox.stories.js +13 -13
- package/dist/components/Checkbox/Checkbox.stories.js.map +1 -1
- package/dist/components/CheckboxTree/CheckboxTree.d.ts +20 -0
- package/dist/components/CheckboxTree/CheckboxTree.js +120 -0
- package/dist/components/CheckboxTree/CheckboxTree.js.map +1 -0
- package/dist/components/CheckboxTree/CheckboxTree.stories.d.ts +5 -0
- package/dist/components/CheckboxTree/CheckboxTree.stories.js +74 -0
- package/dist/components/CheckboxTree/CheckboxTree.stories.js.map +1 -0
- package/dist/components/CheckboxTree/index.d.ts +1 -0
- package/dist/components/CheckboxTree/index.js +5 -0
- package/dist/components/CheckboxTree/index.js.map +1 -0
- package/dist/components/Drawer/Drawer.stories.js +1 -1
- package/dist/components/FeedbackBox/FeedbackBox.stories.js +10 -7
- package/dist/components/FeedbackBox/FeedbackBox.stories.js.map +1 -1
- package/dist/components/IconButton/IconButton.stories.js +1 -1
- package/dist/components/InputField/InputField.stories.js +1 -1
- package/dist/components/MenuButton/MenuButton.stories.js +10 -10
- package/dist/components/ModalDialog/ModalDialog.stories.js +1 -1
- package/dist/components/MultiSelect/MultiSelect.stories.js +1 -1
- package/dist/components/OverlayCloseButton/OverlayCloseButton.stories.js +1 -1
- package/dist/components/ProgrammeCard/ProgrammeCard.stories.js +1 -1
- package/dist/components/SelectListbox/SelectListBox.stories.js +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +65 -63
- package/dist/components/index.js.map +1 -1
- package/dist/index-2mUSc_Ki.js +8 -0
- package/dist/index-2mUSc_Ki.js.map +1 -0
- package/dist/{index-CuON43Qx.js → index-MQ0yPLdl.js} +89 -12
- package/dist/{index-CuON43Qx.js.map → index-MQ0yPLdl.js.map} +1 -1
- package/dist/index.js +65 -63
- package/dist/index.js.map +1 -1
- package/dist/react-18-m8Z-Ep7B.js +52 -0
- package/dist/react-18-m8Z-Ep7B.js.map +1 -0
- package/dist/storybook__react.d-fgYZl9aD.js +21053 -0
- package/dist/storybook__react.d-fgYZl9aD.js.map +1 -0
- package/dist/storybook__react.d.js +2 -0
- package/dist/storybook__react.d.js.map +1 -0
- package/package.json +14 -14
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckboxTree.js","sources":["../../../src/components/CheckboxTree/CheckboxTree.tsx"],"sourcesContent":["import { useEffect, useRef } from 'react';\nimport clsx from 'clsx';\n\nimport type { MouseEventHandler } from 'react';\n\nimport styles from './CheckboxTree.module.css';\n\nimport { Button, Checkbox, FormField, Icon, Label } from 'components';\nimport { useResponsive } from 'components/hooks/useResponsive';\n\ntype CheckboxLeaf = {\n itemName: string;\n itemValue: string;\n disabled?: boolean;\n};\n\ntype CheckboxBranch = {\n itemName: string;\n children: CheckboxLeaf[];\n};\n\nexport interface CheckboxTreeProps {\n title?: string;\n /** array of checkbox groups with a label and array of children (itemname, itemvalue and disabled boolean)*/\n checkboxTree: CheckboxBranch[];\n /** array of selected values */\n defaultValue?: string[];\n /** returns array of selected values*/\n onChange?: (value: string[]) => void;\n}\n\nexport const CheckboxTree = ({ title, checkboxTree, defaultValue, onChange }: CheckboxTreeProps) => {\n const checkboxNodes = useRef<HTMLInputElement[]>([]);\n const { lessThan } = useResponsive();\n\n const nodeArray = (selector: string, parent = document) => [].slice.call(parent.querySelectorAll(selector));\n\n const setValue = () => {\n const values = checkboxNodes.current.reduce((values, checkbox) => {\n if (checkbox.name && checkbox.checked) {\n values.push(checkbox.value);\n }\n return values;\n }, [] as string[]);\n\n if (onChange) onChange(values);\n };\n\n const setCheckboxesState = (check: HTMLInputElement) => {\n while (check) {\n const parent = check.closest('[data-ul]')?.parentNode?.querySelector('input');\n const siblings: HTMLInputElement[] = nodeArray(\n 'input',\n parent?.closest('[data-li]')?.querySelector('[data-ul]') as Document | undefined\n );\n\n const checkStatus = siblings.reduce((status, check) => {\n if (!check.disabled) status.push(check.checked);\n return status;\n }, [] as boolean[]);\n\n const every = checkStatus.every(Boolean);\n const some = checkStatus.some(Boolean);\n\n if (parent) {\n parent.checked = every;\n parent.indeterminate = !every && every !== some;\n }\n\n if (!parent || check === parent) {\n break;\n }\n\n check = parent;\n }\n };\n\n const setExpandedAttributes = (trigger: HTMLButtonElement, container: Element | null) => {\n const children = container?.querySelector('[data-ul]');\n\n (trigger.childNodes[0] as Element).classList.toggle(styles['checkbox-tree__branch--icon--expanded']);\n container\n ?.closest('[data-li]')\n ?.setAttribute(\n 'aria-expanded',\n container?.closest('[data-li]')?.getAttribute('aria-expanded') === 'false' ? 'true' : 'false'\n );\n\n if (children) {\n children.classList.toggle(styles['checkbox-tree__leaves--expanded']);\n }\n };\n\n const handleChange: MouseEventHandler<HTMLDivElement> = (event) => {\n const check = event.target as HTMLInputElement;\n\n if (!check || !check.parentNode || !check.parentNode.parentNode) return;\n const parentCheckbox = check.parentNode.parentNode as HTMLElement;\n\n if (\n lessThan.md &&\n check.previousElementSibling?.tagName === 'BUTTON' &&\n parentCheckbox.getAttribute('aria-expanded') === 'false'\n ) {\n event.preventDefault();\n setExpandedAttributes(parentCheckbox.querySelector('button') as HTMLButtonElement, parentCheckbox);\n return;\n }\n\n if (checkboxNodes.current.indexOf(check) === -1) return;\n\n const children: HTMLInputElement[] = (check.parentNode.parentNode as Document)\n ? nodeArray('input', check.parentNode.parentNode as Document)\n : [];\n\n children.forEach((child) => {\n return (child.checked = child.disabled ? false : check.checked);\n });\n\n setCheckboxesState(check);\n setValue();\n };\n\n const handleExpanded: MouseEventHandler<HTMLButtonElement> = (event) => {\n const target = event.target as HTMLButtonElement;\n const parent = target.closest('[data-li]');\n setExpandedAttributes(target, parent);\n };\n\n useEffect(() => {\n checkboxNodes.current = nodeArray('input') || [];\n }, []);\n\n useEffect(() => {\n if (defaultValue) {\n checkboxNodes.current.forEach((checkbox) => {\n if (defaultValue.includes(checkbox.value)) {\n checkbox.checked = true;\n setCheckboxesState(checkbox);\n }\n });\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [defaultValue]);\n\n return (\n <div>\n {title && <span className={styles['checkbox-tree__header']}>{title}</span>}\n {/* eslint-disable-next-line jsx-a11y/click-events-have-key-events */}\n <div onClick={handleChange} data-ul role=\"tree\" tabIndex={0}>\n {checkboxTree.map(({ itemName, children }) => (\n <div\n key={itemName}\n className={styles['checkbox-tree__branch']}\n data-li\n aria-expanded={lessThan.md ? 'false' : 'true'}\n >\n <FormField inline className={styles['checkbox-tree__branch--formfield']}>\n <Button variant=\"blank\" onClick={handleExpanded}>\n <Icon\n name=\"CheveronRight\"\n size={16}\n className={clsx(styles['checkbox-tree__branch--icon'], {\n [styles['checkbox-tree__branch--icon--expanded']]: !lessThan.md,\n })}\n />\n </Button>\n <Checkbox id={itemName} disabled={children.every((checkbox) => checkbox.disabled)} />\n <Label htmlFor={itemName}>{itemName}</Label>\n </FormField>\n <div\n className={clsx(styles['checkbox-tree__leaves'], {\n [styles['checkbox-tree__leaves--expanded']]: !lessThan.md,\n })}\n data-ul\n >\n {children.map(({ itemName, itemValue, disabled }) => (\n <div key={itemName} className={styles['checkbox-tree__leaf']} data-li>\n <FormField inline className={styles['checkbox-tree__branch--formfield']}>\n <Checkbox id={itemName} name={itemName} value={itemValue} disabled={disabled} />\n <Label htmlFor={itemName}>{itemName}</Label>\n </FormField>\n </div>\n ))}\n </div>\n </div>\n ))}\n </div>\n </div>\n );\n};\n"],"names":["CheckboxTree","title","checkboxTree","defaultValue","onChange","checkboxNodes","useRef","lessThan","useResponsive","nodeArray","selector","parent","setValue","values","checkbox","setCheckboxesState","check","_b","_a","checkStatus","_c","status","every","some","setExpandedAttributes","trigger","container","children","styles","handleChange","event","parentCheckbox","child","handleExpanded","target","useEffect","itemName","jsxs","FormField","jsx","Button","Icon","clsx","Checkbox","Label","itemValue","disabled"],"mappings":"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"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Meta } from '@storybook/react';
|
|
2
|
+
import { CheckboxTreeProps } from './CheckboxTree';
|
|
3
|
+
declare const _default: Meta<CheckboxTreeProps>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const CheckboxTreeExample: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, CheckboxTreeProps>;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import { fn as m } from "../../index-MQ0yPLdl.js";
|
|
3
|
+
import { CheckboxTree as e } from "./CheckboxTree.js";
|
|
4
|
+
const i = [
|
|
5
|
+
{
|
|
6
|
+
itemName: "Semester 1",
|
|
7
|
+
children: [
|
|
8
|
+
{
|
|
9
|
+
itemName: "1.1",
|
|
10
|
+
itemValue: "1",
|
|
11
|
+
disabled: !0
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
itemName: "1.2",
|
|
15
|
+
itemValue: "2",
|
|
16
|
+
disabled: !1
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
itemName: "1.3",
|
|
20
|
+
itemValue: "3",
|
|
21
|
+
disabled: !1
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
itemName: "Semester 2",
|
|
27
|
+
children: [
|
|
28
|
+
{
|
|
29
|
+
itemName: "2.1",
|
|
30
|
+
itemValue: "4",
|
|
31
|
+
disabled: !1
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
itemName: "2.2",
|
|
35
|
+
itemValue: "5",
|
|
36
|
+
disabled: !0
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
itemName: "2.3",
|
|
40
|
+
itemValue: "6",
|
|
41
|
+
disabled: !1
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
itemName: "Semester 3",
|
|
47
|
+
children: [
|
|
48
|
+
{
|
|
49
|
+
itemName: "3",
|
|
50
|
+
itemValue: "7",
|
|
51
|
+
disabled: !1
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
], l = "<CheckboxTree title={} checkboxTree={} defaultValue={} onChange={} />", c = {
|
|
56
|
+
title: "Organisms/CheckboxTree",
|
|
57
|
+
component: e,
|
|
58
|
+
parameters: {
|
|
59
|
+
inspectComponent: e,
|
|
60
|
+
codeString: l
|
|
61
|
+
}
|
|
62
|
+
}, s = (t) => /* @__PURE__ */ a(e, { ...t }), r = s.bind({});
|
|
63
|
+
r.args = {
|
|
64
|
+
title: "Periode",
|
|
65
|
+
checkboxTree: i,
|
|
66
|
+
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
|
|
67
|
+
defaultValue: ["3", "5"],
|
|
68
|
+
onChange: m()
|
|
69
|
+
};
|
|
70
|
+
export {
|
|
71
|
+
r as CheckboxTreeExample,
|
|
72
|
+
c as default
|
|
73
|
+
};
|
|
74
|
+
//# sourceMappingURL=CheckboxTree.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckboxTree.stories.js","sources":["../../../src/components/CheckboxTree/CheckboxTree.stories.tsx"],"sourcesContent":["import { fn } from '@storybook/test';\n\nimport type { Meta, StoryFn } from '@storybook/react';\nimport type { CheckboxTreeProps } from './CheckboxTree';\n\nimport { CheckboxTree } from './CheckboxTree';\n\nconst MOCK_CHECKBOX_TREE = [\n {\n itemName: 'Semester 1',\n children: [\n {\n itemName: '1.1',\n itemValue: '1',\n disabled: true,\n },\n {\n itemName: '1.2',\n itemValue: '2',\n disabled: false,\n },\n {\n itemName: '1.3',\n itemValue: '3',\n disabled: false,\n },\n ],\n },\n {\n itemName: 'Semester 2',\n children: [\n {\n itemName: '2.1',\n itemValue: '4',\n disabled: false,\n },\n {\n itemName: '2.2',\n itemValue: '5',\n disabled: true,\n },\n {\n itemName: '2.3',\n itemValue: '6',\n disabled: false,\n },\n ],\n },\n {\n itemName: 'Semester 3',\n children: [\n {\n itemName: '3',\n itemValue: '7',\n disabled: false,\n },\n ],\n },\n];\n\nconst codeString = '<CheckboxTree title={} checkboxTree={} defaultValue={} onChange={} />';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Organisms/CheckboxTree',\n component: CheckboxTree,\n parameters: {\n inspectComponent: CheckboxTree,\n codeString: codeString,\n },\n} as Meta<CheckboxTreeProps>;\n\nconst Template: StoryFn<CheckboxTreeProps> = (args) => <CheckboxTree {...args} />;\n\nexport const CheckboxTreeExample = Template.bind({});\nCheckboxTreeExample.args = {\n title: 'Periode',\n checkboxTree: MOCK_CHECKBOX_TREE,\n // eslint-disable-next-line @typescript-eslint/no-magic-numbers\n defaultValue: ['3', '5'],\n onChange: fn(),\n};\n"],"names":["MOCK_CHECKBOX_TREE","codeString","CheckboxTree_stories","CheckboxTree","Template","args","jsx","CheckboxTreeExample","fn"],"mappings":";;;AAOA,MAAMA,IAAqB;AAAA,EACzB;AAAA,IACE,UAAU;AAAA,IACV,UAAU;AAAA,MACR;AAAA,QACE,UAAU;AAAA,QACV,WAAW;AAAA,QACX,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,UAAU;AAAA,QACV,WAAW;AAAA,QACX,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,UAAU;AAAA,QACV,WAAW;AAAA,QACX,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAAA,EACA;AAAA,IACE,UAAU;AAAA,IACV,UAAU;AAAA,MACR;AAAA,QACE,UAAU;AAAA,QACV,WAAW;AAAA,QACX,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,UAAU;AAAA,QACV,WAAW;AAAA,QACX,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,UAAU;AAAA,QACV,WAAW;AAAA,QACX,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAAA,EACA;AAAA,IACE,UAAU;AAAA,IACV,UAAU;AAAA,MACR;AAAA,QACE,UAAU;AAAA,QACV,WAAW;AAAA,QACX,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AACF,GAEMC,IAAa,0EAGJC,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,YAAY;AAAA,IACV,kBAAkBA;AAAA,IAClB,YAAAF;AAAA,EACF;AACF,GAEMG,IAAuC,CAACC,MAAU,gBAAAC,EAAAH,GAAA,EAAc,GAAGE,EAAM,CAAA,GAElEE,IAAsBH,EAAS,KAAK,EAAE;AACnDG,EAAoB,OAAO;AAAA,EACzB,OAAO;AAAA,EACP,cAAcP;AAAA;AAAA,EAEd,cAAc,CAAC,KAAK,GAAG;AAAA,EACvB,UAAUQ,EAAG;AACf;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CheckboxTree';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as n, jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { OverlayProvider as p } from "@react-aria/overlays";
|
|
3
|
-
import {
|
|
3
|
+
import { fn as m } from "../../index-MQ0yPLdl.js";
|
|
4
4
|
import { useState as u } from "react";
|
|
5
5
|
import { Drawer as a } from "./Drawer.js";
|
|
6
6
|
import { Button as r } from "../Button/Button.js";
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { FeedbackBox as o } from "./FeedbackBox.js";
|
|
3
|
-
import { Container as
|
|
4
|
-
const
|
|
3
|
+
import { Container as c } from "../../storyComponents/Container/Container.js";
|
|
4
|
+
const t = "<FeedbackBox id={id} level={level} feedback={feedback} />", b = {
|
|
5
5
|
title: "Molecules/FeedbackBox",
|
|
6
|
-
component: o
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
component: o,
|
|
7
|
+
parameters: {
|
|
8
|
+
codeString: t
|
|
9
|
+
}
|
|
10
|
+
}, d = (a) => /* @__PURE__ */ e(c, { children: /* @__PURE__ */ e(o, { ...a }) }), l = d.bind({});
|
|
11
|
+
l.args = {
|
|
9
12
|
id: "gba0d2d4",
|
|
10
13
|
level: "success",
|
|
11
14
|
feedback: "Example FeedbackBox text"
|
|
12
15
|
};
|
|
13
16
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
17
|
+
l as FeedbackBoxExample,
|
|
18
|
+
b as default
|
|
16
19
|
};
|
|
17
20
|
//# sourceMappingURL=FeedbackBox.stories.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FeedbackBox.stories.js","sources":["../../../src/components/FeedbackBox/FeedbackBox.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { FeedbackBoxProps } from './FeedbackBox';\n\nimport { FeedbackBox } from './FeedbackBox';\n\nimport { Container } from 'storyComponents/Container';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Molecules/FeedbackBox',\n component: FeedbackBox,\n} as Meta<FeedbackBoxProps>;\n\nconst Template: StoryFn<FeedbackBoxProps> = (args) => (\n <Container>\n <FeedbackBox {...args} />\n </Container>\n);\n\nexport const FeedbackBoxExample = Template.bind({});\nFeedbackBoxExample.args = {\n id: 'gba0d2d4',\n level: 'success',\n feedback: 'Example FeedbackBox text',\n};\n"],"names":["FeedbackBox_stories","FeedbackBox","Template","args","jsx","Container","FeedbackBoxExample"],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"FeedbackBox.stories.js","sources":["../../../src/components/FeedbackBox/FeedbackBox.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { FeedbackBoxProps } from './FeedbackBox';\n\nimport { FeedbackBox } from './FeedbackBox';\n\nimport { Container } from 'storyComponents/Container';\n\nconst codeString = '<FeedbackBox id={id} level={level} feedback={feedback} />';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Molecules/FeedbackBox',\n component: FeedbackBox,\n parameters: {\n codeString,\n },\n} as Meta<FeedbackBoxProps>;\n\nconst Template: StoryFn<FeedbackBoxProps> = (args) => (\n <Container>\n <FeedbackBox {...args} />\n </Container>\n);\n\nexport const FeedbackBoxExample = Template.bind({});\nFeedbackBoxExample.args = {\n id: 'gba0d2d4',\n level: 'success',\n feedback: 'Example FeedbackBox text',\n};\n"],"names":["codeString","FeedbackBox_stories","FeedbackBox","Template","args","jsx","Container","FeedbackBoxExample"],"mappings":";;;AAOA,MAAMA,IAAa,6DAGJC,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,YAAY;AAAA,IACV,YAAAF;AAAA,EACF;AACF,GAEMG,IAAsC,CAACC,MAC3C,gBAAAC,EAACC,KACC,UAAC,gBAAAD,EAAAH,GAAA,EAAa,GAAGE,EAAM,CAAA,EACzB,CAAA,GAGWG,IAAqBJ,EAAS,KAAK,EAAE;AAClDI,EAAmB,OAAO;AAAA,EACxB,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,UAAU;AACZ;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { fn as r } from "../../index-MQ0yPLdl.js";
|
|
3
3
|
import { IconButton as n } from "./IconButton.js";
|
|
4
4
|
import { Icon as i } from "../Icon/Icon.js";
|
|
5
5
|
const l = `<IconButton variant={variant} aria-label={aria-label} onClick={onClickFunction}>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import { useState as d, useRef as g } from "react";
|
|
3
|
-
import {
|
|
3
|
+
import { fn as i } from "../../index-MQ0yPLdl.js";
|
|
4
4
|
import { InputField as l } from "./InputField.js";
|
|
5
5
|
import { Container as u } from "../../storyComponents/Container/Container.js";
|
|
6
6
|
import { Icon as f } from "../Icon/Icon.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { jsxs as l, Fragment as s, jsx as
|
|
2
|
-
import {
|
|
1
|
+
import { jsxs as l, Fragment as s, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { fn as c } from "../../index-MQ0yPLdl.js";
|
|
3
3
|
import { MenuButton as a } from "./MenuButton.js";
|
|
4
4
|
const d = `
|
|
5
5
|
// Has all LabelHTMLAttributes props available except "className" and "style"
|
|
@@ -16,7 +16,7 @@ const d = `
|
|
|
16
16
|
parameters: {
|
|
17
17
|
codeString: d
|
|
18
18
|
}
|
|
19
|
-
}, r = (o) => /* @__PURE__ */
|
|
19
|
+
}, r = (o) => /* @__PURE__ */ n(a, { ...o }), i = {
|
|
20
20
|
variant: "primary",
|
|
21
21
|
onClick: c()
|
|
22
22
|
}, p = r.bind({});
|
|
@@ -24,13 +24,13 @@ p.args = {
|
|
|
24
24
|
children: "Click me!",
|
|
25
25
|
...i
|
|
26
26
|
};
|
|
27
|
-
const
|
|
28
|
-
|
|
27
|
+
const e = r.bind({});
|
|
28
|
+
e.args = {
|
|
29
29
|
...i,
|
|
30
30
|
iconName: "EllipsisVertical"
|
|
31
31
|
};
|
|
32
|
-
|
|
33
|
-
...
|
|
32
|
+
e.argTypes = {
|
|
33
|
+
...e.argTypes,
|
|
34
34
|
children: {
|
|
35
35
|
table: {
|
|
36
36
|
disable: !0
|
|
@@ -42,8 +42,8 @@ const t = r.bind({});
|
|
|
42
42
|
t.args = {
|
|
43
43
|
...i,
|
|
44
44
|
children: /* @__PURE__ */ l(s, { children: [
|
|
45
|
-
/* @__PURE__ */
|
|
46
|
-
/* @__PURE__ */
|
|
45
|
+
/* @__PURE__ */ n("div", { children: "Child 1" }),
|
|
46
|
+
/* @__PURE__ */ n("div", { children: "Child 2" })
|
|
47
47
|
] })
|
|
48
48
|
};
|
|
49
49
|
t.argTypes = {
|
|
@@ -57,7 +57,7 @@ t.argTypes = {
|
|
|
57
57
|
};
|
|
58
58
|
export {
|
|
59
59
|
p as MenuButtonExample,
|
|
60
|
-
|
|
60
|
+
e as WithIconChildren,
|
|
61
61
|
t as WithMultipleChildren,
|
|
62
62
|
b as default
|
|
63
63
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as a, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { ModalProvider as n } from "@react-aria/overlays";
|
|
3
|
-
import {
|
|
3
|
+
import { fn as i } from "../../index-MQ0yPLdl.js";
|
|
4
4
|
import { ModalDialog as o } from "./ModalDialog.js";
|
|
5
5
|
import { Button as l } from "../Button/Button.js";
|
|
6
6
|
import { ButtonGroup as m } from "../ButtonGroup/ButtonGroup.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as S, jsx as r } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { fn as d } from "../../index-MQ0yPLdl.js";
|
|
3
3
|
import { useState as M } from "react";
|
|
4
4
|
import { M as a } from "../../MultiSelect-Ckf3uGw5.js";
|
|
5
5
|
import { Container as p } from "../../storyComponents/Container/Container.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { fn as l } from "../../index-MQ0yPLdl.js";
|
|
3
3
|
import { OverlayCloseButton as e } from "./OverlayCloseButton.js";
|
|
4
4
|
import { Container as t } from "../../storyComponents/Container/Container.js";
|
|
5
5
|
const r = "<OverlayCloseButton aria-label={aria-label} onClick={onClickFunction} />", p = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as e, jsx as r } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { fn as a } from "../../index-MQ0yPLdl.js";
|
|
3
3
|
import { ProgrammeCard as t } from "./ProgrammeCard.js";
|
|
4
4
|
import { Container as n } from "../../storyComponents/Container/Container.js";
|
|
5
5
|
import "react";
|
package/dist/components/index.js
CHANGED
|
@@ -3,80 +3,82 @@ import { ActionList as p } from "./ActionList/ActionList.js";
|
|
|
3
3
|
import { AppStatusBar as x } from "./AppStatusBar/AppStatusBar.js";
|
|
4
4
|
import { Attention as i } from "./Attention/Attention.js";
|
|
5
5
|
import { Backdrop as n } from "./Backdrop/Backdrop.js";
|
|
6
|
-
import { Button as
|
|
6
|
+
import { Button as c } from "./Button/Button.js";
|
|
7
7
|
import { ButtonGroup as d } from "./ButtonGroup/ButtonGroup.js";
|
|
8
8
|
import { Card as B } from "./Card/Card.js";
|
|
9
9
|
import { Checkbox as M } from "./Checkbox/Checkbox.js";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
10
|
+
import { CheckboxTree as L } from "./CheckboxTree/CheckboxTree.js";
|
|
11
|
+
import { Drawer as k } from "./Drawer/Drawer.js";
|
|
12
|
+
import { EmptyStateDataDisplay as D } from "./EmptyStateDataDisplay/EmptyStateDataDisplay.js";
|
|
13
|
+
import { FeedbackBox as A } from "./FeedbackBox/FeedbackBox.js";
|
|
14
|
+
import { FieldHint as g } from "./FieldHint/FieldHint.js";
|
|
15
|
+
import { Fieldset as R } from "./Fieldset/Fieldset.js";
|
|
16
|
+
import { FormField as v } from "./FormField/FormField.js";
|
|
17
|
+
import { GridRow as G } from "./GridRow/GridRow.js";
|
|
18
|
+
import { HorizontalList as T } from "./HorizontalList/HorizontalList.js";
|
|
19
|
+
import { Icon as E } from "./Icon/Icon.js";
|
|
20
|
+
import { IconButton as O } from "./IconButton/IconButton.js";
|
|
21
|
+
import { InfoMessage as q } from "./InfoMessage/InfoMessage.js";
|
|
22
|
+
import { Input as K } from "./Input/Input.js";
|
|
23
|
+
import { InputField as U } from "./InputField/InputField.js";
|
|
24
|
+
import { Label as W } from "./Label/Label.js";
|
|
25
|
+
import { MenuButton as Y } from "./MenuButton/MenuButton.js";
|
|
26
|
+
import { MenuLink as _ } from "./MenuLink/MenuLink.js";
|
|
27
|
+
import { MetaDataList as oo } from "./MetaDataList/MetaDataList.js";
|
|
28
|
+
import { ModalDialog as to } from "./ModalDialog/ModalDialog.js";
|
|
29
|
+
import { M as po } from "../MultiSelect-Ckf3uGw5.js";
|
|
30
|
+
import { OverlayCloseButton as xo } from "./OverlayCloseButton/OverlayCloseButton.js";
|
|
31
|
+
import { Periods as io } from "./Periods/Periods.js";
|
|
32
|
+
import { ProgrammeCard as no } from "./ProgrammeCard/ProgrammeCard.js";
|
|
33
|
+
import { RadioButton as co } from "./RadioButton/RadioButton.js";
|
|
34
|
+
import { Repeater as so } from "./Repeater/Repeater.js";
|
|
35
|
+
import { SectionNotification as So } from "./SectionNotification/SectionNotification.js";
|
|
36
|
+
import { SelectListbox as Fo } from "./SelectListbox/SelectListbox.js";
|
|
37
|
+
import { SelectProvider as bo, useSelect as ko } from "./SelectListbox/SelectProvider.js";
|
|
38
|
+
import { Spinner as Do } from "./Spinner/Spinner.js";
|
|
39
|
+
import { StatusPill as Ao } from "./StatusPill/StatusPill.js";
|
|
40
|
+
import { Tooltip as go } from "./Tooltip/Tooltip.js";
|
|
40
41
|
export {
|
|
41
42
|
t as Accordion,
|
|
42
43
|
p as ActionList,
|
|
43
44
|
x as AppStatusBar,
|
|
44
45
|
i as Attention,
|
|
45
46
|
n as Backdrop,
|
|
46
|
-
|
|
47
|
+
c as Button,
|
|
47
48
|
d as ButtonGroup,
|
|
48
49
|
B as Card,
|
|
49
50
|
M as Checkbox,
|
|
50
|
-
L as
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
g as
|
|
55
|
-
R as
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
q as
|
|
62
|
-
K as
|
|
63
|
-
U as
|
|
64
|
-
W as
|
|
65
|
-
Y as
|
|
66
|
-
_ as
|
|
67
|
-
oo as
|
|
68
|
-
to as
|
|
69
|
-
po as
|
|
70
|
-
xo as
|
|
71
|
-
io as
|
|
72
|
-
no as
|
|
73
|
-
|
|
74
|
-
so as
|
|
75
|
-
So as
|
|
76
|
-
Fo as
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
51
|
+
L as CheckboxTree,
|
|
52
|
+
k as Drawer,
|
|
53
|
+
D as EmptyStateDataDisplay,
|
|
54
|
+
A as FeedbackBox,
|
|
55
|
+
g as FieldHint,
|
|
56
|
+
R as Fieldset,
|
|
57
|
+
v as FormField,
|
|
58
|
+
G as GridRow,
|
|
59
|
+
T as HorizontalList,
|
|
60
|
+
E as Icon,
|
|
61
|
+
O as IconButton,
|
|
62
|
+
q as InfoMessage,
|
|
63
|
+
K as Input,
|
|
64
|
+
U as InputField,
|
|
65
|
+
W as Label,
|
|
66
|
+
Y as MenuButton,
|
|
67
|
+
_ as MenuLink,
|
|
68
|
+
oo as MetaDataList,
|
|
69
|
+
to as ModalDialog,
|
|
70
|
+
po as MultiSelect,
|
|
71
|
+
xo as OverlayCloseButton,
|
|
72
|
+
io as Periods,
|
|
73
|
+
no as ProgrammeCard,
|
|
74
|
+
co as RadioButton,
|
|
75
|
+
so as Repeater,
|
|
76
|
+
So as SectionNotification,
|
|
77
|
+
Fo as SelectListbox,
|
|
78
|
+
bo as SelectProvider,
|
|
79
|
+
Do as Spinner,
|
|
80
|
+
Ao as StatusPill,
|
|
81
|
+
go as Tooltip,
|
|
82
|
+
ko as useSelect
|
|
81
83
|
};
|
|
82
84
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var l = (() => {
|
|
2
|
+
let e;
|
|
3
|
+
return typeof window < "u" ? e = window : typeof globalThis < "u" ? e = globalThis : typeof global < "u" ? e = global : typeof self < "u" ? e = self : e = {}, e;
|
|
4
|
+
})();
|
|
5
|
+
export {
|
|
6
|
+
l as s
|
|
7
|
+
};
|
|
8
|
+
//# sourceMappingURL=index-2mUSc_Ki.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-2mUSc_Ki.js","sources":["../node_modules/@storybook/global/dist/index.mjs"],"sourcesContent":["// src/index.ts\nvar scope = (() => {\n let win;\n if (typeof window !== \"undefined\") {\n win = window;\n } else if (typeof globalThis !== \"undefined\") {\n win = globalThis;\n } else if (typeof global !== \"undefined\") {\n win = global;\n } else if (typeof self !== \"undefined\") {\n win = self;\n } else {\n win = {};\n }\n return win;\n})();\nexport {\n scope as global\n};\n"],"names":["scope","win"],"mappings":"AACG,IAACA,KAAS,MAAM;AACjB,MAAIC;AACJ,SAAI,OAAO,SAAW,MACpBA,IAAM,SACG,OAAO,aAAe,MAC/BA,IAAM,aACG,OAAO,SAAW,MAC3BA,IAAM,SACG,OAAO,OAAS,MACzBA,IAAM,OAENA,IAAM,CAAA,GAEDA;AACT,GAAC;","x_google_ignoreList":[0]}
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
var Xa = Object.defineProperty;
|
|
2
2
|
var es = (it, ct, Ot) => ct in it ? Xa(it, ct, { enumerable: !0, configurable: !0, writable: !0, value: Ot }) : it[ct] = Ot;
|
|
3
3
|
var Mi = (it, ct, Ot) => es(it, typeof ct != "symbol" ? ct + "" : ct, Ot);
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
return typeof window < "u" ? it = window : typeof globalThis < "u" ? it = globalThis : typeof global < "u" ? it = global : typeof self < "u" ? it = self : it = {}, it;
|
|
7
|
-
})(), u$3 = Object.defineProperty, a$3 = (it, ct) => u$3(it, "name", { value: ct, configurable: !0 }), y$2 = (() => {
|
|
4
|
+
import { s as scope } from "./index-2mUSc_Ki.js";
|
|
5
|
+
var u$3 = Object.defineProperty, a$3 = (it, ct) => u$3(it, "name", { value: ct, configurable: !0 }), y$2 = (() => {
|
|
8
6
|
let it;
|
|
9
7
|
return typeof window < "u" ? it = window : typeof globalThis < "u" ? it = globalThis : typeof global < "u" ? it = global : typeof self < "u" ? it = self : it = {}, it;
|
|
10
8
|
})(), { LOGLEVEL: b$3 } = y$2, t$2 = {
|
|
@@ -3866,12 +3864,12 @@ var z$1 = (...it) => {
|
|
|
3866
3864
|
return Zo(ta, $i, Pi + 1, Di);
|
|
3867
3865
|
}
|
|
3868
3866
|
if (o(Li, "inspect"), typeof ri == "function" && !Ri(ri)) {
|
|
3869
|
-
var ci = Ni(ri),
|
|
3870
|
-
return "[Function" + (ci ? ": " + ci : " (anonymous)") + "]" + (
|
|
3867
|
+
var ci = Ni(ri), Aa = Ki(ri, Li);
|
|
3868
|
+
return "[Function" + (ci ? ": " + ci : " (anonymous)") + "]" + (Aa.length > 0 ? " { " + zo.call(Aa, ", ") + " }" : "");
|
|
3871
3869
|
}
|
|
3872
3870
|
if (_i(ri)) {
|
|
3873
|
-
var
|
|
3874
|
-
return typeof ri == "object" && !Qo ? Gi(
|
|
3871
|
+
var Sa = Qo ? So.call(String(ri), /^(Symbol\(.*\))_[^)]*$/, "$1") : ko.call(ri);
|
|
3872
|
+
return typeof ri == "object" && !Qo ? Gi(Sa) : Sa;
|
|
3875
3873
|
}
|
|
3876
3874
|
if (ma(ri)) {
|
|
3877
3875
|
for (var Vi = "<" + Io.call(String(ri.nodeName)), $a = ri.attributes || [], Ta = 0; Ta < $a.length; Ta++)
|
|
@@ -12543,8 +12541,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
12543
12541
|
function ci(Vi) {
|
|
12544
12542
|
return Vi && Vi.__esModule ? Vi : { default: Vi };
|
|
12545
12543
|
}
|
|
12546
|
-
var
|
|
12547
|
-
it.default =
|
|
12544
|
+
var Aa = [["alert", ct.default], ["alertdialog", Ot.default], ["application", qt.default], ["article", Zn.default], ["banner", no.default], ["blockquote", oo.default], ["button", io.default], ["caption", ao.default], ["cell", lo.default], ["checkbox", so.default], ["code", uo.default], ["columnheader", co.default], ["combobox", po.default], ["complementary", fo.default], ["contentinfo", ho.default], ["definition", go.default], ["deletion", mo.default], ["dialog", yo.default], ["directory", vo.default], ["document", bo.default], ["emphasis", So.default], ["feed", wo.default], ["figure", Io.default], ["form", xo.default], ["generic", No.default], ["grid", zo.default], ["gridcell", Ko.default], ["group", Yo.default], ["heading", Vo.default], ["img", Fo.default], ["insertion", ko.default], ["link", Qo.default], ["list", oi.default], ["listbox", ui.default], ["listitem", mi.default], ["log", di.default], ["main", gi.default], ["mark", ni.default], ["marquee", ti.default], ["math", ai.default], ["menu", yi.default], ["menubar", bi.default], ["menuitem", wi.default], ["menuitemcheckbox", Ri.default], ["menuitemradio", Ii.default], ["meter", Wo.default], ["navigation", hi.default], ["none", si.default], ["note", _i.default], ["option", ei.default], ["paragraph", Ai.default], ["presentation", vi.default], ["progressbar", Ci.default], ["radio", Ni.default], ["radiogroup", Ji.default], ["region", Yi.default], ["row", sa.default], ["rowgroup", la.default], ["rowheader", ua.default], ["scrollbar", da.default], ["search", ma.default], ["searchbox", ra.default], ["separator", ya.default], ["slider", Gi.default], ["spinbutton", Xi.default], ["status", oa.default], ["strong", ga.default], ["subscript", Ea.default], ["superscript", ea.default], ["switch", Ki.default], ["tab", Zo.default], ["table", ri.default], ["tablist", Oi.default], ["tabpanel", Pi.default], ["term", Di.default], ["textbox", $i.default], ["time", ki.default], ["timer", zi.default], ["toolbar", Fi.default], ["tooltip", Ui.default], ["tree", aa.default], ["treegrid", Wi.default], ["treeitem", Li.default]], Sa = Aa;
|
|
12545
|
+
it.default = Sa;
|
|
12548
12546
|
} }), require_docAbstractRole = __commonJS({ "../../node_modules/aria-query/lib/etc/roles/dpub/docAbstractRole.js"(it) {
|
|
12549
12547
|
Object.defineProperty(it, "__esModule", { value: !0 }), it.default = void 0;
|
|
12550
12548
|
var ct = { abstract: !1, accessibleNameRequired: !1, baseConcepts: [], childrenPresentational: !1, nameFrom: ["author"], prohibitedProps: [], props: { "aria-disabled": null, "aria-errormessage": null, "aria-expanded": null, "aria-haspopup": null, "aria-invalid": null }, relatedConcepts: [{ concept: { name: "abstract [EPUB-SSV]" }, module: "EPUB" }], requireContextRole: [], requiredContextRole: [], requiredOwnedElements: [], requiredProps: {}, superClass: [["roletype", "structure", "section"]] }, Ot = ct;
|
|
@@ -23478,6 +23476,85 @@ var resetAllMocksLoader = ({ parameters: it }) => {
|
|
|
23478
23476
|
scope.__STORYBOOK_TEST_LOADERS__ = [resetAllMocksLoader, nameSpiesAndWrapActionsInSpies, enhanceContext];
|
|
23479
23477
|
scope.__STORYBOOK_TEST_ON_MOCK_CALL__ = onMockCall;
|
|
23480
23478
|
export {
|
|
23481
|
-
|
|
23479
|
+
buildQueries2 as buildQueries,
|
|
23480
|
+
clearAllMocks,
|
|
23481
|
+
configure2 as configure,
|
|
23482
|
+
createEvent3 as createEvent,
|
|
23483
|
+
findAllByAltText2 as findAllByAltText,
|
|
23484
|
+
findAllByDisplayValue2 as findAllByDisplayValue,
|
|
23485
|
+
findAllByLabelText2 as findAllByLabelText,
|
|
23486
|
+
findAllByPlaceholderText2 as findAllByPlaceholderText,
|
|
23487
|
+
findAllByRole2 as findAllByRole,
|
|
23488
|
+
findAllByTestId2 as findAllByTestId,
|
|
23489
|
+
findAllByText2 as findAllByText,
|
|
23490
|
+
findAllByTitle2 as findAllByTitle,
|
|
23491
|
+
findByAltText2 as findByAltText,
|
|
23492
|
+
findByDisplayValue2 as findByDisplayValue,
|
|
23493
|
+
findByLabelText2 as findByLabelText,
|
|
23494
|
+
findByPlaceholderText2 as findByPlaceholderText,
|
|
23495
|
+
findByRole2 as findByRole,
|
|
23496
|
+
findByTestId2 as findByTestId,
|
|
23497
|
+
findByText2 as findByText,
|
|
23498
|
+
findByTitle2 as findByTitle,
|
|
23499
|
+
fireEvent2 as fireEvent,
|
|
23500
|
+
fn2 as fn,
|
|
23501
|
+
getAllByAltText2 as getAllByAltText,
|
|
23502
|
+
getAllByDisplayValue2 as getAllByDisplayValue,
|
|
23503
|
+
getAllByLabelText2 as getAllByLabelText,
|
|
23504
|
+
getAllByPlaceholderText2 as getAllByPlaceholderText,
|
|
23505
|
+
getAllByRole2 as getAllByRole,
|
|
23506
|
+
getAllByTestId2 as getAllByTestId,
|
|
23507
|
+
getAllByText2 as getAllByText,
|
|
23508
|
+
getAllByTitle2 as getAllByTitle,
|
|
23509
|
+
getByAltText2 as getByAltText,
|
|
23510
|
+
getByDisplayValue2 as getByDisplayValue,
|
|
23511
|
+
getByLabelText2 as getByLabelText,
|
|
23512
|
+
getByPlaceholderText2 as getByPlaceholderText,
|
|
23513
|
+
getByRole2 as getByRole,
|
|
23514
|
+
getByTestId2 as getByTestId,
|
|
23515
|
+
getByText2 as getByText,
|
|
23516
|
+
getByTitle2 as getByTitle,
|
|
23517
|
+
getConfig3 as getConfig,
|
|
23518
|
+
getDefaultNormalizer2 as getDefaultNormalizer,
|
|
23519
|
+
getElementError2 as getElementError,
|
|
23520
|
+
getNodeText2 as getNodeText,
|
|
23521
|
+
getQueriesForElement2 as getQueriesForElement,
|
|
23522
|
+
getRoles2 as getRoles,
|
|
23523
|
+
getSuggestedQuery2 as getSuggestedQuery,
|
|
23524
|
+
isInaccessible2 as isInaccessible,
|
|
23525
|
+
isMockFunction,
|
|
23526
|
+
logDOM2 as logDOM,
|
|
23527
|
+
logRoles2 as logRoles,
|
|
23528
|
+
mocks,
|
|
23529
|
+
onMockCall,
|
|
23530
|
+
prettyDOM2 as prettyDOM,
|
|
23531
|
+
prettyFormat2 as prettyFormat,
|
|
23532
|
+
queries2 as queries,
|
|
23533
|
+
queryAllByAltText2 as queryAllByAltText,
|
|
23534
|
+
queryAllByAttribute2 as queryAllByAttribute,
|
|
23535
|
+
queryAllByDisplayValue2 as queryAllByDisplayValue,
|
|
23536
|
+
queryAllByLabelText2 as queryAllByLabelText,
|
|
23537
|
+
queryAllByPlaceholderText2 as queryAllByPlaceholderText,
|
|
23538
|
+
queryAllByRole2 as queryAllByRole,
|
|
23539
|
+
queryAllByTestId2 as queryAllByTestId,
|
|
23540
|
+
queryAllByText2 as queryAllByText,
|
|
23541
|
+
queryAllByTitle2 as queryAllByTitle,
|
|
23542
|
+
queryByAltText2 as queryByAltText,
|
|
23543
|
+
queryByAttribute2 as queryByAttribute,
|
|
23544
|
+
queryByDisplayValue2 as queryByDisplayValue,
|
|
23545
|
+
queryByLabelText2 as queryByLabelText,
|
|
23546
|
+
queryByPlaceholderText2 as queryByPlaceholderText,
|
|
23547
|
+
queryByRole2 as queryByRole,
|
|
23548
|
+
queryByTestId2 as queryByTestId,
|
|
23549
|
+
queryByText2 as queryByText,
|
|
23550
|
+
queryByTitle2 as queryByTitle,
|
|
23551
|
+
queryHelpers2 as queryHelpers,
|
|
23552
|
+
resetAllMocks,
|
|
23553
|
+
restoreAllMocks,
|
|
23554
|
+
screen2 as screen,
|
|
23555
|
+
traverseArgs,
|
|
23556
|
+
waitFor2 as waitFor,
|
|
23557
|
+
waitForElementToBeRemoved2 as waitForElementToBeRemoved,
|
|
23558
|
+
within
|
|
23482
23559
|
};
|
|
23483
|
-
//# sourceMappingURL=index-
|
|
23560
|
+
//# sourceMappingURL=index-MQ0yPLdl.js.map
|