@amsterdam/design-system-react 0.1.7 → 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.
- package/dist/Accordion/Accordion.d.ts +1 -2
- package/dist/Alert/Alert.d.ts +2 -2
- package/dist/AspectRatio/AspectRatio.d.ts +1 -1
- package/dist/Breadcrumb/Breadcrumb.d.ts +3 -4
- package/dist/Card/Card.d.ts +19 -0
- package/dist/Card/Card.test.d.ts +1 -0
- package/dist/Card/index.d.ts +2 -0
- package/dist/Dialog/Dialog.d.ts +9 -0
- package/dist/Dialog/Dialog.test.d.ts +1 -0
- package/dist/Dialog/index.d.ts +2 -0
- package/dist/Footer/Footer.d.ts +0 -6
- package/dist/Grid/Grid.d.ts +40 -0
- package/dist/Grid/Grid.test.d.ts +1 -0
- package/dist/Grid/GridCell.d.ts +16 -12
- package/dist/Grid/GridCell.test.d.ts +1 -0
- package/dist/Grid/gridCellClasses.d.ts +2 -0
- package/dist/Grid/index.d.ts +2 -3
- package/dist/Highlight/Highlight.d.ts +10 -0
- package/dist/Highlight/Highlight.test.d.ts +1 -0
- package/dist/Highlight/index.d.ts +2 -0
- package/dist/Image/Image.d.ts +8 -0
- package/dist/Image/Image.test.d.ts +1 -0
- package/dist/Image/index.d.ts +2 -0
- package/dist/Logo/Logo.d.ts +11 -0
- package/dist/Logo/Logo.test.d.ts +1 -0
- package/dist/Logo/brand/LogoAmsterdam.d.ts +3 -0
- package/dist/Logo/brand/LogoGgdAmsterdam.d.ts +3 -0
- package/dist/Logo/brand/LogoStadsarchief.d.ts +3 -0
- package/dist/Logo/brand/LogoStadsbankVanLening.d.ts +3 -0
- package/dist/Logo/brand/LogoVgaVerzekeringen.d.ts +3 -0
- package/dist/Logo/brand/index.d.ts +5 -0
- package/dist/Logo/index.d.ts +2 -0
- package/dist/Pagination/Pagination.d.ts +24 -0
- package/dist/Pagination/Pagination.test.d.ts +1 -0
- package/dist/Pagination/index.d.ts +2 -0
- package/dist/Paragraph/Paragraph.d.ts +1 -2
- package/dist/Screen/Screen.d.ts +11 -0
- package/dist/Screen/Screen.test.d.ts +1 -0
- package/dist/Screen/index.d.ts +2 -0
- package/dist/Switch/Switch.d.ts +4 -0
- package/dist/Switch/Switch.test.d.ts +1 -0
- package/dist/Switch/index.d.ts +1 -0
- package/dist/TopTaskLink/TopTaskLink.d.ts +1 -1
- package/dist/index.cjs.js +720 -224
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.esm.js +679 -190
- package/dist/index.esm.js.map +1 -1
- package/package.json +22 -21
- package/dist/Grid/PageGrid.d.ts +0 -10
package/dist/index.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
* @license EUPL-1.2+
|
|
3
3
|
* Copyright (c) 2023 Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
|
+
export * from './Logo';
|
|
6
|
+
export * from './Dialog';
|
|
7
|
+
export * from './Image';
|
|
8
|
+
export * from './Pagination';
|
|
9
|
+
export * from './Screen';
|
|
10
|
+
export * from './Switch';
|
|
11
|
+
export * from './Highlight';
|
|
12
|
+
export * from './Card';
|
|
5
13
|
export * from './Alert';
|
|
6
14
|
export * from './AspectRatio';
|
|
7
15
|
export * from './VisuallyHidden';
|