@norges-domstoler/dds-components 0.0.0-dev-20240730132129 → 0.0.0-dev-20240802074139
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 +224 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +12 -12
- package/dist/index.d.ts +12 -12
- package/dist/index.js +203 -63
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +218 -78
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.css
CHANGED
|
@@ -847,6 +847,55 @@
|
|
|
847
847
|
align-items: center;
|
|
848
848
|
gap: var(--dds-spacing-x0-5);
|
|
849
849
|
}
|
|
850
|
+
.Breadcrumbs_list--large-screen-hide-xs {
|
|
851
|
+
@media only screen and (max-width: 600px) {
|
|
852
|
+
display: none;
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
.Breadcrumbs_list--large-screen-hide-sm {
|
|
856
|
+
@media only screen and (max-width: 960px) {
|
|
857
|
+
display: none;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
.Breadcrumbs_list--large-screen-hide-md {
|
|
861
|
+
@media only screen and (max-width: 1280px) {
|
|
862
|
+
display: none;
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
.Breadcrumbs_list--large-screen-hide-lg {
|
|
866
|
+
@media only screen and (max-width: 1920px) {
|
|
867
|
+
display: none;
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
.Breadcrumbs_list--large-screen-hide-xl {
|
|
871
|
+
display: none;
|
|
872
|
+
}
|
|
873
|
+
.Breadcrumbs_list--small-screen {
|
|
874
|
+
display: none;
|
|
875
|
+
}
|
|
876
|
+
.Breadcrumbs_list--small-screen-show-xs {
|
|
877
|
+
@media only screen and (max-width: 600px) {
|
|
878
|
+
display: flex;
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
.Breadcrumbs_list--small-screen-show-sm {
|
|
882
|
+
@media only screen and (max-width: 960px) {
|
|
883
|
+
display: flex;
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
.Breadcrumbs_list--small-screen-show-md {
|
|
887
|
+
@media only screen and (max-width: 1280px) {
|
|
888
|
+
display: flex;
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
.Breadcrumbs_list--small-screen-show-lg {
|
|
892
|
+
@media only screen and (max-width: 1920px) {
|
|
893
|
+
display: flex;
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
.Breadcrumbs_list--small-screen-show-xl {
|
|
897
|
+
display: flex;
|
|
898
|
+
}
|
|
850
899
|
.Breadcrumbs_list-item {
|
|
851
900
|
align-items: center;
|
|
852
901
|
display: flex;
|
|
@@ -2140,7 +2189,35 @@
|
|
|
2140
2189
|
margin-left: auto;
|
|
2141
2190
|
}
|
|
2142
2191
|
}
|
|
2143
|
-
.InternalHeader_bar--small-screen {
|
|
2192
|
+
.InternalHeader_bar--small-screen-xs {
|
|
2193
|
+
@media only screen and (max-width: 600px) {
|
|
2194
|
+
gap: var(--dds-spacing-x1);
|
|
2195
|
+
padding-inline-start: var(--dds-spacing-x1);
|
|
2196
|
+
padding-inline-end: var(--dds-spacing-x0-5);
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2199
|
+
.InternalHeader_bar--small-screen-sm {
|
|
2200
|
+
@media only screen and (max-width: 960px) {
|
|
2201
|
+
gap: var(--dds-spacing-x1);
|
|
2202
|
+
padding-inline-start: var(--dds-spacing-x1);
|
|
2203
|
+
padding-inline-end: var(--dds-spacing-x0-5);
|
|
2204
|
+
}
|
|
2205
|
+
}
|
|
2206
|
+
.InternalHeader_bar--small-screen-md {
|
|
2207
|
+
@media only screen and (max-width: 1280px) {
|
|
2208
|
+
gap: var(--dds-spacing-x1);
|
|
2209
|
+
padding-inline-start: var(--dds-spacing-x1);
|
|
2210
|
+
padding-inline-end: var(--dds-spacing-x0-5);
|
|
2211
|
+
}
|
|
2212
|
+
}
|
|
2213
|
+
.InternalHeader_bar--small-screen-lg {
|
|
2214
|
+
@media only screen and (max-width: 1920px) {
|
|
2215
|
+
gap: var(--dds-spacing-x1);
|
|
2216
|
+
padding-inline-start: var(--dds-spacing-x1);
|
|
2217
|
+
padding-inline-end: var(--dds-spacing-x0-5);
|
|
2218
|
+
}
|
|
2219
|
+
}
|
|
2220
|
+
.InternalHeader_bar--small-screen-xl {
|
|
2144
2221
|
gap: var(--dds-spacing-x1);
|
|
2145
2222
|
padding-inline-start: var(--dds-spacing-x1);
|
|
2146
2223
|
padding-inline-end: var(--dds-spacing-x0-5);
|
|
@@ -2168,6 +2245,78 @@
|
|
|
2168
2245
|
align-items: initial;
|
|
2169
2246
|
flex-direction: column;
|
|
2170
2247
|
}
|
|
2248
|
+
.InternalHeader_nav-list--small-screen-xs,
|
|
2249
|
+
.InternalHeader_context-menu-button-without-nav-xs {
|
|
2250
|
+
@media only screen and (max-width: 600px) {
|
|
2251
|
+
display: none;
|
|
2252
|
+
}
|
|
2253
|
+
}
|
|
2254
|
+
.InternalHeader_nav-list--small-screen-sm,
|
|
2255
|
+
.InternalHeader_context-menu-button-without-nav-sm {
|
|
2256
|
+
@media only screen and (max-width: 960px) {
|
|
2257
|
+
display: none;
|
|
2258
|
+
}
|
|
2259
|
+
}
|
|
2260
|
+
.InternalHeader_nav-list--small-screen-md,
|
|
2261
|
+
.InternalHeader_context-menu-button-without-nav-md {
|
|
2262
|
+
@media only screen and (max-width: 1280px) {
|
|
2263
|
+
display: none;
|
|
2264
|
+
}
|
|
2265
|
+
}
|
|
2266
|
+
.InternalHeader_nav-list--small-screen-lg,
|
|
2267
|
+
.InternalHeader_context-menu-button-without-nav-lg {
|
|
2268
|
+
@media only screen and (max-width: 1920px) {
|
|
2269
|
+
display: none;
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
.InternalHeader_nav-list--small-screen-xl,
|
|
2273
|
+
.InternalHeader_context-menu-button-without-nav-xl {
|
|
2274
|
+
display: none;
|
|
2275
|
+
}
|
|
2276
|
+
.InternalHeader_nav--in-menu--small-screen,
|
|
2277
|
+
.InternalHeader_context-menu-group--small-screen-only,
|
|
2278
|
+
.InternalHeader_context-menu-button-with-nav,
|
|
2279
|
+
.InternalHeader_menu-divider {
|
|
2280
|
+
display: none;
|
|
2281
|
+
}
|
|
2282
|
+
.InternalHeader_nav--in-menu--small-screen-xs,
|
|
2283
|
+
.InternalHeader_context-menu-group--small-screen-only-xs,
|
|
2284
|
+
.InternalHeader_context-menu-button-with-nav-xs,
|
|
2285
|
+
.InternalHeader_menu-divider--small-screen-xs {
|
|
2286
|
+
@media only screen and (max-width: 600px) {
|
|
2287
|
+
display: block;
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
.InternalHeader_nav--in-menu--small-screen-sm,
|
|
2291
|
+
.InternalHeader_context-menu-group--small-screen-only-sm,
|
|
2292
|
+
.InternalHeader_context-menu-button-with-nav-sm,
|
|
2293
|
+
.InternalHeader_menu-divider--small-screen-sm {
|
|
2294
|
+
@media only screen and (max-width: 960px) {
|
|
2295
|
+
display: block;
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2298
|
+
.InternalHeader_nav--in-menu--small-screen-md,
|
|
2299
|
+
.InternalHeader_context-menu-group--small-screen-only-md,
|
|
2300
|
+
.InternalHeader_context-menu-button-with-nav-md,
|
|
2301
|
+
.InternalHeader_menu-divider--small-screen-md {
|
|
2302
|
+
@media only screen and (max-width: 1280px) {
|
|
2303
|
+
display: block;
|
|
2304
|
+
}
|
|
2305
|
+
}
|
|
2306
|
+
.InternalHeader_nav--in-menu--small-screen-lg,
|
|
2307
|
+
.InternalHeader_context-menu-group--small-screen-only-lg,
|
|
2308
|
+
.InternalHeader_context-menu-button-with-nav-lg,
|
|
2309
|
+
.InternalHeader_menu-divider--small-screen-lg {
|
|
2310
|
+
@media only screen and (max-width: 1920px) {
|
|
2311
|
+
display: block;
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2314
|
+
.InternalHeader_nav--in-menu--small-screen-xl,
|
|
2315
|
+
.InternalHeader_context-menu-group--small-screen-only-xl,
|
|
2316
|
+
.InternalHeader_context-menu-button-with-nav-xl,
|
|
2317
|
+
.InternalHeader_menu-divider--small-screen-xl {
|
|
2318
|
+
display: block;
|
|
2319
|
+
}
|
|
2171
2320
|
.InternalHeader_nav-list__item {
|
|
2172
2321
|
display: flex;
|
|
2173
2322
|
}
|
|
@@ -2384,7 +2533,31 @@
|
|
|
2384
2533
|
justify-content: space-between;
|
|
2385
2534
|
flex-wrap: wrap;
|
|
2386
2535
|
}
|
|
2387
|
-
.Pagination_container--small-screen {
|
|
2536
|
+
.Pagination_container--small-screen-xs {
|
|
2537
|
+
@media only screen and (max-width: 600px) {
|
|
2538
|
+
flex-direction: column;
|
|
2539
|
+
align-items: center;
|
|
2540
|
+
}
|
|
2541
|
+
}
|
|
2542
|
+
.Pagination_container--small-screen-sm {
|
|
2543
|
+
@media only screen and (max-width: 960px) {
|
|
2544
|
+
flex-direction: column;
|
|
2545
|
+
align-items: center;
|
|
2546
|
+
}
|
|
2547
|
+
}
|
|
2548
|
+
.Pagination_container--small-screen-md {
|
|
2549
|
+
@media only screen and (max-width: 1280px) {
|
|
2550
|
+
flex-direction: column;
|
|
2551
|
+
align-items: center;
|
|
2552
|
+
}
|
|
2553
|
+
}
|
|
2554
|
+
.Pagination_container--small-screen-lg {
|
|
2555
|
+
@media only screen and (max-width: 1920px) {
|
|
2556
|
+
flex-direction: column;
|
|
2557
|
+
align-items: center;
|
|
2558
|
+
}
|
|
2559
|
+
}
|
|
2560
|
+
.Pagination_container--small-screen-xl {
|
|
2388
2561
|
flex-direction: column;
|
|
2389
2562
|
align-items: center;
|
|
2390
2563
|
}
|
|
@@ -2392,6 +2565,55 @@
|
|
|
2392
2565
|
display: flex;
|
|
2393
2566
|
align-items: center;
|
|
2394
2567
|
}
|
|
2568
|
+
.Pagination_nav--large-screen-hide-xs {
|
|
2569
|
+
@media only screen and (max-width: 600px) {
|
|
2570
|
+
display: none;
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2573
|
+
.Pagination_nav--large-screen-hide-sm {
|
|
2574
|
+
@media only screen and (max-width: 960px) {
|
|
2575
|
+
display: none;
|
|
2576
|
+
}
|
|
2577
|
+
}
|
|
2578
|
+
.Pagination_nav--large-screen-hide-md {
|
|
2579
|
+
@media only screen and (max-width: 1280px) {
|
|
2580
|
+
display: none;
|
|
2581
|
+
}
|
|
2582
|
+
}
|
|
2583
|
+
.Pagination_nav--large-screen-hide-lg {
|
|
2584
|
+
@media only screen and (max-width: 1920px) {
|
|
2585
|
+
display: none;
|
|
2586
|
+
}
|
|
2587
|
+
}
|
|
2588
|
+
.Pagination_nav--large-screen-hide-xl {
|
|
2589
|
+
display: none;
|
|
2590
|
+
}
|
|
2591
|
+
.Pagination_nav--small-screen {
|
|
2592
|
+
display: none;
|
|
2593
|
+
}
|
|
2594
|
+
.Pagination_nav--small-screen-show-xs {
|
|
2595
|
+
@media only screen and (max-width: 600px) {
|
|
2596
|
+
display: block;
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
.Pagination_nav--small-screen-show-sm {
|
|
2600
|
+
@media only screen and (max-width: 960px) {
|
|
2601
|
+
display: block;
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
.Pagination_nav--small-screen-show-md {
|
|
2605
|
+
@media only screen and (max-width: 1280px) {
|
|
2606
|
+
display: block;
|
|
2607
|
+
}
|
|
2608
|
+
}
|
|
2609
|
+
.Pagination_nav--small-screen-show-lg {
|
|
2610
|
+
@media only screen and (max-width: 1920px) {
|
|
2611
|
+
display: block;
|
|
2612
|
+
}
|
|
2613
|
+
}
|
|
2614
|
+
.Pagination_nav--small-screen-show-xl {
|
|
2615
|
+
display: block;
|
|
2616
|
+
}
|
|
2395
2617
|
.Pagination_list {
|
|
2396
2618
|
display: grid;
|
|
2397
2619
|
grid-auto-flow: column;
|