@rijkshuisstijl-community/web-components 1.0.1-alpha.50 → 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 +63 -0
- package/dist/index.mjs +2351 -1798
- package/dist/types/global.d.ts +26 -4
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -10,10 +10,17 @@ import { ButtonProps } from '@rijkshuisstijl-community/components-react';
|
|
|
10
10
|
import { CardProps } from '@rijkshuisstijl-community/components-react';
|
|
11
11
|
import { CheckboxGroupProps } from '@rijkshuisstijl-community/components-react';
|
|
12
12
|
import { CheckboxProps } from '@rijkshuisstijl-community/components-react';
|
|
13
|
+
import { FormFieldCheckboxGroupProps } from '@rijkshuisstijl-community/components-react';
|
|
13
14
|
import { FormFieldCheckboxOptionProps } from '@rijkshuisstijl-community/components-react';
|
|
15
|
+
import { FormFieldRadioGroupProps } from '@rijkshuisstijl-community/components-react';
|
|
16
|
+
import { FormFieldRadioProps } from '@rijkshuisstijl-community/components-react';
|
|
17
|
+
import { FormFieldSelectProps } from '@rijkshuisstijl-community/components-react';
|
|
18
|
+
import { FormFieldTextareaProps } from '@rijkshuisstijl-community/components-react';
|
|
19
|
+
import { FormFieldTextInputProps } from '@rijkshuisstijl-community/components-react';
|
|
14
20
|
import { HeroProps } from '@rijkshuisstijl-community/components-react';
|
|
15
21
|
import { IconProps } from '@rijkshuisstijl-community/components-react';
|
|
16
22
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
23
|
+
import { LinkProps } from '@rijkshuisstijl-community/components-react';
|
|
17
24
|
|
|
18
25
|
export declare class AccordionWebComponent extends BaseWebComponent {
|
|
19
26
|
static readonly tagName: string;
|
|
@@ -125,6 +132,14 @@ export declare class CheckboxWebComponent extends BaseWebComponent {
|
|
|
125
132
|
|
|
126
133
|
export declare type CheckboxWebComponentAttributes = CheckboxProps;
|
|
127
134
|
|
|
135
|
+
export declare type FormFieldCheckboxGroupAttributes = FormFieldCheckboxGroupProps;
|
|
136
|
+
|
|
137
|
+
export declare class FormFieldCheckboxGroupWebComponent extends BaseWebComponent {
|
|
138
|
+
static readonly tagName: string;
|
|
139
|
+
constructor();
|
|
140
|
+
render(): void;
|
|
141
|
+
}
|
|
142
|
+
|
|
128
143
|
export declare type FormFieldCheckboxOptionAttributes = FormFieldCheckboxOptionProps;
|
|
129
144
|
|
|
130
145
|
export declare class FormFieldCheckboxOptionWebComponent extends BaseWebComponent {
|
|
@@ -133,6 +148,46 @@ export declare class FormFieldCheckboxOptionWebComponent extends BaseWebComponen
|
|
|
133
148
|
render(): void;
|
|
134
149
|
}
|
|
135
150
|
|
|
151
|
+
export declare type FormFieldRadioAttributes = FormFieldRadioProps;
|
|
152
|
+
|
|
153
|
+
export declare type FormFieldRadioGroupAttributes = FormFieldRadioGroupProps;
|
|
154
|
+
|
|
155
|
+
export declare class FormFieldRadioGroupWebComponent extends BaseWebComponent {
|
|
156
|
+
static readonly tagName: string;
|
|
157
|
+
constructor();
|
|
158
|
+
render(): void;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export declare class FormFieldRadioWebComponent extends BaseWebComponent {
|
|
162
|
+
static readonly tagName: string;
|
|
163
|
+
constructor();
|
|
164
|
+
render(): void;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export declare type FormFieldSelectAttributes = FormFieldSelectProps;
|
|
168
|
+
|
|
169
|
+
export declare class FormFieldSelectWebComponent extends BaseWebComponent {
|
|
170
|
+
static readonly tagName: string;
|
|
171
|
+
constructor();
|
|
172
|
+
render(): void;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export declare type FormFieldTextareaAttributes = FormFieldTextareaProps;
|
|
176
|
+
|
|
177
|
+
export declare class FormFieldTextareaWebComponent extends BaseWebComponent {
|
|
178
|
+
static readonly tagName: string;
|
|
179
|
+
constructor();
|
|
180
|
+
render(): void;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export declare type FormFieldTextInputAttributes = FormFieldTextInputProps;
|
|
184
|
+
|
|
185
|
+
export declare class FormFieldTextInputWebComponent extends BaseWebComponent {
|
|
186
|
+
static readonly tagName: string;
|
|
187
|
+
constructor();
|
|
188
|
+
render(): void;
|
|
189
|
+
}
|
|
190
|
+
|
|
136
191
|
export declare class HeroWebComponent extends BaseWebComponent {
|
|
137
192
|
static readonly tagName: string;
|
|
138
193
|
constructor();
|
|
@@ -149,4 +204,12 @@ export declare class IconWebComponent extends BaseWebComponent {
|
|
|
149
204
|
|
|
150
205
|
export declare type IconWebComponentAttributes = IconProps;
|
|
151
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
|
+
|
|
152
215
|
export { }
|