cax-design-system 2.4.1 → 2.5.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/README.md +1 -1
- package/autocomplete/autocomplete.d.ts +5 -3
- package/button/button.directive.d.ts +5 -2
- package/esm2022/autocomplete/autocomplete.mjs +12 -8
- package/esm2022/button/button.directive.mjs +36 -4
- package/esm2022/button/button.mjs +2 -2
- package/esm2022/calendar/calendar.mjs +2 -2
- package/esm2022/confirmdialog/confirmdialog.mjs +2 -2
- package/esm2022/inputgroup/inputgroup.mjs +10 -3
- package/esm2022/inputnumber/inputnumber.mjs +2 -2
- package/esm2022/selectbutton/public_api.mjs +2 -1
- package/esm2022/selectbutton/selectbutton.mjs +11 -86
- package/esm2022/selectbutton/selectbutton.module.mjs +21 -0
- package/esm2022/speeddial/speeddial.mjs +1 -1
- package/esm2022/splitbutton/splitbutton.mjs +4 -4
- package/esm2022/tableconfiguration/tableconfiguration.mjs +3 -3
- package/esm2022/tabview/tabview.mjs +31 -3
- package/esm2022/tabview/tabview.module.mjs +5 -4
- package/esm2022/timeline/timeline.mjs +2 -2
- package/fesm2022/cax-design-system-autocomplete.mjs +11 -7
- package/fesm2022/cax-design-system-autocomplete.mjs.map +1 -1
- package/fesm2022/cax-design-system-button.mjs +36 -4
- package/fesm2022/cax-design-system-button.mjs.map +1 -1
- package/fesm2022/cax-design-system-calendar.mjs +1 -1
- package/fesm2022/cax-design-system-calendar.mjs.map +1 -1
- package/fesm2022/cax-design-system-confirmdialog.mjs +1 -1
- package/fesm2022/cax-design-system-confirmdialog.mjs.map +1 -1
- package/fesm2022/cax-design-system-inputgroup.mjs +9 -2
- package/fesm2022/cax-design-system-inputgroup.mjs.map +1 -1
- package/fesm2022/cax-design-system-inputnumber.mjs +1 -1
- package/fesm2022/cax-design-system-inputnumber.mjs.map +1 -1
- package/fesm2022/cax-design-system-selectbutton.mjs +12 -70
- package/fesm2022/cax-design-system-selectbutton.mjs.map +1 -1
- package/fesm2022/cax-design-system-speeddial.mjs +1 -1
- package/fesm2022/cax-design-system-speeddial.mjs.map +1 -1
- package/fesm2022/cax-design-system-splitbutton.mjs +3 -3
- package/fesm2022/cax-design-system-splitbutton.mjs.map +1 -1
- package/fesm2022/cax-design-system-tableconfiguration.mjs +2 -2
- package/fesm2022/cax-design-system-tableconfiguration.mjs.map +1 -1
- package/fesm2022/cax-design-system-tabview.mjs +34 -5
- package/fesm2022/cax-design-system-tabview.mjs.map +1 -1
- package/fesm2022/cax-design-system-timeline.mjs +2 -2
- package/fesm2022/cax-design-system-timeline.mjs.map +1 -1
- package/inputgroup/inputgroup.d.ts +6 -1
- package/package.json +226 -226
- package/resources/cax.min.scss +1 -1
- package/resources/cax.scss +373 -261
- package/resources/components/autocomplete/autocomplete.scss +73 -1
- package/resources/components/tabview/tabview.scss +19 -1
- package/resources/components/timeline/timeline.scss +4 -9
- package/selectbutton/public_api.d.ts +1 -0
- package/selectbutton/selectbutton.d.ts +2 -10
- package/selectbutton/selectbutton.module.d.ts +11 -0
- package/splitbutton/splitbutton.d.ts +2 -2
- package/tabview/tabview.d.ts +10 -1
- package/tabview/tabview.module.d.ts +2 -1
package/resources/cax.scss
CHANGED
|
@@ -1219,109 +1219,6 @@
|
|
|
1219
1219
|
margin-top: -0.5rem;
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
1222
|
-
.cax-inputgroup-addon {
|
|
1223
|
-
background: var(--neutral-200);
|
|
1224
|
-
color: var(--neutral-600);
|
|
1225
|
-
border-top: 1px solid var(--neutral-300);
|
|
1226
|
-
border-left: 1px solid var(--neutral-300);
|
|
1227
|
-
border-bottom: 1px solid var(--neutral-300);
|
|
1228
|
-
padding: 0.5rem 0.75rem;
|
|
1229
|
-
min-width: 2.5rem;
|
|
1230
|
-
overflow: hidden;
|
|
1231
|
-
}
|
|
1232
|
-
.cax-inputgroup-addon .cax-button {
|
|
1233
|
-
padding: 0.5rem 0.75rem;
|
|
1234
|
-
border: none;
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
.cax-inputgroup-addon:has(.cax-button) {
|
|
1238
|
-
padding: 0;
|
|
1239
|
-
border: 1px solid var(--primary-500);
|
|
1240
|
-
}
|
|
1241
|
-
.cax-inputgroup-addon:last-child {
|
|
1242
|
-
border-right: 1px solid var(--neutral-300);
|
|
1243
|
-
}
|
|
1244
|
-
.cax-inputgroup-addon:last-child:has(.cax-button) {
|
|
1245
|
-
border: 1px solid var(--primary-500);
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
.cax-inputgroup > .cax-component,
|
|
1249
|
-
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext >,
|
|
1250
|
-
.cax-inputgroup > .cax-float-label > .cax-component {
|
|
1251
|
-
border-radius: 0;
|
|
1252
|
-
margin: 0;
|
|
1253
|
-
}
|
|
1254
|
-
.cax-inputgroup > .cax-component + .cax-inputgroup-addon,
|
|
1255
|
-
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext + .cax-inputgroup-addon,
|
|
1256
|
-
.cax-inputgroup > .cax-float-label > .cax-component + .cax-inputgroup-addon {
|
|
1257
|
-
border-left: 0 none;
|
|
1258
|
-
}
|
|
1259
|
-
.cax-inputgroup > .cax-component:focus,
|
|
1260
|
-
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext:focus,
|
|
1261
|
-
.cax-inputgroup > .cax-float-label > .cax-component:focus {
|
|
1262
|
-
z-index: 1;
|
|
1263
|
-
}
|
|
1264
|
-
.cax-inputgroup > .cax-component:focus ~ label,
|
|
1265
|
-
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext:focus ~ label,
|
|
1266
|
-
.cax-inputgroup > .cax-float-label > .cax-component:focus ~ label {
|
|
1267
|
-
z-index: 1;
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
.cax-inputgroup > .cax-inputwrapper:first-child > .cax-component,
|
|
1271
|
-
.cax-inputgroup > .cax-inputwrapper:first-child > .cax-component > .cax-inputtext {
|
|
1272
|
-
border-top-left-radius: 6px;
|
|
1273
|
-
border-bottom-left-radius: 6px;
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
.cax-inputgroup .cax-float-label:first-child input {
|
|
1277
|
-
border-top-left-radius: 6px;
|
|
1278
|
-
border-bottom-left-radius: 6px;
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
|
-
.cax-inputgroup > .cax-inputwrapper:last-child > .cax-component,
|
|
1282
|
-
.cax-inputgroup > .cax-inputwrapper:last-child > .cax-component > .cax-inputtext {
|
|
1283
|
-
border-top-right-radius: 6px;
|
|
1284
|
-
border-bottom-right-radius: 6px;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
.cax-inputgroup-addon,
|
|
1288
|
-
.cax-inputgroup input,
|
|
1289
|
-
.cax-inputgroup .cax-button {
|
|
1290
|
-
border-radius: 0;
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
.cax-inputgroup > *:first-child {
|
|
1294
|
-
border-top-left-radius: 6px;
|
|
1295
|
-
border-bottom-left-radius: 6px;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
.cax-inputgroup > *:last-child {
|
|
1299
|
-
border-top-right-radius: 6px;
|
|
1300
|
-
border-bottom-right-radius: 6px;
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
.cax-inputgroup > .cax-button:first-child {
|
|
1304
|
-
border-top-left-radius: 6px;
|
|
1305
|
-
border-bottom-left-radius: 6px;
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
.cax-inputgroup > .cax-button:last-child {
|
|
1309
|
-
border-top-right-radius: 6px;
|
|
1310
|
-
border-bottom-right-radius: 6px;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
|
-
.cax-inputgroup .cax-float-label:last-child input {
|
|
1314
|
-
border-top-right-radius: 6px;
|
|
1315
|
-
border-bottom-right-radius: 6px;
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
.cax-fluid .cax-inputgroup .cax-button {
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
.cax-fluid .cax-inputgroup .cax-button.cax-button-icon-only {
|
|
1322
|
-
width: 2.5rem;
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
1222
|
.cax-icon-field-left .cax-input-icon:first-of-type {
|
|
1326
1223
|
left: 0.75rem;
|
|
1327
1224
|
color: var(--neutral-900);
|
|
@@ -1791,53 +1688,6 @@
|
|
|
1791
1688
|
color: #ef4444;
|
|
1792
1689
|
}
|
|
1793
1690
|
|
|
1794
|
-
.cax-selectbutton .cax-button {
|
|
1795
|
-
background: #09090b;
|
|
1796
|
-
border: 1px solid #09090b;
|
|
1797
|
-
color: #a1a1aa;
|
|
1798
|
-
transition:
|
|
1799
|
-
background-color 0.2s,
|
|
1800
|
-
color 0.2s,
|
|
1801
|
-
border-color 0.2s,
|
|
1802
|
-
box-shadow 0.2s,
|
|
1803
|
-
outline-color 0.2s;
|
|
1804
|
-
}
|
|
1805
|
-
.cax-selectbutton .cax-button .cax-button-icon-left,
|
|
1806
|
-
.cax-selectbutton .cax-button .cax-button-icon-right {
|
|
1807
|
-
color: #a1a1aa;
|
|
1808
|
-
}
|
|
1809
|
-
.cax-selectbutton .cax-button:not(.cax-disabled):not(.cax-highlight):hover {
|
|
1810
|
-
background: #09090b;
|
|
1811
|
-
border-color: #09090b;
|
|
1812
|
-
color: #ffffff;
|
|
1813
|
-
}
|
|
1814
|
-
.cax-selectbutton .cax-button:not(.cax-disabled):not(.cax-highlight):hover .cax-button-icon-left,
|
|
1815
|
-
.cax-selectbutton .cax-button:not(.cax-disabled):not(.cax-highlight):hover .cax-button-icon-right {
|
|
1816
|
-
color: #ffffff;
|
|
1817
|
-
}
|
|
1818
|
-
.cax-selectbutton .cax-button.cax-highlight {
|
|
1819
|
-
background: #09090b;
|
|
1820
|
-
border-color: #09090b;
|
|
1821
|
-
color: #ffffff;
|
|
1822
|
-
}
|
|
1823
|
-
.cax-selectbutton .cax-button.cax-highlight .cax-button-icon-left,
|
|
1824
|
-
.cax-selectbutton .cax-button.cax-highlight .cax-button-icon-right {
|
|
1825
|
-
color: #ffffff;
|
|
1826
|
-
}
|
|
1827
|
-
.cax-selectbutton .cax-button.cax-highlight:hover {
|
|
1828
|
-
background: #09090b;
|
|
1829
|
-
border-color: #09090b;
|
|
1830
|
-
color: #ffffff;
|
|
1831
|
-
}
|
|
1832
|
-
.cax-selectbutton .cax-button.cax-highlight:hover .cax-button-icon-left,
|
|
1833
|
-
.cax-selectbutton .cax-button.cax-highlight:hover .cax-button-icon-right {
|
|
1834
|
-
color: #ffffff;
|
|
1835
|
-
}
|
|
1836
|
-
|
|
1837
|
-
cax-selectbutton.ng-dirty.ng-invalid > .cax-selectbutton > .cax-button {
|
|
1838
|
-
border-color: #fca5a5;
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
1691
|
.cax-slider {
|
|
1842
1692
|
background: #3f3f46;
|
|
1843
1693
|
border: 0 none;
|
|
@@ -3797,52 +3647,6 @@
|
|
|
3797
3647
|
border-color: #a5f3fc;
|
|
3798
3648
|
}
|
|
3799
3649
|
|
|
3800
|
-
.cax-breadcrumb {
|
|
3801
|
-
border: 0 none;
|
|
3802
|
-
border-radius: 6px;
|
|
3803
|
-
padding: 1rem;
|
|
3804
|
-
}
|
|
3805
|
-
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link {
|
|
3806
|
-
transition:
|
|
3807
|
-
background-color 0.2s,
|
|
3808
|
-
color 0.2s,
|
|
3809
|
-
border-color 0.2s,
|
|
3810
|
-
box-shadow 0.2s,
|
|
3811
|
-
outline-color 0.2s;
|
|
3812
|
-
border-radius: 6px;
|
|
3813
|
-
cursor: pointer;
|
|
3814
|
-
}
|
|
3815
|
-
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link:focus-visible {
|
|
3816
|
-
outline: 1px solid var(--cax-focus-ring-color);
|
|
3817
|
-
outline-offset: 2px;
|
|
3818
|
-
box-shadow: none;
|
|
3819
|
-
}
|
|
3820
|
-
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link .cax-menuitem-text {
|
|
3821
|
-
color: var(--neutral-500);
|
|
3822
|
-
}
|
|
3823
|
-
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link .cax-menuitem-icon {
|
|
3824
|
-
color: var(--neutral-500);
|
|
3825
|
-
font-size: 1.5rem;
|
|
3826
|
-
}
|
|
3827
|
-
.cax-breadcrumb .cax-breadcrumb-list li.cax-menuitem-separator {
|
|
3828
|
-
margin: 0 0.5rem 0 0.5rem;
|
|
3829
|
-
color: var(--neutral-500);
|
|
3830
|
-
}
|
|
3831
|
-
.cax-breadcrumb .cax-breadcrumb-list li:last-child .cax-menuitem-separator {
|
|
3832
|
-
margin: 0 0.5rem 0 0.5rem;
|
|
3833
|
-
color: var(--neutral-900);
|
|
3834
|
-
}
|
|
3835
|
-
.cax-breadcrumb .cax-breadcrumb-list li:nth-last-child(-n + 2) {
|
|
3836
|
-
font-weight: bold;
|
|
3837
|
-
color: var(--neutral-900);
|
|
3838
|
-
}
|
|
3839
|
-
.cax-breadcrumb .cax-breadcrumb-list li:last-child .cax-menuitem-text {
|
|
3840
|
-
color: var(--neutral-900);
|
|
3841
|
-
}
|
|
3842
|
-
.cax-breadcrumb .cax-breadcrumb-list li:last-child .cax-menuitem-icon {
|
|
3843
|
-
color: var(--neutral-900);
|
|
3844
|
-
}
|
|
3845
|
-
|
|
3846
3650
|
.cax-contextmenu {
|
|
3847
3651
|
padding: 0.25rem 0.25rem;
|
|
3848
3652
|
background: #18181b;
|
|
@@ -4844,11 +4648,16 @@
|
|
|
4844
4648
|
}
|
|
4845
4649
|
|
|
4846
4650
|
.cax-tieredmenu {
|
|
4651
|
+
display: inline-block;
|
|
4652
|
+
max-width: 17.5rem;
|
|
4653
|
+
min-width: 7.5rem;
|
|
4847
4654
|
padding: var(--space-150) var(--space-50) var(--space-150) var(--space-50);
|
|
4848
4655
|
color: var(--white-100);
|
|
4849
4656
|
border: 1px solid var(--neutral-200);
|
|
4850
4657
|
border-radius: var(--radius-100);
|
|
4851
|
-
|
|
4658
|
+
white-space: nowrap;
|
|
4659
|
+
overflow: hidden;
|
|
4660
|
+
text-overflow: ellipsis;
|
|
4852
4661
|
}
|
|
4853
4662
|
.cax-tieredmenu.cax-tieredmenu-overlay {
|
|
4854
4663
|
background: var(--white-100);
|
|
@@ -5650,11 +5459,6 @@
|
|
|
5650
5459
|
.cax-inline-message.cax-inline-message-contrast {
|
|
5651
5460
|
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
|
5652
5461
|
}
|
|
5653
|
-
|
|
5654
|
-
.cax-inputgroup-addon {
|
|
5655
|
-
// padding: 0.5rem;
|
|
5656
|
-
}
|
|
5657
|
-
|
|
5658
5462
|
.cax-inputswitch .cax-inputswitch-slider {
|
|
5659
5463
|
border: 0 none;
|
|
5660
5464
|
}
|
|
@@ -6003,58 +5807,6 @@
|
|
|
6003
5807
|
gap: 0.25rem;
|
|
6004
5808
|
}
|
|
6005
5809
|
|
|
6006
|
-
.cax-selectbutton .cax-button .pi,
|
|
6007
|
-
.cax-selectbutton .cax-button .cax-button-label {
|
|
6008
|
-
position: relative;
|
|
6009
|
-
transition: none;
|
|
6010
|
-
}
|
|
6011
|
-
.cax-selectbutton .cax-button::before {
|
|
6012
|
-
content: '';
|
|
6013
|
-
background-color: transparent;
|
|
6014
|
-
transition:
|
|
6015
|
-
background-color 0.2s,
|
|
6016
|
-
color 0.2s,
|
|
6017
|
-
border-color 0.2s,
|
|
6018
|
-
box-shadow 0.2s,
|
|
6019
|
-
outline-color 0.2s;
|
|
6020
|
-
position: absolute;
|
|
6021
|
-
left: 0.25rem;
|
|
6022
|
-
top: 0.25rem;
|
|
6023
|
-
width: calc(100% - 0.5rem);
|
|
6024
|
-
height: calc(100% - 0.5rem);
|
|
6025
|
-
border-radius: 4px;
|
|
6026
|
-
}
|
|
6027
|
-
.cax-selectbutton .cax-button.cax-highlight::before {
|
|
6028
|
-
background: #27272a;
|
|
6029
|
-
border-color: #27272a;
|
|
6030
|
-
box-shadow:
|
|
6031
|
-
0px 1px 2px 0px rgba(0, 0, 0, 0.02),
|
|
6032
|
-
0px 1px 2px 0px rgba(0, 0, 0, 0.04);
|
|
6033
|
-
}
|
|
6034
|
-
.cax-selectbutton .cax-button:focus-visible {
|
|
6035
|
-
outline: 1px solid var(--cax-focus-ring-color);
|
|
6036
|
-
outline-offset: -1px;
|
|
6037
|
-
box-shadow: none;
|
|
6038
|
-
border-color: #52525b;
|
|
6039
|
-
}
|
|
6040
|
-
.cax-selectbutton .cax-button.cax-disabled {
|
|
6041
|
-
opacity: 1;
|
|
6042
|
-
color: #71717a;
|
|
6043
|
-
}
|
|
6044
|
-
.cax-selectbutton.cax-invalid {
|
|
6045
|
-
box-shadow: 0 0 0 1px #fca5a5;
|
|
6046
|
-
border-radius: 6px;
|
|
6047
|
-
}
|
|
6048
|
-
.cax-selectbutton.cax-invalid > .cax-button {
|
|
6049
|
-
border: 1px solid #09090b;
|
|
6050
|
-
}
|
|
6051
|
-
.cax-selectbutton.cax-disabled {
|
|
6052
|
-
opacity: 1;
|
|
6053
|
-
}
|
|
6054
|
-
.cax-selectbutton.cax-disabled .cax-button {
|
|
6055
|
-
color: #71717a;
|
|
6056
|
-
}
|
|
6057
|
-
|
|
6058
5810
|
.cax-slider .cax-slider-handle {
|
|
6059
5811
|
display: flex !important;
|
|
6060
5812
|
justify-content: center;
|
|
@@ -7989,10 +7741,6 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
7989
7741
|
}
|
|
7990
7742
|
}
|
|
7991
7743
|
|
|
7992
|
-
.cax-input-invalid {
|
|
7993
|
-
border: 1px solid var(--error-500) !important;
|
|
7994
|
-
}
|
|
7995
|
-
|
|
7996
7744
|
input.cax-input-invalid:hover,
|
|
7997
7745
|
.cax-inputtext.cax-input-invalid:hover {
|
|
7998
7746
|
border-color: var(--error-700) !important;
|
|
@@ -8148,7 +7896,7 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
8148
7896
|
}
|
|
8149
7897
|
.cax-tabview .cax-tabview-nav {
|
|
8150
7898
|
background: var(--white-100);
|
|
8151
|
-
border: var(--border-100) solid var(--neutral-200);
|
|
7899
|
+
// border: var(--border-100) solid var(--neutral-200);
|
|
8152
7900
|
border-width: 0 0 var(--border-200) 0;
|
|
8153
7901
|
}
|
|
8154
7902
|
.cax-tabview .cax-tabview-nav li {
|
|
@@ -8314,6 +8062,7 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
8314
8062
|
position: absolute;
|
|
8315
8063
|
bottom: 0;
|
|
8316
8064
|
height: 2px;
|
|
8065
|
+
margin-bottom: -2px;
|
|
8317
8066
|
background-color: var(--primary-500);
|
|
8318
8067
|
transition: 500ms cubic-bezier(0.35, 0, 0.25, 1);
|
|
8319
8068
|
}
|
|
@@ -8825,6 +8574,9 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
8825
8574
|
.cax-button:not(.cax-button-sm):not(.cax-button-md):not(.cax-button-lg) {
|
|
8826
8575
|
height: 40px;
|
|
8827
8576
|
}
|
|
8577
|
+
.cax-tabview-separator {
|
|
8578
|
+
background-color: var(--neutral-75);
|
|
8579
|
+
}
|
|
8828
8580
|
.cax-button.cax-button-sm {
|
|
8829
8581
|
height: 32px !important;
|
|
8830
8582
|
padding: var(--space-100) var(--space-150) var(--space-100) var(--space-150) !important;
|
|
@@ -9567,6 +9319,9 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
9567
9319
|
color: #000000;
|
|
9568
9320
|
}
|
|
9569
9321
|
|
|
9322
|
+
.cax-tabview-nav-container {
|
|
9323
|
+
border-bottom: var(--border-200) solid var(--neutral-200);
|
|
9324
|
+
}
|
|
9570
9325
|
.cax-tabview .cax-tabview-nav-content {
|
|
9571
9326
|
scroll-padding-inline: var(--space-500);
|
|
9572
9327
|
padding-right: 0;
|
|
@@ -9576,7 +9331,7 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
9576
9331
|
}
|
|
9577
9332
|
.cax-tabview .cax-tabview-nav {
|
|
9578
9333
|
background: var(--white-100);
|
|
9579
|
-
border: var(--border-100) solid var(--neutral-200);
|
|
9334
|
+
// border: var(--border-100) solid var(--neutral-200);
|
|
9580
9335
|
border-width: 0 0 var(--border-200) 0;
|
|
9581
9336
|
}
|
|
9582
9337
|
.cax-tabview .cax-tabview-nav li {
|
|
@@ -11839,7 +11594,7 @@ cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input:enab
|
|
|
11839
11594
|
background: var(--white-100);
|
|
11840
11595
|
}
|
|
11841
11596
|
|
|
11842
|
-
|
|
11597
|
+
cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
|
|
11843
11598
|
border-color: var(--error-600);
|
|
11844
11599
|
}
|
|
11845
11600
|
|
|
@@ -11875,3 +11630,360 @@ cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input:enab
|
|
|
11875
11630
|
.cax-autocomplete.cax-disabled {
|
|
11876
11631
|
opacity: 1;
|
|
11877
11632
|
}
|
|
11633
|
+
|
|
11634
|
+
.cax-breadcrumb {
|
|
11635
|
+
height: 42px;
|
|
11636
|
+
top: 40px;
|
|
11637
|
+
border: 0 none;
|
|
11638
|
+
border-radius: 6px;
|
|
11639
|
+
left: 40px;
|
|
11640
|
+
padding: var(--space-100) var(--space-200) var(--space-100) var(--space-200);
|
|
11641
|
+
|
|
11642
|
+
}
|
|
11643
|
+
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link {
|
|
11644
|
+
transition:
|
|
11645
|
+
background-color 0.2s,
|
|
11646
|
+
color 0.2s,
|
|
11647
|
+
border-color 0.2s,
|
|
11648
|
+
box-shadow 0.2s,
|
|
11649
|
+
outline-color 0.2s;
|
|
11650
|
+
border-radius: 6px;
|
|
11651
|
+
cursor: pointer;
|
|
11652
|
+
}
|
|
11653
|
+
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link:focus-visible {
|
|
11654
|
+
outline: 1px solid var(--cax-focus-ring-color);
|
|
11655
|
+
outline-offset: 2px;
|
|
11656
|
+
box-shadow: none;
|
|
11657
|
+
}
|
|
11658
|
+
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link .cax-menuitem-text {
|
|
11659
|
+
color: var(--neutral-500);
|
|
11660
|
+
}
|
|
11661
|
+
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-link .cax-menuitem-icon {
|
|
11662
|
+
color: var(--neutral-500);
|
|
11663
|
+
font-size: 1.5rem;
|
|
11664
|
+
}
|
|
11665
|
+
.cax-breadcrumb .cax-breadcrumb-list li.cax-menuitem-separator {
|
|
11666
|
+
margin: 0 7px 0 7px;
|
|
11667
|
+
color: var(--neutral-500);
|
|
11668
|
+
}
|
|
11669
|
+
.cax-breadcrumb .cax-breadcrumb-list li:last-child .cax-menuitem-separator {
|
|
11670
|
+
margin: 0 7px 0 7px;
|
|
11671
|
+
color: var(--neutral-900);
|
|
11672
|
+
}
|
|
11673
|
+
.cax-breadcrumb .cax-breadcrumb-list li:nth-last-child(-n + 2) {
|
|
11674
|
+
font-weight: bold;
|
|
11675
|
+
color: var(--neutral-900);
|
|
11676
|
+
}
|
|
11677
|
+
.cax-breadcrumb .cax-breadcrumb-list li:last-child .cax-menuitem-text {
|
|
11678
|
+
color: var(--neutral-900);
|
|
11679
|
+
}
|
|
11680
|
+
.cax-breadcrumb .cax-breadcrumb-list li:last-child .cax-menuitem-icon {
|
|
11681
|
+
color: var(--neutral-900);
|
|
11682
|
+
}
|
|
11683
|
+
|
|
11684
|
+
.cax-breadcrumb .cax-breadcrumb-list li:not(:last-child) .cax-menuitem-link .cax-menuitem-text {
|
|
11685
|
+
text-decoration: none;
|
|
11686
|
+
border-bottom: 2px solid var(--neutral-500);
|
|
11687
|
+
}
|
|
11688
|
+
|
|
11689
|
+
/* Ensure icons are not underlined */
|
|
11690
|
+
.cax-breadcrumb .cax-breadcrumb-list li .cax-menuitem-icon {
|
|
11691
|
+
text-decoration: none;
|
|
11692
|
+
border-bottom: none;
|
|
11693
|
+
}
|
|
11694
|
+
|
|
11695
|
+
/* Remove underline for the last breadcrumb label */
|
|
11696
|
+
.cax-breadcrumb .cax-breadcrumb-list li:last-child .cax-menuitem-text {
|
|
11697
|
+
border-bottom: none;
|
|
11698
|
+
}
|
|
11699
|
+
.cax-icon {
|
|
11700
|
+
display: inline-block;
|
|
11701
|
+
vertical-align: baseline;
|
|
11702
|
+
}
|
|
11703
|
+
|
|
11704
|
+
.cax-icon-spin {
|
|
11705
|
+
-webkit-animation: cax-icon-spin 2s infinite linear;
|
|
11706
|
+
animation: cax-icon-spin 2s infinite linear;
|
|
11707
|
+
}
|
|
11708
|
+
|
|
11709
|
+
@-webkit-keyframes cax-icon-spin {
|
|
11710
|
+
0% {
|
|
11711
|
+
-webkit-transform: rotate(0deg);
|
|
11712
|
+
transform: rotate(0deg);
|
|
11713
|
+
}
|
|
11714
|
+
100% {
|
|
11715
|
+
-webkit-transform: rotate(359deg);
|
|
11716
|
+
transform: rotate(359deg);
|
|
11717
|
+
}
|
|
11718
|
+
}
|
|
11719
|
+
|
|
11720
|
+
@keyframes cax-icon-spin {
|
|
11721
|
+
0% {
|
|
11722
|
+
-webkit-transform: rotate(0deg);
|
|
11723
|
+
transform: rotate(0deg);
|
|
11724
|
+
}
|
|
11725
|
+
100% {
|
|
11726
|
+
-webkit-transform: rotate(359deg);
|
|
11727
|
+
transform: rotate(359deg);
|
|
11728
|
+
}
|
|
11729
|
+
}
|
|
11730
|
+
|
|
11731
|
+
.cax-inputgroup-container {
|
|
11732
|
+
display: flex;
|
|
11733
|
+
flex-direction: column;
|
|
11734
|
+
gap: 8px;
|
|
11735
|
+
width: 100%;
|
|
11736
|
+
|
|
11737
|
+
.cax-label {
|
|
11738
|
+
font-size: 14px;
|
|
11739
|
+
font-weight: 500;
|
|
11740
|
+
line-height: 20px;
|
|
11741
|
+
color: var(--neutral-900);
|
|
11742
|
+
}
|
|
11743
|
+
}
|
|
11744
|
+
|
|
11745
|
+
.cax-inputgroup-addon {
|
|
11746
|
+
background: var(--neutral-200);
|
|
11747
|
+
color: var(--neutral-700);
|
|
11748
|
+
border-top: 1px solid var(--neutral-200);
|
|
11749
|
+
border-left: 1px solid var(--neutral-200);
|
|
11750
|
+
border-bottom: 1px solid var(--neutral-200);
|
|
11751
|
+
padding: 8px 12px;
|
|
11752
|
+
min-width: 2.5rem;
|
|
11753
|
+
overflow: hidden;
|
|
11754
|
+
|
|
11755
|
+
&:has(.cax-button) {
|
|
11756
|
+
padding: 0;
|
|
11757
|
+
border-radius: 0;
|
|
11758
|
+
background: transparent;
|
|
11759
|
+
border: 0;
|
|
11760
|
+
width: auto;
|
|
11761
|
+
min-width: fit-content;
|
|
11762
|
+
|
|
11763
|
+
.cax-button {
|
|
11764
|
+
width: 100%;
|
|
11765
|
+
margin: 0;
|
|
11766
|
+
border-radius: 0;
|
|
11767
|
+
padding: 8px 12px !important;
|
|
11768
|
+
}
|
|
11769
|
+
}
|
|
11770
|
+
|
|
11771
|
+
.cax-button {
|
|
11772
|
+
padding: 0.5rem 1.75rem !important;
|
|
11773
|
+
border-radius: none;
|
|
11774
|
+
}
|
|
11775
|
+
|
|
11776
|
+
&:has(> i:only-child) {
|
|
11777
|
+
padding: 0.5rem 0.75rem;
|
|
11778
|
+
}
|
|
11779
|
+
|
|
11780
|
+
&:first-child {
|
|
11781
|
+
border-top-left-radius: 6px;
|
|
11782
|
+
border-bottom-left-radius: 6px;
|
|
11783
|
+
}
|
|
11784
|
+
|
|
11785
|
+
&:last-child {
|
|
11786
|
+
border-top-right-radius: 6px;
|
|
11787
|
+
border-bottom-right-radius: 6px;
|
|
11788
|
+
}
|
|
11789
|
+
}
|
|
11790
|
+
|
|
11791
|
+
.cax-inputgroup-addon:last-child {
|
|
11792
|
+
border-right: 1px solid var(--neutral-200);
|
|
11793
|
+
}
|
|
11794
|
+
.cax-inputgroup-addon:last-child:has(.cax-button) {
|
|
11795
|
+
border: 0;
|
|
11796
|
+
}
|
|
11797
|
+
|
|
11798
|
+
.cax-inputgroup {
|
|
11799
|
+
width: -webkit-fill-available;
|
|
11800
|
+
> *:first-child {
|
|
11801
|
+
border-top-left-radius: 6px;
|
|
11802
|
+
border-bottom-left-radius: 6px;
|
|
11803
|
+
}
|
|
11804
|
+
|
|
11805
|
+
> *:last-child {
|
|
11806
|
+
border-top-right-radius: 6px;
|
|
11807
|
+
border-bottom-right-radius: 6px;
|
|
11808
|
+
}
|
|
11809
|
+
}
|
|
11810
|
+
|
|
11811
|
+
.cax-inputgroup > .cax-component,
|
|
11812
|
+
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext >,
|
|
11813
|
+
.cax-inputgroup > .cax-float-label > .cax-component {
|
|
11814
|
+
border-radius: 0;
|
|
11815
|
+
margin: 0;
|
|
11816
|
+
}
|
|
11817
|
+
.cax-inputgroup > .cax-component + .cax-inputgroup-addon,
|
|
11818
|
+
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext + .cax-inputgroup-addon,
|
|
11819
|
+
.cax-inputgroup > .cax-float-label > .cax-component + .cax-inputgroup-addon {
|
|
11820
|
+
border-left: 0 none;
|
|
11821
|
+
}
|
|
11822
|
+
.cax-inputgroup > .cax-component:focus,
|
|
11823
|
+
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext:focus,
|
|
11824
|
+
.cax-inputgroup > .cax-float-label > .cax-component:focus {
|
|
11825
|
+
z-index: 1;
|
|
11826
|
+
}
|
|
11827
|
+
.cax-inputgroup > .cax-component:focus ~ label,
|
|
11828
|
+
.cax-inputgroup > .cax-inputwrapper > .cax-inputtext:focus ~ label,
|
|
11829
|
+
.cax-inputgroup > .cax-float-label > .cax-component:focus ~ label {
|
|
11830
|
+
z-index: 1;
|
|
11831
|
+
}
|
|
11832
|
+
|
|
11833
|
+
.cax-inputgroup > .cax-inputwrapper:first-child > .cax-component,
|
|
11834
|
+
.cax-inputgroup > .cax-inputwrapper:first-child > .cax-component > .cax-inputtext {
|
|
11835
|
+
border-top-left-radius: 6px;
|
|
11836
|
+
border-bottom-left-radius: 6px;
|
|
11837
|
+
}
|
|
11838
|
+
|
|
11839
|
+
.cax-inputgroup .cax-float-label:first-child input {
|
|
11840
|
+
border-top-left-radius: 6px;
|
|
11841
|
+
border-bottom-left-radius: 6px;
|
|
11842
|
+
}
|
|
11843
|
+
|
|
11844
|
+
.cax-inputgroup > .cax-inputwrapper:last-child > .cax-component,
|
|
11845
|
+
.cax-inputgroup > .cax-inputwrapper:last-child > .cax-component > .cax-inputtext {
|
|
11846
|
+
border-top-right-radius: 6px;
|
|
11847
|
+
border-bottom-right-radius: 6px;
|
|
11848
|
+
}
|
|
11849
|
+
|
|
11850
|
+
.cax-inputgroup-addon,
|
|
11851
|
+
.cax-inputgroup input,
|
|
11852
|
+
.cax-inputgroup .cax-button {
|
|
11853
|
+
border-radius: 0;
|
|
11854
|
+
}
|
|
11855
|
+
|
|
11856
|
+
.cax-inputgroup > *:first-child {
|
|
11857
|
+
border-top-left-radius: 6px;
|
|
11858
|
+
border-bottom-left-radius: 6px;
|
|
11859
|
+
}
|
|
11860
|
+
|
|
11861
|
+
.cax-inputgroup > *:last-child {
|
|
11862
|
+
border-top-right-radius: 6px;
|
|
11863
|
+
border-bottom-right-radius: 6px;
|
|
11864
|
+
}
|
|
11865
|
+
|
|
11866
|
+
.cax-inputgroup > .cax-button:first-child {
|
|
11867
|
+
border-top-left-radius: 6px;
|
|
11868
|
+
border-bottom-left-radius: 6px;
|
|
11869
|
+
}
|
|
11870
|
+
|
|
11871
|
+
.cax-inputgroup > .cax-button:last-child {
|
|
11872
|
+
border-top-right-radius: 6px;
|
|
11873
|
+
border-bottom-right-radius: 6px;
|
|
11874
|
+
}
|
|
11875
|
+
|
|
11876
|
+
.cax-inputgroup .cax-float-label:last-child input {
|
|
11877
|
+
border-top-right-radius: 6px;
|
|
11878
|
+
border-bottom-right-radius: 6px;
|
|
11879
|
+
}
|
|
11880
|
+
.cax-selectbutton{
|
|
11881
|
+
display: inline-flex !important;
|
|
11882
|
+
gap: 0px;
|
|
11883
|
+
border-radius: 0px!important;
|
|
11884
|
+
}
|
|
11885
|
+
.cax-selectbutton .cax-button .cax-button-label{
|
|
11886
|
+
color: var(--neutral-500) !important;
|
|
11887
|
+
font-size: 14px !important;
|
|
11888
|
+
font-weight: 700 !important;
|
|
11889
|
+
}
|
|
11890
|
+
.cax-selectbutton .cax-button {
|
|
11891
|
+
border-radius: 0px !important;
|
|
11892
|
+
background: var(--neutral-150) !important;
|
|
11893
|
+
color: var(--black-100);
|
|
11894
|
+
transition:
|
|
11895
|
+
background-color 0.2s,
|
|
11896
|
+
color 0.2s,
|
|
11897
|
+
border-color 0.2s,
|
|
11898
|
+
box-shadow 0.2s,
|
|
11899
|
+
outline-color 0.2s;
|
|
11900
|
+
border:none !important;
|
|
11901
|
+
}
|
|
11902
|
+
.cax-selectbutton .cax-button:first-child{
|
|
11903
|
+
border-top-left-radius: 6px !important;
|
|
11904
|
+
border-bottom-left-radius: 6px !important;
|
|
11905
|
+
}
|
|
11906
|
+
.cax-selectbutton .cax-button:last-child{
|
|
11907
|
+
border-top-right-radius: 6px !important;
|
|
11908
|
+
border-bottom-right-radius: 6px !important;
|
|
11909
|
+
}
|
|
11910
|
+
.cax-selectbutton .cax-button:not(.cax-button-sm):not(.cax-button-md):not(.cax-button-lg) {
|
|
11911
|
+
height: 33px !important;
|
|
11912
|
+
}
|
|
11913
|
+
.cax-selectbutton .cax-button .cax-button-icon-left,
|
|
11914
|
+
.cax-selectbutton .cax-button .cax-button-icon-right {
|
|
11915
|
+
color: var(--black-100);
|
|
11916
|
+
}
|
|
11917
|
+
.cax-selectbutton .cax-button:not(.cax-disabled):not(.cax-highlight):hover .cax-button-icon-left,
|
|
11918
|
+
.cax-selectbutton .cax-button:not(.cax-disabled):not(.cax-highlight):hover .cax-button-icon-right {
|
|
11919
|
+
color: var(--black-100);
|
|
11920
|
+
}
|
|
11921
|
+
.cax-selectbutton .cax-button.cax-highlight .cax-button-label {
|
|
11922
|
+
color: var(--black-100) !important;
|
|
11923
|
+
}
|
|
11924
|
+
|
|
11925
|
+
.cax-selectbutton .cax-button.cax-highlight .cax-button-icon-left,
|
|
11926
|
+
.cax-selectbutton .cax-button.cax-highlight .cax-button-icon-right {
|
|
11927
|
+
color: var(--black-100);
|
|
11928
|
+
}
|
|
11929
|
+
.cax-selectbutton .cax-button.cax-highlight:hover .cax-button-icon-left,
|
|
11930
|
+
.cax-selectbutton .cax-button.cax-highlight:hover .cax-button-icon-right {
|
|
11931
|
+
color: var(--black-100);
|
|
11932
|
+
}
|
|
11933
|
+
|
|
11934
|
+
cax-selectbutton.ng-dirty.ng-invalid > .cax-selectbutton > .cax-button {
|
|
11935
|
+
border-color: var(--error-500) !important ;
|
|
11936
|
+
}
|
|
11937
|
+
|
|
11938
|
+
.cax-selectbutton .cax-button .pi,
|
|
11939
|
+
.cax-selectbutton .cax-button .cax-button-label {
|
|
11940
|
+
position: relative;
|
|
11941
|
+
transition: none;
|
|
11942
|
+
}
|
|
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;
|
|
11958
|
+
}
|
|
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);
|
|
11964
|
+
}
|
|
11965
|
+
.cax-selectbutton .cax-button:focus-visible {
|
|
11966
|
+
outline: 1px solid var(--cax-focus-ring-color);
|
|
11967
|
+
outline-offset: -1px;
|
|
11968
|
+
box-shadow: none;
|
|
11969
|
+
}
|
|
11970
|
+
.cax-selectbutton .cax-button.cax-disabled {
|
|
11971
|
+
opacity: 0.5;
|
|
11972
|
+
}
|
|
11973
|
+
.cax-selectbutton.cax-invalid {
|
|
11974
|
+
box-shadow: 0 0 0 1px var(--error-500);
|
|
11975
|
+
border-radius: 6px;
|
|
11976
|
+
}
|
|
11977
|
+
.cax-selectbutton.cax-invalid > .cax-button {
|
|
11978
|
+
border: 1px solid var(--error-500);
|
|
11979
|
+
}
|
|
11980
|
+
.cax-selectbutton.cax-disabled {
|
|
11981
|
+
opacity: 0.6;
|
|
11982
|
+
}
|
|
11983
|
+
.cax-selectbutton.cax-disabled .cax-button {
|
|
11984
|
+
color: var(--neutral-25);
|
|
11985
|
+
}
|
|
11986
|
+
.cax-selectbutton .cax-button.cax-input-invalid {
|
|
11987
|
+
border: 1px solid var(--error-500) !important;
|
|
11988
|
+
}
|
|
11989
|
+
|