@utrecht/component-library-react 12.0.0 → 13.0.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/CHANGELOG.md +21 -0
- package/dist/.jest-test-results.json +1 -1
- package/dist/Alert.d.ts +2 -2
- package/dist/Alert.d.ts.map +1 -1
- package/dist/ButtonLink.d.ts +9 -1
- package/dist/ButtonLink.d.ts.map +1 -1
- package/dist/Paragraph.d.ts +1 -1
- package/dist/Paragraph.d.ts.map +1 -1
- package/dist/css-module/Alert.d.ts +2 -2
- package/dist/css-module/Alert.d.ts.map +1 -1
- package/dist/css-module/ButtonLink.d.ts +9 -1
- package/dist/css-module/ButtonLink.d.ts.map +1 -1
- package/dist/css-module/Paragraph.d.ts +1 -1
- package/dist/css-module/Paragraph.d.ts.map +1 -1
- package/dist/css-module/index.mjs +6 -4
- package/dist/css-module/index.mjs.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +38 -38
package/dist/Alert.d.ts
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
7
7
|
export declare const ROLES: readonly ["status", "alert"];
|
|
8
8
|
export type AlertRole = (typeof ROLES)[number];
|
|
9
|
-
export declare const isAlertRole:
|
|
9
|
+
export declare const isAlertRole: (x: unknown) => x is "status" | "alert";
|
|
10
10
|
export declare const TYPES: readonly ["error", "warning", "info", "ok"];
|
|
11
11
|
export type AlertType = (typeof TYPES)[number];
|
|
12
|
-
export declare const isAlertType:
|
|
12
|
+
export declare const isAlertType: (x: unknown) => x is "error" | "warning" | "info" | "ok";
|
|
13
13
|
export interface AlertProps extends HTMLAttributes<HTMLDivElement> {
|
|
14
14
|
icon?: ReactNode;
|
|
15
15
|
type?: string | AlertType;
|
package/dist/Alert.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../src/Alert.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,SAAS,EAAE,MAAM,OAAO,CAAC;AAO/F,eAAO,MAAM,KAAK,8BAA+B,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAC/C,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../src/Alert.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,SAAS,EAAE,MAAM,OAAO,CAAC;AAO/F,eAAO,MAAM,KAAK,8BAA+B,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAC/C,eAAO,MAAM,WAAW,MALlB,OAAO,KAAG,CAAC,sBAK0B,CAAC;AAE5C,eAAO,MAAM,KAAK,6CAA8C,CAAC;AACjE,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAC/C,eAAO,MAAM,WAAW,MATlB,OAAO,KAAG,CAAC,uCAS0B,CAAC;AAS5C,MAAM,WAAW,UAAW,SAAQ,cAAc,CAAC,cAAc,CAAC;IAChE,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,KAAK;;kDAkBjB,CAAC"}
|
package/dist/ButtonLink.d.ts
CHANGED
|
@@ -4,12 +4,20 @@
|
|
|
4
4
|
* Copyright (c) 2021-2024 Gemeente Utrecht
|
|
5
5
|
*/
|
|
6
6
|
import { AnchorHTMLAttributes } from 'react';
|
|
7
|
+
declare const APPEARANCE: {
|
|
8
|
+
readonly 'primary-action-button': "utrecht-button-link--primary-action";
|
|
9
|
+
readonly 'secondary-action-button': "utrecht-button-link--secondary-action";
|
|
10
|
+
readonly 'subtle-button': "utrecht-button-link--subtle";
|
|
11
|
+
};
|
|
12
|
+
export type ButtonLinkAppearance = keyof typeof APPEARANCE;
|
|
13
|
+
export declare const isButtonLinkAppearance: (x: unknown) => x is "primary-action-button" | "secondary-action-button" | "subtle-button";
|
|
7
14
|
export interface ButtonLinkProps extends Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'placeholder'> {
|
|
8
|
-
appearance?:
|
|
15
|
+
appearance?: ButtonLinkAppearance;
|
|
9
16
|
external?: boolean;
|
|
10
17
|
placeholder?: boolean;
|
|
11
18
|
}
|
|
12
19
|
export declare const ButtonLink: import("react").ForwardRefExoticComponent<ButtonLinkProps & {
|
|
13
20
|
children?: import("react").ReactNode | undefined;
|
|
14
21
|
} & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
22
|
+
export {};
|
|
15
23
|
//# sourceMappingURL=ButtonLink.d.ts.map
|
package/dist/ButtonLink.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ButtonLink.d.ts","sourceRoot":"","sources":["../src/ButtonLink.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,oBAAoB,EAA8D,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ButtonLink.d.ts","sourceRoot":"","sources":["../src/ButtonLink.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,oBAAoB,EAA8D,MAAM,OAAO,CAAC;AAOzG,QAAA,MAAM,UAAU;;;;CAIN,CAAC;AAGX,MAAM,MAAM,oBAAoB,GAAG,MAAM,OAAO,UAAU,CAAC;AAE3D,eAAO,MAAM,sBAAsB,MAZ7B,OAAO,KAAG,CAAC,yEAY8C,CAAC;AAEhE,MAAM,WAAW,eAAgB,SAAQ,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,aAAa,CAAC;IACnG,UAAU,CAAC,EAAE,oBAAoB,CAAC;IAClC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAYD,eAAO,MAAM,UAAU;;qDAkDtB,CAAC"}
|
package/dist/Paragraph.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { HTMLAttributes } from 'react';
|
|
7
7
|
declare const APPEARANCE_VALUES: readonly ["lead", "small"];
|
|
8
8
|
export type ParagraphAppearance = (typeof APPEARANCE_VALUES)[number];
|
|
9
|
-
export declare const isParagraphAppearance:
|
|
9
|
+
export declare const isParagraphAppearance: (x: unknown) => x is "lead" | "small";
|
|
10
10
|
export interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
11
11
|
appearance?: ParagraphAppearance;
|
|
12
12
|
/**
|
package/dist/Paragraph.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Paragraph.d.ts","sourceRoot":"","sources":["../src/Paragraph.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,MAAM,OAAO,CAAC;AAOpF,QAAA,MAAM,iBAAiB,4BAA6B,CAAC;AAErD,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAErE,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"Paragraph.d.ts","sourceRoot":"","sources":["../src/Paragraph.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,MAAM,OAAO,CAAC;AAOpF,QAAA,MAAM,iBAAiB,4BAA6B,CAAC;AAErD,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAErE,eAAO,MAAM,qBAAqB,MAP5B,OAAO,KAAG,CAAC,oBAOgD,CAAC;AAElE,MAAM,WAAW,cAAe,SAAQ,cAAc,CAAC,oBAAoB,CAAC;IAC1E,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IAEf;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,eAAO,MAAM,SAAS;;wDAiCrB,CAAC"}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
7
7
|
export declare const ROLES: readonly ["status", "alert"];
|
|
8
8
|
export type AlertRole = (typeof ROLES)[number];
|
|
9
|
-
export declare const isAlertRole:
|
|
9
|
+
export declare const isAlertRole: (x: unknown) => x is "status" | "alert";
|
|
10
10
|
export declare const TYPES: readonly ["error", "warning", "info", "ok"];
|
|
11
11
|
export type AlertType = (typeof TYPES)[number];
|
|
12
|
-
export declare const isAlertType:
|
|
12
|
+
export declare const isAlertType: (x: unknown) => x is "error" | "warning" | "info" | "ok";
|
|
13
13
|
export interface AlertProps extends HTMLAttributes<HTMLDivElement> {
|
|
14
14
|
icon?: ReactNode;
|
|
15
15
|
type?: string | AlertType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../src/Alert.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,SAAS,EAAE,MAAM,OAAO,CAAC;AAO/F,eAAO,MAAM,KAAK,8BAA+B,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAC/C,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../src/Alert.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,SAAS,EAAE,MAAM,OAAO,CAAC;AAO/F,eAAO,MAAM,KAAK,8BAA+B,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAC/C,eAAO,MAAM,WAAW,MALlB,OAAO,KAAG,CAAC,sBAK0B,CAAC;AAE5C,eAAO,MAAM,KAAK,6CAA8C,CAAC;AACjE,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAC/C,eAAO,MAAM,WAAW,MATlB,OAAO,KAAG,CAAC,uCAS0B,CAAC;AAS5C,MAAM,WAAW,UAAW,SAAQ,cAAc,CAAC,cAAc,CAAC;IAChE,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,KAAK;;kDAkBjB,CAAC"}
|
|
@@ -4,12 +4,20 @@
|
|
|
4
4
|
* Copyright (c) 2021-2024 Gemeente Utrecht
|
|
5
5
|
*/
|
|
6
6
|
import { AnchorHTMLAttributes } from 'react';
|
|
7
|
+
declare const APPEARANCE: {
|
|
8
|
+
readonly 'primary-action-button': "utrecht-button-link--primary-action";
|
|
9
|
+
readonly 'secondary-action-button': "utrecht-button-link--secondary-action";
|
|
10
|
+
readonly 'subtle-button': "utrecht-button-link--subtle";
|
|
11
|
+
};
|
|
12
|
+
export type ButtonLinkAppearance = keyof typeof APPEARANCE;
|
|
13
|
+
export declare const isButtonLinkAppearance: (x: unknown) => x is "primary-action-button" | "secondary-action-button" | "subtle-button";
|
|
7
14
|
export interface ButtonLinkProps extends Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'placeholder'> {
|
|
8
|
-
appearance?:
|
|
15
|
+
appearance?: ButtonLinkAppearance;
|
|
9
16
|
external?: boolean;
|
|
10
17
|
placeholder?: boolean;
|
|
11
18
|
}
|
|
12
19
|
export declare const ButtonLink: import("react").ForwardRefExoticComponent<ButtonLinkProps & {
|
|
13
20
|
children?: import("react").ReactNode | undefined;
|
|
14
21
|
} & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
22
|
+
export {};
|
|
15
23
|
//# sourceMappingURL=ButtonLink.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ButtonLink.d.ts","sourceRoot":"","sources":["../../src/ButtonLink.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,oBAAoB,EAA8D,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ButtonLink.d.ts","sourceRoot":"","sources":["../../src/ButtonLink.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,oBAAoB,EAA8D,MAAM,OAAO,CAAC;AAOzG,QAAA,MAAM,UAAU;;;;CAIN,CAAC;AAGX,MAAM,MAAM,oBAAoB,GAAG,MAAM,OAAO,UAAU,CAAC;AAE3D,eAAO,MAAM,sBAAsB,MAZ7B,OAAO,KAAG,CAAC,yEAY8C,CAAC;AAEhE,MAAM,WAAW,eAAgB,SAAQ,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,aAAa,CAAC;IACnG,UAAU,CAAC,EAAE,oBAAoB,CAAC;IAClC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAYD,eAAO,MAAM,UAAU;;qDAkDtB,CAAC"}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { HTMLAttributes } from 'react';
|
|
7
7
|
declare const APPEARANCE_VALUES: readonly ["lead", "small"];
|
|
8
8
|
export type ParagraphAppearance = (typeof APPEARANCE_VALUES)[number];
|
|
9
|
-
export declare const isParagraphAppearance:
|
|
9
|
+
export declare const isParagraphAppearance: (x: unknown) => x is "lead" | "small";
|
|
10
10
|
export interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
11
11
|
appearance?: ParagraphAppearance;
|
|
12
12
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Paragraph.d.ts","sourceRoot":"","sources":["../../src/Paragraph.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,MAAM,OAAO,CAAC;AAOpF,QAAA,MAAM,iBAAiB,4BAA6B,CAAC;AAErD,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAErE,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"Paragraph.d.ts","sourceRoot":"","sources":["../../src/Paragraph.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAA4B,cAAc,EAAqB,MAAM,OAAO,CAAC;AAOpF,QAAA,MAAM,iBAAiB,4BAA6B,CAAC;AAErD,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAErE,eAAO,MAAM,qBAAqB,MAP5B,OAAO,KAAG,CAAC,oBAOgD,CAAC;AAElE,MAAM,WAAW,cAAe,SAAQ,cAAc,CAAC,oBAAoB,CAAC;IAC1E,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IAEf;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,eAAO,MAAM,SAAS;;wDAiCrB,CAAC"}
|
|
@@ -833,6 +833,11 @@ insertStyle(css$8);
|
|
|
833
833
|
var _excluded$17 = ["appearance", "children", "className", "external", "href", "placeholder", "role"];
|
|
834
834
|
function ownKeys$18(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
835
835
|
function _objectSpread$18(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$18(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$18(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
836
|
+
var APPEARANCE = {
|
|
837
|
+
'primary-action-button': 'utrecht-button-link--primary-action',
|
|
838
|
+
'secondary-action-button': 'utrecht-button-link--secondary-action',
|
|
839
|
+
'subtle-button': 'utrecht-button-link--subtle'
|
|
840
|
+
};
|
|
836
841
|
var onKeyDown = function onKeyDown(evt) {
|
|
837
842
|
var _evt$target;
|
|
838
843
|
if (evt.key === ' ' && typeof ((_evt$target = evt.target) === null || _evt$target === void 0 ? void 0 : _evt$target.click) === 'function') {
|
|
@@ -867,11 +872,8 @@ var ButtonLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
867
872
|
role: role || (placeholder ? 'link' : undefined),
|
|
868
873
|
className: clsx('utrecht-button-link', 'utrecht-button-link--html-a', {
|
|
869
874
|
'utrecht-button-link--external': external,
|
|
870
|
-
'utrecht-button-link--primary-action': appearance === 'primary-action-button',
|
|
871
|
-
'utrecht-button-link--secondary-action': appearance === 'secondary-action-button',
|
|
872
|
-
'utrecht-button-link--subtle': appearance === 'subtle-button',
|
|
873
875
|
'utrecht-button-link--placeholder': placeholder
|
|
874
|
-
}, className),
|
|
876
|
+
}, appearance && APPEARANCE[appearance], className),
|
|
875
877
|
rel: external ? 'external noopener noreferrer' : undefined,
|
|
876
878
|
"aria-disabled": placeholder ? 'true' : undefined
|
|
877
879
|
}, props), {}, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.mjs
CHANGED
|
@@ -684,6 +684,11 @@ BreadcrumbNavLink.displayName = 'BreadcrumbNavLink';
|
|
|
684
684
|
var _excluded$17 = ["appearance", "children", "className", "external", "href", "placeholder", "role"];
|
|
685
685
|
function ownKeys$18(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
686
686
|
function _objectSpread$18(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$18(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$18(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
687
|
+
var APPEARANCE = {
|
|
688
|
+
'primary-action-button': 'utrecht-button-link--primary-action',
|
|
689
|
+
'secondary-action-button': 'utrecht-button-link--secondary-action',
|
|
690
|
+
'subtle-button': 'utrecht-button-link--subtle'
|
|
691
|
+
};
|
|
687
692
|
var onKeyDown = function onKeyDown(evt) {
|
|
688
693
|
var _evt$target;
|
|
689
694
|
if (evt.key === ' ' && typeof ((_evt$target = evt.target) === null || _evt$target === void 0 ? void 0 : _evt$target.click) === 'function') {
|
|
@@ -718,11 +723,8 @@ var ButtonLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
718
723
|
role: role || (placeholder ? 'link' : undefined),
|
|
719
724
|
className: clsx('utrecht-button-link', 'utrecht-button-link--html-a', {
|
|
720
725
|
'utrecht-button-link--external': external,
|
|
721
|
-
'utrecht-button-link--primary-action': appearance === 'primary-action-button',
|
|
722
|
-
'utrecht-button-link--secondary-action': appearance === 'secondary-action-button',
|
|
723
|
-
'utrecht-button-link--subtle': appearance === 'subtle-button',
|
|
724
726
|
'utrecht-button-link--placeholder': placeholder
|
|
725
|
-
}, className),
|
|
727
|
+
}, appearance && APPEARANCE[appearance], className),
|
|
726
728
|
rel: external ? 'external noopener noreferrer' : undefined,
|
|
727
729
|
"aria-disabled": placeholder ? 'true' : undefined
|
|
728
730
|
}, props), {}, {
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utrecht/component-library-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "React component library bundle for the Municipality of Utrecht based on the NL Design System architecture",
|
|
6
6
|
"keywords": [
|
|
@@ -119,20 +119,20 @@
|
|
|
119
119
|
"@utrecht/alert-css": "3.0.1",
|
|
120
120
|
"@utrecht/alert-dialog-css": "2.0.1",
|
|
121
121
|
"@utrecht/alternate-lang-nav-css": "2.0.1",
|
|
122
|
+
"@utrecht/article-css": "2.0.1",
|
|
122
123
|
"@utrecht/backdrop-css": "2.0.1",
|
|
123
124
|
"@utrecht/badge-counter-css": "2.0.1",
|
|
124
125
|
"@utrecht/badge-list-css": "3.0.1",
|
|
125
|
-
"@utrecht/article-css": "2.0.1",
|
|
126
|
-
"@utrecht/breadcrumb-nav-css": "2.1.0",
|
|
127
126
|
"@utrecht/blockquote-css": "2.0.1",
|
|
127
|
+
"@utrecht/breadcrumb-nav-css": "2.1.0",
|
|
128
128
|
"@utrecht/button-group-react": "1.1.3",
|
|
129
|
-
"@utrecht/button-react": "2.0.10",
|
|
130
129
|
"@utrecht/button-link-css": "2.0.1",
|
|
131
|
-
"@utrecht/
|
|
132
|
-
"@utrecht/
|
|
130
|
+
"@utrecht/button-react": "3.0.0",
|
|
131
|
+
"@utrecht/calendar-react": "1.0.16",
|
|
133
132
|
"@utrecht/card-css": "1.0.1",
|
|
134
|
-
"@utrecht/code-block-css": "2.0.1",
|
|
135
133
|
"@utrecht/card-react": "0.0.4",
|
|
134
|
+
"@utrecht/checkbox-react": "1.0.11",
|
|
135
|
+
"@utrecht/code-block-css": "2.0.1",
|
|
136
136
|
"@utrecht/code-css": "2.0.1",
|
|
137
137
|
"@utrecht/color-sample-css": "2.0.1",
|
|
138
138
|
"@utrecht/column-layout-css": "2.0.1",
|
|
@@ -140,60 +140,60 @@
|
|
|
140
140
|
"@utrecht/currency-data-css": "2.0.1",
|
|
141
141
|
"@utrecht/custom-checkbox-css": "2.0.1",
|
|
142
142
|
"@utrecht/data-badge-css": "2.0.1",
|
|
143
|
+
"@utrecht/data-badge-react": "1.0.7",
|
|
143
144
|
"@utrecht/data-list-css": "2.0.1",
|
|
144
145
|
"@utrecht/data-placeholder-css": "2.0.1",
|
|
145
146
|
"@utrecht/digid-button-css": "1.4.2",
|
|
146
|
-
"@utrecht/
|
|
147
|
+
"@utrecht/document-css": "2.0.1",
|
|
147
148
|
"@utrecht/drawer-css": "2.0.1",
|
|
148
149
|
"@utrecht/emphasis-css": "2.0.1",
|
|
149
150
|
"@utrecht/fieldset-react": "1.0.10",
|
|
150
|
-
"@utrecht/document-css": "2.0.1",
|
|
151
151
|
"@utrecht/figure-css": "2.0.1",
|
|
152
|
-
"@utrecht/form-field-checkbox-react": "1.1.3",
|
|
153
152
|
"@utrecht/focus-ring-css": "3.0.1",
|
|
153
|
+
"@utrecht/form-field-checkbox-react": "1.1.3",
|
|
154
154
|
"@utrecht/form-field-description-react": "1.0.10",
|
|
155
155
|
"@utrecht/form-field-error-message-react": "1.0.10",
|
|
156
|
+
"@utrecht/form-field-react": "1.0.10",
|
|
156
157
|
"@utrecht/form-label-react": "1.0.10",
|
|
157
158
|
"@utrecht/form-toggle-css": "2.0.1",
|
|
158
|
-
"@utrecht/form-field-react": "1.0.10",
|
|
159
159
|
"@utrecht/heading-1-css": "2.0.1",
|
|
160
160
|
"@utrecht/heading-2-css": "2.0.1",
|
|
161
161
|
"@utrecht/heading-3-css": "2.0.1",
|
|
162
162
|
"@utrecht/heading-4-css": "2.0.1",
|
|
163
163
|
"@utrecht/heading-5-css": "2.0.1",
|
|
164
164
|
"@utrecht/heading-6-css": "2.0.1",
|
|
165
|
+
"@utrecht/heading-group-css": "2.0.1",
|
|
165
166
|
"@utrecht/html-content-css": "2.0.1",
|
|
166
167
|
"@utrecht/iban-data-css": "2.0.1",
|
|
167
|
-
"@utrecht/heading-group-css": "2.0.1",
|
|
168
168
|
"@utrecht/icon-css": "3.0.1",
|
|
169
169
|
"@utrecht/img-css": "2.0.1",
|
|
170
170
|
"@utrecht/index-char-nav-css": "2.0.1",
|
|
171
171
|
"@utrecht/link-button-css": "2.0.1",
|
|
172
|
-
"@utrecht/link-
|
|
172
|
+
"@utrecht/link-list-css": "3.0.1",
|
|
173
173
|
"@utrecht/link-react": "1.0.10",
|
|
174
|
+
"@utrecht/link-social-css": "2.0.1",
|
|
174
175
|
"@utrecht/list-social-css": "2.0.1",
|
|
175
|
-
"@utrecht/listbox-react": "1.0.
|
|
176
|
-
"@utrecht/link-list-css": "3.0.1",
|
|
176
|
+
"@utrecht/listbox-react": "1.0.14",
|
|
177
177
|
"@utrecht/logo-button-css": "1.4.2",
|
|
178
178
|
"@utrecht/logo-css": "2.0.1",
|
|
179
179
|
"@utrecht/logo-image-css": "1.4.2",
|
|
180
180
|
"@utrecht/map-control-button-css": "3.0.1",
|
|
181
181
|
"@utrecht/map-marker-css": "2.0.1",
|
|
182
|
-
"@utrecht/multiline-data-css": "2.0.1",
|
|
183
182
|
"@utrecht/mark-css": "2.0.1",
|
|
183
|
+
"@utrecht/multiline-data-css": "2.0.1",
|
|
184
184
|
"@utrecht/nav-bar-css": "2.0.1",
|
|
185
185
|
"@utrecht/nav-list-css": "1.3.2",
|
|
186
186
|
"@utrecht/number-badge-css": "3.0.1",
|
|
187
187
|
"@utrecht/number-data-css": "2.0.1",
|
|
188
|
-
"@utrecht/open-forms-container-css": "2.0.
|
|
189
|
-
"@utrecht/open-forms-container-react": "1.0.
|
|
190
|
-
"@utrecht/page-content-css": "2.0.1",
|
|
188
|
+
"@utrecht/open-forms-container-css": "2.0.2",
|
|
189
|
+
"@utrecht/open-forms-container-react": "1.0.6",
|
|
191
190
|
"@utrecht/ordered-list-css": "3.0.1",
|
|
192
|
-
"@utrecht/page-
|
|
191
|
+
"@utrecht/page-content-css": "2.0.1",
|
|
193
192
|
"@utrecht/page-css": "2.0.1",
|
|
194
193
|
"@utrecht/page-footer-css": "3.0.1",
|
|
195
|
-
"@utrecht/
|
|
194
|
+
"@utrecht/page-header-css": "2.0.1",
|
|
196
195
|
"@utrecht/pagination-css": "2.0.3",
|
|
196
|
+
"@utrecht/paragraph-css": "3.0.1",
|
|
197
197
|
"@utrecht/pre-heading-css": "2.0.1",
|
|
198
198
|
"@utrecht/preserve-data-css": "2.0.1",
|
|
199
199
|
"@utrecht/radio-button-react": "1.0.10",
|
|
@@ -205,37 +205,37 @@
|
|
|
205
205
|
"@utrecht/spotlight-section-css": "2.0.1",
|
|
206
206
|
"@utrecht/status-badge-css": "1.0.0",
|
|
207
207
|
"@utrecht/subscript-css": "2.0.1",
|
|
208
|
-
"@utrecht/surface-css": "2.0.1",
|
|
209
208
|
"@utrecht/superscript-css": "2.0.1",
|
|
209
|
+
"@utrecht/surface-css": "2.0.1",
|
|
210
210
|
"@utrecht/table-css": "2.0.1",
|
|
211
211
|
"@utrecht/table-of-contents-css": "1.0.1",
|
|
212
212
|
"@utrecht/textarea-css": "3.0.1",
|
|
213
|
-
"@utrecht/textbox-react": "1.0.
|
|
214
|
-
"@utrecht/top-task-nav-css": "1.3.2",
|
|
213
|
+
"@utrecht/textbox-react": "1.0.13",
|
|
215
214
|
"@utrecht/top-task-link-css": "2.0.1",
|
|
215
|
+
"@utrecht/top-task-nav-css": "1.3.2",
|
|
216
216
|
"@utrecht/unordered-list-css": "2.0.1",
|
|
217
217
|
"@utrecht/url-data-css": "2.0.1",
|
|
218
218
|
"@utrecht/vega-visualization-css": "1.4.2"
|
|
219
219
|
},
|
|
220
220
|
"devDependencies": {
|
|
221
|
-
"@babel/core": "7.24.
|
|
221
|
+
"@babel/core": "7.24.9",
|
|
222
222
|
"@babel/plugin-transform-runtime": "7.24.7",
|
|
223
|
-
"@babel/preset-env": "7.24.
|
|
223
|
+
"@babel/preset-env": "7.24.8",
|
|
224
224
|
"@babel/preset-react": "7.24.7",
|
|
225
225
|
"@babel/preset-typescript": "7.24.7",
|
|
226
|
-
"@babel/runtime": "7.24.
|
|
226
|
+
"@babel/runtime": "7.24.8",
|
|
227
227
|
"@rollup/plugin-babel": "6.0.4",
|
|
228
|
-
"@rollup/plugin-commonjs": "26.0.
|
|
228
|
+
"@rollup/plugin-commonjs": "26.0.3",
|
|
229
229
|
"@rollup/plugin-json": "6.1.0",
|
|
230
|
-
"@rollup/plugin-node-resolve": "15.2.
|
|
231
|
-
"@rollup/plugin-typescript": "12.1.
|
|
230
|
+
"@rollup/plugin-node-resolve": "15.2.4",
|
|
231
|
+
"@rollup/plugin-typescript": "12.1.4",
|
|
232
232
|
"@testing-library/dom": "8.20.1",
|
|
233
233
|
"@testing-library/jest-dom": "5.17.0",
|
|
234
234
|
"@testing-library/react": "13.4.0",
|
|
235
|
-
"@testing-library/user-event": "14.5.
|
|
236
|
-
"@types/jest": "29.5.
|
|
235
|
+
"@testing-library/user-event": "14.5.2",
|
|
236
|
+
"@types/jest": "29.5.14",
|
|
237
237
|
"@types/lodash.chunk": "4.2.9",
|
|
238
|
-
"@types/react": "18.3.
|
|
238
|
+
"@types/react": "18.3.27",
|
|
239
239
|
"@types/testing-library__jest-dom": "5.14.9",
|
|
240
240
|
"gatsby": "5.12.12",
|
|
241
241
|
"jest": "29.7.0",
|
|
@@ -244,19 +244,19 @@
|
|
|
244
244
|
"react": "18.3.1",
|
|
245
245
|
"react-dom": "18.3.1",
|
|
246
246
|
"react-vega": "7.6.0",
|
|
247
|
-
"rimraf": "5.0.
|
|
247
|
+
"rimraf": "5.0.10",
|
|
248
248
|
"rollup": "4.23.0",
|
|
249
249
|
"rollup-plugin-delete": "2.0.0",
|
|
250
250
|
"rollup-plugin-filesize": "10.0.0",
|
|
251
|
-
"rollup-plugin-node-externals": "7.1.
|
|
251
|
+
"rollup-plugin-node-externals": "7.1.3",
|
|
252
252
|
"rollup-plugin-node-polyfills": "0.2.1",
|
|
253
253
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
254
254
|
"rollup-plugin-postcss": "4.0.2",
|
|
255
255
|
"rollup-plugin-typescript2": "0.36.0",
|
|
256
|
-
"sass": "1.69.
|
|
256
|
+
"sass": "1.69.7",
|
|
257
257
|
"sort-package-json": "2.11.0",
|
|
258
|
-
"tslib": "2.6.
|
|
259
|
-
"typescript": "5.6.
|
|
258
|
+
"tslib": "2.6.3",
|
|
259
|
+
"typescript": "5.6.3",
|
|
260
260
|
"vega": "5.26.1",
|
|
261
261
|
"vega-embed": "6.23.0",
|
|
262
262
|
"vega-lite": "5.16.3",
|