@rijkshuisstijl-community/web-components 1.0.1-alpha.37 → 1.0.1-alpha.39
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.css +3 -3
- package/dist/index.d.ts +50 -1
- package/dist/index.mjs +2212 -2040
- package/dist/types/global.d.ts +18 -3
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import { AccordionProviderProps } from '@rijkshuisstijl-community/components-react';
|
|
2
2
|
import { ActionGroupProps } from '@rijkshuisstijl-community/components-react';
|
|
3
3
|
import { AlertProps } from '@rijkshuisstijl-community/components-react';
|
|
4
|
+
import { ArticleProps } from '@rijkshuisstijl-community/components-react';
|
|
5
|
+
import { BlockquoteProps } from '@rijkshuisstijl-community/components-react';
|
|
6
|
+
import { BreadcrumbNavLinkProps } from '@rijkshuisstijl-community/components-react';
|
|
7
|
+
import { BreadcrumbNavProps } from '@rijkshuisstijl-community/components-react';
|
|
8
|
+
import { BreadcrumbNavSeparatorProps } from '@rijkshuisstijl-community/components-react';
|
|
4
9
|
import { ButtonProps } from '@rijkshuisstijl-community/components-react';
|
|
5
10
|
import { HeroProps } from '@rijkshuisstijl-community/components-react';
|
|
11
|
+
import { IconProps } from '@rijkshuisstijl-community/components-react';
|
|
12
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
6
13
|
|
|
7
14
|
export declare class AccordionWebComponent extends BaseWebComponent {
|
|
8
15
|
static readonly tagName: string;
|
|
@@ -28,8 +35,15 @@ export declare class AlertWebComponent extends BaseWebComponent {
|
|
|
28
35
|
|
|
29
36
|
export declare type AlertWebComponentAttributes = AlertProps;
|
|
30
37
|
|
|
38
|
+
export declare class ArticleWebComponent extends BaseWebComponent {
|
|
39
|
+
static readonly tagName: string;
|
|
40
|
+
constructor();
|
|
41
|
+
render(): void;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export declare type ArticleWebComponentAttributes = ArticleProps;
|
|
45
|
+
|
|
31
46
|
declare abstract class BaseWebComponent extends HTMLElement {
|
|
32
|
-
protected root: HTMLElement | undefined;
|
|
33
47
|
shadowRoot: ShadowRoot;
|
|
34
48
|
protected props: {
|
|
35
49
|
[key: string]: any;
|
|
@@ -45,6 +59,33 @@ declare abstract class BaseWebComponent extends HTMLElement {
|
|
|
45
59
|
static define(): void;
|
|
46
60
|
}
|
|
47
61
|
|
|
62
|
+
export declare class BlockquoteWebComponent extends BaseWebComponent {
|
|
63
|
+
static readonly tagName: string;
|
|
64
|
+
constructor();
|
|
65
|
+
render(): void;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export declare type BlockquoteWebComponentAttributes = BlockquoteProps;
|
|
69
|
+
|
|
70
|
+
declare interface BreadCrumbNavElement {
|
|
71
|
+
[key: string]: string;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export declare type BreadcrumbNavLinkWebComponentAttributes = BreadcrumbNavLinkProps;
|
|
75
|
+
|
|
76
|
+
export declare type BreadcrumbNavSeparatorWebComponentAttributes = BreadcrumbNavSeparatorProps;
|
|
77
|
+
|
|
78
|
+
export declare class BreadcrumbNavWebComponent extends BaseWebComponent {
|
|
79
|
+
static readonly tagName: string;
|
|
80
|
+
private readonly allowedTypes;
|
|
81
|
+
constructor();
|
|
82
|
+
BreadcrumbNavLink({ active, classname, current, href, text, ...restProps }: BreadCrumbNavElement): JSX_2.Element;
|
|
83
|
+
BreadcrumbNavSeparator({ icon, ...restProps }: BreadCrumbNavElement): JSX_2.Element;
|
|
84
|
+
render(): void;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export declare type BreadcrumbNavWebComponentAttributes = BreadcrumbNavProps;
|
|
88
|
+
|
|
48
89
|
export declare class ButtonWebComponent extends BaseWebComponent {
|
|
49
90
|
static readonly tagName: string;
|
|
50
91
|
constructor();
|
|
@@ -61,4 +102,12 @@ export declare class HeroWebComponent extends BaseWebComponent {
|
|
|
61
102
|
|
|
62
103
|
export declare type HeroWebComponentAttributes = HeroProps;
|
|
63
104
|
|
|
105
|
+
export declare class IconWebComponent extends BaseWebComponent {
|
|
106
|
+
static readonly tagName: string;
|
|
107
|
+
constructor();
|
|
108
|
+
render(): void;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export declare type IconWebComponentAttributes = IconProps;
|
|
112
|
+
|
|
64
113
|
export { }
|