@nutui/nutui-react 1.3.1-beta.3 → 1.3.2-beta.0
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 +20 -0
- package/dist/esm/ActionSheet.js +10 -9
- package/dist/esm/Address.js +1 -1
- package/dist/esm/Badge.js +3 -3
- package/dist/esm/ConfigProvider.js +6 -0
- package/dist/esm/Elevator.js +38 -52
- package/dist/esm/Menu.js +26 -10
- package/dist/esm/NoticeBar.js +1 -1
- package/dist/esm/Picker.js +125 -49
- package/dist/esm/PullToRefresh/style/index.js +2 -0
- package/dist/esm/PullToRefresh.js +367 -0
- package/dist/esm/Radio.js +2 -0
- package/dist/esm/nutui-react.es.js +1 -0
- package/dist/locales/base.d.ts +6 -0
- package/dist/locales/base.js +1 -1
- package/dist/locales/en-US.js +7 -1
- package/dist/locales/id-ID.js +7 -1
- package/dist/locales/zh-CN.js +7 -1
- package/dist/locales/zh-TW.js +7 -1
- package/dist/nutui.react.es.js +10578 -9765
- package/dist/nutui.react.umd.js +10577 -9763
- package/dist/packages/actionsheet/actionsheet.scss +2 -0
- package/dist/packages/elevator/elevator.scss +1 -0
- package/dist/packages/pulltorefresh/pulltorefresh.scss +18 -0
- package/dist/style.css +1 -1
- package/dist/style.es.js +1 -1
- package/dist/styles/themes/default.scss +1 -0
- package/dist/types/actionsheet/__test__/actionsheet.spec.d.ts +1 -0
- package/dist/types/actionsheet/actionsheet.d.ts +2 -2
- package/dist/types/actionsheet/actionsheet.taro.d.ts +2 -2
- package/dist/types/badge/__test__/badge.spec.d.ts +1 -0
- package/dist/types/checkbox/checkbox.taro.d.ts +1 -1
- package/dist/types/elevator/elevator.d.ts +2 -2
- package/dist/types/elevator/elevator.taro.d.ts +2 -2
- package/dist/types/noticebar/__test__/noticebar.spec.d.ts +1 -0
- package/dist/types/nutui.react.d.ts +3 -1
- package/dist/types/picker/pickerSlot.d.ts +4 -1
- package/dist/types/picker/pickerSlot.taro.d.ts +16 -0
- package/dist/types/popup/popup.taro.d.ts +1 -1
- package/dist/types/pulltorefresh/__test__/pulltorefresh.spec.d.ts +1 -0
- package/dist/types/pulltorefresh/demo.d.ts +3 -0
- package/dist/types/pulltorefresh/index.d.ts +2 -0
- package/dist/types/pulltorefresh/index.taro.d.ts +2 -0
- package/dist/types/pulltorefresh/pulltorefresh.d.ts +18 -0
- package/dist/types/pulltorefresh/pulltorefresh.taro.d.ts +18 -0
- package/dist/types/radio/__test__/radio.spec.d.ts +1 -0
- package/dist/types/radio/radio.taro.d.ts +1 -1
- package/dist/types/radiogroup/index.taro.d.ts +1 -1
- package/dist/types/radiogroup/radiogroup.taro.d.ts +11 -0
- package/dist/types/range/__test__/range.spec.d.ts +1 -0
- package/dist/types/searchbar/__tests__/searchbar.spec.d.ts +1 -0
- package/dist/types/timeselect/timeselect.taro.d.ts +1 -1
- package/package.json +2 -3
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.nut-pulltorefresh {
|
|
2
|
+
&-head {
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
position: relative;
|
|
5
|
+
font-size: 14px;
|
|
6
|
+
|
|
7
|
+
&-content {
|
|
8
|
+
position: absolute;
|
|
9
|
+
bottom: 0;
|
|
10
|
+
left: 0;
|
|
11
|
+
width: 100%;
|
|
12
|
+
color: #000;
|
|
13
|
+
display: flex;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
align-items: center;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|