@neo4j-ndl/base 3.0.19 → 3.1.1
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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +153 -2
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -3621,6 +3621,7 @@ a.ndl-btn {
|
|
|
3621
3621
|
display:flex;
|
|
3622
3622
|
height:auto;
|
|
3623
3623
|
align-items:center;
|
|
3624
|
+
overflow:hidden;
|
|
3624
3625
|
text-overflow:ellipsis;
|
|
3625
3626
|
white-space:pre-line;
|
|
3626
3627
|
padding-top:10px;
|
|
@@ -3634,6 +3635,9 @@ a.ndl-btn {
|
|
|
3634
3635
|
letter-spacing:0.016rem;
|
|
3635
3636
|
line-height:1.25rem;
|
|
3636
3637
|
}
|
|
3638
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td:hover {
|
|
3639
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
3640
|
+
}
|
|
3637
3641
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td.ndl-data-grid-custom-cell {
|
|
3638
3642
|
padding:0px;
|
|
3639
3643
|
}
|
|
@@ -4197,9 +4201,9 @@ a.ndl-btn {
|
|
|
4197
4201
|
align-self:stretch;
|
|
4198
4202
|
}
|
|
4199
4203
|
.ndl-select-indicators-container .ndl-select-divider {
|
|
4200
|
-
height:
|
|
4204
|
+
height:75%;
|
|
4201
4205
|
width:1px;
|
|
4202
|
-
background-color:rgb(var(--theme-palette-neutral-border-
|
|
4206
|
+
background-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
4203
4207
|
}
|
|
4204
4208
|
.ndl-select-indicators-container.ndl-small {
|
|
4205
4209
|
gap:4px;
|
|
@@ -7301,6 +7305,128 @@ button.ndl-avatar:focus-visible {
|
|
|
7301
7305
|
background-color:rgb(var(--theme-palette-warning-bg-weak));
|
|
7302
7306
|
color:rgb(var(--theme-palette-warning-text));
|
|
7303
7307
|
}
|
|
7308
|
+
.ndl-skeleton {
|
|
7309
|
+
height:auto;
|
|
7310
|
+
border-radius:4px;
|
|
7311
|
+
}
|
|
7312
|
+
.ndl-skeleton.ndl-skeleton-weak{
|
|
7313
|
+
background:linear-gradient(
|
|
7314
|
+
90deg,
|
|
7315
|
+
rgba(var(--theme-palette-neutral-bg-strong)),
|
|
7316
|
+
rgba(var(--theme-palette-neutral-bg-default)),
|
|
7317
|
+
rgba(var(--theme-palette-neutral-bg-strong))
|
|
7318
|
+
);
|
|
7319
|
+
animation:leftToRight 1.5s infinite reverse;
|
|
7320
|
+
animation-timing-function:linear;
|
|
7321
|
+
background-size:200%;
|
|
7322
|
+
}
|
|
7323
|
+
.ndl-skeleton.ndl-skeleton-default{
|
|
7324
|
+
background:linear-gradient(
|
|
7325
|
+
90deg,
|
|
7326
|
+
rgba(var(--theme-palette-neutral-bg-stronger)),
|
|
7327
|
+
rgba(var(--theme-palette-neutral-bg-strong)),
|
|
7328
|
+
rgba(var(--theme-palette-neutral-bg-stronger))
|
|
7329
|
+
);
|
|
7330
|
+
animation:leftToRight 2s infinite reverse;
|
|
7331
|
+
animation-timing-function:linear;
|
|
7332
|
+
background-size:200%;
|
|
7333
|
+
}
|
|
7334
|
+
.ndl-skeleton.ndl-skeleton-circular{
|
|
7335
|
+
border-radius:50%;
|
|
7336
|
+
}
|
|
7337
|
+
.ndl-skeleton .ndl-skeleton-content {
|
|
7338
|
+
visibility:hidden;
|
|
7339
|
+
}
|
|
7340
|
+
@keyframes leftToRight{
|
|
7341
|
+
0%{
|
|
7342
|
+
background-position:-100% 0;
|
|
7343
|
+
}
|
|
7344
|
+
|
|
7345
|
+
100%{
|
|
7346
|
+
background-position:100% 0;
|
|
7347
|
+
}
|
|
7348
|
+
}
|
|
7349
|
+
.ndl-time-picker{
|
|
7350
|
+
}
|
|
7351
|
+
.ndl-time-picker-popover {
|
|
7352
|
+
min-width:166px;
|
|
7353
|
+
overflow:hidden;
|
|
7354
|
+
border-radius:4px;
|
|
7355
|
+
border-width:1px;
|
|
7356
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
7357
|
+
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
7358
|
+
--tw-shadow:var(--theme-shadow-overlay);
|
|
7359
|
+
--tw-shadow-colored:var(--theme-shadow-overlay);
|
|
7360
|
+
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
7361
|
+
outline:2px solid transparent;
|
|
7362
|
+
outline-offset:2px;
|
|
7363
|
+
}
|
|
7364
|
+
.ndl-time-picker-popover ul {
|
|
7365
|
+
height:166px;
|
|
7366
|
+
overflow-y:scroll;
|
|
7367
|
+
border-radius:4px;
|
|
7368
|
+
padding-top:8px;
|
|
7369
|
+
padding-bottom:8px;
|
|
7370
|
+
}
|
|
7371
|
+
.ndl-time-picker-popover li {
|
|
7372
|
+
position:relative;
|
|
7373
|
+
margin-left:8px;
|
|
7374
|
+
margin-right:8px;
|
|
7375
|
+
margin-top:2px;
|
|
7376
|
+
margin-bottom:2px;
|
|
7377
|
+
cursor:pointer;
|
|
7378
|
+
border-radius:8px;
|
|
7379
|
+
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
7380
|
+
}
|
|
7381
|
+
.ndl-time-picker-popover li.focused,
|
|
7382
|
+
.ndl-time-picker-popover li:hover,
|
|
7383
|
+
.ndl-time-picker-popover li:focus {
|
|
7384
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
7385
|
+
outline:2px solid transparent;
|
|
7386
|
+
outline-offset:2px;
|
|
7387
|
+
}
|
|
7388
|
+
.ndl-time-picker-popover li[aria-selected='true'] {
|
|
7389
|
+
background-color:rgb(var(--theme-palette-primary-bg-selected));
|
|
7390
|
+
color:rgb(var(--theme-palette-primary-text));
|
|
7391
|
+
}
|
|
7392
|
+
.ndl-time-picker-popover li[aria-selected='true']::before {
|
|
7393
|
+
position:absolute;
|
|
7394
|
+
top:0px;
|
|
7395
|
+
left:-12px;
|
|
7396
|
+
height:100%;
|
|
7397
|
+
width:8px;
|
|
7398
|
+
border-radius:4px;
|
|
7399
|
+
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
7400
|
+
--tw-content:"";
|
|
7401
|
+
content:var(--tw-content);
|
|
7402
|
+
}
|
|
7403
|
+
.ndl-time-picker-popover li.ndl-fluid {
|
|
7404
|
+
width:100%;
|
|
7405
|
+
}
|
|
7406
|
+
.ndl-time-picker-popover.ndl-small li {
|
|
7407
|
+
padding:2px;
|
|
7408
|
+
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
7409
|
+
font-size:var(--font-size-body-medium);
|
|
7410
|
+
font-weight:var(--font-weight-normal);
|
|
7411
|
+
letter-spacing:0.016rem;
|
|
7412
|
+
line-height:1.25rem;
|
|
7413
|
+
}
|
|
7414
|
+
.ndl-time-picker-popover.ndl-medium li {
|
|
7415
|
+
padding:8px;
|
|
7416
|
+
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
7417
|
+
font-size:var(--font-size-body-medium);
|
|
7418
|
+
font-weight:var(--font-weight-normal);
|
|
7419
|
+
letter-spacing:0.016rem;
|
|
7420
|
+
line-height:1.25rem;
|
|
7421
|
+
}
|
|
7422
|
+
.ndl-time-picker-popover.ndl-large li {
|
|
7423
|
+
padding:12px;
|
|
7424
|
+
font-family:var(--font-font-family-body-large), sans-serif;
|
|
7425
|
+
font-size:var(--font-size-body-large);
|
|
7426
|
+
font-weight:var(--font-weight-normal);
|
|
7427
|
+
letter-spacing:0.016rem;
|
|
7428
|
+
line-height:1.5rem;
|
|
7429
|
+
}
|
|
7304
7430
|
.n-sr-only {
|
|
7305
7431
|
position:absolute;
|
|
7306
7432
|
width:1px;
|
|
@@ -7367,6 +7493,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7367
7493
|
margin-top:auto;
|
|
7368
7494
|
margin-bottom:auto;
|
|
7369
7495
|
}
|
|
7496
|
+
.n-mb-4 {
|
|
7497
|
+
margin-bottom:16px;
|
|
7498
|
+
}
|
|
7370
7499
|
.n-ml-token-0 {
|
|
7371
7500
|
margin-left:0px;
|
|
7372
7501
|
}
|
|
@@ -7444,6 +7573,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7444
7573
|
.n-h-28 {
|
|
7445
7574
|
height:112px;
|
|
7446
7575
|
}
|
|
7576
|
+
.n-h-36 {
|
|
7577
|
+
height:144px;
|
|
7578
|
+
}
|
|
7447
7579
|
.n-h-5 {
|
|
7448
7580
|
height:20px;
|
|
7449
7581
|
}
|
|
@@ -7471,9 +7603,16 @@ button.ndl-avatar:focus-visible {
|
|
|
7471
7603
|
.n-w-48 {
|
|
7472
7604
|
width:192px;
|
|
7473
7605
|
}
|
|
7606
|
+
.n-w-72 {
|
|
7607
|
+
width:288px;
|
|
7608
|
+
}
|
|
7474
7609
|
.n-w-\[300px\] {
|
|
7475
7610
|
width:300px;
|
|
7476
7611
|
}
|
|
7612
|
+
.n-w-fit {
|
|
7613
|
+
width:-moz-fit-content;
|
|
7614
|
+
width:fit-content;
|
|
7615
|
+
}
|
|
7477
7616
|
.n-w-full {
|
|
7478
7617
|
width:100%;
|
|
7479
7618
|
}
|
|
@@ -7517,6 +7656,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7517
7656
|
.n-transform {
|
|
7518
7657
|
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));
|
|
7519
7658
|
}
|
|
7659
|
+
.n-cursor-default {
|
|
7660
|
+
cursor:default;
|
|
7661
|
+
}
|
|
7520
7662
|
.n-cursor-grab {
|
|
7521
7663
|
cursor:grab;
|
|
7522
7664
|
}
|
|
@@ -7562,6 +7704,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7562
7704
|
.n-justify-between {
|
|
7563
7705
|
justify-content:space-between;
|
|
7564
7706
|
}
|
|
7707
|
+
.n-gap-2 {
|
|
7708
|
+
gap:8px;
|
|
7709
|
+
}
|
|
7565
7710
|
.n-gap-9 {
|
|
7566
7711
|
gap:36px;
|
|
7567
7712
|
}
|
|
@@ -7627,6 +7772,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7627
7772
|
.n-rounded-2xl {
|
|
7628
7773
|
border-radius:14px;
|
|
7629
7774
|
}
|
|
7775
|
+
.n-rounded-3xl {
|
|
7776
|
+
border-radius:16px;
|
|
7777
|
+
}
|
|
7630
7778
|
.n-rounded-5xl {
|
|
7631
7779
|
border-radius:20px;
|
|
7632
7780
|
}
|
|
@@ -42306,6 +42454,9 @@ button.ndl-avatar:focus-visible {
|
|
|
42306
42454
|
.n-p-14 {
|
|
42307
42455
|
padding:56px;
|
|
42308
42456
|
}
|
|
42457
|
+
.n-p-2 {
|
|
42458
|
+
padding:8px;
|
|
42459
|
+
}
|
|
42309
42460
|
.n-p-token-0 {
|
|
42310
42461
|
padding:0px;
|
|
42311
42462
|
}
|
package/lib/tokens/js/tokens.js
CHANGED