@neo4j-ndl/base 3.3.22 → 3.4.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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +93 -0
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -7683,6 +7683,99 @@ button.ndl-avatar:focus-visible {
|
|
|
7683
7683
|
transparent 100%
|
|
7684
7684
|
);
|
|
7685
7685
|
}
|
|
7686
|
+
.ndl-ai-presence{
|
|
7687
|
+
--animation-duration:1.5s;
|
|
7688
|
+
}
|
|
7689
|
+
.ndl-ai-presence.ndl-thinking path:nth-of-type(2){
|
|
7690
|
+
stroke-dasharray:100%;
|
|
7691
|
+
stroke-dashoffset:-40%;
|
|
7692
|
+
animation:draw var(--animation-duration) linear infinite;
|
|
7693
|
+
}
|
|
7694
|
+
.ndl-ai-presence.ndl-thinking path:nth-of-type(3){
|
|
7695
|
+
animation:draw-reverse var(--animation-duration) linear infinite;
|
|
7696
|
+
stroke-dasharray:100%;
|
|
7697
|
+
stroke-dashoffset:-40%;
|
|
7698
|
+
}
|
|
7699
|
+
.ndl-ai-presence.ndl-thinking circle:last-of-type{
|
|
7700
|
+
animation:pulse var(--animation-duration) infinite ease-in-out;
|
|
7701
|
+
}
|
|
7702
|
+
.ndl-ai-presence.ndl-thinking circle:first-of-type{
|
|
7703
|
+
animation:pulse-reverse var(--animation-duration) infinite ease-in-out;
|
|
7704
|
+
}
|
|
7705
|
+
@keyframes draw{
|
|
7706
|
+
0%{
|
|
7707
|
+
stroke-dashoffset:100%;
|
|
7708
|
+
}
|
|
7709
|
+
10%{
|
|
7710
|
+
stroke-dashoffset:50%;
|
|
7711
|
+
}
|
|
7712
|
+
25%{
|
|
7713
|
+
stroke-dashoffset:0;
|
|
7714
|
+
}
|
|
7715
|
+
40%{
|
|
7716
|
+
stroke-dashoffset:-40%;
|
|
7717
|
+
}
|
|
7718
|
+
50%{
|
|
7719
|
+
stroke-dashoffset:-100%;
|
|
7720
|
+
}
|
|
7721
|
+
100%{
|
|
7722
|
+
stroke-dashoffset:-100%;
|
|
7723
|
+
}
|
|
7724
|
+
}
|
|
7725
|
+
@keyframes draw-reverse{
|
|
7726
|
+
0%{
|
|
7727
|
+
stroke-dashoffset:100%;
|
|
7728
|
+
}
|
|
7729
|
+
50%{
|
|
7730
|
+
stroke-dashoffset:100%;
|
|
7731
|
+
}
|
|
7732
|
+
60%{
|
|
7733
|
+
stroke-dashoffset:50%;
|
|
7734
|
+
}
|
|
7735
|
+
75%{
|
|
7736
|
+
stroke-dashoffset:0;
|
|
7737
|
+
}
|
|
7738
|
+
90%{
|
|
7739
|
+
stroke-dashoffset:-40%;
|
|
7740
|
+
}
|
|
7741
|
+
100%{
|
|
7742
|
+
stroke-dashoffset:-100%;
|
|
7743
|
+
}
|
|
7744
|
+
}
|
|
7745
|
+
@keyframes pulse{
|
|
7746
|
+
0%{
|
|
7747
|
+
r:8%;
|
|
7748
|
+
}
|
|
7749
|
+
35%{
|
|
7750
|
+
r:5%;
|
|
7751
|
+
}
|
|
7752
|
+
50%{
|
|
7753
|
+
r:5%;
|
|
7754
|
+
}
|
|
7755
|
+
70%{
|
|
7756
|
+
r:5%;
|
|
7757
|
+
}
|
|
7758
|
+
100%{
|
|
7759
|
+
r:8%;
|
|
7760
|
+
}
|
|
7761
|
+
}
|
|
7762
|
+
@keyframes pulse-reverse{
|
|
7763
|
+
0%{
|
|
7764
|
+
r:5%;
|
|
7765
|
+
}
|
|
7766
|
+
20%{
|
|
7767
|
+
r:5%;
|
|
7768
|
+
}
|
|
7769
|
+
50%{
|
|
7770
|
+
r:8%;
|
|
7771
|
+
}
|
|
7772
|
+
85%{
|
|
7773
|
+
r:5%;
|
|
7774
|
+
}
|
|
7775
|
+
100%{
|
|
7776
|
+
r:5%;
|
|
7777
|
+
}
|
|
7778
|
+
}
|
|
7686
7779
|
.n-absolute {
|
|
7687
7780
|
position:absolute;
|
|
7688
7781
|
}
|
package/lib/tokens/js/tokens.js
CHANGED