@neo4j-ndl/base 3.0.18 → 3.1.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/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 +519 -65
- 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
|
@@ -1869,7 +1869,7 @@ a.ndl-btn {
|
|
|
1869
1869
|
line-height:0;
|
|
1870
1870
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
1871
1871
|
}
|
|
1872
|
-
.ndl-form-item input[type='checkbox']
|
|
1872
|
+
.ndl-form-item input[type='checkbox'],
|
|
1873
1873
|
.ndl-form-item input[type='radio'] {
|
|
1874
1874
|
cursor:pointer;
|
|
1875
1875
|
position:relative;
|
|
@@ -1884,6 +1884,10 @@ a.ndl-btn {
|
|
|
1884
1884
|
appearance:none;
|
|
1885
1885
|
flex-shrink:0;
|
|
1886
1886
|
}
|
|
1887
|
+
.ndl-form-item input[type='checkbox']:checked, .ndl-form-item input[type='radio']:checked {
|
|
1888
|
+
border-color:rgb(var(--theme-palette-primary-icon));
|
|
1889
|
+
background-color:rgb(var(--theme-palette-primary-icon));
|
|
1890
|
+
}
|
|
1887
1891
|
.ndl-form-item input[type='checkbox'][role='checkbox']:not(:disabled):hover:before, .ndl-form-item input[type='radio']:not(:disabled):hover:before{
|
|
1888
1892
|
content:'';
|
|
1889
1893
|
position:absolute;
|
|
@@ -1912,10 +1916,6 @@ a.ndl-btn {
|
|
|
1912
1916
|
outline-offset:1px;
|
|
1913
1917
|
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
1914
1918
|
}
|
|
1915
|
-
.ndl-form-item input[type='checkbox'][role='checkbox']:checked, .ndl-form-item input[type='radio']:checked {
|
|
1916
|
-
border-color:rgb(var(--theme-palette-primary-icon));
|
|
1917
|
-
background-color:rgb(var(--theme-palette-primary-icon));
|
|
1918
|
-
}
|
|
1919
1919
|
.ndl-form-item input[type='checkbox'][role='checkbox']:checked:not(:disabled):hover:before, .ndl-form-item input[type='radio']:checked:not(:disabled):hover:before{
|
|
1920
1920
|
content:'';
|
|
1921
1921
|
position:absolute;
|
|
@@ -1938,12 +1938,12 @@ a.ndl-btn {
|
|
|
1938
1938
|
z-index:1;
|
|
1939
1939
|
background-color:rgb(var(--theme-palette-primary-pressed-weak));
|
|
1940
1940
|
}
|
|
1941
|
-
.ndl-form-item.ndl-disabled input[type='checkbox']
|
|
1941
|
+
.ndl-form-item.ndl-disabled input[type='checkbox'],
|
|
1942
1942
|
.ndl-form-item.ndl-disabled input[type='radio'] {
|
|
1943
1943
|
cursor:not-allowed;
|
|
1944
1944
|
border-color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
1945
1945
|
}
|
|
1946
|
-
.ndl-form-item.ndl-disabled input[type='checkbox']
|
|
1946
|
+
.ndl-form-item.ndl-disabled input[type='checkbox']:checked, .ndl-form-item.ndl-disabled input[type='radio']:checked {
|
|
1947
1947
|
background-color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
1948
1948
|
}
|
|
1949
1949
|
.ndl-form-item input[type='checkbox']::after{
|
|
@@ -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
|
}
|
|
@@ -4033,15 +4037,45 @@ a.ndl-btn {
|
|
|
4033
4037
|
.ndl-select {
|
|
4034
4038
|
display:inline-flex;
|
|
4035
4039
|
flex-direction:column;
|
|
4036
|
-
row-gap:
|
|
4040
|
+
row-gap:4px;
|
|
4037
4041
|
}
|
|
4038
|
-
.ndl-select .ndl-
|
|
4039
|
-
|
|
4040
|
-
|
|
4042
|
+
.ndl-select.ndl-small .ndl-error-icon {
|
|
4043
|
+
width:16px;
|
|
4044
|
+
height:16px;
|
|
4045
|
+
}
|
|
4046
|
+
.ndl-select.ndl-medium .ndl-error-icon {
|
|
4047
|
+
width:20px;
|
|
4048
|
+
height:20px;
|
|
4049
|
+
}
|
|
4050
|
+
.ndl-select.ndl-large .ndl-error-icon {
|
|
4051
|
+
width:24px;
|
|
4052
|
+
height:24px;
|
|
4053
|
+
}
|
|
4054
|
+
.ndl-select.ndl-large label{
|
|
4055
|
+
font-family:var(--font-font-family-body-large), sans-serif;
|
|
4056
|
+
font-size:var(--font-size-body-large);
|
|
4057
|
+
font-weight:var(--font-weight-normal);
|
|
4058
|
+
letter-spacing:0.016rem;
|
|
4059
|
+
line-height:1.5rem;
|
|
4060
|
+
}
|
|
4061
|
+
.ndl-select.ndl-large .ndl-sub-text{
|
|
4062
|
+
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
4063
|
+
font-size:var(--font-size-body-medium);
|
|
4064
|
+
font-weight:var(--font-weight-normal);
|
|
4065
|
+
letter-spacing:0.016rem;
|
|
4066
|
+
line-height:1.25rem;
|
|
4041
4067
|
}
|
|
4042
4068
|
.ndl-select.ndl-fluid {
|
|
4043
4069
|
display:flex;
|
|
4044
4070
|
}
|
|
4071
|
+
.ndl-select.ndl-disabled {
|
|
4072
|
+
cursor:not-allowed;
|
|
4073
|
+
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4074
|
+
}
|
|
4075
|
+
.ndl-select.ndl-disabled label,
|
|
4076
|
+
.ndl-select.ndl-disabled .ndl-sub-text {
|
|
4077
|
+
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4078
|
+
}
|
|
4045
4079
|
.ndl-select label {
|
|
4046
4080
|
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
4047
4081
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
@@ -4050,13 +4084,6 @@ a.ndl-btn {
|
|
|
4050
4084
|
letter-spacing:0.016rem;
|
|
4051
4085
|
line-height:1.25rem;
|
|
4052
4086
|
}
|
|
4053
|
-
.ndl-select div {
|
|
4054
|
-
cursor:pointer;
|
|
4055
|
-
}
|
|
4056
|
-
.ndl-select.ndl-creatable div,
|
|
4057
|
-
.ndl-select.ndl-multi div {
|
|
4058
|
-
cursor:text;
|
|
4059
|
-
}
|
|
4060
4087
|
.ndl-select .ndl-sub-text {
|
|
4061
4088
|
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
4062
4089
|
font-family:var(--font-font-family-body-small), sans-serif;
|
|
@@ -4065,98 +4092,365 @@ a.ndl-btn {
|
|
|
4065
4092
|
letter-spacing:0.016rem;
|
|
4066
4093
|
line-height:1.25rem;
|
|
4067
4094
|
}
|
|
4068
|
-
.ndl-select.ndl-
|
|
4069
|
-
|
|
4070
|
-
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4071
|
-
}
|
|
4072
|
-
.ndl-select.ndl-disabled .ndl-placeholder {
|
|
4073
|
-
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4095
|
+
.ndl-select .ndl-error-text {
|
|
4096
|
+
color:rgb(var(--theme-palette-danger-text));
|
|
4074
4097
|
}
|
|
4075
|
-
.ndl-select
|
|
4076
|
-
color:rgb(var(--theme-palette-
|
|
4098
|
+
.ndl-select .ndl-error-icon {
|
|
4099
|
+
color:rgb(var(--theme-palette-danger-icon));
|
|
4077
4100
|
}
|
|
4078
|
-
.ndl-select
|
|
4079
|
-
|
|
4101
|
+
.ndl-select-input {
|
|
4102
|
+
margin:0px;
|
|
4103
|
+
box-sizing:border-box;
|
|
4104
|
+
display:inline-grid;
|
|
4105
|
+
flex:1 1 auto;
|
|
4106
|
+
align-items:center;
|
|
4107
|
+
padding:0px;
|
|
4080
4108
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
4081
4109
|
font-size:var(--font-size-body-medium);
|
|
4082
4110
|
font-weight:var(--font-weight-normal);
|
|
4083
4111
|
letter-spacing:0.016rem;
|
|
4084
4112
|
line-height:1.25rem;
|
|
4113
|
+
|
|
4114
|
+
grid-template-columns:0 min-content;
|
|
4115
|
+
grid-area:1 / 1 / 2 / 3;
|
|
4085
4116
|
}
|
|
4086
|
-
.ndl-select
|
|
4087
|
-
color:rgb(var(--theme-palette-danger-text));
|
|
4088
|
-
}
|
|
4089
|
-
.ndl-select.ndl-large label{
|
|
4117
|
+
.ndl-select-input.ndl-large{
|
|
4090
4118
|
font-family:var(--font-font-family-body-large), sans-serif;
|
|
4091
4119
|
font-size:var(--font-size-body-large);
|
|
4092
4120
|
font-weight:var(--font-weight-normal);
|
|
4093
4121
|
letter-spacing:0.016rem;
|
|
4094
4122
|
line-height:1.5rem;
|
|
4095
4123
|
}
|
|
4096
|
-
.ndl-select
|
|
4124
|
+
.ndl-select-input::after{
|
|
4125
|
+
content:attr(data-value) ' ';
|
|
4126
|
+
visibility:hidden;
|
|
4127
|
+
white-space:pre;
|
|
4128
|
+
grid-area:1 / 2;
|
|
4129
|
+
font:inherit;
|
|
4130
|
+
min-width:2px;
|
|
4131
|
+
border:0;
|
|
4132
|
+
margin:0;
|
|
4133
|
+
outline:0;
|
|
4134
|
+
padding:0;
|
|
4135
|
+
}
|
|
4136
|
+
.ndl-select-placeholder {
|
|
4137
|
+
margin:0px;
|
|
4138
|
+
box-sizing:border-box;
|
|
4139
|
+
display:inline-grid;
|
|
4140
|
+
align-items:center;
|
|
4141
|
+
white-space:nowrap;
|
|
4142
|
+
padding:0px;
|
|
4143
|
+
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
4097
4144
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
4098
4145
|
font-size:var(--font-size-body-medium);
|
|
4099
4146
|
font-weight:var(--font-weight-normal);
|
|
4100
4147
|
letter-spacing:0.016rem;
|
|
4101
4148
|
line-height:1.25rem;
|
|
4149
|
+
|
|
4150
|
+
grid-area:1 / 1 / 2 / 2;
|
|
4151
|
+
}
|
|
4152
|
+
.ndl-select-placeholder.ndl-large{
|
|
4153
|
+
font-family:var(--font-font-family-body-large), sans-serif;
|
|
4154
|
+
font-size:var(--font-size-body-large);
|
|
4155
|
+
font-weight:var(--font-weight-normal);
|
|
4156
|
+
letter-spacing:0.016rem;
|
|
4157
|
+
line-height:1.5rem;
|
|
4158
|
+
}
|
|
4159
|
+
.ndl-select-placeholder.ndl-disabled {
|
|
4160
|
+
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4161
|
+
}
|
|
4162
|
+
.ndl-select-clear {
|
|
4163
|
+
height:100%;
|
|
4164
|
+
padding:0px;
|
|
4165
|
+
}
|
|
4166
|
+
.ndl-select-clear > div {
|
|
4167
|
+
display:flex;
|
|
4168
|
+
height:100%;
|
|
4169
|
+
flex-direction:row;
|
|
4170
|
+
align-items:center;
|
|
4102
4171
|
}
|
|
4103
|
-
.ndl-select
|
|
4172
|
+
.ndl-select-clear > div > svg {
|
|
4104
4173
|
cursor:pointer;
|
|
4105
4174
|
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
4106
4175
|
}
|
|
4107
|
-
.ndl-select
|
|
4176
|
+
.ndl-select-clear.ndl-small > div {
|
|
4177
|
+
gap:4px;
|
|
4178
|
+
}
|
|
4179
|
+
.ndl-select-clear.ndl-small > div > svg {
|
|
4108
4180
|
width:16px;
|
|
4109
4181
|
height:16px;
|
|
4110
4182
|
}
|
|
4111
|
-
.ndl-select
|
|
4183
|
+
.ndl-select-clear.ndl-medium > div {
|
|
4184
|
+
gap:8px;
|
|
4185
|
+
}
|
|
4186
|
+
.ndl-select-clear.ndl-medium > div > svg {
|
|
4112
4187
|
width:20px;
|
|
4113
4188
|
height:20px;
|
|
4114
4189
|
}
|
|
4115
|
-
.ndl-select
|
|
4190
|
+
.ndl-select-clear.ndl-large > div {
|
|
4191
|
+
gap:12px;
|
|
4192
|
+
}
|
|
4193
|
+
.ndl-select-clear.ndl-large > div > svg {
|
|
4116
4194
|
width:24px;
|
|
4117
4195
|
height:24px;
|
|
4118
4196
|
}
|
|
4119
|
-
.ndl-select
|
|
4197
|
+
.ndl-select-indicators-container {
|
|
4198
|
+
display:flex;
|
|
4199
|
+
flex-shrink:0;
|
|
4200
|
+
flex-direction:row;
|
|
4201
|
+
align-self:stretch;
|
|
4202
|
+
}
|
|
4203
|
+
.ndl-select-indicators-container .ndl-select-divider {
|
|
4204
|
+
height:100%;
|
|
4205
|
+
width:1px;
|
|
4206
|
+
background-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
4207
|
+
}
|
|
4208
|
+
.ndl-select-indicators-container.ndl-small {
|
|
4209
|
+
gap:4px;
|
|
4210
|
+
}
|
|
4211
|
+
.ndl-select-indicators-container.ndl-medium {
|
|
4212
|
+
gap:8px;
|
|
4213
|
+
}
|
|
4214
|
+
.ndl-select-indicators-container.ndl-large {
|
|
4215
|
+
gap:12px;
|
|
4216
|
+
}
|
|
4217
|
+
.ndl-select-value-container {
|
|
4218
|
+
gap:4px;
|
|
4219
|
+
padding:0px;
|
|
4220
|
+
}
|
|
4221
|
+
.ndl-select-value-container.ndl-small {
|
|
4222
|
+
-moz-column-gap:4px;
|
|
4223
|
+
column-gap:4px;
|
|
4224
|
+
row-gap:0px;
|
|
4225
|
+
}
|
|
4226
|
+
.ndl-select-multi-value {
|
|
4227
|
+
display:flex;
|
|
4228
|
+
}
|
|
4229
|
+
.ndl-select-multi-value.ndl-small {
|
|
4230
|
+
padding-top:2px;
|
|
4231
|
+
padding-bottom:2px;
|
|
4232
|
+
}
|
|
4233
|
+
.ndl-select-single-value {
|
|
4234
|
+
display:flex;
|
|
4235
|
+
align-items:center;
|
|
4236
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
4237
|
+
|
|
4238
|
+
grid-area:1 / 1 / 2 / 3;
|
|
4239
|
+
}
|
|
4240
|
+
.ndl-select-single-value.ndl-disabled {
|
|
4120
4241
|
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4121
4242
|
}
|
|
4122
|
-
.ndl-select
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
.ndl-select .ndl-
|
|
4243
|
+
.ndl-select-dropdown-indicator {
|
|
4244
|
+
display:flex;
|
|
4245
|
+
align-items:center;
|
|
4246
|
+
padding:0px;
|
|
4247
|
+
}
|
|
4248
|
+
.ndl-select-dropdown-indicator .ndl-select-icon {
|
|
4249
|
+
cursor:pointer;
|
|
4250
|
+
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
4251
|
+
}
|
|
4252
|
+
.ndl-select-dropdown-indicator.ndl-small .ndl-select-icon {
|
|
4128
4253
|
width:16px;
|
|
4129
4254
|
height:16px;
|
|
4130
4255
|
}
|
|
4131
|
-
.ndl-select
|
|
4256
|
+
.ndl-select-dropdown-indicator.ndl-medium .ndl-select-icon {
|
|
4132
4257
|
width:20px;
|
|
4133
4258
|
height:20px;
|
|
4134
4259
|
}
|
|
4135
|
-
.ndl-select
|
|
4260
|
+
.ndl-select-dropdown-indicator.ndl-large .ndl-select-icon {
|
|
4136
4261
|
width:24px;
|
|
4137
4262
|
height:24px;
|
|
4138
4263
|
}
|
|
4139
|
-
.ndl-select .ndl-
|
|
4140
|
-
color:rgb(var(--theme-palette-
|
|
4264
|
+
.ndl-select-dropdown-indicator.ndl-disabled .ndl-select-icon {
|
|
4265
|
+
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4141
4266
|
}
|
|
4142
|
-
.ndl-select
|
|
4267
|
+
.ndl-select-control {
|
|
4268
|
+
position:relative;
|
|
4269
|
+
box-sizing:border-box;
|
|
4270
|
+
display:flex;
|
|
4271
|
+
cursor:pointer;
|
|
4272
|
+
align-items:center;
|
|
4273
|
+
justify-content:space-between;
|
|
4274
|
+
overflow:hidden;
|
|
4275
|
+
border-radius:4px;
|
|
4276
|
+
border-width:0px;
|
|
4277
|
+
border-style:none;
|
|
4278
|
+
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
4279
|
+
padding-top:4px;
|
|
4280
|
+
padding-bottom:4px;
|
|
4281
|
+
outline-width:1px !important;
|
|
4282
|
+
outline-color:rgb(var(--theme-palette-neutral-border-strong)) !important;
|
|
4283
|
+
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
4284
|
+
font-size:var(--font-size-body-medium);
|
|
4285
|
+
font-weight:var(--font-weight-normal);
|
|
4286
|
+
letter-spacing:0.016rem;
|
|
4287
|
+
line-height:1.25rem;
|
|
4288
|
+
}
|
|
4289
|
+
.ndl-select-control:focus-within {
|
|
4290
|
+
border-style:none;
|
|
4291
|
+
outline-style:solid;
|
|
4292
|
+
outline-width:2px !important;
|
|
4293
|
+
outline-color:rgb(var(--theme-palette-primary-focus)) !important;
|
|
4294
|
+
}
|
|
4295
|
+
.ndl-select-control:hover {
|
|
4296
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
4297
|
+
}
|
|
4298
|
+
.ndl-select-control.ndl-small {
|
|
4299
|
+
min-height:24px;
|
|
4300
|
+
gap:4px;
|
|
4301
|
+
padding-left:4px;
|
|
4302
|
+
padding-right:4px;
|
|
4303
|
+
padding-top:2px;
|
|
4304
|
+
padding-bottom:2px;
|
|
4305
|
+
}
|
|
4306
|
+
.ndl-select-control.ndl-medium {
|
|
4307
|
+
min-height:36px;
|
|
4308
|
+
gap:8px;
|
|
4309
|
+
padding-left:8px;
|
|
4310
|
+
padding-right:8px;
|
|
4311
|
+
}
|
|
4312
|
+
.ndl-select-control.ndl-large {
|
|
4313
|
+
min-height:48px;
|
|
4314
|
+
gap:12px;
|
|
4315
|
+
padding-left:12px;
|
|
4316
|
+
padding-right:12px;
|
|
4317
|
+
font-family:var(--font-font-family-body-large), sans-serif;
|
|
4318
|
+
font-size:var(--font-size-body-large);
|
|
4319
|
+
font-weight:var(--font-weight-normal);
|
|
4320
|
+
letter-spacing:0.016rem;
|
|
4321
|
+
line-height:1.5rem;
|
|
4322
|
+
}
|
|
4323
|
+
.ndl-select-control.ndl-has-border {
|
|
4324
|
+
outline-style:solid !important;
|
|
4325
|
+
}
|
|
4326
|
+
.ndl-select-control.ndl-has-error {
|
|
4327
|
+
outline-style:solid !important;
|
|
4328
|
+
outline-width:2px !important;
|
|
4329
|
+
outline-color:rgb(var(--theme-palette-danger-border-strong)) !important;
|
|
4330
|
+
}
|
|
4331
|
+
.ndl-select-control.ndl-has-error:focus-within {
|
|
4332
|
+
outline-style:solid !important;
|
|
4333
|
+
outline-width:2px !important;
|
|
4334
|
+
outline-color:rgb(var(--theme-palette-danger-border-strong)) !important;
|
|
4335
|
+
}
|
|
4336
|
+
.ndl-select-control.ndl-has-error:hover {
|
|
4337
|
+
border-color:rgb(var(--theme-palette-danger-border-strong));
|
|
4338
|
+
}
|
|
4339
|
+
.ndl-select-option {
|
|
4340
|
+
position:relative;
|
|
4143
4341
|
display:flex;
|
|
4144
4342
|
flex-direction:row;
|
|
4145
4343
|
align-items:center;
|
|
4146
4344
|
gap:8px;
|
|
4345
|
+
overflow-wrap:break-word;
|
|
4346
|
+
border-radius:8px;
|
|
4347
|
+
background-color:transparent;
|
|
4348
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
4349
|
+
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
4350
|
+
font-size:var(--font-size-body-medium);
|
|
4351
|
+
font-weight:var(--font-weight-normal);
|
|
4352
|
+
letter-spacing:0.016rem;
|
|
4353
|
+
line-height:1.25rem;
|
|
4147
4354
|
}
|
|
4148
|
-
.ndl-select
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4355
|
+
.ndl-select-option:hover {
|
|
4356
|
+
cursor:pointer;
|
|
4357
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
4358
|
+
}
|
|
4359
|
+
.ndl-select-option.ndl-is-multi:hover {
|
|
4360
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
4361
|
+
}
|
|
4362
|
+
.ndl-select-option.ndl-form-item {
|
|
4363
|
+
margin-top:0px;
|
|
4364
|
+
}
|
|
4365
|
+
.ndl-select-option.ndl-focused {
|
|
4366
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
4367
|
+
}
|
|
4368
|
+
.ndl-select-option.ndl-selected {
|
|
4369
|
+
background-color:rgb(var(--theme-palette-primary-bg-selected));
|
|
4370
|
+
color:rgb(var(--theme-palette-primary-text));
|
|
4371
|
+
}
|
|
4372
|
+
.ndl-select-option.ndl-selected.ndl-is-multi {
|
|
4373
|
+
background-color:transparent;
|
|
4374
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
4375
|
+
}
|
|
4376
|
+
.ndl-select-option.ndl-selected.ndl-is-multi:hover {
|
|
4377
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
4378
|
+
}
|
|
4379
|
+
.ndl-select-option.ndl-selected.ndl-is-multi.ndl-focused {
|
|
4380
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
4381
|
+
}
|
|
4382
|
+
.ndl-select-option.ndl-selected.ndl-is-multi::before{
|
|
4383
|
+
all:unset;
|
|
4384
|
+
}
|
|
4385
|
+
.ndl-select-option.ndl-selected::before{
|
|
4386
|
+
content:'';
|
|
4387
|
+
border-radius:0 100px 100px 0;
|
|
4388
|
+
position:absolute;
|
|
4389
|
+
left:-8px;
|
|
4390
|
+
top:0px;
|
|
4391
|
+
height:100%;
|
|
4392
|
+
width:4px;
|
|
4393
|
+
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
4159
4394
|
}
|
|
4395
|
+
.ndl-select-option.ndl-disabled {
|
|
4396
|
+
cursor:not-allowed;
|
|
4397
|
+
background-color:transparent;
|
|
4398
|
+
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
4399
|
+
}
|
|
4400
|
+
.ndl-select-option.ndl-disabled.ndl-is-multi:hover {
|
|
4401
|
+
background-color:transparent;
|
|
4402
|
+
}
|
|
4403
|
+
.ndl-select-option.ndl-small {
|
|
4404
|
+
padding:2px;
|
|
4405
|
+
}
|
|
4406
|
+
.ndl-select-option.ndl-medium {
|
|
4407
|
+
padding:8px;
|
|
4408
|
+
}
|
|
4409
|
+
.ndl-select-option.ndl-large {
|
|
4410
|
+
padding:12px;
|
|
4411
|
+
font-family:var(--font-font-family-body-large), sans-serif;
|
|
4412
|
+
font-size:var(--font-size-body-large);
|
|
4413
|
+
font-weight:var(--font-weight-normal);
|
|
4414
|
+
letter-spacing:0.016rem;
|
|
4415
|
+
line-height:1.5rem;
|
|
4416
|
+
}
|
|
4417
|
+
.ndl-select-menu-portal {
|
|
4418
|
+
z-index:40 !important;
|
|
4419
|
+
}
|
|
4420
|
+
.ndl-select-menu {
|
|
4421
|
+
position:absolute;
|
|
4422
|
+
top:100%;
|
|
4423
|
+
z-index:40;
|
|
4424
|
+
margin-top:4px;
|
|
4425
|
+
margin-bottom:4px;
|
|
4426
|
+
box-sizing:border-box;
|
|
4427
|
+
width:100%;
|
|
4428
|
+
min-width:-moz-min-content;
|
|
4429
|
+
min-width:min-content;
|
|
4430
|
+
overflow:hidden;
|
|
4431
|
+
border-radius:4px;
|
|
4432
|
+
border-width:1px;
|
|
4433
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
4434
|
+
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
4435
|
+
--tw-shadow:var(--theme-shadow-overlay);
|
|
4436
|
+
--tw-shadow-colored:var(--theme-shadow-overlay);
|
|
4437
|
+
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
4438
|
+
}
|
|
4439
|
+
.ndl-select-menu-list {
|
|
4440
|
+
display:flex;
|
|
4441
|
+
flex-direction:column;
|
|
4442
|
+
overflow:auto;
|
|
4443
|
+
padding:8px;
|
|
4444
|
+
}
|
|
4445
|
+
.ndl-select-menu-list.ndl-small {
|
|
4446
|
+
max-height:196px;
|
|
4447
|
+
}
|
|
4448
|
+
.ndl-select-menu-list.ndl-medium {
|
|
4449
|
+
max-height:280px;
|
|
4450
|
+
}
|
|
4451
|
+
.ndl-select-menu-list.ndl-large {
|
|
4452
|
+
max-height:314px;
|
|
4453
|
+
}
|
|
4160
4454
|
.ndl-node-label {
|
|
4161
4455
|
position:relative;
|
|
4162
4456
|
display:inline-block;
|
|
@@ -6941,7 +7235,15 @@ button.ndl-avatar:focus-visible {
|
|
|
6941
7235
|
min-width:176px;
|
|
6942
7236
|
flex-direction:column;
|
|
6943
7237
|
gap:8px;
|
|
7238
|
+
border-radius:8px;
|
|
7239
|
+
border-width:1px;
|
|
7240
|
+
border-style:solid;
|
|
7241
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
7242
|
+
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
6944
7243
|
padding:8px;
|
|
7244
|
+
--tw-shadow:var(--theme-shadow-overlay);
|
|
7245
|
+
--tw-shadow-colored:var(--theme-shadow-overlay);
|
|
7246
|
+
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
6945
7247
|
}
|
|
6946
7248
|
.ndl-charts-chart-tooltip .ndl-text-link {
|
|
6947
7249
|
margin-top:4px;
|
|
@@ -6975,9 +7277,8 @@ button.ndl-avatar:focus-visible {
|
|
|
6975
7277
|
width:6px;
|
|
6976
7278
|
border-radius:2px;
|
|
6977
7279
|
}
|
|
6978
|
-
.ndl-charts-chart-tooltip .ndl-charts-chart-tooltip-content .ndl-charts-chart-tooltip-content-left-element
|
|
6979
|
-
|
|
6980
|
-
}
|
|
7280
|
+
.ndl-charts-chart-tooltip .ndl-charts-chart-tooltip-content .ndl-charts-chart-tooltip-content-left-element{
|
|
7281
|
+
}
|
|
6981
7282
|
.ndl-charts-chart-tooltip .ndl-charts-chart-tooltip-content .ndl-charts-chart-tooltip-content-right-element {
|
|
6982
7283
|
margin-left:auto;
|
|
6983
7284
|
padding-left:8px;
|
|
@@ -6987,9 +7288,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6987
7288
|
flex-direction:row;
|
|
6988
7289
|
align-items:center;
|
|
6989
7290
|
border-radius:4px;
|
|
6990
|
-
background-color:rgb(var(--theme-palette-danger-bg-weak));
|
|
6991
7291
|
padding:6px;
|
|
6992
|
-
color:rgb(var(--theme-palette-danger-text));
|
|
6993
7292
|
}
|
|
6994
7293
|
.ndl-charts-chart-tooltip .ndl-charts-chart-tooltip-content .ndl-charts-chart-tooltip-content-notification .ndl-status-indicator {
|
|
6995
7294
|
margin-right:8px;
|
|
@@ -6998,6 +7297,136 @@ button.ndl-avatar:focus-visible {
|
|
|
6998
7297
|
margin-left:auto;
|
|
6999
7298
|
padding-left:8px;
|
|
7000
7299
|
}
|
|
7300
|
+
.ndl-charts-chart-tooltip .ndl-charts-chart-tooltip-content .ndl-notification-danger {
|
|
7301
|
+
background-color:rgb(var(--theme-palette-danger-bg-weak));
|
|
7302
|
+
color:rgb(var(--theme-palette-danger-text));
|
|
7303
|
+
}
|
|
7304
|
+
.ndl-charts-chart-tooltip .ndl-charts-chart-tooltip-content .ndl-notification-warning {
|
|
7305
|
+
background-color:rgb(var(--theme-palette-warning-bg-weak));
|
|
7306
|
+
color:rgb(var(--theme-palette-warning-text));
|
|
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
|
+
}
|
|
7001
7430
|
.n-sr-only {
|
|
7002
7431
|
position:absolute;
|
|
7003
7432
|
width:1px;
|
|
@@ -7064,6 +7493,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7064
7493
|
margin-top:auto;
|
|
7065
7494
|
margin-bottom:auto;
|
|
7066
7495
|
}
|
|
7496
|
+
.n-mb-4 {
|
|
7497
|
+
margin-bottom:16px;
|
|
7498
|
+
}
|
|
7067
7499
|
.n-ml-token-0 {
|
|
7068
7500
|
margin-left:0px;
|
|
7069
7501
|
}
|
|
@@ -7141,6 +7573,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7141
7573
|
.n-h-28 {
|
|
7142
7574
|
height:112px;
|
|
7143
7575
|
}
|
|
7576
|
+
.n-h-36 {
|
|
7577
|
+
height:144px;
|
|
7578
|
+
}
|
|
7144
7579
|
.n-h-5 {
|
|
7145
7580
|
height:20px;
|
|
7146
7581
|
}
|
|
@@ -7168,9 +7603,16 @@ button.ndl-avatar:focus-visible {
|
|
|
7168
7603
|
.n-w-48 {
|
|
7169
7604
|
width:192px;
|
|
7170
7605
|
}
|
|
7606
|
+
.n-w-72 {
|
|
7607
|
+
width:288px;
|
|
7608
|
+
}
|
|
7171
7609
|
.n-w-\[300px\] {
|
|
7172
7610
|
width:300px;
|
|
7173
7611
|
}
|
|
7612
|
+
.n-w-fit {
|
|
7613
|
+
width:-moz-fit-content;
|
|
7614
|
+
width:fit-content;
|
|
7615
|
+
}
|
|
7174
7616
|
.n-w-full {
|
|
7175
7617
|
width:100%;
|
|
7176
7618
|
}
|
|
@@ -7214,6 +7656,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7214
7656
|
.n-transform {
|
|
7215
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));
|
|
7216
7658
|
}
|
|
7659
|
+
.n-cursor-default {
|
|
7660
|
+
cursor:default;
|
|
7661
|
+
}
|
|
7217
7662
|
.n-cursor-grab {
|
|
7218
7663
|
cursor:grab;
|
|
7219
7664
|
}
|
|
@@ -7259,6 +7704,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7259
7704
|
.n-justify-between {
|
|
7260
7705
|
justify-content:space-between;
|
|
7261
7706
|
}
|
|
7707
|
+
.n-gap-2 {
|
|
7708
|
+
gap:8px;
|
|
7709
|
+
}
|
|
7262
7710
|
.n-gap-9 {
|
|
7263
7711
|
gap:36px;
|
|
7264
7712
|
}
|
|
@@ -7324,6 +7772,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7324
7772
|
.n-rounded-2xl {
|
|
7325
7773
|
border-radius:14px;
|
|
7326
7774
|
}
|
|
7775
|
+
.n-rounded-3xl {
|
|
7776
|
+
border-radius:16px;
|
|
7777
|
+
}
|
|
7327
7778
|
.n-rounded-5xl {
|
|
7328
7779
|
border-radius:20px;
|
|
7329
7780
|
}
|
|
@@ -42003,6 +42454,9 @@ button.ndl-avatar:focus-visible {
|
|
|
42003
42454
|
.n-p-14 {
|
|
42004
42455
|
padding:56px;
|
|
42005
42456
|
}
|
|
42457
|
+
.n-p-2 {
|
|
42458
|
+
padding:8px;
|
|
42459
|
+
}
|
|
42006
42460
|
.n-p-token-0 {
|
|
42007
42461
|
padding:0px;
|
|
42008
42462
|
}
|
package/lib/tokens/js/tokens.js
CHANGED