@amsterdam/design-system-react 0.1.8 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @license EUPL-1.2+
3
+ * Copyright (c) 2023 Gemeente Amsterdam
4
+ */
5
+ import { DialogHTMLAttributes, PropsWithChildren, ReactNode } from 'react';
6
+ export interface DialogProps extends PropsWithChildren<DialogHTMLAttributes<HTMLDialogElement>> {
7
+ actions?: ReactNode;
8
+ }
9
+ export declare const Dialog: import("react").ForwardRefExoticComponent<DialogProps & import("react").RefAttributes<HTMLDialogElement>>;
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,2 @@
1
+ export { Dialog } from './Dialog';
2
+ export type { DialogProps } from './Dialog';
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license EUPL-1.2+
3
+ * Copyright (c) 2023 Gemeente Amsterdam
4
+ */
5
+ import { ForwardRefExoticComponent, RefAttributes, SVGProps } from 'react';
6
+ type LogoBrand = 'amsterdam' | 'ggd-amsterdam' | 'stadsarchief' | 'stadsbank-van-lening' | 'vga-verzekeringen';
7
+ export interface LogoProps extends SVGProps<SVGSVGElement> {
8
+ brand?: LogoBrand;
9
+ }
10
+ export declare const Logo: ForwardRefExoticComponent<Omit<LogoProps, "ref"> & RefAttributes<SVGSVGElement>>;
11
+ export {};
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,3 @@
1
+ import { type SVGProps } from 'react';
2
+ declare const LogoAmsterdam: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default LogoAmsterdam;
@@ -0,0 +1,3 @@
1
+ import { type SVGProps } from 'react';
2
+ declare const LogoGgdAmsterdam: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default LogoGgdAmsterdam;
@@ -0,0 +1,3 @@
1
+ import { type SVGProps } from 'react';
2
+ declare const LogoStadsarchief: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default LogoStadsarchief;
@@ -0,0 +1,3 @@
1
+ import { type SVGProps } from 'react';
2
+ declare const LogoStadsbankVanLening: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default LogoStadsbankVanLening;
@@ -0,0 +1,3 @@
1
+ import { type SVGProps } from 'react';
2
+ declare const LogoVgaVerzekeringen: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default LogoVgaVerzekeringen;
@@ -0,0 +1,5 @@
1
+ export { default as LogoAmsterdam } from './LogoAmsterdam';
2
+ export { default as LogoGgdAmsterdam } from './LogoGgdAmsterdam';
3
+ export { default as LogoStadsarchief } from './LogoStadsarchief';
4
+ export { default as LogoStadsbankVanLening } from './LogoStadsbankVanLening';
5
+ export { default as LogoVgaVerzekeringen } from './LogoVgaVerzekeringen';
@@ -0,0 +1,2 @@
1
+ export { Logo } from './Logo';
2
+ export type { LogoProps } from './Logo';