@nutui/nutui-react 2.7.12 → 2.7.14
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/CHANGELOG.md +11 -3
- package/dist/esm/ActionSheet/style/style.css +1 -1
- package/dist/esm/Address/style/style.css +1 -1
- package/dist/esm/Calendar/style/style.css +1 -1
- package/dist/esm/Cascader/style/style.css +1 -1
- package/dist/esm/DatePicker/style/style.css +1 -1
- package/dist/esm/Dialog/style/style.css +1 -1
- package/dist/esm/ImagePreview/style/style.css +1 -1
- package/dist/esm/NumberKeyboard/style/style.css +1 -1
- package/dist/esm/Picker/style/style.css +1 -1
- package/dist/esm/Popover/style/style.css +1 -1
- package/dist/esm/Popup/style/style.css +1 -1
- package/dist/esm/ShortPassword/style/style.css +1 -1
- package/dist/esm/SideNavBar/style/style.css +1 -1
- package/dist/esm/TabPane.js +1 -1
- package/dist/esm/TimeSelect/style/style.css +1 -1
- package/dist/esm/Tour/style/style.css +1 -1
- package/dist/locales/base.js +1 -1
- package/dist/locales/en-US.js +1 -1
- package/dist/locales/id-ID.js +1 -1
- package/dist/locales/tr-TR.js +1 -1
- package/dist/locales/zh-CN.js +1 -1
- package/dist/locales/zh-TW.js +1 -1
- package/dist/locales/zh-UG.js +1 -1
- package/dist/nutui.react.es.js +2 -2
- package/dist/nutui.react.umd.js +2 -2
- package/dist/packages/dialog/dialog.scss +1 -0
- package/dist/packages/popup/popup.scss +12 -0
- package/dist/style.css +1 -1
- package/dist/styles/variables-jmapp.scss +1 -0
- package/dist/styles/variables.scss +4 -0
- package/dist/types/packages/configprovider/types.d.ts +1 -1
- package/dist/types/packages/nutui.react.scss.taro.d.ts +108 -0
- package/package.json +2 -1
|
@@ -196,6 +196,9 @@
|
|
|
196
196
|
from {
|
|
197
197
|
transform: translate3d(0, -100%, 0);
|
|
198
198
|
}
|
|
199
|
+
to {
|
|
200
|
+
transform: translate3d(0, 0%, 0);
|
|
201
|
+
}
|
|
199
202
|
}
|
|
200
203
|
|
|
201
204
|
@keyframes popup-slide-top-exit {
|
|
@@ -223,6 +226,9 @@
|
|
|
223
226
|
from {
|
|
224
227
|
transform: translate3d(100%, 0, 0);
|
|
225
228
|
}
|
|
229
|
+
to {
|
|
230
|
+
transform: translate3d(0%, 0, 0);
|
|
231
|
+
}
|
|
226
232
|
}
|
|
227
233
|
|
|
228
234
|
@keyframes popup-slide-right-exit {
|
|
@@ -250,6 +256,9 @@
|
|
|
250
256
|
from {
|
|
251
257
|
transform: translate3d(0, 100%, 0);
|
|
252
258
|
}
|
|
259
|
+
to {
|
|
260
|
+
transform: translate3d(0, 0%, 0);
|
|
261
|
+
}
|
|
253
262
|
}
|
|
254
263
|
|
|
255
264
|
@keyframes slide-bottom-exit {
|
|
@@ -277,6 +286,9 @@
|
|
|
277
286
|
from {
|
|
278
287
|
transform: translate3d(-100%, 0, 0);
|
|
279
288
|
}
|
|
289
|
+
to {
|
|
290
|
+
transform: translate3d(0%, 0, 0);
|
|
291
|
+
}
|
|
280
292
|
}
|
|
281
293
|
|
|
282
294
|
@keyframes popup-slide-left-exit {
|