@neo4j-ndl/base 0.13.0 → 0.15.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,27 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 12a9a61: StatusIndicator component
|
|
8
|
+
|
|
9
|
+
## 0.14.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- c210389: New custom icon.
|
|
14
|
+
|
|
15
|
+
collapse-expand-left
|
|
16
|
+
collapse-expand-right
|
|
17
|
+
|
|
18
|
+
collapse-expand deprecated; replaced by collapse-expand-left
|
|
19
|
+
|
|
20
|
+
Added missing .svg icons.
|
|
21
|
+
|
|
22
|
+
configure.svg
|
|
23
|
+
status.svg
|
|
24
|
+
|
|
3
25
|
## 0.13.0
|
|
4
26
|
|
|
5
27
|
### Minor 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 Thu, 08 Dec 2022 11:26:14 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -3570,6 +3570,33 @@ a.ndl-btn{
|
|
|
3570
3570
|
content: "";
|
|
3571
3571
|
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.0" aria-hidden="true" stroke="%23004092"><path stroke-linecap="round" stroke-linejoin="round" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path></svg>');
|
|
3572
3572
|
}
|
|
3573
|
+
/**
|
|
3574
|
+
*
|
|
3575
|
+
* Copyright (c) "Neo4j"
|
|
3576
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
3577
|
+
*
|
|
3578
|
+
* This file is part of Neo4j.
|
|
3579
|
+
*
|
|
3580
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
3581
|
+
* it under the terms of the GNU General Public License as published by
|
|
3582
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
3583
|
+
* (at your option) any later version.
|
|
3584
|
+
*
|
|
3585
|
+
* This program is distributed in the hope that it will be useful,
|
|
3586
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
3587
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
3588
|
+
* GNU General Public License for more details.
|
|
3589
|
+
*
|
|
3590
|
+
* You should have received a copy of the GNU General Public License
|
|
3591
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
3592
|
+
*/
|
|
3593
|
+
/* The svg has hardcoded stroke colors (only inline svg can use css) */
|
|
3594
|
+
.ndl-status-indicator{
|
|
3595
|
+
display: inline-block;
|
|
3596
|
+
margin-bottom: 0.125rem;
|
|
3597
|
+
margin-left: 0.25rem;
|
|
3598
|
+
margin-right: 0.25rem;
|
|
3599
|
+
}
|
|
3573
3600
|
.n-sr-only{
|
|
3574
3601
|
position: absolute;
|
|
3575
3602
|
width: 1px;
|
package/lib/tokens/js/tokens.js
CHANGED