@neo4j-ndl/base 0.9.2 → 0.11.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 714082b: Add custom title, change open filepicker behaviour and enable custom file extension
|
|
8
|
+
|
|
9
|
+
## 0.10.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 10cd0fc: Fixed spaces in Dialog component according to design
|
|
14
|
+
|
|
3
15
|
## 0.9.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -420,7 +420,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
420
420
|
*/
|
|
421
421
|
/**
|
|
422
422
|
* Do not edit directly
|
|
423
|
-
* Generated on
|
|
423
|
+
* Generated on Wed, 23 Nov 2022 13:14:33 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -757,6 +757,7 @@ h6,
|
|
|
757
757
|
}
|
|
758
758
|
.ndl-btn.loading{
|
|
759
759
|
cursor: default;
|
|
760
|
+
vertical-align: middle;
|
|
760
761
|
opacity: 0.5;
|
|
761
762
|
}
|
|
762
763
|
.ndl-btn.rectangle{
|
|
@@ -2339,7 +2340,6 @@ a.ndl-btn{
|
|
|
2339
2340
|
margin-bottom: 1rem;
|
|
2340
2341
|
}
|
|
2341
2342
|
.ndl-dialog-description{
|
|
2342
|
-
min-height: 110px;
|
|
2343
2343
|
--tw-text-opacity: 1;
|
|
2344
2344
|
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
2345
2345
|
}
|
|
@@ -2347,10 +2347,10 @@ a.ndl-btn{
|
|
|
2347
2347
|
min-height: 70px;
|
|
2348
2348
|
}
|
|
2349
2349
|
.ndl-dialog-actions{
|
|
2350
|
-
margin-top:
|
|
2350
|
+
margin-top: 3.5rem;
|
|
2351
2351
|
display: flex;
|
|
2352
2352
|
justify-content: flex-end;
|
|
2353
|
-
gap:
|
|
2353
|
+
gap: 1rem;
|
|
2354
2354
|
}
|
|
2355
2355
|
/**
|
|
2356
2356
|
*
|
|
@@ -2964,6 +2964,9 @@ a.ndl-btn{
|
|
|
2964
2964
|
--tw-bg-opacity: 1;
|
|
2965
2965
|
background-color: rgb(237 18 82 / var(--tw-bg-opacity));
|
|
2966
2966
|
}
|
|
2967
|
+
.drag-and-drop-error-alert{
|
|
2968
|
+
margin-bottom: 1rem;
|
|
2969
|
+
}
|
|
2967
2970
|
/**
|
|
2968
2971
|
*
|
|
2969
2972
|
* Copyright (c) "Neo4j"
|
package/lib/tokens/js/tokens.js
CHANGED