@uva-glass/component-library 1.22.0 → 1.23.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
+ ._checkbox_lu7hj_1{accent-color:var(--color-black);height:1rem;margin:0;padding:0;width:1rem}
@@ -1 +1 @@
1
- .button-group{display:flex;gap:1rem;justify-content:flex-end}.button-group--reversed{flex-direction:row-reverse;justify-content:flex-start}.form-field{display:flex;flex-direction:column;gap:.5rem 1rem}.form-field--outerspace{margin:1.5rem 0}
1
+ .button-group{display:flex;gap:1rem;justify-content:flex-end}.button-group--reversed{flex-direction:row-reverse;justify-content:flex-start}
@@ -0,0 +1,4 @@
1
+ import { InputHTMLAttributes } from 'react';
2
+
3
+ export type CheckboxProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'className' | 'style' | 'type'>;
4
+ export declare const Checkbox: ({ ...restProps }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import '../../assets/Checkbox.css';const e = "_checkbox_lu7hj_1", s = {
3
+ checkbox: e
4
+ }, x = ({ ...c }) => /* @__PURE__ */ o("input", { ...c, type: "checkbox", className: s.checkbox });
5
+ export {
6
+ x as Checkbox
7
+ };
8
+ //# sourceMappingURL=Checkbox.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Checkbox.js","sources":["../../../src/components/Checkbox/Checkbox.tsx"],"sourcesContent":["import type { InputHTMLAttributes } from 'react';\n\nimport styles from './Checkbox.module.css';\n\nexport type CheckboxProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'className' | 'style' | 'type'>;\n\nexport const Checkbox = ({ ...restProps }: CheckboxProps) => (\n <input {...restProps} type=\"checkbox\" className={styles['checkbox']} />\n);\n"],"names":["Checkbox","restProps","jsx","styles"],"mappings":";;;GAMaA,IAAW,CAAC,EAAE,GAAGC,QAC5B,gBAAAC,EAAC,SAAO,EAAA,GAAGD,GAAW,MAAK,YAAW,WAAWE,EAAO,SAAa,CAAA;"}
@@ -0,0 +1,5 @@
1
+ import { CheckboxProps } from './Checkbox';
2
+
3
+ declare const _default: import('@storybook/types').ComponentAnnotations<import('@storybook/react').ReactRenderer, CheckboxProps>;
4
+ export default _default;
5
+ export declare const CheckboxExample: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, CheckboxProps>;
@@ -0,0 +1,20 @@
1
+ import { jsxs as t, jsx as o } from "react/jsx-runtime";
2
+ import { f as m } from "../../index-DFUrxrKJ.js";
3
+ import { Checkbox as e } from "./Checkbox.js";
4
+ import { FormField as i } from "../FormField/FormField.js";
5
+ import { Label as n } from "../Label/Label.js";
6
+ const h = {
7
+ title: "Atoms/Checkbox",
8
+ component: e
9
+ }, s = (r) => /* @__PURE__ */ t(i, { inline: !0, children: [
10
+ /* @__PURE__ */ o(e, { id: "72103b4d", ...r }),
11
+ /* @__PURE__ */ o(n, { htmlFor: "72103b4d", children: "Example Checkbox" })
12
+ ] }), c = s.bind({});
13
+ c.args = {
14
+ onChange: m()
15
+ };
16
+ export {
17
+ c as CheckboxExample,
18
+ h as default
19
+ };
20
+ //# sourceMappingURL=Checkbox.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Checkbox.stories.js","sources":["../../../src/components/Checkbox/Checkbox.stories.tsx"],"sourcesContent":["import { fn } from '@storybook/test';\n\nimport type { Meta, StoryFn } from '@storybook/react';\nimport type { CheckboxProps } from './Checkbox';\n\nimport { Checkbox } from './Checkbox';\n\nimport { FormField } from 'components/FormField';\nimport { Label } from 'components/Label';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Atoms/Checkbox',\n component: Checkbox,\n} as Meta<CheckboxProps>;\n\nconst Template: StoryFn<CheckboxProps> = (args) => (\n <FormField inline>\n <Checkbox id=\"72103b4d\" {...args} />\n <Label htmlFor=\"72103b4d\">Example Checkbox</Label>\n </FormField>\n);\n\nexport const CheckboxExample = Template.bind({});\nCheckboxExample.args = {\n onChange: fn(),\n};\n"],"names":["Checkbox_stories","Checkbox","Template","args","jsxs","FormField","jsx","Label","CheckboxExample","fn"],"mappings":";;;;;AAWA,MAAeA,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AACb,GAEMC,IAAmC,CAACC,MACvC,gBAAAC,EAAAC,GAAA,EAAU,QAAM,IACf,UAAA;AAAA,EAAA,gBAAAC,EAACL,GAAS,EAAA,IAAG,YAAY,GAAGE,EAAM,CAAA;AAAA,EACjC,gBAAAG,EAAAC,GAAA,EAAM,SAAQ,YAAW,UAAgB,oBAAA;AAAA,EAC5C,CAAA,GAGWC,IAAkBN,EAAS,KAAK,EAAE;AAC/CM,EAAgB,OAAO;AAAA,EACrB,UAAUC,EAAG;AACf;"}
@@ -0,0 +1 @@
1
+ export * from './Checkbox';
@@ -0,0 +1,5 @@
1
+ import { Checkbox as r } from "./Checkbox.js";
2
+ export {
3
+ r as Checkbox
4
+ };
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -1,12 +1,13 @@
1
- import { jsxs as l, jsx as e } from "react/jsx-runtime";
2
- import { M as t, $ as d } from "../../ModalDialog-yEr_JLht.js";
1
+ import { jsxs as t, jsx as e } from "react/jsx-runtime";
2
+ import { M as l, $ as d } from "../../ModalDialog-yEr_JLht.js";
3
3
  import { f as o } from "../../index-DFUrxrKJ.js";
4
4
  import { Button as a } from "../Button/Button.js";
5
- import { InputField as s } from "../InputField/InputField.js";
5
+ import { FormField as s } from "../FormField/FormField.js";
6
+ import { InputField as m } from "../InputField/InputField.js";
6
7
  import { Label as c } from "../Label/Label.js";
7
- import '../../assets/ModalDialog.css';const v = {
8
+ import '../../assets/ModalDialog.css';const T = {
8
9
  title: "Molecules/ModalDialog",
9
- component: t,
10
+ component: l,
10
11
  argTypes: {
11
12
  isOpen: {
12
13
  table: {
@@ -36,9 +37,9 @@ import '../../assets/ModalDialog.css';const v = {
36
37
  }
37
38
  }
38
39
  }
39
- }, i = (n) => /* @__PURE__ */ e(d, { children: /* @__PURE__ */ e(t, { ...n, children: /* @__PURE__ */ l("div", { className: "form-field form-field--outerspace", children: [
40
+ }, i = (n) => /* @__PURE__ */ e(d, { children: /* @__PURE__ */ e(l, { ...n, children: /* @__PURE__ */ t(s, { outerSpace: !0, children: [
40
41
  /* @__PURE__ */ e(c, { htmlFor: "text-field", children: "Example Text Field" }),
41
- /* @__PURE__ */ e(s, { id: "text-field" })
42
+ /* @__PURE__ */ e(m, { id: "text-field" })
42
43
  ] }) }) }), r = {
43
44
  padded: !1,
44
45
  slim: !1,
@@ -51,24 +52,24 @@ import '../../assets/ModalDialog.css';const v = {
51
52
  noValidate: !1,
52
53
  onSubmit: o(),
53
54
  onClose: o(),
54
- buttons: /* @__PURE__ */ l("div", { className: "button-group button-group--reversed", children: [
55
+ buttons: /* @__PURE__ */ t("div", { className: "button-group button-group--reversed", children: [
55
56
  /* @__PURE__ */ e(a, { variant: "primary", onClick: o(), children: "OK" }),
56
57
  /* @__PURE__ */ e(a, { variant: "secondary", onClick: o(), children: "Cancel" })
57
58
  ] }),
58
59
  isOpen: !0
59
- }, m = i.bind({});
60
- m.args = {
60
+ }, p = i.bind({});
61
+ p.args = {
61
62
  ...r
62
63
  };
63
- const p = i.bind({});
64
- p.args = {
64
+ const u = i.bind({});
65
+ u.args = {
65
66
  ...r,
66
67
  isLoading: !0,
67
68
  spinnerAriaValueText: "Loading"
68
69
  };
69
70
  export {
70
- p as Loading,
71
- m as ModalDialogExample,
72
- v as default
71
+ u as Loading,
72
+ p as ModalDialogExample,
73
+ T as default
73
74
  };
74
75
  //# sourceMappingURL=ModalDialog.stories.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ModalDialog.stories.js","sources":["../../../src/components/ModalDialog/ModalDialog.stories.tsx"],"sourcesContent":["import { ModalProvider } from '@react-aria/overlays';\nimport { fn } from '@storybook/test';\n\nimport type { Meta, StoryFn } from '@storybook/react';\nimport type { ModalDialogProps } from './ModalDialog';\n\nimport { ModalDialog } from './ModalDialog';\n\nimport { Button } from 'components/Button';\nimport { InputField } from 'components/InputField';\nimport { Label } from 'components/Label';\n\nimport './ModalDialog.stories.css';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Molecules/ModalDialog',\n component: ModalDialog,\n argTypes: {\n isOpen: {\n table: {\n disable: true,\n },\n },\n noValidate: {\n control: 'boolean',\n },\n role: {\n control: 'radio',\n options: ['dialog', 'alertdialog'],\n },\n onSubmit: {\n table: {\n disable: true,\n },\n },\n onClose: {\n table: {\n disable: true,\n },\n },\n buttons: {\n table: {\n disable: true,\n },\n },\n },\n} as Meta<ModalDialogProps>;\n\nconst Template: StoryFn<ModalDialogProps> = (args) => (\n <ModalProvider>\n <ModalDialog {...args}>\n <div className=\"form-field form-field--outerspace\">\n <Label htmlFor=\"text-field\">Example Text Field</Label>\n <InputField id=\"text-field\" />\n </div>\n </ModalDialog>\n </ModalProvider>\n);\n\nconst defaultArgs: Partial<ModalDialogProps> = {\n padded: false,\n slim: false,\n wide: false,\n noButtonBorder: false,\n variant: 'dialog',\n role: 'dialog',\n title: 'Example Title',\n closeButtonAriaValueText: 'Close',\n noValidate: false,\n onSubmit: fn(),\n onClose: fn(),\n buttons: (\n <div className=\"button-group button-group--reversed\">\n <Button variant=\"primary\" onClick={fn()}>\n OK\n </Button>\n <Button variant=\"secondary\" onClick={fn()}>\n Cancel\n </Button>\n </div>\n ),\n isOpen: true,\n};\n\nexport const ModalDialogExample = Template.bind({});\nModalDialogExample.args = {\n ...defaultArgs,\n};\n\nexport const Loading = Template.bind({});\nLoading.args = {\n ...defaultArgs,\n isLoading: true,\n spinnerAriaValueText: 'Loading',\n};\n"],"names":["ModalDialog_stories","ModalDialog","Template","args","jsx","ModalProvider","jsxs","Label","InputField","defaultArgs","fn","Button","ModalDialogExample","Loading"],"mappings":";;;;;;AAeA,MAAeA,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,UAAU;AAAA,IACR,QAAQ;AAAA,MACN,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,YAAY;AAAA,MACV,SAAS;AAAA,IACX;AAAA,IACA,MAAM;AAAA,MACJ,SAAS;AAAA,MACT,SAAS,CAAC,UAAU,aAAa;AAAA,IACnC;AAAA,IACA,UAAU;AAAA,MACR,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,SAAS;AAAA,MACP,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,SAAS;AAAA,MACP,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,EACF;AACF,GAEMC,IAAsC,CAACC,MAC3C,gBAAAC,EAACC,GACC,EAAA,UAAA,gBAAAD,EAACH,GAAa,EAAA,GAAGE,GACf,UAAA,gBAAAG,EAAC,OAAI,EAAA,WAAU,qCACb,UAAA;AAAA,EAAC,gBAAAF,EAAAG,GAAA,EAAM,SAAQ,cAAa,UAAkB,sBAAA;AAAA,EAC9C,gBAAAH,EAACI,GAAW,EAAA,IAAG,aAAa,CAAA;AAAA,GAC9B,GACF,EACF,CAAA,GAGIC,IAAyC;AAAA,EAC7C,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,MAAM;AAAA,EACN,gBAAgB;AAAA,EAChB,SAAS;AAAA,EACT,MAAM;AAAA,EACN,OAAO;AAAA,EACP,0BAA0B;AAAA,EAC1B,YAAY;AAAA,EACZ,UAAUC,EAAG;AAAA,EACb,SAASA,EAAG;AAAA,EACZ,SACE,gBAAAJ,EAAC,OAAI,EAAA,WAAU,uCACb,UAAA;AAAA,IAAA,gBAAAF,EAACO,KAAO,SAAQ,WAAU,SAASD,KAAM,UAEzC,MAAA;AAAA,sBACCC,GAAO,EAAA,SAAQ,aAAY,SAASD,KAAM,UAE3C,UAAA;AAAA,EAAA,GACF;AAAA,EAEF,QAAQ;AACV,GAEaE,IAAqBV,EAAS,KAAK,EAAE;AAClDU,EAAmB,OAAO;AAAA,EACxB,GAAGH;AACL;AAEO,MAAMI,IAAUX,EAAS,KAAK,EAAE;AACvCW,EAAQ,OAAO;AAAA,EACb,GAAGJ;AAAA,EACH,WAAW;AAAA,EACX,sBAAsB;AACxB;"}
1
+ {"version":3,"file":"ModalDialog.stories.js","sources":["../../../src/components/ModalDialog/ModalDialog.stories.tsx"],"sourcesContent":["import { ModalProvider } from '@react-aria/overlays';\nimport { fn } from '@storybook/test';\n\nimport type { Meta, StoryFn } from '@storybook/react';\nimport type { ModalDialogProps } from './ModalDialog';\n\nimport { ModalDialog } from './ModalDialog';\n\nimport { Button } from 'components/Button';\nimport { FormField } from 'components/FormField';\nimport { InputField } from 'components/InputField';\nimport { Label } from 'components/Label';\nimport './ModalDialog.stories.css';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Molecules/ModalDialog',\n component: ModalDialog,\n argTypes: {\n isOpen: {\n table: {\n disable: true,\n },\n },\n noValidate: {\n control: 'boolean',\n },\n role: {\n control: 'radio',\n options: ['dialog', 'alertdialog'],\n },\n onSubmit: {\n table: {\n disable: true,\n },\n },\n onClose: {\n table: {\n disable: true,\n },\n },\n buttons: {\n table: {\n disable: true,\n },\n },\n },\n} as Meta<ModalDialogProps>;\n\nconst Template: StoryFn<ModalDialogProps> = (args) => (\n <ModalProvider>\n <ModalDialog {...args}>\n <FormField outerSpace>\n <Label htmlFor=\"text-field\">Example Text Field</Label>\n <InputField id=\"text-field\" />\n </FormField>\n </ModalDialog>\n </ModalProvider>\n);\n\nconst defaultArgs: Partial<ModalDialogProps> = {\n padded: false,\n slim: false,\n wide: false,\n noButtonBorder: false,\n variant: 'dialog',\n role: 'dialog',\n title: 'Example Title',\n closeButtonAriaValueText: 'Close',\n noValidate: false,\n onSubmit: fn(),\n onClose: fn(),\n buttons: (\n <div className=\"button-group button-group--reversed\">\n <Button variant=\"primary\" onClick={fn()}>\n OK\n </Button>\n <Button variant=\"secondary\" onClick={fn()}>\n Cancel\n </Button>\n </div>\n ),\n isOpen: true,\n};\n\nexport const ModalDialogExample = Template.bind({});\nModalDialogExample.args = {\n ...defaultArgs,\n};\n\nexport const Loading = Template.bind({});\nLoading.args = {\n ...defaultArgs,\n isLoading: true,\n spinnerAriaValueText: 'Loading',\n};\n"],"names":["ModalDialog_stories","ModalDialog","Template","args","jsx","ModalProvider","jsxs","FormField","Label","InputField","defaultArgs","fn","Button","ModalDialogExample","Loading"],"mappings":";;;;;;;AAeA,MAAeA,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,UAAU;AAAA,IACR,QAAQ;AAAA,MACN,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,YAAY;AAAA,MACV,SAAS;AAAA,IACX;AAAA,IACA,MAAM;AAAA,MACJ,SAAS;AAAA,MACT,SAAS,CAAC,UAAU,aAAa;AAAA,IACnC;AAAA,IACA,UAAU;AAAA,MACR,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,SAAS;AAAA,MACP,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,SAAS;AAAA,MACP,OAAO;AAAA,QACL,SAAS;AAAA,MACX;AAAA,IACF;AAAA,EACF;AACF,GAEMC,IAAsC,CAACC,MAC3C,gBAAAC,EAACC,GACC,EAAA,UAAA,gBAAAD,EAACH,GAAa,EAAA,GAAGE,GACf,UAAA,gBAAAG,EAACC,GAAU,EAAA,YAAU,IACnB,UAAA;AAAA,EAAC,gBAAAH,EAAAI,GAAA,EAAM,SAAQ,cAAa,UAAkB,sBAAA;AAAA,EAC9C,gBAAAJ,EAACK,GAAW,EAAA,IAAG,aAAa,CAAA;AAAA,GAC9B,GACF,EACF,CAAA,GAGIC,IAAyC;AAAA,EAC7C,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,MAAM;AAAA,EACN,gBAAgB;AAAA,EAChB,SAAS;AAAA,EACT,MAAM;AAAA,EACN,OAAO;AAAA,EACP,0BAA0B;AAAA,EAC1B,YAAY;AAAA,EACZ,UAAUC,EAAG;AAAA,EACb,SAASA,EAAG;AAAA,EACZ,SACE,gBAAAL,EAAC,OAAI,EAAA,WAAU,uCACb,UAAA;AAAA,IAAA,gBAAAF,EAACQ,KAAO,SAAQ,WAAU,SAASD,KAAM,UAEzC,MAAA;AAAA,sBACCC,GAAO,EAAA,SAAQ,aAAY,SAASD,KAAM,UAE3C,UAAA;AAAA,EAAA,GACF;AAAA,EAEF,QAAQ;AACV,GAEaE,IAAqBX,EAAS,KAAK,EAAE;AAClDW,EAAmB,OAAO;AAAA,EACxB,GAAGH;AACL;AAEO,MAAMI,IAAUZ,EAAS,KAAK,EAAE;AACvCY,EAAQ,OAAO;AAAA,EACb,GAAGJ;AAAA,EACH,WAAW;AAAA,EACX,sBAAsB;AACxB;"}
@@ -3,6 +3,7 @@ export * from './AppStatusBar';
3
3
  export * from './Backdrop';
4
4
  export * from './Button';
5
5
  export * from './Card';
6
+ export * from './Checkbox';
6
7
  export * from './FieldHint';
7
8
  export * from './FormField';
8
9
  export * from './Icon';
@@ -1,50 +1,52 @@
1
1
  import { Accordion as t } from "./Accordion/Accordion.js";
2
2
  import { AppStatusBar as p } from "./AppStatusBar/AppStatusBar.js";
3
- import { Backdrop as m } from "./Backdrop/Backdrop.js";
3
+ import { Backdrop as x } from "./Backdrop/Backdrop.js";
4
4
  import { Button as i } from "./Button/Button.js";
5
5
  import { Card as a } from "./Card/Card.js";
6
- import { FieldHint as c } from "./FieldHint/FieldHint.js";
7
- import { FormField as s } from "./FormField/FormField.js";
8
- import { Icon as B } from "./Icon/Icon.js";
9
- import { IconButton as S } from "./IconButton/IconButton.js";
10
- import { InfoMessage as F } from "./InfoMessage/InfoMessage.js";
11
- import { Input as b } from "./Input/Input.js";
12
- import { InputField as k } from "./InputField/InputField.js";
13
- import { Label as A } from "./Label/Label.js";
14
- import { M as D } from "../MenuLink-CLEqkVVh.js";
15
- import { MetaDataList as H } from "./MetaDataList/MetaDataList.js";
16
- import { M as O } from "../ModalDialog-yEr_JLht.js";
17
- import { OverlayCloseButton as R } from "./OverlayCloseButton/OverlayCloseButton.js";
18
- import { RadioButton as h } from "./RadioButton/RadioButton.js";
19
- import { SectionNotification as q } from "./SectionNotification/SectionNotification.js";
20
- import { SelectListbox as z } from "./SelectListbox/SelectListbox.js";
21
- import { SelectProvider as G, useSelect as J } from "./SelectListbox/SelectProvider.js";
22
- import { Spinner as Q } from "./Spinner/Spinner.js";
23
- import { Tooltip as V } from "./Tooltip/Tooltip.js";
6
+ import { Checkbox as c } from "./Checkbox/Checkbox.js";
7
+ import { FieldHint as s } from "./FieldHint/FieldHint.js";
8
+ import { FormField as B } from "./FormField/FormField.js";
9
+ import { Icon as S } from "./Icon/Icon.js";
10
+ import { IconButton as F } from "./IconButton/IconButton.js";
11
+ import { InfoMessage as b } from "./InfoMessage/InfoMessage.js";
12
+ import { Input as C } from "./Input/Input.js";
13
+ import { InputField as v } from "./InputField/InputField.js";
14
+ import { Label as D } from "./Label/Label.js";
15
+ import { M as y } from "../MenuLink-CLEqkVVh.js";
16
+ import { MetaDataList as N } from "./MetaDataList/MetaDataList.js";
17
+ import { M as P } from "../ModalDialog-yEr_JLht.js";
18
+ import { OverlayCloseButton as T } from "./OverlayCloseButton/OverlayCloseButton.js";
19
+ import { RadioButton as q } from "./RadioButton/RadioButton.js";
20
+ import { SectionNotification as z } from "./SectionNotification/SectionNotification.js";
21
+ import { SelectListbox as G } from "./SelectListbox/SelectListbox.js";
22
+ import { SelectProvider as K, useSelect as Q } from "./SelectListbox/SelectProvider.js";
23
+ import { Spinner as V } from "./Spinner/Spinner.js";
24
+ import { Tooltip as X } from "./Tooltip/Tooltip.js";
24
25
  export {
25
26
  t as Accordion,
26
27
  p as AppStatusBar,
27
- m as Backdrop,
28
+ x as Backdrop,
28
29
  i as Button,
29
30
  a as Card,
30
- c as FieldHint,
31
- s as FormField,
32
- B as Icon,
33
- S as IconButton,
34
- F as InfoMessage,
35
- b as Input,
36
- k as InputField,
37
- A as Label,
38
- D as MenuLink,
39
- H as MetaDataList,
40
- O as ModalDialog,
41
- R as OverlayCloseButton,
42
- h as RadioButton,
43
- q as SectionNotification,
44
- z as SelectListbox,
45
- G as SelectProvider,
46
- Q as Spinner,
47
- V as Tooltip,
48
- J as useSelect
31
+ c as Checkbox,
32
+ s as FieldHint,
33
+ B as FormField,
34
+ S as Icon,
35
+ F as IconButton,
36
+ b as InfoMessage,
37
+ C as Input,
38
+ v as InputField,
39
+ D as Label,
40
+ y as MenuLink,
41
+ N as MetaDataList,
42
+ P as ModalDialog,
43
+ T as OverlayCloseButton,
44
+ q as RadioButton,
45
+ z as SectionNotification,
46
+ G as SelectListbox,
47
+ K as SelectProvider,
48
+ V as Spinner,
49
+ X as Tooltip,
50
+ Q as useSelect
49
51
  };
50
52
  //# 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,50 +1,52 @@
1
1
  import { Accordion as t } from "./components/Accordion/Accordion.js";
2
2
  import { AppStatusBar as p } from "./components/AppStatusBar/AppStatusBar.js";
3
- import { Backdrop as m } from "./components/Backdrop/Backdrop.js";
3
+ import { Backdrop as x } from "./components/Backdrop/Backdrop.js";
4
4
  import { Button as i } from "./components/Button/Button.js";
5
5
  import { Card as a } from "./components/Card/Card.js";
6
- import { FieldHint as c } from "./components/FieldHint/FieldHint.js";
7
- import { FormField as s } from "./components/FormField/FormField.js";
8
- import { Icon as B } from "./components/Icon/Icon.js";
9
- import { IconButton as S } from "./components/IconButton/IconButton.js";
10
- import { InfoMessage as F } from "./components/InfoMessage/InfoMessage.js";
11
- import { Input as b } from "./components/Input/Input.js";
12
- import { InputField as k } from "./components/InputField/InputField.js";
13
- import { Label as A } from "./components/Label/Label.js";
14
- import { M as D } from "./MenuLink-CLEqkVVh.js";
15
- import { MetaDataList as H } from "./components/MetaDataList/MetaDataList.js";
16
- import { M as O } from "./ModalDialog-yEr_JLht.js";
17
- import { OverlayCloseButton as R } from "./components/OverlayCloseButton/OverlayCloseButton.js";
18
- import { RadioButton as h } from "./components/RadioButton/RadioButton.js";
19
- import { SectionNotification as q } from "./components/SectionNotification/SectionNotification.js";
20
- import { SelectListbox as z } from "./components/SelectListbox/SelectListbox.js";
21
- import { SelectProvider as G, useSelect as J } from "./components/SelectListbox/SelectProvider.js";
22
- import { Spinner as Q } from "./components/Spinner/Spinner.js";
23
- import { Tooltip as V } from "./components/Tooltip/Tooltip.js";
6
+ import { Checkbox as c } from "./components/Checkbox/Checkbox.js";
7
+ import { FieldHint as s } from "./components/FieldHint/FieldHint.js";
8
+ import { FormField as B } from "./components/FormField/FormField.js";
9
+ import { Icon as S } from "./components/Icon/Icon.js";
10
+ import { IconButton as F } from "./components/IconButton/IconButton.js";
11
+ import { InfoMessage as b } from "./components/InfoMessage/InfoMessage.js";
12
+ import { Input as C } from "./components/Input/Input.js";
13
+ import { InputField as v } from "./components/InputField/InputField.js";
14
+ import { Label as D } from "./components/Label/Label.js";
15
+ import { M as y } from "./MenuLink-CLEqkVVh.js";
16
+ import { MetaDataList as N } from "./components/MetaDataList/MetaDataList.js";
17
+ import { M as P } from "./ModalDialog-yEr_JLht.js";
18
+ import { OverlayCloseButton as T } from "./components/OverlayCloseButton/OverlayCloseButton.js";
19
+ import { RadioButton as q } from "./components/RadioButton/RadioButton.js";
20
+ import { SectionNotification as z } from "./components/SectionNotification/SectionNotification.js";
21
+ import { SelectListbox as G } from "./components/SelectListbox/SelectListbox.js";
22
+ import { SelectProvider as K, useSelect as Q } from "./components/SelectListbox/SelectProvider.js";
23
+ import { Spinner as V } from "./components/Spinner/Spinner.js";
24
+ import { Tooltip as X } from "./components/Tooltip/Tooltip.js";
24
25
  export {
25
26
  t as Accordion,
26
27
  p as AppStatusBar,
27
- m as Backdrop,
28
+ x as Backdrop,
28
29
  i as Button,
29
30
  a as Card,
30
- c as FieldHint,
31
- s as FormField,
32
- B as Icon,
33
- S as IconButton,
34
- F as InfoMessage,
35
- b as Input,
36
- k as InputField,
37
- A as Label,
38
- D as MenuLink,
39
- H as MetaDataList,
40
- O as ModalDialog,
41
- R as OverlayCloseButton,
42
- h as RadioButton,
43
- q as SectionNotification,
44
- z as SelectListbox,
45
- G as SelectProvider,
46
- Q as Spinner,
47
- V as Tooltip,
48
- J as useSelect
31
+ c as Checkbox,
32
+ s as FieldHint,
33
+ B as FormField,
34
+ S as Icon,
35
+ F as IconButton,
36
+ b as InfoMessage,
37
+ C as Input,
38
+ v as InputField,
39
+ D as Label,
40
+ y as MenuLink,
41
+ N as MetaDataList,
42
+ P as ModalDialog,
43
+ T as OverlayCloseButton,
44
+ q as RadioButton,
45
+ z as SectionNotification,
46
+ G as SelectListbox,
47
+ K as SelectProvider,
48
+ V as Spinner,
49
+ X as Tooltip,
50
+ Q as useSelect
49
51
  };
50
52
  //# 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.22.0",
5
+ "version": "1.23.0",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",