@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.
Files changed (44) hide show
  1. package/dist/{MultiSelect-Blc_VDxu.js → MultiSelect-CkfmzGsn.js} +2 -2
  2. package/dist/{MultiSelect-Blc_VDxu.js.map → MultiSelect-CkfmzGsn.js.map} +1 -1
  3. package/dist/MultiSelectItem-BKDbs8D_.js +24 -0
  4. package/dist/{MultiSelectItem-CPf7drsR.js.map → MultiSelectItem-BKDbs8D_.js.map} +1 -1
  5. package/dist/assets/MultiSelectItem.css +1 -1
  6. package/dist/components/InputField/InputField.stories.js +1 -1
  7. package/dist/components/MultiSelect/MultiSelect.js +2 -2
  8. package/dist/components/MultiSelect/MultiSelect.stories.js +1 -1
  9. package/dist/components/MultiSelect/components/MultiSelectHeader.js +2 -2
  10. package/dist/components/MultiSelect/components/MultiSelectItem.js +1 -1
  11. package/dist/components/MultiSelect/index.js +1 -1
  12. package/dist/components/ProgrammeCard/ProgrammeCard.stories.js +1 -1
  13. package/dist/components/index.d.ts +0 -1
  14. package/dist/components/index.js +59 -61
  15. package/dist/components/index.js.map +1 -1
  16. package/dist/index.js +59 -61
  17. package/dist/index.js.map +1 -1
  18. package/package.json +1 -1
  19. package/dist/MultiSelectItem-CPf7drsR.js +0 -24
  20. package/dist/assets/CourseCard.css +0 -1
  21. package/dist/assets/CourseCardHeader.css +0 -1
  22. package/dist/assets/CourseCardOffering.css +0 -1
  23. package/dist/components/CourseCard/CourseCard.d.ts +0 -33
  24. package/dist/components/CourseCard/CourseCard.js +0 -49
  25. package/dist/components/CourseCard/CourseCard.js.map +0 -1
  26. package/dist/components/CourseCard/CourseCard.stories.d.ts +0 -7
  27. package/dist/components/CourseCard/CourseCard.stories.js +0 -461
  28. package/dist/components/CourseCard/CourseCard.stories.js.map +0 -1
  29. package/dist/components/CourseCard/CourseCardHeader/CourseCardHeader.d.ts +0 -12
  30. package/dist/components/CourseCard/CourseCardHeader/CourseCardHeader.js +0 -38
  31. package/dist/components/CourseCard/CourseCardHeader/CourseCardHeader.js.map +0 -1
  32. package/dist/components/CourseCard/CourseCardHeader/index.d.ts +0 -1
  33. package/dist/components/CourseCard/CourseCardHeader/index.js +0 -5
  34. package/dist/components/CourseCard/CourseCardHeader/index.js.map +0 -1
  35. package/dist/components/CourseCard/CourseCardOffering/CourseCardOffering.d.ts +0 -8
  36. package/dist/components/CourseCard/CourseCardOffering/CourseCardOffering.js +0 -24
  37. package/dist/components/CourseCard/CourseCardOffering/CourseCardOffering.js.map +0 -1
  38. package/dist/components/CourseCard/CourseCardOffering/index.d.ts +0 -1
  39. package/dist/components/CourseCard/CourseCardOffering/index.js +0 -5
  40. package/dist/components/CourseCard/CourseCardOffering/index.js.map +0 -1
  41. package/dist/components/CourseCard/index.d.ts +0 -1
  42. package/dist/components/CourseCard/index.js +0 -5
  43. package/dist/components/CourseCard/index.js.map +0 -1
  44. 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-CPf7drsR.js";
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-Blc_VDxu.js.map
47
+ //# sourceMappingURL=MultiSelect-CkfmzGsn.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"MultiSelect-Blc_VDxu.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;"}
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-CPf7drsR.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
+ {"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-select_pjfwx_1{border:1px solid var(--color-black);border-radius:var(--border-radius-default);padding:.75rem}._multi-select--no-border_pjfwx_7{border:none;padding:0}._multi-select__header_pjfwx_12{display:flex;justify-content:space-between;margin-bottom:.5rem}._multi-select__list_pjfwx_18{display:flex;flex-direction:column;gap:.5rem;list-style:none;margin:0;padding:0}._multi-select__list--scrollable_pjfwx_27{max-height:8.75rem;overflow:auto}._multi-select__item_pjfwx_32{align-items:center;display:flex;gap:.75rem;padding-left:.25rem}._multi-select__item_pjfwx_32 input[type=checkbox]{flex-shrink:0}._multi-select__item_pjfwx_32 input[type=checkbox]:disabled+label{color:var(--color-grey-300)}
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-Blc_VDxu.js";
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-CPf7drsR.js";
4
- import { M as p } from "../../MultiSelect-Blc_VDxu.js";
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-Blc_VDxu.js";
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-CPf7drsR.js";
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-Blc_VDxu.js";
11
+ import { a as x } from "../../../MultiSelect-CkfmzGsn.js";
12
12
  import "../../SelectListbox/SelectListbox.js";
13
13
  import "../../SelectListbox/SelectProvider.js";
14
14
  export {
@@ -1,6 +1,6 @@
1
1
  import "react/jsx-runtime";
2
2
  import "react";
3
- import { M as e } from "../../../MultiSelectItem-CPf7drsR.js";
3
+ import { M as e } from "../../../MultiSelectItem-BKDbs8D_.js";
4
4
  import "../../Checkbox/Checkbox.js";
5
5
  import "../../Label/Label.js";
6
6
  export {
@@ -1,4 +1,4 @@
1
- import { M as l } from "../../MultiSelect-Blc_VDxu.js";
1
+ import { M as l } from "../../MultiSelect-CkfmzGsn.js";
2
2
  export {
3
3
  l as MultiSelect
4
4
  };
@@ -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-Blc_VDxu.js";
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";
@@ -7,7 +7,6 @@ export * from './Button';
7
7
  export * from './ButtonGroup';
8
8
  export * from './Card';
9
9
  export * from './Checkbox';
10
- export * from './CourseCard';
11
10
  export * from './Drawer';
12
11
  export * from './FieldHint';
13
12
  export * from './Fieldset';
@@ -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 d } from "./ButtonGroup/ButtonGroup.js";
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 { CourseCard as L } from "./CourseCard/CourseCard.js";
11
- import { Drawer as I } from "./Drawer/Drawer.js";
12
- import { FieldHint as P } from "./FieldHint/FieldHint.js";
13
- import { Fieldset as g } from "./Fieldset/Fieldset.js";
14
- import { FormField as D } from "./FormField/FormField.js";
15
- import { GridRow as v } from "./GridRow/GridRow.js";
16
- import { HorizontalList as G } from "./HorizontalList/HorizontalList.js";
17
- import { Icon as h } from "./Icon/Icon.js";
18
- import { IconButton as z } from "./IconButton/IconButton.js";
19
- import { InfoMessage as O } from "./InfoMessage/InfoMessage.js";
20
- import { Input as j } from "./Input/Input.js";
21
- import { InputField as E } from "./InputField/InputField.js";
22
- import { Label as K } from "./Label/Label.js";
23
- import { MenuButton as U } from "./MenuButton/MenuButton.js";
24
- import { M as W } from "../MenuLink-CSnr2Az4.js";
25
- import { MetaDataList as Y } from "./MetaDataList/MetaDataList.js";
26
- import { ModalDialog as _ } from "./ModalDialog/ModalDialog.js";
27
- import { M as oo } from "../MultiSelect-Blc_VDxu.js";
28
- import { OverlayCloseButton as to } from "./OverlayCloseButton/OverlayCloseButton.js";
29
- import { Periods as po } from "./Periods/Periods.js";
30
- import { ProgrammeCard as fo } from "./ProgrammeCard/ProgrammeCard.js";
31
- import { RadioButton as io } from "./RadioButton/RadioButton.js";
32
- import { Repeater as ao } from "./Repeater/Repeater.js";
33
- import { SectionNotification as uo } from "./SectionNotification/SectionNotification.js";
34
- import { SelectListbox as co } from "./SelectListbox/SelectListbox.js";
35
- import { SelectProvider as Mo, useSelect as So } from "./SelectListbox/SelectProvider.js";
36
- import { Spinner as Lo } from "./Spinner/Spinner.js";
37
- import { StatusPill as Io } from "./StatusPill/StatusPill.js";
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
- d as ButtonGroup,
45
+ c as ButtonGroup,
47
46
  B as Card,
48
47
  S as Checkbox,
49
- L as CourseCard,
50
- I as Drawer,
51
- P as FieldHint,
52
- g as Fieldset,
53
- D as FormField,
54
- v as GridRow,
55
- G as HorizontalList,
56
- h as Icon,
57
- z as IconButton,
58
- O as InfoMessage,
59
- j as Input,
60
- E as InputField,
61
- K as Label,
62
- U as MenuButton,
63
- W as MenuLink,
64
- Y as MetaDataList,
65
- _ as ModalDialog,
66
- oo as MultiSelect,
67
- to as OverlayCloseButton,
68
- po as Periods,
69
- fo as ProgrammeCard,
70
- io as RadioButton,
71
- ao as Repeater,
72
- uo as SectionNotification,
73
- co as SelectListbox,
74
- Mo as SelectProvider,
75
- Lo as Spinner,
76
- Io as StatusPill,
77
- Po as Tooltip,
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 d } from "./components/ButtonGroup/ButtonGroup.js";
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 { CourseCard as L } from "./components/CourseCard/CourseCard.js";
11
- import { Drawer as I } from "./components/Drawer/Drawer.js";
12
- import { FieldHint as P } from "./components/FieldHint/FieldHint.js";
13
- import { Fieldset as g } from "./components/Fieldset/Fieldset.js";
14
- import { FormField as D } from "./components/FormField/FormField.js";
15
- import { GridRow as v } from "./components/GridRow/GridRow.js";
16
- import { HorizontalList as G } from "./components/HorizontalList/HorizontalList.js";
17
- import { Icon as h } from "./components/Icon/Icon.js";
18
- import { IconButton as z } from "./components/IconButton/IconButton.js";
19
- import { InfoMessage as O } from "./components/InfoMessage/InfoMessage.js";
20
- import { Input as j } from "./components/Input/Input.js";
21
- import { InputField as E } from "./components/InputField/InputField.js";
22
- import { Label as K } from "./components/Label/Label.js";
23
- import { MenuButton as U } from "./components/MenuButton/MenuButton.js";
24
- import { M as W } from "./MenuLink-CSnr2Az4.js";
25
- import { MetaDataList as Y } from "./components/MetaDataList/MetaDataList.js";
26
- import { ModalDialog as _ } from "./components/ModalDialog/ModalDialog.js";
27
- import { M as oo } from "./MultiSelect-Blc_VDxu.js";
28
- import { OverlayCloseButton as to } from "./components/OverlayCloseButton/OverlayCloseButton.js";
29
- import { Periods as po } from "./components/Periods/Periods.js";
30
- import { ProgrammeCard as fo } from "./components/ProgrammeCard/ProgrammeCard.js";
31
- import { RadioButton as io } from "./components/RadioButton/RadioButton.js";
32
- import { Repeater as ao } from "./components/Repeater/Repeater.js";
33
- import { SectionNotification as uo } from "./components/SectionNotification/SectionNotification.js";
34
- import { SelectListbox as co } from "./components/SelectListbox/SelectListbox.js";
35
- import { SelectProvider as Mo, useSelect as So } from "./components/SelectListbox/SelectProvider.js";
36
- import { Spinner as Lo } from "./components/Spinner/Spinner.js";
37
- import { StatusPill as Io } from "./components/StatusPill/StatusPill.js";
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
- d as ButtonGroup,
45
+ c as ButtonGroup,
47
46
  B as Card,
48
47
  S as Checkbox,
49
- L as CourseCard,
50
- I as Drawer,
51
- P as FieldHint,
52
- g as Fieldset,
53
- D as FormField,
54
- v as GridRow,
55
- G as HorizontalList,
56
- h as Icon,
57
- z as IconButton,
58
- O as InfoMessage,
59
- j as Input,
60
- E as InputField,
61
- K as Label,
62
- U as MenuButton,
63
- W as MenuLink,
64
- Y as MetaDataList,
65
- _ as ModalDialog,
66
- oo as MultiSelect,
67
- to as OverlayCloseButton,
68
- po as Periods,
69
- fo as ProgrammeCard,
70
- io as RadioButton,
71
- ao as Repeater,
72
- uo as SectionNotification,
73
- co as SelectListbox,
74
- Mo as SelectProvider,
75
- Lo as Spinner,
76
- Io as StatusPill,
77
- Po as Tooltip,
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
@@ -2,7 +2,7 @@
2
2
  "name": "@uva-glass/component-library",
3
3
  "author": "Team Glass - Frontend vrienden",
4
4
  "private": false,
5
- "version": "1.40.2",
5
+ "version": "1.40.4",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -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