@norges-domstoler/dds-components 0.0.0-dev-20260319072103 → 0.0.0-dev-20260319072239
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +5 -5
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +806 -806
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +713 -713
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1101,6 +1101,12 @@ declare const Box: {
|
|
|
1101
1101
|
displayName: string;
|
|
1102
1102
|
};
|
|
1103
1103
|
|
|
1104
|
+
type ContrastProps<T extends ElementType = 'div'> = BoxProps<T>;
|
|
1105
|
+
declare const Contrast: {
|
|
1106
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>): react_jsx_runtime.JSX.Element;
|
|
1107
|
+
displayName: string;
|
|
1108
|
+
};
|
|
1109
|
+
|
|
1104
1110
|
type GridProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, Omit<{
|
|
1105
1111
|
/** CSS `grid-template-columns`. Støtter standardverdier per brekkpunkt eller samme for alle skjermstørrelser.
|
|
1106
1112
|
* @default {
|
|
@@ -3831,12 +3837,6 @@ declare const ChipGroup: {
|
|
|
3831
3837
|
displayName: string;
|
|
3832
3838
|
};
|
|
3833
3839
|
|
|
3834
|
-
type ContrastProps<T extends ElementType = 'div'> = BoxProps<T>;
|
|
3835
|
-
declare const Contrast: {
|
|
3836
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>): react_jsx_runtime.JSX.Element;
|
|
3837
|
-
displayName: string;
|
|
3838
|
-
};
|
|
3839
|
-
|
|
3840
3840
|
type CookieBannerCheckboxProps = Omit<CheckboxProps, 'label' | 'children'> & {
|
|
3841
3841
|
/**Header - kort oppsummering av den spesifikke typen informasjonskapsel. */
|
|
3842
3842
|
headerText?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1101,6 +1101,12 @@ declare const Box: {
|
|
|
1101
1101
|
displayName: string;
|
|
1102
1102
|
};
|
|
1103
1103
|
|
|
1104
|
+
type ContrastProps<T extends ElementType = 'div'> = BoxProps<T>;
|
|
1105
|
+
declare const Contrast: {
|
|
1106
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>): react_jsx_runtime.JSX.Element;
|
|
1107
|
+
displayName: string;
|
|
1108
|
+
};
|
|
1109
|
+
|
|
1104
1110
|
type GridProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, Omit<{
|
|
1105
1111
|
/** CSS `grid-template-columns`. Støtter standardverdier per brekkpunkt eller samme for alle skjermstørrelser.
|
|
1106
1112
|
* @default {
|
|
@@ -3831,12 +3837,6 @@ declare const ChipGroup: {
|
|
|
3831
3837
|
displayName: string;
|
|
3832
3838
|
};
|
|
3833
3839
|
|
|
3834
|
-
type ContrastProps<T extends ElementType = 'div'> = BoxProps<T>;
|
|
3835
|
-
declare const Contrast: {
|
|
3836
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>): react_jsx_runtime.JSX.Element;
|
|
3837
|
-
displayName: string;
|
|
3838
|
-
};
|
|
3839
|
-
|
|
3840
3840
|
type CookieBannerCheckboxProps = Omit<CheckboxProps, 'label' | 'children'> & {
|
|
3841
3841
|
/**Header - kort oppsummering av den spesifikke typen informasjonskapsel. */
|
|
3842
3842
|
headerText?: string;
|