@onehat/ui 0.3.381 → 0.4.1
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/package.json +37 -9
- package/src/Components/Accordion/Accordion.js +22 -17
- package/src/Components/Blank.js +1 -3
- package/src/Components/Buttons/BackButton.js +21 -12
- package/src/Components/Buttons/Button.js +65 -13
- package/src/Components/Buttons/CartButtonWithBadge.js +14 -6
- package/src/Components/Buttons/IconButton.js +31 -74
- package/src/Components/Buttons/PlusMinusButton.js +34 -21
- package/src/Components/Buttons/ReloadButton.js +7 -8
- package/src/Components/Buttons/SquareButton.js +41 -55
- package/src/Components/Container/Container.js +55 -16
- package/src/Components/Container/ScreenContainer.js +26 -16
- package/src/Components/Container/Splitter.js +38 -25
- package/src/Components/Editor/Editor.js +3 -2
- package/src/Components/Editor/InlineEditor.js +38 -32
- package/src/Components/Filter/DateRange.js +37 -18
- package/src/Components/Filter/NumberRange.js +87 -83
- package/src/Components/Form/Field/CKEditor/CKEditor.js +4 -4
- package/src/Components/Form/Field/Checkbox/CheckboxGroup.js +9 -6
- package/src/Components/Form/Field/Color.js +95 -86
- package/src/Components/Form/Field/Combo/Combo.js +347 -284
- package/src/Components/Form/Field/Combo/PageSizeCombo.js +4 -7
- package/src/Components/Form/Field/Date.js +276 -312
- package/src/Components/Form/Field/DisplayField.js +11 -5
- package/src/Components/Form/Field/File.js +26 -32
- package/src/Components/Form/Field/FormikForm.js +1018 -0
- package/src/Components/Form/Field/Input.js +91 -41
- package/src/Components/Form/Field/Json.js +25 -21
- package/src/Components/Form/Field/Number.js +70 -51
- package/src/Components/Form/Field/RadioGroup/RadioGroup.js +4 -6
- package/src/Components/Form/Field/Select/PageSizeSelect.js +33 -0
- package/src/Components/Form/Field/Select/Select.js +109 -0
- package/src/Components/Form/Field/Slider.js +38 -30
- package/src/Components/Form/Field/Tag/Tag.js +88 -72
- package/src/Components/Form/Field/Tag/ValueBox.js +25 -20
- package/src/Components/Form/Field/Text.js +21 -12
- package/src/Components/Form/Field/TextArea.js +32 -15
- package/src/Components/Form/Field/Toggle.js +41 -23
- package/src/Components/Form/FieldSet.js +77 -54
- package/src/Components/Form/Form.js +491 -268
- package/src/Components/Form/Label.js +28 -17
- package/src/Components/Gluestack/accordion/index.tsx +394 -0
- package/src/Components/Gluestack/actionsheet/index.tsx +619 -0
- package/src/Components/Gluestack/alert/index.tsx +310 -0
- package/src/Components/Gluestack/alert-dialog/index.tsx +295 -0
- package/src/Components/Gluestack/avatar/index.tsx +190 -0
- package/src/Components/Gluestack/badge/index.tsx +272 -0
- package/src/Components/Gluestack/bottomsheet/index.tsx +294 -0
- package/src/Components/Gluestack/box/index.tsx +19 -0
- package/src/Components/Gluestack/box/index.web.tsx +18 -0
- package/src/Components/Gluestack/box/styles.tsx +10 -0
- package/src/Components/Gluestack/button/index.tsx +494 -0
- package/src/Components/Gluestack/card/index.tsx +23 -0
- package/src/Components/Gluestack/card/index.web.tsx +22 -0
- package/src/Components/Gluestack/card/styles.tsx +20 -0
- package/src/Components/Gluestack/center/index.tsx +22 -0
- package/src/Components/Gluestack/center/index.web.tsx +19 -0
- package/src/Components/Gluestack/center/styles.tsx +8 -0
- package/src/Components/Gluestack/checkbox/index.tsx +305 -0
- package/src/Components/Gluestack/divider/index.tsx +44 -0
- package/src/Components/Gluestack/drawer/index.tsx +354 -0
- package/src/Components/Gluestack/fab/index.tsx +286 -0
- package/src/Components/Gluestack/flat-list/index.tsx +2 -0
- package/src/Components/Gluestack/form-control/index.tsx +527 -0
- package/src/Components/Gluestack/gluestack-ui-provider/config.ts +332 -0
- package/src/Components/Gluestack/gluestack-ui-provider/index.tsx +47 -0
- package/src/Components/Gluestack/gluestack-ui-provider/index.web.tsx +94 -0
- package/src/Components/Gluestack/gluestack-ui-provider/script.ts +19 -0
- package/src/Components/Gluestack/grid/index.tsx +341 -0
- package/src/Components/Gluestack/grid/index.web.tsx +65 -0
- package/src/Components/Gluestack/grid/styles.tsx +15 -0
- package/src/Components/Gluestack/heading/index.tsx +212 -0
- package/src/Components/Gluestack/heading/index.web.tsx +203 -0
- package/src/Components/Gluestack/heading/styles.tsx +43 -0
- package/src/Components/Gluestack/hstack/index.tsx +23 -0
- package/src/Components/Gluestack/hstack/index.web.tsx +22 -0
- package/src/Components/Gluestack/hstack/styles.tsx +25 -0
- package/src/Components/Gluestack/image/index.tsx +52 -0
- package/src/Components/Gluestack/image-background/index.tsx +21 -0
- package/src/Components/Gluestack/index.js +116 -0
- package/src/Components/Gluestack/input/index.tsx +287 -0
- package/src/Components/Gluestack/input-accessory-view/index.tsx +2 -0
- package/src/Components/Gluestack/keyboard-avoiding-view/index.tsx +2 -0
- package/src/Components/Gluestack/link/index.tsx +107 -0
- package/src/Components/Gluestack/menu/index.tsx +210 -0
- package/src/Components/Gluestack/modal/index.tsx +279 -0
- package/src/Components/Gluestack/popover/index.tsx +352 -0
- package/src/Components/Gluestack/portal/index.tsx +13 -0
- package/src/Components/Gluestack/pressable/index.tsx +46 -0
- package/src/Components/Gluestack/progress/index.tsx +164 -0
- package/src/Components/Gluestack/radio/index.tsx +304 -0
- package/src/Components/Gluestack/refresh-control/index.tsx +2 -0
- package/src/Components/Gluestack/safe-area-view/index.tsx +2 -0
- package/src/Components/Gluestack/scroll-view/index.tsx +2 -0
- package/src/Components/Gluestack/section-list/index.tsx +2 -0
- package/src/Components/Gluestack/select/index.tsx +335 -0
- package/src/Components/Gluestack/select/select-actionsheet.tsx +584 -0
- package/src/Components/Gluestack/skeleton/index.tsx +138 -0
- package/src/Components/Gluestack/skeleton/index.web.tsx +103 -0
- package/src/Components/Gluestack/skeleton/styles.tsx +35 -0
- package/src/Components/Gluestack/slider/index.tsx +283 -0
- package/src/Components/Gluestack/spinner/index.tsx +34 -0
- package/src/Components/Gluestack/status-bar/index.tsx +2 -0
- package/src/Components/Gluestack/switch/index.tsx +55 -0
- package/src/Components/Gluestack/table/index.tsx +200 -0
- package/src/Components/Gluestack/table/index.web.tsx +142 -0
- package/src/Components/Gluestack/table/styles.tsx +44 -0
- package/src/Components/Gluestack/text/index.tsx +48 -0
- package/src/Components/Gluestack/text/index.web.tsx +45 -0
- package/src/Components/Gluestack/text/styles.tsx +47 -0
- package/src/Components/Gluestack/textarea/index.tsx +108 -0
- package/src/Components/Gluestack/toast/index.tsx +225 -0
- package/src/Components/Gluestack/tooltip/index.tsx +125 -0
- package/src/Components/Gluestack/utils/use-break-point-value.ts +101 -0
- package/src/Components/Gluestack/view/index.tsx +2 -0
- package/src/Components/Gluestack/virtualized-list/index.tsx +2 -0
- package/src/Components/Gluestack/vstack/index.tsx +24 -0
- package/src/Components/Gluestack/vstack/index.web.tsx +23 -0
- package/src/Components/Gluestack/vstack/styles.tsx +25 -0
- package/src/Components/Grid/Grid.js +192 -135
- package/src/Components/Grid/GridHeaderRow.js +51 -59
- package/src/Components/Grid/GridRow.js +151 -57
- package/src/Components/Grid/HeaderColumnSelectorHandle.js +16 -10
- package/src/Components/Grid/HeaderReorderHandle.js +17 -13
- package/src/Components/Grid/HeaderResizeHandle.js +17 -13
- package/src/Components/Grid/NoRecordsFound.js +15 -18
- package/src/Components/Grid/RowDragHandle.js +9 -13
- package/src/Components/Hoc/Secondary/withSecondaryEditor.js +14 -9
- package/src/Components/Hoc/Secondary/withSecondaryWindowedEditor.js +14 -11
- package/src/Components/Hoc/withAlert.js +150 -200
- package/src/Components/Hoc/withBlank.js +4 -6
- package/src/Components/Hoc/withCollapsible.js +4 -3
- package/src/Components/Hoc/withComponent.js +33 -6
- package/src/Components/Hoc/withContextMenu.js +133 -141
- package/src/Components/Hoc/withData.js +5 -4
- package/src/Components/Hoc/withDnd.js +11 -9
- package/src/Components/Hoc/withDraggable.js +10 -10
- package/src/Components/Hoc/withEditor.js +18 -13
- package/src/Components/Hoc/withEvents.js +4 -6
- package/src/Components/Hoc/withFilters.js +524 -498
- package/src/Components/Hoc/withInlineEditor.js +7 -5
- package/src/Components/Hoc/withModal.js +79 -137
- package/src/Components/Hoc/withMultiSelection.js +4 -2
- package/src/Components/Hoc/withPdfButtons.js +109 -111
- package/src/Components/Hoc/withPresetButtons.js +49 -53
- package/src/Components/Hoc/withSelection.js +6 -5
- package/src/Components/Hoc/withSideEditor.js +12 -6
- package/src/Components/Hoc/withTooltip.js +18 -12
- package/src/Components/Hoc/withValue.js +6 -5
- package/src/Components/Hoc/withWindowedEditor.js +13 -11
- package/src/Components/Icons/AddressBook.js +7 -10
- package/src/Components/Icons/Alt.js +8 -15
- package/src/Components/Icons/AngleLeft.js +7 -14
- package/src/Components/Icons/AngleRight.js +7 -14
- package/src/Components/Icons/AnglesLeft.js +7 -14
- package/src/Components/Icons/AnglesRight.js +7 -14
- package/src/Components/Icons/Asterisk.js +7 -10
- package/src/Components/Icons/Ban.js +9 -14
- package/src/Components/Icons/Bars.js +7 -10
- package/src/Components/Icons/BarsStaggered.js +7 -10
- package/src/Components/Icons/Bell.js +7 -19
- package/src/Components/Icons/BigCircle.js +7 -14
- package/src/Components/Icons/Book.js +7 -10
- package/src/Components/Icons/BookOpen.js +7 -10
- package/src/Components/Icons/Bookmark.js +8 -17
- package/src/Components/Icons/Bug.js +7 -10
- package/src/Components/Icons/Building.js +7 -10
- package/src/Components/Icons/Calendar.js +7 -14
- package/src/Components/Icons/Calendar2.js +7 -14
- package/src/Components/Icons/CalendarDays.js +7 -14
- package/src/Components/Icons/Camera.js +7 -14
- package/src/Components/Icons/CaretDown.js +7 -14
- package/src/Components/Icons/CaretUp.js +7 -14
- package/src/Components/Icons/CartPlus.js +7 -10
- package/src/Components/Icons/CartShopping.js +7 -10
- package/src/Components/Icons/CashRegister.js +7 -10
- package/src/Components/Icons/Certificate.js +7 -10
- package/src/Components/Icons/ChartLine.js +7 -10
- package/src/Components/Icons/ChartPie.js +7 -10
- package/src/Components/Icons/Check.js +7 -10
- package/src/Components/Icons/CheckDouble.js +7 -10
- package/src/Components/Icons/ChevronDown.js +7 -10
- package/src/Components/Icons/ChevronLeft.js +7 -10
- package/src/Components/Icons/ChevronRight.js +7 -10
- package/src/Components/Icons/ChevronUp.js +7 -10
- package/src/Components/Icons/Circle.js +7 -10
- package/src/Components/Icons/CircleArrowRight.js +7 -10
- package/src/Components/Icons/CircleExclamation.js +7 -14
- package/src/Components/Icons/CircleInfo.js +7 -10
- package/src/Components/Icons/CircleQuestion.js +7 -10
- package/src/Components/Icons/CircleXmark.js +7 -10
- package/src/Components/Icons/CircleXmarkRegular.js +7 -10
- package/src/Components/Icons/Clipboard.js +7 -14
- package/src/Components/Icons/ClipboardCheck.js +7 -17
- package/src/Components/Icons/ClipboardList.js +7 -16
- package/src/Components/Icons/Clock.js +7 -10
- package/src/Components/Icons/ClockRegular.js +7 -10
- package/src/Components/Icons/ClockRotateLeft.js +7 -10
- package/src/Components/Icons/Clone.js +7 -10
- package/src/Components/Icons/Collapse.js +7 -14
- package/src/Components/Icons/Comment.js +7 -10
- package/src/Components/Icons/CommentDots.js +7 -10
- package/src/Components/Icons/CommentRegular.js +7 -10
- package/src/Components/Icons/Comments.js +7 -10
- package/src/Components/Icons/CommentsRegular.js +7 -10
- package/src/Components/Icons/Copyright.js +7 -10
- package/src/Components/Icons/Dot.js +10 -15
- package/src/Components/Icons/Download.js +11 -0
- package/src/Components/Icons/Duplicate.js +7 -14
- package/src/Components/Icons/Edit.js +7 -14
- package/src/Components/Icons/EllipsisHorizontal.js +7 -16
- package/src/Components/Icons/EllipsisVertical.js +7 -14
- package/src/Components/Icons/Envelope.js +7 -10
- package/src/Components/Icons/EnvelopeRegular.js +7 -10
- package/src/Components/Icons/Excel.js +7 -10
- package/src/Components/Icons/Exclamation.js +7 -10
- package/src/Components/Icons/Expand.js +7 -10
- package/src/Components/Icons/Eye.js +7 -14
- package/src/Components/Icons/EyeSlash.js +7 -10
- package/src/Components/Icons/File.js +7 -14
- package/src/Components/Icons/FloppyDiskRegular.js +7 -10
- package/src/Components/Icons/Folder.js +7 -10
- package/src/Components/Icons/FolderClosed.js +7 -10
- package/src/Components/Icons/FolderOpen.js +7 -10
- package/src/Components/Icons/FolderTree.js +7 -10
- package/src/Components/Icons/FullWidth.js +10 -25
- package/src/Components/Icons/Gauge.js +7 -17
- package/src/Components/Icons/Gear.js +7 -14
- package/src/Components/Icons/Gears.js +7 -10
- package/src/Components/Icons/Gift.js +7 -10
- package/src/Components/Icons/Grip.js +7 -14
- package/src/Components/Icons/GripLines.js +7 -14
- package/src/Components/Icons/GripLinesVertical.js +7 -14
- package/src/Components/Icons/GripVertical.js +7 -14
- package/src/Components/Icons/Hammer.js +7 -10
- package/src/Components/Icons/Hand.js +7 -10
- package/src/Components/Icons/HighPriority.js +7 -17
- package/src/Components/Icons/House.js +7 -10
- package/src/Components/Icons/Images.js +7 -10
- package/src/Components/Icons/Info.js +7 -10
- package/src/Components/Icons/ItunesNote.js +7 -10
- package/src/Components/Icons/Js.js +7 -16
- package/src/Components/Icons/Leaf.js +7 -10
- package/src/Components/Icons/Link.js +7 -9
- package/src/Components/Icons/List.js +7 -10
- package/src/Components/Icons/ListCheck.js +7 -10
- package/src/Components/Icons/LocationDot.js +7 -10
- package/src/Components/Icons/Loop.js +7 -14
- package/src/Components/Icons/Loop1.js +8 -13
- package/src/Components/Icons/LoopAll.js +8 -13
- package/src/Components/Icons/LowPriority.js +7 -17
- package/src/Components/Icons/MagnifyingGlass.js +7 -10
- package/src/Components/Icons/Maximize.js +7 -10
- package/src/Components/Icons/MedPriority.js +7 -17
- package/src/Components/Icons/Microphone.js +7 -10
- package/src/Components/Icons/Minimize.js +7 -10
- package/src/Components/Icons/Minus.js +7 -14
- package/src/Components/Icons/MobileScreenButton.js +7 -10
- package/src/Components/Icons/MoneyBill.js +7 -10
- package/src/Components/Icons/MoneyBillWave.js +7 -10
- package/src/Components/Icons/Mouth.js +10 -21
- package/src/Components/Icons/Music.js +7 -10
- package/src/Components/Icons/Na.js +7 -14
- package/src/Components/Icons/NoLoop.js +11 -13
- package/src/Components/Icons/NoReorderRows.js +17 -22
- package/src/Components/Icons/ObjectGroupRegular.js +7 -10
- package/src/Components/Icons/Pause.js +7 -10
- package/src/Components/Icons/Pdf.js +7 -10
- package/src/Components/Icons/Pencil.js +7 -14
- package/src/Components/Icons/Phone.js +7 -10
- package/src/Components/Icons/Play.js +7 -10
- package/src/Components/Icons/Plus.js +7 -14
- package/src/Components/Icons/Presentation.js +7 -16
- package/src/Components/Icons/Print.js +7 -14
- package/src/Components/Icons/Question.js +7 -10
- package/src/Components/Icons/Rate-.25x.js +12 -17
- package/src/Components/Icons/Rate-.5x.js +11 -16
- package/src/Components/Icons/Rate-.75x.js +8 -13
- package/src/Components/Icons/Rate-1.25x.js +8 -13
- package/src/Components/Icons/Rate-1.5x.js +8 -13
- package/src/Components/Icons/Rate-1.75x.js +8 -13
- package/src/Components/Icons/Rate-1x.js +11 -16
- package/src/Components/Icons/Rate-2x.js +8 -13
- package/src/Components/Icons/RateIcon-.25x.js +8 -13
- package/src/Components/Icons/RateIcon-.5x.js +11 -16
- package/src/Components/Icons/RateIcon-.75x.js +8 -13
- package/src/Components/Icons/RateIcon-1.25x.js +8 -13
- package/src/Components/Icons/RateIcon-1.5x.js +8 -13
- package/src/Components/Icons/RateIcon-1.75x.js +8 -13
- package/src/Components/Icons/RateIcon-1x.js +8 -13
- package/src/Components/Icons/RateIcon-2x.js +8 -13
- package/src/Components/Icons/RectangleXmark.js +7 -10
- package/src/Components/Icons/RectangleXmarkRegular.js +7 -10
- package/src/Components/Icons/ReorderRows.js +8 -13
- package/src/Components/Icons/RightFromBracket.js +7 -10
- package/src/Components/Icons/RightLeft.js +7 -10
- package/src/Components/Icons/RightToBracket.js +7 -10
- package/src/Components/Icons/Rotate.js +7 -14
- package/src/Components/Icons/RotateLeft.js +7 -10
- package/src/Components/Icons/RotateRight.js +7 -14
- package/src/Components/Icons/ScrewdriverWrench.js +7 -10
- package/src/Components/Icons/Scroll.js +7 -10
- package/src/Components/Icons/Share.js +7 -10
- package/src/Components/Icons/Shop.js +7 -10
- package/src/Components/Icons/SideBySide.js +7 -20
- package/src/Components/Icons/SortDown.js +7 -10
- package/src/Components/Icons/SortDownAlt.js +7 -10
- package/src/Components/Icons/SortUp.js +7 -10
- package/src/Components/Icons/SortUpAlt.js +7 -14
- package/src/Components/Icons/Square.js +7 -10
- package/src/Components/Icons/SquareCheck.js +7 -10
- package/src/Components/Icons/SquareCheckRegular.js +7 -10
- package/src/Components/Icons/SquareMinus.js +7 -14
- package/src/Components/Icons/SquareRegular.js +7 -10
- package/src/Components/Icons/Store.js +7 -10
- package/src/Components/Icons/Table.js +7 -16
- package/src/Components/Icons/ThumbsDown.js +7 -10
- package/src/Components/Icons/ThumbsDownRegular.js +7 -10
- package/src/Components/Icons/ThumbsUp.js +7 -10
- package/src/Components/Icons/ThumbsUpRegular.js +7 -10
- package/src/Components/Icons/Trash.js +7 -14
- package/src/Components/Icons/TrashCan.js +7 -14
- package/src/Components/Icons/TriangleExclamation.js +7 -14
- package/src/Components/Icons/Truck.js +7 -10
- package/src/Components/Icons/TruckFast.js +7 -10
- package/src/Components/Icons/Upload.js +11 -0
- package/src/Components/Icons/UploadDownload.js +11 -11
- package/src/Components/Icons/User.js +7 -10
- package/src/Components/Icons/UserGroup.js +7 -10
- package/src/Components/Icons/UserPlus.js +7 -10
- package/src/Components/Icons/UserSecret.js +7 -10
- package/src/Components/Icons/Video.js +7 -16
- package/src/Components/Icons/X.js +7 -10
- package/src/Components/Icons/Xmark.js +7 -10
- package/src/Components/Layout/CenterBox.js +13 -9
- package/src/Components/Layout/Footer.js +20 -13
- package/src/Components/Messages/ConfirmationMessage.js +30 -13
- package/src/Components/Messages/ErrorMessage.js +29 -23
- package/src/Components/Messages/Loading.js +10 -8
- package/src/Components/Messages/OkMessage.js +30 -13
- package/src/Components/Messages/Unauthorized.js +5 -8
- package/src/Components/Messages/WaitMessage.js +37 -73
- package/src/Components/Panel/AccordionGridPanel.js +6 -6
- package/src/Components/Panel/FormPanel.js +7 -3
- package/src/Components/Panel/Header.js +132 -94
- package/src/Components/Panel/Mask.js +4 -4
- package/src/Components/Panel/Panel.js +55 -72
- package/src/Components/Panel/TabPanel.js +1 -1
- package/src/Components/Picker/Picker.js +10 -9
- package/src/Components/Report/Report.js +17 -14
- package/src/Components/Screens/Manager.js +22 -22
- package/src/Components/Tab/TabBar.js +293 -225
- package/src/Components/Toolbar/FilterToolbar.js +15 -11
- package/src/Components/Toolbar/Pagination.js +51 -46
- package/src/Components/Toolbar/PaginationToolbar.js +25 -19
- package/src/Components/Toolbar/Toolbar.js +26 -13
- package/src/Components/Tooltip/Tooltip.js +35 -0
- package/src/Components/Tree/Tree.js +134 -140
- package/src/Components/Tree/TreeNode.js +75 -36
- package/src/Components/Viewer/Viewer.js +203 -80
- package/src/Components/Window/Editor.js +0 -5
- package/src/Components/Window/UploadsDownloadsWindow.js +40 -22
- package/src/Components/index.js +11 -8
- package/src/Constants/Alert.js +0 -0
- package/src/Constants/AppStates.js +0 -0
- package/src/Constants/Colors.js +13 -0
- package/src/Constants/Commands.js +0 -0
- package/src/Constants/Date.js +0 -0
- package/src/Constants/Dates.js +16 -0
- package/src/Constants/Directions.js +0 -0
- package/src/Constants/Editor.js +0 -0
- package/src/Constants/EditorModes.js +2 -0
- package/src/Constants/File.js +0 -0
- package/src/Constants/Filters.js +0 -0
- package/src/Constants/Grid.js +0 -0
- package/src/Constants/Input.js +1 -0
- package/src/Constants/MimeTypes.js +0 -0
- package/src/Constants/Selection.js +0 -0
- package/src/Constants/Styles.js +119 -108
- package/src/Constants/Tasks.js +3 -0
- package/src/Constants/Tree.js +0 -0
- package/src/Constants/UiModes.js +3 -2
- package/src/Functions/BankersRound.js +0 -0
- package/src/Functions/Cypress/button_functions.js +0 -0
- package/src/Functions/Cypress/crud_functions.js +0 -0
- package/src/Functions/Cypress/dom_functions.js +0 -0
- package/src/Functions/Cypress/grid_functions.js +0 -0
- package/src/Functions/Cypress/navigation_functions.js +0 -0
- package/src/Functions/Cypress/tree_functions.js +0 -0
- package/src/Functions/Cypress/utilities.js +0 -0
- package/src/Functions/PlatformDetector.js +0 -0
- package/src/Functions/Timer.js +0 -0
- package/src/Functions/buildAdditionalButtons.js +5 -5
- package/src/Functions/chunkArray.js +0 -0
- package/src/Functions/colorConversions.js +74 -0
- package/src/Functions/delay.js +0 -0
- package/src/Functions/delayUntil.js +0 -0
- package/src/Functions/deleteSaved.js +0 -0
- package/src/Functions/deleteSecure.js +0 -0
- package/src/Functions/downloadInBackground.js +0 -0
- package/src/Functions/downloadWithFetch.js +0 -0
- package/src/Functions/emptyFn.js +0 -0
- package/src/Functions/getComponentFromType.js +0 -0
- package/src/Functions/getIconButtonFromConfig.js +5 -9
- package/src/Functions/getIsMobile.js +0 -0
- package/src/Functions/getNodeIcon.js +28 -0
- package/src/Functions/getPref.js +0 -0
- package/src/Functions/getSaved.js +0 -0
- package/src/Functions/getSecure.js +0 -0
- package/src/Functions/getTokenHeaders.js +0 -0
- package/src/Functions/gsToHex.js +205 -0
- package/src/Functions/ignoreWanings.js +46 -0
- package/src/Functions/inArray.js +0 -0
- package/src/Functions/isJson.js +0 -0
- package/src/Functions/isSerializable.js +0 -0
- package/src/Functions/isVideo.js +0 -0
- package/src/Functions/jsonValidator.js +0 -0
- package/src/Functions/nbToRgb.js +1 -1
- package/src/Functions/objectToClassName.js +72 -0
- package/src/Functions/parseNotification.js +0 -0
- package/src/Functions/processImage.js +0 -0
- package/src/Functions/registerReactNativeComponents.js +0 -0
- package/src/Functions/registerWebComponents.js +0 -0
- package/src/Functions/setCustomInflector.js +0 -0
- package/src/Functions/setPref.js +0 -0
- package/src/Functions/setProgress.js +0 -0
- package/src/Functions/setSaved.js +0 -0
- package/src/Functions/setSecure.js +0 -0
- package/src/Functions/setThemeOverrides.js +0 -0
- package/src/Functions/setUiSavesRepo.js +0 -0
- package/src/Functions/sleep.js +0 -0
- package/src/Functions/tailwindFunctions.js +384 -0
- package/src/Functions/testProps.js +0 -0
- package/src/Functions/trackEngagementHit.js +0 -0
- package/src/Functions/verifyCompleted.js +0 -0
- package/src/Functions/waitFor.js +2 -2
- package/src/PlatformImports/Web/Attachments.js +32 -38
- package/src/PlatformImports/Web/File.js +38 -31
- package/src/UiGlobals.js +8 -1
- package/src/Components/Grid/ColumnSelectorWindow.js +0 -125
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import React, { forwardRef, memo } from 'react';
|
|
2
|
+
import { headingStyle } from './styles';
|
|
3
|
+
import type { VariantProps } from '@gluestack-ui/nativewind-utils';
|
|
4
|
+
type IHeadingProps = VariantProps<typeof headingStyle> &
|
|
5
|
+
React.ComponentPropsWithoutRef<'h1'> & {
|
|
6
|
+
as?: React.ElementType;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const MappedHeading = memo(
|
|
10
|
+
forwardRef<HTMLHeadingElement, IHeadingProps>(
|
|
11
|
+
(
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
className,
|
|
15
|
+
isTruncated,
|
|
16
|
+
bold,
|
|
17
|
+
underline,
|
|
18
|
+
strikeThrough,
|
|
19
|
+
sub,
|
|
20
|
+
italic,
|
|
21
|
+
highlight,
|
|
22
|
+
...props
|
|
23
|
+
},
|
|
24
|
+
ref
|
|
25
|
+
) => {
|
|
26
|
+
switch (size) {
|
|
27
|
+
case '5xl':
|
|
28
|
+
case '4xl':
|
|
29
|
+
case '3xl':
|
|
30
|
+
return (
|
|
31
|
+
<h1
|
|
32
|
+
className={headingStyle({
|
|
33
|
+
size,
|
|
34
|
+
isTruncated,
|
|
35
|
+
bold,
|
|
36
|
+
underline,
|
|
37
|
+
strikeThrough,
|
|
38
|
+
sub,
|
|
39
|
+
italic,
|
|
40
|
+
highlight,
|
|
41
|
+
class: className,
|
|
42
|
+
})}
|
|
43
|
+
{...props}
|
|
44
|
+
ref={ref}
|
|
45
|
+
/>
|
|
46
|
+
);
|
|
47
|
+
case '2xl':
|
|
48
|
+
return (
|
|
49
|
+
<h2
|
|
50
|
+
className={headingStyle({
|
|
51
|
+
size,
|
|
52
|
+
isTruncated,
|
|
53
|
+
bold,
|
|
54
|
+
underline,
|
|
55
|
+
strikeThrough,
|
|
56
|
+
sub,
|
|
57
|
+
italic,
|
|
58
|
+
highlight,
|
|
59
|
+
class: className,
|
|
60
|
+
})}
|
|
61
|
+
{...props}
|
|
62
|
+
ref={ref}
|
|
63
|
+
/>
|
|
64
|
+
);
|
|
65
|
+
case 'xl':
|
|
66
|
+
return (
|
|
67
|
+
<h3
|
|
68
|
+
className={headingStyle({
|
|
69
|
+
size,
|
|
70
|
+
isTruncated,
|
|
71
|
+
bold,
|
|
72
|
+
underline,
|
|
73
|
+
strikeThrough,
|
|
74
|
+
sub,
|
|
75
|
+
italic,
|
|
76
|
+
highlight,
|
|
77
|
+
class: className,
|
|
78
|
+
})}
|
|
79
|
+
{...props}
|
|
80
|
+
ref={ref}
|
|
81
|
+
/>
|
|
82
|
+
);
|
|
83
|
+
case 'lg':
|
|
84
|
+
return (
|
|
85
|
+
<h4
|
|
86
|
+
className={headingStyle({
|
|
87
|
+
size,
|
|
88
|
+
isTruncated,
|
|
89
|
+
bold,
|
|
90
|
+
underline,
|
|
91
|
+
strikeThrough,
|
|
92
|
+
sub,
|
|
93
|
+
italic,
|
|
94
|
+
highlight,
|
|
95
|
+
class: className,
|
|
96
|
+
})}
|
|
97
|
+
{...props}
|
|
98
|
+
ref={ref}
|
|
99
|
+
/>
|
|
100
|
+
);
|
|
101
|
+
case 'md':
|
|
102
|
+
return (
|
|
103
|
+
<h5
|
|
104
|
+
className={headingStyle({
|
|
105
|
+
size,
|
|
106
|
+
isTruncated,
|
|
107
|
+
bold,
|
|
108
|
+
underline,
|
|
109
|
+
strikeThrough,
|
|
110
|
+
sub,
|
|
111
|
+
italic,
|
|
112
|
+
highlight,
|
|
113
|
+
class: className,
|
|
114
|
+
})}
|
|
115
|
+
{...props}
|
|
116
|
+
ref={ref}
|
|
117
|
+
/>
|
|
118
|
+
);
|
|
119
|
+
case 'sm':
|
|
120
|
+
case 'xs':
|
|
121
|
+
return (
|
|
122
|
+
<h6
|
|
123
|
+
className={headingStyle({
|
|
124
|
+
size,
|
|
125
|
+
isTruncated,
|
|
126
|
+
bold,
|
|
127
|
+
underline,
|
|
128
|
+
strikeThrough,
|
|
129
|
+
sub,
|
|
130
|
+
italic,
|
|
131
|
+
highlight,
|
|
132
|
+
class: className,
|
|
133
|
+
})}
|
|
134
|
+
{...props}
|
|
135
|
+
ref={ref}
|
|
136
|
+
/>
|
|
137
|
+
);
|
|
138
|
+
default:
|
|
139
|
+
return (
|
|
140
|
+
<h4
|
|
141
|
+
className={headingStyle({
|
|
142
|
+
size,
|
|
143
|
+
isTruncated,
|
|
144
|
+
bold,
|
|
145
|
+
underline,
|
|
146
|
+
strikeThrough,
|
|
147
|
+
sub,
|
|
148
|
+
italic,
|
|
149
|
+
highlight,
|
|
150
|
+
class: className,
|
|
151
|
+
})}
|
|
152
|
+
{...props}
|
|
153
|
+
ref={ref}
|
|
154
|
+
/>
|
|
155
|
+
);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
)
|
|
159
|
+
);
|
|
160
|
+
|
|
161
|
+
const Heading = memo(
|
|
162
|
+
forwardRef<HTMLHeadingElement, IHeadingProps>(
|
|
163
|
+
({ className, size = 'lg', as: AsComp, ...props }, ref) => {
|
|
164
|
+
const {
|
|
165
|
+
isTruncated,
|
|
166
|
+
bold,
|
|
167
|
+
underline,
|
|
168
|
+
strikeThrough,
|
|
169
|
+
sub,
|
|
170
|
+
italic,
|
|
171
|
+
highlight,
|
|
172
|
+
} = props;
|
|
173
|
+
|
|
174
|
+
if (AsComp) {
|
|
175
|
+
return (
|
|
176
|
+
<AsComp
|
|
177
|
+
className={headingStyle({
|
|
178
|
+
size,
|
|
179
|
+
isTruncated,
|
|
180
|
+
bold,
|
|
181
|
+
underline,
|
|
182
|
+
strikeThrough,
|
|
183
|
+
sub,
|
|
184
|
+
italic,
|
|
185
|
+
highlight,
|
|
186
|
+
class: className,
|
|
187
|
+
})}
|
|
188
|
+
{...props}
|
|
189
|
+
ref={ref}
|
|
190
|
+
/>
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
return (
|
|
195
|
+
<MappedHeading className={className} size={size} ref={ref} {...props} />
|
|
196
|
+
);
|
|
197
|
+
}
|
|
198
|
+
)
|
|
199
|
+
);
|
|
200
|
+
|
|
201
|
+
Heading.displayName = 'Heading';
|
|
202
|
+
|
|
203
|
+
export { Heading };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { tva } from '@gluestack-ui/nativewind-utils/tva';
|
|
2
|
+
import { isWeb } from '@gluestack-ui/nativewind-utils/IsWeb';
|
|
3
|
+
const baseStyle = isWeb
|
|
4
|
+
? 'font-sans tracking-sm bg-transparent border-0 box-border display-inline list-none margin-0 padding-0 position-relative text-start no-underline whitespace-pre-wrap word-wrap-break-word'
|
|
5
|
+
: '';
|
|
6
|
+
|
|
7
|
+
export const headingStyle = tva({
|
|
8
|
+
base: `text-typography-900 font-bold font-heading tracking-sm my-0 ${baseStyle}`,
|
|
9
|
+
variants: {
|
|
10
|
+
isTruncated: {
|
|
11
|
+
true: 'truncate',
|
|
12
|
+
},
|
|
13
|
+
bold: {
|
|
14
|
+
true: 'font-bold',
|
|
15
|
+
},
|
|
16
|
+
underline: {
|
|
17
|
+
true: 'underline',
|
|
18
|
+
},
|
|
19
|
+
strikeThrough: {
|
|
20
|
+
true: 'line-through',
|
|
21
|
+
},
|
|
22
|
+
sub: {
|
|
23
|
+
true: 'text-xs',
|
|
24
|
+
},
|
|
25
|
+
italic: {
|
|
26
|
+
true: 'italic',
|
|
27
|
+
},
|
|
28
|
+
highlight: {
|
|
29
|
+
true: 'bg-yellow-500',
|
|
30
|
+
},
|
|
31
|
+
size: {
|
|
32
|
+
'5xl': 'text-6xl',
|
|
33
|
+
'4xl': 'text-5xl',
|
|
34
|
+
'3xl': 'text-4xl',
|
|
35
|
+
'2xl': 'text-3xl',
|
|
36
|
+
'xl': 'text-2xl',
|
|
37
|
+
'lg': 'text-xl',
|
|
38
|
+
'md': 'text-lg',
|
|
39
|
+
'sm': 'text-base',
|
|
40
|
+
'xs': 'text-sm',
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { VariantProps } from '@gluestack-ui/nativewind-utils';
|
|
3
|
+
import { View } from 'react-native';
|
|
4
|
+
import type { ViewProps } from 'react-native';
|
|
5
|
+
import { hstackStyle } from './styles';
|
|
6
|
+
|
|
7
|
+
type IHStackProps = ViewProps & VariantProps<typeof hstackStyle>;
|
|
8
|
+
|
|
9
|
+
const HStack = React.forwardRef<React.ElementRef<typeof View>, IHStackProps>(
|
|
10
|
+
({ className, space, reversed, ...props }, ref) => {
|
|
11
|
+
return (
|
|
12
|
+
<View
|
|
13
|
+
className={hstackStyle({ space, reversed, class: className })}
|
|
14
|
+
{...props}
|
|
15
|
+
ref={ref}
|
|
16
|
+
/>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
HStack.displayName = 'HStack';
|
|
22
|
+
|
|
23
|
+
export { HStack };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { VariantProps } from '@gluestack-ui/nativewind-utils';
|
|
3
|
+
import { hstackStyle } from './styles';
|
|
4
|
+
|
|
5
|
+
type IHStackProps = React.ComponentPropsWithoutRef<'div'> &
|
|
6
|
+
VariantProps<typeof hstackStyle>;
|
|
7
|
+
|
|
8
|
+
const HStack = React.forwardRef<React.ElementRef<'div'>, IHStackProps>(
|
|
9
|
+
({ className, space, reversed, ...props }, ref) => {
|
|
10
|
+
return (
|
|
11
|
+
<div
|
|
12
|
+
className={hstackStyle({ space, reversed, class: className })}
|
|
13
|
+
{...props}
|
|
14
|
+
ref={ref}
|
|
15
|
+
/>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
HStack.displayName = 'HStack';
|
|
21
|
+
|
|
22
|
+
export { HStack };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { isWeb } from '@gluestack-ui/nativewind-utils/IsWeb';
|
|
2
|
+
import { tva } from '@gluestack-ui/nativewind-utils/tva';
|
|
3
|
+
|
|
4
|
+
const baseStyle = isWeb
|
|
5
|
+
? 'flex relative z-0 box-border border-0 list-none min-w-0 min-h-0 bg-transparent items-stretch m-0 p-0 text-decoration-none'
|
|
6
|
+
: '';
|
|
7
|
+
|
|
8
|
+
export const hstackStyle = tva({
|
|
9
|
+
base: `flex-row ${baseStyle}`,
|
|
10
|
+
variants: {
|
|
11
|
+
space: {
|
|
12
|
+
'xs': 'gap-1',
|
|
13
|
+
'sm': 'gap-2',
|
|
14
|
+
'md': 'gap-3',
|
|
15
|
+
'lg': 'gap-4',
|
|
16
|
+
'xl': 'gap-5',
|
|
17
|
+
'2xl': 'gap-6',
|
|
18
|
+
'3xl': 'gap-7',
|
|
19
|
+
'4xl': 'gap-8',
|
|
20
|
+
},
|
|
21
|
+
reversed: {
|
|
22
|
+
true: 'flex-row-reverse',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
});
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { createImage } from '@gluestack-ui/image';
|
|
4
|
+
import { Platform, Image as RNImage } from 'react-native';
|
|
5
|
+
import { tva } from '@gluestack-ui/nativewind-utils/tva';
|
|
6
|
+
import type { VariantProps } from '@gluestack-ui/nativewind-utils';
|
|
7
|
+
import { cssInterop } from 'nativewind';
|
|
8
|
+
|
|
9
|
+
const imageStyle = tva({
|
|
10
|
+
base: 'max-w-full',
|
|
11
|
+
variants: {
|
|
12
|
+
size: {
|
|
13
|
+
'2xs': 'h-6 w-6',
|
|
14
|
+
'xs': 'h-10 w-10',
|
|
15
|
+
'sm': 'h-16 w-16',
|
|
16
|
+
'md': 'h-20 w-20',
|
|
17
|
+
'lg': 'h-24 w-24',
|
|
18
|
+
'xl': 'h-32 w-32',
|
|
19
|
+
'2xl': 'h-64 w-64',
|
|
20
|
+
'full': 'h-full w-full',
|
|
21
|
+
'none': '',
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
const UIImage = createImage({ Root: RNImage });
|
|
27
|
+
cssInterop(UIImage, { className: 'style' });
|
|
28
|
+
|
|
29
|
+
type ImageProps = VariantProps<typeof imageStyle> &
|
|
30
|
+
React.ComponentProps<typeof UIImage>;
|
|
31
|
+
const Image = React.forwardRef<
|
|
32
|
+
React.ElementRef<typeof UIImage>,
|
|
33
|
+
ImageProps & { className?: string }
|
|
34
|
+
>(({ size = 'md', className, ...props }, ref) => {
|
|
35
|
+
return (
|
|
36
|
+
<UIImage
|
|
37
|
+
className={imageStyle({ size, class: className })}
|
|
38
|
+
{...props}
|
|
39
|
+
ref={ref}
|
|
40
|
+
//@ts-ignore
|
|
41
|
+
style={
|
|
42
|
+
Platform.OS === 'web'
|
|
43
|
+
? // eslint-disable-next-line react-native/no-inline-styles
|
|
44
|
+
{ height: 'revert-layer', width: 'revert-layer' }
|
|
45
|
+
: undefined
|
|
46
|
+
}
|
|
47
|
+
/>
|
|
48
|
+
);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
Image.displayName = 'Image';
|
|
52
|
+
export { Image };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { ImageBackground as RNImageBackground } from 'react-native';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { tva } from '@gluestack-ui/nativewind-utils/tva';
|
|
5
|
+
|
|
6
|
+
const imageBackgroundStyle = tva({});
|
|
7
|
+
|
|
8
|
+
export const ImageBackground = React.forwardRef<
|
|
9
|
+
React.ElementRef<typeof RNImageBackground>,
|
|
10
|
+
React.ComponentProps<typeof RNImageBackground>
|
|
11
|
+
>(({ className, ...props }, ref) => {
|
|
12
|
+
return (
|
|
13
|
+
<RNImageBackground
|
|
14
|
+
className={imageBackgroundStyle({
|
|
15
|
+
class: className,
|
|
16
|
+
})}
|
|
17
|
+
{...props}
|
|
18
|
+
ref={ref}
|
|
19
|
+
/>
|
|
20
|
+
);
|
|
21
|
+
});
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { Accordion } from './accordion';
|
|
2
|
+
import { ActionSheet } from './actionsheet';
|
|
3
|
+
import { Alert } from './alert';
|
|
4
|
+
import { AlertDialog, AlertDialogBackdrop, AlertDialogContent, AlertDialogCloseButton, AlertDialogHeader, AlertDialogBody, AlertDialogFooter, } from './alert-dialog';
|
|
5
|
+
import { Avatar } from './avatar';
|
|
6
|
+
import { Badge } from './badge';
|
|
7
|
+
// import { BottomSheet } from './bottomsheet';
|
|
8
|
+
import { Box } from './box';
|
|
9
|
+
import { Box as BoxNative } from "./box/index.tsx"; // explicitly import the native version
|
|
10
|
+
import { Button, ButtonText, ButtonSpinner, ButtonIcon, ButtonGroup, } from './button';
|
|
11
|
+
import { Card } from './card';
|
|
12
|
+
import { Center } from './center';
|
|
13
|
+
import { Checkbox, CheckboxGroup, } from './checkbox';
|
|
14
|
+
import { Divider } from './divider';
|
|
15
|
+
import { Drawer } from './drawer';
|
|
16
|
+
import { Fab } from './fab';
|
|
17
|
+
import { FlatList } from './flat-list';
|
|
18
|
+
import { FormControl } from './form-control';
|
|
19
|
+
import { Grid } from './grid';
|
|
20
|
+
import { Heading } from './heading';
|
|
21
|
+
import { HStack } from './hstack';
|
|
22
|
+
import { HStack as HStackNative } from "./hstack/index.tsx"; // explicitly import the native version
|
|
23
|
+
import { Icon } from './icon';
|
|
24
|
+
import { Image } from './image';
|
|
25
|
+
import { ImageBackground } from './image-background';
|
|
26
|
+
import { Input, InputField, InputIcon, InputSlot, } from './input';
|
|
27
|
+
import { InputAccessoryView } from './input-accessory-view';
|
|
28
|
+
import { KeyboardAvoidingView } from './keyboard-avoiding-view';
|
|
29
|
+
import { Link } from './link';
|
|
30
|
+
import { Menu } from './menu';
|
|
31
|
+
import { Modal, ModalBackdrop, ModalHeader, ModalContent, ModalCloseButton, ModalBody, ModalFooter, } from './modal';
|
|
32
|
+
import { Popover, PopoverBackdrop, PopoverContent, PopoverBody, } from './popover';
|
|
33
|
+
import { Portal } from './portal';
|
|
34
|
+
import { Pressable } from './pressable';
|
|
35
|
+
import { Progress } from './progress';
|
|
36
|
+
import { Radio, RadioGroup, } from './radio';
|
|
37
|
+
import { RefreshControl } from './refresh-control';
|
|
38
|
+
import { SafeAreaView } from './safe-area-view';
|
|
39
|
+
import { ScrollView } from './scroll-view';
|
|
40
|
+
import { SectionList } from './section-list';
|
|
41
|
+
import { Select, SelectBackdrop, SelectContent, SelectDragIndicator, SelectDragIndicatorWrapper, SelectInput, SelectIcon, SelectItem, SelectPortal, SelectTrigger, } from './select';
|
|
42
|
+
import { Skeleton } from './skeleton';
|
|
43
|
+
import { Slider } from './slider';
|
|
44
|
+
import { Spinner } from './spinner';
|
|
45
|
+
import { StatusBar } from './status-bar';
|
|
46
|
+
import { Switch } from './switch';
|
|
47
|
+
import { Table } from './table';
|
|
48
|
+
import { Text } from './text';
|
|
49
|
+
import { Text as TextNative } from './text/index.tsx'; // explicitly import the native version
|
|
50
|
+
import { Textarea, TextareaInput } from './textarea';
|
|
51
|
+
import { Toast } from './toast';
|
|
52
|
+
import { Tooltip } from './tooltip';
|
|
53
|
+
import { View } from './view';
|
|
54
|
+
import { VirtualizedList } from './virtualized-list';
|
|
55
|
+
import { VStack } from './vstack';
|
|
56
|
+
import { VStack as VStackNative } from "./vstack/index.tsx"; // explicitly import the native version
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
export {
|
|
60
|
+
Accordion,
|
|
61
|
+
ActionSheet,
|
|
62
|
+
Alert,
|
|
63
|
+
AlertDialog, AlertDialogBackdrop, AlertDialogContent, AlertDialogCloseButton, AlertDialogHeader, AlertDialogBody, AlertDialogFooter,
|
|
64
|
+
Avatar,
|
|
65
|
+
Badge,
|
|
66
|
+
// BottomSheet,
|
|
67
|
+
Box,
|
|
68
|
+
BoxNative,
|
|
69
|
+
Button, ButtonText, ButtonSpinner, ButtonIcon, ButtonGroup,
|
|
70
|
+
Card,
|
|
71
|
+
Center,
|
|
72
|
+
Checkbox, CheckboxGroup,
|
|
73
|
+
Divider,
|
|
74
|
+
Drawer,
|
|
75
|
+
Fab,
|
|
76
|
+
FlatList,
|
|
77
|
+
FormControl,
|
|
78
|
+
Grid,
|
|
79
|
+
Heading,
|
|
80
|
+
HStack,
|
|
81
|
+
HStackNative,
|
|
82
|
+
Icon,
|
|
83
|
+
Image,
|
|
84
|
+
ImageBackground,
|
|
85
|
+
Input, InputField, InputIcon, InputSlot,
|
|
86
|
+
InputAccessoryView,
|
|
87
|
+
KeyboardAvoidingView,
|
|
88
|
+
Link,
|
|
89
|
+
Menu,
|
|
90
|
+
Modal, ModalBackdrop, ModalHeader, ModalContent, ModalCloseButton, ModalBody, ModalFooter,
|
|
91
|
+
Popover, PopoverBackdrop, PopoverContent, PopoverBody,
|
|
92
|
+
Portal,
|
|
93
|
+
Pressable,
|
|
94
|
+
Progress,
|
|
95
|
+
Radio, RadioGroup,
|
|
96
|
+
RefreshControl,
|
|
97
|
+
SafeAreaView,
|
|
98
|
+
ScrollView,
|
|
99
|
+
SectionList,
|
|
100
|
+
Select, SelectBackdrop, SelectContent, SelectDragIndicator, SelectDragIndicatorWrapper, SelectInput, SelectIcon, SelectItem, SelectPortal, SelectTrigger,
|
|
101
|
+
Skeleton,
|
|
102
|
+
Slider,
|
|
103
|
+
Spinner,
|
|
104
|
+
StatusBar,
|
|
105
|
+
Switch,
|
|
106
|
+
Table,
|
|
107
|
+
Text,
|
|
108
|
+
TextNative,
|
|
109
|
+
Textarea, TextareaInput,
|
|
110
|
+
Toast,
|
|
111
|
+
Tooltip,
|
|
112
|
+
View,
|
|
113
|
+
VirtualizedList,
|
|
114
|
+
VStack,
|
|
115
|
+
VStackNative,
|
|
116
|
+
};
|