@utrecht/component-library-react 1.0.0-alpha.3 → 1.0.0-alpha.6
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/cjs/Article.d.ts +1 -2
- package/dist/cjs/Button.d.ts +1 -2
- package/dist/cjs/Checkbox.d.ts +1 -2
- package/dist/cjs/Fieldset.d.ts +1 -2
- package/dist/cjs/FieldsetLegend.d.ts +1 -2
- package/dist/cjs/FieldsetLegend.js +1 -1
- package/dist/cjs/FormField.d.ts +1 -2
- package/dist/cjs/FormFieldDescription.d.ts +1 -2
- package/dist/cjs/FormLabel.d.ts +1 -2
- package/dist/cjs/Heading1.d.ts +1 -2
- package/dist/cjs/Heading2.d.ts +1 -2
- package/dist/cjs/Heading3.d.ts +1 -2
- package/dist/cjs/Heading4.d.ts +1 -2
- package/dist/cjs/Heading5.d.ts +1 -2
- package/dist/cjs/Heading6.d.ts +1 -2
- package/dist/cjs/Link.d.ts +1 -2
- package/dist/cjs/OrderedList.d.ts +1 -2
- package/dist/cjs/OrderedListItem.d.ts +1 -2
- package/dist/cjs/OrderedListItem.js +1 -1
- package/dist/cjs/PageContent.d.ts +2 -3
- package/dist/cjs/PageContent.js +1 -1
- package/dist/cjs/Paragraph.d.ts +1 -2
- package/dist/cjs/RadioButton.d.ts +1 -2
- package/dist/cjs/Select.d.ts +2 -3
- package/dist/cjs/Separator.d.ts +1 -2
- package/dist/cjs/Table.d.ts +1 -2
- package/dist/cjs/TableBody.d.ts +1 -2
- package/dist/cjs/TableCaption.d.ts +1 -2
- package/dist/cjs/TableCell.d.ts +1 -2
- package/dist/cjs/TableFooter.d.ts +1 -2
- package/dist/cjs/TableHeader.d.ts +1 -2
- package/dist/cjs/TableHeaderCell.d.ts +1 -2
- package/dist/cjs/TableRow.d.ts +1 -2
- package/dist/cjs/Textarea.d.ts +1 -2
- package/dist/cjs/Textbox.d.ts +1 -2
- package/dist/cjs/UnorderedList.d.ts +1 -2
- package/dist/cjs/UnorderedListItem.js +1 -1
- package/dist/cjs/tsconfig.tsbuildinfo +67 -67
- package/package.json +2 -2
package/dist/cjs/Article.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type ArticleProps = HTMLAttributes<HTMLElement>;
|
|
6
|
+
export declare type ArticleProps = HTMLAttributes<HTMLElement>;
|
|
7
7
|
export declare const Article: import("react").ForwardRefExoticComponent<ArticleProps & import("react").RefAttributes<HTMLElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Button.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ButtonHTMLAttributes } from 'react';
|
|
2
|
-
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2
|
+
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
3
3
|
busy?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
6
|
-
export {};
|
package/dist/cjs/Checkbox.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { InputHTMLAttributes } from 'react';
|
|
2
|
-
interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'readOnly'> {
|
|
2
|
+
export interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'readOnly'> {
|
|
3
3
|
invalid?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare const Checkbox: import("react").ForwardRefExoticComponent<CheckboxProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
-
export {};
|
package/dist/cjs/Fieldset.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { FieldsetHTMLAttributes } from 'react';
|
|
2
|
-
declare type FieldsetProps = FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
2
|
+
export declare type FieldsetProps = FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
3
3
|
export declare const Fieldset: import("react").ForwardRefExoticComponent<FieldsetProps & import("react").RefAttributes<HTMLFieldSetElement>>;
|
|
4
|
-
export {};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
|
-
declare type FieldsetLegendProps = HTMLAttributes<HTMLLegendElement>;
|
|
2
|
+
export declare type FieldsetLegendProps = HTMLAttributes<HTMLLegendElement>;
|
|
3
3
|
export declare const FieldsetLegend: import("react").ForwardRefExoticComponent<FieldsetLegendProps & import("react").RefAttributes<HTMLLegendElement>>;
|
|
4
|
-
export {};
|
|
@@ -22,4 +22,4 @@ exports.FieldsetLegend = react_1.forwardRef((_a, ref) => {
|
|
|
22
22
|
var { className, children } = _a, restProps = __rest(_a, ["className", "children"]);
|
|
23
23
|
return (jsx_runtime_1.jsx("legend", Object.assign({}, restProps, { ref: ref, className: clsx_1.default('utrecht-form-fieldset__legend', 'utrecht-form-fieldset__legend--reset-legend', className) }, { children: children }), void 0));
|
|
24
24
|
});
|
|
25
|
-
exports.FieldsetLegend.displayName = 'utrecht-form-
|
|
25
|
+
exports.FieldsetLegend.displayName = 'utrecht-form-fieldset-legend';
|
package/dist/cjs/FormField.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
|
-
declare type FormFieldProps = HTMLAttributes<HTMLDivElement>;
|
|
2
|
+
export declare type FormFieldProps = HTMLAttributes<HTMLDivElement>;
|
|
3
3
|
export declare const FormField: import("react").ForwardRefExoticComponent<FormFieldProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
4
|
-
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
|
-
interface FormFieldDescriptionProps extends HTMLAttributes<HTMLDivElement> {
|
|
2
|
+
export interface FormFieldDescriptionProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
3
|
invalid?: boolean;
|
|
4
4
|
valid?: boolean;
|
|
5
5
|
warning?: boolean;
|
|
6
6
|
}
|
|
7
7
|
export declare const FormFieldDescription: import("react").ForwardRefExoticComponent<FormFieldDescriptionProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/FormLabel.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { LabelHTMLAttributes } from 'react';
|
|
2
|
-
interface FormLabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
|
|
2
|
+
export interface FormLabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
|
|
3
3
|
htmlFor: string;
|
|
4
4
|
type?: 'checkbox' | 'radio';
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
checked?: boolean;
|
|
7
7
|
}
|
|
8
8
|
export declare const FormLabel: import("react").ForwardRefExoticComponent<FormLabelProps & import("react").RefAttributes<HTMLLabelElement>>;
|
|
9
|
-
export {};
|
package/dist/cjs/Heading1.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type Heading1Props = HTMLAttributes<HTMLHeadingElement>;
|
|
6
|
+
export declare type Heading1Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
7
|
export declare const Heading1: import("react").ForwardRefExoticComponent<Heading1Props & import("react").RefAttributes<HTMLHeadingElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Heading2.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type Heading2Props = HTMLAttributes<HTMLHeadingElement>;
|
|
6
|
+
export declare type Heading2Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
7
|
export declare const Heading2: import("react").ForwardRefExoticComponent<Heading2Props & import("react").RefAttributes<HTMLHeadingElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Heading3.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type Heading3Props = HTMLAttributes<HTMLHeadingElement>;
|
|
6
|
+
export declare type Heading3Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
7
|
export declare const Heading3: import("react").ForwardRefExoticComponent<Heading3Props & import("react").RefAttributes<HTMLHeadingElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Heading4.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type Heading4Props = HTMLAttributes<HTMLHeadingElement>;
|
|
6
|
+
export declare type Heading4Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
7
|
export declare const Heading4: import("react").ForwardRefExoticComponent<Heading4Props & import("react").RefAttributes<HTMLHeadingElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Heading5.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type Heading5Props = HTMLAttributes<HTMLHeadingElement>;
|
|
6
|
+
export declare type Heading5Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
7
|
export declare const Heading5: import("react").ForwardRefExoticComponent<Heading5Props & import("react").RefAttributes<HTMLHeadingElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Heading6.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type Heading6Props = HTMLAttributes<HTMLHeadingElement>;
|
|
6
|
+
export declare type Heading6Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
7
|
export declare const Heading6: import("react").ForwardRefExoticComponent<Heading6Props & import("react").RefAttributes<HTMLHeadingElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Link.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Copyright (c) 2021 Robbert Broersma
|
|
5
5
|
*/
|
|
6
6
|
import { AnchorHTMLAttributes } from 'react';
|
|
7
|
-
interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
7
|
+
export interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
8
8
|
activeStyle?: boolean;
|
|
9
9
|
external?: boolean;
|
|
10
10
|
focusStyle?: boolean;
|
|
@@ -13,4 +13,3 @@ interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
|
13
13
|
visitedStyle?: boolean;
|
|
14
14
|
}
|
|
15
15
|
export declare const Link: import("react").ForwardRefExoticComponent<LinkProps & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
16
|
-
export {};
|
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { OlHTMLAttributes } from 'react';
|
|
6
|
-
declare type OrderedListProps = OlHTMLAttributes<HTMLOListElement>;
|
|
6
|
+
export declare type OrderedListProps = OlHTMLAttributes<HTMLOListElement>;
|
|
7
7
|
export declare const OrderedList: import("react").ForwardRefExoticComponent<OrderedListProps & import("react").RefAttributes<HTMLOListElement>>;
|
|
8
|
-
export {};
|
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { LiHTMLAttributes } from 'react';
|
|
6
|
-
declare type OrderedListItemProps = LiHTMLAttributes<HTMLLIElement>;
|
|
6
|
+
export declare type OrderedListItemProps = LiHTMLAttributes<HTMLLIElement>;
|
|
7
7
|
export declare const OrderedListItem: import("react").ForwardRefExoticComponent<OrderedListItemProps & import("react").RefAttributes<HTMLLIElement>>;
|
|
8
|
-
export {};
|
|
@@ -26,4 +26,4 @@ exports.OrderedListItem = react_1.forwardRef((_a, ref) => {
|
|
|
26
26
|
var { children, className } = _a, restProps = __rest(_a, ["children", "className"]);
|
|
27
27
|
return (jsx_runtime_1.jsx("li", Object.assign({}, restProps, { ref: ref, className: clsx_1.default('utrecht-ordered-list__item', className) }, { children: children }), void 0));
|
|
28
28
|
});
|
|
29
|
-
exports.OrderedListItem.displayName = 'utrecht-ordered-
|
|
29
|
+
exports.OrderedListItem.displayName = 'utrecht-ordered-list-item';
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type PageContentProps = HTMLAttributes<HTMLDivElement>;
|
|
6
|
+
export declare type PageContentProps = HTMLAttributes<HTMLDivElement>;
|
|
7
7
|
export declare const PageContent: import("react").ForwardRefExoticComponent<PageContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
-
declare type PageContentMainProps = HTMLAttributes<HTMLDivElement>;
|
|
8
|
+
export declare type PageContentMainProps = HTMLAttributes<HTMLDivElement>;
|
|
9
9
|
export declare const PageContentMain: import("react").ForwardRefExoticComponent<PageContentMainProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
10
|
-
export {};
|
package/dist/cjs/PageContent.js
CHANGED
|
@@ -31,4 +31,4 @@ exports.PageContentMain = react_1.forwardRef((_a, ref) => {
|
|
|
31
31
|
var { children, className } = _a, restProps = __rest(_a, ["children", "className"]);
|
|
32
32
|
return (jsx_runtime_1.jsx("main", Object.assign({}, restProps, { ref: ref, className: clsx_1.default('utrecht-page-content__main', className) }, { children: children }), void 0));
|
|
33
33
|
});
|
|
34
|
-
exports.PageContentMain.displayName = 'utrecht-page-
|
|
34
|
+
exports.PageContentMain.displayName = 'utrecht-page-content-main';
|
package/dist/cjs/Paragraph.d.ts
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
6
|
+
export interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
7
7
|
lead?: boolean;
|
|
8
8
|
}
|
|
9
9
|
export declare const Paragraph: import("react").ForwardRefExoticComponent<ParagraphProps & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
10
|
-
export {};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { InputHTMLAttributes } from 'react';
|
|
2
|
-
interface RadioButtonProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'readOnly'> {
|
|
2
|
+
export interface RadioButtonProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'readOnly'> {
|
|
3
3
|
invalid?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare const RadioButton: import("react").ForwardRefExoticComponent<RadioButtonProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
-
export {};
|
package/dist/cjs/Select.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { OptionHTMLAttributes, SelectHTMLAttributes } from 'react';
|
|
2
|
-
interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
|
|
2
|
+
export interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
|
|
3
3
|
invalid?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare const Select: import("react").ForwardRefExoticComponent<SelectProps & import("react").RefAttributes<HTMLSelectElement>>;
|
|
6
|
-
interface SelectOptionProps extends OptionHTMLAttributes<HTMLOptionElement> {
|
|
6
|
+
export interface SelectOptionProps extends OptionHTMLAttributes<HTMLOptionElement> {
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
invalid?: boolean;
|
|
9
9
|
value?: string;
|
|
10
10
|
}
|
|
11
11
|
export declare const SelectOption: import("react").ForwardRefExoticComponent<SelectOptionProps & import("react").RefAttributes<HTMLOptionElement>>;
|
|
12
|
-
export {};
|
package/dist/cjs/Separator.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type SeparatorProps = HTMLAttributes<HTMLHRElement>;
|
|
6
|
+
export declare type SeparatorProps = HTMLAttributes<HTMLHRElement>;
|
|
7
7
|
export declare const Separator: import("react").ForwardRefExoticComponent<SeparatorProps & import("react").RefAttributes<HTMLHRElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Table.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { TableHTMLAttributes } from 'react';
|
|
6
|
-
declare type TableProps = TableHTMLAttributes<HTMLTableElement>;
|
|
6
|
+
export declare type TableProps = TableHTMLAttributes<HTMLTableElement>;
|
|
7
7
|
export declare const Table: import("react").ForwardRefExoticComponent<TableProps & import("react").RefAttributes<HTMLTableElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/TableBody.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type TableBodyProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
6
|
+
export declare type TableBodyProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
7
7
|
export declare const TableBody: import("react").ForwardRefExoticComponent<TableBodyProps & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
8
|
-
export {};
|
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type TableCaptionProps = HTMLAttributes<HTMLTableCaptionElement>;
|
|
6
|
+
export declare type TableCaptionProps = HTMLAttributes<HTMLTableCaptionElement>;
|
|
7
7
|
export declare const TableCaption: import("react").ForwardRefExoticComponent<TableCaptionProps & import("react").RefAttributes<HTMLTableCaptionElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/TableCell.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { TdHTMLAttributes } from 'react';
|
|
6
|
-
declare type TableCellProps = TdHTMLAttributes<HTMLTableCellElement>;
|
|
6
|
+
export declare type TableCellProps = TdHTMLAttributes<HTMLTableCellElement>;
|
|
7
7
|
export declare const TableCell: import("react").ForwardRefExoticComponent<TableCellProps & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
8
|
-
export {};
|
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type TableFooterProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
6
|
+
export declare type TableFooterProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
7
7
|
export declare const TableFooter: import("react").ForwardRefExoticComponent<TableFooterProps & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
8
|
-
export {};
|
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type TableHeaderProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
6
|
+
export declare type TableHeaderProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
7
7
|
export declare const TableHeader: import("react").ForwardRefExoticComponent<TableHeaderProps & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
8
|
-
export {};
|
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { ThHTMLAttributes } from 'react';
|
|
6
|
-
declare type TableHeaderCellProps = ThHTMLAttributes<HTMLTableCellElement>;
|
|
6
|
+
export declare type TableHeaderCellProps = ThHTMLAttributes<HTMLTableCellElement>;
|
|
7
7
|
export declare const TableHeaderCell: import("react").ForwardRefExoticComponent<TableHeaderCellProps & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/TableRow.d.ts
CHANGED
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2022 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type TableRowProps = HTMLAttributes<HTMLTableRowElement>;
|
|
6
|
+
export declare type TableRowProps = HTMLAttributes<HTMLTableRowElement>;
|
|
7
7
|
export declare const TableRow: import("react").ForwardRefExoticComponent<TableRowProps & import("react").RefAttributes<HTMLTableRowElement>>;
|
|
8
|
-
export {};
|
package/dist/cjs/Textarea.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { TextareaHTMLAttributes } from 'react';
|
|
2
|
-
interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
2
|
+
export interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
3
3
|
invalid?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare const Textarea: import("react").ForwardRefExoticComponent<TextareaProps & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
6
|
-
export {};
|
package/dist/cjs/Textbox.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { InputHTMLAttributes } from 'react';
|
|
2
2
|
export declare type TextboxTypes = 'email' | 'number' | 'password' | 'tel' | 'text' | 'url';
|
|
3
|
-
interface TextboxProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
3
|
+
export interface TextboxProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
4
4
|
invalid?: boolean;
|
|
5
5
|
type?: TextboxTypes;
|
|
6
6
|
}
|
|
7
7
|
export declare const Textbox: import("react").ForwardRefExoticComponent<TextboxProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
8
|
-
export {};
|
|
@@ -3,6 +3,5 @@
|
|
|
3
3
|
* Copyright (c) 2021 Robbert Broersma
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
|
-
declare type UnorderedListProps = HTMLAttributes<HTMLUListElement>;
|
|
6
|
+
export declare type UnorderedListProps = HTMLAttributes<HTMLUListElement>;
|
|
7
7
|
export declare const UnorderedList: import("react").ForwardRefExoticComponent<UnorderedListProps & import("react").RefAttributes<HTMLUListElement>>;
|
|
8
|
-
export {};
|
|
@@ -26,4 +26,4 @@ exports.UnorderedListItem = react_1.forwardRef((_a, ref) => {
|
|
|
26
26
|
var { children, className } = _a, restProps = __rest(_a, ["children", "className"]);
|
|
27
27
|
return (jsx_runtime_1.jsx("li", Object.assign({}, restProps, { ref: ref, className: clsx_1.default('utrecht-unordered-list__item', className) }, { children: children }), void 0));
|
|
28
28
|
});
|
|
29
|
-
exports.UnorderedListItem.displayName = 'utrecht-unordered-
|
|
29
|
+
exports.UnorderedListItem.displayName = 'utrecht-unordered-list-item';
|
|
@@ -177,8 +177,8 @@
|
|
|
177
177
|
"affectsGlobalScope": false
|
|
178
178
|
},
|
|
179
179
|
"../../src/Article.tsx": {
|
|
180
|
-
"version": "
|
|
181
|
-
"signature": "
|
|
180
|
+
"version": "7b1dc7aae267c9ae450d97e542630c9d73022d0c1959ac29bbc42b2dcf5d4ca3",
|
|
181
|
+
"signature": "b084d7b8819815e8016b8d5dd4b58d82e7eb8be751b40ec6adbf34829b85f5d4",
|
|
182
182
|
"affectsGlobalScope": false
|
|
183
183
|
},
|
|
184
184
|
"../../src/Backdrop.tsx": {
|
|
@@ -187,13 +187,13 @@
|
|
|
187
187
|
"affectsGlobalScope": false
|
|
188
188
|
},
|
|
189
189
|
"../../src/Button.tsx": {
|
|
190
|
-
"version": "
|
|
191
|
-
"signature": "
|
|
190
|
+
"version": "a5165cb7dafc8f799500ce8b1ae9c5602cb045c33571f59917998d8becc813ed",
|
|
191
|
+
"signature": "b15639d90dff6cb5207f1a4fff8746882f0facf9737ee9c9be825825e856c167",
|
|
192
192
|
"affectsGlobalScope": false
|
|
193
193
|
},
|
|
194
194
|
"../../src/Checkbox.tsx": {
|
|
195
|
-
"version": "
|
|
196
|
-
"signature": "
|
|
195
|
+
"version": "c76a571723e4f65f4a321ea296e6d230eca6eac2f23e3860ec2421d3711464b8",
|
|
196
|
+
"signature": "19ebb05e622a7b936de314df131ae96f0278f1e377e92e936f521bad9e9cdceb",
|
|
197
197
|
"affectsGlobalScope": false
|
|
198
198
|
},
|
|
199
199
|
"../../src/Document.tsx": {
|
|
@@ -202,28 +202,28 @@
|
|
|
202
202
|
"affectsGlobalScope": false
|
|
203
203
|
},
|
|
204
204
|
"../../src/Fieldset.tsx": {
|
|
205
|
-
"version": "
|
|
206
|
-
"signature": "
|
|
205
|
+
"version": "481572ab26632e42feeb5dc159cba383db73415b6dbc04af6f872ca816397177",
|
|
206
|
+
"signature": "6e088cfee55195f7c3a1946b99cb0fac749a8678b58fddc99231c518ee9e81b9",
|
|
207
207
|
"affectsGlobalScope": false
|
|
208
208
|
},
|
|
209
209
|
"../../src/FieldsetLegend.tsx": {
|
|
210
|
-
"version": "
|
|
211
|
-
"signature": "
|
|
210
|
+
"version": "c4b0423e1c3b4afc2c5dc0131cb4f198669fded4400fc9025a88486b9bcba089",
|
|
211
|
+
"signature": "2a460c14d189966603b9086d66d94c21bc58be6acc7c1fadddbb988ea28dd36e",
|
|
212
212
|
"affectsGlobalScope": false
|
|
213
213
|
},
|
|
214
214
|
"../../src/FormField.tsx": {
|
|
215
|
-
"version": "
|
|
216
|
-
"signature": "
|
|
215
|
+
"version": "afc3699f7a573afd55fb0b885f94bbdc91a8dbd809f6e80644768b65f52e1b24",
|
|
216
|
+
"signature": "5dcec7c505cc07b60b45fffe59735a77954bbbb98b8c92a90b83867bcfc8b3f7",
|
|
217
217
|
"affectsGlobalScope": false
|
|
218
218
|
},
|
|
219
219
|
"../../src/FormFieldDescription.tsx": {
|
|
220
|
-
"version": "
|
|
221
|
-
"signature": "
|
|
220
|
+
"version": "d98500df83a9691f70baa90e83c97c3ddda9cf98a2acca0004463c7952a5559e",
|
|
221
|
+
"signature": "a3af2e2d9cc401a18b3d3ea85ba9a9a95f1490526769d600c3014a2b994987a7",
|
|
222
222
|
"affectsGlobalScope": false
|
|
223
223
|
},
|
|
224
224
|
"../../src/FormLabel.tsx": {
|
|
225
|
-
"version": "
|
|
226
|
-
"signature": "
|
|
225
|
+
"version": "72b4d6da0443d79f494f4b05af930568d3baf128e5c1d292d72317119d74c1c4",
|
|
226
|
+
"signature": "3017433576ffa8ac4ef7340326b960668a60a086f0764e3de7f89d71cb3e7870",
|
|
227
227
|
"affectsGlobalScope": false
|
|
228
228
|
},
|
|
229
229
|
"../../src/HTMLContent.tsx": {
|
|
@@ -232,48 +232,48 @@
|
|
|
232
232
|
"affectsGlobalScope": false
|
|
233
233
|
},
|
|
234
234
|
"../../src/Heading1.tsx": {
|
|
235
|
-
"version": "
|
|
236
|
-
"signature": "
|
|
235
|
+
"version": "29236a4999f8649a25340dda2965cef45272a1a814092291ca914aecac11ef73",
|
|
236
|
+
"signature": "6007a4c1fd743392baae7c02dc9be4b87e024460fa774d54c09abb7d9230a11f",
|
|
237
237
|
"affectsGlobalScope": false
|
|
238
238
|
},
|
|
239
239
|
"../../src/Heading2.tsx": {
|
|
240
|
-
"version": "
|
|
241
|
-
"signature": "
|
|
240
|
+
"version": "3bda8669cd1a197b9ac7675ae970d2ef6b6a804c2c71d76539c147954e5f3860",
|
|
241
|
+
"signature": "ca73c2b6f618efb4129f4cd06544efc6bb0c33b133a39e8c8e527f0fc650eb53",
|
|
242
242
|
"affectsGlobalScope": false
|
|
243
243
|
},
|
|
244
244
|
"../../src/Heading3.tsx": {
|
|
245
|
-
"version": "
|
|
246
|
-
"signature": "
|
|
245
|
+
"version": "a71b464b603a86c30ddd294e0a3e2aaa5802e42a01c04af42a2ee720415fa40b",
|
|
246
|
+
"signature": "8183cf6eff03c3f2b544814b80a33cae31b29848a8274309c4b1ad48e668d7e6",
|
|
247
247
|
"affectsGlobalScope": false
|
|
248
248
|
},
|
|
249
249
|
"../../src/Heading4.tsx": {
|
|
250
|
-
"version": "
|
|
251
|
-
"signature": "
|
|
250
|
+
"version": "473d68794a71f948cf0608ff54e761893bf42ccec042d1cb2a75d0298aa39290",
|
|
251
|
+
"signature": "dfae1aa8c2e1f9500b85cd5a419bcb233f0ef319c76f329f64c9688984edc49c",
|
|
252
252
|
"affectsGlobalScope": false
|
|
253
253
|
},
|
|
254
254
|
"../../src/Heading5.tsx": {
|
|
255
|
-
"version": "
|
|
256
|
-
"signature": "
|
|
255
|
+
"version": "325916d1d482d837841eacfcb4de582e32b9f27ef5a2d3954324fbcacba0c705",
|
|
256
|
+
"signature": "b21e1eefb165d9c67e3e92cb0b42d60d3226ef0b885d904bfb0448eb4dc5c7af",
|
|
257
257
|
"affectsGlobalScope": false
|
|
258
258
|
},
|
|
259
259
|
"../../src/Heading6.tsx": {
|
|
260
|
-
"version": "
|
|
261
|
-
"signature": "
|
|
260
|
+
"version": "8706006d31cd04ace23ed2f0a61e1828cdfb9e032ef4eb1582abab38566796a8",
|
|
261
|
+
"signature": "f39a29b53f3b9f69981b71b37b0c811878082596da81d2a7a9ba903087522cdb",
|
|
262
262
|
"affectsGlobalScope": false
|
|
263
263
|
},
|
|
264
264
|
"../../src/Link.tsx": {
|
|
265
|
-
"version": "
|
|
266
|
-
"signature": "
|
|
265
|
+
"version": "394ecbe610634043652a20b2dcc1fd99506e59102d66a34c7a3bf84a00b17dd8",
|
|
266
|
+
"signature": "2c3dea1f70e4b6112a348617888556c22da0ddd9b6c11830666266abe3cb13bd",
|
|
267
267
|
"affectsGlobalScope": false
|
|
268
268
|
},
|
|
269
269
|
"../../src/OrderedList.tsx": {
|
|
270
|
-
"version": "
|
|
271
|
-
"signature": "
|
|
270
|
+
"version": "392a1cbf4608e08dd5b05a29f94e4c67e0ea3dbb2cedc5e2b188c6e4cb3e9901",
|
|
271
|
+
"signature": "0ded0c69a09d5cc3085ac080bbb902679d512a0f6ac2485be9c08d2c5a314095",
|
|
272
272
|
"affectsGlobalScope": false
|
|
273
273
|
},
|
|
274
274
|
"../../src/OrderedListItem.tsx": {
|
|
275
|
-
"version": "
|
|
276
|
-
"signature": "
|
|
275
|
+
"version": "229c99dd8f456dca5800eec22c7f79df60e8b578928ae78bccdc442cc4b52931",
|
|
276
|
+
"signature": "6c4faa7144ff1fd74cdbd3fcc66755cc43b6af1eec178329a754fb575a93749d",
|
|
277
277
|
"affectsGlobalScope": false
|
|
278
278
|
},
|
|
279
279
|
"../../src/Page.tsx": {
|
|
@@ -282,8 +282,8 @@
|
|
|
282
282
|
"affectsGlobalScope": false
|
|
283
283
|
},
|
|
284
284
|
"../../src/PageContent.tsx": {
|
|
285
|
-
"version": "
|
|
286
|
-
"signature": "
|
|
285
|
+
"version": "52eef9f0f7da50cf2694cf20f0e44b9ddfcfda22384e0672e7b33b2659f432c8",
|
|
286
|
+
"signature": "c63e6860f9523ca4994514b90984351bb3fab717050ac32fad28ae0dca874a0b",
|
|
287
287
|
"affectsGlobalScope": false
|
|
288
288
|
},
|
|
289
289
|
"../../src/PageFooter.tsx": {
|
|
@@ -297,23 +297,23 @@
|
|
|
297
297
|
"affectsGlobalScope": false
|
|
298
298
|
},
|
|
299
299
|
"../../src/Paragraph.tsx": {
|
|
300
|
-
"version": "
|
|
301
|
-
"signature": "
|
|
300
|
+
"version": "c6624cd464cddd95836302aecc3e1ad2ebb770fe4d61b072be737b892be66b28",
|
|
301
|
+
"signature": "fe3a7e1af96b619b554e37611b59f033ad309adb96684acad69bf4a827d107dd",
|
|
302
302
|
"affectsGlobalScope": false
|
|
303
303
|
},
|
|
304
304
|
"../../src/RadioButton.tsx": {
|
|
305
|
-
"version": "
|
|
306
|
-
"signature": "
|
|
305
|
+
"version": "d4051932ea36fb53dcb9a13f9cb2b019abe9822686ccfe117aa9b330ca068423",
|
|
306
|
+
"signature": "41888273f4e203e7ee41c6e53972d2cb3129720123804655df07e451c88bd22e",
|
|
307
307
|
"affectsGlobalScope": false
|
|
308
308
|
},
|
|
309
309
|
"../../src/Select.tsx": {
|
|
310
|
-
"version": "
|
|
311
|
-
"signature": "
|
|
310
|
+
"version": "701af878581c222df7211dcce1232a1cf54b697f2aa632d67d563e21535adc62",
|
|
311
|
+
"signature": "952a895d953acc38444a5c3f55543edcbf04acc96be077edf6cd0e3265d6a07b",
|
|
312
312
|
"affectsGlobalScope": false
|
|
313
313
|
},
|
|
314
314
|
"../../src/Separator.tsx": {
|
|
315
|
-
"version": "
|
|
316
|
-
"signature": "
|
|
315
|
+
"version": "3c759d47c125cbd3ab86d192de426c0adb61db169121ba35ade81f053f9dc15f",
|
|
316
|
+
"signature": "afa87bfd5d671a28be7519d7cceec66face801fbccb3c027ab0b482344e5dd55",
|
|
317
317
|
"affectsGlobalScope": false
|
|
318
318
|
},
|
|
319
319
|
"../../src/Surface.tsx": {
|
|
@@ -322,53 +322,53 @@
|
|
|
322
322
|
"affectsGlobalScope": false
|
|
323
323
|
},
|
|
324
324
|
"../../src/Table.tsx": {
|
|
325
|
-
"version": "
|
|
326
|
-
"signature": "
|
|
325
|
+
"version": "9394b9383feba5a35bde87c4c44de3306f431ca500d7c0a036443d92cefc7ce0",
|
|
326
|
+
"signature": "845939a004a97a96568cb92e0b59b7b9a428090052630697a05a4c9d37f073f1",
|
|
327
327
|
"affectsGlobalScope": false
|
|
328
328
|
},
|
|
329
329
|
"../../src/TableBody.tsx": {
|
|
330
|
-
"version": "
|
|
331
|
-
"signature": "
|
|
330
|
+
"version": "e1032c02ff4bfc6f0284e1acb9ae86d5ccd707f053489f1fe49540df7a40ee59",
|
|
331
|
+
"signature": "4907e509f57a3ada7321ce9de1b6ce134543cf66b6950176937349912f8e4af5",
|
|
332
332
|
"affectsGlobalScope": false
|
|
333
333
|
},
|
|
334
334
|
"../../src/TableCaption.tsx": {
|
|
335
|
-
"version": "
|
|
336
|
-
"signature": "
|
|
335
|
+
"version": "1278e3ea862a1c085d6a7bc4fedc8dfc14a7cadf3203da4f3c5f44b1f3d76f9f",
|
|
336
|
+
"signature": "852074a9d54367a9f59881079d4e63846e83e8f1852e364e67df5e323475742a",
|
|
337
337
|
"affectsGlobalScope": false
|
|
338
338
|
},
|
|
339
339
|
"../../src/TableCell.tsx": {
|
|
340
|
-
"version": "
|
|
341
|
-
"signature": "
|
|
340
|
+
"version": "6d7aa14e6efba985a8413e8973d7f14b4687b3055dbb66b1b503d3bd5f99e200",
|
|
341
|
+
"signature": "0eddecff777057b11e5f503d180fb2200d6c4db76aed4a9a4ec0d792466a9f03",
|
|
342
342
|
"affectsGlobalScope": false
|
|
343
343
|
},
|
|
344
344
|
"../../src/TableFooter.tsx": {
|
|
345
|
-
"version": "
|
|
346
|
-
"signature": "
|
|
345
|
+
"version": "0f0f35eb221c282c8daecbe33119230c14933fb4e108c65fecfa7e1ae7c73d29",
|
|
346
|
+
"signature": "9bd70a9cdc4b1751f9ca8875a55f8607fc74ec43a5a1604a7625515c2d98561f",
|
|
347
347
|
"affectsGlobalScope": false
|
|
348
348
|
},
|
|
349
349
|
"../../src/TableHeader.tsx": {
|
|
350
|
-
"version": "
|
|
351
|
-
"signature": "
|
|
350
|
+
"version": "0a79c4cacf42eca0e240a3ae17e8dd785e60a5c3366ecb2d3c20e33429e93d0f",
|
|
351
|
+
"signature": "b64f5ec0a73c32de3824be9e233a22639067b35ba11928a918dc6972a8f6a56e",
|
|
352
352
|
"affectsGlobalScope": false
|
|
353
353
|
},
|
|
354
354
|
"../../src/TableHeaderCell.tsx": {
|
|
355
|
-
"version": "
|
|
356
|
-
"signature": "
|
|
355
|
+
"version": "958bbf1d4d27c301075dae7f43fc9217144e23827e25ff6c4dcf23c2b540045f",
|
|
356
|
+
"signature": "f543f2e456597fa459d2b2a9e1b4261625126cff5decaaba6fa9c62869dceff9",
|
|
357
357
|
"affectsGlobalScope": false
|
|
358
358
|
},
|
|
359
359
|
"../../src/TableRow.tsx": {
|
|
360
|
-
"version": "
|
|
361
|
-
"signature": "
|
|
360
|
+
"version": "5a04934999ec955eef5e6969114935c3b23acaeaf89487df9b3509aa426701dd",
|
|
361
|
+
"signature": "a58ae81477dbbe4bec2e21ecb2e32d331cfcb0a767a4ba329ceb1d415c97d173",
|
|
362
362
|
"affectsGlobalScope": false
|
|
363
363
|
},
|
|
364
364
|
"../../src/Textarea.tsx": {
|
|
365
|
-
"version": "
|
|
366
|
-
"signature": "
|
|
365
|
+
"version": "c06e789ffba8bc2c61fb9ca816ff61ecbef2c00e4996b62db2a871c982b381d5",
|
|
366
|
+
"signature": "b6e59d6005314ddc06f02cb4fe393b85ebefcaf3db8e223e0a4b6dd11e887ba1",
|
|
367
367
|
"affectsGlobalScope": false
|
|
368
368
|
},
|
|
369
369
|
"../../src/Textbox.tsx": {
|
|
370
|
-
"version": "
|
|
371
|
-
"signature": "
|
|
370
|
+
"version": "45405d81f3a80402c63b63c802325cb8d7983ee0e3d746d3d69074c2ba1dc19f",
|
|
371
|
+
"signature": "5c459b0a99552a86dccb21a5a6d733abe97331b4b7619fb0aceb946b35f384ae",
|
|
372
372
|
"affectsGlobalScope": false
|
|
373
373
|
},
|
|
374
374
|
"../../src/URLValue.tsx": {
|
|
@@ -377,12 +377,12 @@
|
|
|
377
377
|
"affectsGlobalScope": false
|
|
378
378
|
},
|
|
379
379
|
"../../src/UnorderedList.tsx": {
|
|
380
|
-
"version": "
|
|
381
|
-
"signature": "
|
|
380
|
+
"version": "8e20a6a08eac6265dbed733c95640cb3f9f740b43c5dd5b19a9de56850fd8115",
|
|
381
|
+
"signature": "d8dda7f5496eb74a1858bf2d6ff9a8318fc6d9dee00c0e606576a563ee840464",
|
|
382
382
|
"affectsGlobalScope": false
|
|
383
383
|
},
|
|
384
384
|
"../../src/UnorderedListItem.tsx": {
|
|
385
|
-
"version": "
|
|
385
|
+
"version": "bd32e984ab90885d7851ac05ca51fcadaf959930c35380655e6c41f415ff5243",
|
|
386
386
|
"signature": "4e3fbcc92864952f654eec07b4f558a299597a5fec601167e49db1818761d654",
|
|
387
387
|
"affectsGlobalScope": false
|
|
388
388
|
},
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.6",
|
|
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",
|
|
@@ -221,5 +221,5 @@
|
|
|
221
221
|
"react": "^17.0.0",
|
|
222
222
|
"react-dom": "^17.0.0"
|
|
223
223
|
},
|
|
224
|
-
"gitHead": "
|
|
224
|
+
"gitHead": "64be42116490540fd8fb686b7a9c601000ccd333"
|
|
225
225
|
}
|