@fluityy/designsystem 0.2.22 → 0.2.24
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.js +15 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +74 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
--flui-color-brand-800: #0e2073;
|
|
28
28
|
--flui-color-brand-900: #08144a;
|
|
29
29
|
--flui-color-neutral-0: #ffffff;
|
|
30
|
+
--flui-color-neutral-25: #fafbfc;
|
|
30
31
|
--flui-color-neutral-50: #f7f8fa;
|
|
31
32
|
--flui-color-neutral-100: #f3f4f7;
|
|
32
33
|
--flui-color-neutral-150: #eceef2;
|
|
@@ -93,7 +94,7 @@
|
|
|
93
94
|
--flui-semantic-bg-base: var(--flui-color-neutral-0);
|
|
94
95
|
--flui-semantic-bg-subtle: var(--flui-color-neutral-50);
|
|
95
96
|
--flui-semantic-bg-muted: var(--flui-color-neutral-150);
|
|
96
|
-
--flui-semantic-bg-elevated: var(--flui-color-neutral-
|
|
97
|
+
--flui-semantic-bg-elevated: var(--flui-color-neutral-25);
|
|
97
98
|
--flui-semantic-fg-default: var(--flui-color-neutral-900);
|
|
98
99
|
--flui-semantic-fg-muted: var(--flui-color-neutral-500);
|
|
99
100
|
--flui-semantic-fg-on-brand: var(--flui-color-neutral-0);
|
|
@@ -541,3 +542,75 @@
|
|
|
541
542
|
animation: flui-drawer-out-bottom 220ms cubic-bezier(0.32, 0, 0.67, 0) forwards;
|
|
542
543
|
}
|
|
543
544
|
|
|
545
|
+
|
|
546
|
+
/* flui-* utility classes */
|
|
547
|
+
.flui-ai-border {
|
|
548
|
+
position: relative;
|
|
549
|
+
}
|
|
550
|
+
.flui-ai-border::after {
|
|
551
|
+
content: "";
|
|
552
|
+
position: absolute;
|
|
553
|
+
inset: 0;
|
|
554
|
+
border-radius: inherit;
|
|
555
|
+
pointer-events: none;
|
|
556
|
+
opacity: 0;
|
|
557
|
+
background: linear-gradient(
|
|
558
|
+
110deg,
|
|
559
|
+
color-mix(in srgb, var(--color-primary) 22%, transparent),
|
|
560
|
+
color-mix(in srgb, var(--color-primary) 100%, transparent) 35%,
|
|
561
|
+
color-mix(in srgb, var(--color-primary) 28%, transparent) 70%
|
|
562
|
+
);
|
|
563
|
+
background-size: 240% 100%;
|
|
564
|
+
transition: opacity 120ms ease-out;
|
|
565
|
+
filter: drop-shadow(0 0 6px color-mix(in srgb, var(--color-primary) 52%, transparent));
|
|
566
|
+
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
|
|
567
|
+
-webkit-mask-composite: xor;
|
|
568
|
+
mask-composite: exclude;
|
|
569
|
+
padding: 2px;
|
|
570
|
+
}
|
|
571
|
+
.flui-ai-border:has(button[aria-busy="true"])::after {
|
|
572
|
+
opacity: 1;
|
|
573
|
+
animation: flui-ai-border-pan 1.25s linear infinite;
|
|
574
|
+
}
|
|
575
|
+
.flui-ai-border:has(button[aria-busy="true"]) input,
|
|
576
|
+
.flui-ai-border:has(button[aria-busy="true"]) textarea {
|
|
577
|
+
animation: flui-ai-text-refine 1s ease-in-out infinite;
|
|
578
|
+
}
|
|
579
|
+
.flui-ai-refined-blur-in {
|
|
580
|
+
animation: flui-ai-text-blur-in 420ms ease-out;
|
|
581
|
+
}
|
|
582
|
+
.flui-ai-badge-glow {
|
|
583
|
+
position: relative;
|
|
584
|
+
overflow: hidden;
|
|
585
|
+
isolation: isolate;
|
|
586
|
+
}
|
|
587
|
+
.flui-ai-badge-glow::after {
|
|
588
|
+
content: "";
|
|
589
|
+
position: absolute;
|
|
590
|
+
top: -35%;
|
|
591
|
+
bottom: -35%;
|
|
592
|
+
left: -35%;
|
|
593
|
+
width: 46%;
|
|
594
|
+
border-radius: inherit;
|
|
595
|
+
pointer-events: none;
|
|
596
|
+
background: linear-gradient(
|
|
597
|
+
100deg,
|
|
598
|
+
color-mix(in srgb, white 0%, transparent) 0%,
|
|
599
|
+
color-mix(in srgb, white 70%, transparent) 50%,
|
|
600
|
+
color-mix(in srgb, white 0%, transparent) 100%
|
|
601
|
+
);
|
|
602
|
+
filter: blur(0.6px);
|
|
603
|
+
will-change: transform;
|
|
604
|
+
animation: flui-ai-badge-sheen 3.2s linear infinite;
|
|
605
|
+
}
|
|
606
|
+
.flui-chart .recharts-surface,
|
|
607
|
+
.flui-chart .recharts-wrapper,
|
|
608
|
+
.flui-chart svg {
|
|
609
|
+
outline: none !important;
|
|
610
|
+
}
|
|
611
|
+
.flui-chart .recharts-surface:focus,
|
|
612
|
+
.flui-chart .recharts-surface:focus-visible,
|
|
613
|
+
.flui-chart .recharts-wrapper:focus,
|
|
614
|
+
.flui-chart .recharts-wrapper:focus-visible {
|
|
615
|
+
outline: none !important;
|
|
616
|
+
}
|