@rijkshuisstijl-community/web-components 1.0.1-alpha.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.
@@ -0,0 +1,35 @@
1
+ import { AccordionProviderProps } from '@rijkshuisstijl-community/components-react';
2
+ import { default as default_2 } from 'react-dom/client';
3
+ import { HeroProps } from '@rijkshuisstijl-community/components-react';
4
+
5
+ export declare class AccordionWebComponent extends BaseWebComponent {
6
+ static tagName: string;
7
+ static observedAttributes: string[];
8
+ constructor();
9
+ render(): void;
10
+ }
11
+
12
+ export declare type AccordionWebComponentAttributes = AccordionProviderProps;
13
+
14
+ declare abstract class BaseWebComponent extends HTMLElement {
15
+ protected root: default_2.Root;
16
+ static get tagName(): string;
17
+ static observedAttributes: string[];
18
+ constructor(stylesheet: string);
19
+ connectedCallback(): void;
20
+ attributeChangedCallback(): void;
21
+ disconnectedCallback(): void;
22
+ protected abstract render(): void;
23
+ static define(): void;
24
+ }
25
+
26
+ export declare class HeroWebComponent extends BaseWebComponent {
27
+ static tagName: string;
28
+ static observedAttributes: string[];
29
+ constructor();
30
+ render(): void;
31
+ }
32
+
33
+ export declare type HeroWebComponentAttributes = HeroProps;
34
+
35
+ export { }