datex-ui 1.2.2 → 1.2.3
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.esm.js +7 -6
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -432,7 +432,8 @@ class H {
|
|
|
432
432
|
color: ${t.textColor} !important;
|
|
433
433
|
line-height: 1em !important;
|
|
434
434
|
width: 278px !important;
|
|
435
|
-
z-index: 999999 !important
|
|
435
|
+
z-index: 999999; /* Removed !important to allow JavaScript override */
|
|
436
|
+
margin-top:7px;
|
|
436
437
|
}
|
|
437
438
|
|
|
438
439
|
/* Base arrow styles - creates the dropdown arrow */
|
|
@@ -854,7 +855,7 @@ class H {
|
|
|
854
855
|
min-height: 20px !important;
|
|
855
856
|
min-width: 50px !important;
|
|
856
857
|
position: relative !important;
|
|
857
|
-
z-index: 1000000 !important
|
|
858
|
+
z-index: 1000000; /* Removed !important to allow JavaScript override */
|
|
858
859
|
transform: none !important;
|
|
859
860
|
isolation: auto !important;
|
|
860
861
|
}
|
|
@@ -946,7 +947,7 @@ class H {
|
|
|
946
947
|
box-sizing: border-box !important;
|
|
947
948
|
transform: none !important;
|
|
948
949
|
overflow-x: hidden !important;
|
|
949
|
-
z-index: 999999 !important
|
|
950
|
+
z-index: 999999; /* Removed !important to allow JavaScript override */
|
|
950
951
|
/* Fix for overlay issues */
|
|
951
952
|
isolation: isolate !important;
|
|
952
953
|
contain: layout style !important;
|
|
@@ -1191,7 +1192,7 @@ class H {
|
|
|
1191
1192
|
.datex-picker select,
|
|
1192
1193
|
.datex-picker.mobile-view select {
|
|
1193
1194
|
position: relative !important;
|
|
1194
|
-
z-index: 1000 !important
|
|
1195
|
+
z-index: 1000; /* Removed !important to allow JavaScript override */
|
|
1195
1196
|
background: ${t.backgroundColor} !important;
|
|
1196
1197
|
border: 1px solid ${t.borderColor} !important;
|
|
1197
1198
|
border-radius: 4px !important;
|
|
@@ -2135,7 +2136,7 @@ const P = {
|
|
|
2135
2136
|
],
|
|
2136
2137
|
firstDay: 1
|
|
2137
2138
|
};
|
|
2138
|
-
class
|
|
2139
|
+
class R {
|
|
2139
2140
|
constructor(t, e = {}, a) {
|
|
2140
2141
|
this.element = this.resolveElement(t), this.options = this.mergeWithDefaults(e), this.locale = this.options.locale, this.callback = a || (() => {
|
|
2141
2142
|
}), this.eventService = new T(), this.initializeState(), this.initializeServices(), this.addDropdownArrow(), this.createContainer(), this.setupEventListeners(), this.updateElement(), this.calculateChosenLabel();
|
|
@@ -2884,7 +2885,7 @@ class N {
|
|
|
2884
2885
|
export {
|
|
2885
2886
|
z as BOOTSTRAP_THEME,
|
|
2886
2887
|
M as DEFAULT_THEME,
|
|
2887
|
-
|
|
2888
|
+
R as Datex,
|
|
2888
2889
|
Y as MATERIAL_THEME,
|
|
2889
2890
|
P as SPANISH_LOCALE,
|
|
2890
2891
|
O as SPANISH_LOCALE_WITH_TIME,
|
package/package.json
CHANGED