@uva-glass/component-library 3.57.1 → 3.57.2
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/__mocks__/reactRouterMock.d.ts +27 -0
- package/dist/__mocks__/reactRouterMock.js +17 -0
- package/dist/__mocks__/reactRouterMock.js.map +1 -0
- package/dist/components/Icon/index.d.ts +1 -0
- package/dist/components/Icon/index.js +3 -2
- package/dist/components/index.js +64 -63
- package/dist/index.js +64 -63
- package/package.json +4 -4
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface RouteProps {
|
|
3
|
+
path?: string;
|
|
4
|
+
element?: ReactNode;
|
|
5
|
+
}
|
|
6
|
+
export declare const BrowserRouter: ({ children }: {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
}) => import("react").JSX.Element;
|
|
9
|
+
export declare const Routes: ({ children }: {
|
|
10
|
+
children: ReactNode;
|
|
11
|
+
}) => import("react").JSX.Element;
|
|
12
|
+
export declare const Route: ({ element }: RouteProps) => import("react").JSX.Element;
|
|
13
|
+
export declare const Link: ({ children, to, className, ...rest }: {
|
|
14
|
+
children: ReactNode;
|
|
15
|
+
to: string;
|
|
16
|
+
className?: string;
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}) => import("react").JSX.Element;
|
|
19
|
+
export declare const useNavigate: () => jest.Mock<any, any, any>;
|
|
20
|
+
export declare const useLocation: () => {
|
|
21
|
+
pathname: string;
|
|
22
|
+
search: string;
|
|
23
|
+
hash: string;
|
|
24
|
+
state: null;
|
|
25
|
+
};
|
|
26
|
+
export declare const useParams: () => {};
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Fragment as e, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/__mocks__/reactRouterMock.tsx
|
|
3
|
+
var n = ({ children: n }) => /* @__PURE__ */ t(e, { children: n }), r = ({ children: n }) => /* @__PURE__ */ t(e, { children: n }), i = ({ element: n }) => /* @__PURE__ */ t(e, { children: n }), a = ({ children: e, to: n, className: r, ...i }) => /* @__PURE__ */ t("a", {
|
|
4
|
+
href: String(n),
|
|
5
|
+
className: r,
|
|
6
|
+
...i,
|
|
7
|
+
children: e
|
|
8
|
+
}), o = () => jest.fn(), s = () => ({
|
|
9
|
+
pathname: "/",
|
|
10
|
+
search: "",
|
|
11
|
+
hash: "",
|
|
12
|
+
state: null
|
|
13
|
+
}), c = () => ({});
|
|
14
|
+
//#endregion
|
|
15
|
+
export { n as BrowserRouter, a as Link, i as Route, r as Routes, s as useLocation, o as useNavigate, c as useParams };
|
|
16
|
+
|
|
17
|
+
//# sourceMappingURL=reactRouterMock.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reactRouterMock.js","names":[],"sources":["../../src/__mocks__/reactRouterMock.tsx"],"sourcesContent":["import type { ReactNode } from 'react';\n\ninterface RouteProps {\n path?: string;\n element?: ReactNode;\n}\n\nexport const BrowserRouter = ({ children }: { children: ReactNode }) => <>{children}</>;\nexport const Routes = ({ children }: { children: ReactNode }) => <>{children}</>;\nexport const Route = ({ element }: RouteProps) => <>{element}</>;\nexport const Link = ({\n children,\n to,\n className,\n ...rest\n}: {\n children: ReactNode;\n to: string;\n className?: string;\n [key: string]: unknown;\n}) => (\n <a href={String(to)} className={className} {...rest}>\n {children}\n </a>\n);\nexport const useNavigate = () => jest.fn();\nexport const useLocation = () => ({ pathname: '/', search: '', hash: '', state: null });\nexport const useParams = () => ({});\n"],"mappings":";;AAOA,IAAa,KAAiB,EAAE,kBAAwC,kBAAA,GAAA,EAAG,YAAW,CAAA,GACzE,KAAU,EAAE,kBAAwC,kBAAA,GAAA,EAAG,YAAW,CAAA,GAClE,KAAS,EAAE,iBAA0B,kBAAA,GAAA,EAAA,UAAG,EAAU,CAAA,GAClD,KAAQ,EACnB,aACA,OACA,cACA,GAAG,QAOH,kBAAC,KAAD;CAAG,MAAM,OAAO,CAAE;CAAc;CAAW,GAAI;CAC5C;AACA,CAAA,GAEQ,UAAoB,KAAK,GAAG,GAC5B,WAAqB;CAAE,UAAU;CAAK,QAAQ;CAAI,MAAM;CAAI,OAAO;AAAK,IACxE,WAAmB,CAAC"}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { t as e } from "../../icons-C80wqcF0.js";
|
|
2
|
+
import { Icon as t } from "./Icon.js";
|
|
3
|
+
export { t as Icon, e as Icons };
|
package/dist/components/index.js
CHANGED
|
@@ -1,64 +1,65 @@
|
|
|
1
1
|
import { t as e } from "../Accordion-DQNoRsg_.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { t as r } from "../
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { t as c } from "../
|
|
10
|
-
import { t as l } from "../
|
|
11
|
-
import { t as u } from "../
|
|
12
|
-
import { t as d } from "../
|
|
13
|
-
import { t as f } from "../
|
|
14
|
-
import { t as p } from "../
|
|
15
|
-
import { t as m } from "../
|
|
16
|
-
import { t as h } from "../
|
|
17
|
-
import { t as g } from "../
|
|
18
|
-
import { t as _ } from "../
|
|
19
|
-
import {
|
|
20
|
-
import { t as T } from "../
|
|
21
|
-
import { t as E } from "../
|
|
22
|
-
import { t as D } from "../
|
|
23
|
-
import { t as O } from "../
|
|
24
|
-
import { t as k } from "../
|
|
25
|
-
import { t as A } from "../
|
|
26
|
-
import { t as j } from "../
|
|
27
|
-
import { t as M } from "../
|
|
28
|
-
import { t as N } from "../
|
|
29
|
-
import { t as P } from "../
|
|
30
|
-
import { t as F } from "../
|
|
31
|
-
import { t as I } from "../
|
|
32
|
-
import { t as L } from "../
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import { t as B } from "../
|
|
36
|
-
import { t as V } from "../
|
|
37
|
-
import { t as H } from "../
|
|
38
|
-
import { t as U } from "../
|
|
39
|
-
import { t as W } from "../
|
|
40
|
-
import { t as G } from "../
|
|
41
|
-
import { t as K } from "../
|
|
42
|
-
import { t as q } from "../
|
|
43
|
-
import { t as J } from "../
|
|
44
|
-
import { t as Y } from "../
|
|
45
|
-
import { t as X } from "../
|
|
46
|
-
import { t as Z } from "../
|
|
47
|
-
import { t as Q } from "../
|
|
48
|
-
import { t as $ } from "../
|
|
49
|
-
import { t as ee } from "../
|
|
50
|
-
import { t as te } from "../
|
|
51
|
-
import { t as ne } from "../
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import { t as ue } from "../
|
|
59
|
-
import { t as de } from "../
|
|
60
|
-
import { t as fe } from "../
|
|
61
|
-
import { t as pe } from "../
|
|
62
|
-
import { t as me } from "../
|
|
63
|
-
import {
|
|
64
|
-
|
|
2
|
+
import { t } from "../icons-C80wqcF0.js";
|
|
3
|
+
import { Icon as n } from "./Icon/Icon.js";
|
|
4
|
+
import { t as r } from "../AccordionCard-C4k8EI39.js";
|
|
5
|
+
import { t as i } from "../ActionList-D2GC2qPX.js";
|
|
6
|
+
import { Button as a } from "./Buttons/Button.js";
|
|
7
|
+
import { LinkButton as o } from "./Buttons/LinkButton.js";
|
|
8
|
+
import { MenuButton as s } from "./Buttons/MenuButton.js";
|
|
9
|
+
import { t as c } from "../AppStatusBar-DW-w7Nzp.js";
|
|
10
|
+
import { t as l } from "../Attention-xqGAJ7-T.js";
|
|
11
|
+
import { t as u } from "../Backdrop-bQ8kXsge.js";
|
|
12
|
+
import { t as d } from "../ButtonGroup-D2z5UWTR.js";
|
|
13
|
+
import { t as f } from "../Card-DENYj3eR.js";
|
|
14
|
+
import { t as p } from "../SectionNotification-CN-NdGL8.js";
|
|
15
|
+
import { t as m } from "../Checkbox-sAt4To2B.js";
|
|
16
|
+
import { t as h } from "../CheckboxButtonBar-OrJSqUTN.js";
|
|
17
|
+
import { t as g } from "../Label-52ny6d06.js";
|
|
18
|
+
import { t as _ } from "../FeedbackBox-BpOf_dxg.js";
|
|
19
|
+
import { t as v } from "../ControlsButton-Byx4XQtB.js";
|
|
20
|
+
import { d as y, f as b, h as x, m as S, n as C, t as w, u as T } from "../components-KU0q76JR.js";
|
|
21
|
+
import { t as E } from "../Chip-9XnXFhoJ.js";
|
|
22
|
+
import { t as D } from "../CopyableText-BKsM-TuS.js";
|
|
23
|
+
import { t as O } from "../DataTable-Cgn_RKTA.js";
|
|
24
|
+
import { t as k } from "../Drawer-fUw0LEuj.js";
|
|
25
|
+
import { t as A } from "../OverlayCloseButton-Dt6Yec8G.js";
|
|
26
|
+
import { t as j } from "../EmptyStateDataDisplay-FBDAGO88.js";
|
|
27
|
+
import { t as M } from "../ExpandableInfoPanel-BmbgbAjf.js";
|
|
28
|
+
import { t as N } from "../FeedbackBar-DEDpoNy7.js";
|
|
29
|
+
import { t as P } from "../Repeater-BAEfOMZI.js";
|
|
30
|
+
import { t as F } from "../FieldHint-FEBzgLI_.js";
|
|
31
|
+
import { t as I } from "../Spinner-BmPjd2Bv.js";
|
|
32
|
+
import { t as L } from "../Fieldset-CgnLyAyS.js";
|
|
33
|
+
import { t as R } from "../FormField-ByjTkKKq.js";
|
|
34
|
+
import { GridRow as z } from "./GridRow/GridRow.js";
|
|
35
|
+
import { t as B } from "../HorizontalList-CLlRGWZX.js";
|
|
36
|
+
import { t as V } from "../IconButton-BZVNomru.js";
|
|
37
|
+
import { t as H } from "../InfoBanner-DqBWtCVE.js";
|
|
38
|
+
import { t as U } from "../InfoMessage-CCEg222m.js";
|
|
39
|
+
import { t as W } from "../Input-CF3dxqTC.js";
|
|
40
|
+
import { t as G } from "../InputField-asFsxHvx.js";
|
|
41
|
+
import { t as K } from "../MenuLink-sK2_W2zs.js";
|
|
42
|
+
import { t as q } from "../MetaDataBar-48J7yPrb.js";
|
|
43
|
+
import { t as J } from "../MetaDataList-Co9WCexh.js";
|
|
44
|
+
import { t as Y } from "../ModalDialog-4V70sxK_.js";
|
|
45
|
+
import { t as X } from "../MultiSelectBox-D34qAgzc.js";
|
|
46
|
+
import { t as Z } from "../Notification-BhqWENfu.js";
|
|
47
|
+
import { t as Q } from "../OverlayStepBar-BiC06Itd.js";
|
|
48
|
+
import { t as $ } from "../PageOverlay-BR9ypiar.js";
|
|
49
|
+
import { t as ee } from "../Periods-B4ms3N24.js";
|
|
50
|
+
import { t as te } from "../ProgrammeCard-DdCFNx0d.js";
|
|
51
|
+
import { t as ne } from "../RadioButton-DmBpXwIS.js";
|
|
52
|
+
import { t as re } from "../RadioGroup-DlQjMmpa.js";
|
|
53
|
+
import { SearchField as ie } from "./SearchField/SearchField.js";
|
|
54
|
+
import { SelectProvider as ae, useSelect as oe } from "./SelectListbox/SelectProvider.js";
|
|
55
|
+
import { SelectListbox as se } from "./SelectListbox/SelectListbox.js";
|
|
56
|
+
import { t as ce } from "../Slider-Czd2xAGf.js";
|
|
57
|
+
import { Sortable as le } from "./Sortable/Sortable.js";
|
|
58
|
+
import { t as ue } from "../StatusBage-hJmNPqtk.js";
|
|
59
|
+
import { t as de } from "../StatusPill-vdqU92pW.js";
|
|
60
|
+
import { t as fe } from "../TextArea-D_VoyGIO.js";
|
|
61
|
+
import { t as pe } from "../ToggleSwitch-ev4Jh4y-.js";
|
|
62
|
+
import { t as me } from "../Tooltip-DvkGwn4j.js";
|
|
63
|
+
import { t as he } from "../VarIndicator-D0cnlcIf.js";
|
|
64
|
+
import { WeekSelector as ge } from "./WeekSelector/WeekSelector.js";
|
|
65
|
+
export { e as Accordion, r as AccordionCard, i as ActionList, c as AppStatusBar, l as Attention, u as Backdrop, a as Button, d as ButtonGroup, f as Card, m as Checkbox, h as CheckboxButtonBar, x as CheckboxTree, E as Chip, v as ControlsButton, D as CopyableText, O as DataTable, k as Drawer, j as EmptyStateDataDisplay, M as ExpandableInfoPanel, N as FeedbackBar, _ as FeedbackBox, F as FieldHint, L as Fieldset, R as FormField, S as FormInput, z as GridRow, B as HorizontalList, n as Icon, V as IconButton, t as Icons, H as InfoBanner, U as InfoMessage, W as Input, G as InputField, g as Label, o as LinkButton, s as MenuButton, K as MenuLink, q as MetaDataBar, J as MetaDataList, Y as ModalDialog, b as MultiSelect, X as MultiSelectBox, Z as Notification, A as OverlayCloseButton, Q as OverlayStepBar, $ as PageOverlay, y as PeriodSelector, ee as Periods, te as ProgrammeCard, ne as RadioButton, re as RadioGroup, T as RadioTabSelector, P as Repeater, w as Rte, C as RteEditor, ie as SearchField, p as SectionNotification, se as SelectListbox, ae as SelectProvider, ce as Slider, le as Sortable, I as Spinner, ue as StatusBadge, de as StatusPill, fe as TextArea, pe as ToggleSwitch, me as Tooltip, he as VarIndicator, ge as WeekSelector, oe as useSelect };
|
package/dist/index.js
CHANGED
|
@@ -1,64 +1,65 @@
|
|
|
1
1
|
import { t as e } from "./Accordion-DQNoRsg_.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { t as r } from "./
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { t as c } from "./
|
|
10
|
-
import { t as l } from "./
|
|
11
|
-
import { t as u } from "./
|
|
12
|
-
import { t as d } from "./
|
|
13
|
-
import { t as f } from "./
|
|
14
|
-
import { t as p } from "./
|
|
15
|
-
import { t as m } from "./
|
|
16
|
-
import { t as h } from "./
|
|
17
|
-
import { t as g } from "./
|
|
18
|
-
import { t as _ } from "./
|
|
19
|
-
import {
|
|
20
|
-
import { t as T } from "./
|
|
21
|
-
import { t as E } from "./
|
|
22
|
-
import { t as D } from "./
|
|
23
|
-
import { t as O } from "./
|
|
24
|
-
import { t as k } from "./
|
|
25
|
-
import { t as A } from "./
|
|
26
|
-
import { t as j } from "./
|
|
27
|
-
import { t as M } from "./
|
|
28
|
-
import { t as N } from "./
|
|
29
|
-
import { t as P } from "./
|
|
30
|
-
import { t as F } from "./
|
|
31
|
-
import { t as I } from "./
|
|
32
|
-
import { t as L } from "./
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import { t as B } from "./
|
|
36
|
-
import { t as V } from "./
|
|
37
|
-
import { t as H } from "./
|
|
38
|
-
import { t as U } from "./
|
|
39
|
-
import { t as W } from "./
|
|
40
|
-
import { t as G } from "./
|
|
41
|
-
import { t as K } from "./
|
|
42
|
-
import { t as q } from "./
|
|
43
|
-
import { t as J } from "./
|
|
44
|
-
import { t as Y } from "./
|
|
45
|
-
import { t as X } from "./
|
|
46
|
-
import { t as Z } from "./
|
|
47
|
-
import { t as Q } from "./
|
|
48
|
-
import { t as $ } from "./
|
|
49
|
-
import { t as ee } from "./
|
|
50
|
-
import { t as te } from "./
|
|
51
|
-
import { t as ne } from "./
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import { t as ue } from "./
|
|
59
|
-
import { t as de } from "./
|
|
60
|
-
import { t as fe } from "./
|
|
61
|
-
import { t as pe } from "./
|
|
62
|
-
import { t as me } from "./
|
|
63
|
-
import {
|
|
64
|
-
|
|
2
|
+
import { t } from "./icons-C80wqcF0.js";
|
|
3
|
+
import { Icon as n } from "./components/Icon/Icon.js";
|
|
4
|
+
import { t as r } from "./AccordionCard-C4k8EI39.js";
|
|
5
|
+
import { t as i } from "./ActionList-D2GC2qPX.js";
|
|
6
|
+
import { Button as a } from "./components/Buttons/Button.js";
|
|
7
|
+
import { LinkButton as o } from "./components/Buttons/LinkButton.js";
|
|
8
|
+
import { MenuButton as s } from "./components/Buttons/MenuButton.js";
|
|
9
|
+
import { t as c } from "./AppStatusBar-DW-w7Nzp.js";
|
|
10
|
+
import { t as l } from "./Attention-xqGAJ7-T.js";
|
|
11
|
+
import { t as u } from "./Backdrop-bQ8kXsge.js";
|
|
12
|
+
import { t as d } from "./ButtonGroup-D2z5UWTR.js";
|
|
13
|
+
import { t as f } from "./Card-DENYj3eR.js";
|
|
14
|
+
import { t as p } from "./SectionNotification-CN-NdGL8.js";
|
|
15
|
+
import { t as m } from "./Checkbox-sAt4To2B.js";
|
|
16
|
+
import { t as h } from "./CheckboxButtonBar-OrJSqUTN.js";
|
|
17
|
+
import { t as g } from "./Label-52ny6d06.js";
|
|
18
|
+
import { t as _ } from "./FeedbackBox-BpOf_dxg.js";
|
|
19
|
+
import { t as v } from "./ControlsButton-Byx4XQtB.js";
|
|
20
|
+
import { d as y, f as b, h as x, m as S, n as C, t as w, u as T } from "./components-KU0q76JR.js";
|
|
21
|
+
import { t as E } from "./Chip-9XnXFhoJ.js";
|
|
22
|
+
import { t as D } from "./CopyableText-BKsM-TuS.js";
|
|
23
|
+
import { t as O } from "./DataTable-Cgn_RKTA.js";
|
|
24
|
+
import { t as k } from "./Drawer-fUw0LEuj.js";
|
|
25
|
+
import { t as A } from "./OverlayCloseButton-Dt6Yec8G.js";
|
|
26
|
+
import { t as j } from "./EmptyStateDataDisplay-FBDAGO88.js";
|
|
27
|
+
import { t as M } from "./ExpandableInfoPanel-BmbgbAjf.js";
|
|
28
|
+
import { t as N } from "./FeedbackBar-DEDpoNy7.js";
|
|
29
|
+
import { t as P } from "./Repeater-BAEfOMZI.js";
|
|
30
|
+
import { t as F } from "./FieldHint-FEBzgLI_.js";
|
|
31
|
+
import { t as I } from "./Spinner-BmPjd2Bv.js";
|
|
32
|
+
import { t as L } from "./Fieldset-CgnLyAyS.js";
|
|
33
|
+
import { t as R } from "./FormField-ByjTkKKq.js";
|
|
34
|
+
import { GridRow as z } from "./components/GridRow/GridRow.js";
|
|
35
|
+
import { t as B } from "./HorizontalList-CLlRGWZX.js";
|
|
36
|
+
import { t as V } from "./IconButton-BZVNomru.js";
|
|
37
|
+
import { t as H } from "./InfoBanner-DqBWtCVE.js";
|
|
38
|
+
import { t as U } from "./InfoMessage-CCEg222m.js";
|
|
39
|
+
import { t as W } from "./Input-CF3dxqTC.js";
|
|
40
|
+
import { t as G } from "./InputField-asFsxHvx.js";
|
|
41
|
+
import { t as K } from "./MenuLink-sK2_W2zs.js";
|
|
42
|
+
import { t as q } from "./MetaDataBar-48J7yPrb.js";
|
|
43
|
+
import { t as J } from "./MetaDataList-Co9WCexh.js";
|
|
44
|
+
import { t as Y } from "./ModalDialog-4V70sxK_.js";
|
|
45
|
+
import { t as X } from "./MultiSelectBox-D34qAgzc.js";
|
|
46
|
+
import { t as Z } from "./Notification-BhqWENfu.js";
|
|
47
|
+
import { t as Q } from "./OverlayStepBar-BiC06Itd.js";
|
|
48
|
+
import { t as $ } from "./PageOverlay-BR9ypiar.js";
|
|
49
|
+
import { t as ee } from "./Periods-B4ms3N24.js";
|
|
50
|
+
import { t as te } from "./ProgrammeCard-DdCFNx0d.js";
|
|
51
|
+
import { t as ne } from "./RadioButton-DmBpXwIS.js";
|
|
52
|
+
import { t as re } from "./RadioGroup-DlQjMmpa.js";
|
|
53
|
+
import { SearchField as ie } from "./components/SearchField/SearchField.js";
|
|
54
|
+
import { SelectProvider as ae, useSelect as oe } from "./components/SelectListbox/SelectProvider.js";
|
|
55
|
+
import { SelectListbox as se } from "./components/SelectListbox/SelectListbox.js";
|
|
56
|
+
import { t as ce } from "./Slider-Czd2xAGf.js";
|
|
57
|
+
import { Sortable as le } from "./components/Sortable/Sortable.js";
|
|
58
|
+
import { t as ue } from "./StatusBage-hJmNPqtk.js";
|
|
59
|
+
import { t as de } from "./StatusPill-vdqU92pW.js";
|
|
60
|
+
import { t as fe } from "./TextArea-D_VoyGIO.js";
|
|
61
|
+
import { t as pe } from "./ToggleSwitch-ev4Jh4y-.js";
|
|
62
|
+
import { t as me } from "./Tooltip-DvkGwn4j.js";
|
|
63
|
+
import { t as he } from "./VarIndicator-D0cnlcIf.js";
|
|
64
|
+
import { WeekSelector as ge } from "./components/WeekSelector/WeekSelector.js";
|
|
65
|
+
export { e as Accordion, r as AccordionCard, i as ActionList, c as AppStatusBar, l as Attention, u as Backdrop, a as Button, d as ButtonGroup, f as Card, m as Checkbox, h as CheckboxButtonBar, x as CheckboxTree, E as Chip, v as ControlsButton, D as CopyableText, O as DataTable, k as Drawer, j as EmptyStateDataDisplay, M as ExpandableInfoPanel, N as FeedbackBar, _ as FeedbackBox, F as FieldHint, L as Fieldset, R as FormField, S as FormInput, z as GridRow, B as HorizontalList, n as Icon, V as IconButton, t as Icons, H as InfoBanner, U as InfoMessage, W as Input, G as InputField, g as Label, o as LinkButton, s as MenuButton, K as MenuLink, q as MetaDataBar, J as MetaDataList, Y as ModalDialog, b as MultiSelect, X as MultiSelectBox, Z as Notification, A as OverlayCloseButton, Q as OverlayStepBar, $ as PageOverlay, y as PeriodSelector, ee as Periods, te as ProgrammeCard, ne as RadioButton, re as RadioGroup, T as RadioTabSelector, P as Repeater, w as Rte, C as RteEditor, ie as SearchField, p as SectionNotification, se as SelectListbox, ae as SelectProvider, ce as Slider, le as Sortable, I as Spinner, ue as StatusBadge, de as StatusPill, fe as TextArea, pe as ToggleSwitch, me as Tooltip, he as VarIndicator, ge as WeekSelector, oe as useSelect };
|
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.57.
|
|
5
|
+
"version": "3.57.2",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"npm-run-all2": "^9.0.2",
|
|
92
92
|
"react": "^19.2.7",
|
|
93
93
|
"react-dom": "^19.2.7",
|
|
94
|
-
"react-router": "^
|
|
94
|
+
"react-router": "^8.0.1",
|
|
95
95
|
"semantic-release": "^25.0.5",
|
|
96
96
|
"storybook": "^10.4.6",
|
|
97
|
-
"style-dictionary": "^5.
|
|
97
|
+
"style-dictionary": "^5.5.0",
|
|
98
98
|
"stylelint": "^17.13.0",
|
|
99
99
|
"stylelint-config-recommended": "^18.0.0",
|
|
100
100
|
"stylelint-config-standard": "^40.0.0",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"lexical": "^0.45.0"
|
|
125
125
|
},
|
|
126
126
|
"optionalDependencies": {
|
|
127
|
-
"@ast-grep/napi-linux-x64-gnu": "0.
|
|
127
|
+
"@ast-grep/napi-linux-x64-gnu": "0.44.0",
|
|
128
128
|
"@rollup/rollup-linux-x64-gnu": "^4.62.2",
|
|
129
129
|
"@rspack/binding-darwin-arm64": "1.7.12",
|
|
130
130
|
"@rspack/binding-linux-x64-gnu": "1.7.12"
|