@uva-glass/component-library 1.44.0 → 1.45.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.
@@ -0,0 +1 @@
1
+ ._feedback-box_lzc6j_1{background-color:var(--color-white);display:flex;gap:.5rem;padding:.75rem 1rem .75rem .5rem}._feedback-box_lzc6j_1>svg{flex-shrink:0;height:1rem;width:1rem;margin-top:.25rem}._feedback-box__success_lzc6j_15{background-color:var(--color-mint-cream)}._feedback-box__warning_lzc6j_19{background-color:var(--color-natural-wood)}._feedback-box__error_lzc6j_23{background-color:var(--color-amour)}
@@ -0,0 +1,8 @@
1
+ type FeedbackLevel = 'success' | 'warning' | 'error';
2
+ export interface FeedbackBoxProps {
3
+ id?: string;
4
+ level: FeedbackLevel;
5
+ feedback: string;
6
+ }
7
+ export declare const FeedbackBox: ({ id, level, feedback }: FeedbackBoxProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,31 @@
1
+ import { jsxs as r, jsx as s } from "react/jsx-runtime";
2
+ import { c as a } from "../../clsx-OuTLNxxd.js";
3
+ import { Icon as b } from "../Icon/Icon.js";
4
+ import '../../assets/FeedbackBox.css';const e = {
5
+ "feedback-box": "_feedback-box_lzc6j_1",
6
+ "feedback-box__success": "_feedback-box__success_lzc6j_15",
7
+ "feedback-box__warning": "_feedback-box__warning_lzc6j_19",
8
+ "feedback-box__error": "_feedback-box__error_lzc6j_23"
9
+ }, n = {
10
+ success: "CheckCircle",
11
+ warning: "ExclamationTriangleMini",
12
+ error: "ExclamationCircle"
13
+ }, f = ({ id: _, level: c, feedback: o }) => /* @__PURE__ */ r(
14
+ "div",
15
+ {
16
+ className: a(e["feedback-box"], {
17
+ [e["feedback-box__success"]]: c === "success",
18
+ [e["feedback-box__warning"]]: c === "warning",
19
+ [e["feedback-box__error"]]: c === "error"
20
+ }),
21
+ id: _,
22
+ children: [
23
+ /* @__PURE__ */ s(b, { name: n[c], size: 16 }),
24
+ o
25
+ ]
26
+ }
27
+ );
28
+ export {
29
+ f as FeedbackBox
30
+ };
31
+ //# sourceMappingURL=FeedbackBox.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FeedbackBox.js","sources":["../../../src/components/FeedbackBox/FeedbackBox.tsx"],"sourcesContent":["import { clsx } from 'clsx';\n\nimport type { IconProps } from 'components/Icon';\n\nimport styles from './FeedbackBox.module.css';\n\nimport { Icon } from 'components/Icon';\n\ntype FeedbackLevel = 'success' | 'warning' | 'error';\n\nconst LEVEL_ICON_MAP: Record<FeedbackLevel, IconProps['name']> = {\n success: 'CheckCircle',\n warning: 'ExclamationTriangleMini',\n error: 'ExclamationCircle',\n};\n\nexport interface FeedbackBoxProps {\n id?: string;\n level: FeedbackLevel;\n feedback: string;\n}\n\nexport const FeedbackBox = ({ id, level, feedback }: FeedbackBoxProps) => (\n <div\n className={clsx(styles['feedback-box'], {\n [styles['feedback-box__success']]: level === 'success',\n [styles['feedback-box__warning']]: level === 'warning',\n [styles['feedback-box__error']]: level === 'error',\n })}\n id={id}\n >\n <Icon name={LEVEL_ICON_MAP[level]} size={16} />\n {feedback}\n </div>\n);\n"],"names":["LEVEL_ICON_MAP","FeedbackBox","id","level","feedback","jsxs","clsx","styles","jsx","Icon"],"mappings":";;;;;;;;GAUMA,IAA2D;AAAA,EAC/D,SAAS;AAAA,EACT,SAAS;AAAA,EACT,OAAO;AACT,GAQaC,IAAc,CAAC,EAAE,IAAAC,GAAI,OAAAC,GAAO,UAAAC,EACvC,MAAA,gBAAAC;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,WAAWC,EAAKC,EAAO,cAAc,GAAG;AAAA,MACtC,CAACA,EAAO,uBAAuB,CAAC,GAAGJ,MAAU;AAAA,MAC7C,CAACI,EAAO,uBAAuB,CAAC,GAAGJ,MAAU;AAAA,MAC7C,CAACI,EAAO,qBAAqB,CAAC,GAAGJ,MAAU;AAAA,IAAA,CAC5C;AAAA,IACD,IAAAD;AAAA,IAEA,UAAA;AAAA,MAAA,gBAAAM,EAACC,KAAK,MAAMT,EAAeG,CAAK,GAAG,MAAM,IAAI;AAAA,MAC5CC;AAAA,IAAA;AAAA,EAAA;AACH;"}
@@ -0,0 +1,5 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { FeedbackBoxProps } from './FeedbackBox';
3
+ declare const _default: Meta<FeedbackBoxProps>;
4
+ export default _default;
5
+ export declare const FeedbackBoxExample: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, FeedbackBoxProps>;
@@ -0,0 +1,17 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import { FeedbackBox as o } from "./FeedbackBox.js";
3
+ import { Container as a } from "../storyComponents/Container/Container.js";
4
+ const m = {
5
+ title: "Molecules/FeedbackBox",
6
+ component: o
7
+ }, c = (t) => /* @__PURE__ */ e(a, { children: /* @__PURE__ */ e(o, { ...t }) }), d = c.bind({});
8
+ d.args = {
9
+ id: "gba0d2d4",
10
+ level: "success",
11
+ feedback: "Example FeedbackBox text"
12
+ };
13
+ export {
14
+ d as FeedbackBoxExample,
15
+ m as default
16
+ };
17
+ //# sourceMappingURL=FeedbackBox.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FeedbackBox.stories.js","sources":["../../../src/components/FeedbackBox/FeedbackBox.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { FeedbackBoxProps } from './FeedbackBox';\n\nimport { FeedbackBox } from './FeedbackBox';\n\nimport { Container } from 'components/storyComponents/Container';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Molecules/FeedbackBox',\n component: FeedbackBox,\n} as Meta<FeedbackBoxProps>;\n\nconst Template: StoryFn<FeedbackBoxProps> = (args) => (\n <Container>\n <FeedbackBox {...args} />\n </Container>\n);\n\nexport const FeedbackBoxExample = Template.bind({});\nFeedbackBoxExample.args = {\n id: 'gba0d2d4',\n level: 'success',\n feedback: 'Example FeedbackBox text',\n};\n"],"names":["FeedbackBox_stories","FeedbackBox","Template","args","jsx","Container","FeedbackBoxExample"],"mappings":";;;AAQA,MAAeA,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AACb,GAEMC,IAAsC,CAACC,MAC3C,gBAAAC,EAACC,KACC,UAAC,gBAAAD,EAAAH,GAAA,EAAa,GAAGE,EAAM,CAAA,EACzB,CAAA,GAGWG,IAAqBJ,EAAS,KAAK,EAAE;AAClDI,EAAmB,OAAO;AAAA,EACxB,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,UAAU;AACZ;"}
@@ -0,0 +1 @@
1
+ export * from './FeedbackBox';
@@ -0,0 +1,5 @@
1
+ import { FeedbackBox as r } from "./FeedbackBox.js";
2
+ export {
3
+ r as FeedbackBox
4
+ };
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -9,6 +9,7 @@ export * from './Card';
9
9
  export * from './Checkbox';
10
10
  export * from './Drawer';
11
11
  export * from './EmptyStateDataDisplay';
12
+ export * from './FeedbackBox';
12
13
  export * from './FieldHint';
13
14
  export * from './Fieldset';
14
15
  export * from './FormField';
@@ -1,80 +1,82 @@
1
1
  import { Accordion as t } from "./Accordion/Accordion.js";
2
2
  import { ActionList as p } from "./ActionList/ActionList.js";
3
- import { AppStatusBar as f } from "./AppStatusBar/AppStatusBar.js";
3
+ import { AppStatusBar as x } from "./AppStatusBar/AppStatusBar.js";
4
4
  import { Attention as i } from "./Attention/Attention.js";
5
5
  import { Backdrop as n } from "./Backdrop/Backdrop.js";
6
6
  import { Button as u } from "./Button/Button.js";
7
- import { ButtonGroup as c } from "./ButtonGroup/ButtonGroup.js";
8
- import { Card as S } from "./Card/Card.js";
7
+ import { ButtonGroup as d } from "./ButtonGroup/ButtonGroup.js";
8
+ import { Card as B } from "./Card/Card.js";
9
9
  import { Checkbox as M } from "./Checkbox/Checkbox.js";
10
- import { Drawer as D } from "./Drawer/Drawer.js";
10
+ import { Drawer as L } from "./Drawer/Drawer.js";
11
11
  import { EmptyStateDataDisplay as I } from "./EmptyStateDataDisplay/EmptyStateDataDisplay.js";
12
+ import { FeedbackBox as k } from "./FeedbackBox/FeedbackBox.js";
12
13
  import { FieldHint as C } from "./FieldHint/FieldHint.js";
13
- import { Fieldset as b } from "./Fieldset/Fieldset.js";
14
- import { FormField as k } from "./FormField/FormField.js";
15
- import { GridRow as R } from "./GridRow/GridRow.js";
16
- import { HorizontalList as w } 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 N } from "./InfoMessage/InfoMessage.js";
20
- import { Input as T } from "./Input/Input.js";
21
- import { InputField as q } from "./InputField/InputField.js";
22
- import { Label as K } from "./Label/Label.js";
23
- import { MenuButton as U } from "./MenuButton/MenuButton.js";
24
- import { MenuLink as W } from "./MenuLink/MenuLink.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-B9JaIPXs.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 no } 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 Bo, useSelect as Mo } from "./SelectListbox/SelectProvider.js";
36
- import { Spinner as Do } from "./Spinner/Spinner.js";
37
- import { StatusPill as Io } from "./StatusPill/StatusPill.js";
14
+ import { Fieldset as g } from "./Fieldset/Fieldset.js";
15
+ import { FormField as R } from "./FormField/FormField.js";
16
+ import { GridRow as w } from "./GridRow/GridRow.js";
17
+ import { HorizontalList as H } from "./HorizontalList/HorizontalList.js";
18
+ import { Icon as z } from "./Icon/Icon.js";
19
+ import { IconButton as N } from "./IconButton/IconButton.js";
20
+ import { InfoMessage as T } from "./InfoMessage/InfoMessage.js";
21
+ import { Input as q } from "./Input/Input.js";
22
+ import { InputField as K } from "./InputField/InputField.js";
23
+ import { Label as U } from "./Label/Label.js";
24
+ import { MenuButton as W } from "./MenuButton/MenuButton.js";
25
+ import { MenuLink as Y } from "./MenuLink/MenuLink.js";
26
+ import { MetaDataList as _ } from "./MetaDataList/MetaDataList.js";
27
+ import { ModalDialog as oo } from "./ModalDialog/ModalDialog.js";
28
+ import { M as to } from "../MultiSelect-B9JaIPXs.js";
29
+ import { OverlayCloseButton as po } from "./OverlayCloseButton/OverlayCloseButton.js";
30
+ import { Periods as xo } from "./Periods/Periods.js";
31
+ import { ProgrammeCard as io } from "./ProgrammeCard/ProgrammeCard.js";
32
+ import { RadioButton as no } from "./RadioButton/RadioButton.js";
33
+ import { Repeater as uo } from "./Repeater/Repeater.js";
34
+ import { SectionNotification as so } from "./SectionNotification/SectionNotification.js";
35
+ import { SelectListbox as So } from "./SelectListbox/SelectListbox.js";
36
+ import { SelectProvider as Fo, useSelect as Lo } from "./SelectListbox/SelectProvider.js";
37
+ import { Spinner as Io } from "./Spinner/Spinner.js";
38
+ import { StatusPill as ko } from "./StatusPill/StatusPill.js";
38
39
  import { Tooltip as Co } from "./Tooltip/Tooltip.js";
39
40
  export {
40
41
  t as Accordion,
41
42
  p as ActionList,
42
- f as AppStatusBar,
43
+ x as AppStatusBar,
43
44
  i as Attention,
44
45
  n as Backdrop,
45
46
  u as Button,
46
- c as ButtonGroup,
47
- S as Card,
47
+ d as ButtonGroup,
48
+ B as Card,
48
49
  M as Checkbox,
49
- D as Drawer,
50
+ L as Drawer,
50
51
  I as EmptyStateDataDisplay,
52
+ k as FeedbackBox,
51
53
  C as FieldHint,
52
- b as Fieldset,
53
- k as FormField,
54
- R as GridRow,
55
- w as HorizontalList,
56
- H as Icon,
57
- z as IconButton,
58
- N as InfoMessage,
59
- T as Input,
60
- q 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
- no as Repeater,
72
- uo as SectionNotification,
73
- co as SelectListbox,
74
- Bo as SelectProvider,
75
- Do as Spinner,
76
- Io as StatusPill,
54
+ g as Fieldset,
55
+ R as FormField,
56
+ w as GridRow,
57
+ H as HorizontalList,
58
+ z as Icon,
59
+ N as IconButton,
60
+ T as InfoMessage,
61
+ q as Input,
62
+ K as InputField,
63
+ U as Label,
64
+ W as MenuButton,
65
+ Y as MenuLink,
66
+ _ as MetaDataList,
67
+ oo as ModalDialog,
68
+ to as MultiSelect,
69
+ po as OverlayCloseButton,
70
+ xo as Periods,
71
+ io as ProgrammeCard,
72
+ no as RadioButton,
73
+ uo as Repeater,
74
+ so as SectionNotification,
75
+ So as SelectListbox,
76
+ Fo as SelectProvider,
77
+ Io as Spinner,
78
+ ko as StatusPill,
77
79
  Co as Tooltip,
78
- Mo as useSelect
80
+ Lo as useSelect
79
81
  };
80
82
  //# 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
@@ -1,80 +1,82 @@
1
1
  import { Accordion as t } from "./components/Accordion/Accordion.js";
2
2
  import { ActionList as p } from "./components/ActionList/ActionList.js";
3
- import { AppStatusBar as f } from "./components/AppStatusBar/AppStatusBar.js";
3
+ import { AppStatusBar as x } from "./components/AppStatusBar/AppStatusBar.js";
4
4
  import { Attention as i } from "./components/Attention/Attention.js";
5
5
  import { Backdrop as n } from "./components/Backdrop/Backdrop.js";
6
6
  import { Button as u } from "./components/Button/Button.js";
7
- import { ButtonGroup as c } from "./components/ButtonGroup/ButtonGroup.js";
8
- import { Card as S } from "./components/Card/Card.js";
7
+ import { ButtonGroup as d } from "./components/ButtonGroup/ButtonGroup.js";
8
+ import { Card as B } from "./components/Card/Card.js";
9
9
  import { Checkbox as M } from "./components/Checkbox/Checkbox.js";
10
- import { Drawer as D } from "./components/Drawer/Drawer.js";
10
+ import { Drawer as L } from "./components/Drawer/Drawer.js";
11
11
  import { EmptyStateDataDisplay as I } from "./components/EmptyStateDataDisplay/EmptyStateDataDisplay.js";
12
+ import { FeedbackBox as k } from "./components/FeedbackBox/FeedbackBox.js";
12
13
  import { FieldHint as C } from "./components/FieldHint/FieldHint.js";
13
- import { Fieldset as b } from "./components/Fieldset/Fieldset.js";
14
- import { FormField as k } from "./components/FormField/FormField.js";
15
- import { GridRow as R } from "./components/GridRow/GridRow.js";
16
- import { HorizontalList as w } 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 N } from "./components/InfoMessage/InfoMessage.js";
20
- import { Input as T } from "./components/Input/Input.js";
21
- import { InputField as q } 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 { MenuLink as W } from "./components/MenuLink/MenuLink.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-B9JaIPXs.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 no } 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 Bo, useSelect as Mo } from "./components/SelectListbox/SelectProvider.js";
36
- import { Spinner as Do } from "./components/Spinner/Spinner.js";
37
- import { StatusPill as Io } from "./components/StatusPill/StatusPill.js";
14
+ import { Fieldset as g } from "./components/Fieldset/Fieldset.js";
15
+ import { FormField as R } from "./components/FormField/FormField.js";
16
+ import { GridRow as w } from "./components/GridRow/GridRow.js";
17
+ import { HorizontalList as H } from "./components/HorizontalList/HorizontalList.js";
18
+ import { Icon as z } from "./components/Icon/Icon.js";
19
+ import { IconButton as N } from "./components/IconButton/IconButton.js";
20
+ import { InfoMessage as T } from "./components/InfoMessage/InfoMessage.js";
21
+ import { Input as q } from "./components/Input/Input.js";
22
+ import { InputField as K } from "./components/InputField/InputField.js";
23
+ import { Label as U } from "./components/Label/Label.js";
24
+ import { MenuButton as W } from "./components/MenuButton/MenuButton.js";
25
+ import { MenuLink as Y } from "./components/MenuLink/MenuLink.js";
26
+ import { MetaDataList as _ } from "./components/MetaDataList/MetaDataList.js";
27
+ import { ModalDialog as oo } from "./components/ModalDialog/ModalDialog.js";
28
+ import { M as to } from "./MultiSelect-B9JaIPXs.js";
29
+ import { OverlayCloseButton as po } from "./components/OverlayCloseButton/OverlayCloseButton.js";
30
+ import { Periods as xo } from "./components/Periods/Periods.js";
31
+ import { ProgrammeCard as io } from "./components/ProgrammeCard/ProgrammeCard.js";
32
+ import { RadioButton as no } from "./components/RadioButton/RadioButton.js";
33
+ import { Repeater as uo } from "./components/Repeater/Repeater.js";
34
+ import { SectionNotification as so } from "./components/SectionNotification/SectionNotification.js";
35
+ import { SelectListbox as So } from "./components/SelectListbox/SelectListbox.js";
36
+ import { SelectProvider as Fo, useSelect as Lo } from "./components/SelectListbox/SelectProvider.js";
37
+ import { Spinner as Io } from "./components/Spinner/Spinner.js";
38
+ import { StatusPill as ko } from "./components/StatusPill/StatusPill.js";
38
39
  import { Tooltip as Co } from "./components/Tooltip/Tooltip.js";
39
40
  export {
40
41
  t as Accordion,
41
42
  p as ActionList,
42
- f as AppStatusBar,
43
+ x as AppStatusBar,
43
44
  i as Attention,
44
45
  n as Backdrop,
45
46
  u as Button,
46
- c as ButtonGroup,
47
- S as Card,
47
+ d as ButtonGroup,
48
+ B as Card,
48
49
  M as Checkbox,
49
- D as Drawer,
50
+ L as Drawer,
50
51
  I as EmptyStateDataDisplay,
52
+ k as FeedbackBox,
51
53
  C as FieldHint,
52
- b as Fieldset,
53
- k as FormField,
54
- R as GridRow,
55
- w as HorizontalList,
56
- H as Icon,
57
- z as IconButton,
58
- N as InfoMessage,
59
- T as Input,
60
- q 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
- no as Repeater,
72
- uo as SectionNotification,
73
- co as SelectListbox,
74
- Bo as SelectProvider,
75
- Do as Spinner,
76
- Io as StatusPill,
54
+ g as Fieldset,
55
+ R as FormField,
56
+ w as GridRow,
57
+ H as HorizontalList,
58
+ z as Icon,
59
+ N as IconButton,
60
+ T as InfoMessage,
61
+ q as Input,
62
+ K as InputField,
63
+ U as Label,
64
+ W as MenuButton,
65
+ Y as MenuLink,
66
+ _ as MetaDataList,
67
+ oo as ModalDialog,
68
+ to as MultiSelect,
69
+ po as OverlayCloseButton,
70
+ xo as Periods,
71
+ io as ProgrammeCard,
72
+ no as RadioButton,
73
+ uo as Repeater,
74
+ so as SectionNotification,
75
+ So as SelectListbox,
76
+ Fo as SelectProvider,
77
+ Io as Spinner,
78
+ ko as StatusPill,
77
79
  Co as Tooltip,
78
- Mo as useSelect
80
+ Lo as useSelect
79
81
  };
80
82
  //# 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.44.0",
5
+ "version": "1.45.0",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -57,7 +57,7 @@
57
57
  "@storybook/react-vite": "^8.2.9",
58
58
  "@storybook/test": "^8.2.9",
59
59
  "@types/node": "^20.16.1",
60
- "@types/react": "^18.3.3",
60
+ "@types/react": "^18.3.4",
61
61
  "@types/react-dom": "^18.3.0",
62
62
  "@uva-glass/eslint-config": "^1.3.1",
63
63
  "@uva-glass/stylelint-config": "^1.1.0",
@@ -68,7 +68,7 @@
68
68
  "eslint-plugin-prettier": "^5.2.1",
69
69
  "eslint-plugin-react": "^7.35.0",
70
70
  "eslint-plugin-react-hooks": "^4.6.2",
71
- "eslint-plugin-react-refresh": "^0.4.9",
71
+ "eslint-plugin-react-refresh": "^0.4.10",
72
72
  "eslint-plugin-storybook": "^0.8.0",
73
73
  "glob": "^11.0.0",
74
74
  "jest": "^29.7.0",
@@ -87,7 +87,7 @@
87
87
  "stylelint-config-standard": "^36.0.1",
88
88
  "stylelint-order": "^6.0.4",
89
89
  "typescript": "^5.5.4",
90
- "vite": "^5.4.1",
90
+ "vite": "^5.4.2",
91
91
  "vite-plugin-dts": "^4.0.3",
92
92
  "vite-plugin-lib-inject-css": "^2.1.1",
93
93
  "vite-plugin-svgr": "^4.2.0",