@neo4j-ndl/base 3.3.21 → 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.
@@ -22,7 +22,7 @@
22
22
  "use strict";
23
23
  /**
24
24
  * Do not edit directly
25
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
25
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
26
26
  */
27
27
  Object.defineProperty(exports, "__esModule", { value: true });
28
28
  exports.tokens = void 0;
@@ -22,7 +22,7 @@
22
22
  "use strict";
23
23
  /**
24
24
  * Do not edit directly
25
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
25
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
26
26
  */
27
27
  Object.defineProperty(exports, "__esModule", { value: true });
28
28
  exports.tokens = void 0;
@@ -22,7 +22,7 @@
22
22
  "use strict";
23
23
  /**
24
24
  * Do not edit directly
25
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
25
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
26
26
  */
27
27
  module.exports = {
28
28
  "transitions": {
@@ -21,7 +21,7 @@
21
21
 
22
22
  /**
23
23
  * Do not edit directly
24
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
24
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
25
25
  */
26
26
  export const tokens = {
27
27
  "transitions": [
@@ -21,7 +21,7 @@
21
21
 
22
22
  /**
23
23
  * Do not edit directly
24
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
24
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
25
25
  */
26
26
  export const tokens = {
27
27
  "transitions": {
@@ -22,7 +22,7 @@
22
22
  "use strict";
23
23
  /**
24
24
  * Do not edit directly
25
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
25
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
26
26
  */
27
27
  module.exports = {
28
28
  "transitions": {
@@ -3212,7 +3212,10 @@ a.ndl-btn {
3212
3212
  .ndl-modal-root {
3213
3213
  z-index:60;
3214
3214
  }
3215
- .ndl-modal{
3215
+ .ndl-modal {
3216
+ border-width:1px;
3217
+ border-style:solid;
3218
+ border-color:rgb(var(--theme-palette-neutral-border-weak));
3216
3219
  position:relative;
3217
3220
  overflow-y:auto;
3218
3221
  display:inline-block;
@@ -3235,6 +3238,8 @@ a.ndl-btn {
3235
3238
  height:100%;
3236
3239
  overflow:hidden auto;
3237
3240
  text-align:center;
3241
+ -webkit-backdrop-filter:blur(4px);
3242
+ backdrop-filter:blur(4px);
3238
3243
  }
3239
3244
  .ndl-modal-wrapper:after{
3240
3245
  content:'';
@@ -7678,6 +7683,99 @@ button.ndl-avatar:focus-visible {
7678
7683
  transparent 100%
7679
7684
  );
7680
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
+ }
7681
7779
  .n-absolute {
7682
7780
  position:absolute;
7683
7781
  }
@@ -21,7 +21,7 @@
21
21
 
22
22
  /**
23
23
  * Do not edit directly
24
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
24
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
25
25
  */
26
26
 
27
27
  :root {
@@ -21,7 +21,7 @@
21
21
 
22
22
  /**
23
23
  * Do not edit directly
24
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
24
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
25
25
  */
26
26
 
27
27
  module.exports = {
@@ -21,7 +21,7 @@
21
21
 
22
22
  /**
23
23
  * Do not edit directly
24
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
24
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
25
25
  */
26
26
 
27
27
  export const tokens = {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 14 Apr 2025 13:18:20 GMT
3
+ // Generated on Tue, 15 Apr 2025 13:07:42 GMT
4
4
 
5
5
  $transitions-values-properties-default: all;
6
6
  $transitions-values-duration-quick: 100ms;
@@ -21,7 +21,7 @@
21
21
 
22
22
  /**
23
23
  * Do not edit directly
24
- * Generated on Mon, 14 Apr 2025 13:18:20 GMT
24
+ * Generated on Tue, 15 Apr 2025 13:07:42 GMT
25
25
  */
26
26
  export const tokens: {
27
27
  transitions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-ndl/base",
3
- "version": "3.3.21",
3
+ "version": "3.4.0",
4
4
  "description": "Neo4j base package for the design system",
5
5
  "author": "Neo4j Inc.",
6
6
  "homepage": "https://www.neo4j.design",