@react-native-ohos/slider 5.1.2-rc.1 → 5.1.2-rc.2
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 +187 -183
- package/COMMITTERS.md +5 -5
- package/LICENSE +8 -8
- package/OAT.xml +72 -72
- package/README.OpenSource +10 -10
- package/README.md +12 -12
- package/babel.config.json +3 -3
- package/dist/Slider.js +1 -1
- package/dist/components/StepNumber.js +1 -1
- package/dist/components/StepsIndicator.js +1 -1
- package/dist/components/TrackMark.js +1 -1
- package/dist/utils/styles.js +1 -1
- package/example/.eslintrc +18 -18
- package/example/.node-version +6 -6
- package/example/.prettierrc.js +7 -7
- package/example/.watchmanconfig +5 -5
- package/example/app.json +3 -3
- package/example/babel.config.js +9 -9
- package/example/contexts.ts +9 -9
- package/example/harmony/AppScope/app.json5 +10 -10
- package/example/harmony/AppScope/resources/base/element/string.json +8 -8
- package/example/harmony/build-profile.template.json5 +35 -35
- package/example/harmony/codelinter.json +32 -32
- package/example/harmony/entry/build-profile.json5 +21 -21
- package/example/harmony/entry/hvigorfile.ts +8 -8
- package/example/harmony/entry/oh-package.json5 +10 -10
- package/example/harmony/entry/src/main/cpp/CMakeLists.txt +41 -41
- package/example/harmony/entry/src/main/cpp/PackageProvider.cpp +16 -16
- package/example/harmony/entry/src/main/ets/RNPackagesFactory.ets +13 -13
- package/example/harmony/entry/src/main/ets/entryability/EntryAbility.ets +27 -27
- package/example/harmony/entry/src/main/ets/pages/Index.ets +125 -125
- package/example/harmony/entry/src/main/ets/pages/SurfaceDeadlockTest.ets +135 -135
- package/example/harmony/entry/src/main/ets/pages/TouchDisplayer.ets +43 -43
- package/example/harmony/entry/src/main/module.json5 +51 -51
- package/example/harmony/entry/src/main/resources/base/element/color.json +7 -7
- package/example/harmony/entry/src/main/resources/base/element/string.json +15 -15
- package/example/harmony/entry/src/main/resources/base/profile/main_pages.json +5 -5
- package/example/harmony/format.ps1 +17 -17
- package/example/harmony/hvigor/hvigor-config.json5 +20 -20
- package/example/harmony/hvigorfile.ts +8 -8
- package/example/harmony/oh-package.json5 +11 -11
- package/example/index.js +10 -10
- package/example/jest.config.js +11 -11
- package/example/metro.config.js +30 -30
- package/example/package.json +58 -58
- package/example/react-native.config.js +11 -11
- package/example/scripts/create-build-profile.js +45 -45
- package/example/src/index.tsx +22 -22
- package/example/tsconfig.json +19 -19
- package/harmony/slider/oh-package.json5 +10 -10
- package/harmony/slider.har +0 -0
- package/package.json +92 -92
- package/react-native.config.js +11 -11
- package/src/RNCSliderNativeComponent.ts +51 -51
- package/src/Slider.tsx +356 -356
- package/src/components/StepNumber.tsx +23 -23
- package/src/components/StepsIndicator.tsx +89 -89
- package/src/components/TrackMark.tsx +59 -59
- package/src/index.ts +9 -9
- package/src/utils/constants.ts +17 -17
- package/src/utils/styles.ts +61 -61
- package/tsconfig.json +23 -23
- package/typings/index.d.ts +214 -214
- package/.github/Examples/Slider-Android-Example.gif +0 -0
- package/.github/Examples/Slider-Web-Example.gif +0 -0
- package/.github/Examples/Slider-Windows-Example.gif +0 -0
- package/.github/Examples/Slider-iOS-Example.gif +0 -0
- package/.github/ISSUE_TEMPLATE/BUG_REPORT.md +0 -38
- package/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +0 -14
- package/.github/ISSUE_TEMPLATE/QUESTION.md +0 -9
- package/.github/PULL_REQUEST_TEMPLATE.md +0 -11
- package/.github/workflows/ReactNativeSlider-CI.yml +0 -231
- package/harmony/slider/README.OpenSource +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,184 +1,188 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
## 鸿蒙化Log
|
|
3
|
-
### v5.1.2-rc.
|
|
4
|
-
- pre-release version 5.1.2-rc.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
by [@
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
-
|
|
81
|
-
fixed in [#
|
|
82
|
-
- Android
|
|
83
|
-
fixed in [#
|
|
84
|
-
-
|
|
85
|
-
fixed in [#
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
-
|
|
103
|
-
fixed by [@draggie](https://github.com/draggie) in [#
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
-
|
|
107
|
-
fixed by [@draggie](https://github.com/draggie) in [#
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
-
|
|
138
|
-
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
Also
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
## 鸿蒙化Log
|
|
3
|
+
### v5.1.2-rc.2
|
|
4
|
+
- pre-release version 5.1.2-rc.2
|
|
5
|
+
- fix: top style adaptation platform for StepsIndictor
|
|
6
|
+
|
|
7
|
+
### v5.1.2-rc.1
|
|
8
|
+
- pre-release version 5.1.2-rc.1
|
|
9
|
+
|
|
10
|
+
### v5.0.1
|
|
11
|
+
- release version 5.0.1
|
|
12
|
+
|
|
13
|
+
### v5.0.1-rc.1
|
|
14
|
+
- pre-release version 5.0.1-rc.1
|
|
15
|
+
- feat: add OpenHarmony support for react-native-slider
|
|
16
|
+
|
|
17
|
+
## ReleaseLog
|
|
18
|
+
### v5.0.0: New Architecture only
|
|
19
|
+
|
|
20
|
+
Dears,
|
|
21
|
+
|
|
22
|
+
This release brings Slider with **the new architecture only**.
|
|
23
|
+
|
|
24
|
+
This is a breaking change - please see the updated compatibility table in README and remember that from v5.0.0 the new architecture of React Native will be the only one supported by the Slider.
|
|
25
|
+
|
|
26
|
+
As always - We are happy to support and help with any issues. Please remember to make sure that when creating an issue the latest of Slider, version 5, is used with the new architecture in your app.
|
|
27
|
+
Reach out to our README, our Discord channel, or simply create an issue with all the details you have.
|
|
28
|
+
|
|
29
|
+
Thank you!
|
|
30
|
+
|
|
31
|
+
### v4.5.7: React v19 and latest bugs fixes
|
|
32
|
+
|
|
33
|
+
Hello everyone!
|
|
34
|
+
|
|
35
|
+
This release brings the following updates to the Slider:
|
|
36
|
+
|
|
37
|
+
- fix: do not ignore 0 value prop by [@vonovak](https://github.com/vonovak) in [#692](https://github.com/callstack/react-native-slider/pull/692)
|
|
38
|
+
- A fix for [#683](https://github.com/callstack/react-native-slider/issues/683): fix: android auto increment on new arch by [@Juozas-Petkelis](https://github.com/Juozas-Petkelis) in [#691](https://github.com/callstack/react-native-slider/pull/691)
|
|
39
|
+
- A fix for [#680](https://github.com/callstack/react-native-slider/issues/680): Fix styles order by [@stefanlogue](https://github.com/stefanlogue) in [#702](https://github.com/callstack/react-native-slider/pull/702)
|
|
40
|
+
- A **double** made by [@stephentuso](https://github.com/stephentuso) in React 19 fixes [#705](https://github.com/callstack/react-native-slider/pull/705) for issues [#695](https://github.com/callstack/react-native-slider/issues/695) and [#701](https://github.com/callstack/react-native-slider/issues/701)
|
|
41
|
+
|
|
42
|
+
Let's appreciate their work! 🙏
|
|
43
|
+
|
|
44
|
+
### v4.5.6: Improved custom step marker, fixes, and new channel on Discord
|
|
45
|
+
|
|
46
|
+
Hello community!
|
|
47
|
+
|
|
48
|
+
With this release we are happy to bring an improved custom step marker feature and some bug fixes.
|
|
49
|
+
|
|
50
|
+
The custom step marker is no longer "experimental". It has been provided with additional props and params making it more flexible and customizable. All those properties are described in the README and utilized in the example app, so please see those when using this feature for the first time or in case of any doubts. Still, we are open to further improvements or fixes to issues if you encounter any.
|
|
51
|
+
|
|
52
|
+
There are also changes and fixes done by our engaged community 💪:
|
|
53
|
+
|
|
54
|
+
- fix: NSInvalidArgumentException when passing accessibilityIncrements ([#682](https://github.com/callstack/react-native-slider/pull/682))
|
|
55
|
+
by [@ckknight](https://github.com/ckknight)
|
|
56
|
+
- fix: iOS inverted tap-to-seek in RTL ([#677](https://github.com/callstack/react-native-slider/pull/677))
|
|
57
|
+
by [@AymanHossam](https://github.com/AymanHossam)
|
|
58
|
+
- feat: add component provider field for codegen ([#678](https://github.com/callstack/react-native-slider/pull/678))
|
|
59
|
+
by [@szymonrybczak](https://github.com/szymonrybczak)
|
|
60
|
+
|
|
61
|
+
as well as some under-the-hood changes and tweaks.
|
|
62
|
+
|
|
63
|
+
One more announcement is the new Slider's channel on our Callstack's server on Discord. The link can be found in the README, but let me drop it [here](https://discord.com/channels/426714625279524876/1339942689524678737) as well.
|
|
64
|
+
Please feel invited to use this channel not only to track the activity or progress of the work on the Slider, but also to reach out in case of any doubts in usage, questions, advises, or if you think you found a bug you would like to confirm or confront with us first.
|
|
65
|
+
|
|
66
|
+
See you next time! :)
|
|
67
|
+
|
|
68
|
+
### v4.5.5: Unblock the build for v0.76 of React Native
|
|
69
|
+
|
|
70
|
+
Hello everyone!
|
|
71
|
+
This release addresses the "Multiple File not found error in React Native 0.76.0 ([#662](https://github.com/callstack/react-native-slider/issues/662))" issue related to how React Native handles the dynamic libraries starting from v0.76 (more [here](https://github.com/react-native-community/discussions-and-proposals/discussions/816)).
|
|
72
|
+
Thanks so much to [@vonovak](https://github.com/vonovak) who addressed this, before v0.76 was released, in [#660](https://github.com/callstack/react-native-slider/pull/660) 👍
|
|
73
|
+
|
|
74
|
+
### v4.5.4: Bugfixes
|
|
75
|
+
|
|
76
|
+
Dears,
|
|
77
|
+
|
|
78
|
+
With the help of community devs we were able to fix the following issues:
|
|
79
|
+
|
|
80
|
+
- 'react/renderer/components/rncore/EventEmitters.h' file not found ([#631](https://github.com/callstack/react-native-slider/issues/631))
|
|
81
|
+
fixed in [#639](https://github.com/callstack/react-native-slider/pull/639)
|
|
82
|
+
- Android: StackOverflow when lowerLimit is greater than upperLimit (and, on some devices, when the slider first loads) ([#571](https://github.com/callstack/react-native-slider/issues/571))
|
|
83
|
+
fixed in [#638](https://github.com/callstack/react-native-slider/pull/638)
|
|
84
|
+
- issue with default min/max values with default step for custom StepMarker ([#606](https://github.com/callstack/react-native-slider/issues/606))
|
|
85
|
+
fixed in [#636](https://github.com/callstack/react-native-slider/pull/636)
|
|
86
|
+
- Android issue: too many steps ([#634](https://github.com/callstack/react-native-slider/issues/634))
|
|
87
|
+
fixed in [#649](https://github.com/callstack/react-native-slider/pull/649)
|
|
88
|
+
- slider has 0 height on Android with new architecture enabled ([#652](https://github.com/callstack/react-native-slider/issues/652))
|
|
89
|
+
fixed in [#657](https://github.com/callstack/react-native-slider/pull/657) by [@chrfalch](https://github.com/chrfalch) and [#654](https://github.com/callstack/react-native-slider/pull/654) by [@draggie](https://github.com/draggie) and [@vonovak](https://github.com/vonovak)
|
|
90
|
+
|
|
91
|
+
Thank you!
|
|
92
|
+
|
|
93
|
+
### v4.5.3: Fixes and QoL updates
|
|
94
|
+
|
|
95
|
+
Hello, community!
|
|
96
|
+
|
|
97
|
+
This release brings a lot of QoL improvements and fixes to the following issues:
|
|
98
|
+
|
|
99
|
+
- Android build failure - C++ errors, buildCMakeDebug ([#594](https://github.com/callstack/react-native-slider/issues/594))
|
|
100
|
+
- Fix stepMarked prop of the StepMarker when the step props is not default 1
|
|
101
|
+
by [@betko](https://github.com/betko) in [#581](https://github.com/callstack/react-native-slider/pull/581)
|
|
102
|
+
- Cannot read properties of undefined (reading 'toFixed') ([#617](https://github.com/callstack/react-native-slider/issues/617))
|
|
103
|
+
fixed by [@draggie](https://github.com/draggie) in [#621](https://github.com/callstack/react-native-slider/pull/621)
|
|
104
|
+
- Unable to resolve module react-native/Libraries/NativeComponent/ViewConfigIgnore ([#596](https://github.com/callstack/react-native-slider/issues/596))
|
|
105
|
+
resolved by [@draggie](https://github.com/draggie) in [#626](https://github.com/callstack/react-native-slider/pull/626)
|
|
106
|
+
- update the targetSdk version ([#580](https://github.com/callstack/react-native-slider/issues/580))
|
|
107
|
+
fixed by [@draggie](https://github.com/draggie) in [#627](https://github.com/callstack/react-native-slider/pull/627)
|
|
108
|
+
- StyleSheet.compose() deprecated ([#614](https://github.com/callstack/react-native-slider/issues/614))
|
|
109
|
+
fixed by [@draggie](https://github.com/draggie) in [#625](https://github.com/callstack/react-native-slider/pull/625)
|
|
110
|
+
- onValueChange triggers an extra time after onSlidingCompleted on Android ([#569](https://github.com/callstack/react-native-slider/issues/569))
|
|
111
|
+
fixed by [@draggie](https://github.com/draggie) in [#628](https://github.com/callstack/react-native-slider/pull/628)
|
|
112
|
+
|
|
113
|
+
as well as some "under the hood" changes, as usual.
|
|
114
|
+
|
|
115
|
+
#### Also,
|
|
116
|
+
|
|
117
|
+
this release is the first with [@draggie](https://github.com/draggie), who will support Slider with maintenance.
|
|
118
|
+
And, as you can see on the list above, his work has already been huge and significant!
|
|
119
|
+
So, **welcome** and **thank you**, [@draggie](https://github.com/draggie)!
|
|
120
|
+
|
|
121
|
+
### v4.5.2: New arch measurements hotfix
|
|
122
|
+
|
|
123
|
+
This release brings the hotfix for the last new arch measurement:
|
|
124
|
+
|
|
125
|
+
- Fix missing header guard by [@alanjhughes](https://github.com/alanjhughes) in [#592](https://github.com/callstack/react-native-slider/pull/592)
|
|
126
|
+
|
|
127
|
+
### v4.5.1: New architecture adjustments, fixes and QOL updates
|
|
128
|
+
|
|
129
|
+
Hello community!
|
|
130
|
+
|
|
131
|
+
As the new architecture is getting closer, libraries are prepared to meet all it's requirements and users/devs expectations that the library runs just fine when using new architecture.
|
|
132
|
+
This release brings such improvements and under-the-hood adjustments to the Slider, made in
|
|
133
|
+
[PR 589: fix: new arch measurements on Android](https://github.com/callstack/react-native-slider/pull/589) by [@okwasniewski](https://github.com/okwasniewski).
|
|
134
|
+
|
|
135
|
+
Also, huge THANK YOU 🙏 to all contributors for:
|
|
136
|
+
|
|
137
|
+
- Web-Specific Fixes for onValueChange and Deprecated React Methods by [@landabaso](https://github.com/landabaso) in [#563](https://github.com/callstack/react-native-slider/pull/563)
|
|
138
|
+
- feat: add slider limits to web by [@JacobDel](https://github.com/JacobDel) in [#565](https://github.com/callstack/react-native-slider/pull/565)
|
|
139
|
+
- Replace metro-react-native-babel-preset with @react-native/babel-preset by [@dmytrorykun](https://github.com/dmytrorykun) in [#573](https://github.com/callstack/react-native-slider/pull/573)
|
|
140
|
+
- Fix Thumb Positioning on Web ([#567](https://github.com/callstack/react-native-slider/issues/567)) by [@landabaso](https://github.com/landabaso) in [#568](https://github.com/callstack/react-native-slider/pull/568)
|
|
141
|
+
- fix keyboard progress increment getting stuck at 6 by [@vafada](https://github.com/vafada) in [#572](https://github.com/callstack/react-native-slider/pull/572)
|
|
142
|
+
- chore: update actions to latest versions by [@retyui](https://github.com/retyui) in [#579](https://github.com/callstack/react-native-slider/pull/579)
|
|
143
|
+
|
|
144
|
+
I have to mention, that many of these PRs and contributions were made without any specific issues, or reports or request, so I appreciate all the help!
|
|
145
|
+
|
|
146
|
+
**For full changelog** see: [`v4.5.0...v4.5.1`](https://github.com/callstack/react-native-slider/compare/v4.5.0...v4.5.1)
|
|
147
|
+
|
|
148
|
+
**Also:**
|
|
149
|
+
As you may find out, there are two new props already present in the README that are marked as ☣️ experimental ☣️.
|
|
150
|
+
They are related to new feature(s): custom step marker, which is still under some constructions, but it's code is already on the main branch.
|
|
151
|
+
Feel free to use it, play with it, experiment with it, but please remember it's still to be polished.
|
|
152
|
+
Also, before officially released, this feature could definitely use some issue reports or feedback.
|
|
153
|
+
|
|
154
|
+
Have a nice day!
|
|
155
|
+
|
|
156
|
+
### v4.5.0: Support for React Native Vision OS
|
|
157
|
+
|
|
158
|
+
This release introduces the Slider now supporting the React Native Vision OS,
|
|
159
|
+
Huge thanks to [@okwasniewski](https://github.com/okwasniewski) delivering it in [#560](https://github.com/callstack/react-native-slider/pull/560).
|
|
160
|
+
|
|
161
|
+
Also, please checkout the [React Native Vision OS](https://github.com/callstack/react-native-visionos) and all the work that is being done there!
|
|
162
|
+
|
|
163
|
+
### v4.4.4: iOS and Android dependencies and configuration
|
|
164
|
+
|
|
165
|
+
This release introduces:
|
|
166
|
+
|
|
167
|
+
- Use install_module_dependencies in podspec file ([#556](https://github.com/callstack/react-native-slider/pull/556))
|
|
168
|
+
by [@cipolleschi](https://github.com/cipolleschi)
|
|
169
|
+
- fix(android): android gradle plugin 8 compatibility ([#553](https://github.com/callstack/react-native-slider/pull/553))
|
|
170
|
+
by [@mikehardy](https://github.com/mikehardy)
|
|
171
|
+
|
|
172
|
+
As always - thank you very much to contributors! 🙏
|
|
173
|
+
|
|
174
|
+
### v4.4.3: Bugfixes and improvements
|
|
175
|
+
|
|
176
|
+
This release brings couple of fixes:
|
|
177
|
+
|
|
178
|
+
- Upper/lower limits not working ([#469](https://github.com/callstack/react-native-slider/issues/469))
|
|
179
|
+
PR [#525](https://github.com/callstack/react-native-slider/pull/525)
|
|
180
|
+
- Invariant Violation: [4113,"RNCSlider",{"value":"<>"}] is not usable as a native method argument ([#345](https://github.com/callstack/react-native-slider/issues/345))
|
|
181
|
+
PR [#513](https://github.com/callstack/react-native-slider/pull/513)
|
|
182
|
+
|
|
183
|
+
as well as some "under-the-hood" improvements:
|
|
184
|
+
|
|
185
|
+
- Update the compatibility table in README ([#516](https://github.com/callstack/react-native-slider/pull/516))
|
|
186
|
+
- bump windows min ([#508](https://github.com/callstack/react-native-slider/pull/508))
|
|
187
|
+
By [@TatianaKapos](https://github.com/TatianaKapos)
|
|
184
188
|
- Comment thumbThintColor about conflicts with thumbImage regarding fixing [#346](https://github.com/callstack/react-native-slider/issues/346)
|
package/COMMITTERS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## Committers列表
|
|
2
|
-
|
|
3
|
-
### 以下是此项目的committer人员
|
|
4
|
-
不区分先后顺序
|
|
5
|
-
|
|
1
|
+
## Committers列表
|
|
2
|
+
|
|
3
|
+
### 以下是此项目的committer人员
|
|
4
|
+
不区分先后顺序
|
|
5
|
+
|
|
6
6
|
- [xiafeng_xf_admin](https://gitee.com/xiafeng_xf_admin)
|
package/LICENSE
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2019 react-native-community
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
-
|
|
7
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
-
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 react-native-community
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
9
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/OAT.xml
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<configuration>
|
|
3
|
-
<oatconfig>
|
|
4
|
-
<licensefile>LICENSE</licensefile>
|
|
5
|
-
<policylist>
|
|
6
|
-
<policy name="projectPolicy" desc="">
|
|
7
|
-
<policyitem type="license" name="MIT" path=".*" desc="license under the MIT"/>
|
|
8
|
-
</policy>
|
|
9
|
-
<policy name="projectPolicy" desc="">
|
|
10
|
-
<policyitem type="compatibility" name="GPL-2.0+" path=".*" desc="Process that runs independently, invoked by the X process."/>
|
|
11
|
-
<policyitem type="compatibility" name="Apache-2.0" path=".*" desc="不影响兼容性"/>
|
|
12
|
-
<policyitem type="compatibility" name="BSDStyleLicense" path=".*" desc="不影响兼容性" />
|
|
13
|
-
<policyitem type="compatibility" name="MIT" path=".*" desc="不影响兼容性" />
|
|
14
|
-
<policyitem type="compatibility" name="GPLStyleLicense" path=".*" desc="不影响兼容性" />
|
|
15
|
-
</policy>
|
|
16
|
-
</policylist>
|
|
17
|
-
<filefilterlist>
|
|
18
|
-
<filefilter name="copyrightPolicyFilter" desc="Filters for compatibility,license header policies">
|
|
19
|
-
<filteritem type="filepath" name="harmony/push_notification/hvigorfile.ts" desc="hvigor构建脚本,DevEco Studio自动生成,不手动修改"/>
|
|
20
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/turbo_modules/.*" desc="codegen自动生成,不手动修改"/>
|
|
21
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
22
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
23
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/components/.*" desc="codegen自动生成,不手动修改"/>
|
|
24
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/turboMoudules/.*" desc="codegen自动生成,不手动修改"/>
|
|
25
|
-
<filteritem type="filepath" name="harmony/push_notification/src/test/.*" desc="DevEco Studio自动生成,不手动修改"/>
|
|
26
|
-
<filteritem type="filename" name="*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
27
|
-
<filteritem type="filename" name="*/*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
28
|
-
<filteritem type="filename" name="LICENSE" desc="版权文件,不添加版权头"/>
|
|
29
|
-
<filteritem type="filename" name="NOTICE" desc="NOTICE文件,不添加版权头"/>
|
|
30
|
-
<filteritem type="filepath" name="hvigorw" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
31
|
-
<filteritem type="filepath" name="hvigorw.bat" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
32
|
-
<filteritem type="filepath" name="src/*.ts" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
33
|
-
<filteritem type="filepath" name="index.*" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
34
|
-
<filteritem type="filepath" name="hvigor/hvigor-wrapper.js" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
35
|
-
<filteritem type="filepath" name="hvigor/hvigor-config.json5" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
36
|
-
<filteritem type="filename" name=".eslintrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
37
|
-
<filteritem type="filename" name=".prettierrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
38
|
-
<filteritem type="filename" name="babel.config.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
39
|
-
</filefilter>
|
|
40
|
-
<filefilter name="defaultPolicyFilter" desc="Filters for compatibility,license header policies">
|
|
41
|
-
<filteritem type="filepath" name="harmony/push_notification/hvigorfile.ts" desc="hvigor构建脚本,DevEco Studio自动生成,不手动修改"/>
|
|
42
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/turbo_modules/.*" desc="codegen自动生成,不手动修改"/>
|
|
43
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
44
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
45
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/components/.*" desc="codegen自动生成,不手动修改"/>
|
|
46
|
-
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/turboMoudules/.*" desc="codegen自动生成,不手动修改"/>
|
|
47
|
-
<filteritem type="filepath" name="harmony/push_notification/src/test/.*" desc="DevEco Studio自动生成,不手动修改"/>
|
|
48
|
-
<filteritem type="filename" name="*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
49
|
-
<filteritem type="filename" name="*/*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
50
|
-
<filteritem type="filename" name="LICENSE" desc="版权文件,不添加许可证头"/>
|
|
51
|
-
<filteritem type="filename" name="NOTICE" desc="NOTICE文件,不添加许可证头"/>
|
|
52
|
-
<filteritem type="filepath" name="hvigorw" desc="工程模板,不添加许可证头"/>
|
|
53
|
-
<filteritem type="filepath" name="hvigorw.bat" desc="工程模板,不添加许可证头"/>
|
|
54
|
-
<filteritem type="filepath" name="src/*.ts" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
55
|
-
<filteritem type="filepath" name="index.*" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
56
|
-
<filteritem type="filepath" name="hvigor/hvigor-wrapper.js" desc="工程模板,不添加许可证头"/>
|
|
57
|
-
<filteritem type="filepath" name="hvigor/hvigor-config.json5" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
58
|
-
<filteritem type="filename" name=".eslintrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
59
|
-
<filteritem type="filename" name=".prettierrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
60
|
-
<filteritem type="filename" name="babel.config.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
61
|
-
</filefilter>
|
|
62
|
-
|
|
63
|
-
<filefilter name="binaryFileTypePolicyFilter" desc="Filters for copyright header policies">
|
|
64
|
-
<filteritem type="filename" name="icon.png" desc="项目工程默认图片文件"/>
|
|
65
|
-
<filteritem type="filepath" name="example/harmony/AppScope/resources/base/media/app_icon.png" desc="项目工程默认图片文件"/>
|
|
66
|
-
<filteritem type="filepath" name="harmony/push_notification.har" desc="项目打包文件"/>
|
|
67
|
-
<filteritem type="filename" name="icon.png" desc="项目工程默认图片文件"/>
|
|
68
|
-
<filteritem type="filepath" name="example/harmony/entry/src/main/ets/assets/fonts/Pacifico-Regular.ttf" desc="用于示例工程展现出独特的艺术风格"/>
|
|
69
|
-
<filteritem type="filepath" name="example/harmony/entry/src/main/ets/assets/fonts/StintUltraCondensed-Regular.ttf" desc="用于示例工程展现出独特的艺术风格"/>
|
|
70
|
-
</filefilter>
|
|
71
|
-
</filefilterlist>
|
|
72
|
-
</oatconfig>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<configuration>
|
|
3
|
+
<oatconfig>
|
|
4
|
+
<licensefile>LICENSE</licensefile>
|
|
5
|
+
<policylist>
|
|
6
|
+
<policy name="projectPolicy" desc="">
|
|
7
|
+
<policyitem type="license" name="MIT" path=".*" desc="license under the MIT"/>
|
|
8
|
+
</policy>
|
|
9
|
+
<policy name="projectPolicy" desc="">
|
|
10
|
+
<policyitem type="compatibility" name="GPL-2.0+" path=".*" desc="Process that runs independently, invoked by the X process."/>
|
|
11
|
+
<policyitem type="compatibility" name="Apache-2.0" path=".*" desc="不影响兼容性"/>
|
|
12
|
+
<policyitem type="compatibility" name="BSDStyleLicense" path=".*" desc="不影响兼容性" />
|
|
13
|
+
<policyitem type="compatibility" name="MIT" path=".*" desc="不影响兼容性" />
|
|
14
|
+
<policyitem type="compatibility" name="GPLStyleLicense" path=".*" desc="不影响兼容性" />
|
|
15
|
+
</policy>
|
|
16
|
+
</policylist>
|
|
17
|
+
<filefilterlist>
|
|
18
|
+
<filefilter name="copyrightPolicyFilter" desc="Filters for compatibility,license header policies">
|
|
19
|
+
<filteritem type="filepath" name="harmony/push_notification/hvigorfile.ts" desc="hvigor构建脚本,DevEco Studio自动生成,不手动修改"/>
|
|
20
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/turbo_modules/.*" desc="codegen自动生成,不手动修改"/>
|
|
21
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
22
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
23
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/components/.*" desc="codegen自动生成,不手动修改"/>
|
|
24
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/turboMoudules/.*" desc="codegen自动生成,不手动修改"/>
|
|
25
|
+
<filteritem type="filepath" name="harmony/push_notification/src/test/.*" desc="DevEco Studio自动生成,不手动修改"/>
|
|
26
|
+
<filteritem type="filename" name="*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
27
|
+
<filteritem type="filename" name="*/*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
28
|
+
<filteritem type="filename" name="LICENSE" desc="版权文件,不添加版权头"/>
|
|
29
|
+
<filteritem type="filename" name="NOTICE" desc="NOTICE文件,不添加版权头"/>
|
|
30
|
+
<filteritem type="filepath" name="hvigorw" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
31
|
+
<filteritem type="filepath" name="hvigorw.bat" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
32
|
+
<filteritem type="filepath" name="src/*.ts" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
33
|
+
<filteritem type="filepath" name="index.*" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
34
|
+
<filteritem type="filepath" name="hvigor/hvigor-wrapper.js" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
35
|
+
<filteritem type="filepath" name="hvigor/hvigor-config.json5" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
36
|
+
<filteritem type="filename" name=".eslintrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
37
|
+
<filteritem type="filename" name=".prettierrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
38
|
+
<filteritem type="filename" name="babel.config.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
39
|
+
</filefilter>
|
|
40
|
+
<filefilter name="defaultPolicyFilter" desc="Filters for compatibility,license header policies">
|
|
41
|
+
<filteritem type="filepath" name="harmony/push_notification/hvigorfile.ts" desc="hvigor构建脚本,DevEco Studio自动生成,不手动修改"/>
|
|
42
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/turbo_modules/.*" desc="codegen自动生成,不手动修改"/>
|
|
43
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/cpp/generated/RNOH/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
44
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/.*" desc="codegen自动生成,不手动修改"/>
|
|
45
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/components/.*" desc="codegen自动生成,不手动修改"/>
|
|
46
|
+
<filteritem type="filepath" name="harmony/push_notification/src/main/ets/generated/turboMoudules/.*" desc="codegen自动生成,不手动修改"/>
|
|
47
|
+
<filteritem type="filepath" name="harmony/push_notification/src/test/.*" desc="DevEco Studio自动生成,不手动修改"/>
|
|
48
|
+
<filteritem type="filename" name="*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
49
|
+
<filteritem type="filename" name="*/*.json5" desc="hvigor配置文件,DevEco Studio自动生成,不手动修改"/>
|
|
50
|
+
<filteritem type="filename" name="LICENSE" desc="版权文件,不添加许可证头"/>
|
|
51
|
+
<filteritem type="filename" name="NOTICE" desc="NOTICE文件,不添加许可证头"/>
|
|
52
|
+
<filteritem type="filepath" name="hvigorw" desc="工程模板,不添加许可证头"/>
|
|
53
|
+
<filteritem type="filepath" name="hvigorw.bat" desc="工程模板,不添加许可证头"/>
|
|
54
|
+
<filteritem type="filepath" name="src/*.ts" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
55
|
+
<filteritem type="filepath" name="index.*" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
56
|
+
<filteritem type="filepath" name="hvigor/hvigor-wrapper.js" desc="工程模板,不添加许可证头"/>
|
|
57
|
+
<filteritem type="filepath" name="hvigor/hvigor-config.json5" desc="工程模板,不修改版权头,以防有修改版权风险"/>
|
|
58
|
+
<filteritem type="filename" name=".eslintrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
59
|
+
<filteritem type="filename" name=".prettierrc.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
60
|
+
<filteritem type="filename" name="babel.config.js" desc="第三方开源软件源码,不修改版权头,以防有修改版权风险"/>
|
|
61
|
+
</filefilter>
|
|
62
|
+
|
|
63
|
+
<filefilter name="binaryFileTypePolicyFilter" desc="Filters for copyright header policies">
|
|
64
|
+
<filteritem type="filename" name="icon.png" desc="项目工程默认图片文件"/>
|
|
65
|
+
<filteritem type="filepath" name="example/harmony/AppScope/resources/base/media/app_icon.png" desc="项目工程默认图片文件"/>
|
|
66
|
+
<filteritem type="filepath" name="harmony/push_notification.har" desc="项目打包文件"/>
|
|
67
|
+
<filteritem type="filename" name="icon.png" desc="项目工程默认图片文件"/>
|
|
68
|
+
<filteritem type="filepath" name="example/harmony/entry/src/main/ets/assets/fonts/Pacifico-Regular.ttf" desc="用于示例工程展现出独特的艺术风格"/>
|
|
69
|
+
<filteritem type="filepath" name="example/harmony/entry/src/main/ets/assets/fonts/StintUltraCondensed-Regular.ttf" desc="用于示例工程展现出独特的艺术风格"/>
|
|
70
|
+
</filefilter>
|
|
71
|
+
</filefilterlist>
|
|
72
|
+
</oatconfig>
|
|
73
73
|
</configuration>
|