blixify-ui-web 0.4.247 → 0.4.249
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/lib/components/data/dataTemplate/model.d.ts +1 -0
- package/lib/components/data/dataTemplate/model.d.ts.map +1 -1
- package/lib/components/data/testSchema.d.ts.map +1 -1
- package/lib/components/data/testSchema.js +5 -0
- package/lib/components/data/testSchema.js.map +1 -1
- package/lib/components/data/updateModule.d.ts.map +1 -1
- package/lib/components/data/updateModule.js +16 -11
- package/lib/components/data/updateModule.js.map +1 -1
- package/lib/components/display/flexTable/index.d.ts +3 -1
- package/lib/components/display/flexTable/index.d.ts.map +1 -1
- package/lib/components/display/flexTable/index.js +120 -61
- package/lib/components/display/flexTable/index.js.map +1 -1
- package/lib/components/input/address/index.js +1 -1
- package/lib/components/input/address/index.js.map +1 -1
- package/lib/components/input/textInput/index.js +2 -2
- package/lib/components/input/textInput/index.js.map +1 -1
- package/lib/tail.css +2 -1
- package/package.json +1 -1
package/lib/tail.css
CHANGED
|
@@ -134,7 +134,7 @@ input[type="radio"][class*="appearance-none"]:disabled:checked::after {
|
|
|
134
134
|
|
|
135
135
|
.react-datepicker-small {
|
|
136
136
|
padding: 0.375rem !important;
|
|
137
|
-
font-size:
|
|
137
|
+
font-size: 1rem !important; /* Minimum 16px to prevent iOS Safari auto-zoom */
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
.react-datepicker-borderless {
|
|
@@ -167,6 +167,7 @@ input[type="radio"][class*="appearance-none"]:disabled:checked::after {
|
|
|
167
167
|
top: 0;
|
|
168
168
|
left: 0;
|
|
169
169
|
z-index: 20;
|
|
170
|
+
font-size: 1rem; /* Minimum 16px to prevent iOS Safari auto-zoom */
|
|
170
171
|
}
|
|
171
172
|
|
|
172
173
|
.react-datepicker__tab-loop {
|