@idds/styles 1.5.41 → 1.5.43
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/dist/index.css +75 -55
- package/dist/index.min.css +6 -6
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1323,7 +1323,7 @@ dfn {
|
|
|
1323
1323
|
pointer-events: none;
|
|
1324
1324
|
}
|
|
1325
1325
|
/* Menu container */
|
|
1326
|
-
.ina-action-dropdown__menu {
|
|
1326
|
+
.ina-action-dropdown .ina-action-dropdown__menu {
|
|
1327
1327
|
position: absolute;
|
|
1328
1328
|
background-color: var(--ina-background-primary);
|
|
1329
1329
|
border: 1px solid var(--ina-stroke-primary);
|
|
@@ -1343,7 +1343,7 @@ dfn {
|
|
|
1343
1343
|
pointer-events: none;
|
|
1344
1344
|
visibility: hidden;
|
|
1345
1345
|
padding: var(--ina-spacing-0-5);
|
|
1346
|
-
margin-top: var(--ina-spacing-
|
|
1346
|
+
margin-top: var(--ina-spacing-2, 0.5rem);
|
|
1347
1347
|
}
|
|
1348
1348
|
.ina-action-dropdown__menu--visible {
|
|
1349
1349
|
opacity: 1;
|
|
@@ -2169,7 +2169,7 @@ dfn {
|
|
|
2169
2169
|
opacity: 0.6;
|
|
2170
2170
|
}
|
|
2171
2171
|
/* Panel Container */
|
|
2172
|
-
.ina-basic-dropdown__panel {
|
|
2172
|
+
.ina-basic-dropdown .ina-basic-dropdown__panel {
|
|
2173
2173
|
position: absolute;
|
|
2174
2174
|
z-index: 10004;
|
|
2175
2175
|
min-width: 100%;
|
|
@@ -2181,7 +2181,7 @@ dfn {
|
|
|
2181
2181
|
box-shadow:
|
|
2182
2182
|
0 10px 25px -5px rgba(0, 0, 0, 0.1),
|
|
2183
2183
|
0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
2184
|
-
margin: var(--ina-spacing-
|
|
2184
|
+
margin-top: var(--ina-spacing-2, 0.5rem);
|
|
2185
2185
|
animation: basicDropdownFadeIn var(--ina-transition-duration-200) ease-out;
|
|
2186
2186
|
}
|
|
2187
2187
|
@keyframes basicDropdownFadeIn {
|
|
@@ -7769,8 +7769,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
7769
7769
|
.ina-one-time-password__input--error:focus {
|
|
7770
7770
|
border-color: var(--ina-negative-500, #f02d2d);
|
|
7771
7771
|
box-shadow:
|
|
7772
|
-
|
|
7773
|
-
|
|
7772
|
+
0 0 0 2px #fff,
|
|
7773
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d) !important;
|
|
7774
7774
|
}
|
|
7775
7775
|
/* Disabled state */
|
|
7776
7776
|
.ina-one-time-password__input:disabled {
|
|
@@ -8278,8 +8278,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8278
8278
|
.ina-password-input__wrapper.ina-password-input__wrapper--neutral:focus-within {
|
|
8279
8279
|
border-color: var(--ina-content-primary, #1f1f1f);
|
|
8280
8280
|
box-shadow:
|
|
8281
|
-
|
|
8282
|
-
|
|
8281
|
+
0 0 0 2px #fff,
|
|
8282
|
+
0 0 0 3px var(--ina-content-primary, #1f1f1f) !important;
|
|
8283
8283
|
}
|
|
8284
8284
|
.ina-password-input__wrapper.ina-password-input__wrapper--error {
|
|
8285
8285
|
border-color: var(--ina-negative-500);
|
|
@@ -8287,8 +8287,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8287
8287
|
.ina-password-input__wrapper.ina-password-input__wrapper--error:focus-within {
|
|
8288
8288
|
border-color: var(--ina-negative-600, #d50b0b);
|
|
8289
8289
|
box-shadow:
|
|
8290
|
-
|
|
8291
|
-
|
|
8290
|
+
0 0 0 2px #fff,
|
|
8291
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d) !important;
|
|
8292
8292
|
}
|
|
8293
8293
|
.ina-password-input__wrapper.ina-password-input__wrapper--warning {
|
|
8294
8294
|
border-color: var(--ina-warning-500);
|
|
@@ -8296,8 +8296,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8296
8296
|
.ina-password-input__wrapper.ina-password-input__wrapper--warning:focus-within {
|
|
8297
8297
|
border-color: var(--ina-warning-600, #855f00);
|
|
8298
8298
|
box-shadow:
|
|
8299
|
-
|
|
8300
|
-
|
|
8299
|
+
0 0 0 2px #fff,
|
|
8300
|
+
0 0 0 3px var(--ina-warning-500, #eebb04) !important;
|
|
8301
8301
|
}
|
|
8302
8302
|
.ina-password-input__wrapper.ina-password-input__wrapper--success {
|
|
8303
8303
|
border-color: var(--ina-positive-600);
|
|
@@ -8305,8 +8305,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8305
8305
|
.ina-password-input__wrapper.ina-password-input__wrapper--success:focus-within {
|
|
8306
8306
|
border-color: var(--ina-positive-600, #288034);
|
|
8307
8307
|
box-shadow:
|
|
8308
|
-
|
|
8309
|
-
|
|
8308
|
+
0 0 0 2px #fff,
|
|
8309
|
+
0 0 0 3px var(--ina-positive-500, #3cc14e) !important;
|
|
8310
8310
|
}
|
|
8311
8311
|
/* Prefix icon */
|
|
8312
8312
|
.ina-password-input__prefix-icon {
|
|
@@ -8387,13 +8387,16 @@ dialog.bottom-sheet-dropdown {
|
|
|
8387
8387
|
color: var(--ina-content-secondary);
|
|
8388
8388
|
padding-top: var(--ina-spacing-1, 0.25rem);
|
|
8389
8389
|
}
|
|
8390
|
-
.ina-password-
|
|
8390
|
+
.ina-password-input
|
|
8391
|
+
.ina-password-input__status-message.ina-password-input__status-message--error {
|
|
8391
8392
|
color: var(--ina-negative-500);
|
|
8392
8393
|
}
|
|
8393
|
-
.ina-password-
|
|
8394
|
+
.ina-password-input
|
|
8395
|
+
.ina-password-input__status-message.ina-password-input__status-message--warning {
|
|
8394
8396
|
color: var(--ina-warning-500);
|
|
8395
8397
|
}
|
|
8396
|
-
.ina-password-
|
|
8398
|
+
.ina-password-input
|
|
8399
|
+
.ina-password-input__status-message.ina-password-input__status-message--success {
|
|
8397
8400
|
color: var(--ina-positive-600);
|
|
8398
8401
|
}
|
|
8399
8402
|
/* Character count */
|
|
@@ -8842,8 +8845,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8842
8845
|
.ina-phone-input__wrapper.ina-phone-input__wrapper--status-error:focus-within {
|
|
8843
8846
|
border-color: var(--ina-negative-500);
|
|
8844
8847
|
box-shadow:
|
|
8845
|
-
|
|
8846
|
-
|
|
8848
|
+
0 0 0 2px #fff,
|
|
8849
|
+
0 0 0 3px var(--ina-negative-50) !important;
|
|
8847
8850
|
}
|
|
8848
8851
|
.ina-phone-input__wrapper--status-warning {
|
|
8849
8852
|
border-color: var(--ina-warning-500);
|
|
@@ -8851,8 +8854,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8851
8854
|
.ina-phone-input__wrapper.ina-phone-input__wrapper--status-warning:focus-within {
|
|
8852
8855
|
border-color: var(--ina-warning-500);
|
|
8853
8856
|
box-shadow:
|
|
8854
|
-
|
|
8855
|
-
|
|
8857
|
+
0 0 0 2px #fff,
|
|
8858
|
+
0 0 0 3px var(--ina-warning-50) !important;
|
|
8856
8859
|
}
|
|
8857
8860
|
.ina-phone-input__wrapper--status-success {
|
|
8858
8861
|
border-color: var(--ina-positive-600);
|
|
@@ -8860,8 +8863,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8860
8863
|
.ina-phone-input__wrapper.ina-phone-input__wrapper--status-success:focus-within {
|
|
8861
8864
|
border-color: var(--ina-positive-600);
|
|
8862
8865
|
box-shadow:
|
|
8863
|
-
|
|
8864
|
-
|
|
8866
|
+
0 0 0 2px #fff,
|
|
8867
|
+
0 0 0 3px var(--ina-positive-50) !important;
|
|
8865
8868
|
}
|
|
8866
8869
|
/* Focus styles */
|
|
8867
8870
|
.ina-phone-input__wrapper:focus-within {
|
|
@@ -8901,7 +8904,9 @@ dialog.bottom-sheet-dropdown {
|
|
|
8901
8904
|
color: var(--ina-content-tertiary);
|
|
8902
8905
|
}
|
|
8903
8906
|
/* Country Dropdown */
|
|
8904
|
-
.ina-phone-
|
|
8907
|
+
.ina-phone-input
|
|
8908
|
+
.ina-phone-input__country-selector
|
|
8909
|
+
.ina-phone-input__country-dropdown {
|
|
8905
8910
|
position: absolute;
|
|
8906
8911
|
top: 100%;
|
|
8907
8912
|
left: 0;
|
|
@@ -9778,8 +9783,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
9778
9783
|
.ina-select-dropdown__trigger--status-error:focus-within {
|
|
9779
9784
|
border-color: var(--ina-negative-600, #d50b0b);
|
|
9780
9785
|
box-shadow:
|
|
9781
|
-
|
|
9782
|
-
|
|
9786
|
+
0 0 0 2px #fff,
|
|
9787
|
+
0 0 0 3px var(--ina-negative-50, #fffafa);
|
|
9783
9788
|
}
|
|
9784
9789
|
.ina-select-dropdown__trigger--status-warning {
|
|
9785
9790
|
border-color: var(--ina-warning-500, #eebb04);
|
|
@@ -9787,8 +9792,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
9787
9792
|
.ina-select-dropdown__trigger--status-warning:focus-within {
|
|
9788
9793
|
border-color: var(--ina-warning-600, #855f00);
|
|
9789
9794
|
box-shadow:
|
|
9790
|
-
|
|
9791
|
-
|
|
9795
|
+
0 0 0 2px #fff,
|
|
9796
|
+
0 0 0 3px var(--ina-warning-50, #fffefa);
|
|
9792
9797
|
}
|
|
9793
9798
|
.ina-select-dropdown__trigger--status-success {
|
|
9794
9799
|
border-color: var(--ina-positive-500, #3cc14e);
|
|
@@ -9796,8 +9801,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
9796
9801
|
.ina-select-dropdown__trigger--status-success:focus-within {
|
|
9797
9802
|
border-color: var(--ina-positive-600, #288034);
|
|
9798
9803
|
box-shadow:
|
|
9799
|
-
|
|
9800
|
-
|
|
9804
|
+
0 0 0 2px #fff,
|
|
9805
|
+
0 0 0 3px var(--ina-positive-50, #fafffa);
|
|
9801
9806
|
}
|
|
9802
9807
|
.ina-select-dropdown__trigger--disabled {
|
|
9803
9808
|
background-color: transparent;
|
|
@@ -9849,7 +9854,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
9849
9854
|
left: 0;
|
|
9850
9855
|
width: 100%; /* Match trigger width by default */
|
|
9851
9856
|
min-width: 100%;
|
|
9852
|
-
margin-top: var(--ina-spacing-
|
|
9857
|
+
margin-top: var(--ina-spacing-2, 0.5rem);
|
|
9853
9858
|
background-color: var(
|
|
9854
9859
|
--ina-background-primary,
|
|
9855
9860
|
#ffffff
|
|
@@ -12822,8 +12827,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
12822
12827
|
.ina-text-area__wrapper.ina-text-area__wrapper--status-error:focus-within {
|
|
12823
12828
|
border-color: var(--ina-negative-600);
|
|
12824
12829
|
box-shadow:
|
|
12825
|
-
|
|
12826
|
-
|
|
12830
|
+
0 0 0 2px #fff,
|
|
12831
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d);
|
|
12827
12832
|
}
|
|
12828
12833
|
.ina-text-area__wrapper--status-warning {
|
|
12829
12834
|
border-color: var(--ina-warning-500);
|
|
@@ -12831,8 +12836,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
12831
12836
|
.ina-text-area__wrapper.ina-text-area__wrapper--status-warning:focus-within {
|
|
12832
12837
|
border-color: var(--ina-warning-600);
|
|
12833
12838
|
box-shadow:
|
|
12834
|
-
|
|
12835
|
-
|
|
12839
|
+
0 0 0 2px #fff,
|
|
12840
|
+
0 0 0 3px var(--ina-warning-500, #eebb04);
|
|
12836
12841
|
}
|
|
12837
12842
|
.ina-text-area__wrapper--status-success {
|
|
12838
12843
|
border-color: var(--ina-positive-600);
|
|
@@ -12840,8 +12845,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
12840
12845
|
.ina-text-area__wrapper.ina-text-area__wrapper--status-success:focus-within {
|
|
12841
12846
|
border-color: var(--ina-positive-600);
|
|
12842
12847
|
box-shadow:
|
|
12843
|
-
|
|
12844
|
-
|
|
12848
|
+
0 0 0 2px #fff,
|
|
12849
|
+
0 0 0 3px var(--ina-positive-500, #3cc14e);
|
|
12845
12850
|
}
|
|
12846
12851
|
/* Disabled state */
|
|
12847
12852
|
.ina-text-area__wrapper--disabled {
|
|
@@ -13026,16 +13031,20 @@ dialog.bottom-sheet-dropdown {
|
|
|
13026
13031
|
font-size: var(--ina-font-xs);
|
|
13027
13032
|
padding-top: var(--ina-spacing-1);
|
|
13028
13033
|
}
|
|
13029
|
-
.ina-text-
|
|
13034
|
+
.ina-text-field
|
|
13035
|
+
.ina-text-field__helper-text.ina-text-field__helper-text--neutral {
|
|
13030
13036
|
color: var(--ina-content-secondary, #525252);
|
|
13031
13037
|
}
|
|
13032
|
-
.ina-text-
|
|
13038
|
+
.ina-text-field
|
|
13039
|
+
.ina-text-field__helper-text.ina-text-field__helper-text--error {
|
|
13033
13040
|
color: var(--ina-negative-500, #f02d2d);
|
|
13034
13041
|
}
|
|
13035
|
-
.ina-text-
|
|
13042
|
+
.ina-text-field
|
|
13043
|
+
.ina-text-field__helper-text.ina-text-field__helper-text--warning {
|
|
13036
13044
|
color: var(--ina-warning-500, #eebb04);
|
|
13037
13045
|
}
|
|
13038
|
-
.ina-text-
|
|
13046
|
+
.ina-text-field
|
|
13047
|
+
.ina-text-field__helper-text.ina-text-field__helper-text--success {
|
|
13039
13048
|
color: var(--ina-positive-600, #288034);
|
|
13040
13049
|
}
|
|
13041
13050
|
/* Character count */
|
|
@@ -13057,8 +13066,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13057
13066
|
.ina-text-field__wrapper.ina-text-field__wrapper--status-error:focus-within {
|
|
13058
13067
|
border-color: var(--ina-negative-600, #d50b0b);
|
|
13059
13068
|
box-shadow:
|
|
13060
|
-
|
|
13061
|
-
|
|
13069
|
+
0 0 0 2px #fff,
|
|
13070
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d);
|
|
13062
13071
|
}
|
|
13063
13072
|
.ina-text-field__wrapper--status-warning {
|
|
13064
13073
|
border-color: var(--ina-warning-500, #eebb04);
|
|
@@ -13066,8 +13075,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13066
13075
|
.ina-text-field__wrapper.ina-text-field__wrapper--status-warning:focus-within {
|
|
13067
13076
|
border-color: var(--ina-warning-600, #855f00);
|
|
13068
13077
|
box-shadow:
|
|
13069
|
-
|
|
13070
|
-
|
|
13078
|
+
0 0 0 2px #fff,
|
|
13079
|
+
0 0 0 3px var(--ina-warning-500, #eebb04);
|
|
13071
13080
|
}
|
|
13072
13081
|
.ina-text-field__wrapper--status-success {
|
|
13073
13082
|
border-color: var(--ina-positive-600, #288034);
|
|
@@ -13075,8 +13084,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13075
13084
|
.ina-text-field__wrapper.ina-text-field__wrapper--status-success:focus-within {
|
|
13076
13085
|
border-color: var(--ina-positive-600, #288034);
|
|
13077
13086
|
box-shadow:
|
|
13078
|
-
|
|
13079
|
-
|
|
13087
|
+
0 0 0 2px #fff,
|
|
13088
|
+
0 0 0 3px var(--ina-positive-500, #3cc14e);
|
|
13080
13089
|
}
|
|
13081
13090
|
/* Disabled state */
|
|
13082
13091
|
.ina-text-field__wrapper--disabled {
|
|
@@ -13498,6 +13507,14 @@ dialog.bottom-sheet-dropdown {
|
|
|
13498
13507
|
border: none;
|
|
13499
13508
|
padding: 0;
|
|
13500
13509
|
cursor: pointer;
|
|
13510
|
+
position: absolute;
|
|
13511
|
+
right: var(--ina-spacing-3, 0.75rem);
|
|
13512
|
+
top: 50%;
|
|
13513
|
+
transform: translateY(-50%);
|
|
13514
|
+
z-index: 2;
|
|
13515
|
+
display: flex;
|
|
13516
|
+
align-items: center;
|
|
13517
|
+
justify-content: center;
|
|
13501
13518
|
}
|
|
13502
13519
|
.ina-time-picker__clear-button:hover {
|
|
13503
13520
|
color: var(--ina-content-secondary, #525252);
|
|
@@ -13509,8 +13526,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13509
13526
|
.ina-time-picker--status-error.ina-time-picker--open .ina-time-picker__wrapper {
|
|
13510
13527
|
border-color: var(--ina-negative-600, #d50b0b);
|
|
13511
13528
|
box-shadow:
|
|
13512
|
-
|
|
13513
|
-
|
|
13529
|
+
0 0 0 2px #fff,
|
|
13530
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d);
|
|
13514
13531
|
}
|
|
13515
13532
|
.ina-time-picker--status-warning .ina-time-picker__wrapper {
|
|
13516
13533
|
border-color: var(--ina-warning-500, #eebb04);
|
|
@@ -13519,8 +13536,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13519
13536
|
.ina-time-picker__wrapper {
|
|
13520
13537
|
border-color: var(--ina-warning-600, #855f00);
|
|
13521
13538
|
box-shadow:
|
|
13522
|
-
|
|
13523
|
-
|
|
13539
|
+
0 0 0 2px #fff,
|
|
13540
|
+
0 0 0 3px var(--ina-warning-500, #eebb04);
|
|
13524
13541
|
}
|
|
13525
13542
|
.ina-time-picker--status-success .ina-time-picker__wrapper {
|
|
13526
13543
|
border-color: var(--ina-positive-600, #288034);
|
|
@@ -13529,8 +13546,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13529
13546
|
.ina-time-picker__wrapper {
|
|
13530
13547
|
border-color: var(--ina-positive-600, #288034);
|
|
13531
13548
|
box-shadow:
|
|
13532
|
-
|
|
13533
|
-
|
|
13549
|
+
0 0 0 2px #fff,
|
|
13550
|
+
0 0 0 3px var(--ina-positive-500, #3cc14e);
|
|
13534
13551
|
}
|
|
13535
13552
|
/* Disabled */
|
|
13536
13553
|
.ina-time-picker--disabled .ina-time-picker__wrapper {
|
|
@@ -14181,7 +14198,9 @@ dialog.bottom-sheet-dropdown {
|
|
|
14181
14198
|
position: absolute;
|
|
14182
14199
|
z-index: 999999;
|
|
14183
14200
|
pointer-events: none;
|
|
14184
|
-
transition:
|
|
14201
|
+
transition:
|
|
14202
|
+
opacity 0.2s ease,
|
|
14203
|
+
visibility 0.2s ease;
|
|
14185
14204
|
}
|
|
14186
14205
|
/* Show tooltip on hover - support force state dari dev tools */
|
|
14187
14206
|
.ina-tooltip:hover .ina-tooltip__content,
|
|
@@ -14285,7 +14304,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
14285
14304
|
position: relative;
|
|
14286
14305
|
pointer-events: auto;
|
|
14287
14306
|
border-radius: 8px;
|
|
14288
|
-
box-shadow:
|
|
14307
|
+
box-shadow:
|
|
14308
|
+
0 12px 16px -4px rgba(10, 13, 18, 0.08),
|
|
14289
14309
|
0 4px 6px -2px rgba(10, 13, 18, 0.03);
|
|
14290
14310
|
overflow: hidden;
|
|
14291
14311
|
width: 320px;
|