@uva-glass/component-library 3.23.0 → 3.25.0

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 (29) hide show
  1. package/dist/assets/ExpandableInfoPanel.css +1 -0
  2. package/dist/assets/InfoBanner.css +1 -0
  3. package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.d.ts +14 -0
  4. package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.js +50 -0
  5. package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.js.map +1 -0
  6. package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.stories.d.ts +5 -0
  7. package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.stories.js +31 -0
  8. package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.stories.js.map +1 -0
  9. package/dist/components/ExpandableInfoPanel/index.d.ts +1 -0
  10. package/dist/components/ExpandableInfoPanel/index.js +5 -0
  11. package/dist/components/ExpandableInfoPanel/index.js.map +1 -0
  12. package/dist/components/Icon/icons/index.d.ts +12 -0
  13. package/dist/components/Icon/icons/index.js +179 -169
  14. package/dist/components/Icon/icons/index.js.map +1 -1
  15. package/dist/components/InfoBanner/InfoBanner.d.ts +9 -0
  16. package/dist/components/InfoBanner/InfoBanner.js +12 -0
  17. package/dist/components/InfoBanner/InfoBanner.js.map +1 -0
  18. package/dist/components/InfoBanner/InfoBanner.stories.d.ts +5 -0
  19. package/dist/components/InfoBanner/InfoBanner.stories.js +23 -0
  20. package/dist/components/InfoBanner/InfoBanner.stories.js.map +1 -0
  21. package/dist/components/InfoBanner/index.d.ts +1 -0
  22. package/dist/components/InfoBanner/index.js +5 -0
  23. package/dist/components/InfoBanner/index.js.map +1 -0
  24. package/dist/components/index.d.ts +2 -0
  25. package/dist/components/index.js +100 -96
  26. package/dist/components/index.js.map +1 -1
  27. package/dist/index.js +100 -96
  28. package/dist/index.js.map +1 -1
  29. package/package.json +6 -6
@@ -0,0 +1,9 @@
1
+ import { ReactNode } from 'react';
2
+ import { IconProps } from 'components/Icon';
3
+ export interface InfoBannerProps {
4
+ /** The name of the icon to display in the banner. */
5
+ iconName?: IconProps['name'];
6
+ /** Content or message as sting or react component. */
7
+ content?: string | ReactNode;
8
+ }
9
+ export declare const InfoBanner: ({ iconName, content }: InfoBannerProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsxs as e, jsx as o } from "react/jsx-runtime";
2
+ import { Icon as a } from "../Icon/Icon.js";
3
+ import '../../assets/InfoBanner.css';const p = "_infobanner_wrapper_1ojyh_1", s = {
4
+ infobanner_wrapper: p
5
+ }, f = ({ iconName: n, content: r }) => /* @__PURE__ */ e("div", { className: s.infobanner_wrapper, children: [
6
+ n && /* @__PURE__ */ o(a, { name: n, size: 24 }),
7
+ r
8
+ ] });
9
+ export {
10
+ f as InfoBanner
11
+ };
12
+ //# sourceMappingURL=InfoBanner.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InfoBanner.js","sources":["../../../src/components/InfoBanner/InfoBanner.tsx"],"sourcesContent":["import type { ReactNode } from 'react';\r\nimport type { IconProps } from 'components/Icon';\r\n\r\nimport styles from './InfoBanner.module.css';\r\n\r\nimport { Icon } from 'components/Icon';\r\n\r\nexport interface InfoBannerProps {\r\n /** The name of the icon to display in the banner. */\r\n iconName?: IconProps['name'];\r\n /** Content or message as sting or react component. */\r\n content?: string | ReactNode;\r\n}\r\n\r\nexport const InfoBanner = ({ iconName, content }: InfoBannerProps) => {\r\n return (\r\n <div className={styles['infobanner_wrapper']}>\r\n {iconName && <Icon name={iconName} size={24} />}\r\n {content}\r\n </div>\r\n );\r\n};\r\n"],"names":["InfoBanner","iconName","content","jsxs","styles","jsx","Icon"],"mappings":";;;;GAcaA,IAAa,CAAC,EAAE,UAAAC,GAAU,SAAAC,QAElC,gBAAAC,EAAA,OAAA,EAAI,WAAWC,EAAO,oBACpB,UAAA;AAAA,EAAAH,KAAa,gBAAAI,EAAAC,GAAA,EAAK,MAAML,GAAU,MAAM,IAAI;AAAA,EAC5CC;AAAA,GACH;"}
@@ -0,0 +1,5 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { InfoBannerProps } from 'components/InfoBanner';
3
+ declare const _default: Meta<InfoBannerProps>;
4
+ export default _default;
5
+ export declare const InfoBannerExample: import('@storybook/core/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, InfoBannerProps>;
@@ -0,0 +1,23 @@
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ import { InfoBanner as n } from "./InfoBanner.js";
3
+ const r = "<InfoBanner iconName={string} content={ReactNode} />", m = {
4
+ title: "Atoms/InfoBanner",
5
+ component: n,
6
+ argTypes: {},
7
+ parameters: {
8
+ inspectComponent: n,
9
+ codeString: r
10
+ }
11
+ }, a = (o) => /* @__PURE__ */ e(n, { ...o }), s = a.bind({});
12
+ s.args = {
13
+ content: /* @__PURE__ */ t("span", { children: [
14
+ "Je voert de roosterwensen in voor ",
15
+ /* @__PURE__ */ e("strong", { children: "vakaanbieding 2." })
16
+ ] }),
17
+ iconName: "CalendarEdit"
18
+ };
19
+ export {
20
+ s as InfoBannerExample,
21
+ m as default
22
+ };
23
+ //# sourceMappingURL=InfoBanner.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InfoBanner.stories.js","sources":["../../../src/components/InfoBanner/InfoBanner.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\r\nimport type { InfoBannerProps } from 'components/InfoBanner';\r\n\r\nimport { InfoBanner } from 'components/InfoBanner';\r\n\r\nconst codeString = `<InfoBanner iconName={string} content={ReactNode} />`;\r\n\r\n// eslint-disable-next-line import/no-default-export\r\nexport default {\r\n title: 'Atoms/InfoBanner',\r\n component: InfoBanner,\r\n argTypes: {},\r\n parameters: {\r\n inspectComponent: InfoBanner,\r\n codeString: codeString,\r\n },\r\n} as Meta<InfoBannerProps>;\r\n\r\nconst Template: StoryFn<InfoBannerProps> = (args) => <InfoBanner {...args} />;\r\n\r\nexport const InfoBannerExample = Template.bind({});\r\nInfoBannerExample.args = {\r\n content: (\r\n <span>\r\n Je voert de roosterwensen in voor <strong>vakaanbieding 2.</strong>\r\n </span>\r\n ),\r\n iconName: 'CalendarEdit',\r\n};\r\n"],"names":["codeString","InfoBanner_stories","InfoBanner","Template","args","jsx","InfoBannerExample"],"mappings":";;AAKA,MAAMA,IAAa,wDAGJC,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,UAAU,CAAC;AAAA,EACX,YAAY;AAAA,IACV,kBAAkBA;AAAA,IAClB,YAAAF;AAAA,EAAA;AAEJ,GAEMG,IAAqC,CAACC,MAAU,gBAAAC,EAAAH,GAAA,EAAY,GAAGE,GAAM,GAE9DE,IAAoBH,EAAS,KAAK,CAAE,CAAA;AACjDG,EAAkB,OAAO;AAAA,EACvB,2BACG,QAAK,EAAA,UAAA;AAAA,IAAA;AAAA,IAC8B,gBAAAD,EAAC,YAAO,UAAgB,mBAAA,CAAA;AAAA,EAAA,GAC5D;AAAA,EAEF,UAAU;AACZ;"}
@@ -0,0 +1 @@
1
+ export * from './InfoBanner';
@@ -0,0 +1,5 @@
1
+ import { InfoBanner as r } from "./InfoBanner.js";
2
+ export {
3
+ r as InfoBanner
4
+ };
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -14,6 +14,7 @@ export * from './Chip';
14
14
  export * from './ControlsButton';
15
15
  export * from './Drawer';
16
16
  export * from './EmptyStateDataDisplay';
17
+ export * from './ExpandableInfoPanel';
17
18
  export * from './FeedbackBar';
18
19
  export * from './FeedbackBox';
19
20
  export * from './FieldHint';
@@ -24,6 +25,7 @@ export * from './GridRow';
24
25
  export * from './HorizontalList';
25
26
  export * from './Icon';
26
27
  export * from './IconButton';
28
+ export * from './InfoBanner';
27
29
  export * from './InfoMessage';
28
30
  export * from './Input';
29
31
  export * from './InputField';
@@ -7,56 +7,58 @@ import { Backdrop as c } from "./Backdrop/Backdrop.js";
7
7
  import { ButtonGroup as u } from "./ButtonGroup/ButtonGroup.js";
8
8
  import { Button as s } from "./Buttons/Button.js";
9
9
  import { LinkButton as b } from "./Buttons/LinkButton.js";
10
- import { MenuButton as k } from "./Buttons/MenuButton.js";
11
- import { Card as M } from "./Card/Card.js";
12
- import { Checkbox as I } from "./Checkbox/Checkbox.js";
13
- import { CheckboxButtonBar as R } from "./CheckboxButtonBar/CheckboxButtonBar.js";
14
- import { CheckboxTree as P } from "./CheckboxTree/CheckboxTree.js";
10
+ import { MenuButton as I } from "./Buttons/MenuButton.js";
11
+ import { Card as F } from "./Card/Card.js";
12
+ import { Checkbox as g } from "./Checkbox/Checkbox.js";
13
+ import { CheckboxButtonBar as P } from "./CheckboxButtonBar/CheckboxButtonBar.js";
14
+ import { CheckboxTree as A } from "./CheckboxTree/CheckboxTree.js";
15
15
  import { Chip as y } from "./Chip/Chip.js";
16
16
  import { ControlsButton as T } from "./ControlsButton/ControlsButton.js";
17
17
  import { Drawer as w } from "./Drawer/Drawer.js";
18
- import { EmptyStateDataDisplay as O } from "./EmptyStateDataDisplay/EmptyStateDataDisplay.js";
19
- import { FeedbackBar as H } from "./FeedbackBar/FeedbackBar.js";
20
- import { FeedbackBox as N } from "./FeedbackBox/FeedbackBox.js";
21
- import { FieldHint as j } from "./FieldHint/FieldHint.js";
22
- import { Fieldset as J } from "./Fieldset/Fieldset.js";
23
- import { FormField as Q } from "./FormField/FormField.js";
24
- import { FormInput as W } from "./FormInput/FormInput.js";
25
- import { GridRow as Y } from "./GridRow/GridRow.js";
26
- import { HorizontalList as _ } from "./HorizontalList/HorizontalList.js";
27
- import { Icon as oo } from "./Icon/Icon.js";
28
- import { IconButton as to } from "./IconButton/IconButton.js";
29
- import { InfoMessage as po } from "./InfoMessage/InfoMessage.js";
30
- import { Input as mo } from "./Input/Input.js";
31
- import { InputField as ao } from "./InputField/InputField.js";
32
- import { Label as no } from "./Label/Label.js";
33
- import { MenuLink as co } from "./MenuLink/MenuLink.js";
34
- import { MetaDataList as Bo } from "./MetaDataList/MetaDataList.js";
35
- import { ModalDialog as So } from "./ModalDialog/ModalDialog.js";
36
- import { M as Co } from "../TablePlugin-Bj5FObQ_.js";
37
- import { MultiSelectBox as Fo } from "./MultiSelectBox/MultiSelectBox.js";
38
- import { OverlayCloseButton as go } from "./OverlayCloseButton/OverlayCloseButton.js";
39
- import { OverlayStepBar as Lo } from "./OverlayStepBar/OverlayStepBar.js";
40
- import { PageOverlay as Ao } from "./PageOverlay/PageOverlay.js";
41
- import { Periods as ho } from "./Periods/Periods.js";
42
- import { PeriodSelector as Do } from "./PeriodSelector/PeriodSelector.js";
43
- import { ProgrammeCard as vo } from "./ProgrammeCard/ProgrammeCard.js";
44
- import { RadioButton as Go } from "./RadioButton/RadioButton.js";
45
- import { RadioGroup as Eo } from "./RadioGroup/RadioGroup.js";
46
- import { RadioTabSelector as zo } from "./RadioTabSelector/RadioTabSelector.js";
47
- import { Repeater as Vo } from "./Repeater/Repeater.js";
48
- import { Rte as qo, RteEditor as Jo } from "./RteEditor/RteEditor.js";
49
- import { SectionNotification as Qo } from "./SectionNotification/SectionNotification.js";
50
- import { SelectListbox as Wo } from "./SelectListbox/SelectListbox.js";
51
- import { SelectProvider as Yo, useSelect as Zo } from "./SelectListbox/SelectProvider.js";
52
- import { Sortable as $o } from "./Sortable/Sortable.js";
53
- import { Spinner as rr } from "./Spinner/Spinner.js";
54
- import { StatusBadge as er } from "./StatusBadge/StatusBage.js";
55
- import { StatusPill as xr } from "./StatusPill/StatusPill.js";
56
- import { TextArea as fr } from "./TextArea/TextArea.js";
57
- import { ToggleSwitch as ir } from "./ToggleSwitch/ToggleSwitch.js";
58
- import { Tooltip as lr } from "./Tooltip/Tooltip.js";
59
- import { VarIndicator as dr } from "./VarIndicator/VarIndicator.js";
18
+ import { EmptyStateDataDisplay as G } from "./EmptyStateDataDisplay/EmptyStateDataDisplay.js";
19
+ import { ExpandableInfoPanel as H } from "./ExpandableInfoPanel/ExpandableInfoPanel.js";
20
+ import { FeedbackBar as N } from "./FeedbackBar/FeedbackBar.js";
21
+ import { FeedbackBox as j } from "./FeedbackBox/FeedbackBox.js";
22
+ import { FieldHint as J } from "./FieldHint/FieldHint.js";
23
+ import { Fieldset as Q } from "./Fieldset/Fieldset.js";
24
+ import { FormField as W } from "./FormField/FormField.js";
25
+ import { FormInput as Y } from "./FormInput/FormInput.js";
26
+ import { GridRow as _ } from "./GridRow/GridRow.js";
27
+ import { HorizontalList as oo } from "./HorizontalList/HorizontalList.js";
28
+ import { Icon as to } from "./Icon/Icon.js";
29
+ import { IconButton as po } from "./IconButton/IconButton.js";
30
+ import { InfoBanner as mo } from "./InfoBanner/InfoBanner.js";
31
+ import { InfoMessage as ao } from "./InfoMessage/InfoMessage.js";
32
+ import { Input as no } from "./Input/Input.js";
33
+ import { InputField as co } from "./InputField/InputField.js";
34
+ import { Label as Bo } from "./Label/Label.js";
35
+ import { MenuLink as So } from "./MenuLink/MenuLink.js";
36
+ import { MetaDataList as Co } from "./MetaDataList/MetaDataList.js";
37
+ import { ModalDialog as ko } from "./ModalDialog/ModalDialog.js";
38
+ import { M as Mo } from "../TablePlugin-Bj5FObQ_.js";
39
+ import { MultiSelectBox as Lo } from "./MultiSelectBox/MultiSelectBox.js";
40
+ import { OverlayCloseButton as Ro } from "./OverlayCloseButton/OverlayCloseButton.js";
41
+ import { OverlayStepBar as ho } from "./OverlayStepBar/OverlayStepBar.js";
42
+ import { PageOverlay as Do } from "./PageOverlay/PageOverlay.js";
43
+ import { Periods as vo } from "./Periods/Periods.js";
44
+ import { PeriodSelector as Eo } from "./PeriodSelector/PeriodSelector.js";
45
+ import { ProgrammeCard as Oo } from "./ProgrammeCard/ProgrammeCard.js";
46
+ import { RadioButton as zo } from "./RadioButton/RadioButton.js";
47
+ import { RadioGroup as Vo } from "./RadioGroup/RadioGroup.js";
48
+ import { RadioTabSelector as qo } from "./RadioTabSelector/RadioTabSelector.js";
49
+ import { Repeater as Ko } from "./Repeater/Repeater.js";
50
+ import { Rte as Uo, RteEditor as Wo } from "./RteEditor/RteEditor.js";
51
+ import { SectionNotification as Yo } from "./SectionNotification/SectionNotification.js";
52
+ import { SelectListbox as _o } from "./SelectListbox/SelectListbox.js";
53
+ import { SelectProvider as or, useSelect as rr } from "./SelectListbox/SelectProvider.js";
54
+ import { Sortable as er } from "./Sortable/Sortable.js";
55
+ import { Spinner as xr } from "./Spinner/Spinner.js";
56
+ import { StatusBadge as fr } from "./StatusBadge/StatusBage.js";
57
+ import { StatusPill as ir } from "./StatusPill/StatusPill.js";
58
+ import { TextArea as lr } from "./TextArea/TextArea.js";
59
+ import { ToggleSwitch as dr } from "./ToggleSwitch/ToggleSwitch.js";
60
+ import { Tooltip as Br } from "./Tooltip/Tooltip.js";
61
+ import { VarIndicator as Sr } from "./VarIndicator/VarIndicator.js";
60
62
  export {
61
63
  t as Accordion,
62
64
  p as AccordionCard,
@@ -66,58 +68,60 @@ export {
66
68
  c as Backdrop,
67
69
  s as Button,
68
70
  u as ButtonGroup,
69
- M as Card,
70
- I as Checkbox,
71
- R as CheckboxButtonBar,
72
- P as CheckboxTree,
71
+ F as Card,
72
+ g as Checkbox,
73
+ P as CheckboxButtonBar,
74
+ A as CheckboxTree,
73
75
  y as Chip,
74
76
  T as ControlsButton,
75
77
  w as Drawer,
76
- O as EmptyStateDataDisplay,
77
- H as FeedbackBar,
78
- N as FeedbackBox,
79
- j as FieldHint,
80
- J as Fieldset,
81
- Q as FormField,
82
- W as FormInput,
83
- Y as GridRow,
84
- _ as HorizontalList,
85
- oo as Icon,
86
- to as IconButton,
87
- po as InfoMessage,
88
- mo as Input,
89
- ao as InputField,
90
- no as Label,
78
+ G as EmptyStateDataDisplay,
79
+ H as ExpandableInfoPanel,
80
+ N as FeedbackBar,
81
+ j as FeedbackBox,
82
+ J as FieldHint,
83
+ Q as Fieldset,
84
+ W as FormField,
85
+ Y as FormInput,
86
+ _ as GridRow,
87
+ oo as HorizontalList,
88
+ to as Icon,
89
+ po as IconButton,
90
+ mo as InfoBanner,
91
+ ao as InfoMessage,
92
+ no as Input,
93
+ co as InputField,
94
+ Bo as Label,
91
95
  b as LinkButton,
92
- k as MenuButton,
93
- co as MenuLink,
94
- Bo as MetaDataList,
95
- So as ModalDialog,
96
- Co as MultiSelect,
97
- Fo as MultiSelectBox,
98
- go as OverlayCloseButton,
99
- Lo as OverlayStepBar,
100
- Ao as PageOverlay,
101
- Do as PeriodSelector,
102
- ho as Periods,
103
- vo as ProgrammeCard,
104
- Go as RadioButton,
105
- Eo as RadioGroup,
106
- zo as RadioTabSelector,
107
- Vo as Repeater,
108
- qo as Rte,
109
- Jo as RteEditor,
110
- Qo as SectionNotification,
111
- Wo as SelectListbox,
112
- Yo as SelectProvider,
113
- $o as Sortable,
114
- rr as Spinner,
115
- er as StatusBadge,
116
- xr as StatusPill,
117
- fr as TextArea,
118
- ir as ToggleSwitch,
119
- lr as Tooltip,
120
- dr as VarIndicator,
121
- Zo as useSelect
96
+ I as MenuButton,
97
+ So as MenuLink,
98
+ Co as MetaDataList,
99
+ ko as ModalDialog,
100
+ Mo as MultiSelect,
101
+ Lo as MultiSelectBox,
102
+ Ro as OverlayCloseButton,
103
+ ho as OverlayStepBar,
104
+ Do as PageOverlay,
105
+ Eo as PeriodSelector,
106
+ vo as Periods,
107
+ Oo as ProgrammeCard,
108
+ zo as RadioButton,
109
+ Vo as RadioGroup,
110
+ qo as RadioTabSelector,
111
+ Ko as Repeater,
112
+ Uo as Rte,
113
+ Wo as RteEditor,
114
+ Yo as SectionNotification,
115
+ _o as SelectListbox,
116
+ or as SelectProvider,
117
+ er as Sortable,
118
+ xr as Spinner,
119
+ fr as StatusBadge,
120
+ ir as StatusPill,
121
+ lr as TextArea,
122
+ dr as ToggleSwitch,
123
+ Br as Tooltip,
124
+ Sr as VarIndicator,
125
+ rr as useSelect
122
126
  };
123
127
  //# 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
@@ -7,56 +7,58 @@ import { Backdrop as c } from "./components/Backdrop/Backdrop.js";
7
7
  import { ButtonGroup as u } from "./components/ButtonGroup/ButtonGroup.js";
8
8
  import { Button as s } from "./components/Buttons/Button.js";
9
9
  import { LinkButton as b } from "./components/Buttons/LinkButton.js";
10
- import { MenuButton as k } from "./components/Buttons/MenuButton.js";
11
- import { Card as M } from "./components/Card/Card.js";
12
- import { Checkbox as I } from "./components/Checkbox/Checkbox.js";
13
- import { CheckboxButtonBar as R } from "./components/CheckboxButtonBar/CheckboxButtonBar.js";
14
- import { CheckboxTree as P } from "./components/CheckboxTree/CheckboxTree.js";
10
+ import { MenuButton as I } from "./components/Buttons/MenuButton.js";
11
+ import { Card as F } from "./components/Card/Card.js";
12
+ import { Checkbox as g } from "./components/Checkbox/Checkbox.js";
13
+ import { CheckboxButtonBar as P } from "./components/CheckboxButtonBar/CheckboxButtonBar.js";
14
+ import { CheckboxTree as A } from "./components/CheckboxTree/CheckboxTree.js";
15
15
  import { Chip as y } from "./components/Chip/Chip.js";
16
16
  import { ControlsButton as T } from "./components/ControlsButton/ControlsButton.js";
17
17
  import { Drawer as w } from "./components/Drawer/Drawer.js";
18
- import { EmptyStateDataDisplay as O } from "./components/EmptyStateDataDisplay/EmptyStateDataDisplay.js";
19
- import { FeedbackBar as H } from "./components/FeedbackBar/FeedbackBar.js";
20
- import { FeedbackBox as N } from "./components/FeedbackBox/FeedbackBox.js";
21
- import { FieldHint as j } from "./components/FieldHint/FieldHint.js";
22
- import { Fieldset as J } from "./components/Fieldset/Fieldset.js";
23
- import { FormField as Q } from "./components/FormField/FormField.js";
24
- import { FormInput as W } from "./components/FormInput/FormInput.js";
25
- import { GridRow as Y } from "./components/GridRow/GridRow.js";
26
- import { HorizontalList as _ } from "./components/HorizontalList/HorizontalList.js";
27
- import { Icon as oo } from "./components/Icon/Icon.js";
28
- import { IconButton as to } from "./components/IconButton/IconButton.js";
29
- import { InfoMessage as po } from "./components/InfoMessage/InfoMessage.js";
30
- import { Input as mo } from "./components/Input/Input.js";
31
- import { InputField as ao } from "./components/InputField/InputField.js";
32
- import { Label as no } from "./components/Label/Label.js";
33
- import { MenuLink as co } from "./components/MenuLink/MenuLink.js";
34
- import { MetaDataList as Bo } from "./components/MetaDataList/MetaDataList.js";
35
- import { ModalDialog as So } from "./components/ModalDialog/ModalDialog.js";
36
- import { M as Co } from "./TablePlugin-Bj5FObQ_.js";
37
- import { MultiSelectBox as Fo } from "./components/MultiSelectBox/MultiSelectBox.js";
38
- import { OverlayCloseButton as go } from "./components/OverlayCloseButton/OverlayCloseButton.js";
39
- import { OverlayStepBar as Lo } from "./components/OverlayStepBar/OverlayStepBar.js";
40
- import { PageOverlay as Ao } from "./components/PageOverlay/PageOverlay.js";
41
- import { Periods as ho } from "./components/Periods/Periods.js";
42
- import { PeriodSelector as Do } from "./components/PeriodSelector/PeriodSelector.js";
43
- import { ProgrammeCard as vo } from "./components/ProgrammeCard/ProgrammeCard.js";
44
- import { RadioButton as Go } from "./components/RadioButton/RadioButton.js";
45
- import { RadioGroup as Eo } from "./components/RadioGroup/RadioGroup.js";
46
- import { RadioTabSelector as zo } from "./components/RadioTabSelector/RadioTabSelector.js";
47
- import { Repeater as Vo } from "./components/Repeater/Repeater.js";
48
- import { Rte as qo, RteEditor as Jo } from "./components/RteEditor/RteEditor.js";
49
- import { SectionNotification as Qo } from "./components/SectionNotification/SectionNotification.js";
50
- import { SelectListbox as Wo } from "./components/SelectListbox/SelectListbox.js";
51
- import { SelectProvider as Yo, useSelect as Zo } from "./components/SelectListbox/SelectProvider.js";
52
- import { Sortable as $o } from "./components/Sortable/Sortable.js";
53
- import { Spinner as rr } from "./components/Spinner/Spinner.js";
54
- import { StatusBadge as er } from "./components/StatusBadge/StatusBage.js";
55
- import { StatusPill as xr } from "./components/StatusPill/StatusPill.js";
56
- import { TextArea as fr } from "./components/TextArea/TextArea.js";
57
- import { ToggleSwitch as ir } from "./components/ToggleSwitch/ToggleSwitch.js";
58
- import { Tooltip as lr } from "./components/Tooltip/Tooltip.js";
59
- import { VarIndicator as dr } from "./components/VarIndicator/VarIndicator.js";
18
+ import { EmptyStateDataDisplay as G } from "./components/EmptyStateDataDisplay/EmptyStateDataDisplay.js";
19
+ import { ExpandableInfoPanel as H } from "./components/ExpandableInfoPanel/ExpandableInfoPanel.js";
20
+ import { FeedbackBar as N } from "./components/FeedbackBar/FeedbackBar.js";
21
+ import { FeedbackBox as j } from "./components/FeedbackBox/FeedbackBox.js";
22
+ import { FieldHint as J } from "./components/FieldHint/FieldHint.js";
23
+ import { Fieldset as Q } from "./components/Fieldset/Fieldset.js";
24
+ import { FormField as W } from "./components/FormField/FormField.js";
25
+ import { FormInput as Y } from "./components/FormInput/FormInput.js";
26
+ import { GridRow as _ } from "./components/GridRow/GridRow.js";
27
+ import { HorizontalList as oo } from "./components/HorizontalList/HorizontalList.js";
28
+ import { Icon as to } from "./components/Icon/Icon.js";
29
+ import { IconButton as po } from "./components/IconButton/IconButton.js";
30
+ import { InfoBanner as mo } from "./components/InfoBanner/InfoBanner.js";
31
+ import { InfoMessage as ao } from "./components/InfoMessage/InfoMessage.js";
32
+ import { Input as no } from "./components/Input/Input.js";
33
+ import { InputField as co } from "./components/InputField/InputField.js";
34
+ import { Label as Bo } from "./components/Label/Label.js";
35
+ import { MenuLink as So } from "./components/MenuLink/MenuLink.js";
36
+ import { MetaDataList as Co } from "./components/MetaDataList/MetaDataList.js";
37
+ import { ModalDialog as ko } from "./components/ModalDialog/ModalDialog.js";
38
+ import { M as Mo } from "./TablePlugin-Bj5FObQ_.js";
39
+ import { MultiSelectBox as Lo } from "./components/MultiSelectBox/MultiSelectBox.js";
40
+ import { OverlayCloseButton as Ro } from "./components/OverlayCloseButton/OverlayCloseButton.js";
41
+ import { OverlayStepBar as ho } from "./components/OverlayStepBar/OverlayStepBar.js";
42
+ import { PageOverlay as Do } from "./components/PageOverlay/PageOverlay.js";
43
+ import { Periods as vo } from "./components/Periods/Periods.js";
44
+ import { PeriodSelector as Eo } from "./components/PeriodSelector/PeriodSelector.js";
45
+ import { ProgrammeCard as Oo } from "./components/ProgrammeCard/ProgrammeCard.js";
46
+ import { RadioButton as zo } from "./components/RadioButton/RadioButton.js";
47
+ import { RadioGroup as Vo } from "./components/RadioGroup/RadioGroup.js";
48
+ import { RadioTabSelector as qo } from "./components/RadioTabSelector/RadioTabSelector.js";
49
+ import { Repeater as Ko } from "./components/Repeater/Repeater.js";
50
+ import { Rte as Uo, RteEditor as Wo } from "./components/RteEditor/RteEditor.js";
51
+ import { SectionNotification as Yo } from "./components/SectionNotification/SectionNotification.js";
52
+ import { SelectListbox as _o } from "./components/SelectListbox/SelectListbox.js";
53
+ import { SelectProvider as or, useSelect as rr } from "./components/SelectListbox/SelectProvider.js";
54
+ import { Sortable as er } from "./components/Sortable/Sortable.js";
55
+ import { Spinner as xr } from "./components/Spinner/Spinner.js";
56
+ import { StatusBadge as fr } from "./components/StatusBadge/StatusBage.js";
57
+ import { StatusPill as ir } from "./components/StatusPill/StatusPill.js";
58
+ import { TextArea as lr } from "./components/TextArea/TextArea.js";
59
+ import { ToggleSwitch as dr } from "./components/ToggleSwitch/ToggleSwitch.js";
60
+ import { Tooltip as Br } from "./components/Tooltip/Tooltip.js";
61
+ import { VarIndicator as Sr } from "./components/VarIndicator/VarIndicator.js";
60
62
  export {
61
63
  t as Accordion,
62
64
  p as AccordionCard,
@@ -66,58 +68,60 @@ export {
66
68
  c as Backdrop,
67
69
  s as Button,
68
70
  u as ButtonGroup,
69
- M as Card,
70
- I as Checkbox,
71
- R as CheckboxButtonBar,
72
- P as CheckboxTree,
71
+ F as Card,
72
+ g as Checkbox,
73
+ P as CheckboxButtonBar,
74
+ A as CheckboxTree,
73
75
  y as Chip,
74
76
  T as ControlsButton,
75
77
  w as Drawer,
76
- O as EmptyStateDataDisplay,
77
- H as FeedbackBar,
78
- N as FeedbackBox,
79
- j as FieldHint,
80
- J as Fieldset,
81
- Q as FormField,
82
- W as FormInput,
83
- Y as GridRow,
84
- _ as HorizontalList,
85
- oo as Icon,
86
- to as IconButton,
87
- po as InfoMessage,
88
- mo as Input,
89
- ao as InputField,
90
- no as Label,
78
+ G as EmptyStateDataDisplay,
79
+ H as ExpandableInfoPanel,
80
+ N as FeedbackBar,
81
+ j as FeedbackBox,
82
+ J as FieldHint,
83
+ Q as Fieldset,
84
+ W as FormField,
85
+ Y as FormInput,
86
+ _ as GridRow,
87
+ oo as HorizontalList,
88
+ to as Icon,
89
+ po as IconButton,
90
+ mo as InfoBanner,
91
+ ao as InfoMessage,
92
+ no as Input,
93
+ co as InputField,
94
+ Bo as Label,
91
95
  b as LinkButton,
92
- k as MenuButton,
93
- co as MenuLink,
94
- Bo as MetaDataList,
95
- So as ModalDialog,
96
- Co as MultiSelect,
97
- Fo as MultiSelectBox,
98
- go as OverlayCloseButton,
99
- Lo as OverlayStepBar,
100
- Ao as PageOverlay,
101
- Do as PeriodSelector,
102
- ho as Periods,
103
- vo as ProgrammeCard,
104
- Go as RadioButton,
105
- Eo as RadioGroup,
106
- zo as RadioTabSelector,
107
- Vo as Repeater,
108
- qo as Rte,
109
- Jo as RteEditor,
110
- Qo as SectionNotification,
111
- Wo as SelectListbox,
112
- Yo as SelectProvider,
113
- $o as Sortable,
114
- rr as Spinner,
115
- er as StatusBadge,
116
- xr as StatusPill,
117
- fr as TextArea,
118
- ir as ToggleSwitch,
119
- lr as Tooltip,
120
- dr as VarIndicator,
121
- Zo as useSelect
96
+ I as MenuButton,
97
+ So as MenuLink,
98
+ Co as MetaDataList,
99
+ ko as ModalDialog,
100
+ Mo as MultiSelect,
101
+ Lo as MultiSelectBox,
102
+ Ro as OverlayCloseButton,
103
+ ho as OverlayStepBar,
104
+ Do as PageOverlay,
105
+ Eo as PeriodSelector,
106
+ vo as Periods,
107
+ Oo as ProgrammeCard,
108
+ zo as RadioButton,
109
+ Vo as RadioGroup,
110
+ qo as RadioTabSelector,
111
+ Ko as Repeater,
112
+ Uo as Rte,
113
+ Wo as RteEditor,
114
+ Yo as SectionNotification,
115
+ _o as SelectListbox,
116
+ or as SelectProvider,
117
+ er as Sortable,
118
+ xr as Spinner,
119
+ fr as StatusBadge,
120
+ ir as StatusPill,
121
+ lr as TextArea,
122
+ dr as ToggleSwitch,
123
+ Br as Tooltip,
124
+ Sr as VarIndicator,
125
+ rr as useSelect
122
126
  };
123
127
  //# 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": "3.23.0",
5
+ "version": "3.25.0",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -69,7 +69,7 @@
69
69
  "@types/react": "^19.1.5",
70
70
  "@uva-glass/eslint-config": "^1.3.10",
71
71
  "@uva-glass/stylelint-config": "^1.2.2",
72
- "@vitejs/plugin-react": "^4.4.1",
72
+ "@vitejs/plugin-react": "^4.5.0",
73
73
  "babel-jest": "^29.7.0",
74
74
  "babel-plugin-transform-vite-meta-env": "^1.0.3",
75
75
  "clsx": "^2.1.1",
@@ -81,11 +81,11 @@
81
81
  "jest-environment-jsdom": "^29.7.0",
82
82
  "jest-junit": "^16.0.0",
83
83
  "jsdom": "^26.1.0",
84
- "npm-run-all2": "^8.0.3",
84
+ "npm-run-all2": "^8.0.4",
85
85
  "react": "^19.1.0",
86
86
  "react-dom": "^19.1.0",
87
- "react-router": "^7.6.0",
88
- "semantic-release": "^24.2.4",
87
+ "react-router": "^7.6.1",
88
+ "semantic-release": "^24.2.5",
89
89
  "storybook": "^8.6.14",
90
90
  "style-dictionary": "^5.0.0",
91
91
  "stylelint": "^16.19.1",
@@ -112,7 +112,7 @@
112
112
  "lexical": "^0.31.2"
113
113
  },
114
114
  "optionalDependencies": {
115
- "@rollup/rollup-linux-x64-gnu": "^4.41.0",
115
+ "@rollup/rollup-linux-x64-gnu": "^4.41.1",
116
116
  "@rspack/binding-darwin-arm64": "1.3.11",
117
117
  "@rspack/binding-linux-x64-gnu": "1.3.11",
118
118
  "@ast-grep/napi-linux-x64-gnu": "0.38.2"