@neo4j-ndl/base 1.3.7 → 1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 77bf1d9: new drawer component
8
+
3
9
  ## 1.3.7
4
10
 
5
11
  ### Patch Changes
package/lib/LICENSES.txt CHANGED
@@ -12036,6 +12036,32 @@ By: Ika
12036
12036
 
12037
12037
  -----
12038
12038
 
12039
+ The following software may be included in this product: re-resizable. A copy of the source code may be downloaded from https://github.com/bokuweb/react-resizable-box.git. This software contains the following license and notice below:
12040
+
12041
+ The MIT License (MIT)
12042
+
12043
+ Copyright (c) 2018 @bokuweb
12044
+
12045
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12046
+ of this software and associated documentation files (the "Software"), to deal
12047
+ in the Software without restriction, including without limitation the rights
12048
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12049
+ copies of the Software, and to permit persons to whom the Software is
12050
+ furnished to do so, subject to the following conditions:
12051
+
12052
+ The above copyright notice and this permission notice shall be included in all
12053
+ copies or substantial portions of the Software.
12054
+
12055
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12056
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12057
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
12058
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
12059
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
12060
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
12061
+ SOFTWARE.
12062
+
12063
+ -----
12064
+
12039
12065
  The following software may be included in this product: react-dropzone. A copy of the source code may be downloaded from https://github.com/react-dropzone/react-dropzone.git. This software contains the following license and notice below:
12040
12066
 
12041
12067
  The MIT License (MIT)
package/lib/NOTICE.txt CHANGED
@@ -211,6 +211,10 @@ Third-party licenses
211
211
  │ │ ├─ URL: git+https://github.com/prettier/prettier.git
212
212
  │ │ ├─ VendorName: James Long
213
213
  │ │ └─ VendorUrl: https://prettier.io
214
+ │ ├─ re-resizable@npm:6.9.9 [a2e03] (via npm:^6.9.9 [a2e03])
215
+ │ │ ├─ URL: https://github.com/bokuweb/react-resizable-box.git
216
+ │ │ ├─ VendorName: bokuweb
217
+ │ │ └─ VendorUrl: https://github.com/bokuweb/react-resizable-box
214
218
  │ ├─ react@npm:17.0.2 (via npm:^17.0.2)
215
219
  │ │ ├─ URL: https://github.com/facebook/react.git
216
220
  │ │ └─ VendorUrl: https://reactjs.org/
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 16 May 2023 11:07:52 GMT
4
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
5
5
  */
6
6
  exports.__esModule = true;
7
7
  exports.tokens = void 0;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 16 May 2023 11:07:52 GMT
4
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
5
5
  */
6
6
  module.exports = {
7
7
  "transitions": {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 16 May 2023 11:07:52 GMT
3
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
4
4
  */
5
5
  export const tokens = {
6
6
  "transitions": {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 16 May 2023 11:07:52 GMT
4
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
5
5
  */
6
6
  module.exports = {
7
7
  "transitions": {
@@ -459,7 +459,7 @@ video {
459
459
  */
460
460
  /**
461
461
  * Do not edit directly
462
- * Generated on Tue, 16 May 2023 11:07:52 GMT
462
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
463
463
  */
464
464
  :root {
465
465
  --transitions-values-properties-default: all;
@@ -2695,6 +2695,105 @@ a.ndl-btn{
2695
2695
  justify-content: flex-end;
2696
2696
  gap: 1rem;
2697
2697
  }
2698
+ /**
2699
+ *
2700
+ * Copyright (c) "Neo4j"
2701
+ * Neo4j Sweden AB [http://neo4j.com]
2702
+ *
2703
+ * This file is part of Neo4j.
2704
+ *
2705
+ * Neo4j is free software: you can redistribute it and/or modify
2706
+ * it under the terms of the GNU General Public License as published by
2707
+ * the Free Software Foundation, either version 3 of the License, or
2708
+ * (at your option) any later version.
2709
+ *
2710
+ * This program is distributed in the hope that it will be useful,
2711
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
2712
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2713
+ * GNU General Public License for more details.
2714
+ *
2715
+ * You should have received a copy of the GNU General Public License
2716
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
2717
+ */
2718
+ .ndl-drawer{
2719
+ position: relative;
2720
+ box-sizing: content-box;
2721
+ display: none;
2722
+ flex-direction: column;
2723
+ background-color: rgb(var(--palette-neutral-bg-weak));
2724
+ padding: 1.5rem;
2725
+ }
2726
+ .ndl-drawer.ndl-drawer-expanded{
2727
+ display: flex;
2728
+ }
2729
+ .ndl-drawer .ndl-drawer-close-button{
2730
+ position: absolute;
2731
+ top: 1rem;
2732
+ }
2733
+ .ndl-drawer.ndl-drawer-left{
2734
+ border-right-width: 1px;
2735
+ border-style: solid;
2736
+ border-color: rgb(var(--palette-neutral-border-weak));
2737
+ }
2738
+ .ndl-drawer.ndl-drawer-left .ndl-drawer-header{
2739
+ margin-right: 3rem;
2740
+ padding-bottom: 1rem;
2741
+ text-align: left;
2742
+ }
2743
+ .ndl-drawer.ndl-drawer-left .ndl-drawer-actions{
2744
+ margin-top: auto;
2745
+ display: flex;
2746
+ justify-content: flex-end;
2747
+ gap: 1rem;
2748
+ padding-top: 1rem;
2749
+ }
2750
+ .ndl-drawer.ndl-drawer-left .ndl-drawer-close-button{
2751
+ left: unset;
2752
+ right: 1rem;
2753
+ }
2754
+ .ndl-drawer.ndl-drawer-right{
2755
+ border-left-width: 1px;
2756
+ border-style: solid;
2757
+ border-color: rgb(var(--palette-neutral-border-weak));
2758
+ }
2759
+ .ndl-drawer.ndl-drawer-right .ndl-drawer-header{
2760
+ margin-left: 3rem;
2761
+ padding-bottom: 1rem;
2762
+ text-align: right;
2763
+ }
2764
+ .ndl-drawer.ndl-drawer-right .ndl-drawer-actions{
2765
+ margin-top: auto;
2766
+ display: flex;
2767
+ justify-content: flex-start;
2768
+ gap: 1rem;
2769
+ padding-top: 1rem;
2770
+ }
2771
+ .ndl-drawer.ndl-drawer-right .ndl-drawer-close-button{
2772
+ right: unset;
2773
+ left: 1rem;
2774
+ }
2775
+ .ndl-drawer.ndl-drawer-overlay{
2776
+ position: absolute;
2777
+ top: 0px;
2778
+ bottom: 0px;
2779
+ --tw-shadow: 0px 8px 20px 0px rgba(12, 26, 37, 0.12);
2780
+ --tw-shadow-colored: 0px 8px 20px 0px var(--tw-shadow-color);
2781
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2782
+ }
2783
+ .ndl-drawer.ndl-drawer-overlay.ndl-drawer-left{
2784
+ left: 0px;
2785
+ }
2786
+ .ndl-drawer.ndl-drawer-overlay.ndl-drawer-right{
2787
+ right: 0px;
2788
+ }
2789
+ .ndl-drawer.ndl-drawer-push{
2790
+ position: relative;
2791
+ }
2792
+ .ndl-drawer .ndl-drawer-content{
2793
+ display: flex;
2794
+ height: 100%;
2795
+ flex-direction: column;
2796
+ }
2698
2797
  /**
2699
2798
  *
2700
2799
  * Copyright (c) "Neo4j"
@@ -5025,6 +5124,9 @@ a.cm-editor .cm-button{
5025
5124
  .n-h-4{
5026
5125
  height: 1rem;
5027
5126
  }
5127
+ .n-h-6{
5128
+ height: 1.5rem;
5129
+ }
5028
5130
  .n-h-10{
5029
5131
  height: 2.5rem;
5030
5132
  }
@@ -5043,9 +5145,6 @@ a.cm-editor .cm-button{
5043
5145
  .n-h-7{
5044
5146
  height: 1.75rem;
5045
5147
  }
5046
- .n-h-6{
5047
- height: 1.5rem;
5048
- }
5049
5148
  .n-h-36{
5050
5149
  height: 9rem;
5051
5150
  }
@@ -5058,6 +5157,9 @@ a.cm-editor .cm-button{
5058
5157
  .n-w-4{
5059
5158
  width: 1rem;
5060
5159
  }
5160
+ .n-w-6{
5161
+ width: 1.5rem;
5162
+ }
5061
5163
  .n-w-10{
5062
5164
  width: 2.5rem;
5063
5165
  }
@@ -5076,9 +5178,6 @@ a.cm-editor .cm-button{
5076
5178
  .n-w-48{
5077
5179
  width: 12rem;
5078
5180
  }
5079
- .n-w-6{
5080
- width: 1.5rem;
5081
- }
5082
5181
  .n-w-36{
5083
5182
  width: 9rem;
5084
5183
  }
@@ -5247,12 +5346,12 @@ a.cm-editor .cm-button{
5247
5346
  .n-rounded-2xl{
5248
5347
  border-radius: 14px;
5249
5348
  }
5250
- .n-border{
5251
- border-width: 1px;
5252
- }
5253
5349
  .n-border-2{
5254
5350
  border-width: 2px;
5255
5351
  }
5352
+ .n-border{
5353
+ border-width: 1px;
5354
+ }
5256
5355
  .n-border-b-2{
5257
5356
  border-bottom-width: 2px;
5258
5357
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 16 May 2023 11:07:52 GMT
3
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 16 May 2023 11:07:52 GMT
3
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 16 May 2023 11:07:52 GMT
3
+ * Generated on Wed, 24 May 2023 08:20:22 GMT
4
4
  */
5
5
 
6
6
  export const tokens = {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 16 May 2023 11:07:52 GMT
3
+ // Generated on Wed, 24 May 2023 08:20:22 GMT
4
4
 
5
5
  $transitions-values-properties-default: all;
6
6
  $transitions-values-duration-default: 100ms;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-ndl/base",
3
- "version": "1.3.7",
3
+ "version": "1.4.0",
4
4
  "description": "Neo4j base package for the design system",
5
5
  "author": "Neo4j Inc.",
6
6
  "homepage": "",