@neo4j-ndl/base 4.1.4 → 4.2.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.
@@ -6439,7 +6439,7 @@ button.ndl-avatar:focus-visible {
6439
6439
  transition:transform var(--motion-transition-quick);
6440
6440
  }
6441
6441
  .ndl-dropdown-btn .ndl-dropdown-button-icon.ndl-dropdown-button-icon-open{
6442
- transform:rotate(180deg);
6442
+ transform:scaleY(-1);
6443
6443
  }
6444
6444
  .ndl-dropdown-btn .ndl-dropdown-btn-leading-wrapper {
6445
6445
  display:flex;
@@ -6492,10 +6492,10 @@ button.ndl-avatar:focus-visible {
6492
6492
  outline-offset:-2px;
6493
6493
  outline-color:var(--theme-color-primary-focus);
6494
6494
  }
6495
- .ndl-code:hover:not(.ndl-disabled) {
6495
+ .ndl-code:is(button):hover:not(.ndl-disabled) {
6496
6496
  background-color:var(--theme-color-neutral-hover);
6497
6497
  }
6498
- .ndl-code:active:not(.ndl-disabled) {
6498
+ .ndl-code:is(button):active:not(.ndl-disabled) {
6499
6499
  background-color:var(--theme-color-neutral-pressed);
6500
6500
  }
6501
6501
  .ndl-code.ndl-disabled {
@@ -7918,13 +7918,20 @@ button.ndl-avatar:focus-visible {
7918
7918
  .ndl-ai-presence{
7919
7919
  --animation-duration:1.5s;
7920
7920
  }
7921
+ .ndl-ai-presence.ndl-icon-svg path,
7922
+ .ndl-ai-presence.ndl-icon-svg polygon,
7923
+ .ndl-ai-presence.ndl-icon-svg rect,
7924
+ .ndl-ai-presence.ndl-icon-svg circle,
7925
+ .ndl-ai-presence.ndl-icon-svg line,
7926
+ .ndl-ai-presence.ndl-icon-svg polyline,
7927
+ .ndl-ai-presence.ndl-icon-svg ellipse{
7928
+ vector-effect:none;
7929
+ }
7921
7930
  .ndl-ai-presence path:nth-of-type(2){
7922
- stroke-dasharray:134;
7923
- stroke-dashoffset:0;
7931
+ stroke-dasharray:100%;
7924
7932
  }
7925
7933
  .ndl-ai-presence path:nth-of-type(3){
7926
- stroke-dasharray:134;
7927
- stroke-dashoffset:0;
7934
+ stroke-dasharray:100%;
7928
7935
  }
7929
7936
  .ndl-ai-presence.ndl-thinking path:nth-of-type(2){
7930
7937
  animation:draw var(--animation-duration) linear infinite;
@@ -7940,42 +7947,42 @@ button.ndl-avatar:focus-visible {
7940
7947
  }
7941
7948
  @keyframes draw{
7942
7949
  0%{
7943
- stroke-dashoffset:134;
7950
+ stroke-dashoffset:100%;
7944
7951
  }
7945
7952
  10%{
7946
- stroke-dashoffset:67;
7953
+ stroke-dashoffset:50%;
7947
7954
  }
7948
7955
  25%{
7949
- stroke-dashoffset:0;
7956
+ stroke-dashoffset:0%;
7950
7957
  }
7951
7958
  40%{
7952
- stroke-dashoffset:-54;
7959
+ stroke-dashoffset:-40%;
7953
7960
  }
7954
7961
  50%{
7955
- stroke-dashoffset:-134;
7962
+ stroke-dashoffset:-100%;
7956
7963
  }
7957
7964
  100%{
7958
- stroke-dashoffset:-134;
7965
+ stroke-dashoffset:-100%;
7959
7966
  }
7960
7967
  }
7961
7968
  @keyframes draw-reverse{
7962
7969
  0%{
7963
- stroke-dashoffset:134;
7970
+ stroke-dashoffset:100%;
7964
7971
  }
7965
7972
  50%{
7966
- stroke-dashoffset:134;
7973
+ stroke-dashoffset:100%;
7967
7974
  }
7968
7975
  60%{
7969
- stroke-dashoffset:67;
7976
+ stroke-dashoffset:50%;
7970
7977
  }
7971
7978
  75%{
7972
- stroke-dashoffset:0;
7979
+ stroke-dashoffset:0%;
7973
7980
  }
7974
7981
  90%{
7975
- stroke-dashoffset:-54;
7982
+ stroke-dashoffset:-40%;
7976
7983
  }
7977
7984
  100%{
7978
- stroke-dashoffset:-134;
7985
+ stroke-dashoffset:-100%;
7979
7986
  }
7980
7987
  }
7981
7988
  @keyframes pulse{
@@ -8779,144 +8786,937 @@ button.ndl-avatar:focus-visible {
8779
8786
  letter-spacing:var(--typography-body-medium-letter-spacing);
8780
8787
  font-family:var(--typography-body-medium-font-family), sans-serif;
8781
8788
  }
8782
- .ndl-switch-label.ndl-fluid {
8789
+ .ndl-switch-label.ndl-fluid {
8790
+ display:flex;
8791
+ width:100%;
8792
+ }
8793
+ .ndl-switch-label:has(.ndl-switch:disabled) .ndl-switch-label-text {
8794
+ cursor:not-allowed;
8795
+ color:var(--theme-color-neutral-text-weakest);
8796
+ }
8797
+ .ndl-switch{
8798
+ --thumb-size:12px;
8799
+ --track-height:20px;
8800
+ --track-width:36px;
8801
+ --track-padding-left:3px;
8802
+ --track-padding-right:1px;
8803
+ --switch-checkmark-color:var(--theme-color-primary-text);
8804
+ position:relative;
8805
+ display:grid;
8806
+ width:16px;
8807
+ height:16px;
8808
+ flex-shrink:0;
8809
+ cursor:pointer;
8810
+ -webkit-appearance:none;
8811
+ -moz-appearance:none;
8812
+ appearance:none;
8813
+ align-items:center;
8814
+ border-radius:9999px;
8815
+ border-width:1px;
8816
+ border-style:solid;
8817
+ border-color:var(--theme-color-neutral-border-strongest);
8818
+ background-color:var(--theme-color-neutral-bg-weak);
8819
+
8820
+ grid:[track] 1fr / [track] 1fr;
8821
+ padding-left:var(--track-padding-left);
8822
+ padding-right:var(--track-padding-right);
8823
+ touch-action:pan-y;
8824
+ pointer-events:auto;
8825
+ box-sizing:border-box;
8826
+ transition:background-color var(--motion-transition-quick), box-shadow var(--motion-transition-quick);
8827
+ box-shadow:0 0 0 0 transparent;
8828
+
8829
+ inline-size:var(--track-width);
8830
+ block-size:var(--track-width);
8831
+ height:var(--track-height);
8832
+ }
8833
+ .ndl-switch:disabled {
8834
+ cursor:not-allowed;
8835
+ border-color:var(--theme-color-neutral-bg-strong);
8836
+ background-color:var(--theme-color-neutral-bg-strong);
8837
+ outline-width:0px;
8838
+ }
8839
+ .ndl-switch:not(:disabled):hover:checked{
8840
+ box-shadow:0 0 0 4px var(--theme-color-primary-hover-weak);
8841
+ }
8842
+ .ndl-switch:not(:disabled):hover:not(:checked){
8843
+ box-shadow:0 0 0 4px var(--theme-color-neutral-hover);
8844
+ }
8845
+ .ndl-switch:not(:disabled):hover:active:not(:checked){
8846
+ box-shadow:0 0 0 4px var(--theme-color-neutral-pressed);
8847
+ }
8848
+ .ndl-switch:not(:disabled):hover:active:checked{
8849
+ box-shadow:0 0 0 4px var(--theme-color-primary-pressed-weak);
8850
+ }
8851
+ .ndl-switch:not(:disabled):hover:focus-visible {
8852
+ outline-style:solid;
8853
+ outline-width:2px;
8854
+ outline-offset:0px;
8855
+ outline-color:var(--theme-color-primary-focus);
8856
+ }
8857
+ .ndl-switch::before{
8858
+ inline-size:var(--thumb-size);
8859
+ block-size:var(--thumb-size);
8860
+
8861
+ transition:transform var(--motion-transition-quick), width var(--motion-transition-quick), height var(--motion-transition-quick), background-color var(--motion-transition-quick);
8862
+ content:'';
8863
+ grid-area:track;
8864
+ transform:translateX(0);
8865
+ border-radius:9999px;
8866
+ background-color:var(--theme-color-neutral-bg-weak);
8867
+ }
8868
+ .ndl-switch:not(:disabled):not(:checked)::before {
8869
+ background-color:var(--theme-color-neutral-bg-stronger);
8870
+ }
8871
+ .ndl-switch:disabled::before{
8872
+ box-shadow:none;
8873
+ }
8874
+ .ndl-switch::after{
8875
+ content:'';
8876
+ opacity:0;
8877
+ }
8878
+ .ndl-switch:checked::after{
8879
+ content:'';
8880
+ opacity:1;
8881
+ position:absolute;
8882
+ top:50%;
8883
+ left:calc(
8884
+ var(--track-padding-left) + var(--track-width) - var(--thumb-size) -
8885
+ (var(--track-padding-left) + 1px) - (var(--track-padding-right) + 1px) +
8886
+ var(--thumb-size) / 2
8887
+ );
8888
+ transform:translate(-50%, -50%);
8889
+ transition:opacity var(--motion-transition-quick);
8890
+ width:12px;
8891
+ height:12px;
8892
+ background-color:var(--switch-checkmark-color);
8893
+ -webkit-mask-image:url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25 6.375L5.25 9.375L9.75 2.625' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
8894
+ mask-image:url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25 6.375L5.25 9.375L9.75 2.625' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
8895
+ -webkit-mask-repeat:no-repeat;
8896
+ mask-repeat:no-repeat;
8897
+ -webkit-mask-size:12px;
8898
+ mask-size:12px;
8899
+ -webkit-mask-position:center;
8900
+ mask-position:center;
8901
+ }
8902
+ .ndl-switch:checked {
8903
+ border-color:var(--theme-color-primary-icon);
8904
+ background-color:var(--theme-color-primary-icon);
8905
+ --thumb-size:16px;
8906
+ }
8907
+ .ndl-switch:checked::before{
8908
+ transform:translateX(
8909
+ calc(
8910
+ var(--track-width) - var(--thumb-size) -
8911
+ (var(--track-padding-left) + 1px) -
8912
+ (var(--track-padding-right) + 1px)
8913
+ )
8914
+ );
8915
+ }
8916
+ .ndl-switch:indeterminate::before{
8917
+ transform:translateX(
8918
+ calc(
8919
+ (
8920
+ var(--track-width) - var(--thumb-size) -
8921
+ (var(--track-padding-left) + 1px) * 2
8922
+ ) *
8923
+ 0.5
8924
+ )
8925
+ );
8926
+ }
8927
+ .ndl-ai-prompt {
8928
+ display:flex;
8929
+ width:100%;
8930
+ flex-direction:column;
8931
+ align-items:center;
8932
+ gap:4px;
8933
+
8934
+ max-width:var(--content-extra-light-max-width);
8935
+ }
8936
+ .ndl-ai-prompt .ndl-ai-prompt-wrapper {
8937
+ width:100%;
8938
+ border-radius:14px;
8939
+ border-width:1px;
8940
+ border-style:solid;
8941
+ border-color:var(--theme-color-neutral-border-weak);
8942
+ background-color:var(--theme-color-primary-bg-weak);
8943
+ padding:3px;
8944
+ }
8945
+ .ndl-ai-prompt .ndl-ai-prompt-wrapper-inner {
8946
+ position:relative;
8947
+ display:flex;
8948
+ flex-direction:column;
8949
+ gap:12px;
8950
+ border-radius:12px;
8951
+ padding:6px;
8952
+
8953
+ border:solid 1px transparent;
8954
+ background:conic-gradient(var(--theme-color-neutral-bg-weak) 0 0) padding-box, linear-gradient(
8955
+ var(--palette-baltic-40),
8956
+ var(--theme-color-neutral-bg-weak)
8957
+ ) border-box;
8958
+ }
8959
+ .ndl-ai-prompt .ndl-ai-prompt-textarea {
8960
+ box-sizing:border-box;
8961
+ resize:none;
8962
+ background-color:transparent;
8963
+ padding-left:6px;
8964
+ padding-right:6px;
8965
+ padding-top:6px;
8966
+ font:var(--typography-body-medium);
8967
+ letter-spacing:var(--typography-body-medium-letter-spacing);
8968
+ font-family:var(--typography-body-medium-font-family), sans-serif;
8969
+ }
8970
+ .ndl-ai-prompt .ndl-ai-prompt-textarea:focus {
8971
+ outline:2px solid transparent;
8972
+ outline-offset:2px;
8973
+ }
8974
+ .ndl-ai-prompt:has(.ndl-ai-prompt-textarea-above) .ndl-ai-prompt-textarea{
8975
+ padding-top:0px;
8976
+ }
8977
+ .ndl-ai-prompt .ndl-ai-prompt-textarea-above {
8978
+ display:flex;
8979
+ flex-direction:row;
8980
+ flex-wrap:wrap;
8981
+ gap:6px;
8982
+ max-height:calc(2 * 56px + 2 * var(--space-6));
8983
+ overflow-y:hidden;
8984
+ align-content:flex-start;
8985
+ min-height:0;
8986
+ }
8987
+ .ndl-ai-prompt .ndl-ai-prompt-textarea-above.ndl-can-scroll{
8988
+ overflow-y:auto;
8989
+ }
8990
+ .ndl-ai-prompt .ndl-ai-prompt-textarea-below {
8991
+ display:flex;
8992
+ align-items:flex-end;
8993
+ justify-content:space-between;
8994
+ gap:4px;
8995
+ }
8996
+ .ndl-ai-prompt .ndl-ai-prompt-textarea-below .ndl-ai-prompt-textarea-below-leading {
8997
+ display:flex;
8998
+ flex-wrap:wrap;
8999
+ align-items:center;
9000
+ gap:8px;
9001
+ }
9002
+ .ndl-ai-prompt .ndl-ai-prompt-footer {
9003
+ color:var(--theme-color-neutral-text-weaker);
9004
+ }
9005
+ .ndl-ai-prompt .ndl-ai-prompt-submit-button {
9006
+ position:relative;
9007
+ margin-left:auto;
9008
+ }
9009
+ .ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading) {
9010
+ background-color:var(--theme-color-primary-bg-weak);
9011
+ }
9012
+ .ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading):hover:not(.ndl-floating) {
9013
+ background-color:var(--theme-color-primary-hover-weak);
9014
+ }
9015
+ .ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading):active:not(.ndl-floating) {
9016
+ background-color:var(--theme-color-primary-pressed-weak);
9017
+ }
9018
+ .ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading) .ndl-icon-svg {
9019
+ color:var(--theme-color-primary-text);
9020
+ }
9021
+ .ndl-ai-prompt .ndl-ai-prompt-submit-button .ndl-icon-svg {
9022
+ transition-duration:250ms;
9023
+ transition-timing-function:cubic-bezier(0.42, 0, 0.58, 1);
9024
+ transition-property:opacity, transform;
9025
+ }
9026
+ .ndl-ai-prompt .ndl-ai-prompt-dropdown-button {
9027
+ border-color:transparent;
9028
+ background-color:var(--theme-color-neutral-bg-on-bg-weak);
9029
+ }
9030
+ .ndl-ai-prompt .ndl-ai-prompt-dropdown-button:hover {
9031
+ background-color:var(--theme-color-neutral-hover);
9032
+ }
9033
+ .ndl-ai-prompt .ndl-ai-prompt-dropdown-button:active {
9034
+ background-color:var(--theme-color-neutral-pressed);
9035
+ }
9036
+ .ndl-ai-prompt .ndl-ai-prompt-file-tag {
9037
+ display:flex;
9038
+ height:56px;
9039
+ width:100%;
9040
+ max-width:240px;
9041
+ align-items:flex-start;
9042
+ border-radius:12px;
9043
+ border-width:1px;
9044
+ border-color:var(--theme-color-neutral-border-strong);
9045
+ }
9046
+ .ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-content {
9047
+ display:flex;
9048
+ min-width:0px;
9049
+ flex-direction:column;
9050
+ padding:8px;
9051
+ font:var(--typography-body-medium);
9052
+ letter-spacing:var(--typography-body-medium-letter-spacing);
9053
+ font-family:var(--typography-body-medium-font-family), sans-serif;
9054
+ }
9055
+ .ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-content .ndl-ai-prompt-file-tag-content-title {
9056
+ overflow:hidden;
9057
+ text-overflow:ellipsis;
9058
+ white-space:nowrap;
9059
+ color:var(--theme-color-neutral-text-default);
9060
+ }
9061
+ .ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-content .ndl-ai-prompt-file-tag-content-type {
9062
+ color:var(--theme-color-neutral-text-weaker);
9063
+ }
9064
+ .ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-remove {
9065
+ margin-left:auto;
9066
+ margin-right:2px;
9067
+ margin-top:2px;
9068
+ flex-shrink:0;
9069
+ }
9070
+ .ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-leading {
9071
+ margin-left:8px;
9072
+ display:flex;
9073
+ width:40px;
9074
+ height:40px;
9075
+ flex-shrink:0;
9076
+ align-items:center;
9077
+ justify-content:center;
9078
+ align-self:center;
9079
+ border-radius:10px;
9080
+ background-color:var(--theme-color-neutral-bg-strong);
9081
+ padding:10px;
9082
+ color:var(--theme-color-neutral-icon);
9083
+ }
9084
+ .ndl-ai-prompt .ndl-ai-prompt-image-tag {
9085
+ position:relative;
9086
+ width:56px;
9087
+ height:56px;
9088
+ overflow:hidden;
9089
+ border-radius:12px;
9090
+ }
9091
+ .ndl-ai-prompt .ndl-ai-prompt-image-tag img {
9092
+ height:100%;
9093
+ width:100%;
9094
+ -o-object-fit:cover;
9095
+ object-fit:cover;
9096
+ -o-object-position:center;
9097
+ object-position:center;
9098
+ }
9099
+ .ndl-ai-prompt .ndl-ai-prompt-image-tag .ndl-ai-prompt-image-tag-loading-overlay {
9100
+ position:absolute;
9101
+ inset:0px;
9102
+ z-index:10;
9103
+ display:flex;
9104
+ align-items:center;
9105
+ justify-content:center;
9106
+ background-color:var(--theme-color-neutral-bg-default);
9107
+ opacity:0.8;
9108
+ }
9109
+ .ndl-ai-prompt .ndl-ai-prompt-image-tag .ndl-ai-prompt-image-tag-remove {
9110
+ position:absolute;
9111
+ top:2px;
9112
+ right:2px;
9113
+ }
9114
+ .ndl-ai-prompt .ndl-ai-prompt-image-tag .ndl-ai-prompt-image-tag-remove-wrapper {
9115
+ position:absolute;
9116
+ top:2px;
9117
+ right:2px;
9118
+ width:28px;
9119
+ height:28px;
9120
+ border-radius:6px;
9121
+ background-color:var(--theme-color-neutral-bg-default);
9122
+ opacity:0.7;
9123
+ }
9124
+ .ndl-ai-code-preview {
9125
+ display:flex;
9126
+ flex-direction:column;
9127
+ overflow:hidden;
9128
+ border-radius:8px;
9129
+ border-width:2px;
9130
+ border-color:var(--theme-color-neutral-border-weak);
9131
+ background-color:var(--theme-color-neutral-bg-on-bg-weak);
9132
+ }
9133
+ .ndl-ai-code-preview .ndl-ai-code-preview-header {
9134
+ display:flex;
9135
+ min-height:44px;
9136
+ align-items:center;
9137
+ justify-content:space-between;
9138
+ padding:12px;
9139
+ }
9140
+ .ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-title {
9141
+ display:flex;
9142
+ align-items:center;
9143
+ gap:8px;
9144
+ }
9145
+ .ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-title span {
9146
+ text-transform:uppercase;
9147
+ }
9148
+ .ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-title .ndl-status-label {
9149
+ height:auto !important;
9150
+ padding-top:2px !important;
9151
+ padding-bottom:2px !important;
9152
+ }
9153
+ .ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-actions {
9154
+ display:flex;
9155
+ align-items:center;
9156
+ gap:4px;
9157
+ }
9158
+ .ndl-ai-code-preview .ndl-ai-code-preview-content {
9159
+ position:relative;
9160
+ border-top-width:1px;
9161
+ border-color:var(--theme-color-neutral-border-weak);
9162
+ }
9163
+ .ndl-ai-code-preview .ndl-ai-code-preview-content .ndl-code-content-container {
9164
+ display:flex;
9165
+ flex-shrink:0;
9166
+ flex-grow:1;
9167
+ width:calc(100% - 4px);
9168
+ }
9169
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer {
9170
+ display:flex;
9171
+ align-items:center;
9172
+ justify-content:space-between;
9173
+ border-top-width:1px;
9174
+ border-color:var(--theme-color-neutral-border-weak);
9175
+ padding-left:16px;
9176
+ padding-right:16px;
9177
+ padding-top:8px;
9178
+ padding-bottom:8px;
9179
+ }
9180
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer.ndl-executed {
9181
+ justify-content:flex-end;
9182
+ }
9183
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-text {
9184
+ font-size:0.875rem;
9185
+ line-height:1.25rem;
9186
+ color:var(--theme-color-neutral-text-default);
9187
+ }
9188
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-success {
9189
+ display:flex;
9190
+ align-items:center;
9191
+ gap:8px;
9192
+ color:var(--theme-color-success-text);
9193
+ }
9194
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-success span {
9195
+ font-size:0.875rem;
9196
+ line-height:1.25rem;
9197
+ font-weight:500;
9198
+ }
9199
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-actions {
9200
+ display:flex;
9201
+ align-items:center;
9202
+ gap:8px;
9203
+ }
9204
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-actions .ndl-run-query-btn {
9205
+ cursor:pointer;
9206
+ border-style:none;
9207
+ background-color:transparent;
9208
+ padding:0px;
9209
+ }
9210
+ .ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-actions .ndl-run-query-btn .ndl-status-label:hover {
9211
+ opacity:0.9;
9212
+ }
9213
+ .ndl-ai-response ul {
9214
+ margin-top:16px;
9215
+ margin-bottom:16px;
9216
+ list-style-type:none;
9217
+ padding-left:20px;
9218
+ }
9219
+ .ndl-ai-response ul > li {
9220
+ position:relative;
9221
+ padding-left:16px;
9222
+ }
9223
+ .ndl-ai-response ul > li::before{
9224
+ content:'';
9225
+ position:absolute;
9226
+ left:0px;
9227
+ top:0.6em;
9228
+ height:6px;
9229
+ width:6px;
9230
+ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Ccircle cx='3' cy='3' r='2' fill='%23212325' stroke='%235E636A' stroke-width='2'/%3E%3C/svg%3E");
9231
+ background-repeat:no-repeat;
9232
+ background-size:contain;
9233
+ }
9234
+ .ndl-ai-response ol {
9235
+ margin-top:16px;
9236
+ margin-bottom:16px;
9237
+ list-style-type:none;
9238
+ padding-left:20px;
9239
+ }
9240
+ .ndl-ai-response ol > :not([hidden]) ~ :not([hidden]) {
9241
+ --tw-space-y-reverse:0;
9242
+ margin-top:calc(24px * calc(1 - var(--tw-space-y-reverse)));
9243
+ margin-bottom:calc(24px * var(--tw-space-y-reverse));
9244
+ }
9245
+ .ndl-ai-response ol{
9246
+ counter-reset:item;
9247
+ }
9248
+ .ndl-ai-response ol > li {
9249
+ position:relative;
9250
+ padding-left:32px;
9251
+ line-height:1.75rem;
9252
+ counter-increment:item;
9253
+ }
9254
+ .ndl-ai-response ol > li::before{
9255
+ content:counter(item);
9256
+ position:absolute;
9257
+ left:0px;
9258
+ top:0px;
9259
+ display:flex;
9260
+ align-items:center;
9261
+ justify-content:center;
9262
+ height:28px;
9263
+ padding-left:8px;
9264
+ padding-right:8px;
9265
+ border-radius:4px;
9266
+ border-width:1px;
9267
+ border-style:solid;
9268
+ border-color:var(--theme-color-neutral-border-weak);
9269
+ background-color:#81879014;
9270
+ font:var(--typography-body-medium);
9271
+ letter-spacing:var(--typography-body-medium-letter-spacing);
9272
+ font-family:var(--typography-body-medium-font-family), sans-serif;
9273
+ }
9274
+ .ndl-ai-response .ndl-ai-code-block {
9275
+ margin-top:16px;
9276
+ margin-bottom:16px;
9277
+ }
9278
+ .ndl-ai-response table {
9279
+ margin-top:16px;
9280
+ margin-bottom:16px;
9281
+ border-collapse:separate;
9282
+ --tw-border-spacing-x:0px;
9283
+ --tw-border-spacing-y:0px;
9284
+ border-spacing:var(--tw-border-spacing-x) var(--tw-border-spacing-y);
9285
+ }
9286
+ .ndl-ai-response table th {
9287
+ border-top-width:1px;
9288
+ border-bottom-width:1px;
9289
+ border-style:solid;
9290
+ border-color:var(--theme-color-neutral-border-weak);
9291
+ background-color:var(--theme-color-neutral-bg-default);
9292
+ padding-left:16px;
9293
+ padding-right:16px;
9294
+ padding-top:10px;
9295
+ padding-bottom:10px;
9296
+ color:var(--theme-color-neutral-text-weaker);
9297
+ }
9298
+ .ndl-ai-response table th:first-child {
9299
+ border-top-left-radius:8px;
9300
+ border-width:1px;
9301
+ border-style:solid;
9302
+ border-color:var(--theme-color-neutral-border-weak);
9303
+ }
9304
+ .ndl-ai-response table th:last-child {
9305
+ border-top-right-radius:8px;
9306
+ border-width:1px;
9307
+ border-style:solid;
9308
+ border-color:var(--theme-color-neutral-border-weak);
9309
+ }
9310
+ .ndl-ai-response table tr td {
9311
+ border-left-width:1px;
9312
+ border-top-width:1px;
9313
+ border-bottom-width:1px;
9314
+ border-style:solid;
9315
+ border-color:var(--theme-color-neutral-border-weak);
9316
+ background-color:var(--theme-color-neutral-bg-weak);
9317
+ padding-left:16px;
9318
+ padding-right:16px;
9319
+ padding-top:10px;
9320
+ padding-bottom:10px;
9321
+ color:var(--theme-color-neutral-text-default);
9322
+ }
9323
+ .ndl-ai-response table tr td:last-child {
9324
+ border-right-width:1px;
9325
+ border-style:solid;
9326
+ border-color:var(--theme-color-neutral-border-weak);
9327
+ }
9328
+ .ndl-ai-response table tr:last-child td:first-child {
9329
+ border-bottom-left-radius:8px;
9330
+ border-width:1px;
9331
+ border-style:solid;
9332
+ border-color:var(--theme-color-neutral-border-weak);
9333
+ }
9334
+ .ndl-ai-response table tr:last-child td:last-child {
9335
+ border-bottom-right-radius:8px;
9336
+ border-width:1px;
9337
+ border-style:solid;
9338
+ border-color:var(--theme-color-neutral-border-weak);
9339
+ }
9340
+ .ndl-ai-user-bubble {
9341
+ margin-left:auto;
9342
+ display:flex;
9343
+ width:-moz-fit-content;
9344
+ width:fit-content;
9345
+ flex-direction:row;
9346
+ align-items:flex-start;
9347
+ gap:12px;
9348
+ border-radius:12px;
9349
+ border-top-right-radius:4px;
9350
+ background-color:var(--theme-color-neutral-bg-strong);
9351
+ padding-top:8px;
9352
+ padding-bottom:8px;
9353
+ padding-left:12px;
9354
+ padding-right:8px;
9355
+ color:var(--theme-color-neutral-text-default);
9356
+ max-width:540px;
9357
+ }
9358
+ .ndl-ai-user-bubble .ndl-ai-user-bubble-avatar {
9359
+ margin-top:2px;
9360
+ margin-bottom:2px;
9361
+ flex-shrink:0;
9362
+ align-self:flex-start;
9363
+ }
9364
+ .ndl-ai-user-bubble .ndl-ai-user-bubble-content {
9365
+ margin-top:4px;
9366
+ margin-bottom:4px;
9367
+ }
9368
+ .ndl-ai-user-bubble .ndl-ai-user-bubble-trailing {
9369
+ margin-left:auto;
9370
+ display:flex;
9371
+ flex-shrink:0;
9372
+ align-items:center;
9373
+ justify-content:center;
9374
+ align-self:flex-start;
9375
+ }
9376
+ .ndl-ai-user-bubble .ndl-ai-user-bubble-trailing .ndl-icon-btn{
9377
+ --icon-button-size:28px;
9378
+ --icon-button-icon-size:var(--space-16);
9379
+ --icon-button-border-radius:6px;
9380
+ }
9381
+ .ndl-ai-more-files {
9382
+ display:flex;
9383
+ width:-moz-fit-content;
9384
+ width:fit-content;
9385
+ align-items:center;
9386
+ justify-content:center;
9387
+ border-radius:8px;
9388
+ border-width:1px;
9389
+ border-color:var(--theme-color-neutral-border-weak);
9390
+ background-color:var(--theme-color-neutral-bg-weak);
9391
+ padding-left:8px;
9392
+ padding-right:8px;
9393
+ padding-top:6px;
9394
+ padding-bottom:6px;
9395
+ color:var(--theme-color-neutral-text-default);
9396
+ font:var(--typography-body-medium);
9397
+ letter-spacing:var(--typography-body-medium-letter-spacing);
9398
+ font-family:var(--typography-body-medium-font-family), sans-serif;
9399
+ }
9400
+ .ndl-ai-more-files:hover {
9401
+ background-color:var(--theme-color-neutral-hover);
9402
+ }
9403
+ .ndl-ai-more-files:active {
9404
+ background-color:var(--theme-color-neutral-pressed);
9405
+ }
9406
+ .ndl-ai-more-files{
9407
+ min-width:var(--space-32);
9408
+ }
9409
+ .ndl-ai-more-files.ndl-active {
9410
+ background-color:var(--theme-color-neutral-pressed);
9411
+ }
9412
+ .ndl-ai-file-tag {
9413
+ display:flex;
9414
+ height:56px;
9415
+ width:100%;
9416
+ max-width:240px;
9417
+ align-items:flex-start;
9418
+ border-radius:12px;
9419
+ border-width:1px;
9420
+ border-color:var(--theme-color-neutral-border-strong);
9421
+ text-align:start;
9422
+ }
9423
+ .ndl-ai-file-tag .ndl-ai-file-tag-content {
9424
+ display:flex;
9425
+ min-width:0px;
9426
+ flex-direction:column;
9427
+ align-self:center;
9428
+ padding-left:8px;
9429
+ padding-right:8px;
9430
+ font:var(--typography-body-medium);
9431
+ letter-spacing:var(--typography-body-medium-letter-spacing);
9432
+ font-family:var(--typography-body-medium-font-family), sans-serif;
9433
+ }
9434
+ .ndl-ai-file-tag .ndl-ai-file-tag-content .ndl-ai-file-tag-content-title {
9435
+ overflow:hidden;
9436
+ text-overflow:ellipsis;
9437
+ white-space:nowrap;
9438
+ color:var(--theme-color-neutral-text-default);
9439
+ }
9440
+ .ndl-ai-file-tag .ndl-ai-file-tag-content .ndl-ai-file-tag-content-type {
9441
+ color:var(--theme-color-neutral-text-weaker);
9442
+ }
9443
+ .ndl-ai-file-tag .ndl-ai-file-tag-remove {
9444
+ margin-left:auto;
9445
+ margin-right:2px;
9446
+ margin-top:2px;
9447
+ flex-shrink:0;
9448
+ }
9449
+ .ndl-ai-file-tag .ndl-ai-file-tag-leading {
9450
+ margin-left:8px;
9451
+ display:flex;
9452
+ width:40px;
9453
+ height:40px;
9454
+ flex-shrink:0;
9455
+ align-items:center;
9456
+ justify-content:center;
9457
+ align-self:center;
9458
+ border-radius:10px;
9459
+ background-color:var(--theme-color-neutral-bg-strong);
9460
+ padding:10px;
9461
+ color:var(--theme-color-neutral-icon);
9462
+ }
9463
+ .ndl-ai-file-tag .ndl-ai-file-tag-leading .ndl-icon-svg {
9464
+ width:20px;
9465
+ height:20px;
9466
+ }
9467
+ .ndl-ai-image-tag {
9468
+ position:relative;
9469
+ width:56px;
9470
+ height:56px;
9471
+ overflow:hidden;
9472
+ border-radius:12px;
9473
+ }
9474
+ .ndl-ai-image-tag img {
9475
+ height:100%;
9476
+ width:100%;
9477
+ -o-object-fit:cover;
9478
+ object-fit:cover;
9479
+ -o-object-position:center;
9480
+ object-position:center;
9481
+ }
9482
+ .ndl-ai-image-tag .ndl-ai-image-tag-loading-overlay {
9483
+ position:absolute;
9484
+ inset:0px;
9485
+ z-index:10;
9486
+ display:flex;
9487
+ align-items:center;
9488
+ justify-content:center;
9489
+ background-color:var(--theme-color-neutral-bg-default);
9490
+ opacity:0.6;
9491
+ }
9492
+ .ndl-ai-image-tag .ndl-ai-image-tag-remove {
9493
+ position:absolute;
9494
+ top:2px;
9495
+ right:2px;
9496
+ z-index:20;
9497
+ }
9498
+ .ndl-ai-image-tag .ndl-ai-image-tag-remove-wrapper {
9499
+ position:absolute;
9500
+ top:2px;
9501
+ right:2px;
9502
+ z-index:20;
9503
+ width:28px;
9504
+ height:28px;
9505
+ border-radius:6px;
9506
+ background-color:var(--theme-color-neutral-bg-default);
9507
+ opacity:0.8;
9508
+ }
9509
+ @property --ndl-ai-suggestion-angle{
9510
+ syntax:'<angle>';
9511
+ initial-value:0deg;
9512
+ inherits:false;
9513
+ }
9514
+ .ndl-ai-suggestion {
9515
+ position:relative;
9516
+ height:-moz-fit-content;
9517
+ height:fit-content;
9518
+ width:-moz-fit-content;
9519
+ width:fit-content;
9520
+ overflow:hidden;
9521
+ border-radius:6px;
9522
+ border-width:1px;
9523
+ border-color:var(--theme-color-neutral-border-weak);
9524
+ background-color:var(--theme-color-neutral-bg-weak);
9525
+ text-align:start;
9526
+ color:var(--theme-color-neutral-text-default);
9527
+ font:var(--typography-body-medium);
9528
+ letter-spacing:var(--typography-body-medium-letter-spacing);
9529
+ font-family:var(--typography-body-medium-font-family), sans-serif;
9530
+
9531
+ --ndl-ai-suggestion-background:var(--theme-color-neutral-bg-weak);
9532
+ --ndl-ai-suggestion-padding-x:var(--space-8);
9533
+ --ndl-ai-suggestion-padding-y:var(--space-4);
9534
+ background:var(theme-color-neutral-bg-weak);
9535
+ }
9536
+ .ndl-ai-suggestion:not(.ndl-disabled):hover{
9537
+ --ndl-ai-suggestion-background:var(--theme-color-neutral-hover);
9538
+ }
9539
+ .ndl-ai-suggestion:not(.ndl-disabled):active{
9540
+ --ndl-ai-suggestion-background:var(--theme-color-neutral-pressed);
9541
+ }
9542
+ .ndl-ai-suggestion .ndl-ai-suggestion-inner {
8783
9543
  display:flex;
8784
- width:100%;
9544
+ align-items:center;
9545
+ gap:6px;
9546
+ padding-left:var(--ndl-ai-suggestion-padding-x);
9547
+ padding-right:var(--ndl-ai-suggestion-padding-x);
9548
+ padding-top:var(--ndl-ai-suggestion-padding-y);
9549
+ padding-bottom:var(--ndl-ai-suggestion-padding-y);
9550
+ background:var(--ndl-ai-suggestion-background);
8785
9551
  }
8786
- .ndl-switch-label:has(.ndl-switch:disabled) .ndl-switch-label-text {
9552
+ .ndl-ai-suggestion.ndl-disabled {
8787
9553
  cursor:not-allowed;
8788
9554
  color:var(--theme-color-neutral-text-weakest);
8789
9555
  }
8790
- .ndl-switch{
8791
- --thumb-size:12px;
8792
- --track-height:20px;
8793
- --track-width:36px;
8794
- --track-padding-left:3px;
8795
- --track-padding-right:1px;
8796
- --switch-checkmark-color:var(--theme-color-primary-text);
8797
- position:relative;
8798
- display:grid;
9556
+ .ndl-ai-suggestion.ndl-large{
9557
+ --ndl-ai-suggestion-padding-x:var(--space-12);
9558
+ --ndl-ai-suggestion-padding-y:var(--space-6);
9559
+ }
9560
+ .ndl-ai-suggestion.ndl-small{
9561
+ --ndl-ai-suggestion-padding-x:var(--space-8);
9562
+ --ndl-ai-suggestion-padding-y:var(--space-4);
9563
+ }
9564
+ .ndl-ai-suggestion .ndl-ai-suggestion-leading {
8799
9565
  width:16px;
8800
9566
  height:16px;
8801
9567
  flex-shrink:0;
8802
- cursor:pointer;
8803
- -webkit-appearance:none;
8804
- -moz-appearance:none;
8805
- appearance:none;
8806
- align-items:center;
8807
- border-radius:9999px;
9568
+ -webkit-user-select:none;
9569
+ -moz-user-select:none;
9570
+ user-select:none;
9571
+ color:var(--theme-color-neutral-icon);
9572
+ }
9573
+ .ndl-ai-suggestion.ndl-ai-suggestion-special{
9574
+ border-color:transparent;
9575
+
9576
+ background:linear-gradient(var(--theme-color-neutral-bg-weak)) padding-box, conic-gradient(
9577
+ from var(--ndl-ai-suggestion-angle),
9578
+ var(--theme-color-neutral-border-weak) 0%,
9579
+ var(--theme-color-primary-border-strong) 15%,
9580
+ var(--theme-color-primary-border-strong) 45%,
9581
+ var(--theme-color-neutral-border-weak) 60%
9582
+ ) border-box;
9583
+ animation:ndl-ai-suggestion-border-rotate 3.5s linear infinite;
9584
+ }
9585
+ @keyframes ndl-ai-suggestion-border-rotate{
9586
+ 0%{
9587
+ --ndl-ai-suggestion-angle:0deg;
9588
+ }
9589
+ 100%{
9590
+ --ndl-ai-suggestion-angle:360deg;
9591
+ }
9592
+ }
9593
+ @keyframes ndl-ai-reasoning-text-wave{
9594
+ 0%{
9595
+ background-position:100% 0;
9596
+ }
9597
+ 100%{
9598
+ background-position:-100% 0;
9599
+ }
9600
+ }
9601
+ .ndl-ai-reasoning {
9602
+ overflow:hidden;
9603
+ border-radius:8px;
8808
9604
  border-width:1px;
8809
- border-style:solid;
8810
- border-color:var(--theme-color-neutral-border-strongest);
9605
+ border-color:var(--theme-color-neutral-border-weak);
8811
9606
  background-color:var(--theme-color-neutral-bg-weak);
8812
-
8813
- grid:[track] 1fr / [track] 1fr;
8814
- padding-left:var(--track-padding-left);
8815
- padding-right:var(--track-padding-right);
8816
- touch-action:pan-y;
8817
- pointer-events:auto;
8818
- box-sizing:border-box;
8819
- transition:background-color var(--motion-transition-quick), box-shadow var(--motion-transition-quick);
8820
- box-shadow:0 0 0 0 transparent;
8821
-
8822
- inline-size:var(--track-width);
8823
- block-size:var(--track-width);
8824
- height:var(--track-height);
9607
+ color:var(--theme-color-neutral-text-default);
8825
9608
  }
8826
- .ndl-switch:disabled {
8827
- cursor:not-allowed;
8828
- border-color:var(--theme-color-neutral-bg-strong);
8829
- background-color:var(--theme-color-neutral-bg-strong);
8830
- outline-width:0px;
9609
+ .ndl-ai-reasoning .ndl-ai-reasoning-header {
9610
+ display:flex;
9611
+ min-height:52px;
9612
+ align-items:center;
9613
+ gap:12px;
9614
+ padding:12px;
8831
9615
  }
8832
- .ndl-switch:not(:disabled):hover:checked{
8833
- box-shadow:0 0 0 4px var(--theme-color-primary-hover-weak);
8834
- }
8835
- .ndl-switch:not(:disabled):hover:not(:checked){
8836
- box-shadow:0 0 0 4px var(--theme-color-neutral-hover);
8837
- }
8838
- .ndl-switch:not(:disabled):hover:active:not(:checked){
8839
- box-shadow:0 0 0 4px var(--theme-color-neutral-pressed);
8840
- }
8841
- .ndl-switch:not(:disabled):hover:active:checked{
8842
- box-shadow:0 0 0 4px var(--theme-color-primary-pressed-weak);
8843
- }
8844
- .ndl-switch:not(:disabled):hover:focus-visible {
8845
- outline-style:solid;
9616
+ .ndl-ai-reasoning .ndl-ai-reasoning-header:focus-visible {
8846
9617
  outline-width:2px;
8847
9618
  outline-offset:0px;
8848
9619
  outline-color:var(--theme-color-primary-focus);
8849
9620
  }
8850
- .ndl-switch::before{
8851
- inline-size:var(--thumb-size);
8852
- block-size:var(--thumb-size);
9621
+ .ndl-ai-reasoning .ndl-ai-reasoning-header .ndl-ai-reasoning-header-text {
9622
+ color:var(--theme-color-neutral-text-default);
8853
9623
 
8854
- transition:transform var(--motion-transition-quick), width var(--motion-transition-quick), height var(--motion-transition-quick), background-color var(--motion-transition-quick);
8855
- content:'';
8856
- grid-area:track;
8857
- transform:translateX(0);
8858
- border-radius:9999px;
8859
- background-color:var(--theme-color-neutral-bg-weak);
8860
- }
8861
- .ndl-switch:not(:disabled):not(:checked)::before {
8862
- background-color:var(--theme-color-neutral-bg-stronger);
9624
+ background:linear-gradient(
9625
+ 90deg,
9626
+ var(--theme-color-neutral-text-default) 0%,
9627
+ var(--theme-color-neutral-text-default) 37%,
9628
+ var(--theme-color-neutral-bg-stronger) 50%,
9629
+ var(--theme-color-neutral-text-default) 63%,
9630
+ var(--theme-color-neutral-text-default) 100%
9631
+ );
9632
+ background-size:200% 100%;
9633
+ background-clip:text;
9634
+ -webkit-background-clip:text;
9635
+ color:transparent;
9636
+ animation:ndl-ai-reasoning-text-wave 2s linear infinite;
8863
9637
  }
8864
- .ndl-switch:disabled::before{
8865
- box-shadow:none;
8866
- }
8867
- .ndl-switch::after{
8868
- content:'';
8869
- opacity:0;
8870
- }
8871
- .ndl-switch:checked::after{
8872
- content:'';
8873
- opacity:1;
8874
- position:absolute;
8875
- top:50%;
8876
- left:calc(
8877
- var(--track-padding-left) + var(--track-width) - var(--thumb-size) -
8878
- (var(--track-padding-left) + 1px) - (var(--track-padding-right) + 1px) +
8879
- var(--thumb-size) / 2
8880
- );
8881
- transform:translate(-50%, -50%);
8882
- transition:opacity var(--motion-transition-quick);
8883
- width:12px;
8884
- height:12px;
8885
- background-color:var(--switch-checkmark-color);
8886
- -webkit-mask-image:url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25 6.375L5.25 9.375L9.75 2.625' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
8887
- mask-image:url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25 6.375L5.25 9.375L9.75 2.625' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
8888
- -webkit-mask-repeat:no-repeat;
8889
- mask-repeat:no-repeat;
8890
- -webkit-mask-size:12px;
8891
- mask-size:12px;
8892
- -webkit-mask-position:center;
8893
- mask-position:center;
8894
- }
8895
- .ndl-switch:checked {
8896
- border-color:var(--theme-color-primary-icon);
8897
- background-color:var(--theme-color-primary-icon);
8898
- --thumb-size:16px;
9638
+ .ndl-ai-reasoning .ndl-ai-reasoning-expand-button {
9639
+ margin-left:auto;
8899
9640
  }
8900
- .ndl-switch:checked::before{
8901
- transform:translateX(
8902
- calc(
8903
- var(--track-width) - var(--thumb-size) -
8904
- (var(--track-padding-left) + 1px) -
8905
- (var(--track-padding-right) + 1px)
8906
- )
8907
- );
8908
- }
8909
- .ndl-switch:indeterminate::before{
8910
- transform:translateX(
8911
- calc(
8912
- (
8913
- var(--track-width) - var(--thumb-size) -
8914
- (var(--track-padding-left) + 1px) * 2
8915
- ) *
8916
- 0.5
8917
- )
8918
- );
9641
+ .ndl-ai-reasoning .ndl-ai-reasoning-expand-button.ndl-expanded .ndl-icon-svg{
9642
+ transform:scaleY(-1);
9643
+ transition:transform var(--motion-transition-quick);
9644
+ }
9645
+ .ndl-ai-reasoning .ndl-ai-reasoning-content {
9646
+ display:grid;
9647
+ grid-template-rows:0fr;
9648
+ transition:grid-template-rows var(--motion-transition-quick);
9649
+ }
9650
+ .ndl-ai-reasoning .ndl-ai-reasoning-content.ndl-expanded{
9651
+ grid-template-rows:1fr;
9652
+ border-top-width:1px;
9653
+ border-style:solid;
9654
+ border-color:var(--theme-color-neutral-border-weak);
8919
9655
  }
9656
+ .ndl-ai-reasoning .ndl-ai-reasoning-content .ndl-ai-reasoning-content-inner {
9657
+ overflow:hidden;
9658
+ }
9659
+ .ndl-ai-reasoning .ndl-ai-reasoning-content .ndl-ai-reasoning-content-inner .ndl-ai-reasoning-content-inner-2 {
9660
+ display:flex;
9661
+ flex-direction:column;
9662
+ gap:12px;
9663
+ padding:12px;
9664
+ }
9665
+ .ndl-ai-reasoning .ndl-ai-reasoning-section {
9666
+ width:100%;
9667
+ }
9668
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-header {
9669
+ display:flex;
9670
+ width:100%;
9671
+ align-items:center;
9672
+ gap:12px;
9673
+ }
9674
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-header .ndl-ai-reasoning-section-leading {
9675
+ width:16px;
9676
+ height:16px;
9677
+ flex-shrink:0;
9678
+ color:var(--theme-color-neutral-icon);
9679
+ }
9680
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-header .ndl-ai-reasoning-section-icon {
9681
+ margin-left:auto;
9682
+ flex-shrink:0;
9683
+ }
9684
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content {
9685
+ display:grid;
9686
+ grid-template-rows:0fr;
9687
+ transition:grid-template-rows var(--motion-transition-quick);
9688
+ }
9689
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content.ndl-expanded{
9690
+ grid-template-rows:1fr;
9691
+ }
9692
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner {
9693
+ overflow:hidden;
9694
+ }
9695
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 {
9696
+ display:flex;
9697
+ gap:12px;
9698
+ }
9699
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 .ndl-ai-reasoning-section-content-line-container {
9700
+ display:flex;
9701
+ width:16px;
9702
+ flex-shrink:0;
9703
+ align-items:center;
9704
+ justify-content:center;
9705
+ }
9706
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 .ndl-ai-reasoning-section-content-line-container .ndl-ai-reasoning-section-content-line {
9707
+ height:100%;
9708
+ width:1px;
9709
+ background-color:var(--theme-color-neutral-border-weak);
9710
+ }
9711
+ .ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 .ndl-ai-reasoning-section-content-children {
9712
+ flex:1 1 0%;
9713
+ padding-top:12px;
9714
+ padding-bottom:12px;
9715
+ color:var(--theme-color-neutral-text-weak);
9716
+ font:var(--typography-body-small);
9717
+ letter-spacing:var(--typography-body-small-letter-spacing);
9718
+ font-family:var(--typography-body-small-font-family), sans-serif;
9719
+ }
8920
9720
  .n-fixed {
8921
9721
  position:fixed;
8922
9722
  }
@@ -8998,12 +9798,18 @@ button.ndl-avatar:focus-visible {
8998
9798
  .n-ml-7 {
8999
9799
  margin-left:28px;
9000
9800
  }
9801
+ .n-ml-auto {
9802
+ margin-left:auto;
9803
+ }
9001
9804
  .n-mr-token-8 {
9002
9805
  margin-right:8px;
9003
9806
  }
9004
9807
  .n-mt-5 {
9005
9808
  margin-top:20px;
9006
9809
  }
9810
+ .n-mt-auto {
9811
+ margin-top:auto;
9812
+ }
9007
9813
  .n-mt-token-16 {
9008
9814
  margin-top:16px;
9009
9815
  }
@@ -9019,6 +9825,9 @@ button.ndl-avatar:focus-visible {
9019
9825
  .n-flex {
9020
9826
  display:flex;
9021
9827
  }
9828
+ .n-inline-flex {
9829
+ display:inline-flex;
9830
+ }
9022
9831
  .n-table {
9023
9832
  display:table;
9024
9833
  }
@@ -9047,6 +9856,10 @@ button.ndl-avatar:focus-visible {
9047
9856
  width:100%;
9048
9857
  height:100%;
9049
9858
  }
9859
+ .n-size-token-16 {
9860
+ width:16px;
9861
+ height:16px;
9862
+ }
9050
9863
  .n-size-token-24 {
9051
9864
  width:24px;
9052
9865
  height:24px;
@@ -9106,6 +9919,9 @@ button.ndl-avatar:focus-visible {
9106
9919
  .n-h-full {
9107
9920
  height:100%;
9108
9921
  }
9922
+ .n-h-screen {
9923
+ height:100vh;
9924
+ }
9109
9925
  .n-h-token-12 {
9110
9926
  height:12px;
9111
9927
  }
@@ -9145,6 +9961,9 @@ button.ndl-avatar:focus-visible {
9145
9961
  .n-w-\[300px\] {
9146
9962
  width:300px;
9147
9963
  }
9964
+ .n-w-\[440px\] {
9965
+ width:440px;
9966
+ }
9148
9967
  .n-w-fit {
9149
9968
  width:-moz-fit-content;
9150
9969
  width:fit-content;
@@ -9180,6 +9999,9 @@ button.ndl-avatar:focus-visible {
9180
9999
  .n-max-w-\[600px\] {
9181
10000
  max-width:600px;
9182
10001
  }
10002
+ .n-max-w-\[85\%\] {
10003
+ max-width:85%;
10004
+ }
9183
10005
  .n-max-w-max {
9184
10006
  max-width:-moz-max-content;
9185
10007
  max-width:max-content;
@@ -9193,6 +10015,9 @@ button.ndl-avatar:focus-visible {
9193
10015
  .n-shrink-0 {
9194
10016
  flex-shrink:0;
9195
10017
  }
10018
+ .n-grow {
10019
+ flex-grow:1;
10020
+ }
9196
10021
  .n-table-auto {
9197
10022
  table-layout:auto;
9198
10023
  }
@@ -9255,6 +10080,12 @@ button.ndl-avatar:focus-visible {
9255
10080
  .n-items-center {
9256
10081
  align-items:center;
9257
10082
  }
10083
+ .n-justify-start {
10084
+ justify-content:flex-start;
10085
+ }
10086
+ .n-justify-end {
10087
+ justify-content:flex-end;
10088
+ }
9258
10089
  .n-justify-center {
9259
10090
  justify-content:center;
9260
10091
  }
@@ -9267,6 +10098,12 @@ button.ndl-avatar:focus-visible {
9267
10098
  .n-gap-1 {
9268
10099
  gap:4px;
9269
10100
  }
10101
+ .n-gap-1\.5 {
10102
+ gap:6px;
10103
+ }
10104
+ .n-gap-12 {
10105
+ gap:48px;
10106
+ }
9270
10107
  .n-gap-2 {
9271
10108
  gap:8px;
9272
10109
  }
@@ -9297,6 +10134,9 @@ button.ndl-avatar:focus-visible {
9297
10134
  .n-gap-token-48 {
9298
10135
  gap:48px;
9299
10136
  }
10137
+ .n-gap-token-6 {
10138
+ gap:6px;
10139
+ }
9300
10140
  .n-gap-token-64 {
9301
10141
  gap:64px;
9302
10142
  }
@@ -9335,6 +10175,9 @@ button.ndl-avatar:focus-visible {
9335
10175
  .n-overflow-hidden {
9336
10176
  overflow:hidden;
9337
10177
  }
10178
+ .n-overflow-y-auto {
10179
+ overflow-y:auto;
10180
+ }
9338
10181
  .n-overflow-x-scroll {
9339
10182
  overflow-x:scroll;
9340
10183
  }
@@ -28409,6 +29252,12 @@ button.ndl-avatar:focus-visible {
28409
29252
  .n-p-2 {
28410
29253
  padding:8px;
28411
29254
  }
29255
+ .n-p-3 {
29256
+ padding:12px;
29257
+ }
29258
+ .n-p-4 {
29259
+ padding:16px;
29260
+ }
28412
29261
  .n-p-8 {
28413
29262
  padding:32px;
28414
29263
  }
@@ -28467,6 +29316,9 @@ button.ndl-avatar:focus-visible {
28467
29316
  padding-top:8px;
28468
29317
  padding-bottom:8px;
28469
29318
  }
29319
+ .n-pb-4 {
29320
+ padding-bottom:16px;
29321
+ }
28470
29322
  .n-pb-token-16 {
28471
29323
  padding-bottom:16px;
28472
29324
  }
@@ -28507,6 +29359,9 @@ button.ndl-avatar:focus-visible {
28507
29359
  .n-font-light {
28508
29360
  font-weight:300;
28509
29361
  }
29362
+ .n-font-normal {
29363
+ font-weight:400;
29364
+ }
28510
29365
  .n-font-semibold {
28511
29366
  font-weight:600;
28512
29367
  }