@uva-glass/component-library 1.27.0 → 1.28.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/Attention.css +1 -0
- package/dist/components/Attention/Attention.d.ts +3 -0
- package/dist/components/Attention/Attention.js +12 -0
- package/dist/components/Attention/Attention.js.map +1 -0
- package/dist/components/Attention/Attention.stories.d.ts +7 -0
- package/dist/components/Attention/Attention.stories.js +12 -0
- package/dist/components/Attention/Attention.stories.js.map +1 -0
- package/dist/components/Attention/index.d.ts +1 -0
- package/dist/components/Attention/index.js +5 -0
- package/dist/components/Attention/index.js.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +57 -55
- package/dist/components/index.js.map +1 -1
- package/dist/index.js +57 -55
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._attention_1kulj_1{display:flex;gap:1rem}._attention_1kulj_1>svg{flex-shrink:0;height:1.5rem;width:1.5rem}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs as n, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { Icon as o } from "../Icon/Icon.js";
|
|
3
|
+
import '../../assets/Attention.css';const e = "_attention_1kulj_1", s = {
|
|
4
|
+
attention: e
|
|
5
|
+
}, l = ({ children: t }) => /* @__PURE__ */ n("div", { className: s.attention, children: [
|
|
6
|
+
/* @__PURE__ */ i(o, { name: "ExclamationCircleFillMini", size: 24 }),
|
|
7
|
+
t
|
|
8
|
+
] });
|
|
9
|
+
export {
|
|
10
|
+
l as Attention
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=Attention.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Attention.js","sources":["../../../src/components/Attention/Attention.tsx"],"sourcesContent":["import type { PropsWithChildren } from 'react';\n\nimport styles from './Attention.module.css';\n\nimport { Icon } from 'components/Icon';\n\nexport const Attention = ({ children }: PropsWithChildren) => (\n <div className={styles['attention']}>\n <Icon name=\"ExclamationCircleFillMini\" size={24} />\n {children}\n </div>\n);\n"],"names":["Attention","children","styles","jsx","Icon"],"mappings":";;;;GAMaA,IAAY,CAAC,EAAE,UAAAC,EAAS,wBAClC,OAAI,EAAA,WAAWC,EAAO,WACrB,UAAA;AAAA,EAAA,gBAAAC,EAACC,GAAK,EAAA,MAAK,6BAA4B,MAAM,IAAI;AAAA,EAChDH;AAAA,EACH,CAAA;"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import('@storybook/types').ComponentAnnotations<import('@storybook/react').ReactRenderer, {
|
|
2
|
+
children?: import('react').ReactNode;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const AttentionExample: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, {
|
|
6
|
+
children?: import('react').ReactNode;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { Attention as t } from "./Attention.js";
|
|
3
|
+
const r = {
|
|
4
|
+
title: "Atoms/Attention",
|
|
5
|
+
component: t
|
|
6
|
+
}, e = (n) => /* @__PURE__ */ o(t, { ...n, children: "Example Attention" }), i = e.bind({});
|
|
7
|
+
i.args = {};
|
|
8
|
+
export {
|
|
9
|
+
i as AttentionExample,
|
|
10
|
+
r as default
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=Attention.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Attention.stories.js","sources":["../../../src/components/Attention/Attention.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { PropsWithChildren } from 'react';\n\nimport { Attention } from './Attention';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Atoms/Attention',\n component: Attention,\n} as Meta<PropsWithChildren>;\n\nconst Template: StoryFn<PropsWithChildren> = (args) => <Attention {...args}>Example Attention</Attention>;\n\nexport const AttentionExample = Template.bind({});\nAttentionExample.args = {};\n"],"names":["Attention_stories","Attention","Template","args","AttentionExample"],"mappings":";;AAMA,MAAeA,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AACb,GAEMC,IAAuC,CAACC,wBAAUF,GAAW,EAAA,GAAGE,GAAM,UAAiB,oBAAA,CAAA,GAEhFC,IAAmBF,EAAS,KAAK,EAAE;AAChDE,EAAiB,OAAO,CAAC;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Attention';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
package/dist/components/index.js
CHANGED
|
@@ -1,62 +1,64 @@
|
|
|
1
1
|
import { Accordion as t } from "./Accordion/Accordion.js";
|
|
2
2
|
import { AppStatusBar as p } from "./AppStatusBar/AppStatusBar.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
3
|
+
import { Attention as f } from "./Attention/Attention.js";
|
|
4
|
+
import { Backdrop as a } from "./Backdrop/Backdrop.js";
|
|
5
|
+
import { Button as i } from "./Button/Button.js";
|
|
6
|
+
import { ButtonGroup as u } from "./ButtonGroup/ButtonGroup.js";
|
|
7
|
+
import { Card as d } from "./Card/Card.js";
|
|
8
|
+
import { Checkbox as B } from "./Checkbox/Checkbox.js";
|
|
9
|
+
import { Drawer as I } from "./Drawer/Drawer.js";
|
|
10
|
+
import { FieldHint as C } from "./FieldHint/FieldHint.js";
|
|
11
|
+
import { FormField as L } from "./FormField/FormField.js";
|
|
12
|
+
import { Icon as g } from "./Icon/Icon.js";
|
|
13
|
+
import { IconButton as A } from "./IconButton/IconButton.js";
|
|
14
|
+
import { InfoMessage as P } from "./InfoMessage/InfoMessage.js";
|
|
15
|
+
import { Input as R } from "./Input/Input.js";
|
|
16
|
+
import { InputField as w } from "./InputField/InputField.js";
|
|
17
|
+
import { Label as G } from "./Label/Label.js";
|
|
18
|
+
import { M as N } from "../MenuLink-CLEqkVVh.js";
|
|
19
|
+
import { MetaDataList as T } from "./MetaDataList/MetaDataList.js";
|
|
20
|
+
import { ModalDialog as q } from "./ModalDialog/ModalDialog.js";
|
|
21
|
+
import { OverlayCloseButton as E } from "./OverlayCloseButton/OverlayCloseButton.js";
|
|
22
|
+
import { ProgrammeCard as K } from "./ProgrammeCard/ProgrammeCard.js";
|
|
23
|
+
import { RadioButton as U } from "./RadioButton/RadioButton.js";
|
|
24
|
+
import { Repeater as W } from "./Repeater/Repeater.js";
|
|
25
|
+
import { SectionNotification as Y } from "./SectionNotification/SectionNotification.js";
|
|
26
|
+
import { SelectListbox as _ } from "./SelectListbox/SelectListbox.js";
|
|
27
|
+
import { SelectProvider as oo, useSelect as ro } from "./SelectListbox/SelectProvider.js";
|
|
28
|
+
import { Spinner as eo } from "./Spinner/Spinner.js";
|
|
29
|
+
import { StatusPill as mo } from "./StatusPill/StatusPill.js";
|
|
30
|
+
import { Tooltip as xo } from "./Tooltip/Tooltip.js";
|
|
30
31
|
export {
|
|
31
32
|
t as Accordion,
|
|
32
33
|
p as AppStatusBar,
|
|
33
|
-
f as
|
|
34
|
-
a as
|
|
35
|
-
|
|
36
|
-
u as
|
|
37
|
-
d as
|
|
38
|
-
B as
|
|
39
|
-
I as
|
|
40
|
-
C as
|
|
41
|
-
L as
|
|
42
|
-
g as
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
R as
|
|
46
|
-
w as
|
|
47
|
-
G as
|
|
48
|
-
N as
|
|
49
|
-
T as
|
|
50
|
-
q as
|
|
51
|
-
E as
|
|
52
|
-
K as
|
|
53
|
-
U as
|
|
54
|
-
W as
|
|
55
|
-
Y as
|
|
56
|
-
_ as
|
|
57
|
-
|
|
58
|
-
eo as
|
|
59
|
-
mo as
|
|
60
|
-
|
|
34
|
+
f as Attention,
|
|
35
|
+
a as Backdrop,
|
|
36
|
+
i as Button,
|
|
37
|
+
u as ButtonGroup,
|
|
38
|
+
d as Card,
|
|
39
|
+
B as Checkbox,
|
|
40
|
+
I as Drawer,
|
|
41
|
+
C as FieldHint,
|
|
42
|
+
L as FormField,
|
|
43
|
+
g as Icon,
|
|
44
|
+
A as IconButton,
|
|
45
|
+
P as InfoMessage,
|
|
46
|
+
R as Input,
|
|
47
|
+
w as InputField,
|
|
48
|
+
G as Label,
|
|
49
|
+
N as MenuLink,
|
|
50
|
+
T as MetaDataList,
|
|
51
|
+
q as ModalDialog,
|
|
52
|
+
E as OverlayCloseButton,
|
|
53
|
+
K as ProgrammeCard,
|
|
54
|
+
U as RadioButton,
|
|
55
|
+
W as Repeater,
|
|
56
|
+
Y as SectionNotification,
|
|
57
|
+
_ as SelectListbox,
|
|
58
|
+
oo as SelectProvider,
|
|
59
|
+
eo as Spinner,
|
|
60
|
+
mo as StatusPill,
|
|
61
|
+
xo as Tooltip,
|
|
62
|
+
ro as useSelect
|
|
61
63
|
};
|
|
62
64
|
//# 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,62 +1,64 @@
|
|
|
1
1
|
import { Accordion as t } from "./components/Accordion/Accordion.js";
|
|
2
2
|
import { AppStatusBar as p } from "./components/AppStatusBar/AppStatusBar.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
3
|
+
import { Attention as f } from "./components/Attention/Attention.js";
|
|
4
|
+
import { Backdrop as a } from "./components/Backdrop/Backdrop.js";
|
|
5
|
+
import { Button as i } from "./components/Button/Button.js";
|
|
6
|
+
import { ButtonGroup as u } from "./components/ButtonGroup/ButtonGroup.js";
|
|
7
|
+
import { Card as d } from "./components/Card/Card.js";
|
|
8
|
+
import { Checkbox as B } from "./components/Checkbox/Checkbox.js";
|
|
9
|
+
import { Drawer as I } from "./components/Drawer/Drawer.js";
|
|
10
|
+
import { FieldHint as C } from "./components/FieldHint/FieldHint.js";
|
|
11
|
+
import { FormField as L } from "./components/FormField/FormField.js";
|
|
12
|
+
import { Icon as g } from "./components/Icon/Icon.js";
|
|
13
|
+
import { IconButton as A } from "./components/IconButton/IconButton.js";
|
|
14
|
+
import { InfoMessage as P } from "./components/InfoMessage/InfoMessage.js";
|
|
15
|
+
import { Input as R } from "./components/Input/Input.js";
|
|
16
|
+
import { InputField as w } from "./components/InputField/InputField.js";
|
|
17
|
+
import { Label as G } from "./components/Label/Label.js";
|
|
18
|
+
import { M as N } from "./MenuLink-CLEqkVVh.js";
|
|
19
|
+
import { MetaDataList as T } from "./components/MetaDataList/MetaDataList.js";
|
|
20
|
+
import { ModalDialog as q } from "./components/ModalDialog/ModalDialog.js";
|
|
21
|
+
import { OverlayCloseButton as E } from "./components/OverlayCloseButton/OverlayCloseButton.js";
|
|
22
|
+
import { ProgrammeCard as K } from "./components/ProgrammeCard/ProgrammeCard.js";
|
|
23
|
+
import { RadioButton as U } from "./components/RadioButton/RadioButton.js";
|
|
24
|
+
import { Repeater as W } from "./components/Repeater/Repeater.js";
|
|
25
|
+
import { SectionNotification as Y } from "./components/SectionNotification/SectionNotification.js";
|
|
26
|
+
import { SelectListbox as _ } from "./components/SelectListbox/SelectListbox.js";
|
|
27
|
+
import { SelectProvider as oo, useSelect as ro } from "./components/SelectListbox/SelectProvider.js";
|
|
28
|
+
import { Spinner as eo } from "./components/Spinner/Spinner.js";
|
|
29
|
+
import { StatusPill as mo } from "./components/StatusPill/StatusPill.js";
|
|
30
|
+
import { Tooltip as xo } from "./components/Tooltip/Tooltip.js";
|
|
30
31
|
export {
|
|
31
32
|
t as Accordion,
|
|
32
33
|
p as AppStatusBar,
|
|
33
|
-
f as
|
|
34
|
-
a as
|
|
35
|
-
|
|
36
|
-
u as
|
|
37
|
-
d as
|
|
38
|
-
B as
|
|
39
|
-
I as
|
|
40
|
-
C as
|
|
41
|
-
L as
|
|
42
|
-
g as
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
R as
|
|
46
|
-
w as
|
|
47
|
-
G as
|
|
48
|
-
N as
|
|
49
|
-
T as
|
|
50
|
-
q as
|
|
51
|
-
E as
|
|
52
|
-
K as
|
|
53
|
-
U as
|
|
54
|
-
W as
|
|
55
|
-
Y as
|
|
56
|
-
_ as
|
|
57
|
-
|
|
58
|
-
eo as
|
|
59
|
-
mo as
|
|
60
|
-
|
|
34
|
+
f as Attention,
|
|
35
|
+
a as Backdrop,
|
|
36
|
+
i as Button,
|
|
37
|
+
u as ButtonGroup,
|
|
38
|
+
d as Card,
|
|
39
|
+
B as Checkbox,
|
|
40
|
+
I as Drawer,
|
|
41
|
+
C as FieldHint,
|
|
42
|
+
L as FormField,
|
|
43
|
+
g as Icon,
|
|
44
|
+
A as IconButton,
|
|
45
|
+
P as InfoMessage,
|
|
46
|
+
R as Input,
|
|
47
|
+
w as InputField,
|
|
48
|
+
G as Label,
|
|
49
|
+
N as MenuLink,
|
|
50
|
+
T as MetaDataList,
|
|
51
|
+
q as ModalDialog,
|
|
52
|
+
E as OverlayCloseButton,
|
|
53
|
+
K as ProgrammeCard,
|
|
54
|
+
U as RadioButton,
|
|
55
|
+
W as Repeater,
|
|
56
|
+
Y as SectionNotification,
|
|
57
|
+
_ as SelectListbox,
|
|
58
|
+
oo as SelectProvider,
|
|
59
|
+
eo as Spinner,
|
|
60
|
+
mo as StatusPill,
|
|
61
|
+
xo as Tooltip,
|
|
62
|
+
ro as useSelect
|
|
61
63
|
};
|
|
62
64
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|