@rijkshuisstijl-community/web-components 1.0.1-alpha.50 → 1.0.1-alpha.51
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 +54 -0
- package/dist/index.mjs +2329 -1800
- package/dist/types/global.d.ts +24 -4
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,13 @@ 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';
|
|
@@ -125,6 +131,14 @@ export declare class CheckboxWebComponent extends BaseWebComponent {
|
|
|
125
131
|
|
|
126
132
|
export declare type CheckboxWebComponentAttributes = CheckboxProps;
|
|
127
133
|
|
|
134
|
+
export declare type FormFieldCheckboxGroupAttributes = FormFieldCheckboxGroupProps;
|
|
135
|
+
|
|
136
|
+
export declare class FormFieldCheckboxGroupWebComponent extends BaseWebComponent {
|
|
137
|
+
static readonly tagName: string;
|
|
138
|
+
constructor();
|
|
139
|
+
render(): void;
|
|
140
|
+
}
|
|
141
|
+
|
|
128
142
|
export declare type FormFieldCheckboxOptionAttributes = FormFieldCheckboxOptionProps;
|
|
129
143
|
|
|
130
144
|
export declare class FormFieldCheckboxOptionWebComponent extends BaseWebComponent {
|
|
@@ -133,6 +147,46 @@ export declare class FormFieldCheckboxOptionWebComponent extends BaseWebComponen
|
|
|
133
147
|
render(): void;
|
|
134
148
|
}
|
|
135
149
|
|
|
150
|
+
export declare type FormFieldRadioAttributes = FormFieldRadioProps;
|
|
151
|
+
|
|
152
|
+
export declare type FormFieldRadioGroupAttributes = FormFieldRadioGroupProps;
|
|
153
|
+
|
|
154
|
+
export declare class FormFieldRadioGroupWebComponent extends BaseWebComponent {
|
|
155
|
+
static readonly tagName: string;
|
|
156
|
+
constructor();
|
|
157
|
+
render(): void;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export declare class FormFieldRadioWebComponent extends BaseWebComponent {
|
|
161
|
+
static readonly tagName: string;
|
|
162
|
+
constructor();
|
|
163
|
+
render(): void;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export declare type FormFieldSelectAttributes = FormFieldSelectProps;
|
|
167
|
+
|
|
168
|
+
export declare class FormFieldSelectWebComponent extends BaseWebComponent {
|
|
169
|
+
static readonly tagName: string;
|
|
170
|
+
constructor();
|
|
171
|
+
render(): void;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export declare type FormFieldTextareaAttributes = FormFieldTextareaProps;
|
|
175
|
+
|
|
176
|
+
export declare class FormFieldTextareaWebComponent extends BaseWebComponent {
|
|
177
|
+
static readonly tagName: string;
|
|
178
|
+
constructor();
|
|
179
|
+
render(): void;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export declare type FormFieldTextInputAttributes = FormFieldTextInputProps;
|
|
183
|
+
|
|
184
|
+
export declare class FormFieldTextInputWebComponent extends BaseWebComponent {
|
|
185
|
+
static readonly tagName: string;
|
|
186
|
+
constructor();
|
|
187
|
+
render(): void;
|
|
188
|
+
}
|
|
189
|
+
|
|
136
190
|
export declare class HeroWebComponent extends BaseWebComponent {
|
|
137
191
|
static readonly tagName: string;
|
|
138
192
|
constructor();
|