@norges-domstoler/dds-components 0.0.0-dev-20251009133331 → 0.0.0-dev-20251010090947
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 +11 -11
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +39 -41
- package/dist/index.d.ts +39 -41
- package/dist/index.js +91 -35
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +117 -61
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.css
CHANGED
|
@@ -184,13 +184,12 @@
|
|
|
184
184
|
margin-top: 0;
|
|
185
185
|
margin-bottom: var(--dds-font-body-medium-paragraph-spacing);
|
|
186
186
|
}
|
|
187
|
-
:where(.typographyStyles_a--external)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
187
|
+
:where(.typographyStyles_a--external) > svg,
|
|
188
|
+
.typographyStyles_a__icon {
|
|
189
|
+
display: inline;
|
|
190
|
+
margin: 0.1em 0.1em -0.1em;
|
|
191
|
+
transform: translateY(0.05em);
|
|
192
|
+
vertical-align: baseline;
|
|
194
193
|
}
|
|
195
194
|
.typographyStyles_a--visited:visited {
|
|
196
195
|
color: var(--dds-color-text-link-visited);
|
|
@@ -1602,10 +1601,7 @@
|
|
|
1602
1601
|
|
|
1603
1602
|
/* src/components/BackLink/BackLink.module.css */
|
|
1604
1603
|
.BackLink_icon {
|
|
1605
|
-
|
|
1606
|
-
margin: 0.1em 0.25em -0.1em 0.1em;
|
|
1607
|
-
transform: translateY(0.05em);
|
|
1608
|
-
vertical-align: baseline;
|
|
1604
|
+
margin-right: var(--dds-spacing-x0-25);
|
|
1609
1605
|
}
|
|
1610
1606
|
|
|
1611
1607
|
/* src/components/Breadcrumbs/Breadcrumbs.module.css */
|
|
@@ -2922,6 +2918,10 @@ input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
|
2922
2918
|
/* src/components/InlineButton/InlineButton.module.css */
|
|
2923
2919
|
.InlineButton_button {
|
|
2924
2920
|
display: inline;
|
|
2921
|
+
vertical-align: middle;
|
|
2922
|
+
&:focus-visible {
|
|
2923
|
+
z-index: var(--dds-zindex-absolute-element);
|
|
2924
|
+
}
|
|
2925
2925
|
}
|
|
2926
2926
|
|
|
2927
2927
|
/* src/components/InlineEdit/InlineEdit.module.css */
|