@amsterdam/design-system-react 3.2.1 → 3.3.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/Breadcrumb/Breadcrumb.d.ts +18 -2
- package/dist/Breadcrumb/Breadcrumb.js +7 -3
- package/dist/Logo/Logo.d.ts +1 -1
- package/dist/Logo/Logo.js +13 -8
- package/dist/Logo/{brand/LogoVgaVerzekeringen.d.ts → brands/AmsterdamEnglishLogo.d.ts} +2 -2
- package/dist/Logo/brands/AmsterdamEnglishLogo.js +5 -0
- package/dist/Logo/{brand/LogoAmsterdam.d.ts → brands/AmsterdamLogo.d.ts} +2 -2
- package/dist/Logo/brands/AmsterdamLogo.js +5 -0
- package/dist/Logo/brands/GgdAmsterdamInspectieLogo.d.ts +7 -0
- package/dist/Logo/brands/GgdAmsterdamInspectieLogo.js +5 -0
- package/dist/Logo/{brand/LogoGgdAmsterdam.d.ts → brands/GgdAmsterdamLogo.d.ts} +2 -2
- package/dist/Logo/brands/GgdAmsterdamLogo.js +5 -0
- package/dist/Logo/{brand/LogoMuseumWeesp.d.ts → brands/MuseumWeespLogo.d.ts} +2 -2
- package/dist/Logo/brands/MuseumWeespLogo.js +5 -0
- package/dist/Logo/{brand/LogoStadsarchief.d.ts → brands/StadsarchiefLogo.d.ts} +2 -2
- package/dist/Logo/brands/StadsarchiefLogo.js +5 -0
- package/dist/Logo/{brand/LogoStadsbankVanLening.d.ts → brands/StadsbankVanLeningLogo.d.ts} +2 -2
- package/dist/Logo/brands/StadsbankVanLeningLogo.js +5 -0
- package/dist/Logo/{brand/LogoAmsterdamEnglish.d.ts → brands/VgaVerzekeringenLogo.d.ts} +2 -2
- package/dist/Logo/brands/VgaVerzekeringenLogo.js +5 -0
- package/dist/Logo/brands/index.d.ts +12 -0
- package/dist/Logo/brands/index.js +12 -0
- package/dist/Menu/Menu.d.ts +3 -3
- package/dist/Menu/Menu.js +1 -1
- package/dist/PageHeader/PageHeader.d.ts +8 -2
- package/dist/PageHeader/PageHeader.js +1 -1
- package/dist/Pagination/LinkItem.js +1 -1
- package/dist/Pagination/Pagination.js +1 -1
- package/dist/ProgressList/ProgressList.d.ts +2 -0
- package/dist/ProgressList/ProgressList.js +15 -6
- package/dist/ProgressList/ProgressListStep.d.ts +14 -0
- package/dist/ProgressList/ProgressListStep.js +11 -4
- package/dist/index.cjs.js +169 -108
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +38 -7
- package/dist/index.esm.js +169 -108
- package/dist/index.esm.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +12 -10
- package/dist/Logo/brand/LogoAmsterdam.js +0 -6
- package/dist/Logo/brand/LogoAmsterdamEnglish.js +0 -6
- package/dist/Logo/brand/LogoGgdAmsterdam.js +0 -6
- package/dist/Logo/brand/LogoMuseumWeesp.js +0 -6
- package/dist/Logo/brand/LogoStadsarchief.js +0 -6
- package/dist/Logo/brand/LogoStadsbankVanLening.js +0 -6
- package/dist/Logo/brand/LogoVgaVerzekeringen.js +0 -6
- package/dist/Logo/brand/index.d.ts +0 -11
- package/dist/Logo/brand/index.js +0 -11
|
@@ -3,11 +3,27 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { HTMLAttributes, PropsWithChildren } from 'react';
|
|
6
|
-
export type BreadcrumbProps =
|
|
6
|
+
export type BreadcrumbProps = {
|
|
7
|
+
/** The accessible name for the component. */
|
|
8
|
+
accessibleName?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Connects the component with an internal element that defines its accessible name.
|
|
11
|
+
* Note: must be unique for the page.
|
|
12
|
+
*/
|
|
13
|
+
accessibleNameId?: string;
|
|
14
|
+
} & PropsWithChildren<HTMLAttributes<HTMLElement>>;
|
|
7
15
|
/**
|
|
8
16
|
* @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-breadcrumb--docs Breadcrumb docs at Amsterdam Design System}
|
|
9
17
|
*/
|
|
10
|
-
export declare const Breadcrumb: import("react").ForwardRefExoticComponent<
|
|
18
|
+
export declare const Breadcrumb: import("react").ForwardRefExoticComponent<{
|
|
19
|
+
/** The accessible name for the component. */
|
|
20
|
+
accessibleName?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Connects the component with an internal element that defines its accessible name.
|
|
23
|
+
* Note: must be unique for the page.
|
|
24
|
+
*/
|
|
25
|
+
accessibleNameId?: string;
|
|
26
|
+
} & HTMLAttributes<HTMLElement> & {
|
|
11
27
|
children?: import("react").ReactNode | undefined;
|
|
12
28
|
} & import("react").RefAttributes<HTMLElement>> & {
|
|
13
29
|
Link: import("react").ForwardRefExoticComponent<import("./BreadcrumbLink").BreadcrumbLinkProps & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { clsx } from 'clsx';
|
|
3
|
-
import { forwardRef } from 'react';
|
|
3
|
+
import { forwardRef, useId } from 'react';
|
|
4
4
|
import { BreadcrumbLink } from './BreadcrumbLink';
|
|
5
|
-
const BreadcrumbRoot = forwardRef(({ children, className, ...restProps }, ref) =>
|
|
5
|
+
const BreadcrumbRoot = forwardRef(({ accessibleName, accessibleNameId, children, className, ...restProps }, ref) => {
|
|
6
|
+
const generatedId = useId();
|
|
7
|
+
const labelId = accessibleNameId || generatedId;
|
|
8
|
+
return (_jsxs("nav", { ...restProps, "aria-labelledby": labelId, className: clsx('ams-breadcrumb', className), ref: ref, children: [_jsx("h2", { "aria-hidden": true, className: "ams-visually-hidden", id: labelId, children: accessibleName || 'Kruimelpad' }), _jsx("ol", { className: "ams-breadcrumb__list", children: children })] }));
|
|
9
|
+
});
|
|
6
10
|
BreadcrumbRoot.displayName = 'Breadcrumb';
|
|
7
11
|
/**
|
|
8
12
|
* @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-breadcrumb--docs Breadcrumb docs at Amsterdam Design System}
|
package/dist/Logo/Logo.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { ComponentType, SVGProps } from 'react';
|
|
6
|
-
export declare const logoBrands: readonly ["amsterdam", "amsterdam-english", "ggd-amsterdam", "museum-weesp", "stadsarchief", "stadsbank-van-lening", "vga-verzekeringen"];
|
|
6
|
+
export declare const logoBrands: readonly ["amsterdam", "amsterdam-english", "ggd-amsterdam", "ggd-amsterdam-inspectie", "museum-weesp", "stadsarchief", "stadsbank-van-lening", "vga-verzekeringen"];
|
|
7
7
|
export type LogoBrand = (typeof logoBrands)[number];
|
|
8
8
|
export type LogoProps = {
|
|
9
9
|
/** The name of the brand for which to display the logo, or configuration for a custom logo. */
|
package/dist/Logo/Logo.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { clsx } from 'clsx';
|
|
3
3
|
import { forwardRef } from 'react';
|
|
4
|
-
import {
|
|
4
|
+
import { AmsterdamEnglishLogo, AmsterdamLogo, GgdAmsterdamInspectieLogo, GgdAmsterdamLogo, MuseumWeespLogo, StadsarchiefLogo, StadsbankVanLeningLogo, VgaVerzekeringenLogo, } from './brands';
|
|
5
5
|
export const logoBrands = [
|
|
6
6
|
'amsterdam',
|
|
7
7
|
'amsterdam-english',
|
|
8
8
|
'ggd-amsterdam',
|
|
9
|
+
'ggd-amsterdam-inspectie',
|
|
9
10
|
'museum-weesp',
|
|
10
11
|
'stadsarchief',
|
|
11
12
|
'stadsbank-van-lening',
|
|
@@ -14,31 +15,35 @@ export const logoBrands = [
|
|
|
14
15
|
const logoConfig = {
|
|
15
16
|
amsterdam: {
|
|
16
17
|
label: 'Gemeente Amsterdam logo',
|
|
17
|
-
svg:
|
|
18
|
+
svg: AmsterdamLogo,
|
|
18
19
|
},
|
|
19
20
|
'amsterdam-english': {
|
|
20
21
|
label: 'City of Amsterdam logo',
|
|
21
|
-
svg:
|
|
22
|
+
svg: AmsterdamEnglishLogo,
|
|
22
23
|
},
|
|
23
24
|
'ggd-amsterdam': {
|
|
24
25
|
label: 'GGD Amsterdam logo',
|
|
25
|
-
svg:
|
|
26
|
+
svg: GgdAmsterdamLogo,
|
|
27
|
+
},
|
|
28
|
+
'ggd-amsterdam-inspectie': {
|
|
29
|
+
label: 'GGD Amsterdam Inspectie logo',
|
|
30
|
+
svg: GgdAmsterdamInspectieLogo,
|
|
26
31
|
},
|
|
27
32
|
'museum-weesp': {
|
|
28
33
|
label: 'Gemeente Amsterdam Museum Weesp logo',
|
|
29
|
-
svg:
|
|
34
|
+
svg: MuseumWeespLogo,
|
|
30
35
|
},
|
|
31
36
|
stadsarchief: {
|
|
32
37
|
label: 'Gemeente Amsterdam Stadsarchief logo',
|
|
33
|
-
svg:
|
|
38
|
+
svg: StadsarchiefLogo,
|
|
34
39
|
},
|
|
35
40
|
'stadsbank-van-lening': {
|
|
36
41
|
label: 'Gemeente Amsterdam Stadsbank van Lening logo',
|
|
37
|
-
svg:
|
|
42
|
+
svg: StadsbankVanLeningLogo,
|
|
38
43
|
},
|
|
39
44
|
'vga-verzekeringen': {
|
|
40
45
|
label: 'Gemeente Amsterdam VGA Verzekeringen logo',
|
|
41
|
-
svg:
|
|
46
|
+
svg: VgaVerzekeringenLogo,
|
|
42
47
|
},
|
|
43
48
|
};
|
|
44
49
|
/**
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { SVGProps } from 'react';
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const AmsterdamEnglishLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default AmsterdamEnglishLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const AmsterdamEnglishLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 115 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 37.683 3.532-3.532L0 30.62l2.355-2.355 3.532 3.532 3.532-3.532 2.355 2.355-3.532 3.532 3.532 3.532L9.419 40l-3.532-3.532L2.355 40zM0 9.406l3.532-3.532L0 2.342 2.355-.013l3.532 3.532L9.419-.013l2.355 2.354-3.532 3.532 3.532 3.532-2.355 2.355-3.532-3.532-3.532 3.532zm0 14.151 3.532-3.532L0 16.493l2.355-2.355 3.532 3.532 3.532-3.532 2.355 2.355-3.532 3.532 3.532 3.532-2.355 2.355-3.532-3.532-3.532 3.531z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-primary", d: "M16.456 8.579c0-3.795 2.613-6.408 6.389-6.408 1.812 0 3.376.648 4.558 1.869l-1.659 1.602c-.706-.801-1.717-1.24-2.88-1.24-2.251 0-3.815 1.717-3.815 4.196 0 2.46 1.583 4.196 3.834 4.196 1.183 0 2.27-.458 2.956-1.24l1.64 1.583c-1.125 1.221-2.746 1.888-4.616 1.888-3.776 0-6.408-2.632-6.408-6.447m14-4.404c-.82 0-1.411-.572-1.411-1.373s.591-1.373 1.411-1.373 1.411.572 1.411 1.373-.591 1.373-1.411 1.373m-1.183 1.202h2.365v9.421h-2.365zm5.531 6.045V7.34h-1.621V5.375h.858c.782 0 1.087-.305 1.087-1.087V2.819h2.022v2.556h2.289V7.34h-2.289v4.082c0 .915.477 1.43 1.354 1.43.267 0 .591-.038.782-.095v1.984c-.286.076-.82.133-1.24.133-2.136 0-3.242-1.182-3.242-3.452m6.18 5.626 1.488-1.488c.534.629 1.335.954 2.346.954 1.392 0 2.213-.801 2.213-2.155v-1.411h-.038c-.42.935-1.278 1.507-2.327 1.507-2.308 0-3.49-1.335-3.49-3.948V5.375h2.365v4.692c0 1.583.553 2.327 1.698 2.327 1.163 0 1.812-.858 1.812-2.384V5.375h2.365v9.079c0 2.518-1.774 4.101-4.558 4.101-1.717 0-3.033-.515-3.872-1.507m15.141-6.962c0-2.88 2.098-4.94 5.016-4.94s5.016 2.06 5.016 4.94-2.098 4.94-5.016 4.94-5.016-2.06-5.016-4.94m5.016 2.88c1.526 0 2.594-1.182 2.594-2.88s-1.068-2.88-2.594-2.88-2.594 1.183-2.594 2.88 1.068 2.88 2.594 2.88m7.534-5.626h-1.602V5.375h1.602V4.154c0-2.155 1.278-3.414 3.471-3.414.267 0 .668.038.877.076v2.041a3.7 3.7 0 0 0-.82-.095c-.744 0-1.163.496-1.163 1.392v1.221h2.289V7.34h-2.289v7.457h-2.365zM20.9 25.287h2.861l4.959 12.397h-2.651l-1.03-2.727h-5.512l-1.03 2.727h-2.556zm-.629 7.61h4.005l-1.984-5.226h-.038zm10.013-4.635h2.212v1.278h.038c.477-.973 1.316-1.507 2.403-1.507 1.221 0 2.136.534 2.708 1.602.572-1.03 1.621-1.602 2.956-1.602 2.327 0 3.452 1.297 3.452 3.948v5.703h-2.365v-5.302c0-1.545-.534-2.289-1.64-2.289s-1.697.82-1.697 2.365v5.226h-2.365v-5.302c0-1.564-.515-2.289-1.64-2.289-1.087 0-1.697.839-1.697 2.365v5.226h-2.365zm18.118 5.474c-1.278-.381-2.518-1.068-2.518-2.785 0-1.736 1.45-2.918 3.605-2.918 1.449 0 2.575.515 3.204 1.469l-1.354 1.354c-.477-.591-1.125-.916-1.831-.916-.801 0-1.297.362-1.297.935 0 .763.801.896 1.965 1.259 1.278.381 2.518 1.068 2.518 2.785 0 1.774-1.526 2.994-3.776 2.994-1.469 0-2.651-.515-3.338-1.488l1.354-1.354c.515.61 1.202.935 1.965.935.916 0 1.469-.382 1.469-1.011 0-.763-.801-.896-1.965-1.259m6.789.572v-4.082h-1.621v-1.965h.858c.782 0 1.087-.305 1.087-1.087v-1.469h2.022v2.556h2.289v1.965h-2.289v4.082c0 .916.477 1.43 1.354 1.43.267 0 .591-.038.782-.095v1.984c-.286.076-.82.134-1.24.134-2.136 0-3.242-1.183-3.242-3.452m5.798-1.336c0-2.918 1.964-4.94 4.768-4.94s4.749 2.003 4.749 4.883c0 .229-.038.591-.076.839h-7.057c.172 1.278 1.259 2.136 2.651 2.136 1.03 0 1.926-.381 2.518-1.068l1.43 1.392c-.858 1.106-2.346 1.698-4.063 1.698-2.899 0-4.921-2.041-4.921-4.94m2.384-.954h4.749c-.153-1.24-1.106-2.079-2.384-2.079s-2.231.839-2.365 2.079m9.099-3.757h2.231v1.564h.038c.458-1.068 1.297-1.64 2.403-1.64.286 0 .687.038.839.095v2.251c-.267-.076-.782-.133-1.163-.133-1.202 0-1.984.916-1.984 2.327v4.959h-2.365zm6.179 4.749c0-2.918 1.926-4.978 4.654-4.978 1.259 0 2.289.553 2.937 1.564h.038v-5.741h2.365v13.828h-2.232v-1.469h-.038c-.61 1.068-1.755 1.698-3.071 1.698-2.727 0-4.654-2.041-4.654-4.902m7.629-.038c0-1.697-1.049-2.823-2.594-2.823-1.564 0-2.613 1.144-2.613 2.823s1.049 2.823 2.613 2.823c1.545 0 2.594-1.125 2.594-2.823m4.178 2.022c0-1.812 1.507-2.899 4.024-2.918l1.831-.019v-.305c0-1.106-.706-1.678-1.984-1.678-.839 0-1.583.324-2.098.915l-1.43-1.392c.82-1.011 2.136-1.564 3.757-1.564 2.518 0 4.12 1.373 4.12 3.567v3.738c0 .343.153.496.534.496h.172v1.85h-1.106c-.896 0-1.507-.42-1.697-1.106h-.038c-.591.858-1.564 1.335-2.746 1.335-1.984 0-3.338-1.183-3.338-2.918m5.855-.82v-.534l-1.564.019c-1.24.019-1.907.458-1.907 1.278 0 .725.572 1.24 1.373 1.24 1.24 0 2.098-.82 2.098-2.003m4.92-5.914h2.212v1.278h.038c.477-.973 1.316-1.507 2.403-1.507 1.221 0 2.136.534 2.708 1.602.572-1.03 1.621-1.602 2.956-1.602 2.327 0 3.452 1.297 3.452 3.948v5.703h-2.365v-5.302c0-1.545-.534-2.289-1.64-2.289s-1.698.82-1.698 2.365v5.226h-2.365v-5.302c0-1.564-.515-2.289-1.64-2.289-1.087 0-1.697.839-1.697 2.365v5.226h-2.365z", fill: "#EC0000" })] })));
|
|
4
|
+
AmsterdamEnglishLogo.displayName = 'AmsterdamEnglishLogo';
|
|
5
|
+
export default AmsterdamEnglishLogo;
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { SVGProps } from 'react';
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const AmsterdamLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default AmsterdamLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const AmsterdamLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 115 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 37.648 3.527-3.527L0 30.593l2.352-2.351 3.527 3.527 3.528-3.527 2.351 2.351-3.527 3.528 3.527 3.527L9.407 40l-3.528-3.527L2.352 40zM0 23.54l3.527-3.528L0 16.485l2.352-2.352 3.527 3.528 3.528-3.528 2.351 2.352-3.527 3.527 3.527 3.528-2.351 2.351-3.528-3.527-3.527 3.527zM0 9.407l3.527-3.528L0 2.352 2.352 0l3.527 3.527L9.407 0l2.351 2.352-3.527 3.527 3.527 3.528-2.351 2.351-3.528-3.527-3.526 3.527z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-primary", d: "M16.435 8.581c0-3.752 2.63-6.4 6.344-6.4 1.886 0 3.466.61 4.59 1.829l-1.638 1.56c-.704-.78-1.714-1.238-2.915-1.238-2.248 0-3.81 1.752-3.81 4.248s1.524 4.324 3.715 4.324c2 0 3.391-1.143 3.391-2.8v-.323h-2.99V7.705h5.505V9.63c0 3.162-2.457 5.39-5.981 5.39s-6.21-2.666-6.21-6.438Zm13.79 1.505c0-2.915 1.962-4.934 4.762-4.934s4.743 2 4.743 4.876c0 .229-.037.59-.076.839h-7.048C32.778 12.143 33.863 13 35.254 13c1.029 0 1.924-.381 2.514-1.067l1.428 1.391c-.857 1.106-2.343 1.696-4.057 1.696-2.895 0-4.915-2.038-4.915-4.934zm2.381-.952h4.743c-.152-1.238-1.105-2.077-2.38-2.077-1.276 0-2.229.839-2.363 2.077m11.296-3.752v1.275h.038c.476-.97 1.314-1.505 2.4-1.505 1.219 0 2.132.534 2.704 1.6.571-1.028 1.62-1.6 2.952-1.6 2.324 0 3.448 1.296 3.448 3.943v5.696h-2.362V9.495c0-1.543-.534-2.286-1.638-2.286s-1.696.82-1.696 2.362v5.22h-2.362V9.495c0-1.562-.514-2.286-1.638-2.286s-1.695.838-1.695 2.362v5.22H41.69V5.38h2.212Zm13.41 4.704c0-2.915 1.963-4.934 4.762-4.934 2.8 0 4.744 2 4.744 4.876 0 .229-.038.59-.077.839h-7.048C59.865 12.143 60.95 13 62.341 13c1.03 0 1.924-.381 2.514-1.067l1.429 1.391c-.857 1.106-2.344 1.696-4.058 1.696-2.895 0-4.915-2.038-4.915-4.934zm2.381-.952h4.743c-.152-1.238-1.105-2.077-2.38-2.077-1.276 0-2.229.839-2.363 2.077m8.496.952c0-2.915 1.962-4.934 4.762-4.934s4.743 2 4.743 4.876c0 .229-.038.59-.077.839H70.57C70.74 12.143 71.827 13 73.218 13c1.028 0 1.923-.381 2.513-1.067l1.429 1.391c-.857 1.106-2.343 1.696-4.058 1.696-2.895 0-4.915-2.038-4.915-4.934zm2.38-.952h4.744c-.153-1.238-1.105-2.077-2.381-2.077s-2.228.839-2.362 2.077Zm11.314-3.752v1.275h.038c.438-.933 1.39-1.505 2.495-1.505 2.362 0 3.582 1.353 3.582 3.943v5.696h-2.363V9.552c0-1.6-.571-2.343-1.772-2.343-1.2 0-1.847.838-1.847 2.4v5.18h-2.362V5.382h2.23Zm9.143 6.038V7.342h-1.619V5.381h.858c.78 0 1.085-.305 1.085-1.086V2.83h2.019v2.553h2.285v1.962H93.37v4.077c0 .915.476 1.428 1.352 1.428.267 0 .59-.037.78-.095v1.981c-.285.077-.819.133-1.238.133-2.133 0-3.238-1.18-3.238-3.447l.001-.002Zm5.791-1.334c0-2.915 1.963-4.934 4.762-4.934 2.8 0 4.744 2 4.744 4.876 0 .229-.038.59-.077.839h-7.048c.172 1.276 1.257 2.133 2.648 2.133 1.029 0 1.924-.381 2.514-1.067l1.429 1.391c-.857 1.106-2.344 1.696-4.058 1.696-2.895 0-4.915-2.038-4.915-4.934zm2.381-.952h4.744c-.153-1.238-1.106-2.077-2.382-2.077-1.275 0-2.228.839-2.362 2.077M23.73 25.267l4.952 12.381h-2.647l-1.03-2.724H19.5l-1.028 2.724h-2.553l4.953-12.38zm-3.486 7.6h4l-1.982-5.219h-.037zm12.21-4.627v1.275h.038c.476-.97 1.315-1.505 2.4-1.505 1.22 0 2.133.534 2.704 1.6.572-1.028 1.62-1.6 2.953-1.6 2.323 0 3.447 1.296 3.447 3.944v5.696h-2.362v-5.296c0-1.543-.534-2.286-1.638-2.286s-1.695.82-1.695 2.362v5.22h-2.363v-5.296c0-1.562-.514-2.286-1.638-2.286s-1.695.838-1.695 2.362v5.22h-2.362v-9.41zm15.886 5.466c-1.275-.381-2.513-1.067-2.513-2.78 0-1.715 1.447-2.916 3.6-2.916 1.448 0 2.572.514 3.2 1.466l-1.351 1.353c-.477-.59-1.124-.915-1.829-.915-.8 0-1.296.362-1.296.933 0 .762.8.895 1.963 1.257 1.276.381 2.514 1.067 2.514 2.781s-1.524 2.99-3.772 2.99c-1.466 0-2.648-.514-3.334-1.486l1.353-1.352c.513.609 1.2.934 1.962.934.915 0 1.466-.381 1.466-1.01 0-.762-.8-.895-1.962-1.258v.003Zm6.782.571v-4.076h-1.62v-1.963h.858c.78 0 1.085-.304 1.085-1.085v-1.466h2.019v2.552h2.286v1.963h-2.286v4.076c0 .915.476 1.43 1.352 1.43.267 0 .59-.038.78-.096v1.981c-.285.077-.819.133-1.237.133-2.133 0-3.238-1.18-3.238-3.447v-.002Zm5.789-1.333c0-2.915 1.963-4.934 4.763-4.934s4.743 2 4.743 4.876c0 .228-.038.59-.077.839h-7.048c.172 1.276 1.257 2.133 2.648 2.133 1.03 0 1.924-.381 2.514-1.067l1.429 1.391c-.857 1.105-2.343 1.696-4.058 1.696-2.895 0-4.915-2.038-4.915-4.934zm2.381-.952h4.744c-.153-1.239-1.106-2.077-2.381-2.077-1.276 0-2.229.838-2.363 2.077m11.315-3.752v1.56h.038c.457-1.066 1.296-1.638 2.4-1.638.285 0 .685.038.838.095v2.248c-.267-.076-.78-.132-1.162-.132-1.2 0-1.98.914-1.98 2.323v4.953h-2.363v-9.41zm3.944 4.743c0-2.915 1.924-4.972 4.648-4.972 1.257 0 2.286.553 2.934 1.562h.037V23.84h2.362v13.81h-2.228v-1.467h-.037c-.61 1.067-1.752 1.696-3.067 1.696-2.724 0-4.648-2.038-4.648-4.895zm7.62-.038c0-1.695-1.048-2.82-2.591-2.82s-2.61 1.143-2.61 2.82 1.049 2.82 2.61 2.82 2.59-1.124 2.59-2.82Zm4.169 2.018c0-1.81 1.506-2.895 4.02-2.915l1.828-.019v-.304c0-1.106-.704-1.677-1.981-1.677-.838 0-1.581.323-2.095.915l-1.429-1.391c.82-1.01 2.133-1.562 3.752-1.562 2.514 0 4.114 1.371 4.114 3.562v3.733c0 .343.153.495.534.495h.172v1.847H98.15c-.895 0-1.506-.418-1.696-1.105h-.038c-.59.857-1.561 1.333-2.743 1.333-1.981 0-3.333-1.18-3.333-2.914zm5.848-.82v-.534l-1.561.02c-1.238.018-1.905.457-1.905 1.275 0 .724.571 1.238 1.37 1.238 1.239 0 2.096-.82 2.096-2zm7.124-5.903v1.275h.038c.476-.97 1.315-1.505 2.4-1.505 1.219 0 2.133.534 2.704 1.6.572-1.028 1.619-1.6 2.953-1.6 2.323 0 3.447 1.296 3.447 3.944v5.696h-2.362v-5.296c0-1.543-.534-2.286-1.638-2.286s-1.695.82-1.695 2.362v5.22h-2.363v-5.296c0-1.562-.513-2.286-1.638-2.286s-1.695.838-1.695 2.362v5.22h-2.362v-9.41z", fill: "#EC0000" })] })));
|
|
4
|
+
AmsterdamLogo.displayName = 'AmsterdamLogo';
|
|
5
|
+
export default AmsterdamLogo;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license EUPL-1.2+
|
|
3
|
+
* Copyright Gemeente Amsterdam
|
|
4
|
+
*/
|
|
5
|
+
import type { SVGProps } from 'react';
|
|
6
|
+
declare const GgdAmsterdamInspectieLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default GgdAmsterdamInspectieLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const GgdAmsterdamInspectieLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 89.197 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 9.09 3.41-3.408L0 2.272 2.273 0l3.409 3.41L9.09 0l2.273 2.273-3.41 3.409 3.41 3.409-2.273 2.273-3.41-3.41-3.407 3.41Zm0 13.66 3.41-3.41L0 15.933l2.273-2.273 3.409 3.41 3.409-3.41 2.273 2.273-3.41 3.409 3.41 3.409-2.273 2.273-3.41-3.41-3.408 3.41Zm0 13.635 3.41-3.409L0 29.567l2.273-2.273 3.409 3.41 3.409-3.41 2.273 2.273-3.41 3.41 3.41 3.408-2.273 2.273-3.41-3.41-3.408 3.41Z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-secondary", d: "M16.985 5.66c0-2.753 1.929-4.696 4.655-4.696 1.384 0 2.544.447 3.368 1.342l-1.202 1.146c-.517-.573-1.258-.909-2.139-.909-1.649 0-2.796 1.286-2.796 3.117s1.119 3.173 2.727 3.173c1.468 0 2.487-.839 2.487-2.055v-.237h-2.194V5.017h4.04v1.411c0 2.32-1.804 3.956-4.389 3.956s-4.557-1.957-4.557-4.724Zm10.204 0c0-2.753 1.928-4.696 4.654-4.696 1.384 0 2.544.447 3.368 1.342L34.01 3.452c-.517-.573-1.258-.909-2.139-.909-1.649 0-2.795 1.286-2.795 3.117s1.118 3.173 2.726 3.173c1.468 0 2.488-.839 2.488-2.055v-.237h-2.195V5.017h4.04v1.411c0 2.32-1.803 3.956-4.389 3.956S27.19 8.427 27.19 5.66Zm10.637-4.528h3.383c2.796 0 4.655 1.817 4.655 4.543s-1.901 4.543-4.669 4.543h-3.368V1.132Zm3.242 7.506c1.748 0 2.893-1.132 2.893-2.95s-1.118-2.977-2.88-2.977h-1.41v5.926zM16.964 36.002h1.23v-6.261h-1.23v-1.412h4.304v1.412h-1.23v6.261h1.23v1.412h-4.304zm5.813-5.493h1.635v.936h.029c.322-.685 1.02-1.104 1.83-1.104 1.734 0 2.628.992 2.628 2.893v4.18h-1.733v-3.845c0-1.174-.42-1.719-1.3-1.719s-1.356.615-1.356 1.761v3.803h-1.733zm9.281 4.011c-.936-.279-1.845-.783-1.845-2.04s1.062-2.139 2.641-2.139c1.063 0 1.888.377 2.348 1.076l-.992.992c-.35-.433-.825-.67-1.342-.67-.587 0-.95.265-.95.685 0 .559.588.657 1.44.922.936.28 1.846.783 1.846 2.041s-1.119 2.195-2.767 2.195c-1.077 0-1.944-.378-2.446-1.09l.992-.992c.377.448.88.685 1.44.685.67 0 1.076-.28 1.076-.74 0-.56-.588-.658-1.44-.924Zm4.53-4.01h1.648v1.075h.029c.42-.783 1.258-1.244 2.265-1.244 1.97 0 3.383 1.495 3.383 3.592S42.5 37.58 40.53 37.58c-.937 0-1.706-.406-2.181-1.147h-.029v3.565h-1.733v-9.491Zm5.548 3.451c0-1.244-.768-2.068-1.9-2.068s-1.915.839-1.915 2.068.783 2.069 1.914 2.069 1.901-.825 1.901-2.069m2.781 0c0-2.138 1.44-3.62 3.494-3.62s3.481 1.468 3.481 3.578c0 .169-.028.433-.056.615h-5.171c.126.937.922 1.566 1.943 1.566.754 0 1.411-.28 1.845-.783l1.048 1.02c-.63.81-1.72 1.245-2.977 1.245-2.125 0-3.606-1.496-3.606-3.62Zm1.748-.698h3.48c-.11-.91-.81-1.524-1.746-1.524s-1.635.614-1.733 1.524Zm6.233.698c0-2.152 1.44-3.62 3.564-3.62 1.05 0 1.971.39 2.558 1.09l-1.16 1.09c-.35-.391-.838-.602-1.397-.602-1.063 0-1.789.839-1.789 2.041s.727 2.041 1.789 2.041c.559 0 1.048-.21 1.426-.615l1.146 1.09c-.615.713-1.524 1.105-2.558 1.105-2.125 0-3.578-1.469-3.578-3.62Zm7.855.979v-2.991h-1.188v-1.44h.63c.572 0 .796-.224.796-.797v-1.076h1.482v1.873h1.677v1.44h-1.677v2.99c0 .671.349 1.05.992 1.05.195 0 .433-.029.572-.07v1.453c-.209.055-.6.097-.909.097-1.566 0-2.376-.867-2.376-2.53Zm5.591-5.312c-.6 0-1.034-.419-1.034-1.006s.433-1.007 1.034-1.007 1.034.42 1.034 1.007-.433 1.006-1.034 1.006m-.867.881h1.733v6.905h-1.733zm3.173 3.452c0-2.138 1.44-3.62 3.494-3.62s3.481 1.468 3.481 3.578c0 .169-.028.433-.056.615h-5.171c.126.937.922 1.566 1.943 1.566.754 0 1.411-.28 1.845-.783l1.048 1.02c-.63.81-1.72 1.245-2.977 1.245-2.125 0-3.606-1.496-3.606-3.62Zm1.748-.698h3.48c-.111-.91-.81-1.524-1.747-1.524s-1.635.614-1.733 1.524", fill: "#000" }), _jsx("path", { className: "ams-logo__text-primary", d: "M20.234 14.82h2.097l3.634 9.085h-1.943l-.755-2h-4.04l-.754 2H16.6zm-.461 5.577h2.935l-1.453-3.83h-.029zM27.11 17h1.622v.936h.028c.35-.712.965-1.104 1.762-1.104.894 0 1.566.39 1.985 1.174.42-.755 1.187-1.174 2.166-1.174 1.705 0 2.53.95 2.53 2.893v4.18h-1.734v-3.886c0-1.131-.39-1.677-1.202-1.677s-1.244.601-1.244 1.733v3.83H31.29v-3.886c0-1.146-.378-1.677-1.203-1.677s-1.244.615-1.244 1.733v3.83H27.11zm13.279 4.011c-.937-.28-1.846-.783-1.846-2.04s1.063-2.14 2.642-2.14c1.063 0 1.886.378 2.348 1.077l-.992.992c-.35-.433-.825-.67-1.342-.67-.588 0-.95.265-.95.685 0 .559.587.656 1.44.922.936.28 1.845.783 1.845 2.041s-1.118 2.195-2.767 2.195c-1.076 0-1.943-.378-2.447-1.09l.992-.992c.378.447.881.685 1.44.685.67 0 1.076-.28 1.076-.74 0-.56-.587-.658-1.44-.924Zm4.976.42V18.44h-1.189V17h.63c.572 0 .796-.224.796-.797v-1.076h1.482V17h1.677v1.44h-1.677v2.99c0 .671.349 1.05.992 1.05.196 0 .433-.029.573-.07v1.452c-.21.056-.601.098-.91.098-1.565 0-2.375-.867-2.375-2.53Zm4.249-.979c0-2.138 1.44-3.62 3.494-3.62s3.48 1.468 3.48 3.578c0 .168-.028.433-.055.615H51.36c.126.936.923 1.566 1.944 1.566.754 0 1.41-.28 1.845-.783l1.048 1.02c-.63.81-1.72 1.245-2.978 1.245-2.125 0-3.605-1.496-3.605-3.62Zm1.747-.699h3.481c-.111-.909-.81-1.524-1.748-1.524s-1.635.615-1.733 1.524M58.028 17h1.636v1.147h.028c.335-.783.95-1.203 1.761-1.203.21 0 .504.029.615.07v1.648a3.8 3.8 0 0 0-.852-.097c-.88 0-1.454.67-1.454 1.705v3.635H58.03V17Zm4.529 3.48c0-2.138 1.411-3.647 3.41-3.647.923 0 1.677.406 2.152 1.147h.029v-4.207h1.733v10.134h-1.635V22.83h-.029c-.448.783-1.286 1.244-2.25 1.244-1.999 0-3.41-1.495-3.41-3.592Zm5.59-.028c0-1.244-.769-2.069-1.9-2.069s-1.915.839-1.915 2.07.77 2.068 1.915 2.068 1.9-.825 1.9-2.069m3.061 1.482c0-1.328 1.105-2.125 2.949-2.138l1.342-.014v-.224c0-.81-.517-1.23-1.454-1.23-.614 0-1.16.238-1.537.671l-1.048-1.02c.601-.741 1.566-1.147 2.754-1.147 1.844 0 3.019 1.007 3.019 2.614v2.74c0 .25.111.363.39.363h.127v1.356h-.81c-.657 0-1.105-.308-1.245-.81h-.028c-.433.629-1.147.978-2.012.978-1.454 0-2.446-.867-2.446-2.139Zm4.29-.601v-.39l-1.145.013c-.909.013-1.397.335-1.397.936 0 .53.419.91 1.007.91.908 0 1.537-.602 1.537-1.469ZM79.105 17h1.622v.936h.029c.35-.712.964-1.104 1.76-1.104.895 0 1.567.39 1.986 1.174.42-.755 1.188-1.174 2.166-1.174 1.706 0 2.53.95 2.53 2.893v4.18h-1.734v-3.886c0-1.131-.39-1.677-1.202-1.677s-1.244.601-1.244 1.733v3.83h-1.733v-3.886c0-1.146-.377-1.677-1.202-1.677s-1.245.615-1.245 1.733v3.83h-1.733z", fill: "#EC0000" })] })));
|
|
4
|
+
GgdAmsterdamInspectieLogo.displayName = 'GgdAmsterdamInspectieLogo';
|
|
5
|
+
export default GgdAmsterdamInspectieLogo;
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { SVGProps } from 'react';
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const GgdAmsterdamLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default GgdAmsterdamLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const GgdAmsterdamLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 115 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 37.648 3.527-3.527L0 30.593l2.352-2.351 3.527 3.527 3.528-3.527 2.351 2.351-3.527 3.528 3.527 3.527L9.407 40l-3.528-3.527L2.352 40zM0 23.54l3.527-3.528L0 16.485l2.352-2.352 3.527 3.528 3.528-3.528 2.351 2.352-3.527 3.527 3.527 3.528-2.351 2.351-3.528-3.527-3.527 3.527zM0 9.407l3.527-3.528L0 2.352 2.352 0l3.527 3.527L9.407 0l2.351 2.352-3.527 3.527 3.527 3.528-2.351 2.351-3.528-3.527-3.526 3.527z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-secondary", d: "M16.436 8.581c0-3.752 2.629-6.4 6.343-6.4 1.886 0 3.466.61 4.59 1.829l-1.637 1.56c-.705-.78-1.715-1.238-2.915-1.238-2.248 0-3.81 1.752-3.81 4.248s1.524 4.324 3.714 4.324c2 0 3.392-1.143 3.392-2.8v-.323h-2.99V7.705h5.505V9.63c0 3.162-2.458 5.39-5.982 5.39s-6.21-2.666-6.21-6.438Zm13.904 0c0-3.752 2.63-6.4 6.344-6.4 1.886 0 3.467.61 4.59 1.829l-1.636 1.56c-.705-.78-1.715-1.238-2.915-1.238-2.248 0-3.81 1.752-3.81 4.248s1.524 4.324 3.715 4.324c2 0 3.39-1.143 3.39-2.8v-.323h-2.99V7.705h5.506V9.63c0 3.162-2.458 5.39-5.982 5.39s-6.21-2.666-6.21-6.438ZM44.836 2.41h4.61c3.809 0 6.343 2.476 6.343 6.19s-2.59 6.19-6.363 6.19h-4.59zm4.419 10.229c2.38 0 3.942-1.543 3.942-4.02 0-2.475-1.524-4.057-3.923-4.057H47.35v8.077z", fill: "#000" }), _jsx("path", { className: "ams-logo__text-primary", d: "m23.73 25.267 4.952 12.381h-2.647l-1.03-2.724H19.5l-1.028 2.724h-2.553l4.953-12.381zm-3.486 7.6h4l-1.982-5.219h-.037zm12.21-4.627v1.275h.038c.476-.971 1.315-1.505 2.4-1.505 1.22 0 2.133.534 2.704 1.6.572-1.028 1.62-1.6 2.953-1.6 2.323 0 3.447 1.296 3.447 3.944v5.696h-2.362v-5.296c0-1.543-.534-2.286-1.638-2.286s-1.695.82-1.695 2.362v5.22h-2.363v-5.296c0-1.562-.514-2.286-1.638-2.286s-1.695.838-1.695 2.362v5.22h-2.362v-9.41zm15.886 5.466c-1.275-.381-2.513-1.067-2.513-2.78 0-1.715 1.447-2.916 3.6-2.916 1.448 0 2.572.514 3.2 1.466l-1.351 1.353c-.477-.59-1.124-.915-1.829-.915-.8 0-1.296.362-1.296.933 0 .762.8.895 1.963 1.257 1.276.381 2.514 1.067 2.514 2.781s-1.524 2.99-3.772 2.99c-1.466 0-2.648-.514-3.334-1.486l1.353-1.352c.513.609 1.2.934 1.962.934.915 0 1.466-.381 1.466-1.01 0-.762-.8-.895-1.962-1.258v.003Zm6.782.571v-4.076h-1.62v-1.963h.858c.78 0 1.085-.304 1.085-1.085v-1.466h2.019v2.552h2.286v1.963h-2.286v4.076c0 .915.476 1.43 1.352 1.43.267 0 .59-.038.78-.096v1.981c-.285.076-.819.133-1.237.133-2.133 0-3.238-1.18-3.238-3.447v-.002Zm5.789-1.333c0-2.915 1.963-4.934 4.763-4.934s4.743 2 4.743 4.876c0 .228-.038.59-.077.839h-7.048c.172 1.275 1.257 2.133 2.648 2.133 1.03 0 1.924-.381 2.514-1.067l1.429 1.391c-.857 1.105-2.343 1.696-4.058 1.696-2.895 0-4.915-2.038-4.915-4.934zm2.381-.953h4.744c-.153-1.238-1.106-2.076-2.381-2.076-1.276 0-2.229.838-2.363 2.076m11.315-3.751v1.56h.038c.457-1.066 1.296-1.638 2.4-1.638.285 0 .685.038.838.095v2.248c-.267-.076-.78-.132-1.162-.132-1.2 0-1.98.914-1.98 2.323v4.953h-2.363v-9.41zm3.944 4.743c0-2.915 1.924-4.972 4.648-4.972 1.257 0 2.286.553 2.934 1.562h.037V23.84h2.362v13.81h-2.228v-1.467h-.037c-.61 1.067-1.752 1.696-3.067 1.696-2.724 0-4.648-2.038-4.648-4.895zm7.62-.038c0-1.695-1.048-2.82-2.591-2.82s-2.61 1.143-2.61 2.82 1.049 2.82 2.61 2.82 2.59-1.124 2.59-2.82Zm4.169 2.018c0-1.81 1.506-2.895 4.02-2.915l1.828-.019v-.304c0-1.106-.704-1.677-1.981-1.677-.838 0-1.581.323-2.095.915l-1.429-1.391c.82-1.01 2.133-1.562 3.752-1.562 2.514 0 4.114 1.371 4.114 3.562v3.733c0 .343.153.495.534.495h.172v1.847H98.15c-.895 0-1.506-.418-1.696-1.105h-.038c-.59.857-1.561 1.333-2.743 1.333-1.981 0-3.333-1.18-3.333-2.915zm5.848-.82v-.534l-1.561.02c-1.238.018-1.905.457-1.905 1.275 0 .724.571 1.238 1.37 1.238 1.239 0 2.096-.82 2.096-2zm7.124-5.903v1.275h.038c.476-.971 1.315-1.505 2.4-1.505 1.219 0 2.133.534 2.704 1.6.572-1.028 1.619-1.6 2.953-1.6 2.323 0 3.447 1.296 3.447 3.944v5.696h-2.362v-5.296c0-1.543-.534-2.286-1.638-2.286s-1.695.82-1.695 2.362v5.22h-2.363v-5.296c0-1.562-.513-2.286-1.638-2.286s-1.695.838-1.695 2.362v5.22h-2.362v-9.41z", fill: "#EC0000" })] })));
|
|
4
|
+
GgdAmsterdamLogo.displayName = 'GgdAmsterdamLogo';
|
|
5
|
+
export default GgdAmsterdamLogo;
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { SVGProps } from 'react';
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const MuseumWeespLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default MuseumWeespLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const MuseumWeespLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 112.558 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 35.688 3.349-3.19L0 29.308l2.233-2.125 3.348 3.189 3.35-3.19 2.232 2.127-3.349 3.19 3.349 3.189-2.233 2.126-3.349-3.19-3.348 3.19zM0 9.11l3.349-3.19L0 2.73 2.233.606 5.58 3.794l3.35-3.19 2.232 2.127-3.349 3.19 3.349 3.189-2.233 2.126-3.349-3.19-3.348 3.19zm0 13.289 3.349-3.19L0 16.02l2.233-2.125 3.348 3.189 3.35-3.19 2.232 2.127-3.349 3.19 3.349 3.189-2.233 2.126-3.349-3.19-3.348 3.19z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-secondary", d: "M16.823 28.397h2.404l2.216 4.403h.027l2.214-4.403h2.404v8.779H24.36v-6.767h-.028l-2.174 4.322h-1.405L18.58 30.41h-.027v6.767h-1.729zm11.062 6.145v-4.038h1.674v3.728c0 1.12.392 1.647 1.202 1.647.824 0 1.284-.607 1.284-1.688v-3.687h1.674v6.672h-1.58v-.905h-.026c-.324.648-1.026 1.067-1.783 1.067-1.634 0-2.445-.931-2.445-2.796m8.98-.162c-.904-.27-1.782-.756-1.782-1.972 0-1.229 1.027-2.066 2.552-2.066 1.027 0 1.824.364 2.27 1.04l-.959.958c-.338-.418-.797-.648-1.297-.648-.567 0-.918.257-.918.662 0 .54.568.635 1.39.892.906.27 1.784.756 1.784 1.972 0 1.255-1.08 2.12-2.674 2.12-1.04 0-1.878-.365-2.364-1.053l.958-.96a1.79 1.79 0 0 0 1.392.662c.648 0 1.04-.27 1.04-.715 0-.54-.569-.635-1.392-.892m5.647-1.215h3.362c-.108-.879-.783-1.473-1.688-1.473s-1.58.595-1.674 1.473m-1.689.675c0-2.066 1.391-3.498 3.377-3.498s3.363 1.418 3.363 3.457c0 .163-.028.419-.054.595H42.51c.122.905.892 1.512 1.878 1.512.73 0 1.364-.27 1.782-.756l1.014.986c-.608.783-1.662 1.202-2.877 1.202-2.053 0-3.485-1.445-3.485-3.498m8.036.702v-4.038h1.674v3.728c0 1.12.393 1.647 1.203 1.647.824 0 1.284-.607 1.284-1.688v-3.687h1.674v6.672h-1.581v-.905h-.026c-.324.648-1.028 1.067-1.784 1.067-1.633 0-2.444-.931-2.444-2.796m7.644-4.038h1.567v.905h.028c.336-.689.93-1.067 1.701-1.067.864 0 1.513.378 1.917 1.135.406-.73 1.15-1.135 2.093-1.135 1.649 0 2.446.919 2.446 2.796v4.038H64.58V33.42c0-1.094-.38-1.62-1.163-1.62s-1.201.58-1.201 1.674v3.7h-1.675v-3.754c0-1.107-.365-1.62-1.163-1.62-.769 0-1.201.593-1.201 1.674v3.7h-1.675zm22.272 6.672-1.702-6.564h-.027l-1.703 6.564h-2.065l-2.58-8.779h1.89l1.73 6.645h.027l1.742-6.645h1.945l1.742 6.645h.028l1.728-6.645h1.89l-2.58 8.779zm6.537-4.011h3.362c-.108-.879-.783-1.473-1.688-1.473s-1.58.595-1.674 1.473m-1.689.675c0-2.066 1.391-3.498 3.377-3.498s3.363 1.418 3.363 3.457c0 .163-.028.419-.054.595h-4.997c.12.905.89 1.512 1.877 1.512.73 0 1.364-.27 1.783-.756l1.012.986c-.607.783-1.66 1.202-2.876 1.202-2.053 0-3.485-1.445-3.485-3.498m9.4-.675h3.364c-.109-.879-.784-1.473-1.688-1.473-.906 0-1.583.595-1.676 1.473m-1.688.675c0-2.066 1.392-3.498 3.377-3.498s3.362 1.418 3.362 3.457c0 .163-.027.419-.053.595h-4.998c.121.905.891 1.512 1.877 1.512.73 0 1.365-.27 1.784-.756l1.013.986c-.609.783-1.662 1.202-2.877 1.202-2.053 0-3.485-1.445-3.485-3.498m9.468.54c-.905-.27-1.784-.756-1.784-1.972 0-1.229 1.027-2.066 2.554-2.066 1.026 0 1.823.364 2.269 1.04l-.96.958c-.337-.418-.796-.648-1.296-.648-.567 0-.918.257-.918.662 0 .54.567.635 1.39.892.906.27 1.784.756 1.784 1.972 0 1.255-1.081 2.12-2.675 2.12-1.04 0-1.877-.365-2.362-1.053l.958-.96a1.8 1.8 0 0 0 1.391.662c.648 0 1.04-.27 1.04-.715 0-.54-.567-.635-1.391-.892m9.737-.54c0-1.202-.742-2-1.836-2s-1.851.811-1.851 2 .756 2 1.851 2 1.837-.798 1.837-2zm-5.361-3.336h1.593v1.04h.028c.405-.756 1.215-1.202 2.188-1.202 1.904 0 3.268 1.445 3.268 3.47 0 2.054-1.364 3.526-3.268 3.526-.905 0-1.648-.391-2.108-1.107h-.027v3.443h-1.674z", fill: "#000" }), _jsx("path", { className: "ams-logo__text-primary", d: "M19.106 20.732h2.836l-1.404-3.7h-.028zm.446-5.389h2.026l3.511 8.779h-1.877l-.73-1.931H18.58l-.73 1.93h-1.81zm6.644 2.107h1.567v.905h.028c.336-.688.93-1.068 1.701-1.068.864 0 1.513.379 1.917 1.135.406-.729 1.15-1.135 2.093-1.135 1.649 0 2.446.92 2.446 2.797v4.038h-1.675v-3.755c0-1.094-.378-1.621-1.162-1.621s-1.201.581-1.201 1.675v3.702h-1.675v-3.756c0-1.107-.365-1.621-1.162-1.621-.77 0-1.202.595-1.202 1.675v3.702h-1.675zm12.831 3.877c-.905-.27-1.783-.757-1.783-1.973 0-1.228 1.027-2.067 2.552-2.067 1.027 0 1.824.366 2.27 1.04l-.959.96c-.338-.42-.797-.649-1.297-.649-.567 0-.918.257-.918.662 0 .54.567.635 1.39.892.906.27 1.784.756 1.784 1.972 0 1.255-1.08 2.12-2.674 2.12-1.04 0-1.878-.365-2.363-1.053l.958-.96a1.79 1.79 0 0 0 1.39.662c.649 0 1.04-.27 1.04-.715 0-.54-.567-.635-1.39-.892m4.807.404v-2.89h-1.148v-1.39h.609c.553 0 .77-.217.77-.77v-1.04h1.432v1.81h1.62v1.39h-1.621v2.891c0 .649.337 1.014.959 1.014.189 0 .419-.028.553-.068v1.405a4 4 0 0 1-.877.094c-1.512 0-2.297-.838-2.297-2.446m5.795-1.62h3.363c-.108-.878-.784-1.473-1.689-1.473-.904 0-1.58.595-1.674 1.473m-1.688.675c0-2.066 1.391-3.498 3.376-3.498s3.363 1.418 3.363 3.457c0 .163-.027.419-.054.595h-4.997c.12.905.891 1.512 1.877 1.512.73 0 1.365-.27 1.783-.756l1.013.986c-.608.783-1.661 1.202-2.877 1.202-2.053 0-3.484-1.445-3.484-3.498m8.13-3.336h1.58v1.107h.028c.324-.756.918-1.16 1.701-1.16.202 0 .486.026.594.066v1.595a3.6 3.6 0 0 0-.823-.095c-.852 0-1.405.648-1.405 1.647v3.512h-1.674zm9.778 3.336c0-1.202-.742-1.999-1.836-1.999-1.108 0-1.851.81-1.851 2 0 1.188.743 1.998 1.851 1.998 1.094 0 1.836-.797 1.836-1.999m-5.402.027c0-2.067 1.364-3.526 3.295-3.526.892 0 1.62.393 2.08 1.108h.028V14.33h1.675v9.79h-1.582v-1.04h-.026c-.432.757-1.243 1.203-2.175 1.203-1.93 0-3.295-1.444-3.295-3.47m12.507.824v-.378l-1.107.014c-.879.013-1.351.323-1.351.905 0 .512.404.877.972.877.877 0 1.486-.58 1.486-1.418m-4.147.58c0-1.283 1.067-2.052 2.85-2.065l1.297-.014v-.216c0-.783-.5-1.189-1.405-1.189-.595 0-1.121.23-1.486.648l-1.013-.986c.58-.716 1.513-1.107 2.66-1.107 1.784 0 2.918.973 2.918 2.526v2.646c0 .244.108.352.379.352h.12v1.31h-.783c-.634 0-1.067-.298-1.202-.783h-.026c-.418.608-1.107.945-1.944.945-1.405 0-2.364-.837-2.364-2.065zm7.63-4.767h1.568v.905h.027c.337-.688.932-1.068 1.702-1.068.863 0 1.512.379 1.916 1.135.406-.729 1.15-1.135 2.094-1.135 1.649 0 2.445.92 2.445 2.797v4.038h-1.675v-3.755c0-1.094-.378-1.621-1.161-1.621-.784 0-1.202.581-1.202 1.675v3.702h-1.675v-3.756c0-1.107-.364-1.621-1.162-1.621-.769 0-1.201.595-1.201 1.675v3.702h-1.675zM16.413 6.493c0-2.66 1.863-4.54 4.498-4.54 1.336 0 2.457.433 3.255 1.297l-1.162 1.107c-.5-.553-1.216-.877-2.066-.877-1.594 0-2.702 1.243-2.702 3.012 0 1.81 1.08 3.065 2.634 3.065 1.418 0 2.404-.81 2.404-1.985v-.23h-2.12v-1.47h3.903v1.363c0 2.242-1.743 3.823-4.241 3.823-2.58 0-4.403-1.892-4.403-4.565m11.466.39h3.364c-.109-.876-.784-1.47-1.689-1.47s-1.58.593-1.674 1.472zm-1.688.677c0-2.067 1.391-3.498 3.376-3.498 1.986 0 3.363 1.418 3.363 3.457 0 .162-.026.419-.054.595H27.88c.122.905.892 1.512 1.877 1.512.73 0 1.365-.27 1.784-.756l1.013.986c-.608.783-1.662 1.202-2.878 1.202-2.053 0-3.484-1.446-3.484-3.498m8.13-3.337h1.567v.905h.027c.338-.688.932-1.067 1.703-1.067.864 0 1.512.379 1.917 1.135.406-.729 1.148-1.135 2.093-1.135 1.648 0 2.446.92 2.446 2.797v4.037h-1.675V7.14c0-1.093-.379-1.62-1.163-1.62-.782 0-1.202.581-1.202 1.674v3.702H38.36V7.14c0-1.106-.365-1.62-1.162-1.62-.77 0-1.202.595-1.202 1.674v3.702h-1.674zm12.764 2.66h3.362c-.108-.876-.783-1.47-1.687-1.47-.905 0-1.581.593-1.674 1.472zm-1.689.677c0-2.067 1.392-3.498 3.377-3.498s3.363 1.418 3.363 3.457c0 .162-.027.419-.054.595h-4.997c.12.905.89 1.512 1.877 1.512.73 0 1.364-.27 1.783-.756l1.013.986c-.608.783-1.661 1.202-2.877 1.202-2.053 0-3.485-1.446-3.485-3.498m9.4-.676h3.364c-.108-.878-.783-1.472-1.688-1.472-.906 0-1.58.595-1.675 1.473zm-1.687.676c0-2.067 1.39-3.498 3.377-3.498 1.985 0 3.362 1.418 3.362 3.457 0 .162-.027.419-.054.595h-4.998c.122.905.892 1.512 1.878 1.512.729 0 1.364-.27 1.783-.756l1.013.986c-.608.783-1.662 1.202-2.877 1.202-2.053 0-3.484-1.446-3.484-3.498m8.13-3.337h1.58v.905h.027c.311-.661.987-1.067 1.77-1.067 1.674 0 2.54.96 2.54 2.797v4.037h-1.677V7.18c0-1.134-.405-1.661-1.256-1.661-.85 0-1.31.595-1.31 1.702v3.674h-1.675zm8.063 4.282v-2.89h-1.148V4.223h.608c.553 0 .77-.216.77-.77v-1.04h1.432v1.81h1.62v1.392h-1.62v2.89c0 .648.337 1.013.958 1.013.19 0 .419-.028.554-.068v1.405a4 4 0 0 1-.878.095c-1.512 0-2.296-.837-2.296-2.445m5.794-1.621h3.364c-.11-.878-.785-1.472-1.689-1.472-.905 0-1.58.595-1.674 1.473zm-1.689.676c0-2.067 1.392-3.498 3.377-3.498 1.986 0 3.363 1.418 3.363 3.457 0 .162-.027.419-.054.595h-4.997c.122.905.892 1.512 1.878 1.512.73 0 1.364-.27 1.782-.756l1.013.986c-.607.783-1.661 1.202-2.877 1.202-2.053 0-3.485-1.446-3.485-3.498", fill: "#EC0000" })] })));
|
|
4
|
+
MuseumWeespLogo.displayName = 'MuseumWeespLogo';
|
|
5
|
+
export default MuseumWeespLogo;
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { SVGProps } from 'react';
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const StadsarchiefLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default StadsarchiefLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const StadsarchiefLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 98 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 37.648 3.527-3.527L0 30.593l2.352-2.351 3.527 3.527 3.528-3.527 2.351 2.351-3.527 3.528 3.527 3.527L9.407 40l-3.528-3.527L2.352 40zM0 9.407l3.527-3.528L0 2.352 2.352 0l3.527 3.527L9.407 0l2.351 2.352-3.527 3.527 3.527 3.528-2.351 2.351-3.528-3.527-3.526 3.527zM0 23.54l3.527-3.528L0 16.485l2.352-2.352 3.527 3.528 3.528-3.528 2.351 2.352-3.527 3.527 3.527 3.528-2.351 2.351-3.528-3.527-3.527 3.527z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-secondary", d: "m17.335 37.353 1.302-1.084a2.07 2.07 0 0 0 1.779.983c.868 0 1.46-.463 1.46-1.143 0-.766-.636-1.042-1.866-1.49-1.143-.42-2.343-1.012-2.343-2.747 0-1.62 1.316-2.734 3.24-2.734 1.3 0 2.327.52 2.906 1.446L22.51 31.67c-.39-.578-.954-.897-1.62-.897-.78 0-1.302.42-1.302 1.042 0 .767.637 1.042 1.866 1.49 1.143.42 2.344 1.012 2.344 2.748 0 1.735-1.375 2.834-3.4 2.834-1.374 0-2.458-.549-3.066-1.533h.002Zm8.403-1.2v-3.095h-1.23v-1.49h.65c.593 0 .824-.231.824-.824v-1.113h1.534v1.937h1.735v1.49h-1.735v3.095c0 .693.362 1.085 1.026 1.085.202 0 .448-.03.593-.073v1.504a4.4 4.4 0 0 1-.941.101c-1.62 0-2.459-.897-2.459-2.617zm4.396.521c0-1.375 1.143-2.2 3.051-2.213l1.389-.014v-.232c0-.838-.535-1.272-1.504-1.272-.636 0-1.2.245-1.59.694l-1.085-1.056c.622-.767 1.62-1.187 2.85-1.187 1.909 0 3.123 1.042 3.123 2.705v2.835c0 .26.115.376.405.376h.13v1.402h-.838c-.68 0-1.143-.318-1.288-.838h-.029c-.448.651-1.186 1.012-2.082 1.012-1.504 0-2.53-.897-2.53-2.212zm4.44-.622v-.405l-1.186.014c-.941.014-1.447.347-1.447.97 0 .548.434.94 1.042.94.94 0 1.591-.622 1.591-1.52Zm3.239-.882c0-2.213 1.46-3.775 3.529-3.775.955 0 1.735.42 2.227 1.187h.03v-4.353h1.792v10.486H43.7V37.6h-.029c-.463.81-1.331 1.288-2.328 1.288-2.068 0-3.529-1.547-3.529-3.717v-.002Zm5.785-.03c0-1.287-.796-2.14-1.967-2.14-1.17 0-1.981.868-1.981 2.14s.796 2.14 1.981 2.14 1.967-.853 1.967-2.14m5.165.579c-.97-.29-1.91-.81-1.91-2.112 0-1.301 1.1-2.213 2.734-2.213 1.1 0 1.952.39 2.429 1.114l-1.026 1.026c-.363-.448-.854-.694-1.39-.694-.607 0-.982.276-.982.71 0 .578.608.68 1.49.954.969.29 1.91.81 1.91 2.112s-1.158 2.27-2.864 2.27c-1.113 0-2.01-.39-2.532-1.127l1.027-1.027c.39.464.911.71 1.49.71.694 0 1.113-.29 1.113-.767 0-.579-.608-.68-1.49-.955zm4.207.955c0-1.375 1.144-2.2 3.052-2.213l1.389-.014v-.232c0-.838-.535-1.272-1.504-1.272-.636 0-1.2.245-1.591.694l-1.084-1.056c.622-.767 1.62-1.187 2.849-1.187 1.91 0 3.124 1.042 3.124 2.705v2.835c0 .26.115.376.404.376h.13v1.402h-.837c-.68 0-1.143-.318-1.288-.838h-.03c-.447.651-1.186 1.012-2.082 1.012-1.504 0-2.53-.897-2.53-2.212h-.001Zm4.44-.622v-.405l-1.186.014c-.94.014-1.446.347-1.446.97 0 .548.434.94 1.042.94.94 0 1.59-.622 1.59-1.52Zm3.732-4.484h1.691v1.187h.03c.347-.81.983-1.244 1.822-1.244.218 0 .521.029.636.073v1.706a4 4 0 0 0-.881-.102c-.912 0-1.504.694-1.504 1.765v3.76h-1.793V31.57h-.002Zm4.685 3.572c0-2.227 1.49-3.746 3.689-3.746 1.085 0 2.038.405 2.646 1.128l-1.2 1.127c-.362-.404-.868-.622-1.446-.622-1.1 0-1.851.868-1.851 2.112s.752 2.112 1.85 2.112c.58 0 1.086-.218 1.476-.636l1.187 1.127c-.636.738-1.577 1.143-2.647 1.143-2.199 0-3.703-1.519-3.703-3.746zm7.665-6.912h1.793v4.15h.03c.42-.636 1.041-.983 1.793-.983 1.793 0 2.718 1.027 2.718 2.994v4.325h-1.793v-3.978c0-1.215-.434-1.78-1.345-1.78s-1.403.637-1.403 1.823v3.935h-1.793zm9.068 2.429c-.622 0-1.07-.434-1.07-1.042s.448-1.042 1.07-1.042 1.07.434 1.07 1.042-.448 1.042-1.07 1.042m-.897.911h1.793v7.144h-1.793zm3.284 3.572c0-2.212 1.49-3.746 3.616-3.746s3.601 1.52 3.601 3.703c0 .174-.03.448-.058.636h-5.35c.13.969.954 1.62 2.01 1.62.78 0 1.46-.289 1.91-.81L91.76 37.6c-.652.838-1.78 1.288-3.081 1.288-2.199 0-3.73-1.548-3.73-3.747zm1.808-.723h3.602c-.115-.94-.838-1.577-1.808-1.577s-1.693.637-1.794 1.577m6.131-1.359v-1.49h1.215v-.925c0-1.634.969-2.59 2.632-2.59.203 0 .506.03.666.058v1.548a2.8 2.8 0 0 0-.622-.072c-.565 0-.882.376-.882 1.056v.925h1.736v1.49h-1.736v5.654h-1.793v-5.654z", fill: "#000" }), _jsx("path", { className: "ams-logo__text-primary", d: "M20.937 15.334h2.17l3.76 9.4h-2.011l-.78-2.068h-4.18l-.782 2.068h-1.937zm-.477 5.77h3.037l-1.504-3.962h-.03l-1.503 3.963Zm7.592-3.514h1.678v.969h.03c.36-.737.997-1.143 1.822-1.143.925 0 1.62.405 2.054 1.215.434-.781 1.228-1.215 2.24-1.215 1.766 0 2.618.983 2.618 2.994v4.324h-1.793v-4.02c0-1.17-.404-1.735-1.244-1.735s-1.287.622-1.287 1.793v3.962h-1.794v-4.02c0-1.186-.39-1.735-1.243-1.735s-1.288.636-1.288 1.793v3.962h-1.793zm13.739 4.15c-.969-.288-1.91-.81-1.91-2.111s1.1-2.213 2.734-2.213c1.1 0 1.952.39 2.43 1.114l-1.027 1.026c-.362-.448-.853-.694-1.388-.694-.608 0-.983.276-.983.71 0 .578.608.679 1.49.954.968.29 1.909.81 1.909 2.112 0 1.301-1.157 2.27-2.863 2.27-1.114 0-2.01-.39-2.532-1.127l1.027-1.027c.39.464.911.71 1.49.71.693 0 1.113-.29 1.113-.767 0-.579-.608-.68-1.49-.955v-.001Zm5.149.435V19.08h-1.23v-1.49h.652c.592 0 .824-.232.824-.824v-1.114h1.533v1.938h1.736v1.49h-1.736v3.095c0 .693.361 1.085 1.027 1.085.202 0 .448-.03.592-.073v1.504a4.4 4.4 0 0 1-.94.101c-1.62 0-2.46-.897-2.46-2.617zm4.397-1.013c0-2.213 1.49-3.746 3.615-3.746s3.602 1.52 3.602 3.703c0 .174-.03.448-.058.636h-5.351c.13.969.955 1.62 2.01 1.62.781 0 1.46-.29 1.91-.81l1.084 1.056c-.651.838-1.779 1.287-3.08 1.287-2.2 0-3.731-1.547-3.731-3.746h-.002Zm1.808-.723h3.601c-.115-.94-.838-1.577-1.808-1.577s-1.692.637-1.793 1.577m6.897-2.849h1.692v1.186h.03c.346-.81.983-1.244 1.822-1.244.218 0 .521.03.636.072v1.706a4 4 0 0 0-.882-.1c-.91 0-1.504.693-1.504 1.764v3.76h-1.793V17.59Zm4.687 3.602c0-2.213 1.46-3.775 3.529-3.775.954 0 1.735.42 2.227 1.187h.029V14.25h1.793v10.486h-1.692v-1.114h-.03c-.462.81-1.33 1.288-2.327 1.288-2.069 0-3.529-1.548-3.529-3.717zm5.785-.03c0-1.287-.796-2.14-1.967-2.14s-1.981.868-1.981 2.14.796 2.14 1.98 2.14c1.186 0 1.968-.853 1.968-2.14m3.166 1.533c0-1.374 1.143-2.198 3.052-2.212l1.388-.015v-.231c0-.838-.535-1.272-1.504-1.272-.636 0-1.2.245-1.59.693l-1.084-1.056c.622-.766 1.62-1.186 2.849-1.186 1.908 0 3.124 1.042 3.124 2.704v2.835c0 .26.115.377.404.377h.13v1.402h-.838c-.68 0-1.143-.318-1.287-.838h-.03c-.448.651-1.186 1.012-2.082 1.012-1.504 0-2.53-.897-2.53-2.213zm4.44-.622v-.404l-1.185.014c-.94.014-1.446.347-1.446.969 0 .55.434.94 1.042.94.94 0 1.59-.621 1.59-1.518Zm3.731-4.483h1.678v.969h.03c.362-.737.998-1.143 1.822-1.143.925 0 1.62.405 2.054 1.215.434-.781 1.229-1.215 2.241-1.215 1.765 0 2.618.983 2.618 2.994v4.324H90.5v-4.02c0-1.17-.405-1.735-1.245-1.735s-1.287.622-1.287 1.793v3.962h-1.793v-4.02c0-1.186-.39-1.735-1.244-1.735s-1.288.636-1.288 1.793v3.962H81.85V17.59ZM17.575 5.857c0-2.85 1.996-4.86 4.817-4.86 1.432 0 2.632.463 3.485 1.389l-1.244 1.186c-.535-.593-1.302-.94-2.213-.94-1.706 0-2.893 1.33-2.893 3.225 0 1.894 1.157 3.283 2.821 3.283 1.52 0 2.574-.868 2.574-2.126v-.246h-2.27V5.191h4.18v1.46c0 2.402-1.867 4.094-4.542 4.094s-4.715-2.025-4.715-4.888M28.047 7c0-2.213 1.49-3.747 3.616-3.747s3.601 1.52 3.601 3.703c0 .174-.03.448-.057.636h-5.351c.13.97.954 1.62 2.01 1.62.78 0 1.46-.289 1.91-.81l1.085 1.056c-.651.839-1.779 1.288-3.08 1.288-2.2 0-3.732-1.548-3.732-3.746zm1.809-.724h3.601c-.115-.94-.838-1.576-1.808-1.576s-1.692.636-1.793 1.576m6.897-2.85h1.678v.97h.03c.361-.738.997-1.144 1.822-1.144.925 0 1.62.405 2.054 1.215.434-.78 1.23-1.215 2.24-1.215 1.766 0 2.618.983 2.618 2.994v4.324h-1.793V6.55c0-1.17-.404-1.735-1.244-1.735s-1.287.622-1.287 1.793v3.962h-1.794V6.55c0-1.186-.39-1.735-1.243-1.735s-1.288.636-1.288 1.793v3.962h-1.793zM48.612 7c0-2.213 1.49-3.747 3.616-3.747s3.601 1.52 3.601 3.703c0 .174-.03.448-.057.636H50.42c.131.97.955 1.62 2.011 1.62.78 0 1.46-.289 1.91-.81l1.084 1.056c-.652.839-1.78 1.288-3.08 1.288-2.2 0-3.732-1.548-3.732-3.746Zm1.808-.724h3.602c-.115-.94-.838-1.576-1.807-1.576s-1.692.636-1.793 1.576zM56.87 7c0-2.213 1.49-3.747 3.616-3.747 2.125 0 3.601 1.52 3.601 3.703 0 .174-.03.448-.058.636h-5.35c.13.97.954 1.62 2.01 1.62.78 0 1.46-.289 1.91-.81l1.084 1.056c-.652.839-1.78 1.288-3.081 1.288-2.199 0-3.731-1.548-3.731-3.746zm1.808-.724h3.602c-.115-.94-.839-1.576-1.809-1.576s-1.692.636-1.793 1.576m6.899-2.85h1.692v.97h.03c.332-.71 1.055-1.144 1.893-1.144 1.794 0 2.719 1.027 2.719 2.994v4.324h-1.793V6.594c0-1.215-.434-1.78-1.345-1.78-.912 0-1.403.637-1.403 1.823v3.935h-1.793zm8.633 4.586V4.917h-1.23v-1.49h.652c.593 0 .825-.231.825-.824V1.49h1.533v1.937h1.735v1.49H75.99v3.095c0 .694.36 1.085 1.026 1.085.203 0 .448-.03.593-.073v1.504a4.4 4.4 0 0 1-.94.101c-1.621 0-2.46-.897-2.46-2.617l.002.001ZM78.607 7c0-2.213 1.49-3.747 3.616-3.747s3.601 1.52 3.601 3.703c0 .174-.03.448-.057.636h-5.352c.131.97.955 1.62 2.011 1.62.78 0 1.46-.289 1.91-.81l1.084 1.056c-.652.839-1.78 1.288-3.08 1.288-2.2 0-3.732-1.548-3.732-3.746Zm1.808-.724h3.602c-.115-.94-.838-1.576-1.808-1.576s-1.692.636-1.794 1.576", fill: "#EC0000" })] })));
|
|
4
|
+
StadsarchiefLogo.displayName = 'StadsarchiefLogo';
|
|
5
|
+
export default StadsarchiefLogo;
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { SVGProps } from 'react';
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const StadsbankVanLeningLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default StadsbankVanLeningLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const StadsbankVanLeningLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 151.429 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 35.857 3.362-3.362L0 29.133l2.238-2.238L5.6 30.257l3.362-3.362 2.238 2.238-3.362 3.362 3.362 3.362-2.238 2.238L5.6 34.733l-3.362 3.362zM0 8.962 3.362 5.6 0 2.238 2.238 0 5.6 3.362 8.962 0 11.2 2.238 7.838 5.6 11.2 8.962 8.962 11.2 5.6 7.838 2.238 11.2zm0 13.457 3.362-3.362L0 15.695l2.238-2.238L5.6 16.82l3.362-3.362 2.238 2.238-3.362 3.362L11.2 22.42l-2.238 2.238L5.6 21.295l-3.362 3.362z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-secondary", d: "m16.514 35.571 1.238-1.028a1.96 1.96 0 0 0 1.696.933c.828 0 1.39-.438 1.39-1.086 0-.733-.61-.99-1.78-1.419-1.087-.4-2.23-.961-2.23-2.619 0-1.542 1.258-2.6 3.086-2.6 1.238 0 2.22.496 2.772 1.381l-1.239 1.029c-.37-.552-.904-.857-1.542-.857-.743 0-1.239.4-1.239.99 0 .734.61.99 1.781 1.42 1.086.4 2.23.961 2.23 2.618s-1.306 2.696-3.239 2.696c-1.305 0-2.343-.524-2.924-1.457Zm8-1.142v-2.953h-1.171v-1.419h.619c.562 0 .78-.219.78-.78v-1.058H26.2v1.848h1.657v1.419H26.2v2.952c0 .657.343 1.029.981 1.029.19 0 .429-.029.562-.067v1.429c-.21.057-.59.095-.895.095-1.543 0-2.343-.857-2.343-2.495zm4.181.495c0-1.305 1.086-2.095 2.905-2.105h1.324v-.238c0-.8-.514-1.21-1.429-1.21-.61 0-1.143.239-1.514.658l-1.029-1.01c.59-.733 1.543-1.133 2.715-1.133 1.819 0 2.971.99 2.971 2.571v2.695c0 .248.114.362.381.362h.124v1.333h-.8c-.648 0-1.086-.304-1.229-.8h-.028c-.429.62-1.134.962-1.981.962-1.429 0-2.41-.857-2.41-2.104zm4.229-.59v-.382H31.79c-.896.029-1.381.343-1.381.934 0 .523.409.895.99.895.895 0 1.514-.59 1.514-1.448zm3.086-.839c0-2.105 1.39-3.59 3.361-3.59.905 0 1.657.4 2.124 1.133h.029v-4.143h1.705v9.99h-1.61v-1.057h-.029c-.438.772-1.266 1.23-2.219 1.23-1.971 0-3.362-1.477-3.362-3.544zm5.514-.028c0-1.229-.762-2.038-1.876-2.038s-1.886.828-1.886 2.038.762 2.038 1.886 2.038 1.876-.81 1.876-2.038m4.914.552c-.924-.276-1.819-.771-1.819-2.01s1.048-2.104 2.6-2.104c1.048 0 1.857.371 2.314 1.057l-.98.98c-.343-.428-.81-.656-1.324-.656-.581 0-.934.257-.934.676 0 .552.581.647 1.42.905.923.276 1.818.771 1.818 2.01 0 1.237-1.105 2.161-2.724 2.161-1.057 0-1.914-.371-2.409-1.076l.981-.981c.371.438.867.676 1.419.676.657 0 1.057-.276 1.057-.733 0-.553-.58-.648-1.419-.905m6.114 1.79h-.028v1.058h-1.629v-9.99H52.6v4.142h.029c.495-.733 1.238-1.133 2.152-1.133 1.943 0 3.333 1.486 3.333 3.571s-1.39 3.572-3.333 3.572c-.952 0-1.733-.439-2.229-1.229zm3.82-2.342c0-1.229-.762-2.038-1.877-2.038s-1.885.828-1.885 2.038.77 2.038 1.885 2.038 1.876-.81 1.876-2.038M59 34.924c0-1.305 1.086-2.095 2.905-2.105h1.324v-.238c0-.8-.515-1.21-1.429-1.21-.61 0-1.143.239-1.514.658l-1.029-1.01c.59-.733 1.543-1.133 2.714-1.133 1.82 0 2.972.99 2.972 2.571v2.695c0 .248.114.362.38.362h.125v1.333h-.8c-.648 0-1.086-.304-1.229-.8h-.029c-.428.62-1.133.962-1.98.962-1.43 0-2.41-.857-2.41-2.104zm4.229-.59v-.382h-1.134c-.895.029-1.38.343-1.38.934 0 .523.409.895.99.895.895 0 1.514-.59 1.514-1.448zm3.552-4.267h1.61v.924h.028c.314-.677 1.01-1.086 1.8-1.086 1.705 0 2.59.98 2.59 2.847v4.115h-1.704v-3.79c0-1.153-.41-1.696-1.286-1.696s-1.333.61-1.333 1.733v3.743H66.78v-6.8zm9.495 6.8h-1.705v-9.99h1.705v6.256h.029l2.533-3.076h2.067l-2.629 3.02 2.753 3.79h-2.067l-1.886-2.677-.8.924zm8.457-6.8h1.857l1.581 4.905h.029l1.629-4.905h1.819l-2.562 6.8h-1.829zM92 34.924c0-1.305 1.086-2.095 2.905-2.105h1.324v-.238c0-.8-.515-1.21-1.429-1.21-.61 0-1.143.239-1.514.658l-1.029-1.01c.59-.733 1.543-1.133 2.714-1.133 1.82 0 2.972.99 2.972 2.571v2.695c0 .248.114.362.38.362h.125v1.333h-.8c-.648 0-1.086-.304-1.229-.8h-.029c-.428.62-1.133.962-1.98.962-1.43 0-2.41-.857-2.41-2.104zm4.229-.59v-.382h-1.134c-.895.029-1.38.343-1.38.934 0 .523.409.895.99.895.895 0 1.514-.59 1.514-1.448zm3.552-4.267h1.61v.924h.028c.314-.677 1.01-1.086 1.8-1.086 1.705 0 2.59.98 2.59 2.847v4.115h-1.704v-3.79c0-1.153-.41-1.696-1.276-1.696s-1.334.61-1.334 1.733v3.743H99.79v-6.8zm11.314-2.153h1.82v7.41h3.323v1.543h-5.133v-8.953zm5.924 5.553c0-2.105 1.419-3.572 3.448-3.572s3.428 1.448 3.428 3.524c0 .162-.028.429-.057.61h-5.095c.124.923.905 1.542 1.914 1.542.743 0 1.39-.276 1.82-.77l1.028 1.009c-.62.8-1.695 1.228-2.934 1.228-2.095 0-3.552-1.476-3.552-3.571Zm1.724-.686h3.428c-.114-.895-.8-1.505-1.723-1.505-.924 0-1.61.61-1.705 1.505m6.562-2.714h1.61v.924h.028c.314-.677 1.01-1.086 1.8-1.086 1.705 0 2.59.98 2.59 2.847v4.115h-1.704v-3.79c0-1.153-.41-1.696-1.286-1.696s-1.333.61-1.333 1.733v3.743h-1.705v-6.8zm8.638-.867c-.59 0-1.02-.41-1.02-.99 0-.582.43-.991 1.02-.991s1.019.41 1.019.99-.429.991-1.02.991m-.857.867h1.705v6.8h-1.705zm3.552 0h1.61v.924h.028c.315-.677 1.01-1.086 1.8-1.086 1.705 0 2.59.98 2.59 2.847v4.115h-1.704v-3.79c0-1.153-.41-1.696-1.286-1.696s-1.333.61-1.333 1.733v3.743h-1.705v-6.8zm7.686 8.428 1.105-1.076c.371.429 1.047.686 1.78.686 1.239 0 1.924-.562 1.924-1.553v-1.047h-.028c-.381.714-1.105 1.114-2 1.114-1.914 0-3.181-1.352-3.181-3.362s1.305-3.343 3.18-3.343c.963 0 1.725.429 2.096 1.153h.029v-1.01h1.61v6.552c0 1.82-1.391 2.962-3.61 2.962-1.267 0-2.315-.4-2.905-1.085zm4.819-5.238c0-1.133-.705-1.914-1.734-1.914s-1.733.78-1.733 1.914.714 1.905 1.733 1.905 1.734-.781 1.734-1.905", fill: "#000" }), _jsx("path", { className: "ams-logo__text-primary", d: "M19.943 14.6h2.067l3.58 8.952h-1.914l-.743-1.971h-3.98l-.743 1.971h-1.848zm-.457 5.495h2.895l-1.429-3.771h-.028l-1.429 3.771zm7.228-3.343h1.6v.924h.029c.343-.705.952-1.085 1.733-1.085.886 0 1.543.38 1.953 1.152.41-.743 1.171-1.152 2.133-1.152 1.676 0 2.495.933 2.495 2.847v4.114h-1.705v-3.828c0-1.114-.38-1.657-1.18-1.657s-1.23.59-1.23 1.705v3.77h-1.704v-3.828c0-1.133-.371-1.657-1.181-1.657s-1.229.61-1.229 1.705v3.771h-1.704v-6.8zM39.8 20.705c-.924-.276-1.819-.772-1.819-2.01s1.048-2.105 2.6-2.105c1.048 0 1.857.372 2.314 1.058l-.98.98c-.344-.428-.81-.657-1.325-.657-.58 0-.933.258-.933.677 0 .552.581.647 1.42.905.923.276 1.818.77 1.818 2.009s-1.105 2.162-2.724 2.162c-1.057 0-1.914-.371-2.41-1.076l.982-.981c.371.438.867.676 1.419.676.657 0 1.057-.276 1.057-.733 0-.553-.581-.648-1.419-.905m4.905.41V18.17h-1.172v-1.419h.62c.561 0 .78-.219.78-.78v-1.058h1.457v1.848h1.658v1.419H46.39v2.943c0 .657.343 1.028.981 1.028.191 0 .43-.028.562-.066v1.428c-.21.057-.59.095-.895.095-1.543 0-2.343-.857-2.343-2.495zm4.19-.963c0-2.104 1.42-3.571 3.448-3.571s3.428 1.448 3.428 3.524c0 .162-.028.428-.057.61H50.62c.124.923.905 1.542 1.914 1.542.743 0 1.39-.276 1.82-.771l1.028 1.01c-.619.8-1.695 1.228-2.933 1.228-2.095 0-3.553-1.476-3.553-3.571Zm1.724-.685h3.429c-.115-.895-.8-1.505-1.724-1.505s-1.61.61-1.705 1.505m6.562-2.715h1.61v1.134h.028c.333-.772.933-1.181 1.733-1.181.21 0 .496.028.61.066V18.4c-.19-.057-.562-.095-.838-.095-.867 0-1.429.657-1.429 1.676v3.581H57.19v-6.8zm4.467 3.429c0-2.105 1.39-3.59 3.361-3.59.905 0 1.658.4 2.124 1.133h.029V13.58h1.705v9.99h-1.61v-1.057h-.028c-.438.772-1.267 1.229-2.22 1.229-1.97 0-3.361-1.476-3.361-3.543zm5.514-.029c0-1.228-.762-2.038-1.876-2.038s-1.886.829-1.886 2.038.762 2.038 1.886 2.038 1.876-.809 1.876-2.038m3.01 1.467c0-1.305 1.085-2.095 2.904-2.105H74.4v-.238c0-.8-.514-1.21-1.429-1.21-.61 0-1.143.239-1.514.658l-1.028-1.01c.59-.733 1.542-1.133 2.714-1.133 1.819 0 2.971.99 2.971 2.571v2.696c0 .247.114.361.381.361h.124v1.334h-.8c-.648 0-1.086-.305-1.229-.8h-.028c-.429.619-1.133.962-1.981.962-1.429 0-2.41-.857-2.41-2.105zm4.228-.59v-.381h-1.133c-.895.028-1.381.342-1.381.933 0 .524.41.895.99.895.895 0 1.514-.59 1.514-1.448zm3.552-4.277h1.6v.924h.029c.343-.705.952-1.085 1.733-1.085.886 0 1.543.38 1.953 1.152.41-.743 1.171-1.152 2.133-1.152 1.676 0 2.495.933 2.495 2.847v4.114h-1.704v-3.828c0-1.114-.382-1.657-1.182-1.657s-1.228.59-1.228 1.705v3.77h-1.705v-3.828c0-1.133-.371-1.657-1.18-1.657s-1.23.61-1.23 1.705v3.771h-1.704v-6.8zM16.742 5.581c0-2.714 1.906-4.629 4.591-4.629 1.362 0 2.505.438 3.324 1.324l-1.18 1.134c-.515-.562-1.239-.896-2.106-.896-1.628 0-2.752 1.267-2.752 3.077s1.105 3.123 2.686 3.123c1.447 0 2.447-.828 2.447-2.028v-.238H21.59V4.943h3.981v1.39c0 2.286-1.78 3.896-4.323 3.896s-4.486-1.924-4.486-4.658zm9.972 1.086c0-2.105 1.42-3.572 3.448-3.572S33.59 4.543 33.59 6.62c0 .162-.03.429-.058.61h-5.095c.124.923.905 1.542 1.915 1.542.742 0 1.39-.276 1.819-.77L33.2 9.01c-.619.8-1.695 1.228-2.933 1.228-2.095 0-3.553-1.476-3.553-3.571Zm1.724-.686h3.429c-.115-.895-.8-1.505-1.724-1.505s-1.61.61-1.705 1.505M35 3.267h1.6v.924h.029c.343-.705.952-1.086 1.733-1.086.886 0 1.543.38 1.952 1.152.41-.743 1.172-1.152 2.134-1.152 1.676 0 2.495.933 2.495 2.847v4.115h-1.705V6.238c0-1.114-.38-1.657-1.18-1.657s-1.23.59-1.23 1.705v3.771h-1.704V6.238c0-1.133-.372-1.657-1.181-1.657s-1.229.61-1.229 1.705v3.771H35.01v-6.79zm11.295 3.4c0-2.105 1.42-3.572 3.448-3.572S53.17 4.543 53.17 6.62c0 .162-.028.429-.057.61H48.02c.124.923.905 1.542 1.914 1.542.743 0 1.39-.276 1.82-.77L52.78 9.01c-.619.8-1.695 1.228-2.933 1.228-2.095 0-3.553-1.476-3.553-3.571Zm1.724-.686h3.429c-.115-.895-.8-1.505-1.724-1.505s-1.61.61-1.705 1.505m6.143.686c0-2.105 1.419-3.572 3.448-3.572s3.428 1.448 3.428 3.524c0 .162-.028.429-.057.61h-5.095c.124.923.905 1.542 1.914 1.542.743 0 1.39-.276 1.82-.77l1.028 1.009c-.62.8-1.695 1.228-2.934 1.228-2.095 0-3.552-1.476-3.552-3.571Zm1.724-.686h3.428c-.114-.895-.8-1.505-1.723-1.505-.924 0-1.61.61-1.705 1.505m6.571-2.714h1.61v.924h.028c.314-.677 1.01-1.086 1.8-1.086 1.705 0 2.59.98 2.59 2.847v4.115h-1.704v-3.79c0-1.153-.41-1.696-1.276-1.696s-1.334.61-1.334 1.733v3.743h-1.704v-6.79zm8.22 4.362V4.676h-1.172V3.257h.619c.562 0 .78-.219.78-.78V1.418h1.458v1.848h1.657v1.419h-1.657v2.952c0 .657.343 1.029.98 1.029.191 0 .43-.029.563-.067v1.428c-.21.058-.59.096-.895.096-1.543 0-2.343-.857-2.343-2.496zm4.19-.962c0-2.105 1.419-3.572 3.447-3.572s3.429 1.448 3.429 3.524c0 .162-.029.429-.057.61H76.59c.123.923.904 1.542 1.914 1.542.743 0 1.39-.276 1.819-.77l1.028 1.009c-.619.8-1.695 1.228-2.933 1.228-2.095 0-3.552-1.476-3.552-3.571m1.723-.686h3.43c-.115-.895-.8-1.505-1.725-1.505-.924 0-1.61.61-1.705 1.505", fill: "#EC0000" })] })));
|
|
4
|
+
StadsbankVanLeningLogo.displayName = 'StadsbankVanLeningLogo';
|
|
5
|
+
export default StadsbankVanLeningLogo;
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
5
|
import type { SVGProps } from 'react';
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const VgaVerzekeringenLogo: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default VgaVerzekeringenLogo;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const VgaVerzekeringenLogo = forwardRef((props, ref) => (_jsxs("svg", { className: "ams-logo", focusable: "false", height: "2.5rem", ref: ref, role: "img", viewBox: "0 0 134.884 40", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { className: "ams-logo__emblem", d: "m0 35.535 3.284-3.284L0 28.967l2.186-2.186 3.284 3.284 3.283-3.284 2.186 2.186-3.283 3.284 3.283 3.284-2.186 2.186-3.283-3.284-3.284 3.284zm0-26.27 3.284-3.284L0 2.698 2.186.512 5.47 3.795 8.754.512l2.186 2.186L7.656 5.98l3.284 3.284-2.186 2.186L5.47 8.167l-3.284 3.284zM0 22.41l3.284-3.283L0 15.842l2.186-2.186L5.47 16.94l3.283-3.284 2.186 2.186-3.283 3.284 3.283 3.283-2.186 2.186-3.283-3.283-3.284 3.283z", fill: "#EC0000" }), _jsx("path", { className: "ams-logo__text-secondary", d: "M15.935 27.777h1.926l2.223 6.716h.028l2.25-6.716h1.843l-3.126 8.744h-2.018zm8.716 4.362c0-2.65 1.86-4.52 4.484-4.52 1.33 0 2.446.427 3.246 1.293l-1.153 1.107c-.502-.55-1.21-.875-2.056-.875-1.59 0-2.688 1.237-2.688 3.005s1.079 3.051 2.623 3.051c1.414 0 2.39-.81 2.39-1.981v-.233h-2.11v-1.47h3.887v1.358c0 2.233-1.739 3.805-4.223 3.805S24.67 34.8 24.67 32.13zm12.958-4.362h2.019l3.498 8.744h-1.87l-.726-1.926h-3.888l-.726 1.926h-1.804zm-.446 5.367h2.828l-1.396-3.684h-.028l-1.395 3.684zm9.702-5.367h1.926l2.223 6.716h.028l2.251-6.716h1.842l-3.126 8.744h-2.018zm8.41 5.423c0-2.056 1.385-3.488 3.367-3.488s3.349 1.414 3.349 3.442c0 .158-.028.418-.056.595h-4.977c.121.902.884 1.507 1.87 1.507.725 0 1.358-.27 1.777-.754l1.004.986c-.604.782-1.656 1.2-2.865 1.2-2.046 0-3.47-1.442-3.47-3.488Zm1.683-.67h3.349c-.112-.874-.782-1.47-1.684-1.47s-1.572.596-1.665 1.47m6.419-2.65h1.572v1.106h.028c.325-.753.911-1.153 1.693-1.153.204 0 .483.028.595.065v1.59c-.186-.055-.549-.093-.819-.093-.846 0-1.395.642-1.395 1.638v3.497h-1.665v-6.642zm4.54 5.525 3.162-4.14h-3.07V29.88h5.33v1.116l-3.162 4.14h3.256v1.386h-5.517zm6.39-2.205c0-2.056 1.386-3.488 3.367-3.488s3.35 1.414 3.35 3.442c0 .158-.029.418-.057.595h-4.976c.12.902.883 1.507 1.87 1.507.725 0 1.358-.27 1.776-.754l1.005.986c-.605.782-1.656 1.2-2.865 1.2-2.047 0-3.47-1.442-3.47-3.488Zm1.684-.67h3.349c-.112-.874-.782-1.47-1.684-1.47-.903 0-1.572.596-1.665 1.47m8.083 3.99H82.41v-9.757h1.665v6.111h.028l2.475-3.004h2.018l-2.567 2.949 2.688 3.702h-2.018l-1.842-2.614-.782.902zm4.93-3.32c0-2.056 1.387-3.488 3.368-3.488s3.349 1.414 3.349 3.442c0 .158-.028.418-.056.595h-4.977c.121.902.884 1.507 1.87 1.507.726 0 1.358-.27 1.777-.754l1.005.986c-.605.782-1.656 1.2-2.865 1.2-2.047 0-3.47-1.442-3.47-3.488Zm1.684-.67h3.35c-.112-.874-.782-1.47-1.684-1.47-.903 0-1.573.596-1.666 1.47m6.41-2.65h1.572v1.106h.028c.325-.753.911-1.153 1.693-1.153.204 0 .483.028.595.065v1.59c-.186-.055-.549-.093-.819-.093-.846 0-1.395.642-1.395 1.638v3.497h-1.665v-6.642zm5.832-.847c-.577 0-.995-.4-.995-.968 0-.567.418-.967.995-.967s.995.4.995.967c0 .568-.418.968-.995.968m-.837.846h1.665v6.642h-1.665zm3.47 0h1.572v.902h.028c.307-.66.986-1.06 1.758-1.06 1.665 0 2.53.958 2.53 2.781v4.019h-1.665v-3.702c0-1.126-.4-1.656-1.256-1.656s-1.302.595-1.302 1.693v3.656h-1.665V29.87zm7.507 8.233 1.079-1.052c.363.419 1.023.67 1.74.67 1.209 0 1.879-.549 1.879-1.516V35.19h-.028c-.372.697-1.08 1.088-1.954 1.088-1.87 0-3.107-1.32-3.107-3.284s1.274-3.265 3.107-3.265c.94 0 1.684.419 2.047 1.126h.027v-.986h1.573v6.4c0 1.776-1.359 2.893-3.526 2.893-1.237 0-2.26-.39-2.837-1.06zm4.707-5.117c0-1.107-.689-1.87-1.693-1.87s-1.693.763-1.693 1.87.697 1.86 1.693 1.86 1.693-.762 1.693-1.86m3.042.205c0-2.056 1.386-3.488 3.367-3.488s3.349 1.414 3.349 3.442c0 .158-.028.418-.056.595h-4.977c.121.902.884 1.507 1.87 1.507.726 0 1.358-.27 1.777-.754l1.005.986c-.605.782-1.656 1.2-2.866 1.2-2.046 0-3.47-1.442-3.47-3.488Zm1.683-.67h3.35c-.113-.874-.782-1.47-1.685-1.47-.902 0-1.572.596-1.665 1.47m6.419-2.65h1.572v.901h.028c.307-.66.986-1.06 1.758-1.06 1.665 0 2.53.958 2.53 2.781v4.019h-1.665v-3.702c0-1.126-.4-1.656-1.256-1.656-.855 0-1.302.595-1.302 1.693v3.656h-1.665V29.87v.009Z", fill: "#000" }), _jsx("path", { className: "ams-logo__text-primary", d: "M19.48 14.772h2.018l3.497 8.744h-1.87l-.725-1.925h-3.888l-.726 1.925h-1.805l3.498-8.744m-.447 5.368h2.827l-1.395-3.684h-.028l-1.395 3.684zm7.06-3.266h1.563v.903h.028c.335-.689.93-1.06 1.693-1.06.865 0 1.507.371 1.907 1.125.4-.726 1.144-1.126 2.083-1.126 1.638 0 2.438.912 2.438 2.782v4.018h-1.666v-3.74c0-1.088-.372-1.618-1.153-1.618s-1.2.577-1.2 1.665v3.684h-1.665v-3.74c0-1.107-.363-1.618-1.154-1.618s-1.2.595-1.2 1.665v3.684h-1.665v-6.642zm12.781 3.86c-.902-.269-1.776-.753-1.776-1.962s1.023-2.056 2.54-2.056c1.023 0 1.813.363 2.26 1.033l-.958.958c-.335-.419-.791-.642-1.293-.642-.568 0-.912.251-.912.66 0 .54.567.633 1.386.884.902.27 1.777.754 1.777 1.963s-1.08 2.112-2.66 2.112c-1.033 0-1.87-.363-2.354-1.052l.958-.958c.363.428.846.66 1.386.66.642 0 1.032-.269 1.032-.715 0-.54-.567-.633-1.386-.884m4.791.4V18.26h-1.144v-1.386h.605c.548 0 .762-.214.762-.762v-1.033h1.424v1.805h1.618v1.386h-1.618v2.874c0 .642.335 1.005.958 1.005.186 0 .418-.028.549-.065v1.395a4 4 0 0 1-.875.093c-1.507 0-2.288-.837-2.288-2.437zm4.093-.939c0-2.056 1.386-3.488 3.367-3.488s3.35 1.414 3.35 3.442c0 .158-.029.418-.057.595h-4.976c.12.902.884 1.507 1.87 1.507.725 0 1.358-.27 1.776-.753l1.005.986c-.605.781-1.656 1.2-2.865 1.2-2.047 0-3.47-1.442-3.47-3.489m1.684-.67h3.349c-.112-.874-.782-1.47-1.684-1.47s-1.572.596-1.665 1.47m6.41-2.65h1.571v1.106h.028c.326-.753.912-1.153 1.693-1.153.205 0 .484.028.595.065v1.59c-.185-.055-.548-.092-.818-.092-.847 0-1.395.642-1.395 1.637v3.498H55.86v-6.642zm4.362 3.348c0-2.056 1.358-3.507 3.284-3.507.883 0 1.618.391 2.074 1.107h.028v-4.046h1.665v9.758h-1.572v-1.033h-.028c-.428.754-1.237 1.2-2.167 1.2-1.926 0-3.284-1.442-3.284-3.46zm5.386-.028c0-1.2-.744-1.99-1.833-1.99s-1.842.809-1.842 1.99.745 1.991 1.842 1.991 1.833-.79 1.833-1.99m2.94 1.433c0-1.274 1.06-2.047 2.837-2.056h1.293v-.233c0-.78-.503-1.18-1.396-1.18-.595 0-1.116.232-1.479.641l-1.004-.986c.576-.716 1.507-1.107 2.65-1.107 1.777 0 2.903.967 2.903 2.512v2.632c0 .242.112.354.372.354h.121v1.302h-.781c-.633 0-1.06-.298-1.2-.781h-.028c-.419.604-1.107.94-1.935.94-1.395 0-2.354-.838-2.354-2.057zm4.13-.577v-.372h-1.107c-.875.028-1.35.335-1.35.912 0 .511.4.874.968.874.875 0 1.48-.577 1.48-1.414zm3.47-4.177h1.562v.903h.028c.335-.689.93-1.06 1.693-1.06.865 0 1.507.371 1.907 1.125.4-.726 1.144-1.126 2.084-1.126 1.637 0 2.437.912 2.437 2.782v4.018h-1.665v-3.74c0-1.088-.372-1.618-1.153-1.618s-1.2.577-1.2 1.665v3.684h-1.666v-3.74c0-1.107-.362-1.618-1.153-1.618s-1.2.595-1.2 1.665v3.684h-1.665v-6.642zM16.353 5.963c0-2.651 1.861-4.521 4.484-4.521 1.33 0 2.447.428 3.247 1.293L22.93 3.842c-.502-.549-1.21-.875-2.056-.875-1.59 0-2.688 1.238-2.688 3.005s1.08 3.051 2.623 3.051c1.414 0 2.391-.809 2.391-1.981v-.233h-2.112V5.34h3.889v1.359c0 2.232-1.74 3.804-4.224 3.804s-4.38-1.879-4.38-4.549zm9.74 1.06c0-2.055 1.386-3.488 3.367-3.488s3.35 1.414 3.35 3.442c0 .158-.029.418-.057.595h-4.976c.12.902.883 1.507 1.87 1.507.725 0 1.358-.27 1.776-.753l1.005.986c-.605.781-1.656 1.2-2.865 1.2-2.047 0-3.47-1.442-3.47-3.489Zm1.684-.67h3.348c-.111-.874-.78-1.47-1.683-1.47-.902 0-1.572.596-1.665 1.47m6.409-2.65h1.563v.902h.028c.335-.689.93-1.06 1.693-1.06.865 0 1.507.371 1.907 1.125.4-.726 1.144-1.126 2.083-1.126 1.638 0 2.438.912 2.438 2.782v4.018h-1.665v-3.74c0-1.088-.372-1.618-1.154-1.618s-1.2.577-1.2 1.665v3.684h-1.665v-3.73c0-1.107-.363-1.619-1.154-1.619s-1.2.595-1.2 1.665v3.684h-1.665V3.702zm11.033 3.32c0-2.055 1.386-3.488 3.367-3.488s3.349 1.414 3.349 3.442c0 .158-.028.418-.056.595h-4.977c.121.902.884 1.507 1.87 1.507.726 0 1.358-.27 1.777-.753l1.004.986c-.604.781-1.655 1.2-2.865 1.2-2.046 0-3.47-1.442-3.47-3.489Zm1.683-.67h3.35c-.113-.874-.782-1.47-1.685-1.47-.902 0-1.572.596-1.665 1.47m6 .67c0-2.055 1.386-3.488 3.368-3.488s3.348 1.414 3.348 3.442c0 .158-.027.418-.055.595h-4.977c.12.902.884 1.507 1.87 1.507.725 0 1.358-.27 1.776-.753l1.005.986c-.605.781-1.656 1.2-2.865 1.2-2.046 0-3.47-1.442-3.47-3.489Zm1.684-.67h3.349c-.112-.874-.782-1.47-1.684-1.47s-1.572.596-1.665 1.47m6.419-2.65h1.572v.902h.028c.307-.66.986-1.06 1.758-1.06 1.665 0 2.53.957 2.53 2.78v4.02h-1.665V6.641c0-1.126-.4-1.656-1.247-1.656-.846 0-1.302.595-1.302 1.693v3.656h-1.665V3.702zm8.028 4.26V5.088h-1.145V3.702h.605c.549 0 .763-.214.763-.762V1.898h1.423v1.804h1.619v1.386h-1.619v2.875c0 .642.335 1.004.958 1.004.186 0 .419-.027.55-.065v1.396a4 4 0 0 1-.875.093c-1.507 0-2.289-.837-2.289-2.437zm4.093-.94c0-2.055 1.386-3.488 3.367-3.488s3.349 1.414 3.349 3.442c0 .158-.028.418-.056.595h-4.977c.121.902.884 1.507 1.87 1.507.726 0 1.358-.27 1.777-.753l1.005.986c-.605.781-1.656 1.2-2.866 1.2-2.046 0-3.47-1.442-3.47-3.489Zm1.683-.67h3.35c-.113-.874-.782-1.47-1.685-1.47-.902 0-1.572.596-1.665 1.47", fill: "#EC0000" })] })));
|
|
4
|
+
VgaVerzekeringenLogo.displayName = 'VgaVerzekeringenLogo';
|
|
5
|
+
export default VgaVerzekeringenLogo;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license EUPL-1.2+
|
|
3
|
+
* Copyright Gemeente Amsterdam
|
|
4
|
+
*/
|
|
5
|
+
export { default as AmsterdamEnglishLogo } from './AmsterdamEnglishLogo';
|
|
6
|
+
export { default as AmsterdamLogo } from './AmsterdamLogo';
|
|
7
|
+
export { default as GgdAmsterdamInspectieLogo } from './GgdAmsterdamInspectieLogo';
|
|
8
|
+
export { default as GgdAmsterdamLogo } from './GgdAmsterdamLogo';
|
|
9
|
+
export { default as MuseumWeespLogo } from './MuseumWeespLogo';
|
|
10
|
+
export { default as StadsarchiefLogo } from './StadsarchiefLogo';
|
|
11
|
+
export { default as StadsbankVanLeningLogo } from './StadsbankVanLeningLogo';
|
|
12
|
+
export { default as VgaVerzekeringenLogo } from './VgaVerzekeringenLogo';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license EUPL-1.2+
|
|
3
|
+
* Copyright Gemeente Amsterdam
|
|
4
|
+
*/
|
|
5
|
+
export { default as AmsterdamEnglishLogo } from './AmsterdamEnglishLogo';
|
|
6
|
+
export { default as AmsterdamLogo } from './AmsterdamLogo';
|
|
7
|
+
export { default as GgdAmsterdamInspectieLogo } from './GgdAmsterdamInspectieLogo';
|
|
8
|
+
export { default as GgdAmsterdamLogo } from './GgdAmsterdamLogo';
|
|
9
|
+
export { default as MuseumWeespLogo } from './MuseumWeespLogo';
|
|
10
|
+
export { default as StadsarchiefLogo } from './StadsarchiefLogo';
|
|
11
|
+
export { default as StadsbankVanLeningLogo } from './StadsbankVanLeningLogo';
|
|
12
|
+
export { default as VgaVerzekeringenLogo } from './VgaVerzekeringenLogo';
|
package/dist/Menu/Menu.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export type MenuProps = {
|
|
|
7
7
|
/**
|
|
8
8
|
* A name for this menu, which screen readers will announce.
|
|
9
9
|
* Only applies to the `inWideWindow` appearance: otherwise, the menu is in the Page Header, which ensures accessibility itself.
|
|
10
|
-
* @default
|
|
10
|
+
* @default Hoofdmenu
|
|
11
11
|
*/
|
|
12
12
|
accessibleName?: string;
|
|
13
13
|
/** Hides the component on narrow windows. */
|
|
@@ -17,7 +17,7 @@ export declare const MenuRoot: import("react").ForwardRefExoticComponent<{
|
|
|
17
17
|
/**
|
|
18
18
|
* A name for this menu, which screen readers will announce.
|
|
19
19
|
* Only applies to the `inWideWindow` appearance: otherwise, the menu is in the Page Header, which ensures accessibility itself.
|
|
20
|
-
* @default
|
|
20
|
+
* @default Hoofdmenu
|
|
21
21
|
*/
|
|
22
22
|
accessibleName?: string;
|
|
23
23
|
/** Hides the component on narrow windows. */
|
|
@@ -32,7 +32,7 @@ export declare const Menu: import("react").ForwardRefExoticComponent<{
|
|
|
32
32
|
/**
|
|
33
33
|
* A name for this menu, which screen readers will announce.
|
|
34
34
|
* Only applies to the `inWideWindow` appearance: otherwise, the menu is in the Page Header, which ensures accessibility itself.
|
|
35
|
-
* @default
|
|
35
|
+
* @default Hoofdmenu
|
|
36
36
|
*/
|
|
37
37
|
accessibleName?: string;
|
|
38
38
|
/** Hides the component on narrow windows. */
|
package/dist/Menu/Menu.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { clsx } from 'clsx';
|
|
3
3
|
import { forwardRef, useId } from 'react';
|
|
4
4
|
import { MenuLink } from './MenuLink';
|
|
5
|
-
export const MenuRoot = forwardRef(({ accessibleName = '
|
|
5
|
+
export const MenuRoot = forwardRef(({ accessibleName = 'Hoofdmenu', children, className, inWideWindow, ...restProps }, ref) => {
|
|
6
6
|
// In a medium or narrow window, the Menu is a child of the `nav` of Page Header.
|
|
7
7
|
// In a wide window, we render a `nav` element and the related accessibility features.
|
|
8
8
|
const Tag = inWideWindow ? 'nav' : 'div';
|
|
@@ -34,7 +34,10 @@ export type PageHeaderProps = {
|
|
|
34
34
|
menuButtonTextForShow?: string;
|
|
35
35
|
/** A slot for the menu items. Use PageHeader.MenuLink here. */
|
|
36
36
|
menuItems?: ReactNode;
|
|
37
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* The accessible label for the navigation section.
|
|
39
|
+
* @default Hoofdmenu
|
|
40
|
+
*/
|
|
38
41
|
navigationLabel?: string;
|
|
39
42
|
/** Whether the menu button is visible on wide screens. */
|
|
40
43
|
noMenuButtonOnWideWindow?: boolean;
|
|
@@ -70,7 +73,10 @@ export declare const PageHeader: import("react").ForwardRefExoticComponent<{
|
|
|
70
73
|
menuButtonTextForShow?: string;
|
|
71
74
|
/** A slot for the menu items. Use PageHeader.MenuLink here. */
|
|
72
75
|
menuItems?: ReactNode;
|
|
73
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* The accessible label for the navigation section.
|
|
78
|
+
* @default Hoofdmenu
|
|
79
|
+
*/
|
|
74
80
|
navigationLabel?: string;
|
|
75
81
|
/** Whether the menu button is visible on wide screens. */
|
|
76
82
|
noMenuButtonOnWideWindow?: boolean;
|
|
@@ -7,7 +7,7 @@ import { LogoLinkContent } from './LogoLinkContent';
|
|
|
7
7
|
import { PageHeaderGridCellNarrowWindowOnly } from './PageHeaderGridCellNarrowWindowOnly';
|
|
8
8
|
import { PageHeaderMenuIcon } from './PageHeaderMenuIcon';
|
|
9
9
|
import { PageHeaderMenuLink } from './PageHeaderMenuLink';
|
|
10
|
-
const PageHeaderRoot = forwardRef(({ brandName, brandNameShort, children, className, logoAccessibleName, logoBrand = 'amsterdam', logoLink = '/', logoLinkComponent = (props) => _jsx("a", { ...props }), logoLinkTitle, menuButtonIcon, menuButtonText = 'Menu', menuButtonTextForHide = 'Verberg navigatiemenu', menuButtonTextForShow = 'Laat navigatiemenu zien', menuItems, navigationLabel = '
|
|
10
|
+
const PageHeaderRoot = forwardRef(({ brandName, brandNameShort, children, className, logoAccessibleName, logoBrand = 'amsterdam', logoLink = '/', logoLinkComponent = (props) => _jsx("a", { ...props }), logoLinkTitle, menuButtonIcon, menuButtonText = 'Menu', menuButtonTextForHide = 'Verberg navigatiemenu', menuButtonTextForShow = 'Laat navigatiemenu zien', menuItems, navigationLabel = 'Hoofdmenu', noMenuButtonOnWideWindow, ...restProps }, ref) => {
|
|
11
11
|
const [open, setOpen] = useState(false);
|
|
12
12
|
const viewportHasMinWidth = useViewportHasMinWidth('wide');
|
|
13
13
|
const accessibleLabelId = useId();
|
|
@@ -3,5 +3,5 @@ export const LinkItem = ({ currentPage, linkComponent, linkTemplate, pageNumber
|
|
|
3
3
|
if (!linkComponent)
|
|
4
4
|
return null;
|
|
5
5
|
const Link = linkComponent;
|
|
6
|
-
return (_jsx("li", { children: _jsxs(Link, { "aria-current": pageNumber === currentPage ? 'page' : undefined, className: "ams-pagination__link", href: linkTemplate(pageNumber), children: [_jsx("span", { className: "ams-visually-hidden", children: pageNumber === currentPage ?
|
|
6
|
+
return (_jsx("li", { children: _jsxs(Link, { "aria-current": pageNumber === currentPage ? 'page' : undefined, className: "ams-pagination__link", href: linkTemplate(pageNumber), children: [_jsx("span", { className: "ams-visually-hidden", children: pageNumber === currentPage ? 'Pagina ' : 'Ga naar pagina ' }), pageNumber] }) }));
|
|
7
7
|
};
|
|
@@ -17,6 +17,6 @@ export const Pagination = forwardRef(({ accessibleName, accessibleNameId, classN
|
|
|
17
17
|
const Link = linkComponent;
|
|
18
18
|
// Get array of page numbers and / or spacers
|
|
19
19
|
const range = getRange(page, totalPages, maxVisiblePages);
|
|
20
|
-
return (_jsxs("nav", { ...restProps, "aria-labelledby": accessibleNameId || visuallyHiddenLabelId || 'ams-pagination-a11y-label', className: clsx('ams-pagination', className), ref: ref, children: [_jsx("span", { className: "ams-visually-hidden", id: accessibleNameId || visuallyHiddenLabelId || 'ams-pagination-a11y-label', children: accessibleName || visuallyHiddenLabel || 'Paginering' }), page !== 1 && (_jsxs(Link, { className: "ams-pagination__link", href: linkTemplate(page - 1), rel: "prev", children: [_jsx(Icon, { svg: ChevronBackwardIcon }), _jsx("span", { className: "ams-visually-hidden", children: previousAccessibleName || previousVisuallyHiddenLabel || 'Vorige pagina' }), _jsx("span", { "aria-hidden": true, children: previousLabel })] })), _jsx("ol", { className: "ams-pagination__list", children: range.map((pageNumberOrSpacer) => typeof pageNumberOrSpacer === 'number' ? (_jsx(LinkItem, { currentPage: page, linkComponent: linkComponent, linkTemplate: linkTemplate, pageNumber: pageNumberOrSpacer }, pageNumberOrSpacer)) : (_jsx(Spacer, {}, pageNumberOrSpacer))) }), page !== totalPages && (_jsxs(Link, { className: "ams-pagination__link", href: linkTemplate(page + 1), rel: "next", children: [_jsx("span", { className: "ams-visually-hidden", children: nextAccessibleName || nextVisuallyHiddenLabel || 'Volgende pagina' }), _jsx("span", { "aria-hidden": true, children: nextLabel }), _jsx(Icon, { svg: ChevronForwardIcon })] }))] }));
|
|
20
|
+
return (_jsxs("nav", { ...restProps, "aria-labelledby": accessibleNameId || visuallyHiddenLabelId || 'ams-pagination-a11y-label', className: clsx('ams-pagination', className), ref: ref, children: [_jsx("span", { className: "ams-visually-hidden", id: accessibleNameId || visuallyHiddenLabelId || 'ams-pagination-a11y-label', children: accessibleName || visuallyHiddenLabel || 'Paginering' }), page !== 1 && (_jsxs(Link, { className: "ams-pagination__link", href: linkTemplate(page - 1), rel: "prev", children: [_jsx(Icon, { svg: ChevronBackwardIcon }), _jsx("span", { className: "ams-visually-hidden", children: previousAccessibleName || previousVisuallyHiddenLabel || 'Vorige pagina' }), _jsx("span", { "aria-hidden": true, className: "ams-pagination__link-label", hidden: true, children: previousLabel })] })), _jsx("ol", { className: "ams-pagination__list", children: range.map((pageNumberOrSpacer) => typeof pageNumberOrSpacer === 'number' ? (_jsx(LinkItem, { currentPage: page, linkComponent: linkComponent, linkTemplate: linkTemplate, pageNumber: pageNumberOrSpacer }, pageNumberOrSpacer)) : (_jsx(Spacer, {}, pageNumberOrSpacer))) }), page !== totalPages && (_jsxs(Link, { className: "ams-pagination__link", href: linkTemplate(page + 1), rel: "next", children: [_jsx("span", { className: "ams-visually-hidden", children: nextAccessibleName || nextVisuallyHiddenLabel || 'Volgende pagina' }), _jsx("span", { "aria-hidden": true, className: "ams-pagination__link-label", hidden: true, children: nextLabel }), _jsx(Icon, { svg: ChevronForwardIcon })] }))] }));
|
|
21
21
|
});
|
|
22
22
|
Pagination.displayName = 'Pagination';
|
|
@@ -45,8 +45,10 @@ export declare const ProgressList: import("react").ForwardRefExoticComponent<{
|
|
|
45
45
|
children?: import("react").ReactNode | undefined;
|
|
46
46
|
} & import("react").RefAttributes<HTMLOListElement>> & {
|
|
47
47
|
Step: import("react").ForwardRefExoticComponent<{
|
|
48
|
+
defaultCollapsed?: boolean;
|
|
48
49
|
hasSubsteps?: boolean;
|
|
49
50
|
heading: string;
|
|
51
|
+
onToggle?: (expanded: boolean) => void;
|
|
50
52
|
status?: "current" | "completed";
|
|
51
53
|
} & HTMLAttributes<HTMLElement> & {
|
|
52
54
|
children?: import("react").ReactNode | undefined;
|
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { clsx } from 'clsx';
|
|
3
|
-
import { forwardRef } from 'react';
|
|
3
|
+
import { forwardRef, useImperativeHandle, useRef } from 'react';
|
|
4
|
+
import { useKeyboardFocus } from '../common/useKeyboardFocus';
|
|
4
5
|
import { headingLevels } from '../Heading/Heading';
|
|
5
6
|
import { ProgressListContext } from './ProgressListContext';
|
|
6
7
|
import { ProgressListStep } from './ProgressListStep';
|
|
7
8
|
import { ProgressListSubstep } from './ProgressListSubstep';
|
|
8
9
|
import { ProgressListSubsteps } from './ProgressListSubsteps';
|
|
9
10
|
export const progressListHeadingLevels = headingLevels.filter((level) => level !== 1);
|
|
10
|
-
const ProgressListRoot = forwardRef(({ children, className, completedAccessibleText, currentAccessibleText, headingLevel, ...restProps }, ref) =>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
const ProgressListRoot = forwardRef(({ children, className, completedAccessibleText, currentAccessibleText, headingLevel, ...restProps }, ref) => {
|
|
12
|
+
const innerRef = useRef(null);
|
|
13
|
+
useImperativeHandle(ref, () => innerRef.current);
|
|
14
|
+
const { keyDown } = useKeyboardFocus(innerRef, {
|
|
15
|
+
focusableElements: ['.ams-progress-list__button:not([disabled])'],
|
|
16
|
+
rotating: true,
|
|
17
|
+
});
|
|
18
|
+
return (_jsx(ProgressListContext.Provider, { value: {
|
|
19
|
+
completedAccessibleText: completedAccessibleText ?? 'Klaar',
|
|
20
|
+
currentAccessibleText: currentAccessibleText ?? 'Bezig',
|
|
21
|
+
headingLevel,
|
|
22
|
+
}, children: _jsx("ol", { ...restProps, className: clsx('ams-progress-list', `ams-progress-list--heading-${headingLevel}`, className), onKeyDown: keyDown, ref: innerRef, children: children }) }));
|
|
23
|
+
});
|
|
15
24
|
/**
|
|
16
25
|
* @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-progress-list--docs Progress List docs at Amsterdam Design System}
|
|
17
26
|
*/
|
|
@@ -4,18 +4,32 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import type { HTMLAttributes, PropsWithChildren } from 'react';
|
|
6
6
|
export type ProgressListStepProps = {
|
|
7
|
+
/**
|
|
8
|
+
* Whether the content is initially collapsed.
|
|
9
|
+
* Defaults to `true` when `status` is `'completed'`, and `false` otherwise.
|
|
10
|
+
*/
|
|
11
|
+
defaultCollapsed?: boolean;
|
|
7
12
|
/** Whether the step contains a list of substeps. This is needed to draw the connecting lines correctly. */
|
|
8
13
|
hasSubsteps?: boolean;
|
|
9
14
|
/** The heading text for this step. */
|
|
10
15
|
heading: string;
|
|
16
|
+
/** Callback fired when the step is expanded or collapsed. Receives the new expanded state. */
|
|
17
|
+
onToggle?: (expanded: boolean) => void;
|
|
11
18
|
/** The current progress state of the step. */
|
|
12
19
|
status?: 'current' | 'completed';
|
|
13
20
|
} & PropsWithChildren<HTMLAttributes<HTMLElement>>;
|
|
14
21
|
export declare const ProgressListStep: import("react").ForwardRefExoticComponent<{
|
|
22
|
+
/**
|
|
23
|
+
* Whether the content is initially collapsed.
|
|
24
|
+
* Defaults to `true` when `status` is `'completed'`, and `false` otherwise.
|
|
25
|
+
*/
|
|
26
|
+
defaultCollapsed?: boolean;
|
|
15
27
|
/** Whether the step contains a list of substeps. This is needed to draw the connecting lines correctly. */
|
|
16
28
|
hasSubsteps?: boolean;
|
|
17
29
|
/** The heading text for this step. */
|
|
18
30
|
heading: string;
|
|
31
|
+
/** Callback fired when the step is expanded or collapsed. Receives the new expanded state. */
|
|
32
|
+
onToggle?: (expanded: boolean) => void;
|
|
19
33
|
/** The current progress state of the step. */
|
|
20
34
|
status?: "current" | "completed";
|
|
21
35
|
} & HTMLAttributes<HTMLElement> & {
|