@kystverket/styrbord 1.5.9 → 1.6.0
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.
|
@@ -48,8 +48,8 @@ export declare const Disabled: {
|
|
|
48
48
|
style?: React.CSSProperties | undefined;
|
|
49
49
|
title?: string | undefined | undefined;
|
|
50
50
|
pattern?: string | undefined | undefined;
|
|
51
|
-
'data-color'?: import("@digdir/designsystemet-
|
|
52
|
-
'data-size'?: import("@digdir/designsystemet-
|
|
51
|
+
'data-color'?: import("@digdir/designsystemet-react/colors").Color | undefined;
|
|
52
|
+
'data-size'?: import("@digdir/designsystemet-react").Size | undefined;
|
|
53
53
|
defaultChecked?: boolean | undefined | undefined;
|
|
54
54
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
55
55
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
@@ -343,6 +343,7 @@ export declare const Disabled: {
|
|
|
343
343
|
multiple?: boolean | undefined | undefined;
|
|
344
344
|
placeholder?: string | undefined | undefined;
|
|
345
345
|
readOnly?: boolean | undefined;
|
|
346
|
+
'data-indeterminate'?: boolean | undefined;
|
|
346
347
|
'aria-label'?: string | undefined;
|
|
347
348
|
label?: undefined;
|
|
348
349
|
description?: React.ReactNode;
|
|
@@ -363,8 +364,8 @@ export declare const Disabled: {
|
|
|
363
364
|
style?: React.CSSProperties | undefined;
|
|
364
365
|
title?: string | undefined | undefined;
|
|
365
366
|
pattern?: string | undefined | undefined;
|
|
366
|
-
'data-color'?: import("@digdir/designsystemet-
|
|
367
|
-
'data-size'?: import("@digdir/designsystemet-
|
|
367
|
+
'data-color'?: import("@digdir/designsystemet-react/colors").Color | undefined;
|
|
368
|
+
'data-size'?: import("@digdir/designsystemet-react").Size | undefined;
|
|
368
369
|
defaultChecked?: boolean | undefined | undefined;
|
|
369
370
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
370
371
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
@@ -658,6 +659,7 @@ export declare const Disabled: {
|
|
|
658
659
|
multiple?: boolean | undefined | undefined;
|
|
659
660
|
placeholder?: string | undefined | undefined;
|
|
660
661
|
readOnly?: boolean | undefined;
|
|
662
|
+
'data-indeterminate'?: boolean | undefined;
|
|
661
663
|
'aria-label'?: undefined;
|
|
662
664
|
label?: React.ReactNode;
|
|
663
665
|
description?: React.ReactNode;
|
|
@@ -678,8 +680,8 @@ export declare const Disabled: {
|
|
|
678
680
|
style?: React.CSSProperties | undefined;
|
|
679
681
|
title?: string | undefined | undefined;
|
|
680
682
|
pattern?: string | undefined | undefined;
|
|
681
|
-
'data-color'?: import("@digdir/designsystemet-
|
|
682
|
-
'data-size'?: import("@digdir/designsystemet-
|
|
683
|
+
'data-color'?: import("@digdir/designsystemet-react/colors").Color | undefined;
|
|
684
|
+
'data-size'?: import("@digdir/designsystemet-react").Size | undefined;
|
|
683
685
|
defaultChecked?: boolean | undefined | undefined;
|
|
684
686
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
685
687
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
@@ -973,6 +975,7 @@ export declare const Disabled: {
|
|
|
973
975
|
multiple?: boolean | undefined | undefined;
|
|
974
976
|
placeholder?: string | undefined | undefined;
|
|
975
977
|
readOnly?: boolean | undefined;
|
|
978
|
+
'data-indeterminate'?: boolean | undefined;
|
|
976
979
|
'aria-label'?: undefined;
|
|
977
980
|
label?: undefined;
|
|
978
981
|
description?: React.ReactNode;
|
|
@@ -4,12 +4,12 @@ export type TabsProps = DsTabsProps & {
|
|
|
4
4
|
};
|
|
5
5
|
declare const Tabs: {
|
|
6
6
|
({ underlined, className, ...props }: TabsProps): React.JSX.Element;
|
|
7
|
-
List: React.ForwardRefExoticComponent<import("@digdir/designsystemet-react").TabsListProps & React.RefAttributes<
|
|
7
|
+
List: React.ForwardRefExoticComponent<import("@digdir/designsystemet-react").TabsListProps & React.RefAttributes<import("@digdir/designsystemet-web").DSTabListElement>>;
|
|
8
8
|
Tab: React.ForwardRefExoticComponent<{
|
|
9
9
|
value: string;
|
|
10
|
-
} & Omit<React.HTMLAttributes<
|
|
10
|
+
} & Omit<React.HTMLAttributes<import("@digdir/designsystemet-web").DSTabElement>, "value"> & React.RefAttributes<import("@digdir/designsystemet-web").DSTabElement>>;
|
|
11
11
|
Panel: React.ForwardRefExoticComponent<{
|
|
12
12
|
value: string;
|
|
13
|
-
} & Omit<React.HTMLAttributes<
|
|
13
|
+
} & Omit<React.HTMLAttributes<import("@digdir/designsystemet-web").DSTabPanelElement>, "value"> & React.RefAttributes<import("@digdir/designsystemet-web").DSTabPanelElement>>;
|
|
14
14
|
};
|
|
15
15
|
export default Tabs;
|