@rijkshuisstijl-community/web-components 1.0.1-alpha.51 → 1.0.1-alpha.52
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/index.d.ts +9 -0
- package/dist/index.mjs +815 -791
- package/dist/types/global.d.ts +2 -0
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ import { FormFieldTextInputProps } from '@rijkshuisstijl-community/components-re
|
|
|
20
20
|
import { HeroProps } from '@rijkshuisstijl-community/components-react';
|
|
21
21
|
import { IconProps } from '@rijkshuisstijl-community/components-react';
|
|
22
22
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
23
|
+
import { LinkProps } from '@rijkshuisstijl-community/components-react';
|
|
23
24
|
|
|
24
25
|
export declare class AccordionWebComponent extends BaseWebComponent {
|
|
25
26
|
static readonly tagName: string;
|
|
@@ -203,4 +204,12 @@ export declare class IconWebComponent extends BaseWebComponent {
|
|
|
203
204
|
|
|
204
205
|
export declare type IconWebComponentAttributes = IconProps;
|
|
205
206
|
|
|
207
|
+
export declare class LinkWebComponent extends BaseWebComponent {
|
|
208
|
+
static readonly tagName: string;
|
|
209
|
+
constructor();
|
|
210
|
+
render(): void;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export declare type LinkWebComponentAttributes = LinkProps;
|
|
214
|
+
|
|
206
215
|
export { }
|