@idds/styles 1.5.41 → 1.5.42
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 +61 -48
- 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 {
|
|
@@ -8842,8 +8842,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8842
8842
|
.ina-phone-input__wrapper.ina-phone-input__wrapper--status-error:focus-within {
|
|
8843
8843
|
border-color: var(--ina-negative-500);
|
|
8844
8844
|
box-shadow:
|
|
8845
|
-
|
|
8846
|
-
|
|
8845
|
+
0 0 0 2px #fff,
|
|
8846
|
+
0 0 0 3px var(--ina-negative-50) !important;
|
|
8847
8847
|
}
|
|
8848
8848
|
.ina-phone-input__wrapper--status-warning {
|
|
8849
8849
|
border-color: var(--ina-warning-500);
|
|
@@ -8851,8 +8851,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8851
8851
|
.ina-phone-input__wrapper.ina-phone-input__wrapper--status-warning:focus-within {
|
|
8852
8852
|
border-color: var(--ina-warning-500);
|
|
8853
8853
|
box-shadow:
|
|
8854
|
-
|
|
8855
|
-
|
|
8854
|
+
0 0 0 2px #fff,
|
|
8855
|
+
0 0 0 3px var(--ina-warning-50) !important;
|
|
8856
8856
|
}
|
|
8857
8857
|
.ina-phone-input__wrapper--status-success {
|
|
8858
8858
|
border-color: var(--ina-positive-600);
|
|
@@ -8860,8 +8860,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
8860
8860
|
.ina-phone-input__wrapper.ina-phone-input__wrapper--status-success:focus-within {
|
|
8861
8861
|
border-color: var(--ina-positive-600);
|
|
8862
8862
|
box-shadow:
|
|
8863
|
-
|
|
8864
|
-
|
|
8863
|
+
0 0 0 2px #fff,
|
|
8864
|
+
0 0 0 3px var(--ina-positive-50) !important;
|
|
8865
8865
|
}
|
|
8866
8866
|
/* Focus styles */
|
|
8867
8867
|
.ina-phone-input__wrapper:focus-within {
|
|
@@ -8901,7 +8901,9 @@ dialog.bottom-sheet-dropdown {
|
|
|
8901
8901
|
color: var(--ina-content-tertiary);
|
|
8902
8902
|
}
|
|
8903
8903
|
/* Country Dropdown */
|
|
8904
|
-
.ina-phone-
|
|
8904
|
+
.ina-phone-input
|
|
8905
|
+
.ina-phone-input__country-selector
|
|
8906
|
+
.ina-phone-input__country-dropdown {
|
|
8905
8907
|
position: absolute;
|
|
8906
8908
|
top: 100%;
|
|
8907
8909
|
left: 0;
|
|
@@ -9778,8 +9780,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
9778
9780
|
.ina-select-dropdown__trigger--status-error:focus-within {
|
|
9779
9781
|
border-color: var(--ina-negative-600, #d50b0b);
|
|
9780
9782
|
box-shadow:
|
|
9781
|
-
|
|
9782
|
-
|
|
9783
|
+
0 0 0 2px #fff,
|
|
9784
|
+
0 0 0 3px var(--ina-negative-50, #fffafa);
|
|
9783
9785
|
}
|
|
9784
9786
|
.ina-select-dropdown__trigger--status-warning {
|
|
9785
9787
|
border-color: var(--ina-warning-500, #eebb04);
|
|
@@ -9787,8 +9789,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
9787
9789
|
.ina-select-dropdown__trigger--status-warning:focus-within {
|
|
9788
9790
|
border-color: var(--ina-warning-600, #855f00);
|
|
9789
9791
|
box-shadow:
|
|
9790
|
-
|
|
9791
|
-
|
|
9792
|
+
0 0 0 2px #fff,
|
|
9793
|
+
0 0 0 3px var(--ina-warning-50, #fffefa);
|
|
9792
9794
|
}
|
|
9793
9795
|
.ina-select-dropdown__trigger--status-success {
|
|
9794
9796
|
border-color: var(--ina-positive-500, #3cc14e);
|
|
@@ -9796,8 +9798,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
9796
9798
|
.ina-select-dropdown__trigger--status-success:focus-within {
|
|
9797
9799
|
border-color: var(--ina-positive-600, #288034);
|
|
9798
9800
|
box-shadow:
|
|
9799
|
-
|
|
9800
|
-
|
|
9801
|
+
0 0 0 2px #fff,
|
|
9802
|
+
0 0 0 3px var(--ina-positive-50, #fafffa);
|
|
9801
9803
|
}
|
|
9802
9804
|
.ina-select-dropdown__trigger--disabled {
|
|
9803
9805
|
background-color: transparent;
|
|
@@ -9849,7 +9851,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
9849
9851
|
left: 0;
|
|
9850
9852
|
width: 100%; /* Match trigger width by default */
|
|
9851
9853
|
min-width: 100%;
|
|
9852
|
-
margin-top: var(--ina-spacing-
|
|
9854
|
+
margin-top: var(--ina-spacing-2, 0.5rem);
|
|
9853
9855
|
background-color: var(
|
|
9854
9856
|
--ina-background-primary,
|
|
9855
9857
|
#ffffff
|
|
@@ -12822,8 +12824,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
12822
12824
|
.ina-text-area__wrapper.ina-text-area__wrapper--status-error:focus-within {
|
|
12823
12825
|
border-color: var(--ina-negative-600);
|
|
12824
12826
|
box-shadow:
|
|
12825
|
-
|
|
12826
|
-
|
|
12827
|
+
0 0 0 2px #fff,
|
|
12828
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d);
|
|
12827
12829
|
}
|
|
12828
12830
|
.ina-text-area__wrapper--status-warning {
|
|
12829
12831
|
border-color: var(--ina-warning-500);
|
|
@@ -12831,8 +12833,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
12831
12833
|
.ina-text-area__wrapper.ina-text-area__wrapper--status-warning:focus-within {
|
|
12832
12834
|
border-color: var(--ina-warning-600);
|
|
12833
12835
|
box-shadow:
|
|
12834
|
-
|
|
12835
|
-
|
|
12836
|
+
0 0 0 2px #fff,
|
|
12837
|
+
0 0 0 3px var(--ina-warning-500, #eebb04);
|
|
12836
12838
|
}
|
|
12837
12839
|
.ina-text-area__wrapper--status-success {
|
|
12838
12840
|
border-color: var(--ina-positive-600);
|
|
@@ -12840,8 +12842,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
12840
12842
|
.ina-text-area__wrapper.ina-text-area__wrapper--status-success:focus-within {
|
|
12841
12843
|
border-color: var(--ina-positive-600);
|
|
12842
12844
|
box-shadow:
|
|
12843
|
-
|
|
12844
|
-
|
|
12845
|
+
0 0 0 2px #fff,
|
|
12846
|
+
0 0 0 3px var(--ina-positive-500, #3cc14e);
|
|
12845
12847
|
}
|
|
12846
12848
|
/* Disabled state */
|
|
12847
12849
|
.ina-text-area__wrapper--disabled {
|
|
@@ -13057,8 +13059,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13057
13059
|
.ina-text-field__wrapper.ina-text-field__wrapper--status-error:focus-within {
|
|
13058
13060
|
border-color: var(--ina-negative-600, #d50b0b);
|
|
13059
13061
|
box-shadow:
|
|
13060
|
-
|
|
13061
|
-
|
|
13062
|
+
0 0 0 2px #fff,
|
|
13063
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d);
|
|
13062
13064
|
}
|
|
13063
13065
|
.ina-text-field__wrapper--status-warning {
|
|
13064
13066
|
border-color: var(--ina-warning-500, #eebb04);
|
|
@@ -13066,8 +13068,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13066
13068
|
.ina-text-field__wrapper.ina-text-field__wrapper--status-warning:focus-within {
|
|
13067
13069
|
border-color: var(--ina-warning-600, #855f00);
|
|
13068
13070
|
box-shadow:
|
|
13069
|
-
|
|
13070
|
-
|
|
13071
|
+
0 0 0 2px #fff,
|
|
13072
|
+
0 0 0 3px var(--ina-warning-500, #eebb04);
|
|
13071
13073
|
}
|
|
13072
13074
|
.ina-text-field__wrapper--status-success {
|
|
13073
13075
|
border-color: var(--ina-positive-600, #288034);
|
|
@@ -13075,8 +13077,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13075
13077
|
.ina-text-field__wrapper.ina-text-field__wrapper--status-success:focus-within {
|
|
13076
13078
|
border-color: var(--ina-positive-600, #288034);
|
|
13077
13079
|
box-shadow:
|
|
13078
|
-
|
|
13079
|
-
|
|
13080
|
+
0 0 0 2px #fff,
|
|
13081
|
+
0 0 0 3px var(--ina-positive-500, #3cc14e);
|
|
13080
13082
|
}
|
|
13081
13083
|
/* Disabled state */
|
|
13082
13084
|
.ina-text-field__wrapper--disabled {
|
|
@@ -13498,6 +13500,14 @@ dialog.bottom-sheet-dropdown {
|
|
|
13498
13500
|
border: none;
|
|
13499
13501
|
padding: 0;
|
|
13500
13502
|
cursor: pointer;
|
|
13503
|
+
position: absolute;
|
|
13504
|
+
right: var(--ina-spacing-3, 0.75rem);
|
|
13505
|
+
top: 50%;
|
|
13506
|
+
transform: translateY(-50%);
|
|
13507
|
+
z-index: 2;
|
|
13508
|
+
display: flex;
|
|
13509
|
+
align-items: center;
|
|
13510
|
+
justify-content: center;
|
|
13501
13511
|
}
|
|
13502
13512
|
.ina-time-picker__clear-button:hover {
|
|
13503
13513
|
color: var(--ina-content-secondary, #525252);
|
|
@@ -13509,8 +13519,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13509
13519
|
.ina-time-picker--status-error.ina-time-picker--open .ina-time-picker__wrapper {
|
|
13510
13520
|
border-color: var(--ina-negative-600, #d50b0b);
|
|
13511
13521
|
box-shadow:
|
|
13512
|
-
|
|
13513
|
-
|
|
13522
|
+
0 0 0 2px #fff,
|
|
13523
|
+
0 0 0 3px var(--ina-negative-500, #f02d2d);
|
|
13514
13524
|
}
|
|
13515
13525
|
.ina-time-picker--status-warning .ina-time-picker__wrapper {
|
|
13516
13526
|
border-color: var(--ina-warning-500, #eebb04);
|
|
@@ -13519,8 +13529,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13519
13529
|
.ina-time-picker__wrapper {
|
|
13520
13530
|
border-color: var(--ina-warning-600, #855f00);
|
|
13521
13531
|
box-shadow:
|
|
13522
|
-
|
|
13523
|
-
|
|
13532
|
+
0 0 0 2px #fff,
|
|
13533
|
+
0 0 0 3px var(--ina-warning-500, #eebb04);
|
|
13524
13534
|
}
|
|
13525
13535
|
.ina-time-picker--status-success .ina-time-picker__wrapper {
|
|
13526
13536
|
border-color: var(--ina-positive-600, #288034);
|
|
@@ -13529,8 +13539,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
13529
13539
|
.ina-time-picker__wrapper {
|
|
13530
13540
|
border-color: var(--ina-positive-600, #288034);
|
|
13531
13541
|
box-shadow:
|
|
13532
|
-
|
|
13533
|
-
|
|
13542
|
+
0 0 0 2px #fff,
|
|
13543
|
+
0 0 0 3px var(--ina-positive-500, #3cc14e);
|
|
13534
13544
|
}
|
|
13535
13545
|
/* Disabled */
|
|
13536
13546
|
.ina-time-picker--disabled .ina-time-picker__wrapper {
|
|
@@ -14181,7 +14191,9 @@ dialog.bottom-sheet-dropdown {
|
|
|
14181
14191
|
position: absolute;
|
|
14182
14192
|
z-index: 999999;
|
|
14183
14193
|
pointer-events: none;
|
|
14184
|
-
transition:
|
|
14194
|
+
transition:
|
|
14195
|
+
opacity 0.2s ease,
|
|
14196
|
+
visibility 0.2s ease;
|
|
14185
14197
|
}
|
|
14186
14198
|
/* Show tooltip on hover - support force state dari dev tools */
|
|
14187
14199
|
.ina-tooltip:hover .ina-tooltip__content,
|
|
@@ -14285,7 +14297,8 @@ dialog.bottom-sheet-dropdown {
|
|
|
14285
14297
|
position: relative;
|
|
14286
14298
|
pointer-events: auto;
|
|
14287
14299
|
border-radius: 8px;
|
|
14288
|
-
box-shadow:
|
|
14300
|
+
box-shadow:
|
|
14301
|
+
0 12px 16px -4px rgba(10, 13, 18, 0.08),
|
|
14289
14302
|
0 4px 6px -2px rgba(10, 13, 18, 0.03);
|
|
14290
14303
|
overflow: hidden;
|
|
14291
14304
|
width: 320px;
|