@utrecht/component-library-react 1.0.0-alpha.108 → 1.0.0-alpha.110
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 +3 -1
- package/dist/cjs/Backdrop.d.ts +3 -1
- package/dist/cjs/Button.d.ts +3 -1
- package/dist/cjs/ButtonLink.d.ts +3 -1
- package/dist/cjs/CustomRadioButton.d.ts +2 -0
- package/dist/cjs/Document.d.ts +3 -1
- package/dist/cjs/Fieldset.d.ts +3 -1
- package/dist/cjs/FieldsetLegend.d.ts +3 -1
- package/dist/cjs/FormField.d.ts +3 -1
- package/dist/cjs/FormFieldDescription.d.ts +3 -1
- package/dist/cjs/FormLabel.d.ts +3 -1
- package/dist/cjs/HTMLContent.d.ts +3 -1
- package/dist/cjs/Heading1.d.ts +3 -1
- package/dist/cjs/Heading2.d.ts +3 -1
- package/dist/cjs/Heading3.d.ts +3 -1
- package/dist/cjs/Heading4.d.ts +3 -1
- package/dist/cjs/Heading5.d.ts +3 -1
- package/dist/cjs/Heading6.d.ts +3 -1
- package/dist/cjs/Link.d.ts +3 -1
- package/dist/cjs/OrderedList.d.ts +3 -1
- package/dist/cjs/OrderedListItem.d.ts +3 -1
- package/dist/cjs/Page.d.ts +3 -1
- package/dist/cjs/PageContent.d.ts +6 -2
- package/dist/cjs/PageFooter.d.ts +3 -1
- package/dist/cjs/PageHeader.d.ts +3 -1
- package/dist/cjs/Paragraph.d.ts +3 -1
- package/dist/cjs/Select.d.ts +6 -2
- package/dist/cjs/Surface.d.ts +3 -1
- package/dist/cjs/Table.d.ts +3 -1
- package/dist/cjs/TableBody.d.ts +3 -1
- package/dist/cjs/TableCaption.d.ts +3 -1
- package/dist/cjs/TableCell.d.ts +3 -1
- package/dist/cjs/TableFooter.d.ts +3 -1
- package/dist/cjs/TableHeader.d.ts +3 -1
- package/dist/cjs/TableHeaderCell.d.ts +3 -1
- package/dist/cjs/TableRow.d.ts +3 -1
- package/dist/cjs/URLValue.d.ts +3 -1
- package/dist/cjs/UnorderedList.d.ts +3 -1
- package/dist/cjs/UnorderedListItem.d.ts +3 -1
- package/dist/cjs/tsconfig.tsbuildinfo +48 -110
- package/package.json +8 -8
package/dist/cjs/Article.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type ArticleProps = HTMLAttributes<HTMLElement>;
|
|
7
|
-
export declare const Article: import("react").ForwardRefExoticComponent<ArticleProps &
|
|
7
|
+
export declare const Article: import("react").ForwardRefExoticComponent<ArticleProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLElement>>;
|
package/dist/cjs/Backdrop.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type BackdropProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const Backdrop: import("react").ForwardRefExoticComponent<BackdropProps &
|
|
7
|
+
export declare const Backdrop: import("react").ForwardRefExoticComponent<BackdropProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/Button.d.ts
CHANGED
|
@@ -3,7 +3,9 @@ export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
3
3
|
appearance?: string;
|
|
4
4
|
busy?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare const Button: import("react").ForwardRefExoticComponent<ButtonProps &
|
|
6
|
+
export declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & {
|
|
7
|
+
children?: import("react").ReactNode;
|
|
8
|
+
} & import("react").RefAttributes<HTMLButtonElement>>;
|
|
7
9
|
export declare const PrimaryActionButton: {
|
|
8
10
|
({ ...args }: {
|
|
9
11
|
[x: string]: any;
|
package/dist/cjs/ButtonLink.d.ts
CHANGED
|
@@ -7,5 +7,7 @@ import { AnchorHTMLAttributes } from 'react';
|
|
|
7
7
|
interface ButtonLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
8
8
|
external?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export declare const ButtonLink: import("react").ForwardRefExoticComponent<ButtonLinkProps &
|
|
10
|
+
export declare const ButtonLink: import("react").ForwardRefExoticComponent<ButtonLinkProps & {
|
|
11
|
+
children?: import("react").ReactNode;
|
|
12
|
+
} & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
11
13
|
export {};
|
|
@@ -8,4 +8,6 @@ export declare type CustomRadioButtonProps = InputHTMLAttributes<HTMLInputElemen
|
|
|
8
8
|
};
|
|
9
9
|
export declare const CustomRadioButton: import("react").ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & {
|
|
10
10
|
invalid?: boolean | undefined;
|
|
11
|
+
} & {
|
|
12
|
+
children?: import("react").ReactNode;
|
|
11
13
|
} & import("react").RefAttributes<HTMLInputElement>>;
|
package/dist/cjs/Document.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type DocumentProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const Document: import("react").ForwardRefExoticComponent<DocumentProps &
|
|
7
|
+
export declare const Document: import("react").ForwardRefExoticComponent<DocumentProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/Fieldset.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { FieldsetHTMLAttributes } from 'react';
|
|
2
2
|
export declare type FieldsetProps = FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
3
|
-
export declare const Fieldset: import("react").ForwardRefExoticComponent<FieldsetProps &
|
|
3
|
+
export declare const Fieldset: import("react").ForwardRefExoticComponent<FieldsetProps & {
|
|
4
|
+
children?: import("react").ReactNode;
|
|
5
|
+
} & import("react").RefAttributes<HTMLFieldSetElement>>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export declare type FieldsetLegendProps = HTMLAttributes<HTMLLegendElement>;
|
|
3
|
-
export declare const FieldsetLegend: import("react").ForwardRefExoticComponent<FieldsetLegendProps &
|
|
3
|
+
export declare const FieldsetLegend: import("react").ForwardRefExoticComponent<FieldsetLegendProps & {
|
|
4
|
+
children?: import("react").ReactNode;
|
|
5
|
+
} & import("react").RefAttributes<HTMLLegendElement>>;
|
package/dist/cjs/FormField.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export declare type FormFieldProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const FormField: import("react").ForwardRefExoticComponent<FormFieldProps &
|
|
3
|
+
export declare const FormField: import("react").ForwardRefExoticComponent<FormFieldProps & {
|
|
4
|
+
children?: import("react").ReactNode;
|
|
5
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -4,4 +4,6 @@ export interface FormFieldDescriptionProps extends HTMLAttributes<HTMLDivElement
|
|
|
4
4
|
valid?: boolean;
|
|
5
5
|
warning?: boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare const FormFieldDescription: import("react").ForwardRefExoticComponent<FormFieldDescriptionProps &
|
|
7
|
+
export declare const FormFieldDescription: import("react").ForwardRefExoticComponent<FormFieldDescriptionProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/FormLabel.d.ts
CHANGED
|
@@ -5,4 +5,6 @@ export interface FormLabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
|
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
checked?: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare const FormLabel: import("react").ForwardRefExoticComponent<FormLabelProps &
|
|
8
|
+
export declare const FormLabel: import("react").ForwardRefExoticComponent<FormLabelProps & {
|
|
9
|
+
children?: import("react").ReactNode;
|
|
10
|
+
} & import("react").RefAttributes<HTMLLabelElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type HTMLContentProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const HTMLContent: import("react").ForwardRefExoticComponent<HTMLContentProps &
|
|
7
|
+
export declare const HTMLContent: import("react").ForwardRefExoticComponent<HTMLContentProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/Heading1.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type Heading1Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
|
-
export declare const Heading1: import("react").ForwardRefExoticComponent<Heading1Props &
|
|
7
|
+
export declare const Heading1: import("react").ForwardRefExoticComponent<Heading1Props & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLHeadingElement>>;
|
package/dist/cjs/Heading2.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type Heading2Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
|
-
export declare const Heading2: import("react").ForwardRefExoticComponent<Heading2Props &
|
|
7
|
+
export declare const Heading2: import("react").ForwardRefExoticComponent<Heading2Props & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLHeadingElement>>;
|
package/dist/cjs/Heading3.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type Heading3Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
|
-
export declare const Heading3: import("react").ForwardRefExoticComponent<Heading3Props &
|
|
7
|
+
export declare const Heading3: import("react").ForwardRefExoticComponent<Heading3Props & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLHeadingElement>>;
|
package/dist/cjs/Heading4.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type Heading4Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
|
-
export declare const Heading4: import("react").ForwardRefExoticComponent<Heading4Props &
|
|
7
|
+
export declare const Heading4: import("react").ForwardRefExoticComponent<Heading4Props & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLHeadingElement>>;
|
package/dist/cjs/Heading5.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type Heading5Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
|
-
export declare const Heading5: import("react").ForwardRefExoticComponent<Heading5Props &
|
|
7
|
+
export declare const Heading5: import("react").ForwardRefExoticComponent<Heading5Props & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLHeadingElement>>;
|
package/dist/cjs/Heading6.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type Heading6Props = HTMLAttributes<HTMLHeadingElement>;
|
|
7
|
-
export declare const Heading6: import("react").ForwardRefExoticComponent<Heading6Props &
|
|
7
|
+
export declare const Heading6: import("react").ForwardRefExoticComponent<Heading6Props & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLHeadingElement>>;
|
package/dist/cjs/Link.d.ts
CHANGED
|
@@ -7,4 +7,6 @@ import { AnchorHTMLAttributes } from 'react';
|
|
|
7
7
|
export interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
8
8
|
external?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export declare const Link: import("react").ForwardRefExoticComponent<LinkProps &
|
|
10
|
+
export declare const Link: import("react").ForwardRefExoticComponent<LinkProps & {
|
|
11
|
+
children?: import("react").ReactNode;
|
|
12
|
+
} & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { OlHTMLAttributes } from 'react';
|
|
6
6
|
export declare type OrderedListProps = OlHTMLAttributes<HTMLOListElement>;
|
|
7
|
-
export declare const OrderedList: import("react").ForwardRefExoticComponent<OrderedListProps &
|
|
7
|
+
export declare const OrderedList: import("react").ForwardRefExoticComponent<OrderedListProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLOListElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { LiHTMLAttributes } from 'react';
|
|
6
6
|
export declare type OrderedListItemProps = LiHTMLAttributes<HTMLLIElement>;
|
|
7
|
-
export declare const OrderedListItem: import("react").ForwardRefExoticComponent<OrderedListItemProps &
|
|
7
|
+
export declare const OrderedListItem: import("react").ForwardRefExoticComponent<OrderedListItemProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLLIElement>>;
|
package/dist/cjs/Page.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type PageProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const Page: import("react").ForwardRefExoticComponent<PageProps &
|
|
7
|
+
export declare const Page: import("react").ForwardRefExoticComponent<PageProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type PageContentProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const PageContent: import("react").ForwardRefExoticComponent<PageContentProps &
|
|
7
|
+
export declare const PageContent: import("react").ForwardRefExoticComponent<PageContentProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
10
|
export declare type PageContentMainProps = HTMLAttributes<HTMLDivElement>;
|
|
9
|
-
export declare const PageContentMain: import("react").ForwardRefExoticComponent<PageContentMainProps &
|
|
11
|
+
export declare const PageContentMain: import("react").ForwardRefExoticComponent<PageContentMainProps & {
|
|
12
|
+
children?: import("react").ReactNode;
|
|
13
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/PageFooter.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type PageFooterProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const PageFooter: import("react").ForwardRefExoticComponent<PageFooterProps &
|
|
7
|
+
export declare const PageFooter: import("react").ForwardRefExoticComponent<PageFooterProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/PageHeader.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type PageHeaderProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const PageHeader: import("react").ForwardRefExoticComponent<PageHeaderProps &
|
|
7
|
+
export declare const PageHeader: import("react").ForwardRefExoticComponent<PageHeaderProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/Paragraph.d.ts
CHANGED
|
@@ -6,4 +6,6 @@ import { HTMLAttributes } from 'react';
|
|
|
6
6
|
export interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
7
7
|
lead?: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare const Paragraph: import("react").ForwardRefExoticComponent<ParagraphProps &
|
|
9
|
+
export declare const Paragraph: import("react").ForwardRefExoticComponent<ParagraphProps & {
|
|
10
|
+
children?: import("react").ReactNode;
|
|
11
|
+
} & import("react").RefAttributes<HTMLParagraphElement>>;
|
package/dist/cjs/Select.d.ts
CHANGED
|
@@ -6,10 +6,14 @@ export interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
|
|
|
6
6
|
*/
|
|
7
7
|
noscript?: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare const Select: import("react").ForwardRefExoticComponent<SelectProps &
|
|
9
|
+
export declare const Select: import("react").ForwardRefExoticComponent<SelectProps & {
|
|
10
|
+
children?: import("react").ReactNode;
|
|
11
|
+
} & import("react").RefAttributes<HTMLSelectElement>>;
|
|
10
12
|
export interface SelectOptionProps extends OptionHTMLAttributes<HTMLOptionElement> {
|
|
11
13
|
disabled?: boolean;
|
|
12
14
|
invalid?: boolean;
|
|
13
15
|
value?: string;
|
|
14
16
|
}
|
|
15
|
-
export declare const SelectOption: import("react").ForwardRefExoticComponent<SelectOptionProps &
|
|
17
|
+
export declare const SelectOption: import("react").ForwardRefExoticComponent<SelectOptionProps & {
|
|
18
|
+
children?: import("react").ReactNode;
|
|
19
|
+
} & import("react").RefAttributes<HTMLOptionElement>>;
|
package/dist/cjs/Surface.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type SurfaceProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const Surface: import("react").ForwardRefExoticComponent<SurfaceProps &
|
|
7
|
+
export declare const Surface: import("react").ForwardRefExoticComponent<SurfaceProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/cjs/Table.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { TableHTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableProps = TableHTMLAttributes<HTMLTableElement>;
|
|
7
|
-
export declare const Table: import("react").ForwardRefExoticComponent<TableProps &
|
|
7
|
+
export declare const Table: import("react").ForwardRefExoticComponent<TableProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableElement>>;
|
package/dist/cjs/TableBody.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableBodyProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
7
|
-
export declare const TableBody: import("react").ForwardRefExoticComponent<TableBodyProps &
|
|
7
|
+
export declare const TableBody: import("react").ForwardRefExoticComponent<TableBodyProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableCaptionProps = HTMLAttributes<HTMLTableCaptionElement>;
|
|
7
|
-
export declare const TableCaption: import("react").ForwardRefExoticComponent<TableCaptionProps &
|
|
7
|
+
export declare const TableCaption: import("react").ForwardRefExoticComponent<TableCaptionProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableCaptionElement>>;
|
package/dist/cjs/TableCell.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { TdHTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableCellProps = TdHTMLAttributes<HTMLTableCellElement>;
|
|
7
|
-
export declare const TableCell: import("react").ForwardRefExoticComponent<TableCellProps &
|
|
7
|
+
export declare const TableCell: import("react").ForwardRefExoticComponent<TableCellProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableFooterProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
7
|
-
export declare const TableFooter: import("react").ForwardRefExoticComponent<TableFooterProps &
|
|
7
|
+
export declare const TableFooter: import("react").ForwardRefExoticComponent<TableFooterProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableHeaderProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
7
|
-
export declare const TableHeader: import("react").ForwardRefExoticComponent<TableHeaderProps &
|
|
7
|
+
export declare const TableHeader: import("react").ForwardRefExoticComponent<TableHeaderProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { ThHTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableHeaderCellProps = ThHTMLAttributes<HTMLTableCellElement>;
|
|
7
|
-
export declare const TableHeaderCell: import("react").ForwardRefExoticComponent<TableHeaderCellProps &
|
|
7
|
+
export declare const TableHeaderCell: import("react").ForwardRefExoticComponent<TableHeaderCellProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableCellElement>>;
|
package/dist/cjs/TableRow.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type TableRowProps = HTMLAttributes<HTMLTableRowElement>;
|
|
7
|
-
export declare const TableRow: import("react").ForwardRefExoticComponent<TableRowProps &
|
|
7
|
+
export declare const TableRow: import("react").ForwardRefExoticComponent<TableRowProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLTableRowElement>>;
|
package/dist/cjs/URLValue.d.ts
CHANGED
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type URLValueProps = HTMLAttributes<HTMLElement>;
|
|
7
|
-
export declare const URLValue: import("react").ForwardRefExoticComponent<URLValueProps &
|
|
7
|
+
export declare const URLValue: import("react").ForwardRefExoticComponent<URLValueProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
export declare type UnorderedListProps = HTMLAttributes<HTMLUListElement>;
|
|
7
|
-
export declare const UnorderedList: import("react").ForwardRefExoticComponent<UnorderedListProps &
|
|
7
|
+
export declare const UnorderedList: import("react").ForwardRefExoticComponent<UnorderedListProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLUListElement>>;
|
|
@@ -4,4 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { LiHTMLAttributes } from 'react';
|
|
6
6
|
export declare type UnorderedListItemProps = LiHTMLAttributes<HTMLLIElement>;
|
|
7
|
-
export declare const UnorderedListItem: import("react").ForwardRefExoticComponent<UnorderedListItemProps &
|
|
7
|
+
export declare const UnorderedListItem: import("react").ForwardRefExoticComponent<UnorderedListItemProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLLIElement>>;
|
|
@@ -217,8 +217,8 @@
|
|
|
217
217
|
"affectsGlobalScope": false
|
|
218
218
|
},
|
|
219
219
|
"../../node_modules/@types/react/index.d.ts": {
|
|
220
|
-
"version": "
|
|
221
|
-
"signature": "
|
|
220
|
+
"version": "515ee54ff10b6503aeabf3419cad1ed1f6e5e3c444f3d4f24279f17cb61be012",
|
|
221
|
+
"signature": "515ee54ff10b6503aeabf3419cad1ed1f6e5e3c444f3d4f24279f17cb61be012",
|
|
222
222
|
"affectsGlobalScope": true
|
|
223
223
|
},
|
|
224
224
|
"../../node_modules/@types/react/jsx-runtime.d.ts": {
|
|
@@ -233,22 +233,22 @@
|
|
|
233
233
|
},
|
|
234
234
|
"../../src/Article.tsx": {
|
|
235
235
|
"version": "1c800deb6b145200dad44ef95edac785f2fe11ec9d9e92b83f1183203f378c3c",
|
|
236
|
-
"signature": "
|
|
236
|
+
"signature": "c56ab14b52667bcdf4f49edd6368ad0ce9a1ab6ea63768e2531079851065813d",
|
|
237
237
|
"affectsGlobalScope": false
|
|
238
238
|
},
|
|
239
239
|
"../../src/Backdrop.tsx": {
|
|
240
240
|
"version": "5e2edbb1f2e4a47fda75b40fc2b6e7d40ed5f0daface7ad369fd2c177619cb7c",
|
|
241
|
-
"signature": "
|
|
241
|
+
"signature": "e3f8cdfac519c5c0352be18897cb0943210654da81086fd715f133b32390e9af",
|
|
242
242
|
"affectsGlobalScope": false
|
|
243
243
|
},
|
|
244
244
|
"../../src/Button.tsx": {
|
|
245
245
|
"version": "ba727168fdb0b3b731b593e1c00774c9187296c40320f1039d3fcf83636c5e13",
|
|
246
|
-
"signature": "
|
|
246
|
+
"signature": "3766b0b2229e34447835765d20e22c5abc3930c21f05e3bebc9dcc5a09c9aaa8",
|
|
247
247
|
"affectsGlobalScope": false
|
|
248
248
|
},
|
|
249
249
|
"../../src/ButtonLink.tsx": {
|
|
250
250
|
"version": "7c63627202382e76b9994bb5b2a22d9d01e8bb30eca2be5ff2627650c5d3e6fc",
|
|
251
|
-
"signature": "
|
|
251
|
+
"signature": "68981a8ffb5406eec0b6bc67b43e95704b8c8b1229a8086ef944960cd6e15f7a",
|
|
252
252
|
"affectsGlobalScope": false
|
|
253
253
|
},
|
|
254
254
|
"../../src/Checkbox.tsx": {
|
|
@@ -258,112 +258,112 @@
|
|
|
258
258
|
},
|
|
259
259
|
"../../src/CustomRadioButton.tsx": {
|
|
260
260
|
"version": "284e9694d526ab4d8b53354b9cbfeb4db9018dbc69bc8331658ea7c13ff52e36",
|
|
261
|
-
"signature": "
|
|
261
|
+
"signature": "623de274ab052e1a214089cce5d1b23cd6d5fcc1f8e647587f1488df0b34bdc7",
|
|
262
262
|
"affectsGlobalScope": false
|
|
263
263
|
},
|
|
264
264
|
"../../src/Document.tsx": {
|
|
265
265
|
"version": "2262b13137b05ea5899b4334fff2b3678231adcbf6de903d5e8769ec01463702",
|
|
266
|
-
"signature": "
|
|
266
|
+
"signature": "e6579ac3d48b51b8279ef021d2438d5ef63152e992c4bda8ada13c077d2fac75",
|
|
267
267
|
"affectsGlobalScope": false
|
|
268
268
|
},
|
|
269
269
|
"../../src/Fieldset.tsx": {
|
|
270
270
|
"version": "01aae2d182150a1cd87c7c7f77cd91cb85b654d029bf5aa19bb26ef5d7b330b0",
|
|
271
|
-
"signature": "
|
|
271
|
+
"signature": "a2edb561e5e4c7e6757b784f85a997100c9c6054f92231334a440a2d514137bd",
|
|
272
272
|
"affectsGlobalScope": false
|
|
273
273
|
},
|
|
274
274
|
"../../src/FieldsetLegend.tsx": {
|
|
275
275
|
"version": "aff7a712ed48b70acfa0d02f11f6921f7a85d150b7527140cc6805a1815cb30b",
|
|
276
|
-
"signature": "
|
|
276
|
+
"signature": "5b2d81825197d8aae7733685b38b3de890c25b7a01efe00cd27696b2c007fd11",
|
|
277
277
|
"affectsGlobalScope": false
|
|
278
278
|
},
|
|
279
279
|
"../../src/FormField.tsx": {
|
|
280
280
|
"version": "2b7aec88e4149ca6f9b8b7034e1479005db67c81538507ec7923e3ec2d493e9d",
|
|
281
|
-
"signature": "
|
|
281
|
+
"signature": "6fbb0f233982d97622e8f88729edb9fed9e984d4b13909a953ab80359cdc20b0",
|
|
282
282
|
"affectsGlobalScope": false
|
|
283
283
|
},
|
|
284
284
|
"../../src/FormFieldDescription.tsx": {
|
|
285
285
|
"version": "2c41ecf25167432bc46a9e6d90b473b4cc61752fbd4137920f020c1c087b336b",
|
|
286
|
-
"signature": "
|
|
286
|
+
"signature": "97711da53ee20135a9bf040e715165a6daadaef2a1d08ad6cb0463a232ffe4fb",
|
|
287
287
|
"affectsGlobalScope": false
|
|
288
288
|
},
|
|
289
289
|
"../../src/FormLabel.tsx": {
|
|
290
290
|
"version": "bb9380c1b5031d506fcfb9a63926be29e9e762510dabdc29f771c638a31c5d88",
|
|
291
|
-
"signature": "
|
|
291
|
+
"signature": "61ef28a1879b50f50b3a52c758fda8689373dd7e26be89f447d2ca73db6cf794",
|
|
292
292
|
"affectsGlobalScope": false
|
|
293
293
|
},
|
|
294
294
|
"../../src/HTMLContent.tsx": {
|
|
295
295
|
"version": "ee3c401afb493f9dde37b130b2fbe09817b26a7c6e6ea5b5ece368d9344a5cf6",
|
|
296
|
-
"signature": "
|
|
296
|
+
"signature": "207f033b5b573f68beddef42b7499bcd6c278d4f6c78750d3a5e0c803ba08f24",
|
|
297
297
|
"affectsGlobalScope": false
|
|
298
298
|
},
|
|
299
299
|
"../../src/Heading1.tsx": {
|
|
300
300
|
"version": "73b6ead9aa64f3d77357afc1ee36aaa05af6f2470301e63d9c24a5894b7b2559",
|
|
301
|
-
"signature": "
|
|
301
|
+
"signature": "5ee79b6e586924ec696d83ede530ab7b5d9302c494bde3b2f29f8dbea49fcb7c",
|
|
302
302
|
"affectsGlobalScope": false
|
|
303
303
|
},
|
|
304
304
|
"../../src/Heading2.tsx": {
|
|
305
305
|
"version": "24547394c0423c08fb22edbc8308b4f319c3d4109e452e0148590e51230bf0e2",
|
|
306
|
-
"signature": "
|
|
306
|
+
"signature": "87eef00f2705376d5b496b64d199b8b53c3e1687158d98d5c4e07b45da29ad83",
|
|
307
307
|
"affectsGlobalScope": false
|
|
308
308
|
},
|
|
309
309
|
"../../src/Heading3.tsx": {
|
|
310
310
|
"version": "13f3fd17a3945f8b3db93da92b9340af04c8f3c363110d09a36677670de4d7e7",
|
|
311
|
-
"signature": "
|
|
311
|
+
"signature": "dc7c9e3f9dc75b92dcb6af64d9554e6dfd35b471823992ae592fed99bbb620e9",
|
|
312
312
|
"affectsGlobalScope": false
|
|
313
313
|
},
|
|
314
314
|
"../../src/Heading4.tsx": {
|
|
315
315
|
"version": "fc472bfbaf16bf7af485ebe7876daa04643fa68493270dd647ba7465328fe81c",
|
|
316
|
-
"signature": "
|
|
316
|
+
"signature": "4446025788cf5ba59c09bb6040de9cc6e80795434dec799e4d3f26fb94586483",
|
|
317
317
|
"affectsGlobalScope": false
|
|
318
318
|
},
|
|
319
319
|
"../../src/Heading5.tsx": {
|
|
320
320
|
"version": "b75a4af108813139a7c7ca1eabf8ad890e224f8ab9d6757a8f2545b5ccde57d0",
|
|
321
|
-
"signature": "
|
|
321
|
+
"signature": "6ccd028b7a1afb0399dddaa3968e958aff5963b06ea3f3b0d4f966c9125595a0",
|
|
322
322
|
"affectsGlobalScope": false
|
|
323
323
|
},
|
|
324
324
|
"../../src/Heading6.tsx": {
|
|
325
325
|
"version": "5652b5d83535cd9f6ecf8ec0bef8e71c8336929e9c50f37395a1ec3fcb623a49",
|
|
326
|
-
"signature": "
|
|
326
|
+
"signature": "14707e2e8ebfb0e3b9de988acedb903e94c1b3383dd80dae69a2f1ace6e22626",
|
|
327
327
|
"affectsGlobalScope": false
|
|
328
328
|
},
|
|
329
329
|
"../../src/Link.tsx": {
|
|
330
330
|
"version": "912ebb7e21623103a4fd89a1de8724830d9b2dfd86215ca26462ee9d7fedce59",
|
|
331
|
-
"signature": "
|
|
331
|
+
"signature": "216a5b8235c4893a90c102ecb52a0436ff40f892170f156da45e852c85a47e2f",
|
|
332
332
|
"affectsGlobalScope": false
|
|
333
333
|
},
|
|
334
334
|
"../../src/OrderedList.tsx": {
|
|
335
335
|
"version": "3a402b038a8136e2a13b35e35fd7d21e385ad6442fed82019729b3b883d5b97e",
|
|
336
|
-
"signature": "
|
|
336
|
+
"signature": "2e6667eb2bdf9a69c7058b72a3208c894ee9dba0078b922b27b6332ed3b74429",
|
|
337
337
|
"affectsGlobalScope": false
|
|
338
338
|
},
|
|
339
339
|
"../../src/OrderedListItem.tsx": {
|
|
340
340
|
"version": "abd1204c193678c8fc7609eb0aed0926e9d4235dde155b741a0ecf1715db56dd",
|
|
341
|
-
"signature": "
|
|
341
|
+
"signature": "85efe737a4626d19278e4b2931002dc3eb7504ca4824520ad3e77d2edd766fb0",
|
|
342
342
|
"affectsGlobalScope": false
|
|
343
343
|
},
|
|
344
344
|
"../../src/Page.tsx": {
|
|
345
345
|
"version": "3d2afaee135cb1c9e6409e81053524a47663b143842f55d444fa508beae63dcf",
|
|
346
|
-
"signature": "
|
|
346
|
+
"signature": "306d1790699022be80c67d37d21900308eeb5d51f6e43900d9572561f155c51c",
|
|
347
347
|
"affectsGlobalScope": false
|
|
348
348
|
},
|
|
349
349
|
"../../src/PageContent.tsx": {
|
|
350
350
|
"version": "4ed67ca639979ffd9960aa736af3a41c89b03b50972335251d3eed998e1aa943",
|
|
351
|
-
"signature": "
|
|
351
|
+
"signature": "41084a1750b441e61c03f0afe92149056bafc6884f97b46ee2b53eaf57f6f9cf",
|
|
352
352
|
"affectsGlobalScope": false
|
|
353
353
|
},
|
|
354
354
|
"../../src/PageFooter.tsx": {
|
|
355
355
|
"version": "57d855bafafc91f11fa5a56e95193cd5e7423324aa4b79a675eb14472677ea53",
|
|
356
|
-
"signature": "
|
|
356
|
+
"signature": "918653d47851dfff1712636e389712afedb4849a43f47e38a13023dc32949d71",
|
|
357
357
|
"affectsGlobalScope": false
|
|
358
358
|
},
|
|
359
359
|
"../../src/PageHeader.tsx": {
|
|
360
360
|
"version": "1159c49efdb0d53e0de4f5ae04b3517fcec8dbff440c87c8e6c7e85c62ae93a1",
|
|
361
|
-
"signature": "
|
|
361
|
+
"signature": "d73a8d85276eb6ad1f626cdc9e7a80ff4cd5cc2065ec94a0ff5833c5b8a5113c",
|
|
362
362
|
"affectsGlobalScope": false
|
|
363
363
|
},
|
|
364
364
|
"../../src/Paragraph.tsx": {
|
|
365
365
|
"version": "32e4426a0693e2be3dade80355b37ff408939f95785525017a9cca2e6515da65",
|
|
366
|
-
"signature": "
|
|
366
|
+
"signature": "bc034019d312783de7031c7f193b5bd3cc98bba9af640a072869295b193895f8",
|
|
367
367
|
"affectsGlobalScope": false
|
|
368
368
|
},
|
|
369
369
|
"../../src/RadioButton.tsx": {
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
},
|
|
374
374
|
"../../src/Select.tsx": {
|
|
375
375
|
"version": "77ef81b8fd879772fe5f283e8f60200cea606b0034dac2b5896ad9b5390663a5",
|
|
376
|
-
"signature": "
|
|
376
|
+
"signature": "717e035d826d0628b6b7f7eda9571ff571456ef7e91d8c669e6a30160e6c7e68",
|
|
377
377
|
"affectsGlobalScope": false
|
|
378
378
|
},
|
|
379
379
|
"../../src/Separator.tsx": {
|
|
@@ -383,47 +383,47 @@
|
|
|
383
383
|
},
|
|
384
384
|
"../../src/Surface.tsx": {
|
|
385
385
|
"version": "e7a93b9c1a298be433ad4055cfdec3015d34d432a67aeec5dfdd24e8240087e2",
|
|
386
|
-
"signature": "
|
|
386
|
+
"signature": "af16f92198ad4f6885dbafda797ca68f86ea06c230fcb2ee4a90bd1f4388037e",
|
|
387
387
|
"affectsGlobalScope": false
|
|
388
388
|
},
|
|
389
389
|
"../../src/Table.tsx": {
|
|
390
390
|
"version": "c0711aaed9a5d43ee38f4bfbea6d5848616e7d837faa5603c0f9a5c154e9eac6",
|
|
391
|
-
"signature": "
|
|
391
|
+
"signature": "ef7daea65f8218c00721a44e49c98a5f65934a9cd112b8fd71369e04818c8d9d",
|
|
392
392
|
"affectsGlobalScope": false
|
|
393
393
|
},
|
|
394
394
|
"../../src/TableBody.tsx": {
|
|
395
395
|
"version": "c07587e52bebc98adce090d3a668d8488ff4243e81756cac939a1fb6ba4f7a9b",
|
|
396
|
-
"signature": "
|
|
396
|
+
"signature": "e9ae75b2eaab9f88a854524070a30849bacfe970257c6a14c036b44490d07b04",
|
|
397
397
|
"affectsGlobalScope": false
|
|
398
398
|
},
|
|
399
399
|
"../../src/TableCaption.tsx": {
|
|
400
400
|
"version": "b2c1682a220d4097bd4892da044cfbda7656c99653d5588b69500b393f1a4700",
|
|
401
|
-
"signature": "
|
|
401
|
+
"signature": "18cdae7b3705b6763b0b9514e2b7ada9edda64367f089b19b857f2c7b7fb3a79",
|
|
402
402
|
"affectsGlobalScope": false
|
|
403
403
|
},
|
|
404
404
|
"../../src/TableCell.tsx": {
|
|
405
405
|
"version": "46268f57eda23c37922aac4bf03a37b60debc6eee82ab9cc6ebd4f0fe47a15c0",
|
|
406
|
-
"signature": "
|
|
406
|
+
"signature": "d1af4f84747ec914251e47890f437b017b9e6eed92e16b98f3b85ca5f524aa88",
|
|
407
407
|
"affectsGlobalScope": false
|
|
408
408
|
},
|
|
409
409
|
"../../src/TableFooter.tsx": {
|
|
410
410
|
"version": "64e98dc35115d4043f129840ea12d9ca74c089e498d74a55ea3fc210ddfb576d",
|
|
411
|
-
"signature": "
|
|
411
|
+
"signature": "3ae841230267e0add6b2b6545989d4a8242c63ee45db5bd92284a6bc61cbba80",
|
|
412
412
|
"affectsGlobalScope": false
|
|
413
413
|
},
|
|
414
414
|
"../../src/TableHeader.tsx": {
|
|
415
415
|
"version": "449b209083e9c5dbaf67943b44677e599b32b5b2a8160dddc0aa82ab0aa66a3d",
|
|
416
|
-
"signature": "
|
|
416
|
+
"signature": "bc58f422551b0222fc7d4b9bc8735d3d9e34b1e9086f17d38c18902106a8765e",
|
|
417
417
|
"affectsGlobalScope": false
|
|
418
418
|
},
|
|
419
419
|
"../../src/TableHeaderCell.tsx": {
|
|
420
420
|
"version": "2a78eeb06b4cd75ce54a4d0f0abdd1be938badd69da44d6745ed077df785bf4a",
|
|
421
|
-
"signature": "
|
|
421
|
+
"signature": "ad136f4fa3180f171d430b9a4898490b2d4e36bcb7b9510ae7bd82dc5745b862",
|
|
422
422
|
"affectsGlobalScope": false
|
|
423
423
|
},
|
|
424
424
|
"../../src/TableRow.tsx": {
|
|
425
425
|
"version": "fb867926d011b3f86bc1c50d1be3197302023c80643f85dd950aa610f36176d2",
|
|
426
|
-
"signature": "
|
|
426
|
+
"signature": "7ff6c71351cb43584ba8dc9367c44a57f90102315ed2b766a656ef448d748c7c",
|
|
427
427
|
"affectsGlobalScope": false
|
|
428
428
|
},
|
|
429
429
|
"../../src/Textarea.tsx": {
|
|
@@ -438,17 +438,17 @@
|
|
|
438
438
|
},
|
|
439
439
|
"../../src/URLValue.tsx": {
|
|
440
440
|
"version": "d26e7397828214dd74172b3310ce7bc7fe6b8ad30a63420a3c56e7485c0249b6",
|
|
441
|
-
"signature": "
|
|
441
|
+
"signature": "f8282dcada700bc844ae2cc5cd5dbb53f532d00904c9662b8cb6fc5485a37032",
|
|
442
442
|
"affectsGlobalScope": false
|
|
443
443
|
},
|
|
444
444
|
"../../src/UnorderedList.tsx": {
|
|
445
445
|
"version": "1884f267845eff5e6ac154080f07bee7a8459085778154d430cc4c30c221d166",
|
|
446
|
-
"signature": "
|
|
446
|
+
"signature": "6ec9b7774e01bd8e48d067094ec42eb16e64cce17c0a4a04bf4659b445aac6f8",
|
|
447
447
|
"affectsGlobalScope": false
|
|
448
448
|
},
|
|
449
449
|
"../../src/UnorderedListItem.tsx": {
|
|
450
450
|
"version": "4f6614e90c16a626881b1ffe6a9786e9c13286ec904893598350cf3abc81a0d1",
|
|
451
|
-
"signature": "
|
|
451
|
+
"signature": "cc61abe6fcc6894c383c6e052bd29b2897a89e8e6a4568f6683bc5719128e2c1",
|
|
452
452
|
"affectsGlobalScope": false
|
|
453
453
|
},
|
|
454
454
|
"../../src/index.ts": {
|
|
@@ -1141,26 +1141,6 @@
|
|
|
1141
1141
|
"signature": "c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f",
|
|
1142
1142
|
"affectsGlobalScope": false
|
|
1143
1143
|
},
|
|
1144
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts": {
|
|
1145
|
-
"version": "bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f",
|
|
1146
|
-
"signature": "bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f",
|
|
1147
|
-
"affectsGlobalScope": true
|
|
1148
|
-
},
|
|
1149
|
-
"../../../../node_modules/@types/react-dom/node_modules/csstype/index.d.ts": {
|
|
1150
|
-
"version": "ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111",
|
|
1151
|
-
"signature": "ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111",
|
|
1152
|
-
"affectsGlobalScope": false
|
|
1153
|
-
},
|
|
1154
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts": {
|
|
1155
|
-
"version": "a2037c0eea8dc883f41b8dcbc7e0f9b305f79989f4d310d77c9c321432a66411",
|
|
1156
|
-
"signature": "a2037c0eea8dc883f41b8dcbc7e0f9b305f79989f4d310d77c9c321432a66411",
|
|
1157
|
-
"affectsGlobalScope": true
|
|
1158
|
-
},
|
|
1159
|
-
"../../../../node_modules/@types/react-dom/index.d.ts": {
|
|
1160
|
-
"version": "f02af84e409458d77baa712aaac7680635b47bd162a39367618ec744085f97be",
|
|
1161
|
-
"signature": "f02af84e409458d77baa712aaac7680635b47bd162a39367618ec744085f97be",
|
|
1162
|
-
"affectsGlobalScope": false
|
|
1163
|
-
},
|
|
1164
1144
|
"../../../../node_modules/@types/react/global.d.ts": {
|
|
1165
1145
|
"version": "bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f",
|
|
1166
1146
|
"signature": "bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f",
|
|
@@ -1176,6 +1156,11 @@
|
|
|
1176
1156
|
"signature": "e870860b52176fc9c884bbd62b6dbb4982e84a3dd33782333b952653979911eb",
|
|
1177
1157
|
"affectsGlobalScope": true
|
|
1178
1158
|
},
|
|
1159
|
+
"../../../../node_modules/@types/react-dom/index.d.ts": {
|
|
1160
|
+
"version": "e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",
|
|
1161
|
+
"signature": "e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",
|
|
1162
|
+
"affectsGlobalScope": false
|
|
1163
|
+
},
|
|
1179
1164
|
"../../../../node_modules/@types/react-router/index.d.ts": {
|
|
1180
1165
|
"version": "6c362c5d50652957065cf52f282a2bf0a456ed3713738d0ee1a9089dbb5b5fe7",
|
|
1181
1166
|
"signature": "6c362c5d50652957065cf52f282a2bf0a456ed3713738d0ee1a9089dbb5b5fe7",
|
|
@@ -2595,29 +2580,7 @@
|
|
|
2595
2580
|
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
2596
2581
|
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
2597
2582
|
"../../../../node_modules/@types/node/util.d.ts",
|
|
2598
|
-
"../../../../node_modules/@types/react
|
|
2599
|
-
],
|
|
2600
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts": [
|
|
2601
|
-
"../../../../node_modules/@types/jsdom/base.d.ts",
|
|
2602
|
-
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
2603
|
-
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
2604
|
-
"../../../../node_modules/@types/node/util.d.ts"
|
|
2605
|
-
],
|
|
2606
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts": [
|
|
2607
|
-
"../../../../node_modules/@types/jsdom/base.d.ts",
|
|
2608
|
-
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
2609
|
-
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
2610
|
-
"../../../../node_modules/@types/node/util.d.ts",
|
|
2611
|
-
"../../../../node_modules/@types/prop-types/index.d.ts",
|
|
2612
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts",
|
|
2613
|
-
"../../../../node_modules/@types/scheduler/tracing.d.ts",
|
|
2614
|
-
"../../node_modules/csstype/index.d.ts"
|
|
2615
|
-
],
|
|
2616
|
-
"../../../../node_modules/@types/react-dom/node_modules/csstype/index.d.ts": [
|
|
2617
|
-
"../../../../node_modules/@types/jsdom/base.d.ts",
|
|
2618
|
-
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
2619
|
-
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
2620
|
-
"../../../../node_modules/@types/node/util.d.ts"
|
|
2583
|
+
"../../../../node_modules/@types/react/index.d.ts"
|
|
2621
2584
|
],
|
|
2622
2585
|
"../../../../node_modules/@types/react-router-config/index.d.ts": [
|
|
2623
2586
|
"../../../../node_modules/@types/history/index.d.ts",
|
|
@@ -4943,29 +4906,7 @@
|
|
|
4943
4906
|
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
4944
4907
|
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
4945
4908
|
"../../../../node_modules/@types/node/util.d.ts",
|
|
4946
|
-
"../../../../node_modules/@types/react
|
|
4947
|
-
],
|
|
4948
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts": [
|
|
4949
|
-
"../../../../node_modules/@types/jsdom/base.d.ts",
|
|
4950
|
-
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
4951
|
-
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
4952
|
-
"../../../../node_modules/@types/node/util.d.ts"
|
|
4953
|
-
],
|
|
4954
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts": [
|
|
4955
|
-
"../../../../node_modules/@types/jsdom/base.d.ts",
|
|
4956
|
-
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
4957
|
-
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
4958
|
-
"../../../../node_modules/@types/node/util.d.ts",
|
|
4959
|
-
"../../../../node_modules/@types/prop-types/index.d.ts",
|
|
4960
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts",
|
|
4961
|
-
"../../../../node_modules/@types/scheduler/tracing.d.ts",
|
|
4962
|
-
"../../node_modules/csstype/index.d.ts"
|
|
4963
|
-
],
|
|
4964
|
-
"../../../../node_modules/@types/react-dom/node_modules/csstype/index.d.ts": [
|
|
4965
|
-
"../../../../node_modules/@types/jsdom/base.d.ts",
|
|
4966
|
-
"../../../../node_modules/@types/jsdom/index.d.ts",
|
|
4967
|
-
"../../../../node_modules/@types/jsdom/ts4.0/index.d.ts",
|
|
4968
|
-
"../../../../node_modules/@types/node/util.d.ts"
|
|
4909
|
+
"../../../../node_modules/@types/react/index.d.ts"
|
|
4969
4910
|
],
|
|
4970
4911
|
"../../../../node_modules/@types/react-router-config/index.d.ts": [
|
|
4971
4912
|
"../../../../node_modules/@types/history/index.d.ts",
|
|
@@ -5952,9 +5893,6 @@
|
|
|
5952
5893
|
"../../../../node_modules/@types/qs/index.d.ts",
|
|
5953
5894
|
"../../../../node_modules/@types/range-parser/index.d.ts",
|
|
5954
5895
|
"../../../../node_modules/@types/react-dom/index.d.ts",
|
|
5955
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts",
|
|
5956
|
-
"../../../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts",
|
|
5957
|
-
"../../../../node_modules/@types/react-dom/node_modules/csstype/index.d.ts",
|
|
5958
5896
|
"../../../../node_modules/@types/react-router-config/index.d.ts",
|
|
5959
5897
|
"../../../../node_modules/@types/react-router-dom/index.d.ts",
|
|
5960
5898
|
"../../../../node_modules/@types/react-router/index.d.ts",
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.110",
|
|
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",
|
|
@@ -357,21 +357,21 @@
|
|
|
357
357
|
},
|
|
358
358
|
"devDependencies": {
|
|
359
359
|
"@testing-library/jest-dom": "5.16.4",
|
|
360
|
-
"@testing-library/react": "
|
|
360
|
+
"@testing-library/react": "13.3.0",
|
|
361
361
|
"@testing-library/user-event": "14.4.0",
|
|
362
|
-
"@types/react": "
|
|
362
|
+
"@types/react": "18.0.17",
|
|
363
363
|
"jest": "28.1.3",
|
|
364
364
|
"jest-environment-jsdom": "28.1.3",
|
|
365
365
|
"next": "12.2.3",
|
|
366
366
|
"npm-run-all": "4.1.5",
|
|
367
|
-
"react": "
|
|
368
|
-
"react-dom": "
|
|
367
|
+
"react": "18.2.0",
|
|
368
|
+
"react-dom": "18.2.0",
|
|
369
369
|
"rimraf": "3.0.2",
|
|
370
370
|
"typescript": "4.1.6 <4.2"
|
|
371
371
|
},
|
|
372
372
|
"peerDependencies": {
|
|
373
|
-
"react": "
|
|
374
|
-
"react-dom": "
|
|
373
|
+
"react": "16 - 18",
|
|
374
|
+
"react-dom": "16 - 18"
|
|
375
375
|
},
|
|
376
|
-
"gitHead": "
|
|
376
|
+
"gitHead": "cabff650fb07a96706f95b5779e4e8f6b320189a"
|
|
377
377
|
}
|