@amsterdam/design-system-react 0.2.0 → 0.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/Accordion/Accordion.d.ts +3 -4
- package/dist/Breadcrumb/Breadcrumb.d.ts +2 -1
- package/dist/Card/Card.d.ts +1 -1
- package/dist/Footer/Footer.d.ts +2 -1
- package/dist/Grid/GridCell.d.ts +9 -13
- package/dist/Grid/index.d.ts +0 -1
- package/dist/Header/Header.d.ts +15 -0
- package/dist/Header/index.d.ts +2 -0
- package/dist/Heading/Heading.d.ts +2 -2
- package/dist/Icon/Icon.d.ts +1 -1
- package/dist/Image/Image.d.ts +2 -1
- package/dist/Image/index.d.ts +1 -2
- package/dist/Logo/Logo.d.ts +1 -2
- package/dist/Logo/index.d.ts +1 -1
- package/dist/Mark/Mark.d.ts +8 -0
- package/dist/Mark/Mark.test.d.ts +1 -0
- package/dist/Mark/index.d.ts +2 -0
- package/dist/Overlap/Overlap.d.ts +8 -0
- package/dist/Overlap/Overlap.test.d.ts +1 -0
- package/dist/Overlap/index.d.ts +1 -0
- package/dist/PageMenu/PageMenu.d.ts +1 -2
- package/dist/SearchField/SearchField.d.ts +14 -0
- package/dist/SearchField/SearchField.test.d.ts +1 -0
- package/dist/SearchField/SearchFieldButton.d.ts +9 -0
- package/dist/SearchField/SearchFieldInput.d.ts +10 -0
- package/dist/SearchField/SearchFieldInput.test.d.ts +1 -0
- package/dist/SearchField/index.d.ts +2 -0
- package/dist/SkipLink/SkipLink.d.ts +8 -0
- package/dist/SkipLink/SkipLink.test.d.ts +1 -0
- package/dist/SkipLink/index.d.ts +2 -0
- package/dist/{Highlight/Highlight.d.ts → Spotlight/Spotlight.d.ts} +2 -2
- package/dist/Spotlight/Spotlight.test.d.ts +1 -0
- package/dist/Spotlight/index.d.ts +2 -0
- package/dist/TextInput/TextInput.d.ts +8 -0
- package/dist/TextInput/TextInput.test.d.ts +1 -0
- package/dist/TextInput/index.d.ts +2 -0
- package/dist/index.cjs.js +369 -208
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.esm.js +365 -209
- package/dist/index.esm.js.map +1 -1
- package/package.json +14 -16
- package/dist/Highlight/index.d.ts +0 -2
- /package/dist/{Highlight/Highlight.test.d.ts → Header/Header.test.d.ts} +0 -0
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,13 +2,19 @@
|
|
|
2
2
|
* @license EUPL-1.2+
|
|
3
3
|
* Copyright (c) 2023 Gemeente Amsterdam
|
|
4
4
|
*/
|
|
5
|
+
export * from './SkipLink';
|
|
6
|
+
export * from './Overlap';
|
|
7
|
+
export * from './Header';
|
|
8
|
+
export * from './Mark';
|
|
9
|
+
export * from './TextInput';
|
|
10
|
+
export * from './SearchField';
|
|
5
11
|
export * from './Logo';
|
|
6
12
|
export * from './Dialog';
|
|
7
13
|
export * from './Image';
|
|
8
14
|
export * from './Pagination';
|
|
9
15
|
export * from './Screen';
|
|
10
16
|
export * from './Switch';
|
|
11
|
-
export * from './
|
|
17
|
+
export * from './Spotlight';
|
|
12
18
|
export * from './Card';
|
|
13
19
|
export * from './Alert';
|
|
14
20
|
export * from './AspectRatio';
|