cax-design-system 2.5.0 → 2.6.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.
Files changed (69) hide show
  1. package/README.md +1 -1
  2. package/api/confirmation.d.ts +5 -0
  3. package/chips/chips.d.ts +12 -1
  4. package/chips/chips.module.d.ts +2 -1
  5. package/confirmdialog/confirmdialog.d.ts +9 -1
  6. package/dialog/dialog.d.ts +4 -0
  7. package/esm2022/api/confirmation.mjs +1 -1
  8. package/esm2022/autocomplete/autocomplete.mjs +3 -3
  9. package/esm2022/calendar/calendar.mjs +4 -4
  10. package/esm2022/chips/chips.mjs +56 -17
  11. package/esm2022/chips/chips.module.mjs +5 -4
  12. package/esm2022/confirmdialog/confirmdialog.mjs +31 -6
  13. package/esm2022/dialog/dialog.mjs +18 -3
  14. package/esm2022/dropdown/dropdown.mjs +3 -3
  15. package/esm2022/dynamicdialog/dynamicdialog.mjs +3 -3
  16. package/esm2022/inputtext/inputtext.component.mjs +2 -2
  17. package/esm2022/navigation/navigation.interface.mjs +1 -1
  18. package/esm2022/navigation/navigation.mjs +78 -17
  19. package/esm2022/sidebar/sidebar.mjs +10 -3
  20. package/esm2022/table/components/column-filter/column-filter.mjs +146 -7
  21. package/esm2022/table/components/column-filter-form-element/column-filter-form-element.mjs +8 -7
  22. package/esm2022/table/components/sort-icon/sort-icon.mjs +7 -7
  23. package/esm2022/table/directives/sortable-column.directive.mjs +6 -6
  24. package/esm2022/table/table.mjs +114 -77
  25. package/esm2022/timeline/timeline.mjs +2 -2
  26. package/esm2022/tooltip/tooltip.module.mjs +6 -4
  27. package/fesm2022/cax-design-system-autocomplete.mjs +2 -2
  28. package/fesm2022/cax-design-system-autocomplete.mjs.map +1 -1
  29. package/fesm2022/cax-design-system-calendar.mjs +3 -3
  30. package/fesm2022/cax-design-system-calendar.mjs.map +1 -1
  31. package/fesm2022/cax-design-system-chips.mjs +58 -19
  32. package/fesm2022/cax-design-system-chips.mjs.map +1 -1
  33. package/fesm2022/cax-design-system-confirmdialog.mjs +31 -6
  34. package/fesm2022/cax-design-system-confirmdialog.mjs.map +1 -1
  35. package/fesm2022/cax-design-system-dialog.mjs +17 -2
  36. package/fesm2022/cax-design-system-dialog.mjs.map +1 -1
  37. package/fesm2022/cax-design-system-dropdown.mjs +2 -2
  38. package/fesm2022/cax-design-system-dropdown.mjs.map +1 -1
  39. package/fesm2022/cax-design-system-dynamicdialog.mjs +2 -2
  40. package/fesm2022/cax-design-system-dynamicdialog.mjs.map +1 -1
  41. package/fesm2022/cax-design-system-inputtext.mjs +1 -1
  42. package/fesm2022/cax-design-system-inputtext.mjs.map +1 -1
  43. package/fesm2022/cax-design-system-navigation.mjs +77 -16
  44. package/fesm2022/cax-design-system-navigation.mjs.map +1 -1
  45. package/fesm2022/cax-design-system-sidebar.mjs +9 -2
  46. package/fesm2022/cax-design-system-sidebar.mjs.map +1 -1
  47. package/fesm2022/cax-design-system-table.mjs +270 -99
  48. package/fesm2022/cax-design-system-table.mjs.map +1 -1
  49. package/fesm2022/cax-design-system-timeline.mjs +2 -2
  50. package/fesm2022/cax-design-system-timeline.mjs.map +1 -1
  51. package/fesm2022/cax-design-system-tooltip.mjs +5 -3
  52. package/fesm2022/cax-design-system-tooltip.mjs.map +1 -1
  53. package/navigation/navigation.d.ts +12 -7
  54. package/navigation/navigation.interface.d.ts +8 -5
  55. package/package.json +132 -132
  56. package/resources/cax.min.scss +1 -1
  57. package/resources/cax.scss +760 -377
  58. package/resources/components/autocomplete/autocomplete.scss +32 -33
  59. package/resources/components/calendar/calendar.scss +9 -10
  60. package/resources/components/chips/chips.scss +110 -62
  61. package/resources/components/dialog/dialog.scss +2 -2
  62. package/resources/components/dropdown/dropdown.scss +6 -0
  63. package/resources/components/table/table.scss +50 -2
  64. package/resources/components/timeline/timeline.scss +0 -1
  65. package/sidebar/sidebar.d.ts +8 -1
  66. package/table/components/column-filter/column-filter.d.ts +30 -0
  67. package/table/directives/sortable-column.directive.d.ts +2 -2
  68. package/table/table.d.ts +3 -2
  69. package/tooltip/tooltip.module.d.ts +3 -1
@@ -1130,68 +1130,6 @@
1130
1130
  border-color: #fca5a5;
1131
1131
  }
1132
1132
 
1133
- .cax-chips:not(.cax-disabled):hover .cax-chips-multiple-container {
1134
- border-color: #52525b;
1135
- }
1136
- .cax-chips:not(.cax-disabled).cax-focus .cax-chips-multiple-container {
1137
- outline: 1px solid var(--cax-focus-ring-color);
1138
- outline-offset: -1px;
1139
- box-shadow: none;
1140
- border-color: #52525b;
1141
- }
1142
- .cax-chips .cax-chips-multiple-container {
1143
- padding: 0.25rem 0.75rem;
1144
- gap: 0.5rem;
1145
- }
1146
- .cax-chips .cax-chips-multiple-container .cax-chips-token {
1147
- padding: 0.25rem 0.75rem;
1148
- margin-right: 0.5rem;
1149
- background: var(--neutral-300);
1150
- color: var(--neutral-800);
1151
- border-radius: 16px;
1152
- }
1153
- .cax-chips .cax-chips-multiple-container .cax-chips-token.cax-focus {
1154
- background: #3f3f46;
1155
- color: #ffffff;
1156
- }
1157
- .cax-chips .cax-chips-multiple-container .cax-chips-token .cax-chips-token-icon {
1158
- margin-left: 0.5rem;
1159
- }
1160
- .cax-chips .cax-chips-multiple-container .cax-chips-input-token {
1161
- padding: 0.25rem 0;
1162
- }
1163
- .cax-chips .cax-chips-multiple-container .cax-chips-input-token input {
1164
- font-family: var(--font-family);
1165
- font-feature-settings: var(--font-feature-settings, normal);
1166
- font-size: 1rem;
1167
- color: var(--neutral-900);
1168
- padding: 0;
1169
- margin: 0;
1170
- }
1171
-
1172
- cax-chips.ng-dirty.ng-invalid > .cax-chips > .cax-inputtext {
1173
- border-color: var(--error-500);
1174
- }
1175
-
1176
- cax-chips.cax-chips-clearable .cax-inputtext {
1177
- padding-right: 1.75rem;
1178
- }
1179
-
1180
- cax-chips.cax-chips-left-icon .cax-inputtext {
1181
- padding-left: 1.75rem;
1182
- padding-right: 1.75rem;
1183
- }
1184
-
1185
- cax-chips.cax-chips-clearable .cax-chips-clear-icon {
1186
- color: var(--neutral-800);
1187
- right: 0.75rem;
1188
- }
1189
- cax-chips.cax-chips-left-icon .cax-chips-icon-left {
1190
- color: var(--neutral-800);
1191
- left: 0.75rem;
1192
- right: 0.75rem;
1193
- }
1194
-
1195
1133
  .cax-colorpicker-preview,
1196
1134
  .cax-fluid .cax-colorpicker-preview.cax-inputtext {
1197
1135
  width: 1.5rem;
@@ -1288,28 +1226,6 @@
1288
1226
  border-color: #fca5a5;
1289
1227
  }
1290
1228
 
1291
- textarea {
1292
- padding: 8px 10px 8px 10px;
1293
- border: 1px solid var(--grey-200);
1294
- border-radius: 8px;
1295
- font-size: 14px;
1296
- line-height: 21px;
1297
- font-weight: 400;
1298
- resize: none;
1299
-
1300
- &.filled-style {
1301
- background: var(--white-100);
1302
- }
1303
- &.cax-inputtextarea-disabled {
1304
- opacity: 0.5;
1305
- }
1306
-
1307
- &:focus {
1308
- border-color: var(--cax-focus-ring-color);
1309
- outline: none;
1310
- }
1311
- }
1312
-
1313
1229
  .cax-listbox {
1314
1230
  background: #18181b;
1315
1231
  color: #ffffff;
@@ -1986,12 +1902,12 @@
1986
1902
  .cax-speeddial-action {
1987
1903
  width: 2.5rem;
1988
1904
  height: 2.5rem;
1989
- background: var(--neutral-500);
1905
+ background: var(--neutral-75);
1990
1906
  color: var(--neutral-900);
1991
1907
  }
1992
1908
  .cax-speeddial-action:hover {
1993
- background: #3f3f46;
1994
- color: #ffffff;
1909
+ background: var(--neutral-150);
1910
+ color: var(--black-100);
1995
1911
  }
1996
1912
 
1997
1913
  .cax-speeddial-direction-up .cax-speeddial-item {
@@ -2142,10 +2058,9 @@
2142
2058
  .cax-column-filter-menu-button {
2143
2059
  width: 1.75rem;
2144
2060
  height: 1.75rem;
2145
- color: #a1a1aa;
2061
+ color: var(--neutral-900);
2146
2062
  border: 0 none;
2147
2063
  background: transparent;
2148
- border-radius: 50%;
2149
2064
  transition:
2150
2065
  background-color 0.2s,
2151
2066
  color 0.2s,
@@ -2154,19 +2069,17 @@
2154
2069
  outline-color 0.2s;
2155
2070
  }
2156
2071
  .cax-column-filter-menu-button:hover {
2157
- color: #ffffff;
2072
+ color: var(--neutral-900);
2158
2073
  border-color: transparent;
2159
- background: rgba(255, 255, 255, 0.03);
2160
2074
  }
2161
2075
  .cax-column-filter-menu-button.cax-column-filter-menu-button-open,
2162
2076
  .cax-column-filter-menu-button.cax-column-filter-menu-button-open:hover {
2163
- background: rgba(255, 255, 255, 0.03);
2164
- color: #ffffff;
2077
+ color: var(--neutral-900);
2165
2078
  }
2166
2079
  .cax-column-filter-menu-button.cax-column-filter-menu-button-active,
2167
2080
  .cax-column-filter-menu-button.cax-column-filter-menu-button-active:hover {
2168
- background: rgba(34, 211, 238, 0.16);
2169
- color: rgba(255, 255, 255, 0.87);
2081
+ background: var(--primary-100);
2082
+ color: var(--primary-color);
2170
2083
  }
2171
2084
  .cax-column-filter-menu-button:focus-visible {
2172
2085
  outline: 1px solid var(--cax-focus-ring-color);
@@ -2200,13 +2113,11 @@
2200
2113
  }
2201
2114
 
2202
2115
  .cax-column-filter-overlay {
2203
- background: #18181b;
2204
- color: #ffffff;
2205
- border: 1px solid #3f3f46;
2116
+ background: var(--white-100);
2117
+ color: var(--neutral-900);
2118
+ border: 1px solid var(--neutral-200);
2206
2119
  border-radius: 6px;
2207
- box-shadow:
2208
- 0 4px 6px -1px rgba(0, 0, 0, 0.1),
2209
- 0 2px 4px -2px rgba(0, 0, 0, 0.1);
2120
+
2210
2121
  min-width: 12.5rem;
2211
2122
  }
2212
2123
  .cax-column-filter-overlay .cax-column-filter-row-items {
@@ -2251,7 +2162,6 @@
2251
2162
  padding: 0.5rem 0.5rem 0 0.5rem;
2252
2163
  border-bottom: 0 none;
2253
2164
  color: #ffffff;
2254
- background: #18181b;
2255
2165
  margin: 0 0 0 0;
2256
2166
  border-top-right-radius: 6px;
2257
2167
  border-top-left-radius: 6px;
@@ -2275,6 +2185,57 @@
2275
2185
  .cax-column-filter-overlay-menu .cax-column-filter-buttonbar {
2276
2186
  padding: 0 1.125rem 1.125rem 1.125rem;
2277
2187
  }
2188
+ .cax-column-filter-custom-container .cax-divider.cax-divider-horizontal:before {
2189
+ border-color: var(--neutral-200);
2190
+ }
2191
+ .cax-column-filter-custom-list-header {
2192
+ display: flex;
2193
+ align-items: center;
2194
+ justify-content: space-between;
2195
+ padding: 8px 10px;
2196
+ border-radius: 8px;
2197
+ border: 1px solid var(--neutral-200);
2198
+ cursor: pointer;
2199
+ font-weight: 500;
2200
+ span {
2201
+ color: var(--neutral-300);
2202
+ }
2203
+ i {
2204
+ font-size: 20px;
2205
+ }
2206
+ }
2207
+ .cax-column-filter-custom-list {
2208
+ border: 1px solid var(--neutral-200);
2209
+ padding: 16px 8px;
2210
+ border-radius: 8px;
2211
+ margin-top: 8px;
2212
+ display: flex;
2213
+ flex-direction: column;
2214
+ gap: 6px;
2215
+ max-height: 300px;
2216
+ overflow: auto;
2217
+ .cax-column-filter-custom-list-item {
2218
+ padding: 6px 8px;
2219
+ cursor: pointer;
2220
+ font-weight: 500;
2221
+ &:hover {
2222
+ background: var(--neutral-50);
2223
+ border-radius: 6px;
2224
+ }
2225
+ }
2226
+ }
2227
+
2228
+ .cax-column-filter-custom-list::-webkit-scrollbar {
2229
+ width: 6px;
2230
+ height: 6px;
2231
+ }
2232
+ .cax-column-filter-custom-list::-webkit-scrollbar-track {
2233
+ background: transparent;
2234
+ }
2235
+ .cax-column-filter-custom-list::-webkit-scrollbar-thumb {
2236
+ background: #888;
2237
+ border-radius: 10px;
2238
+ }
2278
2239
 
2279
2240
  .cax-orderlist .cax-orderlist-controls {
2280
2241
  padding: 0 1.125rem 1.125rem 1.125rem;
@@ -3451,151 +3412,6 @@
3451
3412
  margin-left: 1rem;
3452
3413
  }
3453
3414
 
3454
- .cax-dialog {
3455
- border-radius: 16px;
3456
- box-shadow:
3457
- 0 20px 25px -5px rgba(0, 0, 0, 0.1),
3458
- 0 8px 10px -6px rgba(0, 0, 0, 0.1);
3459
- border: 1px solid #e0e5eb;
3460
- }
3461
- .cax-dialog .cax-dialog-header {
3462
- border-bottom: 0 none;
3463
- background: var(--white-100);
3464
- color: var(--neutral-900);
3465
- padding: 1rem 1.5rem 1rem 1.5rem;
3466
- border-top-right-radius: 6px;
3467
- border-top-left-radius: 6px;
3468
- }
3469
- .cax-dialog .cax-dialog-header .cax-dialog-title {
3470
- font-weight: 600;
3471
- font-size: 1.125rem;
3472
- }
3473
- .cax-dialog .cax-dialog-header .cax-dialog-header-icon {
3474
- width: 1.5rem;
3475
- height: 1.5rem;
3476
- color: var(--neutral-900);
3477
- border: 0 none;
3478
- background: transparent;
3479
- border-radius: 50%;
3480
- transition:
3481
- background-color 0.2s,
3482
- color 0.2s,
3483
- border-color 0.2s,
3484
- box-shadow 0.2s,
3485
- outline-color 0.2s;
3486
- margin-right: 0.5rem;
3487
- }
3488
-
3489
- .cax-dialog .cax-dialog-header .cax-dialog-header-icon:focus-visible {
3490
- outline: 1px solid var(--cax-focus-ring-color);
3491
- outline-offset: 2px;
3492
- box-shadow: none;
3493
- }
3494
- .cax-dialog .cax-dialog-header .cax-dialog-header-icon:last-child {
3495
- margin-right: 0;
3496
- }
3497
- .cax-dialog .cax-dialog-content {
3498
- background: var(--white-100);
3499
- color: var(--neutral-700);
3500
- padding: 0 1.5rem 1.5rem 1.5rem;
3501
- }
3502
- .cax-dialog .cax-dialog-checkbox {
3503
- margin-left: 1.5rem !important;
3504
- }
3505
- .cax-dialog .cax-dialog-content:last-of-type {
3506
- border-bottom-right-radius: 6px;
3507
- border-bottom-left-radius: 6px;
3508
- }
3509
- .cax-dialog .cax-dialog-footer {
3510
- border-top: 0 none;
3511
- background: var(--white-100);
3512
- color: var(--white-100);
3513
- padding: 0 1.5rem 1.5rem 1.5rem;
3514
- text-align: right;
3515
- border-bottom-right-radius: 6px;
3516
- border-bottom-left-radius: 6px;
3517
- }
3518
- .cax-dialog .cax-dialog-footer button {
3519
- margin: 0 0.5rem 0 0;
3520
- width: auto;
3521
- }
3522
- .cax-confirm-dialog {
3523
- width: 532px;
3524
- }
3525
- .cax-confirm-dialog-message {
3526
- font-size: 1rem;
3527
- }
3528
- .cax-dialog.cax-confirm-dialog .cax-confirm-dialog-icon {
3529
- font-size: 2rem;
3530
- }
3531
- .cax-dialog.cax-confirm-dialog .cax-confirm-dialog-icon.cax-icon {
3532
- width: 2rem;
3533
- height: 2rem;
3534
- }
3535
- .cax-dialog.cax-confirm-dialog {
3536
- margin-left: 1rem;
3537
- }
3538
-
3539
- .cax-tooltip .cax-tooltip-text {
3540
- background: var(--neutral-800);
3541
- color: #ffffff;
3542
- padding: 0.5rem 0.75rem;
3543
- box-shadow:
3544
- 0 4px 6px -1px rgba(0, 0, 0, 0.1),
3545
- 0 2px 4px -2px rgba(0, 0, 0, 0.1);
3546
- border-radius: 8px;
3547
- }
3548
-
3549
- .cax-tooltip.cax-tooltip-right .cax-tooltip-arrow {
3550
- border-right-color: var(--neutral-800);
3551
- }
3552
- .cax-tooltip.cax-tooltip-left .cax-tooltip-arrow {
3553
- border-left-color: var(--neutral-800);
3554
- }
3555
- .cax-tooltip.cax-tooltip-top .cax-tooltip-arrow {
3556
- border-top-color: var(--neutral-800);
3557
- }
3558
- .cax-tooltip.cax-tooltip-bottom .cax-tooltip-arrow {
3559
- border-bottom-color: var(--neutral-800);
3560
- }
3561
-
3562
- .cax-tooltip.cax-tooltip-right-top .cax-tooltip-arrow {
3563
- border-right-color: var(--neutral-800);
3564
- }
3565
- .cax-tooltip.cax-tooltip-right-bottom .cax-tooltip-arrow {
3566
- border-right-color: var(--neutral-800);
3567
- }
3568
- .cax-tooltip.cax-tooltip-left-top .cax-tooltip-arrow {
3569
- border-left-color: var(--neutral-800);
3570
- }
3571
- .cax-tooltip.cax-tooltip-left-bottom .cax-tooltip-arrow {
3572
- border-left-color: var(--neutral-800);
3573
- }
3574
- .cax-tooltip.cax-tooltip-top-left .cax-tooltip-arrow {
3575
- border-top-color: var(--neutral-800);
3576
- }
3577
- .cax-tooltip.cax-tooltip-top-right .cax-tooltip-arrow {
3578
- border-top-color: var(--neutral-800);
3579
- }
3580
- .cax-tooltip.cax-tooltip-bottom-left .cax-tooltip-arrow {
3581
- border-bottom-color: var(--neutral-800);
3582
- }
3583
- .cax-tooltip.cax-tooltip-bottom-right .cax-tooltip-arrow {
3584
- border-bottom-color: var(--neutral-800);
3585
- }
3586
-
3587
- .cax-tooltip-link {
3588
- margin-top: 0.5em; // Add spacing if needed
3589
- text-align: left;
3590
- color: var(--neutral-100);
3591
- font-size: inherit;
3592
- }
3593
-
3594
- .cax-tooltip-link a {
3595
- color: var(--neutral-100);
3596
- text-decoration: underline;
3597
- }
3598
-
3599
3415
  .cax-fileupload .cax-fileupload-buttonbar {
3600
3416
  background: #18181b;
3601
3417
  padding: 1.125rem;
@@ -5284,27 +5100,6 @@
5284
5100
  // 0 1px 2px 0 rgba(18, 18, 23, 0.05);
5285
5101
  // }
5286
5102
 
5287
- .cax-chips .cax-chips-multiple-container {
5288
- padding: 0.25rem 0.25rem;
5289
- gap: 0.25rem;
5290
- }
5291
- .cax-chips .cax-chips-multiple-container .cax-chips-token {
5292
- border-radius: 16px;
5293
- margin: 0;
5294
- }
5295
- .cax-chips .cax-chips-multiple-container .cax-chips-token .cax-chips-token-icon {
5296
- margin-left: 0.375rem;
5297
- }
5298
- .cax-chips .cax-chips-multiple-container .cax-chips-input-token {
5299
- margin-left: 0.5rem;
5300
- }
5301
- .cax-chips .cax-chips-multiple-container:has(.cax-chips-token) .cax-chips-input-token {
5302
- margin-left: 0.5rem;
5303
- }
5304
- .cax-chips.cax-disabled .cax-chips-multiple-container {
5305
- opacity: 0.8;
5306
- }
5307
-
5308
5103
  .cax-colorpicker-preview {
5309
5104
  padding: 0;
5310
5105
  }
@@ -5325,31 +5120,6 @@
5325
5120
  position: relative;
5326
5121
  }
5327
5122
 
5328
- .cax-dialog {
5329
- border-radius: 16px;
5330
- background-color: var(--white-100);
5331
- }
5332
- .cax-dialog.cax-dialog-maximized {
5333
- border-radius: 0;
5334
- }
5335
- .cax-dialog .cax-dialog-header {
5336
- min-height: 58px;
5337
- background: var(--neutral-200);
5338
- border-top-right-radius: 12px;
5339
- border-top-left-radius: 12px;
5340
- }
5341
- .cax-confirm-dialog-header {
5342
- background: none !important;
5343
- }
5344
- .cax-dialog .cax-dialog-content:last-of-type {
5345
- border-bottom-right-radius: 12px;
5346
- border-bottom-left-radius: 12px;
5347
- }
5348
- .cax-dialog .cax-dialog-footer {
5349
- border-bottom-right-radius: 12px;
5350
- border-bottom-left-radius: 12px;
5351
- }
5352
-
5353
5123
  .cax-treetable .cax-treetable-tbody > tr:has(+ .cax-highlight) > td {
5354
5124
  border-bottom-color: rgba(17, 200, 227, 0.16);
5355
5125
  }
@@ -7025,8 +6795,8 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
7025
6795
  }
7026
6796
 
7027
6797
  .cax-radiobutton-md .cax-radiobutton-box .cax-radiobutton-icon {
7028
- width: 0.6rem;
7029
- height: 0.6rem;
6798
+ width: 0.75rem;
6799
+ height: 0.75rem;
7030
6800
  }
7031
6801
 
7032
6802
  .cax-radiobutton-label-md {
@@ -7048,8 +6818,8 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
7048
6818
  }
7049
6819
 
7050
6820
  .cax-radiobutton-lg .cax-radiobutton-box .cax-radiobutton-icon {
7051
- width: 0.9rem;
7052
- height: 0.9rem;
6821
+ width: 1rem;
6822
+ height: 1rem;
7053
6823
  }
7054
6824
 
7055
6825
  .cax-radiobutton-label-lg {
@@ -7139,8 +6909,7 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
7139
6909
  height: 46px;
7140
6910
  }
7141
6911
  .cax-datatable .cax-sortable-column .cax-sortable-column-icon {
7142
- color: var(--neutral-800);
7143
- margin-left: 0.5rem;
6912
+ color: var(--neutral-900);
7144
6913
  }
7145
6914
  .cax-datatable .cax-sortable-column .cax-sortable-column-badge {
7146
6915
  border-radius: 50%;
@@ -7151,23 +6920,14 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
7151
6920
  margin-left: 0.5rem;
7152
6921
  }
7153
6922
  .cax-datatable .cax-sortable-column:not(.cax-highlight):hover {
7154
- background: var(--neutral-300);
7155
- color: var(--neutral-800);
6923
+ color: var(--neutral-900);
7156
6924
  }
7157
6925
  .cax-datatable .cax-sortable-column:not(.cax-highlight):hover .cax-sortable-column-icon {
7158
- color: var(--neutral-800);
7159
- }
7160
- .cax-datatable .cax-sortable-column.cax-highlight {
7161
- background: var(--neutral-300);
7162
- color: var(--primary-500);
6926
+ color: var(--neutral-900);
7163
6927
  }
7164
6928
  .cax-datatable .cax-sortable-column.cax-highlight .cax-sortable-column-icon {
7165
6929
  color: var(--primary-500);
7166
6930
  }
7167
- .cax-datatable .cax-sortable-column.cax-highlight:hover {
7168
- background: var(--neutral-300);
7169
- color: var(--primary-500);
7170
- }
7171
6931
  .cax-datatable .cax-sortable-column.cax-highlight:hover .cax-sortable-column-icon {
7172
6932
  color: var(--primary-500);
7173
6933
  }
@@ -7495,17 +7255,83 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
7495
7255
  z-index: 999;
7496
7256
  }
7497
7257
 
7498
- .cax-input-wrapper {
7499
- position: relative;
7258
+ .cax-nav-subscription-list {
7259
+ padding: 8px;
7500
7260
  display: flex;
7501
- align-items: center;
7502
- width: 100%;
7261
+ gap: 8px;
7262
+ flex-direction: column;
7263
+ border-radius: 12px;
7264
+ background: var(--white-100);
7265
+ margin-bottom: 8px;
7503
7266
 
7504
- .cax-icon-container {
7505
- position: absolute;
7506
- height: 100%;
7507
- display: flex;
7508
- align-items: center;
7267
+ .cax-nav-subscription-list-item {
7268
+ list-style-type: none;
7269
+ padding: 12px;
7270
+ border-radius: 8px;
7271
+ font-weight: 600;
7272
+ font-size: 16px;
7273
+ cursor: pointer;
7274
+ display: flex;
7275
+ justify-content: space-between;
7276
+ &:hover {
7277
+ background: var(--neutral-25);
7278
+ }
7279
+ &.active {
7280
+ background: var(--neutral-75);
7281
+ }
7282
+ }
7283
+ .cax-nav-advance-subscription-list-item {
7284
+ list-style-type: none;
7285
+ padding: 6px 8px;
7286
+ border-radius: 4px;
7287
+ font-weight: 600;
7288
+ font-size: 18px;
7289
+ cursor: pointer;
7290
+ display: flex;
7291
+ justify-content: space-between;
7292
+ i {
7293
+ font-size: 18px !important;
7294
+ }
7295
+ &.active {
7296
+ color: var(--primary-color);
7297
+ }
7298
+ }
7299
+
7300
+ .cax-nav-advance-subscription-child-list {
7301
+ padding: 0 8px;
7302
+ display: flex;
7303
+ flex-direction: column;
7304
+ gap: 8px;
7305
+ .cax-nav-advance-subscription-child-list-item {
7306
+ list-style-type: none;
7307
+ padding: 6px 8px;
7308
+ border-radius: 4px;
7309
+ font-weight: 500;
7310
+ font-size: 14px;
7311
+ cursor: pointer;
7312
+ display: flex;
7313
+ justify-content: space-between;
7314
+ &:hover {
7315
+ background: var(--neutral-25);
7316
+ }
7317
+ &.active {
7318
+ background: var(--neutral-75);
7319
+ }
7320
+ }
7321
+ }
7322
+ }
7323
+
7324
+ .cax-input-wrapper {
7325
+ position: relative;
7326
+ display: flex;
7327
+ align-items: center;
7328
+ width: 100%;
7329
+
7330
+ .cax-icon-container {
7331
+ position: absolute;
7332
+ height: 100%;
7333
+ display: flex;
7334
+ align-items: center;
7509
7335
  color: var(--neutral-750);
7510
7336
 
7511
7337
  &.cax-icon-left {
@@ -8463,17 +8289,17 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
8463
8289
  }
8464
8290
  .cax-button.cax-button-text {
8465
8291
  background-color: transparent;
8466
- color: #22d3ee;
8292
+ color: var(--primary-color);
8467
8293
  border-color: transparent;
8468
8294
  }
8469
8295
  .cax-button.cax-button-text:not(:disabled):hover {
8470
- background: rgba(34, 211, 238, 0.04);
8471
- color: #22d3ee;
8296
+ background: var(--primary-25);
8297
+ color: var(--primary-color);
8472
8298
  border-color: transparent;
8473
8299
  }
8474
8300
  .cax-button.cax-button-text:not(:disabled):active {
8475
- background: rgba(34, 211, 238, 0.16);
8476
- color: #22d3ee;
8301
+ background: transparent;
8302
+ color: var(--primary-color);
8477
8303
  border-color: transparent;
8478
8304
  }
8479
8305
  .cax-button.cax-button-text.cax-button-plain {
@@ -9103,22 +8929,22 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
9103
8929
  .cax-button-group.cax-button-danger > .cax-button.cax-button-text,
9104
8930
  .cax-splitbutton.cax-button-danger > .cax-button.cax-button-text {
9105
8931
  background-color: transparent;
9106
- color: var(--white-100);
8932
+ color: var(--error-500);
9107
8933
  border-color: transparent;
9108
8934
  }
9109
8935
  .cax-button.cax-button-danger.cax-button-text:not(:disabled):hover,
9110
8936
  .cax-button-group.cax-button-danger > .cax-button.cax-button-text:not(:disabled):hover,
9111
8937
  .cax-splitbutton.cax-button-danger > .cax-button.cax-button-text:not(:disabled):hover {
9112
- background: rgba(248, 113, 113, 0.04);
8938
+ background: var(--error-25);
9113
8939
  border-color: transparent;
9114
- color: #f87171;
8940
+ color: var(--error-500);
9115
8941
  }
9116
8942
  .cax-button.cax-button-danger.cax-button-text:not(:disabled):active,
9117
8943
  .cax-button-group.cax-button-danger > .cax-button.cax-button-text:not(:disabled):active,
9118
8944
  .cax-splitbutton.cax-button-danger > .cax-button.cax-button-text:not(:disabled):active {
9119
- background: rgba(248, 113, 113, 0.16);
8945
+ background: transparent;
9120
8946
  border-color: transparent;
9121
- color: #f87171;
8947
+ color: var(--error-500);
9122
8948
  }
9123
8949
 
9124
8950
  .cax-button.cax-button-contrast,
@@ -11630,6 +11456,30 @@ cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
11630
11456
  .cax-autocomplete.cax-disabled {
11631
11457
  opacity: 1;
11632
11458
  }
11459
+ textarea {
11460
+ padding: 8px 10px 8px 10px;
11461
+ border: 1px solid var(--neutral-200);
11462
+ border-radius: 8px;
11463
+ font-size: 14px;
11464
+ line-height: 21px;
11465
+ font-weight: 400;
11466
+ resize: none;
11467
+
11468
+ &.filled-style {
11469
+ background: var(--white-100);
11470
+ }
11471
+ &.cax-inputtextarea-disabled {
11472
+ opacity: 0.5;
11473
+ }
11474
+ &:hover {
11475
+ border-color: var(--neutral-300);
11476
+ }
11477
+
11478
+ &:focus {
11479
+ border-color: var(--cax-focus-ring-color);
11480
+ outline: none;
11481
+ }
11482
+ }
11633
11483
 
11634
11484
  .cax-breadcrumb {
11635
11485
  height: 42px;
@@ -11638,7 +11488,6 @@ cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
11638
11488
  border-radius: 6px;
11639
11489
  left: 40px;
11640
11490
  padding: var(--space-100) var(--space-200) var(--space-100) var(--space-200);
11641
-
11642
11491
  }
11643
11492
  .cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link {
11644
11493
  transition:
@@ -11877,15 +11726,15 @@ cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
11877
11726
  border-top-right-radius: 6px;
11878
11727
  border-bottom-right-radius: 6px;
11879
11728
  }
11880
- .cax-selectbutton{
11729
+ .cax-selectbutton {
11881
11730
  display: inline-flex !important;
11882
11731
  gap: 0px;
11883
- border-radius: 0px!important;
11732
+ border-radius: 0px !important;
11884
11733
  }
11885
- .cax-selectbutton .cax-button .cax-button-label{
11734
+ .cax-selectbutton .cax-button .cax-button-label {
11886
11735
  color: var(--neutral-500) !important;
11887
11736
  font-size: 14px !important;
11888
- font-weight: 700 !important;
11737
+ font-weight: 700 !important;
11889
11738
  }
11890
11739
  .cax-selectbutton .cax-button {
11891
11740
  border-radius: 0px !important;
@@ -11897,13 +11746,13 @@ cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
11897
11746
  border-color 0.2s,
11898
11747
  box-shadow 0.2s,
11899
11748
  outline-color 0.2s;
11900
- border:none !important;
11749
+ border: none !important;
11901
11750
  }
11902
- .cax-selectbutton .cax-button:first-child{
11751
+ .cax-selectbutton .cax-button:first-child {
11903
11752
  border-top-left-radius: 6px !important;
11904
11753
  border-bottom-left-radius: 6px !important;
11905
11754
  }
11906
- .cax-selectbutton .cax-button:last-child{
11755
+ .cax-selectbutton .cax-button:last-child {
11907
11756
  border-top-right-radius: 6px !important;
11908
11757
  border-bottom-right-radius: 6px !important;
11909
11758
  }
@@ -11936,54 +11785,588 @@ cax-selectbutton.ng-dirty.ng-invalid > .cax-selectbutton > .cax-button {
11936
11785
  }
11937
11786
 
11938
11787
  .cax-selectbutton .cax-button .pi,
11939
- .cax-selectbutton .cax-button .cax-button-label {
11940
- position: relative;
11941
- transition: none;
11788
+ .cax-selectbutton .cax-button .cax-button-label {
11789
+ position: relative;
11790
+ transition: none;
11791
+ }
11792
+ .cax-selectbutton .cax-button::before {
11793
+ content: '';
11794
+ background-color: transparent;
11795
+ transition:
11796
+ background-color 0.2s,
11797
+ color 0.2s,
11798
+ border-color 0.2s,
11799
+ box-shadow 0.2s,
11800
+ outline-color 0.2s;
11801
+ position: absolute;
11802
+ left: 0.25rem;
11803
+ top: 0.25rem;
11804
+ width: calc(100% - 0.5rem);
11805
+ height: calc(100% - 0.5rem);
11806
+ border-radius: 6px;
11807
+ }
11808
+ .cax-selectbutton .cax-button.cax-highlight::before {
11809
+ background: var(--white-100);
11810
+ box-shadow:
11811
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.02),
11812
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.04);
11813
+ }
11814
+ .cax-selectbutton .cax-button:focus-visible {
11815
+ outline: 1px solid var(--cax-focus-ring-color);
11816
+ outline-offset: -1px;
11817
+ box-shadow: none;
11818
+ }
11819
+ .cax-selectbutton .cax-button.cax-disabled {
11820
+ opacity: 0.5;
11821
+ }
11822
+ .cax-selectbutton.cax-invalid {
11823
+ box-shadow: 0 0 0 1px var(--error-500);
11824
+ border-radius: 6px;
11825
+ }
11826
+ .cax-selectbutton.cax-invalid > .cax-button {
11827
+ border: 1px solid var(--error-500);
11828
+ }
11829
+ .cax-selectbutton.cax-disabled {
11830
+ opacity: 0.6;
11831
+ }
11832
+ .cax-selectbutton.cax-disabled .cax-button {
11833
+ color: var(--neutral-25);
11834
+ }
11835
+ .cax-selectbutton .cax-button.cax-input-invalid {
11836
+ border: 1px solid var(--error-500) !important;
11837
+ }
11838
+
11839
+ .cax-dialog {
11840
+ border-radius: var(--radius-200);
11841
+ box-shadow:
11842
+ 0 20px 25px -5px rgba(0, 0, 0, 0.1),
11843
+ 0 8px 10px -6px rgba(0, 0, 0, 0.1);
11844
+ border: 1px solid #e0e5eb;
11845
+ }
11846
+ .cax-dialog .cax-dialog-header {
11847
+ border-bottom: 0 none;
11848
+ background: var(--white-100);
11849
+ color: var(--neutral-900);
11850
+ padding: 1rem 1.5rem 1rem 1.5rem;
11851
+ border-top-right-radius: 6px;
11852
+ border-top-left-radius: 6px;
11853
+ }
11854
+ .cax-dialog .cax-dialog-header .cax-dialog-title {
11855
+ font-weight: 600;
11856
+ font-size: 1.125rem;
11857
+ }
11858
+ .cax-dialog .cax-dialog-header .cax-dialog-header-icon {
11859
+ width: 1.5rem;
11860
+ height: 1.5rem;
11861
+ color: var(--neutral-900);
11862
+ border: 0 none;
11863
+ background: transparent;
11864
+ border-radius: 50%;
11865
+ transition:
11866
+ background-color 0.2s,
11867
+ color 0.2s,
11868
+ border-color 0.2s,
11869
+ box-shadow 0.2s,
11870
+ outline-color 0.2s;
11871
+ margin-right: 0.5rem;
11872
+ }
11873
+
11874
+ .cax-dialog .cax-dialog-header .cax-dialog-header-icon:focus-visible {
11875
+ outline: 1px solid var(--cax-focus-ring-color);
11876
+ outline-offset: 2px;
11877
+ box-shadow: none;
11878
+ }
11879
+ .cax-dialog .cax-dialog-header .cax-dialog-header-icon:last-child {
11880
+ margin-right: 0;
11881
+ }
11882
+ .cax-dialog .cax-dialog-content {
11883
+ background: var(--white-100);
11884
+ color: var(--neutral-600);
11885
+ padding: 0 1.5rem 1.5rem 1.5rem;
11886
+ }
11887
+ .cax-confirm-dialog-content {
11888
+ padding: 0 !important;
11889
+ }
11890
+ .cax-dialog .cax-dialog-checkbox {
11891
+ // margin-left: 1.5rem !important;
11892
+ }
11893
+ .cax-dialog .cax-dialog-content:last-of-type {
11894
+ border-bottom-right-radius: 6px;
11895
+ border-bottom-left-radius: 6px;
11896
+ }
11897
+ .cax-dialog .cax-dialog-footer {
11898
+ border-top: 0 none;
11899
+ background: var(--white-100);
11900
+ color: var(--white-100);
11901
+ padding: 0 1.5rem 1.5rem 1.5rem;
11902
+ text-align: right;
11903
+ border-bottom-right-radius: 6px;
11904
+ border-bottom-left-radius: 6px;
11905
+ }
11906
+ .cax-confirm-dialog-footer {
11907
+ padding: 0 !important;
11908
+ }
11909
+ .cax-dialog .cax-dialog-footer button {
11910
+ margin: 0 0.5rem 0 0;
11911
+ width: auto;
11912
+ }
11913
+ .cax-confirm-dialog {
11914
+ width: 520px;
11915
+ padding: var(--space-300) !important;
11916
+ border: var(--border-100) solid var(--neutral-200);
11917
+ gap: var(--space-200);
11918
+ }
11919
+ .cax-confirm-dialog-message {
11920
+ font-size: 1rem;
11921
+ }
11922
+ .cax-dialog.cax-confirm-dialog .cax-confirm-dialog-icon {
11923
+ font-size: 2rem;
11924
+ }
11925
+ .cax-dialog.cax-confirm-dialog .cax-confirm-dialog-icon.cax-icon {
11926
+ width: 2rem;
11927
+ height: 2rem;
11928
+ }
11929
+ .cax-dialog.cax-confirm-dialog {
11930
+ // margin-left: 1rem;
11931
+ }
11932
+
11933
+ .cax-dialog {
11934
+ border-radius: var(--radius-200);
11935
+ background-color: var(--white-100);
11936
+ }
11937
+ .cax-dialog.cax-dialog-maximized {
11938
+ border-radius: 0;
11939
+ }
11940
+ .cax-dialog .cax-dialog-header {
11941
+ min-height: 28px;
11942
+ background: var(--neutral-50);
11943
+ border-top-right-radius: 12px;
11944
+ border-top-left-radius: 12px;
11945
+ }
11946
+ .cax-confirm-dialog-header {
11947
+ background: none !important;
11948
+ padding: 0 !important;
11949
+ }
11950
+ .cax-dialog .cax-dialog-content:last-of-type {
11951
+ border-bottom-right-radius: 12px;
11952
+ border-bottom-left-radius: 12px;
11953
+ }
11954
+ .cax-dialog .cax-dialog-footer {
11955
+ border-bottom-right-radius: 12px;
11956
+ border-bottom-left-radius: 12px;
11957
+ }
11958
+
11959
+ .cax-chips-container {
11960
+ display: flex;
11961
+ align-items: center;
11962
+ min-height: 40px;
11963
+ width: 100%;
11964
+ border: 1px solid var(--neutral-200);
11965
+ border-radius: 8px;
11966
+ padding: 0px 8px;
11967
+ background: transparent;
11968
+ overflow: hidden;
11969
+
11970
+ &:hover {
11971
+ border-color: var(--neutral-300);
11942
11972
  }
11943
- .cax-selectbutton .cax-button::before {
11944
- content: '';
11945
- background-color: transparent;
11946
- transition:
11947
- background-color 0.2s,
11948
- color 0.2s,
11949
- border-color 0.2s,
11950
- box-shadow 0.2s,
11951
- outline-color 0.2s;
11952
- position: absolute;
11953
- left: 0.25rem;
11954
- top: 0.25rem;
11955
- width: calc(100% - 0.5rem);
11956
- height: calc(100% - 0.5rem);
11957
- border-radius: 6px;
11973
+
11974
+ &.cax-focus {
11975
+ border-color: var(--primary-500);
11958
11976
  }
11959
- .cax-selectbutton .cax-button.cax-highlight::before {
11960
- background: var(--white-100);
11961
- box-shadow:
11962
- 0px 1px 2px 0px rgba(0, 0, 0, 0.02),
11963
- 0px 1px 2px 0px rgba(0, 0, 0, 0.04);
11977
+
11978
+ &:hover:not(.cax-chips-disabled) {
11979
+ border-color: var(--neutral-300);
11964
11980
  }
11965
- .cax-selectbutton .cax-button:focus-visible {
11966
- outline: 1px solid var(--cax-focus-ring-color);
11967
- outline-offset: -1px;
11968
- box-shadow: none;
11981
+
11982
+ &.cax-focus:not(.cax-chips-disabled) {
11983
+ border-color: var(--primary-500);
11969
11984
  }
11970
- .cax-selectbutton .cax-button.cax-disabled {
11971
- opacity: 0.5;
11985
+ }
11986
+
11987
+ .cax-chips-size-sm .cax-chips-container {
11988
+ min-height: 32px;
11989
+ padding: 0px 8px;
11990
+ }
11991
+
11992
+ .cax-chips-size-md .cax-chips-container {
11993
+ min-height: 40px;
11994
+ padding: 0px 8px;
11995
+ }
11996
+
11997
+ .cax-chips-size-lg .cax-chips-container {
11998
+ min-height: 48px;
11999
+ padding: 0px 8px;
12000
+ }
12001
+
12002
+ .cax-chips-list {
12003
+ display: flex;
12004
+ align-items: center;
12005
+ gap: 6px;
12006
+ flex: 1;
12007
+ min-width: 0;
12008
+ overflow-x: auto;
12009
+ scrollbar-width: none;
12010
+ scroll-behavior: smooth;
12011
+
12012
+ &::-webkit-scrollbar {
12013
+ display: none;
11972
12014
  }
11973
- .cax-selectbutton.cax-invalid {
11974
- box-shadow: 0 0 0 1px var(--error-500);
11975
- border-radius: 6px;
12015
+
12016
+ cax-chip {
12017
+ flex-shrink: 0;
11976
12018
  }
11977
- .cax-selectbutton.cax-invalid > .cax-button {
11978
- border: 1px solid var(--error-500);
12019
+
12020
+ .cax-chips-input {
12021
+ min-width: 60px;
12022
+ flex: 0 1 auto;
12023
+ border: none;
12024
+ outline: none;
12025
+ background: transparent;
12026
+ padding: 0 4px;
12027
+ margin: 0;
12028
+ font-family: inherit;
12029
+ font-size: inherit;
12030
+ line-height: inherit;
12031
+
12032
+ &:only-child {
12033
+ flex: 1;
12034
+ min-width: 100%;
12035
+ }
11979
12036
  }
11980
- .cax-selectbutton.cax-disabled {
11981
- opacity: 0.6;
12037
+ }
12038
+
12039
+ .cax-chips-input-container {
12040
+ flex-shrink: 0;
12041
+ display: flex;
12042
+ align-items: center;
12043
+ width: 50px;
12044
+ }
12045
+
12046
+ .cax-chips-input {
12047
+ width: 100%;
12048
+ border: none;
12049
+ outline: none;
12050
+ background: transparent;
12051
+ padding: 0;
12052
+ margin: 0;
12053
+ font-family: var(--font-family);
12054
+ color: var(--neutral-900);
12055
+
12056
+ &::placeholder {
12057
+ color: var(--neutral-300);
12058
+ }
12059
+ }
12060
+
12061
+ .cax-chips-container.no-chips .cax-chips-input {
12062
+ width: 100%;
12063
+ }
12064
+
12065
+ .cax-chips .cax-chips-multiple-container {
12066
+ padding: 0.25rem 0.25rem;
12067
+ gap: 0.25rem;
12068
+ }
12069
+
12070
+ .cax-chips .cax-chips-multiple-container .cax-chips-token {
12071
+ border-radius: 16px;
12072
+ margin: 0;
12073
+ }
12074
+
12075
+ .cax-chips .cax-chips-multiple-container .cax-chips-token .cax-chips-token-icon {
12076
+ margin-left: 0.375rem;
12077
+ }
12078
+
12079
+ .cax-chips .cax-chips-multiple-container .cax-chips-input-token {
12080
+ margin-left: 0.5rem;
12081
+ }
12082
+
12083
+ .cax-chips .cax-chips-multiple-container:has(.cax-chips-token) .cax-chips-input-token {
12084
+ margin-left: 0.5rem;
12085
+ }
12086
+
12087
+ .cax-chips.cax-disabled .cax-chips-multiple-container {
12088
+ opacity: 0.8;
12089
+ }
12090
+ .cax-chips .cax-chips-multiple-container {
12091
+ padding: 0.25rem 0.75rem;
12092
+ gap: 0.5rem;
12093
+ }
12094
+
12095
+ .cax-chips .cax-chips-multiple-container .cax-chips-token {
12096
+ padding: 0.25rem 0.75rem;
12097
+ margin-right: 0.5rem;
12098
+ background: var(--neutral-300);
12099
+ color: var(--neutral-800);
12100
+ border-radius: 16px;
12101
+ }
12102
+
12103
+ .cax-chips .cax-chips-multiple-container .cax-chips-token .cax-chips-token-icon {
12104
+ margin-left: 0.5rem;
12105
+ }
12106
+
12107
+ .cax-chips .cax-chips-multiple-container .cax-chips-input-token {
12108
+ padding: 0.25rem 0;
12109
+ }
12110
+
12111
+ .cax-chips .cax-chips-multiple-container .cax-chips-input-token input {
12112
+ font-family: var(--font-family);
12113
+ font-feature-settings: var(--font-feature-settings, normal);
12114
+ font-size: 1rem;
12115
+ color: var(--neutral-900);
12116
+ padding: 0;
12117
+ margin: 0;
12118
+ }
12119
+
12120
+ .cax-chips-input-token {
12121
+ position: ab;
12122
+ right: 0;
12123
+ background: inherit;
12124
+ width: 150px;
12125
+ min-width: 150px;
12126
+ flex: 0 0 auto;
12127
+ display: flex;
12128
+ align-items: center;
12129
+
12130
+ input {
12131
+ width: 100%;
12132
+ background: transparent;
12133
+ border: none;
12134
+ outline: none;
12135
+ padding: 0px 8px;
12136
+ }
12137
+ }
12138
+
12139
+ .cax-chips-input-token {
12140
+ display: flex;
12141
+ align-items: center;
12142
+ flex: 1 1 auto;
12143
+ min-width: 0;
12144
+ width: auto;
12145
+ transition: flex-basis 0.3s ease;
12146
+
12147
+ &.typing {
12148
+ flex: 1 1 30%;
12149
+ }
12150
+
12151
+ height: 100%;
12152
+ min-width: 150px;
12153
+
12154
+ input {
12155
+ width: 100%;
12156
+ height: 100%;
12157
+ background: transparent;
12158
+ border: none;
12159
+ outline: none;
12160
+ padding: 0 8px;
12161
+ font-family: inherit;
12162
+ font-size: inherit;
12163
+ line-height: inherit;
12164
+ }
12165
+ }
12166
+
12167
+ .cax-chips-list:empty + .cax-chips-input-token {
12168
+ width: 100%;
12169
+ min-width: 100%;
12170
+ }
12171
+
12172
+ cax-chips.ng-dirty.ng-invalid > .cax-chips > .cax-inputtext {
12173
+ border-color: var(--error-500);
12174
+ }
12175
+
12176
+ cax-chips.cax-chips-clearable .cax-inputtext {
12177
+ padding-right: 1.75rem;
12178
+ }
12179
+
12180
+ cax-chips.cax-chips-left-icon .cax-inputtext {
12181
+ padding-left: 1.75rem;
12182
+ padding-right: 1.75rem;
12183
+ }
12184
+
12185
+ cax-chips.cax-chips-right-icon .cax-inputtext {
12186
+ padding-right: 1.75rem;
12187
+ }
12188
+
12189
+ cax-chips.cax-chips-clearable .cax-chips-clear-icon {
12190
+ color: var(--neutral-800);
12191
+ }
12192
+
12193
+ cax-chips.cax-chips-left-icon .cax-chips-icon-left {
12194
+ color: var(--neutral-800);
12195
+ left: 0.75rem;
12196
+ right: 0.75rem;
12197
+ }
12198
+
12199
+ cax-chips.cax-chips-right-icon .cax-chips-icon-right {
12200
+ color: var(--neutral-800);
12201
+ right: 0.75rem;
12202
+ }
12203
+
12204
+ .cax-chips-size-sm {
12205
+ .cax-chips-token {
12206
+ height: 24px;
12207
+ font-size: 12px;
12208
+ padding: 0px 8px;
12209
+ }
12210
+
12211
+ .cax-chips-input {
12212
+ font-size: 12px;
12213
+ height: 24px;
12214
+ }
12215
+
12216
+ .cax-chips-icon-left,
12217
+ .cax-chips-icon-right,
12218
+ .cax-chips-clear-icon,
12219
+ .cax-chips-token-icon {
12220
+ min-width: 16px;
12221
+ min-height: 16px;
12222
+ }
12223
+
12224
+ .cax-chips-icon-left i,
12225
+ .cax-chips-icon-right i,
12226
+ .cax-chips-clear-icon i,
12227
+ .cax-chips-token-icon i {
12228
+ font-size: 16px;
12229
+ }
12230
+ }
12231
+
12232
+ .cax-chips-size-md {
12233
+ .cax-chips-token {
12234
+ height: 32px;
12235
+ font-size: 14px;
12236
+ padding: 4px 10px;
12237
+ }
12238
+
12239
+ .cax-chips-input {
12240
+ font-size: 14px;
12241
+ height: 32px;
12242
+ }
12243
+
12244
+ .cax-chips-icon-left,
12245
+ .cax-chips-icon-right,
12246
+ .cax-chips-clear-icon,
12247
+ .cax-chips-token-icon {
12248
+ min-width: 20px;
12249
+ min-height: 20px;
12250
+ }
12251
+
12252
+ .cax-chips-icon-left i,
12253
+ .cax-chips-icon-right i,
12254
+ .cax-chips-clear-icon i,
12255
+ .cax-chips-token-icon i {
12256
+ font-size: 20px;
12257
+ }
12258
+ }
12259
+
12260
+ .cax-chips-size-lg {
12261
+ .cax-chips-token {
12262
+ height: 40px;
12263
+ font-size: 16px;
12264
+ padding: 6px 12px;
11982
12265
  }
11983
- .cax-selectbutton.cax-disabled .cax-button {
11984
- color: var(--neutral-25);
12266
+
12267
+ .cax-chips-input {
12268
+ font-size: 16px;
12269
+ height: 40px;
11985
12270
  }
11986
- .cax-selectbutton .cax-button.cax-input-invalid {
11987
- border: 1px solid var(--error-500) !important;
12271
+
12272
+ .cax-chips-icon-left,
12273
+ .cax-chips-icon-right,
12274
+ .cax-chips-clear-icon,
12275
+ .cax-chips-token-icon {
12276
+ min-width: 24px;
12277
+ min-height: 24px;
11988
12278
  }
11989
12279
 
12280
+ .cax-chips-icon-left i,
12281
+ .cax-chips-icon-right i,
12282
+ .cax-chips-clear-icon i,
12283
+ .cax-chips-token-icon i {
12284
+ font-size: 24px;
12285
+ }
12286
+ }
12287
+
12288
+ .cax-chips-multiple-container {
12289
+ &.with-left-icon,
12290
+ &.with-right-icon,
12291
+ &.with-clear-icon {
12292
+ .cax-chips-input {
12293
+ padding: 0;
12294
+ }
12295
+ }
12296
+ }
12297
+
12298
+ .cax-chips-disabled {
12299
+ opacity: 0.6;
12300
+ cursor: not-allowed;
12301
+ pointer-events: none;
12302
+
12303
+ .cax-chips-input {
12304
+ cursor: not-allowed;
12305
+ }
12306
+
12307
+ cax-chip {
12308
+ opacity: 0.6;
12309
+ }
12310
+ }
12311
+ .cax-tooltip .cax-tooltip-text {
12312
+ background: var(--neutral-900);
12313
+ color: var(--white-100);
12314
+ padding: 12px;
12315
+ gap: 12px;
12316
+ font-weight: 400;
12317
+ font-size: 12px;
12318
+ line-height: 18px;
12319
+ box-shadow:
12320
+ 0 4px 6px -1px rgba(0, 0, 0, 0.1),
12321
+ 0 2px 4px -2px rgba(0, 0, 0, 0.1);
12322
+ border-radius: 8px;
12323
+ }
12324
+
12325
+ .cax-tooltip.cax-tooltip-right .cax-tooltip-arrow {
12326
+ border-right-color: var(--neutral-900);
12327
+ }
12328
+ .cax-tooltip.cax-tooltip-left .cax-tooltip-arrow {
12329
+ border-left-color: var(--neutral-900);
12330
+ }
12331
+ .cax-tooltip.cax-tooltip-top .cax-tooltip-arrow {
12332
+ border-top-color: var(--neutral-900);
12333
+ }
12334
+ .cax-tooltip.cax-tooltip-bottom .cax-tooltip-arrow {
12335
+ border-bottom-color: var(--neutral-900);
12336
+ }
12337
+
12338
+ .cax-tooltip.cax-tooltip-right-top .cax-tooltip-arrow {
12339
+ border-right-color: var(--neutral-900);
12340
+ }
12341
+ .cax-tooltip.cax-tooltip-right-bottom .cax-tooltip-arrow {
12342
+ border-right-color: var(--neutral-900);
12343
+ }
12344
+ .cax-tooltip.cax-tooltip-left-top .cax-tooltip-arrow {
12345
+ border-left-color: var(--neutral-900);
12346
+ }
12347
+ .cax-tooltip.cax-tooltip-left-bottom .cax-tooltip-arrow {
12348
+ border-left-color: var(--neutral-900);
12349
+ }
12350
+ .cax-tooltip.cax-tooltip-top-left .cax-tooltip-arrow {
12351
+ border-top-color: var(--neutral-900);
12352
+ }
12353
+ .cax-tooltip.cax-tooltip-top-right .cax-tooltip-arrow {
12354
+ border-top-color: var(--neutral-900);
12355
+ }
12356
+ .cax-tooltip.cax-tooltip-bottom-left .cax-tooltip-arrow {
12357
+ border-bottom-color: var(--neutral-900);
12358
+ }
12359
+ .cax-tooltip.cax-tooltip-bottom-right .cax-tooltip-arrow {
12360
+ border-bottom-color: var(--neutral-900);
12361
+ }
12362
+
12363
+ .cax-tooltip-link {
12364
+ text-align: left;
12365
+ color: var(--white-100);
12366
+ font-size: inherit;
12367
+ }
12368
+
12369
+ .cax-tooltip-link a {
12370
+ color: var(--white-100);
12371
+ text-decoration: underline;
12372
+ }