react-native-ui-lib 8.1.1 → 8.1.7-snapshot.7597
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/android/build.gradle +32 -0
- package/lib/android/src/main/AndroidManifest.xml +4 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/UiLibPackageList.java +28 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/dynamicfont/DynamicFontModule.java +139 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/dynamicfont/DynamicFontPackage.java +28 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlightFrame.java +33 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlightViewTagParams.java +50 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterView.java +167 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewManager.java +131 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewPackage.java +28 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/UiUtils.java +50 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/AppContextHolder.java +52 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardLayout.java +213 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootView.java +39 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootViewManager.java +29 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootViewShadow.java +29 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/KeyboardInputModule.java +34 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/KeyboardInputPackage.java +49 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactContextHolder.java +16 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactScreenMonitor.java +83 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactSoftKeyboardMonitor.java +163 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/PredicateFunc.java +5 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/RuntimeUtils.java +33 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/ViewUtils.java +65 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/utils/LogForwarder.java +45 -0
- package/lib/android/src/main/res/layout/wheel_picker.xml +9 -0
- package/lib/android/src/main/res/values/colors.xml +9 -0
- package/lib/android/src/main/res/values/styles.xml +9 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/keyboardRegistry.api.json +50 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/keyboardAccessoryView.api.json +58 -0
- package/lib/components/Keyboard/KeyboardAwareInsetsView/keyboardAwareInsetsView.api.json +14 -0
- package/lib/components/Keyboard/KeyboardTrackingView/keyboardTrackingView.api.json +86 -0
- package/lib/ios/reactnativeuilib/dynamicfont/DynamicFont.h +9 -0
- package/lib/ios/reactnativeuilib/dynamicfont/DynamicFont.m +115 -0
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterView.h +19 -0
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterView.m +216 -0
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterViewManager.h +6 -0
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterViewManager.m +28 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/Color+Interpolation.h +39 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/Color+Interpolation.m +160 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNAnimatorTemp.h +36 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNAnimatorTemp.m +121 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolable.h +48 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolable.m +27 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolation.h +16 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/NSValue+Interpolation.h +19 -0
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/NSValue+Interpolation.mm +155 -0
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.h +16 -0
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.m +450 -0
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.h +18 -0
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.m +99 -0
- package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.h +14 -0
- package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.m +827 -0
- package/lib/ios/reactnativeuilib/keyboardtrackingview/ObservingInputAccessoryViewTemp.h +44 -0
- package/lib/ios/reactnativeuilib/keyboardtrackingview/ObservingInputAccessoryViewTemp.m +171 -0
- package/lib/ios/reactnativeuilib/keyboardtrackingview/UIResponder+FirstResponderTemp.h +6 -0
- package/lib/ios/reactnativeuilib/keyboardtrackingview/UIResponder+FirstResponderTemp.m +17 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaManager.h +6 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaManager.m +105 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerShadowView.h +5 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerShadowView.m +20 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerView.h +7 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerView.m +76 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewLocalData.h +9 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewLocalData.m +14 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewManager.h +5 -0
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewManager.m +26 -0
- package/lib/ios/reactnativeuilib.xcodeproj/project.pbxproj +435 -0
- package/package.json +2 -3
- package/src/assets/Assets.d.ts +5 -0
- package/src/assets/emojis/index.d.ts +1343 -0
- package/src/assets/index.d.ts +3 -0
- package/src/assets/internal/index.d.ts +4 -0
- package/src/commons/Config.d.ts +24 -0
- package/src/commons/Constants.d.ts +54 -0
- package/src/commons/UIComponent.d.ts +4 -0
- package/src/commons/asBaseComponent.d.ts +15 -0
- package/src/commons/baseComponent.d.ts +2 -0
- package/src/commons/forwardRef.d.ts +8 -0
- package/src/commons/modifiers.d.ts +118 -0
- package/src/commons/new.d.ts +8 -0
- package/src/commons/withScrollEnabler.d.ts +13 -0
- package/src/commons/withScrollReached.d.ts +35 -0
- package/src/components/WheelPicker/Item.d.ts +28 -0
- package/src/components/WheelPicker/WheelPicker.driver.d.ts +18 -0
- package/src/components/WheelPicker/WheelPickerItem.driver.d.ts +8 -0
- package/src/components/WheelPicker/helpers/useListMiddleIndex.d.ts +6 -0
- package/src/components/WheelPicker/index.d.ts +88 -0
- package/src/components/WheelPicker/types.d.ts +6 -0
- package/src/components/WheelPicker/usePresenter.d.ts +21 -0
- package/src/components/actionBar/index.d.ts +35 -0
- package/src/components/actionSheet/index.d.ts +80 -0
- package/src/components/animatedImage/index.d.ts +28 -0
- package/src/components/avatar/index.d.ts +382 -0
- package/src/components/badge/index.d.ts +879 -0
- package/src/components/baseInput/Validators.d.ts +8 -0
- package/src/components/baseInput/index.d.ts +29 -0
- package/src/components/button/Button.driver.new.d.ts +34 -0
- package/src/components/button/ButtonConstants.d.ts +26 -0
- package/src/components/button/index.d.ts +573 -0
- package/src/components/button/types.d.ts +157 -0
- package/src/components/card/CardContext.d.ts +3 -0
- package/src/components/card/CardImage.d.ts +20 -0
- package/src/components/card/CardPresenter.d.ts +12 -0
- package/src/components/card/CardSection.d.ts +79 -0
- package/src/components/card/asCardChild.d.ts +6 -0
- package/src/components/card/index.d.ts +120 -0
- package/src/components/carousel/Carousel.driver.new.d.ts +9 -0
- package/src/components/carousel/CarouselPresenter.d.ts +9 -0
- package/src/components/carousel/index.d.ts +73 -0
- package/src/components/carousel/types.d.ts +107 -0
- package/src/components/checkbox/Checkbox.driver.d.ts +15 -0
- package/src/components/checkbox/index.d.ts +129 -0
- package/src/components/chip/chip.driver.d.ts +33 -0
- package/src/components/chip/index.d.ts +209 -0
- package/src/components/chipsInput/index.d.ts +55 -0
- package/src/components/colorPalette/index.d.ts +116 -0
- package/src/components/colorPicker/ColorPickerDialog.d.ts +39 -0
- package/src/components/colorPicker/ColorPickerDialogHeader.d.ts +9 -0
- package/src/components/colorPicker/ColorPickerDialogSliders.d.ts +10 -0
- package/src/components/colorPicker/ColorPickerPresenter.d.ts +16 -0
- package/src/components/colorPicker/ColorPickerPreview.d.ts +12 -0
- package/src/components/colorPicker/index.d.ts +45 -0
- package/src/components/colorSwatch/index.d.ts +50 -0
- package/src/components/connectionStatusBar/index.d.ts +33 -0
- package/src/components/connectionStatusBar/types.d.ts +28 -0
- package/src/components/dash/index.d.ts +19 -0
- package/src/components/dateTimePicker/DateTimePicker.driver.d.ts +7 -0
- package/src/components/dateTimePicker/index.d.ts +288 -0
- package/src/components/dateTimePicker/useOldApi.d.ts +27 -0
- package/src/components/dialog/Dialog.driver.new.d.ts +6 -0
- package/src/components/dialog/DialogHeader.d.ts +4 -0
- package/src/components/dialog/index.d.ts +15 -0
- package/src/components/dialog/types.d.ts +138 -0
- package/src/components/dialog/useDialogContent.d.ts +13 -0
- package/src/components/drawer/Swipeable.d.ts +94 -0
- package/src/components/drawer/index.d.ts +161 -0
- package/src/components/expandableSection/index.d.ts +40 -0
- package/src/components/fadedScrollView/index.d.ts +59 -0
- package/src/components/fader/index.d.ts +37 -0
- package/src/components/featureHighlight/index.d.ts +147 -0
- package/src/components/floatingButton/index.d.ts +89 -0
- package/src/components/gradient/index.d.ts +19 -0
- package/src/components/gridList/index.d.ts +5 -0
- package/src/components/gridList/types.d.ts +29 -0
- package/src/components/gridList/useGridLayout.d.ts +15 -0
- package/src/components/gridListItem/index.d.ts +132 -0
- package/src/components/gridView/index.d.ts +80 -0
- package/src/components/hint/Hint.driver.d.ts +6 -0
- package/src/components/hint/Hint.driver.new.d.ts +19 -0
- package/src/components/hint/HintAnchor.d.ts +13 -0
- package/src/components/hint/HintBubble.d.ts +12 -0
- package/src/components/hint/HintMockChildren.d.ts +8 -0
- package/src/components/hint/HintOld.d.ts +196 -0
- package/src/components/hint/hooks/useHintAccessibility.d.ts +10 -0
- package/src/components/hint/hooks/useHintLayout.d.ts +13 -0
- package/src/components/hint/hooks/useHintPosition.d.ts +29 -0
- package/src/components/hint/hooks/useHintVisibility.d.ts +6 -0
- package/src/components/hint/index.d.ts +14 -0
- package/src/components/hint/types.d.ts +106 -0
- package/src/components/icon/index.d.ts +97 -0
- package/src/components/image/Image.driver.d.ts +4 -0
- package/src/components/image/Image.driver.new.d.ts +2 -0
- package/src/components/image/index.d.ts +192 -0
- package/src/components/listItem/ListItemPart.d.ts +15 -0
- package/src/components/listItem/index.d.ts +52 -0
- package/src/components/listItem/types.d.ts +60 -0
- package/src/components/loaderScreen/index.d.ts +13 -0
- package/src/components/loaderScreen/types.d.ts +32 -0
- package/src/components/marquee/index.d.ts +5 -0
- package/src/components/marquee/types.d.ts +35 -0
- package/src/components/maskedInput/index.d.ts +5 -0
- package/src/components/maskedInput/new.d.ts +22 -0
- package/src/components/modal/Modal.driver.new.d.ts +8 -0
- package/src/components/modal/TopBar.d.ts +89 -0
- package/src/components/modal/index.d.ts +64 -0
- package/src/components/numberInput/NumberInput.driver.d.ts +6 -0
- package/src/components/numberInput/Presenter.d.ts +21 -0
- package/src/components/numberInput/index.d.ts +57 -0
- package/src/components/overlay/index.d.ts +68 -0
- package/src/components/pageControl/index.d.ts +56 -0
- package/src/components/panView/index.d.ts +21 -0
- package/src/components/panView/panningUtil.d.ts +38 -0
- package/src/components/panView/usePanGesture.d.ts +49 -0
- package/src/components/picker/Picker.driver.new.d.ts +44 -0
- package/src/components/picker/PickerContext.d.ts +4 -0
- package/src/components/picker/PickerItem.d.ts +11 -0
- package/src/components/picker/PickerItemsList.d.ts +4 -0
- package/src/components/picker/PickerPresenter.d.ts +7 -0
- package/src/components/picker/PickerSelectionStatusBar.d.ts +3 -0
- package/src/components/picker/helpers/useFieldType.d.ts +373 -0
- package/src/components/picker/helpers/useImperativePickerHandle.d.ts +5 -0
- package/src/components/picker/helpers/useNewPickerProps.d.ts +3 -0
- package/src/components/picker/helpers/usePickerLabel.d.ts +17 -0
- package/src/components/picker/helpers/usePickerMigrationWarnings.d.ts +4 -0
- package/src/components/picker/helpers/usePickerSearch.d.ts +9 -0
- package/src/components/picker/helpers/usePickerSelection.d.ts +16 -0
- package/src/components/picker/index.d.ts +15 -0
- package/src/components/picker/types.d.ts +321 -0
- package/src/components/pieChart/PieSegment.d.ts +34 -0
- package/src/components/pieChart/index.d.ts +15 -0
- package/src/components/progressBar/index.d.ts +65 -0
- package/src/components/progressiveImage/index.d.ts +23 -0
- package/src/components/radioButton/RadioButton.driver.d.ts +9 -0
- package/src/components/radioButton/index.d.ts +121 -0
- package/src/components/radioGroup/RadioGroup.driver.d.ts +13 -0
- package/src/components/radioGroup/RadioGroupContext.d.ts +14 -0
- package/src/components/radioGroup/asRadioGroupChild.d.ts +2 -0
- package/src/components/radioGroup/index.d.ts +47 -0
- package/src/components/scrollBar/index.d.ts +88 -0
- package/src/components/searchInput/index.d.ts +37 -0
- package/src/components/searchInput/types.d.ts +66 -0
- package/src/components/sectionsWheelPicker/SectionsWheelPicker.driver.d.ts +25 -0
- package/src/components/sectionsWheelPicker/index.d.ts +43 -0
- package/src/components/segmentedControl/index.d.ts +90 -0
- package/src/components/segmentedControl/segment.d.ts +111 -0
- package/src/components/segmentedControl/useSegmentedControlPreset.d.ts +10 -0
- package/src/components/skeletonView/index.d.ts +163 -0
- package/src/components/slider/ColorSliderGroup.d.ts +13 -0
- package/src/components/slider/GradientSlider.d.ts +20 -0
- package/src/components/slider/SliderContext.d.ts +8 -0
- package/src/components/slider/Thumb.d.ts +32 -0
- package/src/components/slider/index.d.ts +31 -0
- package/src/components/slider/slider.driver.d.ts +5 -0
- package/src/components/slider/types.d.ts +197 -0
- package/src/components/sortableGridList/SortableItem.d.ts +6 -0
- package/src/components/sortableGridList/index.d.ts +5 -0
- package/src/components/sortableGridList/types.d.ts +34 -0
- package/src/components/sortableGridList/usePresenter.d.ts +21 -0
- package/src/components/sortableList/SortableList.driver.new.d.ts +2 -0
- package/src/components/sortableList/SortableListContext.d.ts +19 -0
- package/src/components/sortableList/SortableListItem.d.ts +8 -0
- package/src/components/sortableList/SortableListItem.driver.new.d.ts +11 -0
- package/src/components/sortableList/index.d.ts +5 -0
- package/src/components/sortableList/types.d.ts +48 -0
- package/src/components/sortableList/usePresenter.d.ts +12 -0
- package/src/components/stackAggregator/assets/arrow-down.png +0 -0
- package/src/components/stackAggregator/assets/arrow-down@2x.png +0 -0
- package/src/components/stackAggregator/assets/arrow-down@3x.png +0 -0
- package/src/components/stackAggregator/index.d.ts +89 -0
- package/src/components/stateScreen/index.d.ts +5 -0
- package/src/components/stateScreen/types.d.ts +30 -0
- package/src/components/stepper/index.d.ts +47 -0
- package/src/components/svgImage/index.d.ts +14 -0
- package/src/components/svgImage/index.web.d.ts +18 -0
- package/src/components/switch/index.d.ts +102 -0
- package/src/components/switch/switch.driver.d.ts +18 -0
- package/src/components/tabController/PageCarousel.d.ts +9 -0
- package/src/components/tabController/TabBar.d.ts +97 -0
- package/src/components/tabController/TabBarContext.d.ts +18 -0
- package/src/components/tabController/TabBarItem.d.ts +105 -0
- package/src/components/tabController/TabPage.d.ts +33 -0
- package/src/components/tabController/index.d.ts +48 -0
- package/src/components/tabController/useImperativeTabControllerHandle.d.ts +6 -0
- package/src/components/tabController/useScrollToItem.d.ts +79 -0
- package/src/components/text/Text.driver.d.ts +7 -0
- package/src/components/text/Text.driver.new.d.ts +17 -0
- package/src/components/text/index.d.ts +195 -0
- package/src/components/textField/CharCounter.d.ts +7 -0
- package/src/components/textField/ClearButton.d.ts +4 -0
- package/src/components/textField/FieldContext.d.ts +4 -0
- package/src/components/textField/FloatingPlaceholder.d.ts +7 -0
- package/src/components/textField/Input.d.ts +8 -0
- package/src/components/textField/Label.d.ts +7 -0
- package/src/components/textField/Presenter.d.ts +7 -0
- package/src/components/textField/TextField.driver.new.d.ts +129 -0
- package/src/components/textField/ValidationMessage.d.ts +7 -0
- package/src/components/textField/index.d.ts +114 -0
- package/src/components/textField/presets/outline.d.ts +737 -0
- package/src/components/textField/presets/underline.d.ts +735 -0
- package/src/components/textField/textInput/index.d.ts +1 -0
- package/src/components/textField/textInput/index.web.d.ts +3 -0
- package/src/components/textField/types.d.ts +287 -0
- package/src/components/textField/useFieldState.d.ts +16 -0
- package/src/components/textField/useImperativeInputHandle.d.ts +4 -0
- package/src/components/textField/usePreset.d.ts +1696 -0
- package/src/components/textField/validators.d.ts +9 -0
- package/src/components/textFieldOld/index.d.ts +71 -0
- package/src/components/timeline/Line.d.ts +10 -0
- package/src/components/timeline/Point.d.ts +9 -0
- package/src/components/timeline/index.d.ts +11 -0
- package/src/components/timeline/line.driver.d.ts +10 -0
- package/src/components/timeline/point.driver.d.ts +8 -0
- package/src/components/timeline/timeline.driver.d.ts +25 -0
- package/src/components/timeline/types.d.ts +50 -0
- package/src/components/touchableOpacity/index.d.ts +50 -0
- package/src/components/view/View.driver.new.d.ts +7 -0
- package/src/components/view/index.d.ts +46 -0
- package/src/components/wizard/WizardStates.d.ts +2 -0
- package/src/components/wizard/WizardStep.d.ts +4 -0
- package/src/components/wizard/index.d.ts +31 -0
- package/src/components/wizard/types.d.ts +90 -0
- package/src/helpers/AvatarHelper.d.ts +9 -0
- package/src/helpers/FormattingPresenter.d.ts +6 -0
- package/src/helpers/Profiler.d.ts +22 -0
- package/src/helpers/index.d.ts +3 -0
- package/src/hooks/index.d.ts +14 -0
- package/src/hooks/useCombinedRefs/index.d.ts +3 -0
- package/src/hooks/useDebounce/index.d.ts +5 -0
- package/src/hooks/useDidUpdate/index.d.ts +6 -0
- package/src/hooks/useHiddenLocation/index.d.ts +13 -0
- package/src/hooks/useHiddenLocation/index.web.d.ts +13 -0
- package/src/hooks/useKeyboardHeight/index.d.ts +5 -0
- package/src/hooks/useMeasure/index.d.ts +15 -0
- package/src/hooks/useModifiers/index.d.ts +3 -0
- package/src/hooks/useOrientation/index.d.ts +7 -0
- package/src/hooks/useScrollEnabler/index.d.ts +23 -0
- package/src/hooks/useScrollReached/index.d.ts +28 -0
- package/src/hooks/useScrollTo/index.d.ts +37 -0
- package/src/hooks/useScrollToItem/index.d.ts +65 -0
- package/src/hooks/useThemeProps/index.d.ts +2 -0
- package/src/hooks/useToggleValue/index.d.ts +2 -0
- package/src/incubator/TouchableOpacity.d.ts +52 -0
- package/src/incubator/calendar/Agenda.d.ts +4 -0
- package/src/incubator/calendar/CalendarContext.d.ts +4 -0
- package/src/incubator/calendar/CalendarItem.d.ts +5 -0
- package/src/incubator/calendar/Day.d.ts +4 -0
- package/src/incubator/calendar/Day_OLD.d.ts +4 -0
- package/src/incubator/calendar/Header.d.ts +4 -0
- package/src/incubator/calendar/Month.d.ts +4 -0
- package/src/incubator/calendar/TodayButton.d.ts +4 -0
- package/src/incubator/calendar/Week.d.ts +4 -0
- package/src/incubator/calendar/WeekDaysNames.d.ts +4 -0
- package/src/incubator/calendar/helpers/CalendarProcessor.d.ts +2 -0
- package/src/incubator/calendar/helpers/DataProcessor.d.ts +2 -0
- package/src/incubator/calendar/helpers/DateUtils.d.ts +23 -0
- package/src/incubator/calendar/index.d.ts +7 -0
- package/src/incubator/calendar/types.d.ts +118 -0
- package/src/incubator/expandableOverlay/ExpandableOverlay.driver.d.ts +7 -0
- package/src/incubator/expandableOverlay/index.d.ts +83 -0
- package/src/incubator/gradient/BorderGradient.d.ts +4 -0
- package/src/incubator/gradient/CircleGradient.d.ts +4 -0
- package/src/incubator/gradient/RectangleGradient.d.ts +4 -0
- package/src/incubator/gradient/index.d.ts +5 -0
- package/src/incubator/gradient/types.d.ts +26 -0
- package/src/incubator/gradient/useAngleTransform.d.ts +27 -0
- package/src/incubator/index.d.ts +9 -0
- package/src/incubator/slider/Slider.driver.d.ts +5 -0
- package/src/incubator/slider/SliderPresenter.d.ts +6 -0
- package/src/incubator/slider/Thumb.d.ts +24 -0
- package/src/incubator/slider/Track.d.ts +13 -0
- package/src/incubator/slider/index.d.ts +139 -0
- package/src/incubator/toast/Toast.driver.new.d.ts +54 -0
- package/src/incubator/toast/helpers/useToastAnimation.d.ts +22 -0
- package/src/incubator/toast/helpers/useToastPresets.d.ts +8 -0
- package/src/incubator/toast/helpers/useToastTimer.d.ts +6 -0
- package/src/incubator/toast/index.d.ts +9 -0
- package/src/incubator/toast/index.js +4 -1
- package/src/incubator/toast/types.d.ts +111 -0
- package/src/index.d.ts +92 -0
- package/src/optionalDependencies/BlurViewPackage.d.ts +2 -0
- package/src/optionalDependencies/BlurViewPackage.web.d.ts +2 -0
- package/src/optionalDependencies/DateTimePickerPackage.d.ts +2 -0
- package/src/optionalDependencies/FlashListPackage.d.ts +2 -0
- package/src/optionalDependencies/HapticFeedbackPackage.d.ts +2 -0
- package/src/optionalDependencies/LinearGradientPackage.d.ts +2 -0
- package/src/optionalDependencies/MomentPackage.d.ts +2 -0
- package/src/optionalDependencies/NetInfoPackage.d.ts +2 -0
- package/src/optionalDependencies/PostCssPackage.d.ts +5 -0
- package/src/optionalDependencies/ShimmerPackage.d.ts +2 -0
- package/src/optionalDependencies/SvgPackage.d.ts +3 -0
- package/src/optionalDependencies/index.d.ts +9 -0
- package/src/optionalDependencies/index.web.d.ts +7 -0
- package/src/services/HapticService.d.ts +15 -0
- package/src/services/LogService.d.ts +35 -0
- package/src/services/index.d.ts +2 -0
- package/src/style/borderRadiuses.d.ts +30 -0
- package/src/style/colorName.d.ts +8 -0
- package/src/style/colorNameMap.d.ts +2 -0
- package/src/style/colors.d.ts +274 -0
- package/src/style/colorsPalette.d.ts +101 -0
- package/src/style/components.d.ts +15 -0
- package/src/style/componentsColors.d.ts +5 -0
- package/src/style/designTokens.d.ts +69 -0
- package/src/style/designTokensDM.d.ts +69 -0
- package/src/style/dividers.d.ts +11 -0
- package/src/style/index.d.ts +13 -0
- package/src/style/scheme.d.ts +57 -0
- package/src/style/shadows.d.ts +223 -0
- package/src/style/spacings.d.ts +32 -0
- package/src/style/themeManager.d.ts +22 -0
- package/src/style/typography.d.ts +26 -0
- package/src/style/typographyPresets.d.ts +7 -0
- package/src/testkit/Component.driver.d.ts +30 -0
- package/src/testkit/DriverException.d.ts +12 -0
- package/src/testkit/UniDriver.d.ts +29 -0
- package/src/testkit/drivers/TestingLibraryDriver.d.ts +26 -0
- package/src/testkit/drivers/TestingLibraryDriver.js +1 -2
- package/src/testkit/index.d.ts +25 -0
- package/src/testkit/new/Component.driver.d.ts +16 -0
- package/src/testkit/new/useDraggable.driver.d.ts +15 -0
- package/src/testkit/new/usePressable.driver.d.ts +14 -0
- package/src/testkit/new/useScrollable.driver.d.ts +13 -0
- package/src/typings/assets.d.ts +52 -0
- package/src/typings/common.d.ts +12 -0
- package/src/typings/module.d.ts +13 -0
- package/src/typings/recorderTypes.d.ts +13 -0
- package/src/uilib-test-renderer/helper.d.ts +8 -0
- package/src/uilib-test-renderer/index.d.ts +4 -0
- package/src/uilib-test-renderer/scrollViewHelper.d.ts +9 -0
- package/src/utils/dateUtils.d.ts +2 -0
- package/src/utils/imageUtils.d.ts +5 -0
- package/src/utils/index.d.ts +4 -0
- package/src/utils/styleUtils.d.ts +7 -0
- package/src/utils/textUtils.d.ts +8 -0
- package/jestSetup/jest-setup.js +0 -154
- package/lib/components/DynamicFonts/FontDownloader.d.js +0 -1
- package/lib/components/DynamicFonts/FontLoader.d.js +0 -1
- package/lib/components/DynamicFonts/NoPermissionsAcquirer.d.js +0 -1
- package/lib/components/DynamicFonts/PermissionsAcquirer.android.d.js +0 -1
- package/lib/components/DynamicFonts/PermissionsAcquirer.ios.d.js +0 -2
- package/lib/components/DynamicFonts/PermissionsAcquirer.web.d.js +0 -2
- package/lib/components/DynamicFonts/RNFSPackage.d.js +0 -1
- package/lib/components/DynamicFonts/index.d.js +0 -3
- package/lib/components/HighlighterOverlayView/index.d.js +0 -1
- package/lib/components/HighlighterOverlayView/index.web.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.android.d.js +0 -2
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.ios.d.js +0 -2
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardViewBase.d.js +0 -2
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/index.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/index.web.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/index.d.js +0 -5
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/TextInputKeyboardManager.android.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/TextInputKeyboardManager.ios.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/index.d.js +0 -1
- package/lib/components/Keyboard/KeyboardAccessoryView/index.d.js +0 -7
- package/lib/components/Keyboard/KeyboardAwareInsetsView/index.d.js +0 -1
- package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingView.android.d.js +0 -1
- package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingView.ios.d.js +0 -10
- package/lib/components/Keyboard/KeyboardTrackingView/index.d.js +0 -1
- package/lib/components/Keyboard/KeyboardTrackingView/index.web.d.js +0 -1
- package/lib/components/Keyboard/index.d.js +0 -4
- package/lib/components/SafeArea/SafeAreaInsetsManager.d.js +0 -1
- package/lib/components/SafeArea/SafeAreaSpacerView.d.js +0 -1
- package/lib/components/SafeArea/SafeAreaSpacerView.web.d.js +0 -1
- package/lib/components/SafeArea/index.d.js +0 -1
- package/lib/components/index.d.js +0 -6
- package/lib/scripts/releaseNative.js +0 -72
- package/lib/specs/HighlighterViewNativeComponent.d.js +0 -1
- package/lib/specs/HighlighterViewNativeComponent.d.ts +0 -61
- package/lib/specs/HighlighterViewNativeComponent.js +0 -8
- package/lib/specs/KeyboardTrackingViewNativeComponent.d.js +0 -1
- package/lib/specs/KeyboardTrackingViewNativeComponent.d.ts +0 -58
- package/lib/specs/KeyboardTrackingViewNativeComponent.js +0 -8
- package/scripts/build/.babelrc.exports.js +0 -6
- package/scripts/build/build.js +0 -35
- package/scripts/build/buildPackages/buildComponentsPackages.js +0 -18
- package/scripts/build/buildPackages/buildCustomPackages.js +0 -106
- package/scripts/build/buildPackages/index.js +0 -6
- package/scripts/createCalendarMockData.js +0 -37
- package/scripts/docs/buildDocs.js +0 -1
- package/scripts/prepush.js +0 -71
- package/scripts/release/prReleaseNotes.js +0 -6
- package/scripts/release/release.js +0 -99
- package/scripts/updateWebAssets.js +0 -88
- package/scripts/utils.js +0 -21
- package/src/assets/__tests__/Assets.spec.js +0 -110
- package/src/commons/__tests__/baseComponent.spec.js +0 -36
- package/src/commons/__tests__/constants.spec.js +0 -202
- package/src/commons/__tests__/modifiers.spec.js +0 -453
- package/src/components/WheelPicker/__tests__/index.spec.js +0 -121
- package/src/components/WheelPicker/__tests__/useListMiddleIndex.spec.js +0 -40
- package/src/components/WheelPicker/__tests__/usePresenter.spec.js +0 -87
- package/src/components/avatar/__tests__/index.spec.js +0 -25
- package/src/components/badge/__tests__/index.spec.js +0 -84
- package/src/components/button/__tests__/index.driver.spec.js +0 -209
- package/src/components/button/__tests__/index.spec.js +0 -287
- package/src/components/card/__tests__/CardPresenter.spec.js +0 -35
- package/src/components/carousel/__tests__/CarouselPresenter.spec.js +0 -52
- package/src/components/carousel/__tests__/index.spec.js +0 -89
- package/src/components/checkbox/__tests__/index.spec.js +0 -357
- package/src/components/chip/__tests__/index.spec.js +0 -63
- package/src/components/connectionStatusBar/__tests__/index.spec.js +0 -41
- package/src/components/dateTimePicker/__tests__/index.spec.js +0 -44
- package/src/components/dialog/__tests__/index.new.spec.js +0 -118
- package/src/components/featureHighlight/__tests__/index.spec.js +0 -76
- package/src/components/floatingButton/__tests__/index.spec.js +0 -229
- package/src/components/hint/__tests__/index.spec.js +0 -108
- package/src/components/image/__tests__/index.spec.js +0 -56
- package/src/components/maskedInput/__tests__/maskedInput.new.spec.js +0 -19
- package/src/components/maskedInput/__tests__/maskedInput.old.spec.js +0 -20
- package/src/components/modal/__tests__/index.spec.js +0 -58
- package/src/components/numberInput/__tests__/Presenter.spec.js +0 -374
- package/src/components/numberInput/__tests__/index.spec.js +0 -38
- package/src/components/panView/__tests__/panningUtil.spec.js +0 -693
- package/src/components/picker/__tests__/PickerPresenter.spec.js +0 -15
- package/src/components/picker/__tests__/index.spec.js +0 -364
- package/src/components/picker/helpers/__tests__/usePickerLabel.spec.js +0 -96
- package/src/components/radioButton/__tests__/index.spec.js +0 -43
- package/src/components/radioGroup/__tests__/index.spec.js +0 -96
- package/src/components/sectionsWheelPicker/__tests__/index.spec.js +0 -35
- package/src/components/sectionsWheelPicker/__tests__/mockSections.js +0 -28
- package/src/components/segmentedControl/__tests__/index.spec.js +0 -25
- package/src/components/slider/__tests__/index.spec.js +0 -35
- package/src/components/sortableGridList/__tests__/index.spec.js +0 -51
- package/src/components/sortableGridList/__tests__/usePresenter.spec.js +0 -231
- package/src/components/sortableList/__tests__/index.spec.js +0 -105
- package/src/components/switch/__tests__/index.spec.js +0 -96
- package/src/components/text/__tests__/index.driver.spec.js +0 -124
- package/src/components/text/__tests__/index.spec.js +0 -245
- package/src/components/textField/__tests__/Presenter.spec.js +0 -240
- package/src/components/textField/__tests__/index.driver.spec.js +0 -639
- package/src/components/timeline/__tests__/driver.index.spec.js +0 -133
- package/src/helpers/__tests__/AvatarHelper.spec.js +0 -170
- package/src/hooks/useDidUpdate/__tests__/useDidUpdate.spec.js +0 -80
- package/src/hooks/useOrientation/__tests__/useOrientation.spec.js +0 -70
- package/src/hooks/useToggleValue/__tests__/useToggleValue.spec.js +0 -89
- package/src/incubator/calendar/__tests__/DateUtils.spec.js +0 -367
- package/src/incubator/expandableOverlay/__tests__/index.spec.js +0 -114
- package/src/incubator/gradient/__tests__/useAngleTransform.spec.js +0 -126
- package/src/incubator/slider/__tests__/SliderPresenter.spec.js +0 -43
- package/src/incubator/slider/__tests__/index.spec.js +0 -34
- package/src/incubator/toast/__tests__/index.spec.js +0 -64
- package/src/style/__tests__/colors.spec.js +0 -313
- package/src/style/__tests__/scheme.spec.js +0 -119
- package/src/utils/__tests__/Playground.perf.js +0 -14
- package/src/utils/__tests__/imageUtils.spec.js +0 -54
- package/src/utils/__tests__/textUtils.spec.js +0 -446
|
@@ -0,0 +1,435 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 48;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
101C2DED2AA5CE4700AFCFFD /* DynamicFont.m in Sources */ = {isa = PBXBuildFile; fileRef = 101C2DEC2AA5CE4700AFCFFD /* DynamicFont.m */; };
|
|
11
|
+
1054385623BBA1C200D04E48 /* ObservingInputAccessoryViewTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1054385523BBA1C200D04E48 /* ObservingInputAccessoryViewTemp.m */; };
|
|
12
|
+
1054385923BBA27900D04E48 /* UIResponder+FirstResponderTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1054385823BBA27900D04E48 /* UIResponder+FirstResponderTemp.m */; };
|
|
13
|
+
1054385C23BC748700D04E48 /* KeyboardTrackingViewTempManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1054385A23BC748700D04E48 /* KeyboardTrackingViewTempManager.m */; };
|
|
14
|
+
1054776424B47EA800D2026D /* RCTCustomKeyboardViewControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1054776324B47EA800D2026D /* RCTCustomKeyboardViewControllerTemp.m */; };
|
|
15
|
+
10823FBE23B0BAA200429E9A /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 10823FBD23B0BAA200429E9A /* Color+Interpolation.m */; };
|
|
16
|
+
10823FC223B0BE9100429E9A /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 10823FC123B0BE9100429E9A /* LNInterpolable.m */; };
|
|
17
|
+
10823FC623B0BF0C00429E9A /* NSValue+Interpolation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 10823FC523B0BF0C00429E9A /* NSValue+Interpolation.mm */; };
|
|
18
|
+
1098BE4B246034EB0020440A /* LNAnimatorTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1098BE4A246034EB0020440A /* LNAnimatorTemp.m */; };
|
|
19
|
+
1098BE4E246035090020440A /* RCTCustomInputControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1098BE4D246035090020440A /* RCTCustomInputControllerTemp.m */; };
|
|
20
|
+
D8AFAC9F204E004D00D28FED /* SafeAreaSpacerViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AFAC99204E004C00D28FED /* SafeAreaSpacerViewManager.m */; };
|
|
21
|
+
D8AFACA0204E004D00D28FED /* SafeAreaSpacerShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AFAC9A204E004C00D28FED /* SafeAreaSpacerShadowView.m */; };
|
|
22
|
+
D8AFACA1204E004D00D28FED /* SafeAreaSpacerViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AFAC9D204E004C00D28FED /* SafeAreaSpacerViewLocalData.m */; };
|
|
23
|
+
D8AFACA2204E004D00D28FED /* SafeAreaSpacerView.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AFAC9E204E004D00D28FED /* SafeAreaSpacerView.m */; };
|
|
24
|
+
D8D93E7520161B1F00A39331 /* HighlighterView.m in Sources */ = {isa = PBXBuildFile; fileRef = D8D93E7220161B1F00A39331 /* HighlighterView.m */; };
|
|
25
|
+
D8D93E7620161B1F00A39331 /* HighlighterViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8D93E7420161B1F00A39331 /* HighlighterViewManager.m */; };
|
|
26
|
+
D8E5A538204C4F170000DA01 /* SafeAreaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E5A537204C4F170000DA01 /* SafeAreaManager.m */; };
|
|
27
|
+
/* End PBXBuildFile section */
|
|
28
|
+
|
|
29
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
30
|
+
D8D93E6220161A7F00A39331 /* CopyFiles */ = {
|
|
31
|
+
isa = PBXCopyFilesBuildPhase;
|
|
32
|
+
buildActionMask = 2147483647;
|
|
33
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
|
34
|
+
dstSubfolderSpec = 16;
|
|
35
|
+
files = (
|
|
36
|
+
);
|
|
37
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
38
|
+
};
|
|
39
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
40
|
+
|
|
41
|
+
/* Begin PBXFileReference section */
|
|
42
|
+
101C2DEB2AA5CDE800AFCFFD /* DynamicFont.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DynamicFont.h; sourceTree = "<group>"; };
|
|
43
|
+
101C2DEC2AA5CE4700AFCFFD /* DynamicFont.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DynamicFont.m; sourceTree = "<group>"; };
|
|
44
|
+
1054385423BBA1B800D04E48 /* ObservingInputAccessoryViewTemp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ObservingInputAccessoryViewTemp.h; sourceTree = "<group>"; };
|
|
45
|
+
1054385523BBA1C200D04E48 /* ObservingInputAccessoryViewTemp.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ObservingInputAccessoryViewTemp.m; sourceTree = "<group>"; };
|
|
46
|
+
1054385723BBA26800D04E48 /* UIResponder+FirstResponderTemp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIResponder+FirstResponderTemp.h"; sourceTree = "<group>"; };
|
|
47
|
+
1054385823BBA27900D04E48 /* UIResponder+FirstResponderTemp.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+FirstResponderTemp.m"; sourceTree = "<group>"; };
|
|
48
|
+
1054385A23BC748700D04E48 /* KeyboardTrackingViewTempManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeyboardTrackingViewTempManager.m; sourceTree = "<group>"; };
|
|
49
|
+
1054385B23BC748700D04E48 /* KeyboardTrackingViewTempManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyboardTrackingViewTempManager.h; sourceTree = "<group>"; };
|
|
50
|
+
1054776324B47EA800D2026D /* RCTCustomKeyboardViewControllerTemp.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewControllerTemp.m; sourceTree = "<group>"; };
|
|
51
|
+
1054776524B47EB800D2026D /* RCTCustomKeyboardViewControllerTemp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewControllerTemp.h; sourceTree = "<group>"; };
|
|
52
|
+
10823FB823B0B9D000429E9A /* Color+Interpolation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = "<group>"; };
|
|
53
|
+
10823FBA23B0B9ED00429E9A /* LNInterpolable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = "<group>"; };
|
|
54
|
+
10823FBB23B0B9FA00429E9A /* LNInterpolation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = "<group>"; };
|
|
55
|
+
10823FBC23B0BA0900429E9A /* NSValue+Interpolation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = "<group>"; };
|
|
56
|
+
10823FBD23B0BAA200429E9A /* Color+Interpolation.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = "<group>"; };
|
|
57
|
+
10823FC123B0BE9100429E9A /* LNInterpolable.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = "<group>"; };
|
|
58
|
+
10823FC523B0BF0C00429E9A /* NSValue+Interpolation.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = "NSValue+Interpolation.mm"; sourceTree = "<group>"; };
|
|
59
|
+
1098BE49246034EB0020440A /* LNAnimatorTemp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LNAnimatorTemp.h; sourceTree = "<group>"; };
|
|
60
|
+
1098BE4A246034EB0020440A /* LNAnimatorTemp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LNAnimatorTemp.m; sourceTree = "<group>"; };
|
|
61
|
+
1098BE4C246035090020440A /* RCTCustomInputControllerTemp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputControllerTemp.h; sourceTree = "<group>"; };
|
|
62
|
+
1098BE4D246035090020440A /* RCTCustomInputControllerTemp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputControllerTemp.m; sourceTree = "<group>"; };
|
|
63
|
+
D8AFAC97204E004C00D28FED /* SafeAreaSpacerShadowView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerShadowView.h; sourceTree = "<group>"; };
|
|
64
|
+
D8AFAC98204E004C00D28FED /* SafeAreaSpacerViewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewManager.h; sourceTree = "<group>"; };
|
|
65
|
+
D8AFAC99204E004C00D28FED /* SafeAreaSpacerViewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewManager.m; sourceTree = "<group>"; };
|
|
66
|
+
D8AFAC9A204E004C00D28FED /* SafeAreaSpacerShadowView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerShadowView.m; sourceTree = "<group>"; };
|
|
67
|
+
D8AFAC9B204E004C00D28FED /* SafeAreaSpacerViewLocalData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewLocalData.h; sourceTree = "<group>"; };
|
|
68
|
+
D8AFAC9C204E004C00D28FED /* SafeAreaSpacerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerView.h; sourceTree = "<group>"; };
|
|
69
|
+
D8AFAC9D204E004C00D28FED /* SafeAreaSpacerViewLocalData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewLocalData.m; sourceTree = "<group>"; };
|
|
70
|
+
D8AFAC9E204E004D00D28FED /* SafeAreaSpacerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerView.m; sourceTree = "<group>"; };
|
|
71
|
+
D8D93E6420161A7F00A39331 /* libreactnativeuilib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libreactnativeuilib.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
72
|
+
D8D93E7120161B1F00A39331 /* HighlighterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HighlighterView.h; sourceTree = "<group>"; };
|
|
73
|
+
D8D93E7220161B1F00A39331 /* HighlighterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HighlighterView.m; sourceTree = "<group>"; };
|
|
74
|
+
D8D93E7320161B1F00A39331 /* HighlighterViewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HighlighterViewManager.h; sourceTree = "<group>"; };
|
|
75
|
+
D8D93E7420161B1F00A39331 /* HighlighterViewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HighlighterViewManager.m; sourceTree = "<group>"; };
|
|
76
|
+
D8E5A536204C4F170000DA01 /* SafeAreaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SafeAreaManager.h; sourceTree = "<group>"; };
|
|
77
|
+
D8E5A537204C4F170000DA01 /* SafeAreaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SafeAreaManager.m; sourceTree = "<group>"; };
|
|
78
|
+
/* End PBXFileReference section */
|
|
79
|
+
|
|
80
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
81
|
+
D8D93E6120161A7F00A39331 /* Frameworks */ = {
|
|
82
|
+
isa = PBXFrameworksBuildPhase;
|
|
83
|
+
buildActionMask = 2147483647;
|
|
84
|
+
files = (
|
|
85
|
+
);
|
|
86
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
87
|
+
};
|
|
88
|
+
/* End PBXFrameworksBuildPhase section */
|
|
89
|
+
|
|
90
|
+
/* Begin PBXGroup section */
|
|
91
|
+
101C2DEA2AA5CDB500AFCFFD /* dynamicfont */ = {
|
|
92
|
+
isa = PBXGroup;
|
|
93
|
+
children = (
|
|
94
|
+
101C2DEB2AA5CDE800AFCFFD /* DynamicFont.h */,
|
|
95
|
+
101C2DEC2AA5CE4700AFCFFD /* DynamicFont.m */,
|
|
96
|
+
);
|
|
97
|
+
path = dynamicfont;
|
|
98
|
+
sourceTree = "<group>";
|
|
99
|
+
};
|
|
100
|
+
10823FAC23AFB06E00429E9A /* keyboardtrackingview */ = {
|
|
101
|
+
isa = PBXGroup;
|
|
102
|
+
children = (
|
|
103
|
+
1054385B23BC748700D04E48 /* KeyboardTrackingViewTempManager.h */,
|
|
104
|
+
1054385A23BC748700D04E48 /* KeyboardTrackingViewTempManager.m */,
|
|
105
|
+
1054385423BBA1B800D04E48 /* ObservingInputAccessoryViewTemp.h */,
|
|
106
|
+
1054385523BBA1C200D04E48 /* ObservingInputAccessoryViewTemp.m */,
|
|
107
|
+
1054385723BBA26800D04E48 /* UIResponder+FirstResponderTemp.h */,
|
|
108
|
+
1054385823BBA27900D04E48 /* UIResponder+FirstResponderTemp.m */,
|
|
109
|
+
);
|
|
110
|
+
path = keyboardtrackingview;
|
|
111
|
+
sourceTree = "<group>";
|
|
112
|
+
};
|
|
113
|
+
10823FB623B0B98400429E9A /* keyboardinput */ = {
|
|
114
|
+
isa = PBXGroup;
|
|
115
|
+
children = (
|
|
116
|
+
10823FC723B0BF5100429E9A /* rctcustomInputcontroller */,
|
|
117
|
+
10823FB723B0B9AC00429E9A /* lninterpolation */,
|
|
118
|
+
);
|
|
119
|
+
path = keyboardinput;
|
|
120
|
+
sourceTree = "<group>";
|
|
121
|
+
};
|
|
122
|
+
10823FB723B0B9AC00429E9A /* lninterpolation */ = {
|
|
123
|
+
isa = PBXGroup;
|
|
124
|
+
children = (
|
|
125
|
+
1098BE49246034EB0020440A /* LNAnimatorTemp.h */,
|
|
126
|
+
1098BE4A246034EB0020440A /* LNAnimatorTemp.m */,
|
|
127
|
+
10823FB823B0B9D000429E9A /* Color+Interpolation.h */,
|
|
128
|
+
10823FBA23B0B9ED00429E9A /* LNInterpolable.h */,
|
|
129
|
+
10823FBB23B0B9FA00429E9A /* LNInterpolation.h */,
|
|
130
|
+
10823FBC23B0BA0900429E9A /* NSValue+Interpolation.h */,
|
|
131
|
+
10823FBD23B0BAA200429E9A /* Color+Interpolation.m */,
|
|
132
|
+
10823FC123B0BE9100429E9A /* LNInterpolable.m */,
|
|
133
|
+
10823FC523B0BF0C00429E9A /* NSValue+Interpolation.mm */,
|
|
134
|
+
);
|
|
135
|
+
path = lninterpolation;
|
|
136
|
+
sourceTree = "<group>";
|
|
137
|
+
};
|
|
138
|
+
10823FC723B0BF5100429E9A /* rctcustomInputcontroller */ = {
|
|
139
|
+
isa = PBXGroup;
|
|
140
|
+
children = (
|
|
141
|
+
1098BE4C246035090020440A /* RCTCustomInputControllerTemp.h */,
|
|
142
|
+
1098BE4D246035090020440A /* RCTCustomInputControllerTemp.m */,
|
|
143
|
+
1054776324B47EA800D2026D /* RCTCustomKeyboardViewControllerTemp.m */,
|
|
144
|
+
1054776524B47EB800D2026D /* RCTCustomKeyboardViewControllerTemp.h */,
|
|
145
|
+
);
|
|
146
|
+
path = rctcustomInputcontroller;
|
|
147
|
+
sourceTree = "<group>";
|
|
148
|
+
};
|
|
149
|
+
D8D93E5B20161A7F00A39331 = {
|
|
150
|
+
isa = PBXGroup;
|
|
151
|
+
children = (
|
|
152
|
+
D8D93E6620161A7F00A39331 /* reactnativeuilib */,
|
|
153
|
+
D8D93E6520161A7F00A39331 /* Products */,
|
|
154
|
+
);
|
|
155
|
+
sourceTree = "<group>";
|
|
156
|
+
};
|
|
157
|
+
D8D93E6520161A7F00A39331 /* Products */ = {
|
|
158
|
+
isa = PBXGroup;
|
|
159
|
+
children = (
|
|
160
|
+
D8D93E6420161A7F00A39331 /* libreactnativeuilib.a */,
|
|
161
|
+
);
|
|
162
|
+
name = Products;
|
|
163
|
+
sourceTree = "<group>";
|
|
164
|
+
};
|
|
165
|
+
D8D93E6620161A7F00A39331 /* reactnativeuilib */ = {
|
|
166
|
+
isa = PBXGroup;
|
|
167
|
+
children = (
|
|
168
|
+
101C2DEA2AA5CDB500AFCFFD /* dynamicfont */,
|
|
169
|
+
10823FB623B0B98400429E9A /* keyboardinput */,
|
|
170
|
+
10823FAC23AFB06E00429E9A /* keyboardtrackingview */,
|
|
171
|
+
D8E5A535204C4F170000DA01 /* safearea */,
|
|
172
|
+
D8D93E7020161B1F00A39331 /* highlighterview */,
|
|
173
|
+
);
|
|
174
|
+
path = reactnativeuilib;
|
|
175
|
+
sourceTree = "<group>";
|
|
176
|
+
};
|
|
177
|
+
D8D93E7020161B1F00A39331 /* highlighterview */ = {
|
|
178
|
+
isa = PBXGroup;
|
|
179
|
+
children = (
|
|
180
|
+
D8D93E7120161B1F00A39331 /* HighlighterView.h */,
|
|
181
|
+
D8D93E7220161B1F00A39331 /* HighlighterView.m */,
|
|
182
|
+
D8D93E7320161B1F00A39331 /* HighlighterViewManager.h */,
|
|
183
|
+
D8D93E7420161B1F00A39331 /* HighlighterViewManager.m */,
|
|
184
|
+
);
|
|
185
|
+
path = highlighterview;
|
|
186
|
+
sourceTree = "<group>";
|
|
187
|
+
};
|
|
188
|
+
D8E5A535204C4F170000DA01 /* safearea */ = {
|
|
189
|
+
isa = PBXGroup;
|
|
190
|
+
children = (
|
|
191
|
+
D8E5A536204C4F170000DA01 /* SafeAreaManager.h */,
|
|
192
|
+
D8E5A537204C4F170000DA01 /* SafeAreaManager.m */,
|
|
193
|
+
D8AFAC97204E004C00D28FED /* SafeAreaSpacerShadowView.h */,
|
|
194
|
+
D8AFAC9A204E004C00D28FED /* SafeAreaSpacerShadowView.m */,
|
|
195
|
+
D8AFAC9C204E004C00D28FED /* SafeAreaSpacerView.h */,
|
|
196
|
+
D8AFAC9E204E004D00D28FED /* SafeAreaSpacerView.m */,
|
|
197
|
+
D8AFAC9B204E004C00D28FED /* SafeAreaSpacerViewLocalData.h */,
|
|
198
|
+
D8AFAC9D204E004C00D28FED /* SafeAreaSpacerViewLocalData.m */,
|
|
199
|
+
D8AFAC98204E004C00D28FED /* SafeAreaSpacerViewManager.h */,
|
|
200
|
+
D8AFAC99204E004C00D28FED /* SafeAreaSpacerViewManager.m */,
|
|
201
|
+
);
|
|
202
|
+
path = safearea;
|
|
203
|
+
sourceTree = "<group>";
|
|
204
|
+
};
|
|
205
|
+
/* End PBXGroup section */
|
|
206
|
+
|
|
207
|
+
/* Begin PBXNativeTarget section */
|
|
208
|
+
D8D93E6320161A7F00A39331 /* reactnativeuilib */ = {
|
|
209
|
+
isa = PBXNativeTarget;
|
|
210
|
+
buildConfigurationList = D8D93E6D20161A7F00A39331 /* Build configuration list for PBXNativeTarget "reactnativeuilib" */;
|
|
211
|
+
buildPhases = (
|
|
212
|
+
D8D93E6020161A7F00A39331 /* Sources */,
|
|
213
|
+
D8D93E6120161A7F00A39331 /* Frameworks */,
|
|
214
|
+
D8D93E6220161A7F00A39331 /* CopyFiles */,
|
|
215
|
+
);
|
|
216
|
+
buildRules = (
|
|
217
|
+
);
|
|
218
|
+
dependencies = (
|
|
219
|
+
);
|
|
220
|
+
name = reactnativeuilib;
|
|
221
|
+
productName = reactnativeuilib;
|
|
222
|
+
productReference = D8D93E6420161A7F00A39331 /* libreactnativeuilib.a */;
|
|
223
|
+
productType = "com.apple.product-type.library.static";
|
|
224
|
+
};
|
|
225
|
+
/* End PBXNativeTarget section */
|
|
226
|
+
|
|
227
|
+
/* Begin PBXProject section */
|
|
228
|
+
D8D93E5C20161A7F00A39331 /* Project object */ = {
|
|
229
|
+
isa = PBXProject;
|
|
230
|
+
attributes = {
|
|
231
|
+
LastUpgradeCheck = 0920;
|
|
232
|
+
ORGANIZATIONNAME = wix;
|
|
233
|
+
TargetAttributes = {
|
|
234
|
+
D8D93E6320161A7F00A39331 = {
|
|
235
|
+
CreatedOnToolsVersion = 9.2;
|
|
236
|
+
ProvisioningStyle = Automatic;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
};
|
|
240
|
+
buildConfigurationList = D8D93E5F20161A7F00A39331 /* Build configuration list for PBXProject "reactnativeuilib" */;
|
|
241
|
+
compatibilityVersion = "Xcode 8.0";
|
|
242
|
+
developmentRegion = en;
|
|
243
|
+
hasScannedForEncodings = 0;
|
|
244
|
+
knownRegions = (
|
|
245
|
+
en,
|
|
246
|
+
);
|
|
247
|
+
mainGroup = D8D93E5B20161A7F00A39331;
|
|
248
|
+
productRefGroup = D8D93E6520161A7F00A39331 /* Products */;
|
|
249
|
+
projectDirPath = "";
|
|
250
|
+
projectRoot = "";
|
|
251
|
+
targets = (
|
|
252
|
+
D8D93E6320161A7F00A39331 /* reactnativeuilib */,
|
|
253
|
+
);
|
|
254
|
+
};
|
|
255
|
+
/* End PBXProject section */
|
|
256
|
+
|
|
257
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
258
|
+
D8D93E6020161A7F00A39331 /* Sources */ = {
|
|
259
|
+
isa = PBXSourcesBuildPhase;
|
|
260
|
+
buildActionMask = 2147483647;
|
|
261
|
+
files = (
|
|
262
|
+
1054385923BBA27900D04E48 /* UIResponder+FirstResponderTemp.m in Sources */,
|
|
263
|
+
1098BE4B246034EB0020440A /* LNAnimatorTemp.m in Sources */,
|
|
264
|
+
D8AFACA2204E004D00D28FED /* SafeAreaSpacerView.m in Sources */,
|
|
265
|
+
1054385C23BC748700D04E48 /* KeyboardTrackingViewTempManager.m in Sources */,
|
|
266
|
+
D8AFACA0204E004D00D28FED /* SafeAreaSpacerShadowView.m in Sources */,
|
|
267
|
+
10823FC623B0BF0C00429E9A /* NSValue+Interpolation.mm in Sources */,
|
|
268
|
+
1098BE4E246035090020440A /* RCTCustomInputControllerTemp.m in Sources */,
|
|
269
|
+
10823FC223B0BE9100429E9A /* LNInterpolable.m in Sources */,
|
|
270
|
+
D8D93E7620161B1F00A39331 /* HighlighterViewManager.m in Sources */,
|
|
271
|
+
1054385623BBA1C200D04E48 /* ObservingInputAccessoryViewTemp.m in Sources */,
|
|
272
|
+
D8E5A538204C4F170000DA01 /* SafeAreaManager.m in Sources */,
|
|
273
|
+
101C2DED2AA5CE4700AFCFFD /* DynamicFont.m in Sources */,
|
|
274
|
+
1054776424B47EA800D2026D /* RCTCustomKeyboardViewControllerTemp.m in Sources */,
|
|
275
|
+
D8AFAC9F204E004D00D28FED /* SafeAreaSpacerViewManager.m in Sources */,
|
|
276
|
+
D8AFACA1204E004D00D28FED /* SafeAreaSpacerViewLocalData.m in Sources */,
|
|
277
|
+
10823FBE23B0BAA200429E9A /* Color+Interpolation.m in Sources */,
|
|
278
|
+
D8D93E7520161B1F00A39331 /* HighlighterView.m in Sources */,
|
|
279
|
+
);
|
|
280
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
281
|
+
};
|
|
282
|
+
/* End PBXSourcesBuildPhase section */
|
|
283
|
+
|
|
284
|
+
/* Begin XCBuildConfiguration section */
|
|
285
|
+
D8D93E6B20161A7F00A39331 /* Debug */ = {
|
|
286
|
+
isa = XCBuildConfiguration;
|
|
287
|
+
buildSettings = {
|
|
288
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
289
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
290
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
291
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
292
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
293
|
+
CLANG_ENABLE_MODULES = YES;
|
|
294
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
295
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
296
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
297
|
+
CLANG_WARN_COMMA = YES;
|
|
298
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
299
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
300
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
301
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
302
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
303
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
304
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
305
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
306
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
307
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
308
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
309
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
310
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
311
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
312
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
313
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
314
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
315
|
+
COPY_PHASE_STRIP = NO;
|
|
316
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
317
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
318
|
+
ENABLE_TESTABILITY = YES;
|
|
319
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
320
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
321
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
322
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
323
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
324
|
+
"DEBUG=1",
|
|
325
|
+
"$(inherited)",
|
|
326
|
+
);
|
|
327
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
328
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
329
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
330
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
331
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
332
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
333
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
|
334
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
335
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
336
|
+
SDKROOT = iphoneos;
|
|
337
|
+
};
|
|
338
|
+
name = Debug;
|
|
339
|
+
};
|
|
340
|
+
D8D93E6C20161A7F00A39331 /* Release */ = {
|
|
341
|
+
isa = XCBuildConfiguration;
|
|
342
|
+
buildSettings = {
|
|
343
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
344
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
345
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
346
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
347
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
348
|
+
CLANG_ENABLE_MODULES = YES;
|
|
349
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
350
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
351
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
352
|
+
CLANG_WARN_COMMA = YES;
|
|
353
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
354
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
355
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
356
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
357
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
358
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
359
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
360
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
361
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
362
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
363
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
364
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
365
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
366
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
367
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
368
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
369
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
370
|
+
COPY_PHASE_STRIP = NO;
|
|
371
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
372
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
373
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
374
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
375
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
376
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
377
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
378
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
379
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
380
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
381
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
382
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
|
383
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
384
|
+
SDKROOT = iphoneos;
|
|
385
|
+
VALIDATE_PRODUCT = YES;
|
|
386
|
+
};
|
|
387
|
+
name = Release;
|
|
388
|
+
};
|
|
389
|
+
D8D93E6E20161A7F00A39331 /* Debug */ = {
|
|
390
|
+
isa = XCBuildConfiguration;
|
|
391
|
+
buildSettings = {
|
|
392
|
+
CODE_SIGN_STYLE = Automatic;
|
|
393
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
394
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
395
|
+
SKIP_INSTALL = YES;
|
|
396
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
397
|
+
};
|
|
398
|
+
name = Debug;
|
|
399
|
+
};
|
|
400
|
+
D8D93E6F20161A7F00A39331 /* Release */ = {
|
|
401
|
+
isa = XCBuildConfiguration;
|
|
402
|
+
buildSettings = {
|
|
403
|
+
CODE_SIGN_STYLE = Automatic;
|
|
404
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
405
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
406
|
+
SKIP_INSTALL = YES;
|
|
407
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
408
|
+
};
|
|
409
|
+
name = Release;
|
|
410
|
+
};
|
|
411
|
+
/* End XCBuildConfiguration section */
|
|
412
|
+
|
|
413
|
+
/* Begin XCConfigurationList section */
|
|
414
|
+
D8D93E5F20161A7F00A39331 /* Build configuration list for PBXProject "reactnativeuilib" */ = {
|
|
415
|
+
isa = XCConfigurationList;
|
|
416
|
+
buildConfigurations = (
|
|
417
|
+
D8D93E6B20161A7F00A39331 /* Debug */,
|
|
418
|
+
D8D93E6C20161A7F00A39331 /* Release */,
|
|
419
|
+
);
|
|
420
|
+
defaultConfigurationIsVisible = 0;
|
|
421
|
+
defaultConfigurationName = Release;
|
|
422
|
+
};
|
|
423
|
+
D8D93E6D20161A7F00A39331 /* Build configuration list for PBXNativeTarget "reactnativeuilib" */ = {
|
|
424
|
+
isa = XCConfigurationList;
|
|
425
|
+
buildConfigurations = (
|
|
426
|
+
D8D93E6E20161A7F00A39331 /* Debug */,
|
|
427
|
+
D8D93E6F20161A7F00A39331 /* Release */,
|
|
428
|
+
);
|
|
429
|
+
defaultConfigurationIsVisible = 0;
|
|
430
|
+
defaultConfigurationName = Release;
|
|
431
|
+
};
|
|
432
|
+
/* End XCConfigurationList section */
|
|
433
|
+
};
|
|
434
|
+
rootObject = D8D93E5C20161A7F00A39331 /* Project object */;
|
|
435
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-ui-lib",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.7-snapshot.7597",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"types": "src/index.d.ts",
|
|
6
6
|
"author": "Ethan Sharabi <ethan.shar@gmail.com>",
|
|
@@ -66,7 +66,6 @@
|
|
|
66
66
|
"@react-native/metro-config": "0.77.3",
|
|
67
67
|
"@react-native/typescript-config": "0.77.3",
|
|
68
68
|
"@shopify/flash-list": "1.7.6",
|
|
69
|
-
"@testing-library/react-hooks": "^8.0.1",
|
|
70
69
|
"@testing-library/react-native": "^11.5.1",
|
|
71
70
|
"@types/hoist-non-react-statics": "^3.3.1",
|
|
72
71
|
"@types/jest": "^29.5.13",
|
|
@@ -162,4 +161,4 @@
|
|
|
162
161
|
"lib/package.json",
|
|
163
162
|
"lib/ReactNativeUILib.podspec"
|
|
164
163
|
]
|
|
165
|
-
}
|
|
164
|
+
}
|