@uva-glass/component-library 1.40.2 → 1.40.4
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/{MultiSelect-Blc_VDxu.js → MultiSelect-CkfmzGsn.js} +2 -2
- package/dist/{MultiSelect-Blc_VDxu.js.map → MultiSelect-CkfmzGsn.js.map} +1 -1
- package/dist/MultiSelectItem-BKDbs8D_.js +24 -0
- package/dist/{MultiSelectItem-CPf7drsR.js.map → MultiSelectItem-BKDbs8D_.js.map} +1 -1
- package/dist/assets/MultiSelectItem.css +1 -1
- package/dist/components/InputField/InputField.stories.js +1 -1
- package/dist/components/MultiSelect/MultiSelect.js +2 -2
- package/dist/components/MultiSelect/MultiSelect.stories.js +1 -1
- package/dist/components/MultiSelect/components/MultiSelectHeader.js +2 -2
- package/dist/components/MultiSelect/components/MultiSelectItem.js +1 -1
- package/dist/components/MultiSelect/index.js +1 -1
- package/dist/components/ProgrammeCard/ProgrammeCard.stories.js +1 -1
- package/dist/components/index.d.ts +0 -1
- package/dist/components/index.js +59 -61
- package/dist/components/index.js.map +1 -1
- package/dist/index.js +59 -61
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/MultiSelectItem-CPf7drsR.js +0 -24
- package/dist/assets/CourseCard.css +0 -1
- package/dist/assets/CourseCardHeader.css +0 -1
- package/dist/assets/CourseCardOffering.css +0 -1
- package/dist/components/CourseCard/CourseCard.d.ts +0 -33
- package/dist/components/CourseCard/CourseCard.js +0 -49
- package/dist/components/CourseCard/CourseCard.js.map +0 -1
- package/dist/components/CourseCard/CourseCard.stories.d.ts +0 -7
- package/dist/components/CourseCard/CourseCard.stories.js +0 -461
- package/dist/components/CourseCard/CourseCard.stories.js.map +0 -1
- package/dist/components/CourseCard/CourseCardHeader/CourseCardHeader.d.ts +0 -12
- package/dist/components/CourseCard/CourseCardHeader/CourseCardHeader.js +0 -38
- package/dist/components/CourseCard/CourseCardHeader/CourseCardHeader.js.map +0 -1
- package/dist/components/CourseCard/CourseCardHeader/index.d.ts +0 -1
- package/dist/components/CourseCard/CourseCardHeader/index.js +0 -5
- package/dist/components/CourseCard/CourseCardHeader/index.js.map +0 -1
- package/dist/components/CourseCard/CourseCardOffering/CourseCardOffering.d.ts +0 -8
- package/dist/components/CourseCard/CourseCardOffering/CourseCardOffering.js +0 -24
- package/dist/components/CourseCard/CourseCardOffering/CourseCardOffering.js.map +0 -1
- package/dist/components/CourseCard/CourseCardOffering/index.d.ts +0 -1
- package/dist/components/CourseCard/CourseCardOffering/index.js +0 -5
- package/dist/components/CourseCard/CourseCardOffering/index.js.map +0 -1
- package/dist/components/CourseCard/index.d.ts +0 -1
- package/dist/components/CourseCard/index.js +0 -5
- package/dist/components/CourseCard/index.js.map +0 -1
- package/dist/components/CourseCard/mockdata.d.ts +0 -23
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as s, jsx as l, Fragment as a } from "react/jsx-runtime";
|
|
2
2
|
import { c as m } from "./clsx-OuTLNxxd.js";
|
|
3
|
-
import { s as t, M as u } from "./MultiSelectItem-
|
|
3
|
+
import { s as t, M as u } from "./MultiSelectItem-BKDbs8D_.js";
|
|
4
4
|
import { Label as n } from "./components/Label/Label.js";
|
|
5
5
|
import "react";
|
|
6
6
|
import { Button as p } from "./components/Button/Button.js";
|
|
@@ -44,4 +44,4 @@ export {
|
|
|
44
44
|
o as M,
|
|
45
45
|
d as a
|
|
46
46
|
};
|
|
47
|
-
//# sourceMappingURL=MultiSelect-
|
|
47
|
+
//# sourceMappingURL=MultiSelect-CkfmzGsn.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MultiSelect-
|
|
1
|
+
{"version":3,"file":"MultiSelect-CkfmzGsn.js","sources":["../src/components/MultiSelect/components/MultiSelectHeader.tsx","../src/components/MultiSelect/MultiSelect.tsx"],"sourcesContent":["import styles from 'components/MultiSelect/MultiSelect.module.css';\nimport { Label } from 'components/Label';\nimport { Button } from 'components';\n\nexport interface MultiSelectHeaderProps {\n label: string;\n clearTrigger?: string;\n onClear?: () => void;\n}\n\nexport function MultiSelectHeader({ label, clearTrigger, onClear }: MultiSelectHeaderProps) {\n return (\n <header className={styles['multi-select__header']}>\n <Label htmlFor=\"multi-select-list\">{label}</Label>\n {clearTrigger && (\n <Button variant={'blank'} onClick={onClear}>\n {clearTrigger}\n </Button>\n )}\n </header>\n );\n}\n","import clsx from 'clsx';\n\nimport type { PropsWithChildren, ReactNode } from 'react';\n\nimport styles from './MultiSelect.module.css';\n\nimport { MultiSelectItem } from 'components/MultiSelect/components/MultiSelectItem';\nimport { MultiSelectHeader } from 'components/MultiSelect/components/MultiSelectHeader';\nexport interface MultiSelectProps {\n scrollable?: boolean;\n noBorder?: boolean;\n header?: ReactNode;\n}\n\nexport const MultiSelect = ({ scrollable = true, noBorder, header, children }: PropsWithChildren<MultiSelectProps>) => (\n <>\n {header}\n <div\n className={clsx(styles['multi-select'], {\n [styles['multi-select--no-border']]: noBorder,\n })}\n >\n <ul\n className={clsx(styles['multi-select__list'], {\n [styles['multi-select__list--scrollable']]: scrollable,\n })}\n id=\"multi-select-list\"\n >\n {children}\n </ul>\n </div>\n </>\n);\n\nMultiSelect.MultiSelectHeader = MultiSelectHeader;\nMultiSelect.MultiSelectItem = MultiSelectItem;\n"],"names":["MultiSelectHeader","label","clearTrigger","onClear","jsxs","styles","jsx","Label","Button","MultiSelect","scrollable","noBorder","header","children","Fragment","clsx","MultiSelectItem"],"mappings":";;;;;;;;;;;;;AAUO,SAASA,EAAkB,EAAE,OAAAC,GAAO,cAAAC,GAAc,SAAAC,KAAmC;AAC1F,SACG,gBAAAC,EAAA,UAAA,EAAO,WAAWC,EAAO,sBAAsB,GAC9C,UAAA;AAAA,IAAC,gBAAAC,EAAAC,GAAA,EAAM,SAAQ,qBAAqB,UAAMN,GAAA;AAAA,IACzCC,KACE,gBAAAI,EAAAE,GAAA,EAAO,SAAS,SAAS,SAASL,GAChC,UACHD,GAAA;AAAA,EAEJ,EAAA,CAAA;AAEJ;ACPa,MAAAO,IAAc,CAAC,EAAE,YAAAC,IAAa,IAAM,UAAAC,GAAU,QAAAC,GAAQ,UAAAC,QAE9D,gBAAAT,EAAAU,GAAA,EAAA,UAAA;AAAA,EAAAF;AAAA,EACD,gBAAAN;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAWS,EAAKV,EAAO,cAAc,GAAG;AAAA,QACtC,CAACA,EAAO,yBAAyB,CAAC,GAAGM;AAAA,MAAA,CACtC;AAAA,MAED,UAAA,gBAAAL;AAAA,QAAC;AAAA,QAAA;AAAA,UACC,WAAWS,EAAKV,EAAO,oBAAoB,GAAG;AAAA,YAC5C,CAACA,EAAO,gCAAgC,CAAC,GAAGK;AAAA,UAAA,CAC7C;AAAA,UACD,IAAG;AAAA,UAEF,UAAAG;AAAA,QAAA;AAAA,MACH;AAAA,IAAA;AAAA,EACF;AAAA,GACF;AAGFJ,EAAY,oBAAoBT;AAChCS,EAAY,kBAAkBO;"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsxs as o, jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { useId as r } from "react";
|
|
3
|
+
import { Checkbox as c } from "./components/Checkbox/Checkbox.js";
|
|
4
|
+
import { Label as u } from "./components/Label/Label.js";
|
|
5
|
+
import './assets/MultiSelectItem.css';const b = {
|
|
6
|
+
"multi-select": "_multi-select_1t0b0_1",
|
|
7
|
+
"multi-select--no-border": "_multi-select--no-border_1t0b0_7",
|
|
8
|
+
"multi-select__header": "_multi-select__header_1t0b0_12",
|
|
9
|
+
"multi-select__list": "_multi-select__list_1t0b0_18",
|
|
10
|
+
"multi-select__list--scrollable": "_multi-select__list--scrollable_1t0b0_27",
|
|
11
|
+
"multi-select__item": "_multi-select__item_1t0b0_32"
|
|
12
|
+
};
|
|
13
|
+
function h({ label: _, value: s, checked: t, disabled: i = !1, onChange: m }) {
|
|
14
|
+
const e = r();
|
|
15
|
+
return /* @__PURE__ */ o("li", { className: b["multi-select__item"], children: [
|
|
16
|
+
/* @__PURE__ */ l(c, { id: e, value: s, checked: t, onChange: m, disabled: i }),
|
|
17
|
+
/* @__PURE__ */ l(u, { htmlFor: e, noFontWeight: !t, children: _ })
|
|
18
|
+
] });
|
|
19
|
+
}
|
|
20
|
+
export {
|
|
21
|
+
h as M,
|
|
22
|
+
b as s
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=MultiSelectItem-BKDbs8D_.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MultiSelectItem-
|
|
1
|
+
{"version":3,"file":"MultiSelectItem-BKDbs8D_.js","sources":["../src/components/MultiSelect/components/MultiSelectItem.tsx"],"sourcesContent":["import { useId } from 'react';\n\nimport type { ChangeEvent } from 'react';\n\nimport styles from 'components/MultiSelect/MultiSelect.module.css';\nimport { Checkbox } from 'components/Checkbox';\nimport { Label } from 'components/Label';\n\nexport interface MultiSelectItemProps {\n label: string;\n value: string | number;\n checked: boolean;\n disabled?: boolean;\n onChange(event: ChangeEvent<HTMLInputElement>): void;\n}\n\nexport function MultiSelectItem({ label, value, checked, disabled = false, onChange }: MultiSelectItemProps) {\n const id = useId();\n\n return (\n <li className={styles['multi-select__item']}>\n <Checkbox id={id} value={value} checked={checked} onChange={onChange} disabled={disabled} />\n <Label htmlFor={id} noFontWeight={!checked}>\n {label}\n </Label>\n </li>\n );\n}\n"],"names":["MultiSelectItem","label","value","checked","disabled","onChange","id","useId","jsxs","styles","jsx","Checkbox","Label"],"mappings":";;;;;;;;;;;;AAgBgB,SAAAA,EAAgB,EAAE,OAAAC,GAAO,OAAAC,GAAO,SAAAC,GAAS,UAAAC,IAAW,IAAO,UAAAC,KAAkC;AAC3G,QAAMC,IAAKC;AAEX,SACG,gBAAAC,EAAA,MAAA,EAAG,WAAWC,EAAO,oBAAoB,GACxC,UAAA;AAAA,IAAA,gBAAAC,EAACC,GAAS,EAAA,IAAAL,GAAQ,OAAAJ,GAAc,SAAAC,GAAkB,UAAAE,GAAoB,UAAAD,GAAoB;AAAA,sBACzFQ,GAAM,EAAA,SAASN,GAAI,cAAc,CAACH,GAChC,UACHF,GAAA;AAAA,EACF,EAAA,CAAA;AAEJ;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
._multi-
|
|
1
|
+
._multi-select_1t0b0_1{border:1px solid var(--color-black);border-radius:var(--border-radius-default);padding:.75rem}._multi-select--no-border_1t0b0_7{border:none;padding:0}._multi-select__header_1t0b0_12{display:flex;justify-content:space-between;margin-bottom:.5rem}._multi-select__list_1t0b0_18{display:flex;flex-direction:column;gap:.5rem;list-style:none;margin:0;padding:0}._multi-select__list--scrollable_1t0b0_27{max-height:8.75rem;overflow:auto}._multi-select__item_1t0b0_32{display:grid;grid-template-columns:auto 1fr;align-items:start;-webkit-user-select:none;user-select:none}._multi-select__item_1t0b0_32 input[type=checkbox]{margin-right:.75rem;margin-top:3px}._multi-select__item_1t0b0_32 input[type=checkbox]:disabled+label{color:var(--color-grey-300)}
|
|
@@ -9,7 +9,7 @@ import "../OverlayCloseButton/OverlayCloseButton.js";
|
|
|
9
9
|
import "../GridRow/GridRow.js";
|
|
10
10
|
import "../IconButton/IconButton.js";
|
|
11
11
|
import "../Input/Input.js";
|
|
12
|
-
import "../../MultiSelect-
|
|
12
|
+
import "../../MultiSelect-CkfmzGsn.js";
|
|
13
13
|
import "../SelectListbox/SelectListbox.js";
|
|
14
14
|
import "../SelectListbox/SelectProvider.js";
|
|
15
15
|
const C = (t) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "../../clsx-OuTLNxxd.js";
|
|
3
|
-
import "../../MultiSelectItem-
|
|
4
|
-
import { M as p } from "../../MultiSelect-
|
|
3
|
+
import "../../MultiSelectItem-BKDbs8D_.js";
|
|
4
|
+
import { M as p } from "../../MultiSelect-CkfmzGsn.js";
|
|
5
5
|
export {
|
|
6
6
|
p as MultiSelect
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as b, jsx as m } from "react/jsx-runtime";
|
|
2
2
|
import { f as d } from "../../index-0Faxlks_.js";
|
|
3
3
|
import { useState as p } from "react";
|
|
4
|
-
import { M as r } from "../../MultiSelect-
|
|
4
|
+
import { M as r } from "../../MultiSelect-CkfmzGsn.js";
|
|
5
5
|
import { Container as S } from "../storyComponents/Container/Container.js";
|
|
6
6
|
const T = {
|
|
7
7
|
title: "Organisms/MultiSelect",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
|
-
import "../../../MultiSelectItem-
|
|
2
|
+
import "../../../MultiSelectItem-BKDbs8D_.js";
|
|
3
3
|
import "../../Label/Label.js";
|
|
4
4
|
import "react";
|
|
5
5
|
import "../../Button/Button.js";
|
|
@@ -8,7 +8,7 @@ import "../../GridRow/GridRow.js";
|
|
|
8
8
|
import "../../IconButton/IconButton.js";
|
|
9
9
|
import "../../Input/Input.js";
|
|
10
10
|
import "../../InputField/InputField.js";
|
|
11
|
-
import { a as x } from "../../../MultiSelect-
|
|
11
|
+
import { a as x } from "../../../MultiSelect-CkfmzGsn.js";
|
|
12
12
|
import "../../SelectListbox/SelectListbox.js";
|
|
13
13
|
import "../../SelectListbox/SelectProvider.js";
|
|
14
14
|
export {
|
|
@@ -10,7 +10,7 @@ import "../GridRow/GridRow.js";
|
|
|
10
10
|
import "../IconButton/IconButton.js";
|
|
11
11
|
import "../Input/Input.js";
|
|
12
12
|
import "../InputField/InputField.js";
|
|
13
|
-
import "../../MultiSelect-
|
|
13
|
+
import "../../MultiSelect-CkfmzGsn.js";
|
|
14
14
|
import { Repeater as i } from "../Repeater/Repeater.js";
|
|
15
15
|
import "../SelectListbox/SelectListbox.js";
|
|
16
16
|
import "../SelectListbox/SelectProvider.js";
|
package/dist/components/index.js
CHANGED
|
@@ -4,38 +4,37 @@ import { AppStatusBar as f } from "./AppStatusBar/AppStatusBar.js";
|
|
|
4
4
|
import { Attention as i } from "./Attention/Attention.js";
|
|
5
5
|
import { Backdrop as a } from "./Backdrop/Backdrop.js";
|
|
6
6
|
import { Button as u } from "./Button/Button.js";
|
|
7
|
-
import { ButtonGroup as
|
|
7
|
+
import { ButtonGroup as c } from "./ButtonGroup/ButtonGroup.js";
|
|
8
8
|
import { Card as B } from "./Card/Card.js";
|
|
9
9
|
import { Checkbox as S } 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 { Tooltip as Po } from "./Tooltip/Tooltip.js";
|
|
10
|
+
import { Drawer as F } from "./Drawer/Drawer.js";
|
|
11
|
+
import { FieldHint as A } from "./FieldHint/FieldHint.js";
|
|
12
|
+
import { Fieldset as P } from "./Fieldset/Fieldset.js";
|
|
13
|
+
import { FormField as g } from "./FormField/FormField.js";
|
|
14
|
+
import { GridRow as D } from "./GridRow/GridRow.js";
|
|
15
|
+
import { HorizontalList as v } from "./HorizontalList/HorizontalList.js";
|
|
16
|
+
import { Icon as G } from "./Icon/Icon.js";
|
|
17
|
+
import { IconButton as h } from "./IconButton/IconButton.js";
|
|
18
|
+
import { InfoMessage as z } from "./InfoMessage/InfoMessage.js";
|
|
19
|
+
import { Input as O } from "./Input/Input.js";
|
|
20
|
+
import { InputField as j } from "./InputField/InputField.js";
|
|
21
|
+
import { Label as E } from "./Label/Label.js";
|
|
22
|
+
import { MenuButton as K } from "./MenuButton/MenuButton.js";
|
|
23
|
+
import { M as U } from "../MenuLink-CSnr2Az4.js";
|
|
24
|
+
import { MetaDataList as W } from "./MetaDataList/MetaDataList.js";
|
|
25
|
+
import { ModalDialog as Y } from "./ModalDialog/ModalDialog.js";
|
|
26
|
+
import { M as _ } from "../MultiSelect-CkfmzGsn.js";
|
|
27
|
+
import { OverlayCloseButton as oo } from "./OverlayCloseButton/OverlayCloseButton.js";
|
|
28
|
+
import { Periods as to } from "./Periods/Periods.js";
|
|
29
|
+
import { ProgrammeCard as po } from "./ProgrammeCard/ProgrammeCard.js";
|
|
30
|
+
import { RadioButton as fo } from "./RadioButton/RadioButton.js";
|
|
31
|
+
import { Repeater as io } from "./Repeater/Repeater.js";
|
|
32
|
+
import { SectionNotification as ao } from "./SectionNotification/SectionNotification.js";
|
|
33
|
+
import { SelectListbox as uo } from "./SelectListbox/SelectListbox.js";
|
|
34
|
+
import { SelectProvider as co, useSelect as Bo } from "./SelectListbox/SelectProvider.js";
|
|
35
|
+
import { Spinner as So } from "./Spinner/Spinner.js";
|
|
36
|
+
import { StatusPill as Fo } from "./StatusPill/StatusPill.js";
|
|
37
|
+
import { Tooltip as Ao } from "./Tooltip/Tooltip.js";
|
|
39
38
|
export {
|
|
40
39
|
t as Accordion,
|
|
41
40
|
p as ActionList,
|
|
@@ -43,38 +42,37 @@ export {
|
|
|
43
42
|
i as Attention,
|
|
44
43
|
a as Backdrop,
|
|
45
44
|
u as Button,
|
|
46
|
-
|
|
45
|
+
c as ButtonGroup,
|
|
47
46
|
B as Card,
|
|
48
47
|
S as Checkbox,
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
P as
|
|
52
|
-
g as
|
|
53
|
-
D as
|
|
54
|
-
v as
|
|
55
|
-
G as
|
|
56
|
-
h as
|
|
57
|
-
z as
|
|
58
|
-
O as
|
|
59
|
-
j as
|
|
60
|
-
E as
|
|
61
|
-
K as
|
|
62
|
-
U as
|
|
63
|
-
W as
|
|
64
|
-
Y as
|
|
65
|
-
_ as
|
|
66
|
-
oo as
|
|
67
|
-
to as
|
|
68
|
-
po as
|
|
69
|
-
fo as
|
|
70
|
-
io as
|
|
71
|
-
ao as
|
|
72
|
-
uo as
|
|
73
|
-
co as
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
So as useSelect
|
|
48
|
+
F as Drawer,
|
|
49
|
+
A as FieldHint,
|
|
50
|
+
P as Fieldset,
|
|
51
|
+
g as FormField,
|
|
52
|
+
D as GridRow,
|
|
53
|
+
v as HorizontalList,
|
|
54
|
+
G as Icon,
|
|
55
|
+
h as IconButton,
|
|
56
|
+
z as InfoMessage,
|
|
57
|
+
O as Input,
|
|
58
|
+
j as InputField,
|
|
59
|
+
E as Label,
|
|
60
|
+
K as MenuButton,
|
|
61
|
+
U as MenuLink,
|
|
62
|
+
W as MetaDataList,
|
|
63
|
+
Y as ModalDialog,
|
|
64
|
+
_ as MultiSelect,
|
|
65
|
+
oo as OverlayCloseButton,
|
|
66
|
+
to as Periods,
|
|
67
|
+
po as ProgrammeCard,
|
|
68
|
+
fo as RadioButton,
|
|
69
|
+
io as Repeater,
|
|
70
|
+
ao as SectionNotification,
|
|
71
|
+
uo as SelectListbox,
|
|
72
|
+
co as SelectProvider,
|
|
73
|
+
So as Spinner,
|
|
74
|
+
Fo as StatusPill,
|
|
75
|
+
Ao as Tooltip,
|
|
76
|
+
Bo as useSelect
|
|
79
77
|
};
|
|
80
78
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -4,38 +4,37 @@ import { AppStatusBar as f } from "./components/AppStatusBar/AppStatusBar.js";
|
|
|
4
4
|
import { Attention as i } from "./components/Attention/Attention.js";
|
|
5
5
|
import { Backdrop as a } from "./components/Backdrop/Backdrop.js";
|
|
6
6
|
import { Button as u } from "./components/Button/Button.js";
|
|
7
|
-
import { ButtonGroup as
|
|
7
|
+
import { ButtonGroup as c } from "./components/ButtonGroup/ButtonGroup.js";
|
|
8
8
|
import { Card as B } from "./components/Card/Card.js";
|
|
9
9
|
import { Checkbox as S } from "./components/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 { Tooltip as Po } from "./components/Tooltip/Tooltip.js";
|
|
10
|
+
import { Drawer as F } from "./components/Drawer/Drawer.js";
|
|
11
|
+
import { FieldHint as A } from "./components/FieldHint/FieldHint.js";
|
|
12
|
+
import { Fieldset as P } from "./components/Fieldset/Fieldset.js";
|
|
13
|
+
import { FormField as g } from "./components/FormField/FormField.js";
|
|
14
|
+
import { GridRow as D } from "./components/GridRow/GridRow.js";
|
|
15
|
+
import { HorizontalList as v } from "./components/HorizontalList/HorizontalList.js";
|
|
16
|
+
import { Icon as G } from "./components/Icon/Icon.js";
|
|
17
|
+
import { IconButton as h } from "./components/IconButton/IconButton.js";
|
|
18
|
+
import { InfoMessage as z } from "./components/InfoMessage/InfoMessage.js";
|
|
19
|
+
import { Input as O } from "./components/Input/Input.js";
|
|
20
|
+
import { InputField as j } from "./components/InputField/InputField.js";
|
|
21
|
+
import { Label as E } from "./components/Label/Label.js";
|
|
22
|
+
import { MenuButton as K } from "./components/MenuButton/MenuButton.js";
|
|
23
|
+
import { M as U } from "./MenuLink-CSnr2Az4.js";
|
|
24
|
+
import { MetaDataList as W } from "./components/MetaDataList/MetaDataList.js";
|
|
25
|
+
import { ModalDialog as Y } from "./components/ModalDialog/ModalDialog.js";
|
|
26
|
+
import { M as _ } from "./MultiSelect-CkfmzGsn.js";
|
|
27
|
+
import { OverlayCloseButton as oo } from "./components/OverlayCloseButton/OverlayCloseButton.js";
|
|
28
|
+
import { Periods as to } from "./components/Periods/Periods.js";
|
|
29
|
+
import { ProgrammeCard as po } from "./components/ProgrammeCard/ProgrammeCard.js";
|
|
30
|
+
import { RadioButton as fo } from "./components/RadioButton/RadioButton.js";
|
|
31
|
+
import { Repeater as io } from "./components/Repeater/Repeater.js";
|
|
32
|
+
import { SectionNotification as ao } from "./components/SectionNotification/SectionNotification.js";
|
|
33
|
+
import { SelectListbox as uo } from "./components/SelectListbox/SelectListbox.js";
|
|
34
|
+
import { SelectProvider as co, useSelect as Bo } from "./components/SelectListbox/SelectProvider.js";
|
|
35
|
+
import { Spinner as So } from "./components/Spinner/Spinner.js";
|
|
36
|
+
import { StatusPill as Fo } from "./components/StatusPill/StatusPill.js";
|
|
37
|
+
import { Tooltip as Ao } from "./components/Tooltip/Tooltip.js";
|
|
39
38
|
export {
|
|
40
39
|
t as Accordion,
|
|
41
40
|
p as ActionList,
|
|
@@ -43,38 +42,37 @@ export {
|
|
|
43
42
|
i as Attention,
|
|
44
43
|
a as Backdrop,
|
|
45
44
|
u as Button,
|
|
46
|
-
|
|
45
|
+
c as ButtonGroup,
|
|
47
46
|
B as Card,
|
|
48
47
|
S as Checkbox,
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
P as
|
|
52
|
-
g as
|
|
53
|
-
D as
|
|
54
|
-
v as
|
|
55
|
-
G as
|
|
56
|
-
h as
|
|
57
|
-
z as
|
|
58
|
-
O as
|
|
59
|
-
j as
|
|
60
|
-
E as
|
|
61
|
-
K as
|
|
62
|
-
U as
|
|
63
|
-
W as
|
|
64
|
-
Y as
|
|
65
|
-
_ as
|
|
66
|
-
oo as
|
|
67
|
-
to as
|
|
68
|
-
po as
|
|
69
|
-
fo as
|
|
70
|
-
io as
|
|
71
|
-
ao as
|
|
72
|
-
uo as
|
|
73
|
-
co as
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
So as useSelect
|
|
48
|
+
F as Drawer,
|
|
49
|
+
A as FieldHint,
|
|
50
|
+
P as Fieldset,
|
|
51
|
+
g as FormField,
|
|
52
|
+
D as GridRow,
|
|
53
|
+
v as HorizontalList,
|
|
54
|
+
G as Icon,
|
|
55
|
+
h as IconButton,
|
|
56
|
+
z as InfoMessage,
|
|
57
|
+
O as Input,
|
|
58
|
+
j as InputField,
|
|
59
|
+
E as Label,
|
|
60
|
+
K as MenuButton,
|
|
61
|
+
U as MenuLink,
|
|
62
|
+
W as MetaDataList,
|
|
63
|
+
Y as ModalDialog,
|
|
64
|
+
_ as MultiSelect,
|
|
65
|
+
oo as OverlayCloseButton,
|
|
66
|
+
to as Periods,
|
|
67
|
+
po as ProgrammeCard,
|
|
68
|
+
fo as RadioButton,
|
|
69
|
+
io as Repeater,
|
|
70
|
+
ao as SectionNotification,
|
|
71
|
+
uo as SelectListbox,
|
|
72
|
+
co as SelectProvider,
|
|
73
|
+
So as Spinner,
|
|
74
|
+
Fo as StatusPill,
|
|
75
|
+
Ao as Tooltip,
|
|
76
|
+
Bo as useSelect
|
|
79
77
|
};
|
|
80
78
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { jsxs as o, jsx as l } from "react/jsx-runtime";
|
|
2
|
-
import { useId as r } from "react";
|
|
3
|
-
import { Checkbox as c } from "./components/Checkbox/Checkbox.js";
|
|
4
|
-
import { Label as u } from "./components/Label/Label.js";
|
|
5
|
-
import './assets/MultiSelectItem.css';const f = {
|
|
6
|
-
"multi-select": "_multi-select_pjfwx_1",
|
|
7
|
-
"multi-select--no-border": "_multi-select--no-border_pjfwx_7",
|
|
8
|
-
"multi-select__header": "_multi-select__header_pjfwx_12",
|
|
9
|
-
"multi-select__list": "_multi-select__list_pjfwx_18",
|
|
10
|
-
"multi-select__list--scrollable": "_multi-select__list--scrollable_pjfwx_27",
|
|
11
|
-
"multi-select__item": "_multi-select__item_pjfwx_32"
|
|
12
|
-
};
|
|
13
|
-
function j({ label: _, value: s, checked: e, disabled: i = !1, onChange: m }) {
|
|
14
|
-
const t = r();
|
|
15
|
-
return /* @__PURE__ */ o("li", { className: f["multi-select__item"], children: [
|
|
16
|
-
/* @__PURE__ */ l(c, { id: t, value: s, checked: e, onChange: m, disabled: i }),
|
|
17
|
-
/* @__PURE__ */ l(u, { htmlFor: t, noFontWeight: !e, children: _ })
|
|
18
|
-
] });
|
|
19
|
-
}
|
|
20
|
-
export {
|
|
21
|
-
j as M,
|
|
22
|
-
f as s
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=MultiSelectItem-CPf7drsR.js.map
|