@utrecht/component-library-react 1.0.0-alpha.274 → 1.0.0-alpha.276
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/.jest-test-results.json +1 -1
- package/dist/BadgeList.d.ts +9 -0
- package/dist/css-module/BadgeList.d.ts +9 -0
- package/dist/css-module/css-module/BadgeList.d.ts +6 -0
- package/dist/css-module/css-module/index.d.ts +1 -0
- package/dist/css-module/index.d.ts +1 -0
- package/dist/css-module/index.js +89 -70
- package/dist/css-module/index.js.map +1 -1
- package/dist/css-module/index.mjs +89 -71
- package/dist/css-module/index.mjs.map +1 -1
- package/dist/index.cjs.js +65 -49
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +65 -50
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license EUPL-1.2
|
|
3
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
4
|
+
*/
|
|
5
|
+
import { HTMLAttributes } from 'react';
|
|
6
|
+
export type BadgeListProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
+
export declare const BadgeList: import("react").ForwardRefExoticComponent<BadgeListProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license EUPL-1.2
|
|
3
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
4
|
+
*/
|
|
5
|
+
import { HTMLAttributes } from 'react';
|
|
6
|
+
export type BadgeListProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
+
export declare const BadgeList: import("react").ForwardRefExoticComponent<BadgeListProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -8,6 +8,7 @@ export { AlertDialog } from './AlertDialog';
|
|
|
8
8
|
export { Article } from './Article';
|
|
9
9
|
export { Backdrop } from './Backdrop';
|
|
10
10
|
export { BadgeCounter } from './BadgeCounter';
|
|
11
|
+
export { BadgeList } from './BadgeList';
|
|
11
12
|
export { BreadcrumbNav, BreadcrumbLink } from './BreadcrumbNav';
|
|
12
13
|
export { Button, PrimaryActionButton, SecondaryActionButton, SubtleButton } from './Button';
|
|
13
14
|
export { ButtonGroup } from './ButtonGroup';
|
|
@@ -8,6 +8,7 @@ export { AlertDialog } from './AlertDialog';
|
|
|
8
8
|
export { Article } from './Article';
|
|
9
9
|
export { Backdrop } from './Backdrop';
|
|
10
10
|
export { BadgeCounter } from './BadgeCounter';
|
|
11
|
+
export { BadgeList } from './BadgeList';
|
|
11
12
|
export { BreadcrumbNav, BreadcrumbLink } from './BreadcrumbNav';
|
|
12
13
|
export { Button, PrimaryActionButton, SecondaryActionButton, SubtleButton } from './Button';
|
|
13
14
|
export { ButtonGroup } from './ButtonGroup';
|