@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/types/global.d.ts
CHANGED
|
@@ -10,8 +10,19 @@ import {
|
|
|
10
10
|
BreadcrumbNavSeparatorWebComponentAttributes,
|
|
11
11
|
BreadcrumbNavWebComponentAttributes,
|
|
12
12
|
ButtonWebComponentAttributes,
|
|
13
|
+
CardWebComponentAttributes,
|
|
14
|
+
CheckboxGroupWebComponentAttributes,
|
|
15
|
+
CheckboxWebComponentAttributes,
|
|
16
|
+
FormFieldCheckboxGroupAttributes,
|
|
17
|
+
FormFieldCheckboxOptionAttributes,
|
|
18
|
+
FormFieldRadioAttributes,
|
|
19
|
+
FormFieldRadioGroupAttributes,
|
|
20
|
+
FormFieldSelectAttributes,
|
|
21
|
+
FormFieldTextareaAttributes,
|
|
22
|
+
FormFieldTextInputAttributes,
|
|
13
23
|
HeroWebComponentAttributes,
|
|
14
24
|
IconWebComponentAttributes,
|
|
25
|
+
LinkWebComponentAttributes,
|
|
15
26
|
} from '../src';
|
|
16
27
|
|
|
17
28
|
declare global {
|
|
@@ -25,13 +36,24 @@ declare global {
|
|
|
25
36
|
'rhc-blockquote': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & BlockquoteWebComponentAttributes;
|
|
26
37
|
'rhc-breadcrumb-nav': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> &
|
|
27
38
|
BreadcrumbNavWebComponentAttributes;
|
|
28
|
-
'rhc-breadcrumb-nav-link': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> &
|
|
29
|
-
BreadcrumbNavLinkWebComponentAttributes;
|
|
30
|
-
'rhc-breadcrumb-nav-separator': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> &
|
|
31
|
-
BreadcrumbNavSeparatorWebComponentAttributes;
|
|
32
39
|
'rhc-button': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & ButtonWebComponentAttributes;
|
|
40
|
+
'rhc-card': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & CardWebComponentAttributes;
|
|
41
|
+
'rhc-checkbox-group': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> &
|
|
42
|
+
CheckboxGroupWebComponentAttributes;
|
|
43
|
+
'rhc-checkbox': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & CheckboxWebComponentAttributes;
|
|
44
|
+
'rhc-form-checkbox-group': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> &
|
|
45
|
+
FormFieldCheckboxGroupAttributes;
|
|
46
|
+
'rhc-form-checkbox': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> &
|
|
47
|
+
FormFieldCheckboxOptionAttributes;
|
|
48
|
+
'rhc-form-radio': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & FormFieldRadioAttributes;
|
|
49
|
+
'rhc-form-radio-group': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> &
|
|
50
|
+
FormFieldRadioGroupAttributes;
|
|
51
|
+
'rhc-form-select': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & FormFieldSelectAttributes;
|
|
52
|
+
'rhc-form-textinput': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & FormFieldTextInputAttributes;
|
|
53
|
+
'rhc-form-textarea': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & FormFieldTextareaAttributes;
|
|
33
54
|
'rhc-hero': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & HeroWebComponentAttributes;
|
|
34
55
|
'rhc-icon': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & IconWebComponentAttributes;
|
|
56
|
+
'rhc-link': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & LinkWebComponentAttributes;
|
|
35
57
|
}
|
|
36
58
|
}
|
|
37
59
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rijkshuisstijl-community/web-components",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.52",
|
|
4
4
|
"author": "Community for NL Design System",
|
|
5
5
|
"description": "Generic web components bundle based on the NL Design System architecture",
|
|
6
6
|
"license": "EUPL-1.2",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@preact/preset-vite": "2.10.1",
|
|
36
|
-
"@rijkshuisstijl-community/components-css": "1.0.0-alpha.
|
|
37
|
-
"@rijkshuisstijl-community/components-react": "1.0.0-alpha.
|
|
38
|
-
"@rijkshuisstijl-community/design-tokens": "1.0.0-alpha.
|
|
36
|
+
"@rijkshuisstijl-community/components-css": "1.0.0-alpha.167",
|
|
37
|
+
"@rijkshuisstijl-community/components-react": "1.0.0-alpha.143",
|
|
38
|
+
"@rijkshuisstijl-community/design-tokens": "1.0.0-alpha.168",
|
|
39
39
|
"@types/react": "19.0.8",
|
|
40
40
|
"@vitejs/plugin-react": "4.3.4",
|
|
41
41
|
"cpy-cli": "5.0.0",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"preact": "10.25.4"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "6b23bcc9d4904f606a726a0cf632d5c493fad421"
|
|
53
53
|
}
|