@fluityy/designsystem 0.2.18 → 0.2.20
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/_headers +5 -0
- package/dist/components/Ai/AiActionButton.d.ts +8 -0
- package/dist/components/Ai/AiActionsMenu.d.ts +15 -0
- package/dist/components/Ai/AiBadge.d.ts +8 -0
- package/dist/components/Ai/AiEmptyState.d.ts +8 -0
- package/dist/components/Ai/AiIcon.d.ts +11 -0
- package/dist/components/Ai/AiInputActions.d.ts +10 -0
- package/dist/components/Ai/AiMessage.d.ts +51 -0
- package/dist/components/Ai/AiStatus.d.ts +8 -0
- package/dist/components/Ai/AiSuggestionChip.d.ts +5 -0
- package/dist/components/Ai/AiTextareaToolbar.d.ts +20 -0
- package/dist/components/Ai/AiThinking.d.ts +5 -0
- package/dist/components/Ai/PromptComposer.d.ts +28 -0
- package/dist/components/Ai/index.d.ts +12 -0
- package/dist/components/Badge/Badge.d.ts +1 -1
- package/dist/components/Chat/ChatComposer.d.ts +77 -0
- package/dist/components/Chat/index.d.ts +1 -0
- package/dist/components/Input/Input.d.ts +12 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/index.js +7647 -6653
- package/dist/index.js.map +1 -1
- package/dist/styles.css +60 -0
- package/package.json +5 -1
package/dist/styles.css
CHANGED
|
@@ -443,6 +443,66 @@
|
|
|
443
443
|
from { transform: translateY(0); }
|
|
444
444
|
to { transform: translateY(100%); }
|
|
445
445
|
}
|
|
446
|
+
@keyframes flui-ai-border-pan {
|
|
447
|
+
0% { background-position: 0% 50%; }
|
|
448
|
+
100% { background-position: 200% 50%; }
|
|
449
|
+
}
|
|
450
|
+
@keyframes flui-ai-badge-sheen {
|
|
451
|
+
0% {
|
|
452
|
+
transform: translate3d(-150%, 0, 0);
|
|
453
|
+
opacity: 0;
|
|
454
|
+
}
|
|
455
|
+
10% {
|
|
456
|
+
opacity: 0.28;
|
|
457
|
+
}
|
|
458
|
+
50% {
|
|
459
|
+
opacity: 0.36;
|
|
460
|
+
}
|
|
461
|
+
90% {
|
|
462
|
+
opacity: 0.28;
|
|
463
|
+
}
|
|
464
|
+
100% {
|
|
465
|
+
transform: translate3d(170%, 0, 0);
|
|
466
|
+
opacity: 0;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
@keyframes flui-ai-text-refine {
|
|
470
|
+
0% { color: var(--color-fg); }
|
|
471
|
+
50% { color: color-mix(in srgb, var(--color-primary) 52%, var(--color-fg)); }
|
|
472
|
+
100% { color: var(--color-fg); }
|
|
473
|
+
}
|
|
474
|
+
@keyframes flui-ai-text-refine-vivid {
|
|
475
|
+
0% {
|
|
476
|
+
color: color-mix(in srgb, var(--color-primary) 28%, var(--color-fg));
|
|
477
|
+
text-shadow: 0 0 0 color-mix(in srgb, var(--color-primary) 0%, transparent);
|
|
478
|
+
}
|
|
479
|
+
50% {
|
|
480
|
+
color: var(--color-primary);
|
|
481
|
+
text-shadow: 0 0 10px color-mix(in srgb, var(--color-primary) 58%, transparent);
|
|
482
|
+
}
|
|
483
|
+
100% {
|
|
484
|
+
color: color-mix(in srgb, var(--color-primary) 28%, var(--color-fg));
|
|
485
|
+
text-shadow: 0 0 0 color-mix(in srgb, var(--color-primary) 0%, transparent);
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
@keyframes flui-ai-text-blur-in {
|
|
489
|
+
0% {
|
|
490
|
+
color: transparent;
|
|
491
|
+
text-shadow:
|
|
492
|
+
0 0 22px color-mix(in srgb, var(--color-primary) 90%, transparent),
|
|
493
|
+
0 0 12px color-mix(in srgb, var(--color-primary) 70%, transparent);
|
|
494
|
+
}
|
|
495
|
+
45% {
|
|
496
|
+
color: color-mix(in srgb, var(--color-primary) 82%, var(--color-fg));
|
|
497
|
+
text-shadow:
|
|
498
|
+
0 0 12px color-mix(in srgb, var(--color-primary) 62%, transparent),
|
|
499
|
+
0 0 6px color-mix(in srgb, var(--color-primary) 48%, transparent);
|
|
500
|
+
}
|
|
501
|
+
100% {
|
|
502
|
+
color: var(--color-fg);
|
|
503
|
+
text-shadow: 0 0 0 color-mix(in srgb, var(--color-primary) 0%, transparent);
|
|
504
|
+
}
|
|
505
|
+
}
|
|
446
506
|
|
|
447
507
|
/* overlay-animations.css */
|
|
448
508
|
/* Utilitários de animação para Drawer e overlay — pares com @keyframes em global.css */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluityy/designsystem",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Flui Design System — componentes React com Tailwind v4 e tokens semânticos",
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
"ui"
|
|
13
13
|
],
|
|
14
14
|
"license": "MIT",
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
15
18
|
"repository": {
|
|
16
19
|
"type": "git",
|
|
17
20
|
"url": "https://github.com/Fluity-AI/designsystem.git"
|
|
@@ -39,6 +42,7 @@
|
|
|
39
42
|
"dev": "vite",
|
|
40
43
|
"prebuild": "npm run tokens",
|
|
41
44
|
"build": "tsc -b && vite build",
|
|
45
|
+
"build:pages": "npm run build",
|
|
42
46
|
"preview": "vite preview",
|
|
43
47
|
"build:lib": "npm run tokens && vite build --config vite.lib.config.ts && node scripts/build-styles.mjs",
|
|
44
48
|
"prepublishOnly": "npm run build:lib"
|