@rijkshuisstijl-community/web-components 1.0.1-alpha.45 → 1.0.1-alpha.47
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 +39 -0
- package/dist/index.mjs +2024 -1616
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,10 @@ import { BreadcrumbNavLinkProps } from '@rijkshuisstijl-community/components-rea
|
|
|
7
7
|
import { BreadcrumbNavProps } from '@rijkshuisstijl-community/components-react';
|
|
8
8
|
import { BreadcrumbNavSeparatorProps } from '@rijkshuisstijl-community/components-react';
|
|
9
9
|
import { ButtonProps } from '@rijkshuisstijl-community/components-react';
|
|
10
|
+
import { CardProps } from '@rijkshuisstijl-community/components-react';
|
|
11
|
+
import { CheckboxGroupProps } from '@rijkshuisstijl-community/components-react';
|
|
12
|
+
import { CheckboxProps } from '@rijkshuisstijl-community/components-react';
|
|
13
|
+
import { FormFieldCheckboxOptionProps } from '@rijkshuisstijl-community/components-react';
|
|
10
14
|
import { HeroProps } from '@rijkshuisstijl-community/components-react';
|
|
11
15
|
import { IconProps } from '@rijkshuisstijl-community/components-react';
|
|
12
16
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
@@ -94,6 +98,41 @@ export declare class ButtonWebComponent extends BaseWebComponent {
|
|
|
94
98
|
|
|
95
99
|
export declare type ButtonWebComponentAttributes = ButtonProps;
|
|
96
100
|
|
|
101
|
+
export declare class CardWebComponent extends BaseWebComponent {
|
|
102
|
+
static readonly tagName: string;
|
|
103
|
+
constructor();
|
|
104
|
+
Button({ appearance, disabled, text, ...restProps }: {
|
|
105
|
+
[key: string]: string;
|
|
106
|
+
}): JSX_2.Element;
|
|
107
|
+
render(): void;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export declare type CardWebComponentAttributes = CardProps;
|
|
111
|
+
|
|
112
|
+
export declare class CheckboxGroupWebComponent extends BaseWebComponent {
|
|
113
|
+
static readonly tagName: string;
|
|
114
|
+
constructor();
|
|
115
|
+
render(): void;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export declare type CheckboxGroupWebComponentAttributes = CheckboxGroupProps;
|
|
119
|
+
|
|
120
|
+
export declare class CheckboxWebComponent extends BaseWebComponent {
|
|
121
|
+
static readonly tagName: string;
|
|
122
|
+
constructor();
|
|
123
|
+
render(): void;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export declare type CheckboxWebComponentAttributes = CheckboxProps;
|
|
127
|
+
|
|
128
|
+
export declare type FormFieldCheckboxOptionAttributes = FormFieldCheckboxOptionProps;
|
|
129
|
+
|
|
130
|
+
export declare class FormFieldCheckboxOptionWebComponent extends BaseWebComponent {
|
|
131
|
+
static readonly tagName: string;
|
|
132
|
+
constructor();
|
|
133
|
+
render(): void;
|
|
134
|
+
}
|
|
135
|
+
|
|
97
136
|
export declare class HeroWebComponent extends BaseWebComponent {
|
|
98
137
|
static readonly tagName: string;
|
|
99
138
|
constructor();
|