@prokodo/ui 0.0.55 → 0.1.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.
- package/README.md +116 -7
- package/dist/components/image/Image.client.js +39 -0
- package/dist/components/image/Image.js +8 -30
- package/dist/components/image/Image.lazy.js +16 -0
- package/dist/components/image/Image.server.js +88 -0
- package/dist/components/link/Link.client.js +4 -1
- package/dist/components/link/Link.server.js +14 -2
- package/dist/constants/project.js +1 -1
- package/dist/helpers/createIsland.js +11 -20
- package/dist/helpers/runtime.client.js +15 -0
- package/dist/index.js +4 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/components/image/Image.client.d.ts +4 -0
- package/dist/types/components/image/Image.d.ts +3 -2
- package/dist/types/components/image/Image.lazy.d.ts +5 -0
- package/dist/types/components/image/Image.server.d.ts +4 -0
- package/dist/types/components/link/Link.server.d.ts +1 -1
- package/dist/types/helpers/runtime.client.d.ts +15 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/ui.css +50 -130
- package/package.json +37 -27
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { type ComponentType, type ReactNode } from "react";
|
|
2
|
+
type AnyProps = Record<string, unknown>;
|
|
3
|
+
export type LinkLike = ComponentType<AnyProps>;
|
|
4
|
+
export type ImageLike = ComponentType<AnyProps>;
|
|
5
|
+
export type UIRuntimeCtx = {
|
|
6
|
+
linkComponent?: LinkLike;
|
|
7
|
+
imageComponent?: ImageLike;
|
|
8
|
+
};
|
|
9
|
+
export type UIRuntimeProviderProps = {
|
|
10
|
+
value: UIRuntimeCtx;
|
|
11
|
+
children: ReactNode;
|
|
12
|
+
};
|
|
13
|
+
export declare const UIRuntimeProvider: ({ value, children, }: UIRuntimeProviderProps) => React.JSX.Element;
|
|
14
|
+
export declare const useUIRuntime: () => UIRuntimeCtx;
|
|
15
|
+
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -42,3 +42,4 @@ export { Stepper } from "./components/stepper";
|
|
|
42
42
|
export { Switch } from "./components/switch";
|
|
43
43
|
export { Table } from "./components/table";
|
|
44
44
|
export { Teaser } from "./components/teaser";
|
|
45
|
+
export { UIRuntimeProvider, useUIRuntime } from "./helpers/runtime.client";
|
package/dist/ui.css
CHANGED
|
@@ -380,6 +380,8 @@
|
|
|
380
380
|
.prokodo-Headline {
|
|
381
381
|
margin: 0;
|
|
382
382
|
/* Basale Farb-Varianten (ohne Gradients) */
|
|
383
|
+
/* Größen */
|
|
384
|
+
/* Alignment */
|
|
383
385
|
}
|
|
384
386
|
.prokodo-Headline--inherit {
|
|
385
387
|
color: var(--color-grey-700);
|
|
@@ -408,9 +410,6 @@
|
|
|
408
410
|
.prokodo-Headline--black {
|
|
409
411
|
color: var(--color-black);
|
|
410
412
|
}
|
|
411
|
-
.prokodo-Headline {
|
|
412
|
-
/* Größen */
|
|
413
|
-
}
|
|
414
413
|
.prokodo-Headline--xs {
|
|
415
414
|
font-weight: 400;
|
|
416
415
|
font-size: 1rem;
|
|
@@ -517,9 +516,6 @@
|
|
|
517
516
|
font-size: 2.75rem;
|
|
518
517
|
}
|
|
519
518
|
}
|
|
520
|
-
.prokodo-Headline {
|
|
521
|
-
/* Alignment */
|
|
522
|
-
}
|
|
523
519
|
.prokodo-Headline--center {
|
|
524
520
|
text-align: center;
|
|
525
521
|
justify-content: center;
|
|
@@ -2147,6 +2143,12 @@ html[data-theme=dark] .prokodo-Button--icon-only {
|
|
|
2147
2143
|
color: var(--color-white);
|
|
2148
2144
|
background-color: var(--color-white);
|
|
2149
2145
|
border-radius: 2rem;
|
|
2146
|
+
/* keep the gradient *class hooks*, but DO NOT include animated keyframes here */
|
|
2147
|
+
/* IMPORTANT: no animations in base
|
|
2148
|
+
- remove fadeInAnimation()
|
|
2149
|
+
- remove local @keyframes
|
|
2150
|
+
- keep hooks only; effects sheet will add behavior
|
|
2151
|
+
*/
|
|
2150
2152
|
}
|
|
2151
2153
|
html[data-theme=dark] .prokodo-Card {
|
|
2152
2154
|
background-color: var(--color-grey-200);
|
|
@@ -2201,9 +2203,6 @@ html[data-theme=dark] .prokodo-Card__background {
|
|
|
2201
2203
|
outline-offset: 4px;
|
|
2202
2204
|
border-radius: 1.5rem;
|
|
2203
2205
|
}
|
|
2204
|
-
.prokodo-Card {
|
|
2205
|
-
/* keep the gradient *class hooks*, but DO NOT include animated keyframes here */
|
|
2206
|
-
}
|
|
2207
2206
|
.prokodo-Card__gradiant {
|
|
2208
2207
|
position: absolute;
|
|
2209
2208
|
width: 100%;
|
|
@@ -2238,13 +2237,6 @@ html[data-theme=dark] .prokodo-Card__background {
|
|
|
2238
2237
|
.prokodo-Card--has-shadow {
|
|
2239
2238
|
box-shadow: var(--elevation-1);
|
|
2240
2239
|
}
|
|
2241
|
-
.prokodo-Card {
|
|
2242
|
-
/* IMPORTANT: no animations in base
|
|
2243
|
-
- remove fadeInAnimation()
|
|
2244
|
-
- remove local @keyframes
|
|
2245
|
-
- keep hooks only; effects sheet will add behavior
|
|
2246
|
-
*/
|
|
2247
|
-
}
|
|
2248
2240
|
.prokodo-Card--is-clickable {
|
|
2249
2241
|
cursor: pointer;
|
|
2250
2242
|
}
|
|
@@ -2388,6 +2380,8 @@ html[data-theme=dark] .prokodo-Card__background {
|
|
|
2388
2380
|
position: relative;
|
|
2389
2381
|
overflow: hidden;
|
|
2390
2382
|
/* shimmer carrier (animation is attached in modifier) */
|
|
2383
|
+
/* variants */
|
|
2384
|
+
/* animation hooks (keyframes live in effects sheet) */
|
|
2391
2385
|
}
|
|
2392
2386
|
.prokodo-Skeleton::after {
|
|
2393
2387
|
content: "";
|
|
@@ -2397,9 +2391,6 @@ html[data-theme=dark] .prokodo-Card__background {
|
|
|
2397
2391
|
left: -100%;
|
|
2398
2392
|
background: linear-gradient(90deg, transparent, rgba(var(--color-white), 0.6), transparent);
|
|
2399
2393
|
}
|
|
2400
|
-
.prokodo-Skeleton {
|
|
2401
|
-
/* variants */
|
|
2402
|
-
}
|
|
2403
2394
|
.prokodo-Skeleton--text {
|
|
2404
2395
|
height: 1em;
|
|
2405
2396
|
border-radius: 4px;
|
|
@@ -2410,9 +2401,6 @@ html[data-theme=dark] .prokodo-Card__background {
|
|
|
2410
2401
|
.prokodo-Skeleton--circular {
|
|
2411
2402
|
border-radius: 50%;
|
|
2412
2403
|
}
|
|
2413
|
-
.prokodo-Skeleton {
|
|
2414
|
-
/* animation hooks (keyframes live in effects sheet) */
|
|
2415
|
-
}
|
|
2416
2404
|
.prokodo-Skeleton--pulse {
|
|
2417
2405
|
animation: skeleton-pulse 1.5s ease-in-out infinite;
|
|
2418
2406
|
}
|
|
@@ -2618,7 +2606,7 @@ html[data-theme=dark] .prokodo-Card__background {
|
|
|
2618
2606
|
padding: 0.25rem;
|
|
2619
2607
|
}
|
|
2620
2608
|
.prokodo-Carousel__dots {
|
|
2621
|
-
display:
|
|
2609
|
+
display: flex;
|
|
2622
2610
|
margin: 2rem auto 0 auto;
|
|
2623
2611
|
text-align: center;
|
|
2624
2612
|
}
|
|
@@ -3593,6 +3581,7 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3593
3581
|
pointer-events: none;
|
|
3594
3582
|
transition: opacity 0.3s ease, transform 0.3s ease;
|
|
3595
3583
|
left: -99999px;
|
|
3584
|
+
/* Full width modifier */
|
|
3596
3585
|
}
|
|
3597
3586
|
.prokodo-Dialog {
|
|
3598
3587
|
position: fixed;
|
|
@@ -3631,13 +3620,11 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3631
3620
|
|
|
3632
3621
|
$index: $index + 1;
|
|
3633
3622
|
} */
|
|
3623
|
+
/* Scroll behavior styles */
|
|
3634
3624
|
}
|
|
3635
3625
|
.prokodo-Dialog__container:focus-visible {
|
|
3636
3626
|
outline: 0;
|
|
3637
3627
|
}
|
|
3638
|
-
.prokodo-Dialog__container {
|
|
3639
|
-
/* Scroll behavior styles */
|
|
3640
|
-
}
|
|
3641
3628
|
.prokodo-Dialog__container--scroll-paper {
|
|
3642
3629
|
height: 100%;
|
|
3643
3630
|
max-height: calc(100vh - 3rem);
|
|
@@ -3760,9 +3747,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3760
3747
|
transition: none;
|
|
3761
3748
|
}
|
|
3762
3749
|
}
|
|
3763
|
-
.prokodo-Dialog {
|
|
3764
|
-
/* Full width modifier */
|
|
3765
|
-
}
|
|
3766
3750
|
.prokodo-Dialog--fullScreen {
|
|
3767
3751
|
max-width: none;
|
|
3768
3752
|
width: 100%;
|
|
@@ -3895,6 +3879,9 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3895
3879
|
*/
|
|
3896
3880
|
.prokodo-Drawer {
|
|
3897
3881
|
/* Backdrop (unchanged, fades in) */
|
|
3882
|
+
/* Container (slide + fade via transitions) */
|
|
3883
|
+
/* Header */
|
|
3884
|
+
/* Content */
|
|
3898
3885
|
}
|
|
3899
3886
|
.prokodo-Drawer__backdrop {
|
|
3900
3887
|
position: fixed;
|
|
@@ -3914,9 +3901,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3914
3901
|
transition: none !important;
|
|
3915
3902
|
}
|
|
3916
3903
|
}
|
|
3917
|
-
.prokodo-Drawer {
|
|
3918
|
-
/* Container (slide + fade via transitions) */
|
|
3919
|
-
}
|
|
3920
3904
|
.prokodo-Drawer__container {
|
|
3921
3905
|
position: fixed;
|
|
3922
3906
|
background-color: var(--color-white);
|
|
@@ -3930,6 +3914,10 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3930
3914
|
opacity: 0;
|
|
3931
3915
|
will-change: transform, opacity;
|
|
3932
3916
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
3917
|
+
/* Anchor: left */
|
|
3918
|
+
/* Anchor: right */
|
|
3919
|
+
/* Anchor: top */
|
|
3920
|
+
/* Anchor: bottom */
|
|
3933
3921
|
}
|
|
3934
3922
|
.prokodo-Drawer__container--open {
|
|
3935
3923
|
pointer-events: auto;
|
|
@@ -3943,9 +3931,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3943
3931
|
bottom: 0 !important;
|
|
3944
3932
|
right: 0 !important;
|
|
3945
3933
|
}
|
|
3946
|
-
.prokodo-Drawer__container {
|
|
3947
|
-
/* Anchor: left */
|
|
3948
|
-
}
|
|
3949
3934
|
.prokodo-Drawer__container--anchor-left {
|
|
3950
3935
|
top: 0;
|
|
3951
3936
|
left: 0;
|
|
@@ -3956,9 +3941,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3956
3941
|
.prokodo-Drawer__container--anchor-left--open {
|
|
3957
3942
|
transform: translateX(0);
|
|
3958
3943
|
}
|
|
3959
|
-
.prokodo-Drawer__container {
|
|
3960
|
-
/* Anchor: right */
|
|
3961
|
-
}
|
|
3962
3944
|
.prokodo-Drawer__container--anchor-right {
|
|
3963
3945
|
top: 0;
|
|
3964
3946
|
right: 0;
|
|
@@ -3969,9 +3951,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3969
3951
|
.prokodo-Drawer__container--anchor-right--open {
|
|
3970
3952
|
transform: translateX(0);
|
|
3971
3953
|
}
|
|
3972
|
-
.prokodo-Drawer__container {
|
|
3973
|
-
/* Anchor: top */
|
|
3974
|
-
}
|
|
3975
3954
|
.prokodo-Drawer__container--anchor-top {
|
|
3976
3955
|
top: 0;
|
|
3977
3956
|
left: 0;
|
|
@@ -3982,9 +3961,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
3982
3961
|
.prokodo-Drawer__container--anchor-top--open {
|
|
3983
3962
|
transform: translateY(0);
|
|
3984
3963
|
}
|
|
3985
|
-
.prokodo-Drawer__container {
|
|
3986
|
-
/* Anchor: bottom */
|
|
3987
|
-
}
|
|
3988
3964
|
.prokodo-Drawer__container--anchor-bottom {
|
|
3989
3965
|
bottom: 0;
|
|
3990
3966
|
left: 0;
|
|
@@ -4002,9 +3978,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
4002
3978
|
opacity: 1 !important;
|
|
4003
3979
|
}
|
|
4004
3980
|
}
|
|
4005
|
-
.prokodo-Drawer {
|
|
4006
|
-
/* Header */
|
|
4007
|
-
}
|
|
4008
3981
|
.prokodo-Drawer__header {
|
|
4009
3982
|
display: flex;
|
|
4010
3983
|
align-items: center;
|
|
@@ -4012,9 +3985,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
4012
3985
|
padding: 1rem;
|
|
4013
3986
|
border-bottom: 1px solid var(--color-grey-200);
|
|
4014
3987
|
}
|
|
4015
|
-
.prokodo-Drawer {
|
|
4016
|
-
/* Content */
|
|
4017
|
-
}
|
|
4018
3988
|
.prokodo-Drawer__content {
|
|
4019
3989
|
padding: 1rem;
|
|
4020
3990
|
max-height: calc(100% - 7rem);
|
|
@@ -4150,6 +4120,7 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
4150
4120
|
.prokodo-DynamicList {
|
|
4151
4121
|
border: none;
|
|
4152
4122
|
padding: 0;
|
|
4123
|
+
/* ───────────────── helper / error text */
|
|
4153
4124
|
}
|
|
4154
4125
|
.prokodo-DynamicList__label {
|
|
4155
4126
|
margin-bottom: 0.75rem;
|
|
@@ -4181,9 +4152,6 @@ html[data-theme=dark] .prokodo-Label__text {
|
|
|
4181
4152
|
.prokodo-DynamicList__delete__button--is-multi {
|
|
4182
4153
|
margin-top: 0.5rem;
|
|
4183
4154
|
}
|
|
4184
|
-
.prokodo-DynamicList {
|
|
4185
|
-
/* ───────────────── helper / error text */
|
|
4186
|
-
}
|
|
4187
4155
|
.prokodo-DynamicList__helperText {
|
|
4188
4156
|
padding-left: 1.5rem;
|
|
4189
4157
|
padding-top: 0.75rem;
|
|
@@ -4369,6 +4337,12 @@ html[data-theme=dark] .prokodo-DynamicList__helperText {
|
|
|
4369
4337
|
}
|
|
4370
4338
|
.prokodo-Select {
|
|
4371
4339
|
position: relative;
|
|
4340
|
+
/* ───────────────── field (container for button + listbox) */
|
|
4341
|
+
/* ───────────────── toggle button */
|
|
4342
|
+
/* ───────────────── listbox (popup) */
|
|
4343
|
+
/* ───────────────── option item */
|
|
4344
|
+
/* ───────────────── checkbox for multi-select */
|
|
4345
|
+
/* ───────────────── helper / error text */
|
|
4372
4346
|
}
|
|
4373
4347
|
.prokodo-Select--fullWidth {
|
|
4374
4348
|
width: 100%;
|
|
@@ -4397,9 +4371,6 @@ html[data-theme=dark] .prokodo-DynamicList__helperText {
|
|
|
4397
4371
|
overflow: hidden;
|
|
4398
4372
|
}
|
|
4399
4373
|
}
|
|
4400
|
-
.prokodo-Select {
|
|
4401
|
-
/* ───────────────── field (container for button + listbox) */
|
|
4402
|
-
}
|
|
4403
4374
|
.prokodo-Select__field {
|
|
4404
4375
|
position: relative;
|
|
4405
4376
|
box-shadow: var(--elevation-1);
|
|
@@ -4409,9 +4380,6 @@ html[data-theme=dark] .prokodo-DynamicList__helperText {
|
|
|
4409
4380
|
.prokodo-Select__field--expanded {
|
|
4410
4381
|
box-shadow: none;
|
|
4411
4382
|
}
|
|
4412
|
-
.prokodo-Select {
|
|
4413
|
-
/* ───────────────── toggle button */
|
|
4414
|
-
}
|
|
4415
4383
|
.prokodo-Select__button {
|
|
4416
4384
|
box-sizing: border-box;
|
|
4417
4385
|
width: calc(100% - 0.25rem + 4px);
|
|
@@ -4428,6 +4396,10 @@ html[data-theme=dark] .prokodo-DynamicList__helperText {
|
|
|
4428
4396
|
-webkit-mask-composite: source-over;
|
|
4429
4397
|
mask-composite: add;
|
|
4430
4398
|
/* hover / focus */
|
|
4399
|
+
/* open state — JS toggles .Select__button--expanded **and**
|
|
4400
|
+
.Select__field--expanded plus aria-expanded="true" */
|
|
4401
|
+
/* caret / icon (if you still have one) */
|
|
4402
|
+
/* inner text */
|
|
4431
4403
|
}
|
|
4432
4404
|
.prokodo-Select__button:hover {
|
|
4433
4405
|
background: var(--gradient-border-4);
|
|
@@ -4444,10 +4416,6 @@ html[data-theme=dark] .prokodo-DynamicList__helperText {
|
|
|
4444
4416
|
.prokodo-Select__button:disabled:hover {
|
|
4445
4417
|
background: var(--gradient-border-8);
|
|
4446
4418
|
}
|
|
4447
|
-
.prokodo-Select__button {
|
|
4448
|
-
/* open state — JS toggles .Select__button--expanded **and**
|
|
4449
|
-
.Select__field--expanded plus aria-expanded="true" */
|
|
4450
|
-
}
|
|
4451
4419
|
.prokodo-Select__button--expanded {
|
|
4452
4420
|
border-top-left-radius: 1.6875rem;
|
|
4453
4421
|
border-top-right-radius: 1.6875rem;
|
|
@@ -4461,9 +4429,6 @@ html[data-theme=dark] .prokodo-DynamicList__helperText {
|
|
|
4461
4429
|
border-bottom-left-radius: 0;
|
|
4462
4430
|
border-bottom-right-radius: 0;
|
|
4463
4431
|
}
|
|
4464
|
-
.prokodo-Select__button {
|
|
4465
|
-
/* caret / icon (if you still have one) */
|
|
4466
|
-
}
|
|
4467
4432
|
.prokodo-Select__button > svg {
|
|
4468
4433
|
position: absolute;
|
|
4469
4434
|
top: 0;
|
|
@@ -4471,9 +4436,6 @@ html[data-theme=dark] .prokodo-DynamicList__helperText {
|
|
|
4471
4436
|
font-size: 1rem;
|
|
4472
4437
|
height: 100%;
|
|
4473
4438
|
}
|
|
4474
|
-
.prokodo-Select__button {
|
|
4475
|
-
/* inner text */
|
|
4476
|
-
}
|
|
4477
4439
|
.prokodo-Select__button__inner {
|
|
4478
4440
|
display: flex;
|
|
4479
4441
|
align-items: center;
|
|
@@ -4521,9 +4483,6 @@ html[data-theme=dark] .prokodo-Select__button__inner {
|
|
|
4521
4483
|
.prokodo-Select__button__inner--is-placeholder--disabled {
|
|
4522
4484
|
color: var(--color-grey-300);
|
|
4523
4485
|
}
|
|
4524
|
-
.prokodo-Select {
|
|
4525
|
-
/* ───────────────── listbox (popup) */
|
|
4526
|
-
}
|
|
4527
4486
|
.prokodo-Select__listbox {
|
|
4528
4487
|
position: absolute;
|
|
4529
4488
|
box-sizing: border-box;
|
|
@@ -4548,9 +4507,6 @@ html[data-theme=dark] .prokodo-Select__button__inner {
|
|
|
4548
4507
|
.prokodo-Select__listbox--is-closed {
|
|
4549
4508
|
animation: fade-out 200ms ease-in forwards;
|
|
4550
4509
|
}
|
|
4551
|
-
.prokodo-Select {
|
|
4552
|
-
/* ───────────────── option item */
|
|
4553
|
-
}
|
|
4554
4510
|
.prokodo-Select__item {
|
|
4555
4511
|
list-style: none;
|
|
4556
4512
|
display: flex;
|
|
@@ -4571,6 +4527,9 @@ html[data-theme=dark] .prokodo-Select__button__inner {
|
|
|
4571
4527
|
text-transform: none;
|
|
4572
4528
|
text-align: left;
|
|
4573
4529
|
text-decoration: none;
|
|
4530
|
+
/* hover / focus */
|
|
4531
|
+
/* selected */
|
|
4532
|
+
/* disabled (if you add aria-disabled) */
|
|
4574
4533
|
}
|
|
4575
4534
|
@media screen and (min-width: 480px) {
|
|
4576
4535
|
.prokodo-Select__item {
|
|
@@ -4591,9 +4550,6 @@ html[data-theme=dark] .prokodo-Select__button__inner {
|
|
|
4591
4550
|
border-bottom-left-radius: 1.5625rem;
|
|
4592
4551
|
border-bottom-right-radius: 1.5625rem;
|
|
4593
4552
|
}
|
|
4594
|
-
.prokodo-Select__item {
|
|
4595
|
-
/* hover / focus */
|
|
4596
|
-
}
|
|
4597
4553
|
.prokodo-Select__item:hover {
|
|
4598
4554
|
background-color: var(--color-grey-50);
|
|
4599
4555
|
}
|
|
@@ -4601,22 +4557,13 @@ html[data-theme=dark] .prokodo-Select__button__inner {
|
|
|
4601
4557
|
outline: 0;
|
|
4602
4558
|
background: var(--color-primary-100);
|
|
4603
4559
|
}
|
|
4604
|
-
.prokodo-Select__item {
|
|
4605
|
-
/* selected */
|
|
4606
|
-
}
|
|
4607
4560
|
.prokodo-Select__item--selected {
|
|
4608
4561
|
background-color: var(--color-primary-50);
|
|
4609
4562
|
}
|
|
4610
|
-
.prokodo-Select__item {
|
|
4611
|
-
/* disabled (if you add aria-disabled) */
|
|
4612
|
-
}
|
|
4613
4563
|
.prokodo-Select__item[aria-disabled=true] {
|
|
4614
4564
|
color: var(--color-grey-400);
|
|
4615
4565
|
cursor: not-allowed;
|
|
4616
4566
|
}
|
|
4617
|
-
.prokodo-Select {
|
|
4618
|
-
/* ───────────────── checkbox for multi-select */
|
|
4619
|
-
}
|
|
4620
4567
|
.prokodo-Select__checkbox {
|
|
4621
4568
|
position: relative;
|
|
4622
4569
|
min-width: 18px;
|
|
@@ -4652,9 +4599,6 @@ html[data-theme=dark] .prokodo-Select__button__inner {
|
|
|
4652
4599
|
-webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M5 14.5C5 14.5 6.5 14.5 8.5 18C8.5 18 14.0588 8.83333 19 7" stroke="black"/></svg>') no-repeat center/contain;
|
|
4653
4600
|
mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M5 14.5C5 14.5 6.5 14.5 8.5 18C8.5 18 14.0588 8.83333 19 7" stroke="black"/></svg>') no-repeat center/contain;
|
|
4654
4601
|
}
|
|
4655
|
-
.prokodo-Select {
|
|
4656
|
-
/* ───────────────── helper / error text */
|
|
4657
|
-
}
|
|
4658
4602
|
.prokodo-Select__helperText {
|
|
4659
4603
|
padding-left: 1.5rem;
|
|
4660
4604
|
padding-top: 0.75rem;
|
|
@@ -5657,6 +5601,7 @@ html[data-theme=dark] .prokodo-Select__helperText {
|
|
|
5657
5601
|
*/
|
|
5658
5602
|
.prokodo-GridRow {
|
|
5659
5603
|
/* Grid alignment classes */
|
|
5604
|
+
/* Define grid-column spans for different screen sizes */
|
|
5660
5605
|
}
|
|
5661
5606
|
.prokodo-GridRow--align-left {
|
|
5662
5607
|
justify-items: start;
|
|
@@ -5667,9 +5612,6 @@ html[data-theme=dark] .prokodo-Select__helperText {
|
|
|
5667
5612
|
.prokodo-GridRow--align-right {
|
|
5668
5613
|
justify-items: end;
|
|
5669
5614
|
}
|
|
5670
|
-
.prokodo-GridRow {
|
|
5671
|
-
/* Define grid-column spans for different screen sizes */
|
|
5672
|
-
}
|
|
5673
5615
|
.prokodo-GridRow--xs-1 {
|
|
5674
5616
|
grid-column: span 1;
|
|
5675
5617
|
}
|
|
@@ -6169,6 +6111,7 @@ html[data-theme=dark] .prokodo-Select__helperText {
|
|
|
6169
6111
|
text-transform: none;
|
|
6170
6112
|
text-align: left;
|
|
6171
6113
|
text-decoration: none;
|
|
6114
|
+
font-weight: 500;
|
|
6172
6115
|
}
|
|
6173
6116
|
@media screen and (min-width: 480px) {
|
|
6174
6117
|
.prokodo-List__item {
|
|
@@ -6182,9 +6125,6 @@ html[data-theme=dark] .prokodo-Select__helperText {
|
|
|
6182
6125
|
line-height: 1.5;
|
|
6183
6126
|
}
|
|
6184
6127
|
}
|
|
6185
|
-
.prokodo-List__item {
|
|
6186
|
-
font-weight: 500;
|
|
6187
|
-
}
|
|
6188
6128
|
.prokodo-List__item--has-icon {
|
|
6189
6129
|
flex-wrap: nowrap;
|
|
6190
6130
|
}
|
|
@@ -6259,6 +6199,7 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
6259
6199
|
text-transform: none;
|
|
6260
6200
|
text-align: left;
|
|
6261
6201
|
text-decoration: none;
|
|
6202
|
+
font-weight: 500;
|
|
6262
6203
|
}
|
|
6263
6204
|
@media screen and (min-width: 480px) {
|
|
6264
6205
|
.prokodo-List__item__title--card {
|
|
@@ -6272,9 +6213,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
6272
6213
|
line-height: 1.5;
|
|
6273
6214
|
}
|
|
6274
6215
|
}
|
|
6275
|
-
.prokodo-List__item__title--card {
|
|
6276
|
-
font-weight: 500;
|
|
6277
|
-
}
|
|
6278
6216
|
.prokodo-List__item__content {
|
|
6279
6217
|
width: calc(100% - 2rem);
|
|
6280
6218
|
}
|
|
@@ -6330,6 +6268,7 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
6330
6268
|
text-transform: none;
|
|
6331
6269
|
text-align: left;
|
|
6332
6270
|
text-decoration: none;
|
|
6271
|
+
font-weight: 500;
|
|
6333
6272
|
}
|
|
6334
6273
|
@media screen and (min-width: 480px) {
|
|
6335
6274
|
.prokodo-List__item--is-clickable a {
|
|
@@ -6343,9 +6282,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
6343
6282
|
line-height: 1.5;
|
|
6344
6283
|
}
|
|
6345
6284
|
}
|
|
6346
|
-
.prokodo-List__item--is-clickable a {
|
|
6347
|
-
font-weight: 500;
|
|
6348
|
-
}
|
|
6349
6285
|
.prokodo-List__item--is-clickable:hover span[role=presentation] {
|
|
6350
6286
|
color: var(--color-primary-500);
|
|
6351
6287
|
}
|
|
@@ -7860,6 +7796,7 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
7860
7796
|
height: 100%;
|
|
7861
7797
|
-o-object-fit: cover;
|
|
7862
7798
|
object-fit: cover;
|
|
7799
|
+
/* This is the Image component’s container to force fill */
|
|
7863
7800
|
}
|
|
7864
7801
|
.prokodo-PostWidget__image__link {
|
|
7865
7802
|
position: relative;
|
|
@@ -7871,9 +7808,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
7871
7808
|
border-radius: 13px;
|
|
7872
7809
|
overflow: hidden;
|
|
7873
7810
|
}
|
|
7874
|
-
.prokodo-PostWidget__image {
|
|
7875
|
-
/* This is the Image component’s container to force fill */
|
|
7876
|
-
}
|
|
7877
7811
|
.prokodo-PostWidget__image__container {
|
|
7878
7812
|
position: absolute;
|
|
7879
7813
|
inset: 0;
|
|
@@ -8661,6 +8595,8 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
8661
8595
|
background: var(--bg);
|
|
8662
8596
|
box-shadow: var(--shadow);
|
|
8663
8597
|
/* ───── collapsed → slide to the right leaving only the toggle visible */
|
|
8598
|
+
/* toggle button (always visible!) ------------------------------------- */
|
|
8599
|
+
/* list / items -------------------------------------------------------- */
|
|
8664
8600
|
}
|
|
8665
8601
|
.prokodo-SideNav--collapsed {
|
|
8666
8602
|
width: 56px;
|
|
@@ -8696,9 +8632,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
8696
8632
|
height: 0;
|
|
8697
8633
|
text-indent: -99999px;
|
|
8698
8634
|
}
|
|
8699
|
-
.prokodo-SideNav {
|
|
8700
|
-
/* toggle button (always visible!) ------------------------------------- */
|
|
8701
|
-
}
|
|
8702
8635
|
.prokodo-SideNav__toggle {
|
|
8703
8636
|
position: relative;
|
|
8704
8637
|
display: flex;
|
|
@@ -8722,9 +8655,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
8722
8655
|
.prokodo-SideNav__toggle:hover {
|
|
8723
8656
|
background: var(--color-grey-50);
|
|
8724
8657
|
}
|
|
8725
|
-
.prokodo-SideNav {
|
|
8726
|
-
/* list / items -------------------------------------------------------- */
|
|
8727
|
-
}
|
|
8728
8658
|
.prokodo-SideNav__list {
|
|
8729
8659
|
margin: 0;
|
|
8730
8660
|
padding: 0;
|
|
@@ -8783,6 +8713,7 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
8783
8713
|
text-transform: none;
|
|
8784
8714
|
text-align: left;
|
|
8785
8715
|
text-decoration: none;
|
|
8716
|
+
animation: label-in 150ms ease forwards;
|
|
8786
8717
|
}
|
|
8787
8718
|
@media screen and (min-width: 480px) {
|
|
8788
8719
|
.prokodo-SideNav__label {
|
|
@@ -8796,9 +8727,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
8796
8727
|
line-height: 1.45;
|
|
8797
8728
|
}
|
|
8798
8729
|
}
|
|
8799
|
-
.prokodo-SideNav__label {
|
|
8800
|
-
animation: label-in 150ms ease forwards;
|
|
8801
|
-
}
|
|
8802
8730
|
.prokodo-SideNav__label--collapsed .prokodo-SideNav__label {
|
|
8803
8731
|
animation: label-out 150ms ease forwards;
|
|
8804
8732
|
}/* stylelint-disable */
|
|
@@ -9235,7 +9163,7 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
9235
9163
|
mask-composite: exclude;
|
|
9236
9164
|
}
|
|
9237
9165
|
.prokodo-Stepper__icon__container--is-active {
|
|
9238
|
-
box-shadow: var(elevation-1);
|
|
9166
|
+
box-shadow: var(--elevation-1);
|
|
9239
9167
|
}
|
|
9240
9168
|
.prokodo-Stepper__icon__container--is-active::before {
|
|
9241
9169
|
background: var(--gradient-border-1);
|
|
@@ -10207,15 +10135,13 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
10207
10135
|
/* Headline.effects.module.scss */
|
|
10208
10136
|
.prokodo-Headline {
|
|
10209
10137
|
/* Highlight-Grundlage */
|
|
10138
|
+
/* Varianten mit Highlight (mit Gradients/Shadow) */
|
|
10210
10139
|
}
|
|
10211
10140
|
.prokodo-Headline--is-highlighted {
|
|
10212
10141
|
background-clip: text;
|
|
10213
10142
|
-webkit-background-clip: text;
|
|
10214
10143
|
-webkit-text-fill-color: transparent;
|
|
10215
10144
|
}
|
|
10216
|
-
.prokodo-Headline {
|
|
10217
|
-
/* Varianten mit Highlight (mit Gradients/Shadow) */
|
|
10218
|
-
}
|
|
10219
10145
|
.prokodo-Headline--inherit--highlighted {
|
|
10220
10146
|
background-image: var(--gradient-text-grey);
|
|
10221
10147
|
-webkit-background-clip: text;
|
|
@@ -10384,13 +10310,16 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
10384
10310
|
*/
|
|
10385
10311
|
.prokodo-Card {
|
|
10386
10312
|
/* Reveal animation (what used to be &--has-animation + fadeInAnimation) */
|
|
10313
|
+
/* Highlight border fade-in that previously defined @keyframes inline */
|
|
10314
|
+
/**
|
|
10315
|
+
* Fade in
|
|
10316
|
+
*/
|
|
10317
|
+
/* If your gradient mixins animate bg-position, that's okay here too.
|
|
10318
|
+
(If they are static, it also doesn't hurt keeping them in base.) */
|
|
10387
10319
|
}
|
|
10388
10320
|
.prokodo-Card--has-animation {
|
|
10389
10321
|
animation: Card_fadeInAnimation 0.5s;
|
|
10390
10322
|
}
|
|
10391
|
-
.prokodo-Card {
|
|
10392
|
-
/* Highlight border fade-in that previously defined @keyframes inline */
|
|
10393
|
-
}
|
|
10394
10323
|
.prokodo-Card--has-highlight::before {
|
|
10395
10324
|
content: "";
|
|
10396
10325
|
position: absolute;
|
|
@@ -10406,11 +10335,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
10406
10335
|
background: var(--gradient-border-4);
|
|
10407
10336
|
animation: Card_fadeInMask 0.5s ease forwards;
|
|
10408
10337
|
}
|
|
10409
|
-
.prokodo-Card {
|
|
10410
|
-
/**
|
|
10411
|
-
* Fade in
|
|
10412
|
-
*/
|
|
10413
|
-
}
|
|
10414
10338
|
@keyframes Card_fadeInAnimation {
|
|
10415
10339
|
0% {
|
|
10416
10340
|
opacity: 0;
|
|
@@ -10423,10 +10347,6 @@ html[data-theme=dark] .prokodo-List__item__icon {
|
|
|
10423
10347
|
to {
|
|
10424
10348
|
opacity: 1;
|
|
10425
10349
|
}
|
|
10426
|
-
}
|
|
10427
|
-
.prokodo-Card {
|
|
10428
|
-
/* If your gradient mixins animate bg-position, that's okay here too.
|
|
10429
|
-
(If they are static, it also doesn't hurt keeping them in base.) */
|
|
10430
10350
|
}/* stylelint-disable */
|
|
10431
10351
|
/**
|
|
10432
10352
|
* Calculates a rem-based value by a given pixel size.
|