@payfit/unity-themes 3.0.4 → 3.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/dist/css/unity.css +198 -13
- package/dist/esm/scripts/actions/append-css-assets.d.ts +7 -0
- package/package.json +1 -1
- package/src/agent-references/tokens-catalog.json +74 -15
- package/tokens/common/animations.json +18 -2
- package/tokens/default/gradients.json +15 -0
- package/dist/esm/scripts/actions/append-animations.d.ts +0 -3
package/dist/css/unity.css
CHANGED
|
@@ -53,7 +53,9 @@
|
|
|
53
53
|
@layer base {
|
|
54
54
|
:root,
|
|
55
55
|
[data-uy-theme="default"] {
|
|
56
|
-
--uy-animate-gradient-rotate: 3s linear infinite gradient-rotate;
|
|
56
|
+
--uy-animate-uy-ai-gradient-angle-rotate: 3s linear infinite uy-ai-gradient-angle-rotate;
|
|
57
|
+
--uy-animate-uy-ai-gradient-linear-sweep: 3s linear infinite uy-ai-gradient-linear-sweep;
|
|
58
|
+
--uy-animate-uy-ai-gradient-radial-pulse: 2s ease-in-out infinite uy-ai-gradient-radial-pulse;
|
|
57
59
|
--uy-animate-spin: 2s linear infinite spin;
|
|
58
60
|
--uy-animate-arc-shrink: 2s ease-in-out infinite arc-shrink;
|
|
59
61
|
--uy-animate-pulse: 2s cubic-bezier(0.4, 0, 0.6, 1) infinite pulse;
|
|
@@ -575,6 +577,10 @@
|
|
|
575
577
|
--uy-color-utility-inverted-focus-ring: var(--uy-color-yellow-l4);
|
|
576
578
|
--uy-gradient-payfit-ai:
|
|
577
579
|
var(--uy-color-yellow-l5) 0%, var(--uy-color-plum-l5) 50%, var(--uy-color-blue-l4) 100%; /** Gradients for Payfit AI effects and components */
|
|
580
|
+
--uy-gradient-payfit-ai-animated:
|
|
581
|
+
var(--uy-color-yellow-l5) 0%, var(--uy-color-plum-l5) 12.5%, var(--uy-color-blue-l4) 25%,
|
|
582
|
+
var(--uy-color-plum-l5) 37.5%, var(--uy-color-yellow-l5) 50%, var(--uy-color-plum-l5) 62.5%,
|
|
583
|
+
var(--uy-color-blue-l4) 75%, var(--uy-color-plum-l5) 87.5%, var(--uy-color-yellow-l5) 100%; /** Seamlessly repeating PayFit AI gradient for animated background-position effects */
|
|
578
584
|
--uy-shadow-100: 0px 1px 4px 1px var(--uy-color-utility-shadow-100);
|
|
579
585
|
--uy-shadow-200: 0px 2px 8px 1px var(--uy-color-utility-shadow-200);
|
|
580
586
|
--uy-shadow-300: 0px 5px 10px 1px var(--uy-color-utility-shadow-300);
|
|
@@ -627,7 +633,9 @@
|
|
|
627
633
|
}
|
|
628
634
|
|
|
629
635
|
[data-unity-theme="compact"] {
|
|
630
|
-
--uy-animate-gradient-rotate: 3s linear infinite gradient-rotate;
|
|
636
|
+
--uy-animate-uy-ai-gradient-angle-rotate: 3s linear infinite uy-ai-gradient-angle-rotate;
|
|
637
|
+
--uy-animate-uy-ai-gradient-linear-sweep: 3s linear infinite uy-ai-gradient-linear-sweep;
|
|
638
|
+
--uy-animate-uy-ai-gradient-radial-pulse: 2s ease-in-out infinite uy-ai-gradient-radial-pulse;
|
|
631
639
|
--uy-animate-spin: 2s linear infinite spin;
|
|
632
640
|
--uy-animate-arc-shrink: 2s ease-in-out infinite arc-shrink;
|
|
633
641
|
--uy-animate-pulse: 2s cubic-bezier(0.4, 0, 0.6, 1) infinite pulse;
|
|
@@ -712,7 +720,9 @@
|
|
|
712
720
|
|
|
713
721
|
@theme {
|
|
714
722
|
--color-*: initial;
|
|
715
|
-
--animate-gradient-rotate: var(--uy-animate-gradient-rotate);
|
|
723
|
+
--animate-uy-ai-gradient-angle-rotate: var(--uy-animate-uy-ai-gradient-angle-rotate);
|
|
724
|
+
--animate-uy-ai-gradient-linear-sweep: var(--uy-animate-uy-ai-gradient-linear-sweep);
|
|
725
|
+
--animate-uy-ai-gradient-radial-pulse: var(--uy-animate-uy-ai-gradient-radial-pulse);
|
|
716
726
|
--animate-spin: var(--uy-animate-spin);
|
|
717
727
|
--animate-arc-shrink: var(--uy-animate-arc-shrink);
|
|
718
728
|
--animate-pulse: var(--uy-animate-pulse);
|
|
@@ -1229,6 +1239,7 @@
|
|
|
1229
1239
|
--color-utility-shadow-500: var(--uy-color-utility-shadow-500);
|
|
1230
1240
|
--color-utility-shadow-600: var(--uy-color-utility-shadow-600);
|
|
1231
1241
|
--gradient-payfit-ai: var(--uy-gradient-payfit-ai);
|
|
1242
|
+
--gradient-payfit-ai-animated: var(--uy-gradient-payfit-ai-animated);
|
|
1232
1243
|
--shadow-100: var(--uy-shadow-100);
|
|
1233
1244
|
--shadow-200: var(--uy-shadow-200);
|
|
1234
1245
|
--shadow-300: var(--uy-shadow-300);
|
|
@@ -1311,19 +1322,13 @@
|
|
|
1311
1322
|
}
|
|
1312
1323
|
}
|
|
1313
1324
|
|
|
1314
|
-
|
|
1315
|
-
@
|
|
1316
|
-
|
|
1317
|
-
inherits: true;
|
|
1318
|
-
initial-value: 0deg;
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
@keyframes gradient-rotate {
|
|
1322
|
-
to {
|
|
1323
|
-
--uy-ai-gradient-angle: 360deg;
|
|
1325
|
+
@custom-variant supports-mask-border {
|
|
1326
|
+
@supports ((mask-composite: exclude) or (-webkit-mask-composite: xor)) {
|
|
1327
|
+
@slot;
|
|
1324
1328
|
}
|
|
1325
1329
|
}
|
|
1326
1330
|
|
|
1331
|
+
|
|
1327
1332
|
@keyframes spin {
|
|
1328
1333
|
0% {
|
|
1329
1334
|
transform: rotate(0deg);
|
|
@@ -1466,6 +1471,186 @@
|
|
|
1466
1471
|
}
|
|
1467
1472
|
|
|
1468
1473
|
|
|
1474
|
+
/**
|
|
1475
|
+
* Payfit AI gradient effects.
|
|
1476
|
+
*
|
|
1477
|
+
* This asset contains the registered custom properties, base-layer glow
|
|
1478
|
+
* recipe, and keyframes consumed by the AI gradient border utilities used in ai-kit components.
|
|
1479
|
+
* It is intentionally separate from general-purpose animations so the effect can be
|
|
1480
|
+
* maintained as one cohesive unit.
|
|
1481
|
+
*
|
|
1482
|
+
* Consumers use the defined custom properties to animate or control specific part of each
|
|
1483
|
+
* effect that can be applied. It is particularly important for allowing interpolation
|
|
1484
|
+
* of properties that would not normally animate, such as an angle in a gradient declaration.
|
|
1485
|
+
*/
|
|
1486
|
+
|
|
1487
|
+
/**
|
|
1488
|
+
* The current orientation of a conic Payfit AI gradient and its orbital glow.
|
|
1489
|
+
* This registered property makes angle interpolation continuous while the
|
|
1490
|
+
* `uy-ai-gradient-angle-rotate` keyframe is running.
|
|
1491
|
+
*/
|
|
1492
|
+
@property --uy-ai-gradient-angle {
|
|
1493
|
+
syntax: '<angle>';
|
|
1494
|
+
inherits: false;
|
|
1495
|
+
initial-value: 0deg;
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
/**
|
|
1499
|
+
* The host-controlled gradient border width. The masked border reads this
|
|
1500
|
+
* value for its inset and padding, so changing it keeps the border aligned
|
|
1501
|
+
* without changing the host's padding, radius, or background.
|
|
1502
|
+
*/
|
|
1503
|
+
@property --uy-ai-gradient-border-width {
|
|
1504
|
+
syntax: '<length>';
|
|
1505
|
+
inherits: true;
|
|
1506
|
+
initial-value: 1px;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
/**
|
|
1510
|
+
* Opacity contribution of each colour in `--uy-ai-gradient-glow`.
|
|
1511
|
+
* Override it on the interactive host to tune glow strength independently of
|
|
1512
|
+
* the host and its content opacity. Defaults to 20%.
|
|
1513
|
+
*/
|
|
1514
|
+
@property --uy-ai-gradient-glow-opacity {
|
|
1515
|
+
syntax: '<percentage>';
|
|
1516
|
+
inherits: true;
|
|
1517
|
+
initial-value: 20%;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
/**
|
|
1521
|
+
* Unwrapped angle and scale for the interactive Payfit AI brand motion.
|
|
1522
|
+
* Registering them lets the browser interpolate the two full turns in either
|
|
1523
|
+
* direction as the trigger's hover or focus-visible state changes.
|
|
1524
|
+
*/
|
|
1525
|
+
@property --uy-payfit-ai-brand-rotation {
|
|
1526
|
+
syntax: '<angle>';
|
|
1527
|
+
inherits: false;
|
|
1528
|
+
initial-value: 0deg;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
@property --uy-payfit-ai-brand-scale {
|
|
1532
|
+
syntax: '<number>';
|
|
1533
|
+
inherits: false;
|
|
1534
|
+
initial-value: 1;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
@layer base {
|
|
1538
|
+
:root {
|
|
1539
|
+
/** Distance from the host at which each glow colour orbits. */
|
|
1540
|
+
--uy-ai-gradient-glow-orbit-radius: 6px;
|
|
1541
|
+
|
|
1542
|
+
/** Softness of each glow shadow. This is the box-shadow blur radius. */
|
|
1543
|
+
--uy-ai-gradient-glow-blur-radius: 12px;
|
|
1544
|
+
|
|
1545
|
+
/** Angular offset for the plum glow, relative to the yellow glow. */
|
|
1546
|
+
--uy-ai-gradient-glow-plum-phase-offset: 120deg;
|
|
1547
|
+
|
|
1548
|
+
/** Angular offset for the blue glow, relative to the yellow glow. */
|
|
1549
|
+
--uy-ai-gradient-glow-blue-phase-offset: 240deg;
|
|
1550
|
+
|
|
1551
|
+
/**
|
|
1552
|
+
* Three coloured box shadows that orbit the host as the gradient angle
|
|
1553
|
+
* changes. `cos(angle)` supplies each horizontal offset and `sin(angle)`
|
|
1554
|
+
* its vertical offset, tracing a circular path. The two additional
|
|
1555
|
+
* shadows are phase-shifted by 120deg and 240deg, producing an evenly
|
|
1556
|
+
* spaced yellow, plum, and blue glow.
|
|
1557
|
+
*
|
|
1558
|
+
* Use through `box-shadow: var(--uy-ai-gradient-glow)`. This property is
|
|
1559
|
+
* only applied by `aiGradientEffect({ glow: true })` on hover or focus.
|
|
1560
|
+
*/
|
|
1561
|
+
--uy-ai-gradient-glow:
|
|
1562
|
+
calc(
|
|
1563
|
+
cos(var(--uy-ai-gradient-angle)) *
|
|
1564
|
+
var(--uy-ai-gradient-glow-orbit-radius)
|
|
1565
|
+
)
|
|
1566
|
+
calc(
|
|
1567
|
+
sin(var(--uy-ai-gradient-angle)) *
|
|
1568
|
+
var(--uy-ai-gradient-glow-orbit-radius)
|
|
1569
|
+
)
|
|
1570
|
+
var(--uy-ai-gradient-glow-blur-radius)
|
|
1571
|
+
color-mix(
|
|
1572
|
+
in srgb,
|
|
1573
|
+
var(--uy-color-yellow-l5) var(--uy-ai-gradient-glow-opacity),
|
|
1574
|
+
transparent
|
|
1575
|
+
),
|
|
1576
|
+
calc(
|
|
1577
|
+
cos(
|
|
1578
|
+
calc(
|
|
1579
|
+
var(--uy-ai-gradient-angle) +
|
|
1580
|
+
var(--uy-ai-gradient-glow-plum-phase-offset)
|
|
1581
|
+
)
|
|
1582
|
+
) *
|
|
1583
|
+
var(--uy-ai-gradient-glow-orbit-radius)
|
|
1584
|
+
)
|
|
1585
|
+
calc(
|
|
1586
|
+
sin(
|
|
1587
|
+
calc(
|
|
1588
|
+
var(--uy-ai-gradient-angle) +
|
|
1589
|
+
var(--uy-ai-gradient-glow-plum-phase-offset)
|
|
1590
|
+
)
|
|
1591
|
+
) *
|
|
1592
|
+
var(--uy-ai-gradient-glow-orbit-radius)
|
|
1593
|
+
)
|
|
1594
|
+
var(--uy-ai-gradient-glow-blur-radius)
|
|
1595
|
+
color-mix(
|
|
1596
|
+
in srgb,
|
|
1597
|
+
var(--uy-color-plum-l5) var(--uy-ai-gradient-glow-opacity),
|
|
1598
|
+
transparent
|
|
1599
|
+
),
|
|
1600
|
+
calc(
|
|
1601
|
+
cos(
|
|
1602
|
+
calc(
|
|
1603
|
+
var(--uy-ai-gradient-angle) +
|
|
1604
|
+
var(--uy-ai-gradient-glow-blue-phase-offset)
|
|
1605
|
+
)
|
|
1606
|
+
) *
|
|
1607
|
+
var(--uy-ai-gradient-glow-orbit-radius)
|
|
1608
|
+
)
|
|
1609
|
+
calc(
|
|
1610
|
+
sin(
|
|
1611
|
+
calc(
|
|
1612
|
+
var(--uy-ai-gradient-angle) +
|
|
1613
|
+
var(--uy-ai-gradient-glow-blue-phase-offset)
|
|
1614
|
+
)
|
|
1615
|
+
) *
|
|
1616
|
+
var(--uy-ai-gradient-glow-orbit-radius)
|
|
1617
|
+
)
|
|
1618
|
+
var(--uy-ai-gradient-glow-blur-radius)
|
|
1619
|
+
color-mix(
|
|
1620
|
+
in srgb,
|
|
1621
|
+
var(--uy-color-blue-l4) var(--uy-ai-gradient-glow-opacity),
|
|
1622
|
+
transparent
|
|
1623
|
+
);
|
|
1624
|
+
}
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
/** Rotates the conic gradient and the orbital glow angle once per cycle. */
|
|
1628
|
+
@keyframes uy-ai-gradient-angle-rotate {
|
|
1629
|
+
to {
|
|
1630
|
+
--uy-ai-gradient-angle: 360deg;
|
|
1631
|
+
}
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
/** Sweeps the repeating linear gradient through its seamless repeat point. */
|
|
1635
|
+
@keyframes uy-ai-gradient-linear-sweep {
|
|
1636
|
+
to {
|
|
1637
|
+
background-position: 66.666667% 50%;
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
/** Expands and contracts the radial gradient to create a breathing effect. */
|
|
1642
|
+
@keyframes uy-ai-gradient-radial-pulse {
|
|
1643
|
+
0%,
|
|
1644
|
+
100% {
|
|
1645
|
+
background-size: 100% 100%;
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
50% {
|
|
1649
|
+
background-size: 200% 200%;
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
|
|
1469
1654
|
/* this is Midnight css reset */
|
|
1470
1655
|
@layer base {
|
|
1471
1656
|
html {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Config, Dictionary, PlatformConfig } from 'style-dictionary/types';
|
|
2
|
+
/**
|
|
3
|
+
* Appends every CSS asset in a directory to the generated theme stylesheet.
|
|
4
|
+
*
|
|
5
|
+
* Assets are appended in filename order so their cascade order is explicit.
|
|
6
|
+
*/
|
|
7
|
+
export declare function appendCssAssets(_dictionary: Dictionary, config: PlatformConfig, options: Config): void;
|
package/package.json
CHANGED
|
@@ -45,21 +45,6 @@
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
-
{
|
|
49
|
-
"name": "gradient-rotate",
|
|
50
|
-
"sourcePath": "animate.gradient-rotate",
|
|
51
|
-
"cssVariable": "--uy-animate-gradient-rotate",
|
|
52
|
-
"family": "animate",
|
|
53
|
-
"type": "animation",
|
|
54
|
-
"values": {
|
|
55
|
-
"default": {
|
|
56
|
-
"resolved": "3s linear infinite gradient-rotate"
|
|
57
|
-
},
|
|
58
|
-
"compact": {
|
|
59
|
-
"resolved": "3s linear infinite gradient-rotate"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
48
|
{
|
|
64
49
|
"name": "pulse",
|
|
65
50
|
"sourcePath": "animate.pulse",
|
|
@@ -165,6 +150,51 @@
|
|
|
165
150
|
}
|
|
166
151
|
}
|
|
167
152
|
},
|
|
153
|
+
{
|
|
154
|
+
"name": "uy-ai-gradient-angle-rotate",
|
|
155
|
+
"sourcePath": "animate.uy-ai-gradient-angle-rotate",
|
|
156
|
+
"cssVariable": "--uy-animate-uy-ai-gradient-angle-rotate",
|
|
157
|
+
"family": "animate",
|
|
158
|
+
"type": "animation",
|
|
159
|
+
"values": {
|
|
160
|
+
"default": {
|
|
161
|
+
"resolved": "3s linear infinite uy-ai-gradient-angle-rotate"
|
|
162
|
+
},
|
|
163
|
+
"compact": {
|
|
164
|
+
"resolved": "3s linear infinite uy-ai-gradient-angle-rotate"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "uy-ai-gradient-linear-sweep",
|
|
170
|
+
"sourcePath": "animate.uy-ai-gradient-linear-sweep",
|
|
171
|
+
"cssVariable": "--uy-animate-uy-ai-gradient-linear-sweep",
|
|
172
|
+
"family": "animate",
|
|
173
|
+
"type": "animation",
|
|
174
|
+
"values": {
|
|
175
|
+
"default": {
|
|
176
|
+
"resolved": "3s linear infinite uy-ai-gradient-linear-sweep"
|
|
177
|
+
},
|
|
178
|
+
"compact": {
|
|
179
|
+
"resolved": "3s linear infinite uy-ai-gradient-linear-sweep"
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "uy-ai-gradient-radial-pulse",
|
|
185
|
+
"sourcePath": "animate.uy-ai-gradient-radial-pulse",
|
|
186
|
+
"cssVariable": "--uy-animate-uy-ai-gradient-radial-pulse",
|
|
187
|
+
"family": "animate",
|
|
188
|
+
"type": "animation",
|
|
189
|
+
"values": {
|
|
190
|
+
"default": {
|
|
191
|
+
"resolved": "2s ease-in-out infinite uy-ai-gradient-radial-pulse"
|
|
192
|
+
},
|
|
193
|
+
"compact": {
|
|
194
|
+
"resolved": "2s ease-in-out infinite uy-ai-gradient-radial-pulse"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
},
|
|
168
198
|
{
|
|
169
199
|
"name": "zoom-in",
|
|
170
200
|
"sourcePath": "animate.zoom-in",
|
|
@@ -7710,6 +7740,35 @@
|
|
|
7710
7740
|
}
|
|
7711
7741
|
}
|
|
7712
7742
|
},
|
|
7743
|
+
{
|
|
7744
|
+
"name": "payfit-ai-animated",
|
|
7745
|
+
"sourcePath": "gradient.payfit-ai-animated",
|
|
7746
|
+
"cssVariable": "--uy-gradient-payfit-ai-animated",
|
|
7747
|
+
"family": "gradient",
|
|
7748
|
+
"type": "gradient",
|
|
7749
|
+
"values": {
|
|
7750
|
+
"default": {
|
|
7751
|
+
"resolved": "oklch(89.595% 0.13091 97.032) 0%, oklch(77.951% 0.22327 327.45) 12.5%, oklch(86.944% 0.07387 225.17) 25%, oklch(77.951% 0.22327 327.45) 37.5%, oklch(89.595% 0.13091 97.032) 50%, oklch(77.951% 0.22327 327.45) 62.5%, oklch(86.944% 0.07387 225.17) 75%, oklch(77.951% 0.22327 327.45) 87.5%, oklch(89.595% 0.13091 97.032) 100%",
|
|
7752
|
+
"references": [
|
|
7753
|
+
{
|
|
7754
|
+
"path": "color.blue.L4",
|
|
7755
|
+
"name": "blue-l4",
|
|
7756
|
+
"cssVariable": "--uy-color-blue-l4"
|
|
7757
|
+
},
|
|
7758
|
+
{
|
|
7759
|
+
"path": "color.plum.L5",
|
|
7760
|
+
"name": "plum-l5",
|
|
7761
|
+
"cssVariable": "--uy-color-plum-l5"
|
|
7762
|
+
},
|
|
7763
|
+
{
|
|
7764
|
+
"path": "color.yellow.L5",
|
|
7765
|
+
"name": "yellow-l5",
|
|
7766
|
+
"cssVariable": "--uy-color-yellow-l5"
|
|
7767
|
+
}
|
|
7768
|
+
]
|
|
7769
|
+
}
|
|
7770
|
+
}
|
|
7771
|
+
},
|
|
7713
7772
|
{
|
|
7714
7773
|
"name": "layout-columns--default",
|
|
7715
7774
|
"sourcePath": "grid.layout.default.columns",
|
|
@@ -2,14 +2,30 @@
|
|
|
2
2
|
"animate": {
|
|
3
3
|
"$type": "animation",
|
|
4
4
|
"$description": "Animation names for use in the design system",
|
|
5
|
-
"gradient-rotate": {
|
|
5
|
+
"uy-ai-gradient-angle-rotate": {
|
|
6
6
|
"$value": {
|
|
7
|
-
"name": "gradient-rotate",
|
|
7
|
+
"name": "uy-ai-gradient-angle-rotate",
|
|
8
8
|
"duration": "3s",
|
|
9
9
|
"timingFunction": "linear",
|
|
10
10
|
"iterationCount": "infinite"
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
|
+
"uy-ai-gradient-linear-sweep": {
|
|
14
|
+
"$value": {
|
|
15
|
+
"name": "uy-ai-gradient-linear-sweep",
|
|
16
|
+
"duration": "3s",
|
|
17
|
+
"timingFunction": "linear",
|
|
18
|
+
"iterationCount": "infinite"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"uy-ai-gradient-radial-pulse": {
|
|
22
|
+
"$value": {
|
|
23
|
+
"name": "uy-ai-gradient-radial-pulse",
|
|
24
|
+
"duration": "2s",
|
|
25
|
+
"timingFunction": "ease-in-out",
|
|
26
|
+
"iterationCount": "infinite"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
13
29
|
"spin": {
|
|
14
30
|
"$value": {
|
|
15
31
|
"name": "spin",
|
|
@@ -17,6 +17,21 @@
|
|
|
17
17
|
"position": 1
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
|
+
},
|
|
21
|
+
"payfit-ai-animated": {
|
|
22
|
+
"$type": "gradient",
|
|
23
|
+
"$description": "Seamlessly repeating PayFit AI gradient for animated background-position effects",
|
|
24
|
+
"$value": [
|
|
25
|
+
{ "color": "{color.yellow.L5}", "position": 0 },
|
|
26
|
+
{ "color": "{color.plum.L5}", "position": 0.125 },
|
|
27
|
+
{ "color": "{color.blue.L4}", "position": 0.25 },
|
|
28
|
+
{ "color": "{color.plum.L5}", "position": 0.375 },
|
|
29
|
+
{ "color": "{color.yellow.L5}", "position": 0.5 },
|
|
30
|
+
{ "color": "{color.plum.L5}", "position": 0.625 },
|
|
31
|
+
{ "color": "{color.blue.L4}", "position": 0.75 },
|
|
32
|
+
{ "color": "{color.plum.L5}", "position": 0.875 },
|
|
33
|
+
{ "color": "{color.yellow.L5}", "position": 1 }
|
|
34
|
+
]
|
|
20
35
|
}
|
|
21
36
|
}
|
|
22
37
|
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { Config, Dictionary, PlatformConfig } from 'style-dictionary/types';
|
|
2
|
-
export declare function appendAnimations(_dictionary: Dictionary, config: PlatformConfig, options: Config): void;
|
|
3
|
-
export declare function removeAnimations(_dictionary: Dictionary, config: PlatformConfig, options: Config): void;
|