react-native-ui-lib 8.0.1 → 8.1.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.
Files changed (537) hide show
  1. package/jestSetup/jest-setup.js +154 -0
  2. package/lib/components/DynamicFonts/FontDownloader.d.js +1 -0
  3. package/lib/components/DynamicFonts/FontLoader.d.js +1 -0
  4. package/lib/components/DynamicFonts/NoPermissionsAcquirer.d.js +1 -0
  5. package/lib/components/DynamicFonts/PermissionsAcquirer.android.d.js +1 -0
  6. package/lib/components/DynamicFonts/PermissionsAcquirer.ios.d.js +2 -0
  7. package/lib/components/DynamicFonts/PermissionsAcquirer.web.d.js +2 -0
  8. package/lib/components/DynamicFonts/RNFSPackage.d.js +1 -0
  9. package/lib/components/DynamicFonts/index.d.js +3 -0
  10. package/lib/components/HighlighterOverlayView/index.d.js +1 -0
  11. package/lib/components/HighlighterOverlayView/index.web.d.js +1 -0
  12. package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.android.d.js +2 -0
  13. package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.ios.d.js +2 -0
  14. package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardViewBase.d.js +2 -0
  15. package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/index.d.js +1 -0
  16. package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/index.web.d.js +1 -0
  17. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.d.js +1 -0
  18. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/index.d.js +5 -0
  19. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.d.js +1 -0
  20. package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/TextInputKeyboardManager.android.d.js +1 -0
  21. package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/TextInputKeyboardManager.ios.d.js +1 -0
  22. package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/index.d.js +1 -0
  23. package/lib/components/Keyboard/KeyboardAccessoryView/index.d.js +7 -0
  24. package/lib/components/Keyboard/KeyboardAwareInsetsView/index.d.js +1 -0
  25. package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingView.android.d.js +1 -0
  26. package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingView.ios.d.js +10 -0
  27. package/lib/components/Keyboard/KeyboardTrackingView/index.d.js +1 -0
  28. package/lib/components/Keyboard/KeyboardTrackingView/index.web.d.js +1 -0
  29. package/lib/components/Keyboard/index.d.js +4 -0
  30. package/lib/components/SafeArea/SafeAreaInsetsManager.d.js +1 -0
  31. package/lib/components/SafeArea/SafeAreaSpacerView.d.js +1 -0
  32. package/lib/components/SafeArea/SafeAreaSpacerView.web.d.js +1 -0
  33. package/lib/components/SafeArea/index.d.js +1 -0
  34. package/lib/components/index.d.js +6 -0
  35. package/lib/scripts/releaseNative.js +72 -0
  36. package/lib/specs/HighlighterViewNativeComponent.d.js +1 -0
  37. package/lib/specs/HighlighterViewNativeComponent.d.ts +61 -0
  38. package/lib/specs/HighlighterViewNativeComponent.js +8 -0
  39. package/lib/specs/KeyboardTrackingViewNativeComponent.d.js +1 -0
  40. package/lib/specs/KeyboardTrackingViewNativeComponent.d.ts +58 -0
  41. package/lib/specs/KeyboardTrackingViewNativeComponent.js +8 -0
  42. package/package.json +7 -31
  43. package/scripts/build/build.js +35 -0
  44. package/scripts/build/buildPackages/buildComponentsPackages.js +18 -0
  45. package/scripts/build/buildPackages/buildCustomPackages.js +106 -0
  46. package/scripts/build/buildPackages/index.js +6 -0
  47. package/scripts/createCalendarMockData.js +37 -0
  48. package/scripts/docs/buildDocs.js +1 -0
  49. package/scripts/prepush.js +71 -0
  50. package/scripts/release/prReleaseNotes.js +6 -0
  51. package/scripts/release/release.js +99 -0
  52. package/scripts/updateWebAssets.js +88 -0
  53. package/scripts/utils.js +21 -0
  54. package/src/assets/__tests__/Assets.spec.js +110 -0
  55. package/src/commons/__tests__/baseComponent.spec.js +36 -0
  56. package/src/commons/__tests__/constants.spec.js +202 -0
  57. package/src/commons/__tests__/modifiers.spec.js +453 -0
  58. package/src/components/WheelPicker/__tests__/index.spec.js +121 -0
  59. package/src/components/WheelPicker/__tests__/useListMiddleIndex.spec.js +40 -0
  60. package/src/components/WheelPicker/__tests__/usePresenter.spec.js +87 -0
  61. package/src/components/avatar/__tests__/index.spec.js +25 -0
  62. package/src/components/badge/__tests__/index.spec.js +84 -0
  63. package/src/components/button/__tests__/index.driver.spec.js +209 -0
  64. package/src/components/button/__tests__/index.spec.js +287 -0
  65. package/src/components/button/index.js +30 -8
  66. package/src/components/card/__tests__/CardPresenter.spec.js +35 -0
  67. package/src/components/carousel/__tests__/CarouselPresenter.spec.js +52 -0
  68. package/src/components/carousel/__tests__/index.spec.js +89 -0
  69. package/src/components/carousel/index.js +2 -1
  70. package/src/components/checkbox/__tests__/index.spec.js +357 -0
  71. package/src/components/chip/__tests__/index.spec.js +63 -0
  72. package/src/components/colorSwatch/index.js +1 -1
  73. package/src/components/connectionStatusBar/__tests__/index.spec.js +41 -0
  74. package/src/components/dateTimePicker/__tests__/index.spec.js +44 -0
  75. package/src/components/dialog/__tests__/index.new.spec.js +118 -0
  76. package/src/components/featureHighlight/__tests__/index.spec.js +76 -0
  77. package/src/components/floatingButton/__tests__/index.spec.js +229 -0
  78. package/src/components/floatingButton/index.js +66 -35
  79. package/src/components/hint/__tests__/index.spec.js +108 -0
  80. package/src/components/image/__tests__/index.spec.js +56 -0
  81. package/src/components/image/image.api.json +193 -1
  82. package/src/components/maskedInput/__tests__/maskedInput.new.spec.js +19 -0
  83. package/src/components/maskedInput/__tests__/maskedInput.old.spec.js +20 -0
  84. package/src/components/modal/__tests__/index.spec.js +58 -0
  85. package/src/components/numberInput/__tests__/Presenter.spec.js +374 -0
  86. package/src/components/numberInput/__tests__/index.spec.js +38 -0
  87. package/src/components/numberInput/numberInput.api.json +131 -6
  88. package/src/components/overlay/index.js +2 -1
  89. package/src/components/pageControl/pageControl.api.json +175 -1
  90. package/src/components/panView/__tests__/panningUtil.spec.js +693 -0
  91. package/src/components/picker/__tests__/PickerPresenter.spec.js +15 -0
  92. package/src/components/picker/__tests__/index.spec.js +364 -0
  93. package/src/components/picker/helpers/__tests__/usePickerLabel.spec.js +96 -0
  94. package/src/components/radioButton/__tests__/index.spec.js +43 -0
  95. package/src/components/radioGroup/__tests__/index.spec.js +96 -0
  96. package/src/components/sectionsWheelPicker/__tests__/index.spec.js +35 -0
  97. package/src/components/sectionsWheelPicker/__tests__/mockSections.js +28 -0
  98. package/src/components/segmentedControl/__tests__/index.spec.js +25 -0
  99. package/src/components/slider/__tests__/index.spec.js +35 -0
  100. package/src/components/slider/index.js +12 -1
  101. package/src/components/slider/slider.api.json +11 -0
  102. package/src/components/sortableGridList/__tests__/index.spec.js +51 -0
  103. package/src/components/sortableGridList/__tests__/usePresenter.spec.js +231 -0
  104. package/src/components/sortableGridList/sortableGridList.api.json +44 -1
  105. package/src/components/sortableList/SortableList.api.json +51 -3
  106. package/src/components/sortableList/__tests__/index.spec.js +105 -0
  107. package/src/components/stackAggregator/assets/arrow-down.png +0 -0
  108. package/src/components/stackAggregator/assets/arrow-down@2x.png +0 -0
  109. package/src/components/stackAggregator/assets/arrow-down@3x.png +0 -0
  110. package/src/components/switch/__tests__/index.spec.js +96 -0
  111. package/src/components/text/__tests__/index.driver.spec.js +124 -0
  112. package/src/components/text/__tests__/index.spec.js +245 -0
  113. package/src/components/textField/__tests__/Presenter.spec.js +240 -0
  114. package/src/components/textField/__tests__/index.driver.spec.js +639 -0
  115. package/src/components/timeline/__tests__/driver.index.spec.js +133 -0
  116. package/src/helpers/__tests__/AvatarHelper.spec.js +170 -0
  117. package/src/hooks/useDidUpdate/__tests__/useDidUpdate.spec.js +80 -0
  118. package/src/hooks/useOrientation/__tests__/useOrientation.spec.js +70 -0
  119. package/src/hooks/useToggleValue/__tests__/useToggleValue.spec.js +89 -0
  120. package/src/incubator/calendar/__tests__/DateUtils.spec.js +367 -0
  121. package/src/incubator/expandableOverlay/__tests__/index.spec.js +114 -0
  122. package/src/incubator/gradient/__tests__/useAngleTransform.spec.js +126 -0
  123. package/src/incubator/slider/__tests__/SliderPresenter.spec.js +43 -0
  124. package/src/incubator/slider/__tests__/index.spec.js +34 -0
  125. package/src/incubator/slider/slider.api.json +11 -0
  126. package/src/incubator/toast/__tests__/index.spec.js +64 -0
  127. package/src/style/__tests__/colors.spec.js +313 -0
  128. package/src/style/__tests__/scheme.spec.js +119 -0
  129. package/src/style/typographyPresets.js +26 -23
  130. package/src/utils/__tests__/Playground.perf.js +14 -0
  131. package/src/utils/__tests__/imageUtils.spec.js +54 -0
  132. package/src/utils/__tests__/textUtils.spec.js +446 -0
  133. package/.eslintrc.js +0 -56
  134. package/babel.config.js +0 -35
  135. package/index.js +0 -10
  136. package/lib/android/build.gradle +0 -32
  137. package/lib/android/src/main/AndroidManifest.xml +0 -4
  138. package/lib/android/src/main/java/com/wix/reactnativeuilib/UiLibPackageList.java +0 -28
  139. package/lib/android/src/main/java/com/wix/reactnativeuilib/dynamicfont/DynamicFontModule.java +0 -139
  140. package/lib/android/src/main/java/com/wix/reactnativeuilib/dynamicfont/DynamicFontPackage.java +0 -28
  141. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlightFrame.java +0 -33
  142. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlightViewTagParams.java +0 -50
  143. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterView.java +0 -167
  144. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewManager.java +0 -131
  145. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewPackage.java +0 -28
  146. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/UiUtils.java +0 -50
  147. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/AppContextHolder.java +0 -52
  148. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardLayout.java +0 -213
  149. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootView.java +0 -39
  150. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootViewManager.java +0 -29
  151. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootViewShadow.java +0 -29
  152. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/KeyboardInputModule.java +0 -34
  153. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/KeyboardInputPackage.java +0 -49
  154. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactContextHolder.java +0 -16
  155. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactScreenMonitor.java +0 -83
  156. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactSoftKeyboardMonitor.java +0 -163
  157. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/PredicateFunc.java +0 -5
  158. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/RuntimeUtils.java +0 -33
  159. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/ViewUtils.java +0 -65
  160. package/lib/android/src/main/java/com/wix/reactnativeuilib/utils/LogForwarder.java +0 -45
  161. package/lib/android/src/main/res/layout/wheel_picker.xml +0 -9
  162. package/lib/android/src/main/res/values/colors.xml +0 -9
  163. package/lib/android/src/main/res/values/styles.xml +0 -9
  164. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/keyboardRegistry.api.json +0 -50
  165. package/lib/components/Keyboard/KeyboardAccessoryView/keyboardAccessoryView.api.json +0 -58
  166. package/lib/components/Keyboard/KeyboardAwareInsetsView/keyboardAwareInsetsView.api.json +0 -14
  167. package/lib/components/Keyboard/KeyboardTrackingView/keyboardTrackingView.api.json +0 -86
  168. package/lib/ios/reactnativeuilib/dynamicfont/DynamicFont.h +0 -9
  169. package/lib/ios/reactnativeuilib/dynamicfont/DynamicFont.m +0 -115
  170. package/lib/ios/reactnativeuilib/highlighterview/HighlighterView.h +0 -19
  171. package/lib/ios/reactnativeuilib/highlighterview/HighlighterView.m +0 -216
  172. package/lib/ios/reactnativeuilib/highlighterview/HighlighterViewManager.h +0 -6
  173. package/lib/ios/reactnativeuilib/highlighterview/HighlighterViewManager.m +0 -28
  174. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/Color+Interpolation.h +0 -39
  175. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/Color+Interpolation.m +0 -160
  176. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNAnimatorTemp.h +0 -36
  177. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNAnimatorTemp.m +0 -121
  178. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolable.h +0 -48
  179. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolable.m +0 -27
  180. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolation.h +0 -16
  181. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/NSValue+Interpolation.h +0 -19
  182. package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/NSValue+Interpolation.mm +0 -155
  183. package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.h +0 -16
  184. package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.m +0 -450
  185. package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.h +0 -18
  186. package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.m +0 -99
  187. package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.h +0 -14
  188. package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.m +0 -827
  189. package/lib/ios/reactnativeuilib/keyboardtrackingview/ObservingInputAccessoryViewTemp.h +0 -44
  190. package/lib/ios/reactnativeuilib/keyboardtrackingview/ObservingInputAccessoryViewTemp.m +0 -171
  191. package/lib/ios/reactnativeuilib/keyboardtrackingview/UIResponder+FirstResponderTemp.h +0 -6
  192. package/lib/ios/reactnativeuilib/keyboardtrackingview/UIResponder+FirstResponderTemp.m +0 -17
  193. package/lib/ios/reactnativeuilib/safearea/SafeAreaManager.h +0 -6
  194. package/lib/ios/reactnativeuilib/safearea/SafeAreaManager.m +0 -105
  195. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerShadowView.h +0 -5
  196. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerShadowView.m +0 -20
  197. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerView.h +0 -7
  198. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerView.m +0 -76
  199. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewLocalData.h +0 -9
  200. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewLocalData.m +0 -14
  201. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewManager.h +0 -5
  202. package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewManager.m +0 -26
  203. package/lib/ios/reactnativeuilib.xcodeproj/project.pbxproj +0 -435
  204. package/metro.config.js +0 -23
  205. package/src/.babelrc.json +0 -23
  206. package/src/assets/Assets.d.ts +0 -5
  207. package/src/assets/emojis/index.d.ts +0 -1343
  208. package/src/assets/index.d.ts +0 -3
  209. package/src/assets/internal/index.d.ts +0 -4
  210. package/src/commons/Config.d.ts +0 -24
  211. package/src/commons/Constants.d.ts +0 -54
  212. package/src/commons/UIComponent.d.ts +0 -4
  213. package/src/commons/asBaseComponent.d.ts +0 -15
  214. package/src/commons/baseComponent.d.ts +0 -2
  215. package/src/commons/forwardRef.d.ts +0 -8
  216. package/src/commons/modifiers.d.ts +0 -118
  217. package/src/commons/new.d.ts +0 -8
  218. package/src/commons/withScrollEnabler.d.ts +0 -13
  219. package/src/commons/withScrollReached.d.ts +0 -35
  220. package/src/components/WheelPicker/Item.d.ts +0 -28
  221. package/src/components/WheelPicker/WheelPicker.driver.d.ts +0 -18
  222. package/src/components/WheelPicker/WheelPickerItem.driver.d.ts +0 -8
  223. package/src/components/WheelPicker/helpers/useListMiddleIndex.d.ts +0 -6
  224. package/src/components/WheelPicker/index.d.ts +0 -88
  225. package/src/components/WheelPicker/types.d.ts +0 -6
  226. package/src/components/WheelPicker/usePresenter.d.ts +0 -21
  227. package/src/components/actionBar/index.d.ts +0 -35
  228. package/src/components/actionSheet/index.d.ts +0 -80
  229. package/src/components/animatedImage/index.d.ts +0 -28
  230. package/src/components/avatar/index.d.ts +0 -382
  231. package/src/components/badge/index.d.ts +0 -879
  232. package/src/components/baseInput/Validators.d.ts +0 -8
  233. package/src/components/baseInput/index.d.ts +0 -29
  234. package/src/components/button/Button.driver.new.d.ts +0 -34
  235. package/src/components/button/ButtonConstants.d.ts +0 -26
  236. package/src/components/button/index.d.ts +0 -572
  237. package/src/components/button/types.d.ts +0 -153
  238. package/src/components/card/CardContext.d.ts +0 -3
  239. package/src/components/card/CardImage.d.ts +0 -20
  240. package/src/components/card/CardPresenter.d.ts +0 -12
  241. package/src/components/card/CardSection.d.ts +0 -79
  242. package/src/components/card/asCardChild.d.ts +0 -6
  243. package/src/components/card/index.d.ts +0 -120
  244. package/src/components/carousel/Carousel.driver.new.d.ts +0 -9
  245. package/src/components/carousel/CarouselPresenter.d.ts +0 -9
  246. package/src/components/carousel/index.d.ts +0 -73
  247. package/src/components/carousel/types.d.ts +0 -107
  248. package/src/components/checkbox/Checkbox.driver.d.ts +0 -15
  249. package/src/components/checkbox/index.d.ts +0 -129
  250. package/src/components/chip/chip.driver.d.ts +0 -33
  251. package/src/components/chip/index.d.ts +0 -209
  252. package/src/components/chipsInput/index.d.ts +0 -55
  253. package/src/components/colorPalette/index.d.ts +0 -116
  254. package/src/components/colorPicker/ColorPickerDialog.d.ts +0 -39
  255. package/src/components/colorPicker/ColorPickerDialogHeader.d.ts +0 -9
  256. package/src/components/colorPicker/ColorPickerDialogSliders.d.ts +0 -10
  257. package/src/components/colorPicker/ColorPickerPresenter.d.ts +0 -16
  258. package/src/components/colorPicker/ColorPickerPreview.d.ts +0 -12
  259. package/src/components/colorPicker/index.d.ts +0 -45
  260. package/src/components/colorSwatch/index.d.ts +0 -50
  261. package/src/components/connectionStatusBar/index.d.ts +0 -33
  262. package/src/components/connectionStatusBar/types.d.ts +0 -28
  263. package/src/components/dash/index.d.ts +0 -19
  264. package/src/components/dateTimePicker/DateTimePicker.driver.d.ts +0 -7
  265. package/src/components/dateTimePicker/index.d.ts +0 -288
  266. package/src/components/dateTimePicker/useOldApi.d.ts +0 -27
  267. package/src/components/dialog/Dialog.driver.new.d.ts +0 -6
  268. package/src/components/dialog/DialogHeader.d.ts +0 -4
  269. package/src/components/dialog/index.d.ts +0 -15
  270. package/src/components/dialog/types.d.ts +0 -138
  271. package/src/components/dialog/useDialogContent.d.ts +0 -13
  272. package/src/components/drawer/Swipeable.d.ts +0 -94
  273. package/src/components/drawer/index.d.ts +0 -161
  274. package/src/components/expandableSection/index.d.ts +0 -40
  275. package/src/components/fadedScrollView/index.d.ts +0 -59
  276. package/src/components/fader/index.d.ts +0 -37
  277. package/src/components/featureHighlight/index.d.ts +0 -147
  278. package/src/components/floatingButton/index.d.ts +0 -85
  279. package/src/components/gradient/index.d.ts +0 -19
  280. package/src/components/gridList/index.d.ts +0 -5
  281. package/src/components/gridList/types.d.ts +0 -29
  282. package/src/components/gridList/useGridLayout.d.ts +0 -15
  283. package/src/components/gridListItem/index.d.ts +0 -132
  284. package/src/components/gridView/index.d.ts +0 -80
  285. package/src/components/hint/Hint.driver.d.ts +0 -6
  286. package/src/components/hint/Hint.driver.new.d.ts +0 -19
  287. package/src/components/hint/HintAnchor.d.ts +0 -13
  288. package/src/components/hint/HintBubble.d.ts +0 -12
  289. package/src/components/hint/HintMockChildren.d.ts +0 -8
  290. package/src/components/hint/HintOld.d.ts +0 -196
  291. package/src/components/hint/hooks/useHintAccessibility.d.ts +0 -10
  292. package/src/components/hint/hooks/useHintLayout.d.ts +0 -13
  293. package/src/components/hint/hooks/useHintPosition.d.ts +0 -29
  294. package/src/components/hint/hooks/useHintVisibility.d.ts +0 -6
  295. package/src/components/hint/index.d.ts +0 -14
  296. package/src/components/hint/types.d.ts +0 -106
  297. package/src/components/icon/index.d.ts +0 -97
  298. package/src/components/image/Image.driver.d.ts +0 -4
  299. package/src/components/image/Image.driver.new.d.ts +0 -2
  300. package/src/components/image/index.d.ts +0 -192
  301. package/src/components/listItem/ListItemPart.d.ts +0 -15
  302. package/src/components/listItem/index.d.ts +0 -52
  303. package/src/components/listItem/types.d.ts +0 -60
  304. package/src/components/loaderScreen/index.d.ts +0 -13
  305. package/src/components/loaderScreen/types.d.ts +0 -32
  306. package/src/components/marquee/index.d.ts +0 -5
  307. package/src/components/marquee/types.d.ts +0 -35
  308. package/src/components/maskedInput/index.d.ts +0 -5
  309. package/src/components/maskedInput/new.d.ts +0 -22
  310. package/src/components/modal/Modal.driver.new.d.ts +0 -8
  311. package/src/components/modal/TopBar.d.ts +0 -89
  312. package/src/components/modal/index.d.ts +0 -64
  313. package/src/components/numberInput/NumberInput.driver.d.ts +0 -6
  314. package/src/components/numberInput/Presenter.d.ts +0 -21
  315. package/src/components/numberInput/index.d.ts +0 -57
  316. package/src/components/overlay/index.d.ts +0 -68
  317. package/src/components/pageControl/index.d.ts +0 -56
  318. package/src/components/panView/index.d.ts +0 -21
  319. package/src/components/panView/panningUtil.d.ts +0 -38
  320. package/src/components/panView/usePanGesture.d.ts +0 -49
  321. package/src/components/picker/Picker.driver.new.d.ts +0 -44
  322. package/src/components/picker/PickerContext.d.ts +0 -4
  323. package/src/components/picker/PickerItem.d.ts +0 -11
  324. package/src/components/picker/PickerItemsList.d.ts +0 -4
  325. package/src/components/picker/PickerPresenter.d.ts +0 -7
  326. package/src/components/picker/PickerSelectionStatusBar.d.ts +0 -3
  327. package/src/components/picker/helpers/useFieldType.d.ts +0 -373
  328. package/src/components/picker/helpers/useImperativePickerHandle.d.ts +0 -5
  329. package/src/components/picker/helpers/useNewPickerProps.d.ts +0 -3
  330. package/src/components/picker/helpers/usePickerLabel.d.ts +0 -17
  331. package/src/components/picker/helpers/usePickerMigrationWarnings.d.ts +0 -4
  332. package/src/components/picker/helpers/usePickerSearch.d.ts +0 -9
  333. package/src/components/picker/helpers/usePickerSelection.d.ts +0 -16
  334. package/src/components/picker/index.d.ts +0 -15
  335. package/src/components/picker/types.d.ts +0 -321
  336. package/src/components/pieChart/PieSegment.d.ts +0 -34
  337. package/src/components/pieChart/index.d.ts +0 -15
  338. package/src/components/progressBar/index.d.ts +0 -65
  339. package/src/components/progressiveImage/index.d.ts +0 -23
  340. package/src/components/radioButton/RadioButton.driver.d.ts +0 -9
  341. package/src/components/radioButton/index.d.ts +0 -121
  342. package/src/components/radioGroup/RadioGroup.driver.d.ts +0 -13
  343. package/src/components/radioGroup/RadioGroupContext.d.ts +0 -14
  344. package/src/components/radioGroup/asRadioGroupChild.d.ts +0 -2
  345. package/src/components/radioGroup/index.d.ts +0 -47
  346. package/src/components/scrollBar/index.d.ts +0 -88
  347. package/src/components/searchInput/index.d.ts +0 -37
  348. package/src/components/searchInput/types.d.ts +0 -66
  349. package/src/components/sectionsWheelPicker/SectionsWheelPicker.driver.d.ts +0 -25
  350. package/src/components/sectionsWheelPicker/index.d.ts +0 -43
  351. package/src/components/segmentedControl/index.d.ts +0 -90
  352. package/src/components/segmentedControl/segment.d.ts +0 -111
  353. package/src/components/segmentedControl/useSegmentedControlPreset.d.ts +0 -10
  354. package/src/components/skeletonView/index.d.ts +0 -163
  355. package/src/components/slider/ColorSliderGroup.d.ts +0 -13
  356. package/src/components/slider/GradientSlider.d.ts +0 -20
  357. package/src/components/slider/SliderContext.d.ts +0 -8
  358. package/src/components/slider/Thumb.d.ts +0 -32
  359. package/src/components/slider/index.d.ts +0 -31
  360. package/src/components/slider/slider.driver.d.ts +0 -5
  361. package/src/components/slider/types.d.ts +0 -197
  362. package/src/components/sortableGridList/SortableItem.d.ts +0 -6
  363. package/src/components/sortableGridList/index.d.ts +0 -5
  364. package/src/components/sortableGridList/types.d.ts +0 -34
  365. package/src/components/sortableGridList/usePresenter.d.ts +0 -21
  366. package/src/components/sortableList/SortableList.driver.new.d.ts +0 -2
  367. package/src/components/sortableList/SortableListContext.d.ts +0 -19
  368. package/src/components/sortableList/SortableListItem.d.ts +0 -8
  369. package/src/components/sortableList/SortableListItem.driver.new.d.ts +0 -11
  370. package/src/components/sortableList/index.d.ts +0 -5
  371. package/src/components/sortableList/types.d.ts +0 -48
  372. package/src/components/sortableList/usePresenter.d.ts +0 -12
  373. package/src/components/stackAggregator/index.d.ts +0 -89
  374. package/src/components/stateScreen/index.d.ts +0 -5
  375. package/src/components/stateScreen/types.d.ts +0 -30
  376. package/src/components/stepper/index.d.ts +0 -47
  377. package/src/components/svgImage/index.d.ts +0 -14
  378. package/src/components/svgImage/index.web.d.ts +0 -18
  379. package/src/components/switch/index.d.ts +0 -102
  380. package/src/components/switch/switch.driver.d.ts +0 -18
  381. package/src/components/tabController/PageCarousel.d.ts +0 -9
  382. package/src/components/tabController/TabBar.d.ts +0 -97
  383. package/src/components/tabController/TabBarContext.d.ts +0 -18
  384. package/src/components/tabController/TabBarItem.d.ts +0 -105
  385. package/src/components/tabController/TabPage.d.ts +0 -33
  386. package/src/components/tabController/index.d.ts +0 -48
  387. package/src/components/tabController/useImperativeTabControllerHandle.d.ts +0 -6
  388. package/src/components/tabController/useScrollToItem.d.ts +0 -79
  389. package/src/components/text/Text.driver.d.ts +0 -7
  390. package/src/components/text/Text.driver.new.d.ts +0 -17
  391. package/src/components/text/index.d.ts +0 -195
  392. package/src/components/textField/CharCounter.d.ts +0 -7
  393. package/src/components/textField/ClearButton.d.ts +0 -4
  394. package/src/components/textField/FieldContext.d.ts +0 -4
  395. package/src/components/textField/FloatingPlaceholder.d.ts +0 -7
  396. package/src/components/textField/Input.d.ts +0 -8
  397. package/src/components/textField/Label.d.ts +0 -7
  398. package/src/components/textField/Presenter.d.ts +0 -7
  399. package/src/components/textField/TextField.driver.new.d.ts +0 -129
  400. package/src/components/textField/ValidationMessage.d.ts +0 -7
  401. package/src/components/textField/index.d.ts +0 -114
  402. package/src/components/textField/presets/outline.d.ts +0 -737
  403. package/src/components/textField/presets/underline.d.ts +0 -735
  404. package/src/components/textField/textInput/index.d.ts +0 -1
  405. package/src/components/textField/textInput/index.web.d.ts +0 -3
  406. package/src/components/textField/types.d.ts +0 -287
  407. package/src/components/textField/useFieldState.d.ts +0 -16
  408. package/src/components/textField/useImperativeInputHandle.d.ts +0 -4
  409. package/src/components/textField/usePreset.d.ts +0 -1696
  410. package/src/components/textField/validators.d.ts +0 -9
  411. package/src/components/textFieldOld/index.d.ts +0 -71
  412. package/src/components/timeline/Line.d.ts +0 -10
  413. package/src/components/timeline/Point.d.ts +0 -9
  414. package/src/components/timeline/index.d.ts +0 -11
  415. package/src/components/timeline/line.driver.d.ts +0 -10
  416. package/src/components/timeline/point.driver.d.ts +0 -8
  417. package/src/components/timeline/timeline.driver.d.ts +0 -25
  418. package/src/components/timeline/types.d.ts +0 -50
  419. package/src/components/touchableOpacity/index.d.ts +0 -50
  420. package/src/components/view/View.driver.new.d.ts +0 -7
  421. package/src/components/view/index.d.ts +0 -46
  422. package/src/components/wizard/WizardStates.d.ts +0 -2
  423. package/src/components/wizard/WizardStep.d.ts +0 -4
  424. package/src/components/wizard/index.d.ts +0 -31
  425. package/src/components/wizard/types.d.ts +0 -90
  426. package/src/helpers/AvatarHelper.d.ts +0 -9
  427. package/src/helpers/FormattingPresenter.d.ts +0 -6
  428. package/src/helpers/Profiler.d.ts +0 -22
  429. package/src/helpers/index.d.ts +0 -3
  430. package/src/hooks/index.d.ts +0 -14
  431. package/src/hooks/useCombinedRefs/index.d.ts +0 -3
  432. package/src/hooks/useDebounce/index.d.ts +0 -5
  433. package/src/hooks/useDidUpdate/index.d.ts +0 -6
  434. package/src/hooks/useHiddenLocation/index.d.ts +0 -13
  435. package/src/hooks/useHiddenLocation/index.web.d.ts +0 -13
  436. package/src/hooks/useKeyboardHeight/index.d.ts +0 -5
  437. package/src/hooks/useMeasure/index.d.ts +0 -15
  438. package/src/hooks/useModifiers/index.d.ts +0 -3
  439. package/src/hooks/useOrientation/index.d.ts +0 -7
  440. package/src/hooks/useScrollEnabler/index.d.ts +0 -23
  441. package/src/hooks/useScrollReached/index.d.ts +0 -28
  442. package/src/hooks/useScrollTo/index.d.ts +0 -37
  443. package/src/hooks/useScrollToItem/index.d.ts +0 -65
  444. package/src/hooks/useThemeProps/index.d.ts +0 -2
  445. package/src/hooks/useToggleValue/index.d.ts +0 -2
  446. package/src/incubator/TouchableOpacity.d.ts +0 -52
  447. package/src/incubator/calendar/Agenda.d.ts +0 -4
  448. package/src/incubator/calendar/CalendarContext.d.ts +0 -4
  449. package/src/incubator/calendar/CalendarItem.d.ts +0 -5
  450. package/src/incubator/calendar/Day.d.ts +0 -4
  451. package/src/incubator/calendar/Day_OLD.d.ts +0 -4
  452. package/src/incubator/calendar/Header.d.ts +0 -4
  453. package/src/incubator/calendar/Month.d.ts +0 -4
  454. package/src/incubator/calendar/TodayButton.d.ts +0 -4
  455. package/src/incubator/calendar/Week.d.ts +0 -4
  456. package/src/incubator/calendar/WeekDaysNames.d.ts +0 -4
  457. package/src/incubator/calendar/helpers/CalendarProcessor.d.ts +0 -2
  458. package/src/incubator/calendar/helpers/DataProcessor.d.ts +0 -2
  459. package/src/incubator/calendar/helpers/DateUtils.d.ts +0 -23
  460. package/src/incubator/calendar/index.d.ts +0 -7
  461. package/src/incubator/calendar/types.d.ts +0 -118
  462. package/src/incubator/expandableOverlay/ExpandableOverlay.driver.d.ts +0 -7
  463. package/src/incubator/expandableOverlay/index.d.ts +0 -83
  464. package/src/incubator/gradient/BorderGradient.d.ts +0 -4
  465. package/src/incubator/gradient/CircleGradient.d.ts +0 -4
  466. package/src/incubator/gradient/RectangleGradient.d.ts +0 -4
  467. package/src/incubator/gradient/index.d.ts +0 -5
  468. package/src/incubator/gradient/types.d.ts +0 -26
  469. package/src/incubator/gradient/useAngleTransform.d.ts +0 -27
  470. package/src/incubator/index.d.ts +0 -9
  471. package/src/incubator/slider/Slider.driver.d.ts +0 -5
  472. package/src/incubator/slider/SliderPresenter.d.ts +0 -6
  473. package/src/incubator/slider/Thumb.d.ts +0 -24
  474. package/src/incubator/slider/Track.d.ts +0 -13
  475. package/src/incubator/slider/index.d.ts +0 -139
  476. package/src/incubator/toast/Toast.driver.new.d.ts +0 -54
  477. package/src/incubator/toast/helpers/useToastAnimation.d.ts +0 -22
  478. package/src/incubator/toast/helpers/useToastPresets.d.ts +0 -8
  479. package/src/incubator/toast/helpers/useToastTimer.d.ts +0 -6
  480. package/src/incubator/toast/index.d.ts +0 -9
  481. package/src/incubator/toast/types.d.ts +0 -111
  482. package/src/index.d.ts +0 -92
  483. package/src/optionalDependencies/BlurViewPackage.d.ts +0 -2
  484. package/src/optionalDependencies/BlurViewPackage.web.d.ts +0 -2
  485. package/src/optionalDependencies/DateTimePickerPackage.d.ts +0 -2
  486. package/src/optionalDependencies/FlashListPackage.d.ts +0 -2
  487. package/src/optionalDependencies/HapticFeedbackPackage.d.ts +0 -2
  488. package/src/optionalDependencies/LinearGradientPackage.d.ts +0 -2
  489. package/src/optionalDependencies/MomentPackage.d.ts +0 -2
  490. package/src/optionalDependencies/NetInfoPackage.d.ts +0 -2
  491. package/src/optionalDependencies/PostCssPackage.d.ts +0 -5
  492. package/src/optionalDependencies/ShimmerPackage.d.ts +0 -2
  493. package/src/optionalDependencies/SvgPackage.d.ts +0 -3
  494. package/src/optionalDependencies/index.d.ts +0 -9
  495. package/src/optionalDependencies/index.web.d.ts +0 -7
  496. package/src/services/HapticService.d.ts +0 -15
  497. package/src/services/LogService.d.ts +0 -35
  498. package/src/services/index.d.ts +0 -2
  499. package/src/style/borderRadiuses.d.ts +0 -30
  500. package/src/style/colorName.d.ts +0 -8
  501. package/src/style/colorNameMap.d.ts +0 -2
  502. package/src/style/colors.d.ts +0 -274
  503. package/src/style/colorsPalette.d.ts +0 -101
  504. package/src/style/components.d.ts +0 -15
  505. package/src/style/componentsColors.d.ts +0 -5
  506. package/src/style/designTokens.d.ts +0 -69
  507. package/src/style/designTokensDM.d.ts +0 -69
  508. package/src/style/dividers.d.ts +0 -11
  509. package/src/style/index.d.ts +0 -13
  510. package/src/style/scheme.d.ts +0 -57
  511. package/src/style/shadows.d.ts +0 -223
  512. package/src/style/spacings.d.ts +0 -32
  513. package/src/style/themeManager.d.ts +0 -22
  514. package/src/style/typography.d.ts +0 -26
  515. package/src/style/typographyPresets.d.ts +0 -7
  516. package/src/testkit/Component.driver.d.ts +0 -30
  517. package/src/testkit/DriverException.d.ts +0 -12
  518. package/src/testkit/UniDriver.d.ts +0 -29
  519. package/src/testkit/drivers/TestingLibraryDriver.d.ts +0 -26
  520. package/src/testkit/index.d.ts +0 -25
  521. package/src/testkit/new/Component.driver.d.ts +0 -16
  522. package/src/testkit/new/useDraggable.driver.d.ts +0 -15
  523. package/src/testkit/new/usePressable.driver.d.ts +0 -14
  524. package/src/testkit/new/useScrollable.driver.d.ts +0 -13
  525. package/src/typings/assets.d.ts +0 -52
  526. package/src/typings/common.d.ts +0 -12
  527. package/src/typings/module.d.ts +0 -13
  528. package/src/typings/recorderTypes.d.ts +0 -13
  529. package/src/uilib-test-renderer/helper.d.ts +0 -8
  530. package/src/uilib-test-renderer/index.d.ts +0 -4
  531. package/src/uilib-test-renderer/scrollViewHelper.d.ts +0 -9
  532. package/src/utils/dateUtils.d.ts +0 -2
  533. package/src/utils/imageUtils.d.ts +0 -5
  534. package/src/utils/index.d.ts +0 -4
  535. package/src/utils/styleUtils.d.ts +0 -7
  536. package/src/utils/textUtils.d.ts +0 -8
  537. /package/{src → scripts/build}/.babelrc.exports.js +0 -0
@@ -1,94 +0,0 @@
1
- import React, { Component } from 'react';
2
- import { Animated } from 'react-native';
3
- import { State } from 'react-native-gesture-handler';
4
- type Props = {
5
- children: any;
6
- friction: number;
7
- leftThreshold?: number;
8
- rightThreshold?: number;
9
- fullLeftThreshold?: number;
10
- fullSwipeLeft?: boolean;
11
- fullRightThreshold?: number;
12
- fullSwipeRight?: boolean;
13
- overshootLeft?: boolean;
14
- overshootRight?: boolean;
15
- overshootFriction?: number;
16
- onSwipeableLeftOpen?: Function;
17
- onSwipeableRightOpen?: Function;
18
- onSwipeableOpen?: Function;
19
- onSwipeableClose?: Function;
20
- onSwipeableLeftWillOpen?: Function;
21
- onSwipeableRightWillOpen?: Function;
22
- onSwipeableWillOpen?: Function;
23
- onSwipeableWillClose?: Function;
24
- onFullSwipeLeft?: Function;
25
- onToggleSwipeLeft?: Function;
26
- onWillFullSwipeLeft?: Function;
27
- onFullSwipeRight?: Function;
28
- onWillFullSwipeRight?: Function;
29
- onDragStart?: Function;
30
- renderLeftActions?: (progressAnimatedValue: any, dragAnimatedValue: any) => any;
31
- renderRightActions?: (progressAnimatedValue: any, dragAnimatedValue: any) => any;
32
- leftActionsContainerStyle: any;
33
- rightActionsContainerStyle: any;
34
- useNativeAnimations: boolean;
35
- animationOptions?: Object;
36
- containerStyle?: Object;
37
- childrenContainerStyle?: Object;
38
- disableHaptic?: boolean;
39
- };
40
- type State = {
41
- dragX: Animated.Value;
42
- rowTranslation: Animated.Value;
43
- leftWidth: number | typeof undefined;
44
- rightOffset: number | typeof undefined;
45
- rowWidth: number | typeof undefined;
46
- };
47
- export type SwipeableProps = Props;
48
- declare class Swipeable extends Component<Props, State> {
49
- static displayName: string;
50
- static defaultProps: {
51
- friction: number;
52
- overshootFriction: number;
53
- useNativeAnimations: boolean;
54
- fullLeftThreshold: number;
55
- fullRightThreshold: number;
56
- };
57
- constructor(props: Props);
58
- _triggerHaptic: () => false | void;
59
- _handleDrag: (e: any) => void;
60
- getTransX: () => Animated.AnimatedInterpolation<string | number>;
61
- getShowLeftAction: () => Animated.Value | Animated.AnimatedInterpolation<string | number>;
62
- getLeftActionTranslate: () => Animated.AnimatedInterpolation<string | number>;
63
- getShowRightAction: () => Animated.Value | Animated.AnimatedInterpolation<string | number>;
64
- getRightActionTranslate: () => Animated.AnimatedInterpolation<string | number>;
65
- _onTapHandlerStateChange: ({ nativeEvent }: {
66
- nativeEvent: any;
67
- }) => void;
68
- _onHandlerStateChange: ({ nativeEvent }: {
69
- nativeEvent: any;
70
- }) => void;
71
- _hasLeftActions: boolean;
72
- _hasRightActions: boolean;
73
- _handleRelease: (nativeEvent: any) => void;
74
- _animateRow: (fromValue: any, toValue: any, velocityX: any) => void;
75
- _currentOffset: () => number;
76
- close: () => void;
77
- openLeft: () => void;
78
- openLeftFull: () => void;
79
- toggleLeft: () => void;
80
- openRight: () => void;
81
- openRightFull: () => void;
82
- _onRowLayout: ({ nativeEvent }: {
83
- nativeEvent: any;
84
- }) => void;
85
- _onLeftLayout: ({ nativeEvent }: {
86
- nativeEvent: any;
87
- }) => void;
88
- _onRightLayout: ({ nativeEvent }: {
89
- nativeEvent: any;
90
- }) => void;
91
- handleMeasure: (name: any, nativeEvent: any) => void;
92
- render(): React.JSX.Element;
93
- }
94
- export default Swipeable;
@@ -1,161 +0,0 @@
1
- import React, { PureComponent, ReactNode, RefObject } from 'react';
2
- import { Animated, ViewStyle, TextStyle } from 'react-native';
3
- import Swipeable, { SwipeableProps } from './Swipeable';
4
- interface DrawerItemProps {
5
- width?: number;
6
- background?: string;
7
- text?: string;
8
- textColor?: string;
9
- icon?: number;
10
- iconColor?: string;
11
- onPress?: Function;
12
- keepOpen?: boolean;
13
- style?: ViewStyle;
14
- testID?: string;
15
- customElement?: ReactNode;
16
- }
17
- interface DrawerProps {
18
- /**
19
- * The drawer animation bounciness
20
- */
21
- bounciness?: number;
22
- /**
23
- * OnDragStart handler
24
- */
25
- onDragStart?: Function;
26
- /**
27
- * The bottom layer's items to appear when opened from the right
28
- */
29
- rightItems?: DrawerItemProps[];
30
- /**
31
- * The bottom layer's item to appear when opened from the left (a single item)
32
- */
33
- leftItem?: DrawerItemProps;
34
- /**
35
- * Set a different minimum width
36
- */
37
- itemsMinWidth?: number;
38
- /**
39
- * The color for the text and icon tint of the items
40
- */
41
- itemsTintColor?: string;
42
- /**
43
- * The items' icon size
44
- */
45
- itemsIconSize?: number;
46
- /**
47
- * The items' text style
48
- */
49
- itemsTextStyle?: TextStyle;
50
- /**
51
- * Perform the animation in natively
52
- */
53
- useNativeAnimations?: boolean;
54
- /**
55
- * Whether to allow a full left swipe
56
- */
57
- fullSwipeLeft?: boolean;
58
- /**
59
- * Threshold for a left full swipe (0-1)
60
- */
61
- fullLeftThreshold?: number;
62
- /**
63
- * Callback for left item full swipe
64
- */
65
- onFullSwipeLeft?: Function;
66
- /**
67
- * Callback for left item toggle swipe
68
- */
69
- onToggleSwipeLeft?: Function;
70
- /**
71
- * Callback for just before left item full swipe
72
- */
73
- onWillFullSwipeLeft?: Function;
74
- /**
75
- * Whether to allow a full right swipe
76
- */
77
- fullSwipeRight?: boolean;
78
- /**
79
- * Threshold for a right full swipe (0-1)
80
- */
81
- fullRightThreshold?: number;
82
- /**
83
- * Callback for right item full swipe
84
- */
85
- onFullSwipeRight?: Function;
86
- /**
87
- * Callback for just before right item full swipe
88
- */
89
- onWillFullSwipeRight?: Function;
90
- /**
91
- * Whether to disable the haptic
92
- */
93
- disableHaptic?: boolean;
94
- /**
95
- * Style
96
- */
97
- style?: ViewStyle;
98
- /**
99
- * Callback for open action
100
- */
101
- onSwipeableWillOpen?: Function;
102
- /**
103
- * Callback for close action
104
- */
105
- onSwipeableWillClose?: Function;
106
- /**
107
- * Custom value of any type to pass on to the component and receive back in the action callbacks
108
- */
109
- customValue?: any;
110
- /**
111
- * Used as testing identifier
112
- */
113
- testID?: string;
114
- children?: React.ReactNode;
115
- }
116
- /**
117
- * @description: Drawer Component
118
- * @importantLink: https://docs.swmansion.com/react-native-gesture-handler/docs/installation/
119
- * @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/Drawer/Drawer.gif?raw=true
120
- */
121
- declare class Drawer extends PureComponent<DrawerProps> {
122
- static displayName: string;
123
- static defaultProps: {
124
- itemsTintColor: string;
125
- itemsIconSize: number;
126
- };
127
- leftRender: SwipeableProps['renderLeftActions'];
128
- rightRender: SwipeableProps['renderLeftActions'];
129
- _swipeableRow: RefObject<Swipeable>;
130
- animationOptions: SwipeableProps['animationOptions'];
131
- leftActionX: Animated.Value;
132
- constructor(props: DrawerProps);
133
- private getLeftActionsContainerStyle;
134
- private getRightActionsContainerStyle;
135
- private getActionsContainerStyle;
136
- /** Actions */
137
- closeDrawer: () => void;
138
- openLeft: () => void;
139
- openLeftFull: () => void;
140
- toggleLeft: () => void;
141
- openRight: () => void;
142
- openRightFull: () => void;
143
- /** Events */
144
- private onActionPress;
145
- private onSwipeableWillOpen;
146
- private onSwipeableWillClose;
147
- private onToggleSwipeLeft;
148
- private animateItem;
149
- /** Accessability */
150
- private getAccessibilityActions;
151
- private onAccessibilityAction;
152
- /** Renders */
153
- private renderLeftActions;
154
- private renderRightActions;
155
- private renderActions;
156
- private renderAction;
157
- render(): React.JSX.Element;
158
- }
159
- export { DrawerProps, DrawerItemProps };
160
- declare const _default: React.ForwardRefExoticComponent<DrawerProps & React.RefAttributes<any>> & typeof Drawer;
161
- export default _default;
@@ -1,40 +0,0 @@
1
- import React from 'react';
2
- export type ExpandableSectionProps = {
3
- /**
4
- * expandableSection header element
5
- */
6
- sectionHeader?: JSX.Element;
7
- /**
8
- * expandableSection expandable children
9
- */
10
- children?: React.ReactNode;
11
- /**
12
- * should the expandableSection be expanded
13
- */
14
- expanded?: boolean;
15
- /**
16
- * should the expandableSection open above the sectionHeader
17
- */
18
- top?: boolean;
19
- /**
20
- * action for when pressing the header of the expandableSection
21
- */
22
- onPress?: () => void;
23
- /**
24
- * Set a minimum height for the expandableSection
25
- * If the children height is less than the minHeight, the expandableSection will collapse to that height
26
- * If the children height is greater than the minHeight, the expandableSection will result with only the children rendered (sectionHeader will not be rendered)
27
- */
28
- minHeight?: number;
29
- /**
30
- * Testing identifier
31
- */
32
- testID?: string;
33
- };
34
- /**
35
- * @description: ExpandableSection component to render expanded section below or above the sectionHeader
36
- * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ExpandableSectionScreen.tsx
37
- * @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/ExpandableSection/ExpandableSection.gif?raw=true
38
- */
39
- declare function ExpandableSection(props: ExpandableSectionProps): React.JSX.Element;
40
- export default ExpandableSection;
@@ -1,59 +0,0 @@
1
- import React from 'react';
2
- import { ScrollViewProps } from 'react-native';
3
- import { FaderProps } from '../fader';
4
- import { ComponentStatics } from '../../typings/common';
5
- export type FadedScrollViewProps = ScrollViewProps & {
6
- /**
7
- * Show a fader at the start of the scroll
8
- */
9
- showStartFader?: boolean;
10
- /**
11
- * Additional props for the start fader
12
- */
13
- startFaderProps?: Omit<FaderProps, 'visible' | 'position'>;
14
- /**
15
- * Show a fader at the end of the scroll
16
- */
17
- showEndFader?: boolean;
18
- /**
19
- * Additional props for the end fader
20
- */
21
- endFaderProps?: Omit<FaderProps, 'visible' | 'position'>;
22
- /**
23
- * Use the react-native-gesture-handler version, useful when using react-native-reanimated
24
- */
25
- useGesture?: boolean;
26
- children?: React.ReactNode | React.ReactNode[];
27
- };
28
- export interface FadedScrollViewRef {
29
- scrollTo(y?: number | {
30
- x?: number | undefined;
31
- y?: number | undefined;
32
- animated?: boolean | undefined;
33
- }, x?: number, animated?: boolean): void;
34
- isScrollEnabled: () => boolean;
35
- }
36
- declare const _default: React.ForwardRefExoticComponent<ScrollViewProps & {
37
- /**
38
- * Show a fader at the start of the scroll
39
- */
40
- showStartFader?: boolean | undefined;
41
- /**
42
- * Additional props for the start fader
43
- */
44
- startFaderProps?: Omit<FaderProps, "visible" | "position"> | undefined;
45
- /**
46
- * Show a fader at the end of the scroll
47
- */
48
- showEndFader?: boolean | undefined;
49
- /**
50
- * Additional props for the end fader
51
- */
52
- endFaderProps?: Omit<FaderProps, "visible" | "position"> | undefined;
53
- /**
54
- * Use the react-native-gesture-handler version, useful when using react-native-reanimated
55
- */
56
- useGesture?: boolean | undefined;
57
- children?: React.ReactNode | React.ReactNode[];
58
- } & React.RefAttributes<FadedScrollViewRef>> & ComponentStatics<FadedScrollViewProps>;
59
- export default _default;
@@ -1,37 +0,0 @@
1
- import React from 'react';
2
- import { ImageProps } from '../image';
3
- export declare enum FaderPosition {
4
- START = "START",
5
- END = "END",
6
- TOP = "TOP",
7
- BOTTOM = "BOTTOM"
8
- }
9
- export type FaderProps = Pick<ImageProps, 'supportRTL'> & {
10
- /**
11
- * Whether the fader is visible (default is true)
12
- */
13
- visible?: boolean;
14
- /**
15
- * The position of the fader (the image is different), defaults to Fader.position.END
16
- */
17
- position?: FaderPosition | `${FaderPosition}`;
18
- /**
19
- * Set to change from the default size (50) of the fade view.
20
- */
21
- size?: number;
22
- /**
23
- * Change the default tint color of the fade view.
24
- */
25
- tintColor?: string;
26
- };
27
- /**
28
- * @description: A gradient fading overlay to render on top of overflowing content (like scroll component)
29
- * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/FaderScreen.tsx
30
- * @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/Fader/Fader.gif?raw=true
31
- */
32
- declare function Fader(props: FaderProps): React.JSX.Element;
33
- declare namespace Fader {
34
- var displayName: string;
35
- var position: typeof FaderPosition;
36
- }
37
- export default Fader;
@@ -1,147 +0,0 @@
1
- import React, { Component, ElementRef } from 'react';
2
- import { Animated, StyleProp, TextStyle, TouchableWithoutFeedbackProps, LayoutChangeEvent } from 'react-native';
3
- import { ButtonProps } from '../button';
4
- import { PageControlProps } from '../pageControl';
5
- export type HighlightFrame = {
6
- x: number;
7
- y: number;
8
- width: number;
9
- height: number;
10
- };
11
- type RectSize = {
12
- width: number;
13
- height: number;
14
- };
15
- type Position = {
16
- left: number;
17
- top: number;
18
- width: number;
19
- height: number;
20
- };
21
- export type FeatureHighlightProps = {
22
- /**
23
- * Boolean to determine if to present the feature highlight component
24
- */
25
- visible: boolean;
26
- /**
27
- * Frame of the area to highlight {x, y, width, height}
28
- */
29
- highlightFrame?: HighlightFrame;
30
- /**
31
- * Callback that extract the ref of the element to be highlighted
32
- */
33
- getTarget?: () => any;
34
- /**
35
- * Title of the content to be displayed
36
- */
37
- title?: string;
38
- /**
39
- * Message to be displayed
40
- */
41
- message?: string;
42
- /**
43
- * Title text style
44
- */
45
- titleStyle?: StyleProp<TextStyle>;
46
- /**
47
- * Message text style
48
- */
49
- messageStyle?: StyleProp<TextStyle>;
50
- /**
51
- * Title's max number of lines
52
- */
53
- titleNumberOfLines?: number;
54
- /**
55
- * Message's max number of lines
56
- */
57
- messageNumberOfLines?: number;
58
- /**
59
- * Props that will be passed to the dismiss button
60
- */
61
- confirmButtonProps?: ButtonProps;
62
- /**
63
- * Callback for the background press
64
- */
65
- onBackgroundPress?: TouchableWithoutFeedbackProps['onPress'];
66
- /**
67
- * Color of the content's background (usually includes alpha for transparency)
68
- */
69
- overlayColor?: string;
70
- /**
71
- * Color of the content's text
72
- */
73
- textColor?: string;
74
- /**
75
- * Color of the border around the highlighted element
76
- */
77
- borderColor?: string;
78
- /**
79
- * Width of the border around the highlighted element
80
- */
81
- borderWidth?: number;
82
- /**
83
- * Border radius for the border corners around the highlighted element
84
- */
85
- borderRadius?: number;
86
- /**
87
- * The minimum size of the highlighted component (Android API 21+, and only when passing a ref in 'getTarget')
88
- */
89
- minimumRectSize?: RectSize;
90
- /**
91
- * The padding of the highlight frame around the highlighted element's frame (only when passing ref in 'getTarget')
92
- */
93
- innerPadding?: number;
94
- /**
95
- * PageControl component's props
96
- */
97
- pageControlProps?: PageControlProps;
98
- testID?: string;
99
- };
100
- interface State {
101
- fadeAnim: Animated.Value;
102
- contentTopPosition?: number;
103
- node?: number;
104
- getTarget?: () => any;
105
- }
106
- /**
107
- * @description: FeatureHighlight component for feature discovery
108
- * @notes: 1) FeatureHighlight component must be a direct child of the root view returned in render().; 2) If the element to be highlighted doesn't have a style attribute add 'style={{opacity: 1}}' so the Android OS can detect it.
109
- * @important: FeatureHighlight uses a native library. You MUST add and link the native library to both iOS and Android projects. For instruction please see
110
- * @importantLink: https://facebook.github.io/react-native/docs/linking-libraries-ios.html
111
- * @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/FeatureHighlight/FeatureHighlight.gif?raw=true
112
- * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/FeatureHighlightScreen.tsx
113
- */
114
- declare class FeatureHighlight extends Component<FeatureHighlightProps, State> {
115
- static displayName: string;
116
- contentHeight: number;
117
- targetPosition?: Position;
118
- viewRef?: ElementRef<any>;
119
- constructor(props: FeatureHighlightProps);
120
- static defaultProps: {
121
- minimumRectSize: {
122
- width: number;
123
- height: number;
124
- };
125
- innerPadding: number;
126
- };
127
- componentDidMount(): void;
128
- static getDerivedStateFromProps(nextProps: FeatureHighlightProps, prevState: State): {
129
- getTarget: (() => any) | undefined;
130
- node: number;
131
- } | null;
132
- shouldSetTargetPosition: (nextProps: FeatureHighlightProps) => boolean;
133
- componentDidUpdate(nextProps: FeatureHighlightProps): void;
134
- setAccessibilityFocus(ref: any): void;
135
- static findTargetNode(target: Component): number | null;
136
- animate(toValue: number): void;
137
- setTargetPosition(props?: Readonly<FeatureHighlightProps>): void;
138
- getContentPosition(): number;
139
- setContentPosition(): void;
140
- getComponentDimensions(event: LayoutChangeEvent): void;
141
- onPress: () => void;
142
- renderHighlightMessage(): React.JSX.Element;
143
- render(): React.JSX.Element | null;
144
- }
145
- export { FeatureHighlight };
146
- declare const _default: React.ForwardRefExoticComponent<FeatureHighlightProps & React.RefAttributes<any>> & typeof FeatureHighlight;
147
- export default _default;
@@ -1,85 +0,0 @@
1
- import React, { PropsWithChildren, PureComponent } from 'react';
2
- import { Animated } from 'react-native';
3
- import { ButtonProps } from '../button';
4
- export declare enum FloatingButtonLayouts {
5
- VERTICAL = "Vertical",
6
- HORIZONTAL = "Horizontal"
7
- }
8
- export interface FloatingButtonProps {
9
- /**
10
- * Whether the button is visible
11
- */
12
- visible?: boolean;
13
- /**
14
- * Button element (all Button's component's props)
15
- */
16
- button?: PropsWithChildren<ButtonProps>;
17
- /**
18
- * Secondary button element (all Button's component's props)
19
- */
20
- secondaryButton?: PropsWithChildren<ButtonProps>;
21
- /**
22
- * The bottom margin of the button, or secondary button if passed
23
- */
24
- bottomMargin?: number;
25
- /**
26
- * Whether the buttons get the container's full with (vertical layout only)
27
- */
28
- fullWidth?: boolean;
29
- /**
30
- * Button layout direction: vertical or horizontal
31
- */
32
- buttonLayout?: FloatingButtonLayouts | `${FloatingButtonLayouts}`;
33
- /**
34
- * The duration of the button's animations (show/hide)
35
- */
36
- duration?: number;
37
- /**
38
- * Whether to show/hide the button without animation
39
- */
40
- withoutAnimation?: boolean;
41
- /**
42
- * Whether to show background overlay
43
- */
44
- hideBackgroundOverlay?: boolean;
45
- /**
46
- * Used as testing identifier
47
- * <TestID> - the floatingButton container
48
- * <TestID>.button - the floatingButton main button
49
- * <TestID>.secondaryButton - the floatingButton secondaryButton
50
- */
51
- testID?: string;
52
- }
53
- /**
54
- * @description: Hovering button with gradient background
55
- * @modifiers: margin, background, color
56
- * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/FloatingButtonScreen.tsx
57
- * @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/FloatingButton/FloatingButton.gif?raw=true
58
- */
59
- declare class FloatingButton extends PureComponent<FloatingButtonProps> {
60
- static displayName: string;
61
- static floatingButtonLayouts: typeof FloatingButtonLayouts;
62
- static defaultProps: {
63
- duration: number;
64
- buttonLayout: FloatingButtonLayouts;
65
- };
66
- initialVisibility?: boolean;
67
- firstLoad: boolean;
68
- visibleAnimated: Animated.Value;
69
- constructor(props: FloatingButtonProps);
70
- componentDidUpdate(prevProps: FloatingButtonProps): void;
71
- getAnimatedStyle: () => {
72
- opacity: Animated.Value;
73
- transform: {
74
- translateY: Animated.AnimatedInterpolation<string | number>;
75
- }[];
76
- };
77
- get isSecondaryHorizontal(): boolean | undefined;
78
- get isSecondaryVertical(): boolean | undefined;
79
- renderButton(): React.JSX.Element;
80
- renderOverlay: () => React.JSX.Element | undefined;
81
- renderSecondaryButton(): React.JSX.Element;
82
- render(): false | React.JSX.Element;
83
- }
84
- declare const _default: React.ForwardRefExoticComponent<FloatingButtonProps & React.RefAttributes<any>> & typeof FloatingButton;
85
- export default _default;
@@ -1,19 +0,0 @@
1
- import tinycolor from 'tinycolor2';
2
- import React from 'react';
3
- import { StyleProp, ViewStyle } from 'react-native';
4
- export declare enum GradientTypes {
5
- HUE = "hue",
6
- LIGHTNESS = "lightness",
7
- SATURATION = "saturation"
8
- }
9
- export interface GradientProps {
10
- color?: string | tinycolor.ColorFormats.HSLA;
11
- type?: GradientTypes | `${GradientTypes}`;
12
- numberOfSteps: number;
13
- style?: StyleProp<ViewStyle>;
14
- }
15
- declare const Gradient: {
16
- (props: GradientProps): React.JSX.Element;
17
- types: typeof GradientTypes;
18
- };
19
- export default Gradient;
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import { GridListProps, GridListBaseProps } from './types';
3
- declare function GridList<T = any>(props: GridListProps<T>): React.JSX.Element;
4
- export { GridListBaseProps, GridListProps };
5
- export default GridList;
@@ -1,29 +0,0 @@
1
- import { FlatListProps } from 'react-native';
2
- export interface GridListBaseProps extends Pick<FlatListProps<any>, 'style' | 'contentContainerStyle' | 'columnWrapperStyle'> {
3
- /**
4
- * Allow a responsive item width to the maximum item width
5
- */
6
- maxItemWidth?: number;
7
- /**
8
- * Number of items to show in a row (ignored when passing maxItemWidth)
9
- */
10
- numColumns?: number;
11
- /**
12
- * Spacing between each item
13
- */
14
- itemSpacing?: number;
15
- /**
16
- * List padding (used for item size calculation)
17
- */
18
- listPadding?: number;
19
- /**
20
- * whether to keep the items initial size when orientation changes,
21
- * in which case the apt number of columns will be calculated automatically.
22
- */
23
- keepItemSize?: boolean;
24
- /**
25
- * Pass when you want to use a custom container width for calculation
26
- */
27
- containerWidth?: number;
28
- }
29
- export type GridListProps<T = any> = GridListBaseProps & FlatListProps<T>;