@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.
- package/dist/assets/ExpandableInfoPanel.css +1 -0
- package/dist/assets/InfoBanner.css +1 -0
- package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.d.ts +14 -0
- package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.js +50 -0
- package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.js.map +1 -0
- package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.stories.d.ts +5 -0
- package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.stories.js +31 -0
- package/dist/components/ExpandableInfoPanel/ExpandableInfoPanel.stories.js.map +1 -0
- package/dist/components/ExpandableInfoPanel/index.d.ts +1 -0
- package/dist/components/ExpandableInfoPanel/index.js +5 -0
- package/dist/components/ExpandableInfoPanel/index.js.map +1 -0
- package/dist/components/Icon/icons/index.d.ts +12 -0
- package/dist/components/Icon/icons/index.js +179 -169
- package/dist/components/Icon/icons/index.js.map +1 -1
- package/dist/components/InfoBanner/InfoBanner.d.ts +9 -0
- package/dist/components/InfoBanner/InfoBanner.js +12 -0
- package/dist/components/InfoBanner/InfoBanner.js.map +1 -0
- package/dist/components/InfoBanner/InfoBanner.stories.d.ts +5 -0
- package/dist/components/InfoBanner/InfoBanner.stories.js +23 -0
- package/dist/components/InfoBanner/InfoBanner.stories.js.map +1 -0
- package/dist/components/InfoBanner/index.d.ts +1 -0
- package/dist/components/InfoBanner/index.js +5 -0
- package/dist/components/InfoBanner/index.js.map +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +100 -96
- package/dist/components/index.js.map +1 -1
- package/dist/index.js +100 -96
- package/dist/index.js.map +1 -1
- 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 @@
|
|
|
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';
|
package/dist/components/index.js
CHANGED
|
@@ -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
|
|
11
|
-
import { Card as
|
|
12
|
-
import { Checkbox as
|
|
13
|
-
import { CheckboxButtonBar as
|
|
14
|
-
import { CheckboxTree as
|
|
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
|
|
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 {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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
|
-
|
|
77
|
-
H as
|
|
78
|
-
N as
|
|
79
|
-
j as
|
|
80
|
-
J as
|
|
81
|
-
Q as
|
|
82
|
-
W as
|
|
83
|
-
Y as
|
|
84
|
-
_ as
|
|
85
|
-
oo as
|
|
86
|
-
to as
|
|
87
|
-
po as
|
|
88
|
-
mo as
|
|
89
|
-
ao as
|
|
90
|
-
no as
|
|
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
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
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
|
|
11
|
-
import { Card as
|
|
12
|
-
import { Checkbox as
|
|
13
|
-
import { CheckboxButtonBar as
|
|
14
|
-
import { CheckboxTree as
|
|
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
|
|
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 {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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
|
-
|
|
77
|
-
H as
|
|
78
|
-
N as
|
|
79
|
-
j as
|
|
80
|
-
J as
|
|
81
|
-
Q as
|
|
82
|
-
W as
|
|
83
|
-
Y as
|
|
84
|
-
_ as
|
|
85
|
-
oo as
|
|
86
|
-
to as
|
|
87
|
-
po as
|
|
88
|
-
mo as
|
|
89
|
-
ao as
|
|
90
|
-
no as
|
|
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
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
88
|
-
"semantic-release": "^24.2.
|
|
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.
|
|
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"
|