@utrecht/component-library-react 1.0.0-alpha.156 → 1.0.0-alpha.158
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/ButtonLink.d.ts +2 -1
- package/dist/Figure.d.ts +5 -0
- package/dist/FigureCaption.d.ts +5 -0
- package/dist/Link.d.ts +2 -1
- package/dist/index.cjs.js +54 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +53 -13
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/ButtonLink.d.ts
CHANGED
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
* Copyright (c) 2021 Robbert Broersma
|
|
5
5
|
*/
|
|
6
6
|
import { AnchorHTMLAttributes } from 'react';
|
|
7
|
-
export interface ButtonLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
7
|
+
export interface ButtonLinkProps extends Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'placeholder'> {
|
|
8
8
|
appearance?: string;
|
|
9
9
|
external?: boolean;
|
|
10
|
+
placeholder?: boolean;
|
|
10
11
|
}
|
|
11
12
|
export declare const ButtonLink: import("react").ForwardRefExoticComponent<ButtonLinkProps & {
|
|
12
13
|
children?: import("react").ReactNode;
|
package/dist/Figure.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
export declare type FigureProps = HTMLAttributes<HTMLElement>;
|
|
3
|
+
export declare const Figure: import("react").ForwardRefExoticComponent<FigureProps & {
|
|
4
|
+
children?: import("react").ReactNode;
|
|
5
|
+
} & import("react").RefAttributes<HTMLElement>>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
export declare type FigureCaptionProps = HTMLAttributes<HTMLElement>;
|
|
3
|
+
export declare const FigureCaption: import("react").ForwardRefExoticComponent<FigureCaptionProps & {
|
|
4
|
+
children?: import("react").ReactNode;
|
|
5
|
+
} & import("react").RefAttributes<HTMLElement>>;
|
package/dist/Link.d.ts
CHANGED
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
* Copyright (c) 2021 Robbert Broersma
|
|
5
5
|
*/
|
|
6
6
|
import { AnchorHTMLAttributes } from 'react';
|
|
7
|
-
export interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
7
|
+
export interface LinkProps extends Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'placeholder'> {
|
|
8
8
|
boxContent?: boolean;
|
|
9
9
|
external?: boolean;
|
|
10
|
+
placeholder?: boolean;
|
|
10
11
|
}
|
|
11
12
|
export declare const Link: import("react").ForwardRefExoticComponent<LinkProps & {
|
|
12
13
|
children?: import("react").ReactNode;
|
package/dist/index.cjs.js
CHANGED
|
@@ -120,8 +120,10 @@ var ButtonLink = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
|
120
120
|
children = _a.children,
|
|
121
121
|
className = _a.className,
|
|
122
122
|
external = _a.external,
|
|
123
|
+
href = _a.href,
|
|
124
|
+
placeholder = _a.placeholder,
|
|
123
125
|
role = _a.role,
|
|
124
|
-
restProps = tslib.__rest(_a, ["appearance", "children", "className", "external", "role"]);
|
|
126
|
+
restProps = tslib.__rest(_a, ["appearance", "children", "className", "external", "href", "placeholder", "role"]);
|
|
125
127
|
|
|
126
128
|
var props = restProps;
|
|
127
129
|
|
|
@@ -135,17 +137,20 @@ var ButtonLink = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
|
135
137
|
});
|
|
136
138
|
}
|
|
137
139
|
|
|
138
|
-
return jsxRuntime.jsx("a", Object.assign({
|
|
140
|
+
return jsxRuntime.jsx("a", Object.assign({
|
|
141
|
+
href: placeholder ? undefined : href,
|
|
139
142
|
ref: ref,
|
|
140
|
-
role: role,
|
|
143
|
+
role: role || (placeholder ? 'link' : undefined),
|
|
141
144
|
className: clsx__default["default"]('utrecht-button-link', 'utrecht-button-link--html-a', {
|
|
142
145
|
'utrecht-button-link--external': external,
|
|
143
146
|
'utrecht-button-link--primary-action': appearance === 'primary-action-button',
|
|
144
147
|
'utrecht-button-link--secondary-action': appearance === 'secondary-action-button',
|
|
145
|
-
'utrecht-button-link--subtle': appearance === 'subtle-button'
|
|
148
|
+
'utrecht-button-link--subtle': appearance === 'subtle-button',
|
|
149
|
+
'utrecht-button-link--placeholder': placeholder
|
|
146
150
|
}, className),
|
|
147
|
-
rel: external ? 'external noopener noreferrer' : undefined
|
|
148
|
-
|
|
151
|
+
rel: external ? 'external noopener noreferrer' : undefined,
|
|
152
|
+
"aria-disabled": placeholder ? 'true' : undefined
|
|
153
|
+
}, props, {
|
|
149
154
|
children: children
|
|
150
155
|
}));
|
|
151
156
|
});
|
|
@@ -715,7 +720,7 @@ var Fieldset = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
|
715
720
|
|
|
716
721
|
return jsxRuntime.jsx("fieldset", Object.assign({}, restProps, {
|
|
717
722
|
ref: ref,
|
|
718
|
-
className: clsx__default["default"]('utrecht-form-fieldset', 'utrecht-form-fieldset--
|
|
723
|
+
className: clsx__default["default"]('utrecht-form-fieldset', 'utrecht-form-fieldset--html-fieldset', className)
|
|
719
724
|
}, {
|
|
720
725
|
children: children
|
|
721
726
|
}));
|
|
@@ -729,13 +734,41 @@ var FieldsetLegend = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
|
729
734
|
|
|
730
735
|
return jsxRuntime.jsx("legend", Object.assign({}, restProps, {
|
|
731
736
|
ref: ref,
|
|
732
|
-
className: clsx__default["default"]('utrecht-form-fieldset__legend', 'utrecht-form-fieldset__legend--
|
|
737
|
+
className: clsx__default["default"]('utrecht-form-fieldset__legend', 'utrecht-form-fieldset__legend--html-legend', className)
|
|
733
738
|
}, {
|
|
734
739
|
children: children
|
|
735
740
|
}));
|
|
736
741
|
});
|
|
737
742
|
FieldsetLegend.displayName = 'FieldsetLegend';
|
|
738
743
|
|
|
744
|
+
var Figure = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
745
|
+
var className = _a.className,
|
|
746
|
+
children = _a.children,
|
|
747
|
+
restProps = tslib.__rest(_a, ["className", "children"]);
|
|
748
|
+
|
|
749
|
+
return jsxRuntime.jsx("figure", Object.assign({}, restProps, {
|
|
750
|
+
ref: ref,
|
|
751
|
+
className: clsx__default["default"]('utrecht-figure', className)
|
|
752
|
+
}, {
|
|
753
|
+
children: children
|
|
754
|
+
}));
|
|
755
|
+
});
|
|
756
|
+
Figure.displayName = 'Figure';
|
|
757
|
+
|
|
758
|
+
var FigureCaption = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
759
|
+
var className = _a.className,
|
|
760
|
+
children = _a.children,
|
|
761
|
+
restProps = tslib.__rest(_a, ["className", "children"]);
|
|
762
|
+
|
|
763
|
+
return jsxRuntime.jsx("figcaption", Object.assign({}, restProps, {
|
|
764
|
+
ref: ref,
|
|
765
|
+
className: clsx__default["default"]('utrecht-figure__caption', className)
|
|
766
|
+
}, {
|
|
767
|
+
children: children
|
|
768
|
+
}));
|
|
769
|
+
});
|
|
770
|
+
FigureCaption.displayName = 'FigureCaption';
|
|
771
|
+
|
|
739
772
|
var FormField = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
740
773
|
var className = _a.className,
|
|
741
774
|
children = _a.children,
|
|
@@ -912,20 +945,27 @@ var Link = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
|
|
912
945
|
children = _a.children,
|
|
913
946
|
className = _a.className,
|
|
914
947
|
external = _a.external,
|
|
915
|
-
|
|
948
|
+
href = _a.href,
|
|
949
|
+
placeholder = _a.placeholder,
|
|
950
|
+
role = _a.role,
|
|
951
|
+
restProps = tslib.__rest(_a, ["boxContent", "children", "className", "external", "href", "placeholder", "role"]);
|
|
916
952
|
|
|
917
953
|
return (// "utrecht-link--telephone" does not have a corresponding API,
|
|
918
954
|
// since it is primarily a basis for implementing input[href^="tel"].
|
|
919
955
|
// Telephone number rendering in React is best achieved using composition
|
|
920
956
|
// of the TelephoneValue component.
|
|
921
|
-
jsxRuntime.jsx("a", Object.assign({
|
|
957
|
+
jsxRuntime.jsx("a", Object.assign({
|
|
958
|
+
href: placeholder ? undefined : href,
|
|
922
959
|
ref: ref,
|
|
960
|
+
role: role || (placeholder ? 'link' : undefined),
|
|
923
961
|
className: clsx__default["default"]('utrecht-link', {
|
|
924
962
|
'utrecht-link--box-content': boxContent,
|
|
925
|
-
'utrecht-link--external': external
|
|
963
|
+
'utrecht-link--external': external,
|
|
964
|
+
'utrecht-link--placeholder': placeholder
|
|
926
965
|
}, className),
|
|
966
|
+
"aria-disabled": placeholder ? 'true' : undefined,
|
|
927
967
|
rel: external ? 'external noopener noreferrer' : undefined
|
|
928
|
-
}, {
|
|
968
|
+
}, restProps, {
|
|
929
969
|
children: children
|
|
930
970
|
}))
|
|
931
971
|
);
|
|
@@ -1451,6 +1491,8 @@ exports.Document = Document;
|
|
|
1451
1491
|
exports.Emphasis = Emphasis;
|
|
1452
1492
|
exports.Fieldset = Fieldset;
|
|
1453
1493
|
exports.FieldsetLegend = FieldsetLegend;
|
|
1494
|
+
exports.Figure = Figure;
|
|
1495
|
+
exports.FigureCaption = FigureCaption;
|
|
1454
1496
|
exports.FormField = FormField;
|
|
1455
1497
|
exports.FormFieldDescription = FormFieldDescription;
|
|
1456
1498
|
exports.FormLabel = FormLabel;
|
package/dist/index.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ export { DataList, DataListItem, DataListActions, DataListKey, DataListValue } f
|
|
|
15
15
|
export { Emphasis } from './Emphasis';
|
|
16
16
|
export { Fieldset } from './Fieldset';
|
|
17
17
|
export { FieldsetLegend } from './FieldsetLegend';
|
|
18
|
+
export { Figure } from './Figure';
|
|
19
|
+
export { FigureCaption } from './FigureCaption';
|
|
18
20
|
export { FormField } from './FormField';
|
|
19
21
|
export { FormFieldDescription } from './FormFieldDescription';
|
|
20
22
|
export { FormLabel } from './FormLabel';
|
package/dist/index.esm.js
CHANGED
|
@@ -111,8 +111,10 @@ var ButtonLink = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
111
111
|
children = _a.children,
|
|
112
112
|
className = _a.className,
|
|
113
113
|
external = _a.external,
|
|
114
|
+
href = _a.href,
|
|
115
|
+
placeholder = _a.placeholder,
|
|
114
116
|
role = _a.role,
|
|
115
|
-
restProps = __rest(_a, ["appearance", "children", "className", "external", "role"]);
|
|
117
|
+
restProps = __rest(_a, ["appearance", "children", "className", "external", "href", "placeholder", "role"]);
|
|
116
118
|
|
|
117
119
|
var props = restProps;
|
|
118
120
|
|
|
@@ -126,17 +128,20 @@ var ButtonLink = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
126
128
|
});
|
|
127
129
|
}
|
|
128
130
|
|
|
129
|
-
return jsx("a", Object.assign({
|
|
131
|
+
return jsx("a", Object.assign({
|
|
132
|
+
href: placeholder ? undefined : href,
|
|
130
133
|
ref: ref,
|
|
131
|
-
role: role,
|
|
134
|
+
role: role || (placeholder ? 'link' : undefined),
|
|
132
135
|
className: clsx('utrecht-button-link', 'utrecht-button-link--html-a', {
|
|
133
136
|
'utrecht-button-link--external': external,
|
|
134
137
|
'utrecht-button-link--primary-action': appearance === 'primary-action-button',
|
|
135
138
|
'utrecht-button-link--secondary-action': appearance === 'secondary-action-button',
|
|
136
|
-
'utrecht-button-link--subtle': appearance === 'subtle-button'
|
|
139
|
+
'utrecht-button-link--subtle': appearance === 'subtle-button',
|
|
140
|
+
'utrecht-button-link--placeholder': placeholder
|
|
137
141
|
}, className),
|
|
138
|
-
rel: external ? 'external noopener noreferrer' : undefined
|
|
139
|
-
|
|
142
|
+
rel: external ? 'external noopener noreferrer' : undefined,
|
|
143
|
+
"aria-disabled": placeholder ? 'true' : undefined
|
|
144
|
+
}, props, {
|
|
140
145
|
children: children
|
|
141
146
|
}));
|
|
142
147
|
});
|
|
@@ -706,7 +711,7 @@ var Fieldset = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
706
711
|
|
|
707
712
|
return jsx("fieldset", Object.assign({}, restProps, {
|
|
708
713
|
ref: ref,
|
|
709
|
-
className: clsx('utrecht-form-fieldset', 'utrecht-form-fieldset--
|
|
714
|
+
className: clsx('utrecht-form-fieldset', 'utrecht-form-fieldset--html-fieldset', className)
|
|
710
715
|
}, {
|
|
711
716
|
children: children
|
|
712
717
|
}));
|
|
@@ -720,13 +725,41 @@ var FieldsetLegend = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
720
725
|
|
|
721
726
|
return jsx("legend", Object.assign({}, restProps, {
|
|
722
727
|
ref: ref,
|
|
723
|
-
className: clsx('utrecht-form-fieldset__legend', 'utrecht-form-fieldset__legend--
|
|
728
|
+
className: clsx('utrecht-form-fieldset__legend', 'utrecht-form-fieldset__legend--html-legend', className)
|
|
724
729
|
}, {
|
|
725
730
|
children: children
|
|
726
731
|
}));
|
|
727
732
|
});
|
|
728
733
|
FieldsetLegend.displayName = 'FieldsetLegend';
|
|
729
734
|
|
|
735
|
+
var Figure = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
736
|
+
var className = _a.className,
|
|
737
|
+
children = _a.children,
|
|
738
|
+
restProps = __rest(_a, ["className", "children"]);
|
|
739
|
+
|
|
740
|
+
return jsx("figure", Object.assign({}, restProps, {
|
|
741
|
+
ref: ref,
|
|
742
|
+
className: clsx('utrecht-figure', className)
|
|
743
|
+
}, {
|
|
744
|
+
children: children
|
|
745
|
+
}));
|
|
746
|
+
});
|
|
747
|
+
Figure.displayName = 'Figure';
|
|
748
|
+
|
|
749
|
+
var FigureCaption = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
750
|
+
var className = _a.className,
|
|
751
|
+
children = _a.children,
|
|
752
|
+
restProps = __rest(_a, ["className", "children"]);
|
|
753
|
+
|
|
754
|
+
return jsx("figcaption", Object.assign({}, restProps, {
|
|
755
|
+
ref: ref,
|
|
756
|
+
className: clsx('utrecht-figure__caption', className)
|
|
757
|
+
}, {
|
|
758
|
+
children: children
|
|
759
|
+
}));
|
|
760
|
+
});
|
|
761
|
+
FigureCaption.displayName = 'FigureCaption';
|
|
762
|
+
|
|
730
763
|
var FormField = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
731
764
|
var className = _a.className,
|
|
732
765
|
children = _a.children,
|
|
@@ -903,20 +936,27 @@ var Link = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
903
936
|
children = _a.children,
|
|
904
937
|
className = _a.className,
|
|
905
938
|
external = _a.external,
|
|
906
|
-
|
|
939
|
+
href = _a.href,
|
|
940
|
+
placeholder = _a.placeholder,
|
|
941
|
+
role = _a.role,
|
|
942
|
+
restProps = __rest(_a, ["boxContent", "children", "className", "external", "href", "placeholder", "role"]);
|
|
907
943
|
|
|
908
944
|
return (// "utrecht-link--telephone" does not have a corresponding API,
|
|
909
945
|
// since it is primarily a basis for implementing input[href^="tel"].
|
|
910
946
|
// Telephone number rendering in React is best achieved using composition
|
|
911
947
|
// of the TelephoneValue component.
|
|
912
|
-
jsx("a", Object.assign({
|
|
948
|
+
jsx("a", Object.assign({
|
|
949
|
+
href: placeholder ? undefined : href,
|
|
913
950
|
ref: ref,
|
|
951
|
+
role: role || (placeholder ? 'link' : undefined),
|
|
914
952
|
className: clsx('utrecht-link', {
|
|
915
953
|
'utrecht-link--box-content': boxContent,
|
|
916
|
-
'utrecht-link--external': external
|
|
954
|
+
'utrecht-link--external': external,
|
|
955
|
+
'utrecht-link--placeholder': placeholder
|
|
917
956
|
}, className),
|
|
957
|
+
"aria-disabled": placeholder ? 'true' : undefined,
|
|
918
958
|
rel: external ? 'external noopener noreferrer' : undefined
|
|
919
|
-
}, {
|
|
959
|
+
}, restProps, {
|
|
920
960
|
children: children
|
|
921
961
|
}))
|
|
922
962
|
);
|
|
@@ -1425,5 +1465,5 @@ var UnorderedListItem = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
1425
1465
|
});
|
|
1426
1466
|
UnorderedListItem.displayName = 'UnorderedListItem';
|
|
1427
1467
|
|
|
1428
|
-
export { Article, Backdrop, Button, ButtonGroup, ButtonLink, Calendar, Checkbox, CustomRadioButton, DataList, DataListActions, DataListItem, DataListKey, DataListValue, Document, Emphasis, Fieldset, FieldsetLegend, FormField, FormFieldDescription, FormLabel, HTMLContent, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, HeadingGroup, Image, Link, LinkButton, LinkSocial, ListSocial, ListSocialItem, NumberValue, OrderedList, OrderedListItem, Page, PageContent, PageFooter, PageHeader, Paragraph, PreHeading, PrimaryActionButton, RadioButton, SecondaryActionButton, Select, SelectOption, Separator, SkipLink, Strong, SubtleButton, Surface, Table, TableBody, TableCaption, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Textarea, Textbox, URLValue, UnorderedList, UnorderedListItem };
|
|
1468
|
+
export { Article, Backdrop, Button, ButtonGroup, ButtonLink, Calendar, Checkbox, CustomRadioButton, DataList, DataListActions, DataListItem, DataListKey, DataListValue, Document, Emphasis, Fieldset, FieldsetLegend, Figure, FigureCaption, FormField, FormFieldDescription, FormLabel, HTMLContent, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, HeadingGroup, Image, Link, LinkButton, LinkSocial, ListSocial, ListSocialItem, NumberValue, OrderedList, OrderedListItem, Page, PageContent, PageFooter, PageHeader, Paragraph, PreHeading, PrimaryActionButton, RadioButton, SecondaryActionButton, Select, SelectOption, Separator, SkipLink, Strong, SubtleButton, Surface, Table, TableBody, TableCaption, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Textarea, Textbox, URLValue, UnorderedList, UnorderedListItem };
|
|
1429
1469
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.158",
|
|
3
3
|
"author": "Community for NL Design System",
|
|
4
4
|
"description": "React component library bundle for the Municipality of Utrecht based on the NL Design System architecture",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"react": "16 - 18",
|
|
74
74
|
"react-dom": "16 - 18"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "74bda3f0e7fcaf2dc4fd79da7a4494ccb06f060f"
|
|
77
77
|
}
|