@neo4j-ndl/base 0.6.2 → 0.8.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.
@@ -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 Mon, 08 Aug 2022 09:13:42 GMT
423
+ * Generated on Fri, 09 Sep 2022 08:09:08 GMT
424
424
  */
425
425
  :root {
426
426
  --border-radius-sm: 4px;
@@ -1342,6 +1342,7 @@ a.ndl-btn{
1342
1342
  }
1343
1343
  .ndl-alert .alert-content{
1344
1344
  flex: 1 1 0%;
1345
+ overflow: auto;
1345
1346
  }
1346
1347
  .ndl-alert .alert-title{
1347
1348
  display: flex;
@@ -3052,6 +3053,395 @@ a.ndl-btn{
3052
3053
  .ndl-icon {
3053
3054
  stroke-width: 1.5;
3054
3055
  }
3056
+ /**
3057
+ *
3058
+ * Copyright (c) "Neo4j"
3059
+ * Neo4j Sweden AB [http://neo4j.com]
3060
+ *
3061
+ * This file is part of Neo4j.
3062
+ *
3063
+ * Neo4j is free software: you can redistribute it and/or modify
3064
+ * it under the terms of the GNU General Public License as published by
3065
+ * the Free Software Foundation, either version 3 of the License, or
3066
+ * (at your option) any later version.
3067
+ *
3068
+ * This program is distributed in the hope that it will be useful,
3069
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
3070
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3071
+ * GNU General Public License for more details.
3072
+ *
3073
+ * You should have received a copy of the GNU General Public License
3074
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
3075
+ */
3076
+ .ndl-node-label{
3077
+ position: relative;
3078
+ display: inline-block;
3079
+ cursor: pointer;
3080
+ border-radius: 12px;
3081
+ padding-top: 2px;
3082
+ padding-bottom: 2px;
3083
+ padding-left: 0.5rem;
3084
+ padding-right: 0.5rem;
3085
+ font-size: var(--font-size-label);
3086
+ font-weight: var(--font-weight-bold);
3087
+ letter-spacing: 0px;
3088
+ line-height: 20px;
3089
+ }
3090
+ /* Adds an after element that's bigger than the original element and give it a border to get the blue active and focus border.
3091
+ This border should have som space between itself and the original element. */
3092
+ .ndl-node-label:after{
3093
+ position: absolute;
3094
+ top: -3px;
3095
+ right: -3px;
3096
+ bottom: -3px;
3097
+ left: -3px;
3098
+ border-radius: 20px;
3099
+ border-width: 2px;
3100
+ border-style: solid;
3101
+ border-color: transparent;
3102
+ --tw-content: '';
3103
+ content: var(--tw-content);
3104
+ }
3105
+ .ndl-node-label:focus-visible{
3106
+ outline: 2px solid transparent;
3107
+ outline-offset: 2px;
3108
+ }
3109
+ .ndl-node-label:not(.disabled):hover{
3110
+ --tw-brightness: brightness(92%);
3111
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
3112
+ }
3113
+ .ndl-node-label:not(.disabled).selected:after, .ndl-node-label:not(.disabled):active:after, .ndl-node-label:not(.disabled):focus-visible:after{
3114
+ --tw-border-opacity: 1;
3115
+ border-color: rgb(1 139 255 / var(--tw-border-opacity));
3116
+ }
3117
+ .ndl-node-label.disabled{
3118
+ cursor: default;
3119
+ --tw-text-opacity: 1;
3120
+ color: rgb(113 119 128 / var(--tw-text-opacity));
3121
+ }
3122
+ .ndl-property-key-label{
3123
+ position: relative;
3124
+ display: inline-block;
3125
+ cursor: pointer;
3126
+ word-break: break-all;
3127
+ border-radius: 4px;
3128
+ --tw-bg-opacity: 1;
3129
+ background-color: rgb(83 91 102 / var(--tw-bg-opacity));
3130
+ padding-top: 0.125rem;
3131
+ padding-bottom: 0.125rem;
3132
+ padding-left: 0.5rem;
3133
+ padding-right: 0.5rem;
3134
+ --tw-text-opacity: 1;
3135
+ color: rgb(255 255 255 / var(--tw-text-opacity));
3136
+ font-size: var(--font-size-label);
3137
+ font-weight: var(--font-weight-bold);
3138
+ letter-spacing: 0px;
3139
+ line-height: 20px;
3140
+ }
3141
+ .ndl-property-key-label.disabled{
3142
+ cursor: default;
3143
+ --tw-text-opacity: 1;
3144
+ color: rgb(178 183 189 / var(--tw-text-opacity));
3145
+ }
3146
+ .ndl-property-key-label:after{
3147
+ position: absolute;
3148
+ top: -3px;
3149
+ right: -3px;
3150
+ bottom: -3px;
3151
+ left: -3px;
3152
+ border-radius: 6px;
3153
+ border-width: 2px;
3154
+ border-style: solid;
3155
+ border-color: transparent;
3156
+ --tw-content: '';
3157
+ content: var(--tw-content);
3158
+ }
3159
+ .ndl-property-key-label:focus-visible{
3160
+ outline: 2px solid transparent;
3161
+ outline-offset: 2px;
3162
+ }
3163
+ .ndl-property-key-label:not(.disabled):hover{
3164
+ --tw-bg-opacity: 92%;
3165
+ }
3166
+ .ndl-property-key-label:not(.disabled).selected:after, .ndl-property-key-label:not(.disabled):active:after, .ndl-property-key-label:not(.disabled):focus-visible:after{
3167
+ --tw-border-opacity: 1;
3168
+ border-color: rgb(1 139 255 / var(--tw-border-opacity));
3169
+ }
3170
+ .ndl-relationship-label{
3171
+ position: relative;
3172
+ display: inline-block;
3173
+ cursor: pointer;
3174
+ }
3175
+ .ndl-relationship-label .ndl-relationship-label-content{
3176
+ position: relative;
3177
+ z-index: 10;
3178
+ display: inline-block;
3179
+ word-break: break-all;
3180
+ border-width: 1px;
3181
+ border-left-width: 0px;
3182
+ border-right-width: 0px;
3183
+ border-top-width: 0.5px;
3184
+ border-bottom-width: 0.5px;
3185
+ border-style: solid;
3186
+ --tw-border-opacity: 1;
3187
+ border-color: rgb(196 200 205 / var(--tw-border-opacity));
3188
+ --tw-bg-opacity: 1;
3189
+ background-color: rgb(245 247 250 / var(--tw-bg-opacity));
3190
+ padding-top: 2px;
3191
+ padding-bottom: 1px;
3192
+ font-size: var(--font-size-label);
3193
+ font-weight: var(--font-weight-bold);
3194
+ letter-spacing: 0px;
3195
+ line-height: 20px;
3196
+ }
3197
+ .ndl-relationship-label .ndl-relationship-label-content:after{
3198
+ position: absolute;
3199
+ left: 0px;
3200
+ right: 0px;
3201
+ bottom: -3.5px;
3202
+ height: 2px;
3203
+ background-color: transparent;
3204
+ --tw-content: '';
3205
+ content: var(--tw-content);
3206
+ }
3207
+ .ndl-relationship-label .ndl-relationship-label-content:before{
3208
+ position: absolute;
3209
+ left: 0px;
3210
+ right: 0px;
3211
+ top: -3.5px;
3212
+ height: 2px;
3213
+ background-color: transparent;
3214
+ --tw-content: '';
3215
+ content: var(--tw-content);
3216
+ }
3217
+ .ndl-relationship-label .ndl-hexagon-end{
3218
+ position: relative;
3219
+ display: inline-block;
3220
+ vertical-align: bottom;
3221
+ }
3222
+ .ndl-relationship-label .ndl-hexagon-end.right{
3223
+ z-index: 0;
3224
+ --tw-rotate: 180deg;
3225
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3226
+ }
3227
+ .ndl-relationship-label .ndl-hexagon-end .ndl-hexagon-end-inner{
3228
+ fill: #F5F7FA;
3229
+ }
3230
+ .ndl-relationship-label .ndl-hexagon-end .ndl-hexagon-end-outer{
3231
+ fill: #C4C8CD;
3232
+ }
3233
+ .ndl-relationship-label .ndl-hexagon-end .ndl-hexagon-end-active{
3234
+ position: absolute;
3235
+ top: -3px;
3236
+ left: -3px;
3237
+ }
3238
+ .ndl-relationship-label:not(.disabled):hover .ndl-relationship-label-content{
3239
+ --tw-border-opacity: 1;
3240
+ border-color: rgb(182 186 192 / var(--tw-border-opacity));
3241
+ --tw-bg-opacity: 1;
3242
+ background-color: rgb(227 230 233 / var(--tw-bg-opacity));
3243
+ }
3244
+ .ndl-relationship-label:not(.disabled):hover .ndl-hexagon-end-inner{
3245
+ fill: #E3E6E9;
3246
+ }
3247
+ .ndl-relationship-label:not(.disabled):hover .ndl-hexagon-end-outer{
3248
+ fill: #B6BAC0;
3249
+ }
3250
+ .ndl-relationship-label:not(.disabled).selected .ndl-hexagon-end-active, .ndl-relationship-label:not(.disabled):focus-visible .ndl-hexagon-end-active, .ndl-relationship-label:not(.disabled):active .ndl-hexagon-end-active{
3251
+ fill: #018bff;
3252
+ }
3253
+ .ndl-relationship-label:not(.disabled).selected .ndl-relationship-label-content:after, .ndl-relationship-label:not(.disabled):focus-visible .ndl-relationship-label-content:after, .ndl-relationship-label:not(.disabled):active .ndl-relationship-label-content:after{
3254
+ --tw-bg-opacity: 1;
3255
+ background-color: rgb(1 139 255 / var(--tw-bg-opacity));
3256
+ }
3257
+ .ndl-relationship-label:not(.disabled).selected .ndl-relationship-label-content:before, .ndl-relationship-label:not(.disabled):focus-visible .ndl-relationship-label-content:before, .ndl-relationship-label:not(.disabled):active .ndl-relationship-label-content:before{
3258
+ --tw-bg-opacity: 1;
3259
+ background-color: rgb(1 139 255 / var(--tw-bg-opacity));
3260
+ }
3261
+ .ndl-relationship-label:focus-visible{
3262
+ outline: 2px solid transparent;
3263
+ outline-offset: 2px;
3264
+ }
3265
+ .ndl-relationship-label.disabled{
3266
+ cursor: default;
3267
+ }
3268
+ .ndl-relationship-label.disabled .ndl-relationship-label-content{
3269
+ --tw-text-opacity: 1;
3270
+ color: rgb(113 119 128 / var(--tw-text-opacity));
3271
+ }
3272
+ /**
3273
+ *
3274
+ * Copyright (c) "Neo4j"
3275
+ * Neo4j Sweden AB [http://neo4j.com]
3276
+ *
3277
+ * This file is part of Neo4j.
3278
+ *
3279
+ * Neo4j is free software: you can redistribute it and/or modify
3280
+ * it under the terms of the GNU General Public License as published by
3281
+ * the Free Software Foundation, either version 3 of the License, or
3282
+ * (at your option) any later version.
3283
+ *
3284
+ * This program is distributed in the hope that it will be useful,
3285
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
3286
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3287
+ * GNU General Public License for more details.
3288
+ *
3289
+ * You should have received a copy of the GNU General Public License
3290
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
3291
+ */
3292
+ .ndl-wizard-circle{
3293
+ z-index: 2;
3294
+ --tw-text-opacity: 1;
3295
+ color: rgb(21 30 41 / var(--tw-text-opacity));
3296
+ }
3297
+ .ndl-wizard-circle .text.horizontal{
3298
+ position: absolute;
3299
+ bottom: 0.5rem;
3300
+ left: 50%;
3301
+ min-width: 50px;
3302
+ --tw-translate-x: -50%;
3303
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3304
+ text-align: center;
3305
+ }
3306
+ .ndl-wizard-circle .text.vertical{
3307
+ position: absolute;
3308
+ left: 4rem;
3309
+ min-width: 140px;
3310
+ --tw-translate-y: 35%;
3311
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3312
+ text-align: left;
3313
+ }
3314
+ .ndl-horizontal-wizard{
3315
+ position: relative;
3316
+ display: flex;
3317
+ width: 100%;
3318
+ align-items: center;
3319
+ }
3320
+ .ndl-vertical-wizard{
3321
+ position: relative;
3322
+ display: flex;
3323
+ height: 100%;
3324
+ width: -webkit-fit-content;
3325
+ width: -moz-fit-content;
3326
+ width: fit-content;
3327
+ flex-direction: column;
3328
+ align-items: center;
3329
+ }
3330
+ .ndl-footer-wizard{
3331
+ position: relative;
3332
+ width: -webkit-fit-content;
3333
+ width: -moz-fit-content;
3334
+ width: fit-content;
3335
+ }
3336
+ .ndl-line-gradient {
3337
+ background: linear-gradient(
3338
+ 270deg,
3339
+ rgba(178, 183, 189, 1) 0%,
3340
+ rgb(0 111 214) 100%
3341
+ );
3342
+ }
3343
+ .ndl-line-gradient-vertical {
3344
+ background: linear-gradient(
3345
+ 1deg,
3346
+ rgba(178, 183, 189, 1) 0%,
3347
+ rgb(0 111 214) 100%
3348
+ );
3349
+ }
3350
+ .ndl-wizard-line {
3351
+ z-index: 1;
3352
+ }
3353
+ .ndl-wizard-line.complete{
3354
+ --tw-bg-opacity: 1;
3355
+ background-color: rgb(0 111 214 / var(--tw-bg-opacity));
3356
+ }
3357
+ .ndl-wizard-line.incomplete{
3358
+ --tw-bg-opacity: 1;
3359
+ background-color: rgb(178 183 189 / var(--tw-bg-opacity));
3360
+ }
3361
+ .ndl-wizard-line.active.horizontal {
3362
+ background: linear-gradient(
3363
+ 270deg,
3364
+ rgba(178, 183, 189, 1) 0%,
3365
+ rgb(0 111 214) 100%
3366
+ );
3367
+ }
3368
+ .ndl-wizard-line.active.vertical {
3369
+ background: linear-gradient(
3370
+ 1deg,
3371
+ rgba(178, 183, 189, 1) 0%,
3372
+ rgb(0 111 214) 100%
3373
+ );
3374
+ }
3375
+ .ndl-wizard-line.horizontal{
3376
+ margin-left: -4px;
3377
+ margin-right: -4px;
3378
+ height: 2px;
3379
+ width: 100%;
3380
+ min-width: 20px;
3381
+ }
3382
+ .ndl-wizard-line.vertical{
3383
+ margin-top: -0.25rem;
3384
+ margin-bottom: -0.25rem;
3385
+ margin-left: 20px;
3386
+ margin-right: 20px;
3387
+ height: 100%;
3388
+ min-height: 20px;
3389
+ width: 2px;
3390
+ }
3391
+ /**
3392
+ *
3393
+ * Copyright (c) "Neo4j"
3394
+ * Neo4j Sweden AB [http://neo4j.com]
3395
+ *
3396
+ * This file is part of Neo4j.
3397
+ *
3398
+ * Neo4j is free software: you can redistribute it and/or modify
3399
+ * it under the terms of the GNU General Public License as published by
3400
+ * the Free Software Foundation, either version 3 of the License, or
3401
+ * (at your option) any later version.
3402
+ *
3403
+ * This program is distributed in the hope that it will be useful,
3404
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
3405
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3406
+ * GNU General Public License for more details.
3407
+ *
3408
+ * You should have received a copy of the GNU General Public License
3409
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
3410
+ */
3411
+ .ndl-code-block-container{
3412
+ height: 100%;
3413
+ overflow: hidden;
3414
+ border-radius: 4px;
3415
+ --tw-bg-opacity: 1;
3416
+ background-color: rgb(245 247 250 / var(--tw-bg-opacity));
3417
+ }
3418
+ .ndl-code-block-container .highlight-wrapper{
3419
+ margin-top: 1rem;
3420
+ }
3421
+ .ndl-code-block-container .highlight-wrapper.has-header{
3422
+ height: calc(100% - 3.5em);
3423
+ }
3424
+ .ndl-code-block-container .highlight-wrapper:not(.has-header){
3425
+ height: 100%;
3426
+ }
3427
+ .ndl-code-block-container .highlight-wrapper.focused{
3428
+ overflow-y: auto;
3429
+ }
3430
+ .ndl-code-block-container .highlight-wrapper:not(.focused){
3431
+ overflow-y: hidden;
3432
+ }
3433
+ /* Component's title */
3434
+ .ndl-code-block-container .ndl-code-block-title{
3435
+ margin-left: 1rem;
3436
+ margin-right: 1rem;
3437
+ margin-top: 1rem;
3438
+ display: flex;
3439
+ align-items: center;
3440
+ justify-content: space-between;
3441
+ }
3442
+ .ndl-code-block-container .ndl-code-block-title.disabled{
3443
+ opacity: 0.5;
3444
+ }
3055
3445
  .n-sr-only{
3056
3446
  position: absolute;
3057
3447
  width: 1px;
@@ -3116,6 +3506,12 @@ a.ndl-btn{
3116
3506
  .n-mt-10{
3117
3507
  margin-top: 2.5rem;
3118
3508
  }
3509
+ .n-mr-6{
3510
+ margin-right: 1.5rem;
3511
+ }
3512
+ .n-ml-6{
3513
+ margin-left: 1.5rem;
3514
+ }
3119
3515
  .n-mt-4{
3120
3516
  margin-top: 1rem;
3121
3517
  }
@@ -3137,6 +3533,9 @@ a.ndl-btn{
3137
3533
  .n-h-4{
3138
3534
  height: 1rem;
3139
3535
  }
3536
+ .n-h-80{
3537
+ height: 20rem;
3538
+ }
3140
3539
  .n-h-10{
3141
3540
  height: 2.5rem;
3142
3541
  }
@@ -3146,6 +3545,12 @@ a.ndl-btn{
3146
3545
  .n-h-full{
3147
3546
  height: 100%;
3148
3547
  }
3548
+ .n-h-\[1px\]{
3549
+ height: 1px;
3550
+ }
3551
+ .n-h-2{
3552
+ height: 0.5rem;
3553
+ }
3149
3554
  .n-h-12{
3150
3555
  height: 3rem;
3151
3556
  }
@@ -3173,6 +3578,12 @@ a.ndl-btn{
3173
3578
  .n-w-6{
3174
3579
  width: 1.5rem;
3175
3580
  }
3581
+ .n-w-32{
3582
+ width: 8rem;
3583
+ }
3584
+ .n-w-2{
3585
+ width: 0.5rem;
3586
+ }
3176
3587
  .n-w-48{
3177
3588
  width: 12rem;
3178
3589
  }
@@ -3235,18 +3646,18 @@ a.ndl-btn{
3235
3646
  .n-gap-2{
3236
3647
  gap: 0.5rem;
3237
3648
  }
3238
- .n-gap-1{
3239
- gap: 0.25rem;
3649
+ .n-gap-6{
3650
+ gap: 1.5rem;
3240
3651
  }
3241
3652
  .n-gap-4{
3242
3653
  gap: 1rem;
3243
3654
  }
3655
+ .n-gap-1{
3656
+ gap: 0.25rem;
3657
+ }
3244
3658
  .n-gap-12{
3245
3659
  gap: 3rem;
3246
3660
  }
3247
- .n-gap-6{
3248
- gap: 1.5rem;
3249
- }
3250
3661
  .n-gap-y-2{
3251
3662
  row-gap: 0.5rem;
3252
3663
  }
@@ -3300,6 +3711,9 @@ a.ndl-btn{
3300
3711
  .n-rounded-lg{
3301
3712
  border-radius: 8px;
3302
3713
  }
3714
+ .n-rounded-5xl{
3715
+ border-radius: 20px;
3716
+ }
3303
3717
  .n-rounded-xl{
3304
3718
  border-radius: 10px;
3305
3719
  }
@@ -3889,6 +4303,18 @@ a.ndl-btn{
3889
4303
  .n-bg-transparent{
3890
4304
  background-color: transparent;
3891
4305
  }
4306
+ .n-fill-light-primary-text{
4307
+ fill: #006FD6;
4308
+ }
4309
+ .n-fill-neutral-10{
4310
+ fill: #FFFFFF;
4311
+ }
4312
+ .n-fill-light-neutral-text-weakest{
4313
+ fill: #B2B7BD;
4314
+ }
4315
+ .n-fill-light-neutral-border-strong{
4316
+ fill: #C4C8CD;
4317
+ }
3892
4318
  .n-p-2{
3893
4319
  padding: 0.5rem;
3894
4320
  }
@@ -3898,6 +4324,14 @@ a.ndl-btn{
3898
4324
  .n-p-14{
3899
4325
  padding: 3.5rem;
3900
4326
  }
4327
+ .n-px-12{
4328
+ padding-left: 3rem;
4329
+ padding-right: 3rem;
4330
+ }
4331
+ .n-py-12{
4332
+ padding-top: 3rem;
4333
+ padding-bottom: 3rem;
4334
+ }
3901
4335
  .n-px-7{
3902
4336
  padding-left: 1.75rem;
3903
4337
  padding-right: 1.75rem;
@@ -3930,6 +4364,10 @@ a.ndl-btn{
3930
4364
  padding-top: 0px;
3931
4365
  padding-bottom: 0px;
3932
4366
  }
4367
+ .n-px-\[2px\]{
4368
+ padding-left: 2px;
4369
+ padding-right: 2px;
4370
+ }
3933
4371
  .n-py-1{
3934
4372
  padding-top: 0.25rem;
3935
4373
  padding-bottom: 0.25rem;
@@ -4355,9 +4793,9 @@ a.ndl-btn{
4355
4793
  --tw-text-opacity: 1;
4356
4794
  color: rgb(152 237 203 / var(--tw-text-opacity));
4357
4795
  }
4358
- .n-underline{
4359
- -webkit-text-decoration-line: underline;
4360
- text-decoration-line: underline;
4796
+ .n-no-underline{
4797
+ -webkit-text-decoration-line: none;
4798
+ text-decoration-line: none;
4361
4799
  }
4362
4800
  .n-shadow-l2{
4363
4801
  --tw-shadow: 0px 1px 2px 0px rgba(12, 26, 37, 0.18);
@@ -4369,6 +4807,9 @@ a.ndl-btn{
4369
4807
  --tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
4370
4808
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
4371
4809
  }
4810
+ .n-duration-300{
4811
+ transition-duration: 300ms;
4812
+ }
4372
4813
  .n-duration-200{
4373
4814
  transition-duration: 200ms;
4374
4815
  }
@@ -4395,6 +4836,11 @@ html {
4395
4836
  --tw-rotate: 12deg;
4396
4837
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
4397
4838
  }
4839
+ .hover\:n-scale-105:hover{
4840
+ --tw-scale-x: 1.05;
4841
+ --tw-scale-y: 1.05;
4842
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
4843
+ }
4398
4844
  .hover\:n-cursor-pointer:hover{
4399
4845
  cursor: pointer;
4400
4846
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 08 Aug 2022 09:13:42 GMT
3
+ * Generated on Fri, 09 Sep 2022 08:09:08 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 08 Aug 2022 09:13:42 GMT
3
+ * Generated on Fri, 09 Sep 2022 08:09:08 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Mon, 08 Aug 2022 09:13:42 GMT
4
+ * Generated on Fri, 09 Sep 2022 08:09:08 GMT
5
5
  */
6
6
  module.exports = {
7
7
  "borderRadius": {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 08 Aug 2022 09:13:42 GMT
3
+ // Generated on Fri, 09 Sep 2022 08:09:08 GMT
4
4
 
5
5
  $border-radius-sm: 4px;
6
6
  $border-radius-md: 6px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-ndl/base",
3
- "version": "0.6.2",
3
+ "version": "0.8.0",
4
4
  "description": "Neo4j base package for the design system",
5
5
  "author": "Neo4j Inc.",
6
6
  "homepage": "",