@beppla/tapas-ui 1.4.32 → 1.4.33
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/components/Alert/Alert.tsx +83 -0
- package/components/AnimatedNavItem/AnimatedNavItem.tsx +246 -0
- package/components/AnimatedNavItem/index.tsx +3 -0
- package/components/BarChart/BarChart.tsx +594 -0
- package/components/BarChart/index.tsx +2 -0
- package/components/Button/Button.tsx +96 -0
- package/components/Button/ButtonGroup.tsx +148 -0
- package/components/Button/react-native-hoverable.d.ts +14 -0
- package/components/Calendar/Calendar.base.tsx +393 -0
- package/components/Calendar/Calendar.tsx +107 -0
- package/components/Calendar/ConcreteTimeSelector.tsx +479 -0
- package/components/Calendar/CustomRange.tsx +538 -0
- package/components/Calendar/DaySelector.tsx +159 -0
- package/components/Calendar/MonthSelector.tsx +154 -0
- package/components/Calendar/TimeSelector.tsx +493 -0
- package/components/Calendar/WeekDaySelector.tsx +154 -0
- package/components/Calendar/helper.ts +138 -0
- package/components/Calendar/local.ts +124 -0
- package/components/Calendar/types.ts +113 -0
- package/components/Card/Card.tsx +276 -0
- package/components/CheckBox/CheckBox.tsx +157 -0
- package/components/CheckBox/CheckBoxItem.tsx +133 -0
- package/components/CheckBox/GroupCheckBox.tsx +87 -0
- package/components/CircularProgress/CircularProgress.tsx +45 -0
- package/components/Collapsible/Collapsible.tsx +88 -0
- package/components/ComboChart/ComboChart.tsx +214 -0
- package/components/ComboChart/index.tsx +3 -0
- package/components/DashboardCard/DashboardCard.tsx +221 -0
- package/components/DataCell/DataCell.tsx +670 -0
- package/components/DataCell/index.tsx +9 -0
- package/components/DataTable/DataTable.tsx +263 -0
- package/components/DataTable/index.tsx +3 -0
- package/components/DeviceSelectionModal/DeviceSelectionModal.tsx +368 -0
- package/components/DraggableFlatList/DraggableFlatList.tsx +12 -0
- package/components/Drawer/Drawer.tsx +227 -0
- package/components/Dropdown/CustomDropdown.tsx +288 -0
- package/components/Dropdown/Dropdown.tsx +830 -0
- package/components/Dropdown/InputDropdown.tsx +190 -0
- package/components/ExternalLink/ExternalLink.tsx +69 -0
- package/components/Gantt/Accessories.tsx +302 -0
- package/components/Gantt/Gantt.tsx +246 -0
- package/components/Gantt/GanttInnerElementType.tsx +131 -0
- package/components/Gantt/helper.ts +382 -0
- package/components/Gantt/types.ts +108 -0
- package/components/Grid/FixedSizeGrid.tsx +248 -0
- package/components/Grid/Grid.base.tsx +933 -0
- package/components/Grid/StaticFixedSizeGrid.tsx +511 -0
- package/components/Grid/VariableSizeGrid.tsx +514 -0
- package/components/Grid/helper.ts +69 -0
- package/components/Grid/timer.ts +32 -0
- package/components/Header/Header.tsx +240 -0
- package/components/HelloWave/HelloWave.tsx +70 -0
- package/components/Hoverable/Hoverable.tsx +65 -0
- package/components/IconText/IconText.tsx +132 -0
- package/components/Icons/TapasIcon.tsx +160 -0
- package/components/Icons/TapasIconExpo.tsx +115 -0
- package/components/Icons/expoFontLoader.ts +203 -0
- package/components/Icons/fontLoader.ts +247 -0
- package/components/Icons/index.tsx +19 -0
- package/components/Icons/smartFontLoader.ts +318 -0
- package/components/Image/Image.tsx +157 -0
- package/components/Image/PreviewImg.tsx +137 -0
- package/components/Input/Input.tsx +297 -0
- package/components/Layout/DrawerContext.tsx +31 -0
- package/components/Layout/Layout.tsx +119 -0
- package/components/Layout/ToastContext.tsx +29 -0
- package/components/Layout/index.tsx +24 -0
- package/components/LineChart/LineChart.tsx +479 -0
- package/components/LineChart/index.tsx +2 -0
- package/components/ListItem/ListItem.tsx +307 -0
- package/components/Loading/Loading.tsx +94 -0
- package/components/MessageBox/MessageBox.tsx +243 -0
- package/components/MultiSelector/MultiSelector.tsx +627 -0
- package/components/MultiSelector/index.tsx +2 -0
- package/components/Navigation/Navigation.tsx +327 -0
- package/components/Notification/Notification.tsx +289 -0
- package/components/Notification/index.tsx +2 -0
- package/components/NumericInput/NumericInput.tsx +244 -0
- package/components/Overlay/Overlay.tsx +30 -0
- package/components/Pagination/Pagination.tsx +296 -0
- package/components/PieChart/GroupedLegend.tsx +284 -0
- package/components/PieChart/NestedPieChart.tsx +606 -0
- package/components/PieChart/NestedPieChart.types.ts +171 -0
- package/components/PieChart/NestedPieChart.utils.ts +425 -0
- package/components/PieChart/PieChart.tsx +452 -0
- package/components/PieChart/index.tsx +19 -0
- package/components/Popover/Popover.tsx +172 -0
- package/components/Progress/Progress.tsx +209 -0
- package/components/Quantity/Quantity.tsx +195 -0
- package/components/Quantity/index.tsx +2 -0
- package/components/RadioButton/RadioButton.tsx +119 -0
- package/components/ReasonModal/ReasonModal.tsx +223 -0
- package/components/ReasonModal/index.tsx +3 -0
- package/components/ScanButton/ScanButton.tsx +139 -0
- package/components/SearchInput/SearchInput.tsx +361 -0
- package/components/SearchInput/index.tsx +2 -0
- package/components/SheetTitle/SheetTitle.tsx +84 -0
- package/components/Shell/Shell.tsx +116 -0
- package/components/Shell/styles.ts +29 -0
- package/components/Shell/types.ts +23 -0
- package/components/StatisticCard/StatisticCard.tsx +132 -0
- package/components/StatisticCard/index.tsx +3 -0
- package/components/StatisticsTable/StatisticsTable.tsx +1301 -0
- package/components/StatisticsTable/index.tsx +10 -0
- package/components/Status/Status.tsx +124 -0
- package/components/Steps/Steps.tsx +177 -0
- package/components/Tab/TapasTab.tsx +188 -0
- package/components/Tab/index.tsx +3 -0
- package/components/TabTitle/TabTitle.tsx +89 -0
- package/components/TabTitle/index.tsx +3 -0
- package/components/TableColumnHeader/TableColumnHeader.tsx +273 -0
- package/components/TableColumnHeader/index.tsx +7 -0
- package/components/Tag/Tag.tsx +92 -0
- package/components/Task/Task.tsx +309 -0
- package/components/Task/type.ts +6 -0
- package/components/Text/Text.tsx +152 -0
- package/components/TextArea/TextArea.tsx +348 -0
- package/components/Theme/ThemeProvider.tsx +13 -0
- package/components/Theme/defaultTheme.ts +222 -0
- package/components/Theme/themed.d.ts +102 -0
- package/components/Timeline/Timeline.tsx +230 -0
- package/components/Toast/Toast.tsx +167 -0
- package/components/UserSwitcher/UserSwitcher.tsx +272 -0
- package/components/UserSwitcher/index.tsx +3 -0
- package/components/WebViewBridge/WebViewBridge.tsx +1140 -0
- package/components/WebViewBridge/index.tsx +12 -0
- package/components/WebViewBridge/useWebViewBridge.ts +145 -0
- package/components/WordCloud/README.md +308 -0
- package/components/WordCloud/WordCloud.tsx +449 -0
- package/components/WordCloud/index.tsx +3 -0
- package/components/common/bridgelessUtils.ts +22 -0
- package/components/common.ts +8 -0
- package/components/index.tsx +205 -0
- package/package/README.md +107 -0
- package/package/assets/adaptive-icon.png +0 -0
- package/package/assets/favicon.png +0 -0
- package/package/assets/fonts/customfont.ttf +0 -0
- package/package/assets/icon.png +0 -0
- package/package/assets/logo.png +0 -0
- package/package/assets/splash.png +0 -0
- package/package/assets/svg/customfont.svg +333 -0
- package/package/assets/svg/logo.svg +9 -0
- package/package/assets/tapas/favicon.png +0 -0
- package/package/assets/tapas/logo.png +0 -0
- package/package/assets/tapas/logo_no_word.png +0 -0
- package/package/assets/tapas/logo_transparent_white.png +0 -0
- package/package/commonjs/WordCloud/README.md +308 -0
- package/package/commonjs/WordCloud/WordCloud.js +410 -0
- package/package/commonjs/WordCloud/WordCloud.js.map +1 -0
- package/package/init.js +179 -0
- package/package/module/AnimatedNavItem/README.md +520 -0
- package/package/module/DataCell/README.md +1042 -0
- package/package/module/Drawer/SCROLLVIEW_FIX.md +127 -0
- package/package/module/Icons/README.md +182 -0
- package/package/module/Icons/icon-categories.json +341 -0
- package/package/module/Icons/real-icon-mapping.json +1940 -0
- package/package/module/Icons/selection.json +1 -0
- package/package/module/Input/FOCUS_FIX_SUMMARY.md +201 -0
- package/package/module/Input/FOCUS_ISSUE_ANALYSIS.md +188 -0
- package/package/module/Input/README.md +157 -0
- package/package/module/Loading/README.md +160 -0
- package/package/module/MultiSelector/README.md +246 -0
- package/package/module/Notification/README.md +158 -0
- package/package/module/Pagination/BACKGROUND_COLOR.md +173 -0
- package/package/module/Pagination/DROPDOWN_IMPROVEMENTS.md +321 -0
- package/package/module/PieChart/BACKWARD_COMPATIBILITY.md +157 -0
- package/package/module/PieChart/BUGFIX_EMPTY_DATA.md +86 -0
- package/package/module/PieChart/IMPLEMENTATION_SUMMARY.md +306 -0
- package/package/module/PieChart/NestedPieChart.README.md +421 -0
- package/package/module/Quantity/README.md +251 -0
- package/package/module/ReasonModal/README.md +320 -0
- package/package/module/SearchInput/README.md +304 -0
- package/package/module/StatisticsTable/PLACEHOLDER_FEATURE.md +287 -0
- package/package/module/StatisticsTable/README.md +470 -0
- package/package/module/StatisticsTable/SORTING_FEATURE.md +271 -0
- package/package/module/StatisticsTable/STATS_CELL_CLICK.md +120 -0
- package/package/module/StatisticsTable/VIRTUAL_SCROLLING.md +254 -0
- package/package/module/TabTitle/README.md +399 -0
- package/package/module/TableColumnHeader/README.md +682 -0
- package/package/module/UserSwitcher/README.md +334 -0
- package/package/module/WebViewBridge/OPTIMIZATION_SUMMARY.md +187 -0
- package/package/module/WebViewBridge/README.md +564 -0
- package/package/module/WordCloud/README.md +308 -0
- package/package/module/WordCloud/WordCloud.js +405 -0
- package/package/module/WordCloud/WordCloud.js.map +1 -0
- package/package/package.json +84 -0
- package/package/typescript/WordCloud/WordCloud.d.ts +39 -0
- package/package/typescript/WordCloud/WordCloud.d.ts.map +1 -0
- package/package/typescript/WordCloud/index.d.ts +3 -0
- package/package/typescript/WordCloud/index.d.ts.map +1 -0
- package/package.json +202 -66
- package/commonjs/WordCloud/WordCloud.js +0 -197
- package/commonjs/WordCloud/WordCloud.js.map +0 -1
- package/module/WordCloud/WordCloud.js +0 -192
- package/module/WordCloud/WordCloud.js.map +0 -1
- package/typescript/WordCloud/WordCloud.d.ts +0 -21
- package/typescript/WordCloud/WordCloud.d.ts.map +0 -1
- package/typescript/WordCloud/index.d.ts +0 -3
- package/typescript/WordCloud/index.d.ts.map +0 -1
- /package/{commonjs → components}/AnimatedNavItem/README.md +0 -0
- /package/{commonjs → components}/DataCell/README.md +0 -0
- /package/{commonjs → components}/Drawer/SCROLLVIEW_FIX.md +0 -0
- /package/{commonjs → components}/Icons/README.md +0 -0
- /package/{commonjs → components}/Icons/icon-categories.json +0 -0
- /package/{commonjs → components}/Icons/real-icon-mapping.json +0 -0
- /package/{commonjs → components}/Icons/selection.json +0 -0
- /package/{commonjs → components}/Input/FOCUS_FIX_SUMMARY.md +0 -0
- /package/{commonjs → components}/Input/FOCUS_ISSUE_ANALYSIS.md +0 -0
- /package/{commonjs → components}/Input/README.md +0 -0
- /package/{commonjs → components}/Loading/README.md +0 -0
- /package/{commonjs → components}/MultiSelector/README.md +0 -0
- /package/{commonjs → components}/Notification/README.md +0 -0
- /package/{commonjs → components}/Pagination/BACKGROUND_COLOR.md +0 -0
- /package/{commonjs → components}/Pagination/DROPDOWN_IMPROVEMENTS.md +0 -0
- /package/{commonjs → components}/PieChart/BACKWARD_COMPATIBILITY.md +0 -0
- /package/{commonjs → components}/PieChart/BUGFIX_EMPTY_DATA.md +0 -0
- /package/{commonjs → components}/PieChart/IMPLEMENTATION_SUMMARY.md +0 -0
- /package/{commonjs → components}/PieChart/NestedPieChart.README.md +0 -0
- /package/{commonjs → components}/Quantity/README.md +0 -0
- /package/{commonjs → components}/ReasonModal/README.md +0 -0
- /package/{commonjs → components}/SearchInput/README.md +0 -0
- /package/{commonjs → components}/StatisticsTable/PLACEHOLDER_FEATURE.md +0 -0
- /package/{commonjs → components}/StatisticsTable/README.md +0 -0
- /package/{commonjs → components}/StatisticsTable/SORTING_FEATURE.md +0 -0
- /package/{commonjs → components}/StatisticsTable/STATS_CELL_CLICK.md +0 -0
- /package/{commonjs → components}/StatisticsTable/VIRTUAL_SCROLLING.md +0 -0
- /package/{commonjs → components}/TabTitle/README.md +0 -0
- /package/{commonjs → components}/TableColumnHeader/README.md +0 -0
- /package/{commonjs → components}/UserSwitcher/README.md +0 -0
- /package/{commonjs → components}/WebViewBridge/OPTIMIZATION_SUMMARY.md +0 -0
- /package/{commonjs → components}/WebViewBridge/README.md +0 -0
- /package/{CHANGELOG.md → package/CHANGELOG.md} +0 -0
- /package/{commonjs → package/commonjs}/Alert/Alert.js +0 -0
- /package/{commonjs → package/commonjs}/Alert/Alert.js.map +0 -0
- /package/{commonjs → package/commonjs}/AnimatedNavItem/AnimatedNavItem.js +0 -0
- /package/{commonjs → package/commonjs}/AnimatedNavItem/AnimatedNavItem.js.map +0 -0
- /package/{module → package/commonjs}/AnimatedNavItem/README.md +0 -0
- /package/{commonjs → package/commonjs}/AnimatedNavItem/index.js +0 -0
- /package/{commonjs → package/commonjs}/AnimatedNavItem/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/BarChart/BarChart.js +0 -0
- /package/{commonjs → package/commonjs}/BarChart/BarChart.js.map +0 -0
- /package/{commonjs → package/commonjs}/BarChart/index.js +0 -0
- /package/{commonjs → package/commonjs}/BarChart/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/Button/Button.js +0 -0
- /package/{commonjs → package/commonjs}/Button/Button.js.map +0 -0
- /package/{commonjs → package/commonjs}/Button/ButtonGroup.js +0 -0
- /package/{commonjs → package/commonjs}/Button/ButtonGroup.js.map +0 -0
- /package/{commonjs → package/commonjs}/Button/react-native-hoverable.d.js +0 -0
- /package/{commonjs → package/commonjs}/Button/react-native-hoverable.d.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/Calendar.base.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/Calendar.base.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/Calendar.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/Calendar.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/ConcreteTimeSelector.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/ConcreteTimeSelector.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/CustomRange.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/CustomRange.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/DaySelector.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/DaySelector.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/MonthSelector.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/MonthSelector.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/TimeSelector.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/TimeSelector.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/WeekDaySelector.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/WeekDaySelector.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/helper.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/helper.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/local.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/local.js.map +0 -0
- /package/{commonjs → package/commonjs}/Calendar/types.js +0 -0
- /package/{commonjs → package/commonjs}/Calendar/types.js.map +0 -0
- /package/{commonjs → package/commonjs}/Card/Card.js +0 -0
- /package/{commonjs → package/commonjs}/Card/Card.js.map +0 -0
- /package/{commonjs → package/commonjs}/CheckBox/CheckBox.js +0 -0
- /package/{commonjs → package/commonjs}/CheckBox/CheckBox.js.map +0 -0
- /package/{commonjs → package/commonjs}/CheckBox/CheckBoxItem.js +0 -0
- /package/{commonjs → package/commonjs}/CheckBox/CheckBoxItem.js.map +0 -0
- /package/{commonjs → package/commonjs}/CheckBox/GroupCheckBox.js +0 -0
- /package/{commonjs → package/commonjs}/CheckBox/GroupCheckBox.js.map +0 -0
- /package/{commonjs → package/commonjs}/CircularProgress/CircularProgress.js +0 -0
- /package/{commonjs → package/commonjs}/CircularProgress/CircularProgress.js.map +0 -0
- /package/{commonjs → package/commonjs}/Collapsible/Collapsible.js +0 -0
- /package/{commonjs → package/commonjs}/Collapsible/Collapsible.js.map +0 -0
- /package/{commonjs → package/commonjs}/ComboChart/ComboChart.js +0 -0
- /package/{commonjs → package/commonjs}/ComboChart/ComboChart.js.map +0 -0
- /package/{commonjs → package/commonjs}/ComboChart/index.js +0 -0
- /package/{commonjs → package/commonjs}/ComboChart/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/DashboardCard/DashboardCard.js +0 -0
- /package/{commonjs → package/commonjs}/DashboardCard/DashboardCard.js.map +0 -0
- /package/{commonjs → package/commonjs}/DataCell/DataCell.js +0 -0
- /package/{commonjs → package/commonjs}/DataCell/DataCell.js.map +0 -0
- /package/{module → package/commonjs}/DataCell/README.md +0 -0
- /package/{commonjs → package/commonjs}/DataCell/index.js +0 -0
- /package/{commonjs → package/commonjs}/DataCell/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/DataTable/DataTable.js +0 -0
- /package/{commonjs → package/commonjs}/DataTable/DataTable.js.map +0 -0
- /package/{commonjs → package/commonjs}/DataTable/index.js +0 -0
- /package/{commonjs → package/commonjs}/DataTable/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/DeviceSelectionModal/DeviceSelectionModal.js +0 -0
- /package/{commonjs → package/commonjs}/DeviceSelectionModal/DeviceSelectionModal.js.map +0 -0
- /package/{commonjs → package/commonjs}/DraggableFlatList/DraggableFlatList.js +0 -0
- /package/{commonjs → package/commonjs}/DraggableFlatList/DraggableFlatList.js.map +0 -0
- /package/{commonjs → package/commonjs}/Drawer/Drawer.js +0 -0
- /package/{commonjs → package/commonjs}/Drawer/Drawer.js.map +0 -0
- /package/{module → package/commonjs}/Drawer/SCROLLVIEW_FIX.md +0 -0
- /package/{commonjs → package/commonjs}/Dropdown/CustomDropdown.js +0 -0
- /package/{commonjs → package/commonjs}/Dropdown/CustomDropdown.js.map +0 -0
- /package/{commonjs → package/commonjs}/Dropdown/Dropdown.js +0 -0
- /package/{commonjs → package/commonjs}/Dropdown/Dropdown.js.map +0 -0
- /package/{commonjs → package/commonjs}/Dropdown/InputDropdown.js +0 -0
- /package/{commonjs → package/commonjs}/Dropdown/InputDropdown.js.map +0 -0
- /package/{commonjs → package/commonjs}/ExternalLink/ExternalLink.js +0 -0
- /package/{commonjs → package/commonjs}/ExternalLink/ExternalLink.js.map +0 -0
- /package/{commonjs → package/commonjs}/Gantt/Accessories.js +0 -0
- /package/{commonjs → package/commonjs}/Gantt/Accessories.js.map +0 -0
- /package/{commonjs → package/commonjs}/Gantt/Gantt.js +0 -0
- /package/{commonjs → package/commonjs}/Gantt/Gantt.js.map +0 -0
- /package/{commonjs → package/commonjs}/Gantt/GanttInnerElementType.js +0 -0
- /package/{commonjs → package/commonjs}/Gantt/GanttInnerElementType.js.map +0 -0
- /package/{commonjs → package/commonjs}/Gantt/helper.js +0 -0
- /package/{commonjs → package/commonjs}/Gantt/helper.js.map +0 -0
- /package/{commonjs → package/commonjs}/Gantt/types.js +0 -0
- /package/{commonjs → package/commonjs}/Gantt/types.js.map +0 -0
- /package/{commonjs → package/commonjs}/Grid/FixedSizeGrid.js +0 -0
- /package/{commonjs → package/commonjs}/Grid/FixedSizeGrid.js.map +0 -0
- /package/{commonjs → package/commonjs}/Grid/Grid.base.js +0 -0
- /package/{commonjs → package/commonjs}/Grid/Grid.base.js.map +0 -0
- /package/{commonjs → package/commonjs}/Grid/StaticFixedSizeGrid.js +0 -0
- /package/{commonjs → package/commonjs}/Grid/StaticFixedSizeGrid.js.map +0 -0
- /package/{commonjs → package/commonjs}/Grid/VariableSizeGrid.js +0 -0
- /package/{commonjs → package/commonjs}/Grid/VariableSizeGrid.js.map +0 -0
- /package/{commonjs → package/commonjs}/Grid/helper.js +0 -0
- /package/{commonjs → package/commonjs}/Grid/helper.js.map +0 -0
- /package/{commonjs → package/commonjs}/Grid/timer.js +0 -0
- /package/{commonjs → package/commonjs}/Grid/timer.js.map +0 -0
- /package/{commonjs → package/commonjs}/Header/Header.js +0 -0
- /package/{commonjs → package/commonjs}/Header/Header.js.map +0 -0
- /package/{commonjs → package/commonjs}/HelloWave/HelloWave.js +0 -0
- /package/{commonjs → package/commonjs}/HelloWave/HelloWave.js.map +0 -0
- /package/{commonjs → package/commonjs}/Hoverable/Hoverable.js +0 -0
- /package/{commonjs → package/commonjs}/Hoverable/Hoverable.js.map +0 -0
- /package/{commonjs → package/commonjs}/IconText/IconText.js +0 -0
- /package/{commonjs → package/commonjs}/IconText/IconText.js.map +0 -0
- /package/{module → package/commonjs}/Icons/README.md +0 -0
- /package/{commonjs → package/commonjs}/Icons/TapasIcon.js +0 -0
- /package/{commonjs → package/commonjs}/Icons/TapasIcon.js.map +0 -0
- /package/{commonjs → package/commonjs}/Icons/TapasIconExpo.js +0 -0
- /package/{commonjs → package/commonjs}/Icons/TapasIconExpo.js.map +0 -0
- /package/{commonjs → package/commonjs}/Icons/expoFontLoader.js +0 -0
- /package/{commonjs → package/commonjs}/Icons/expoFontLoader.js.map +0 -0
- /package/{commonjs → package/commonjs}/Icons/fontLoader.js +0 -0
- /package/{commonjs → package/commonjs}/Icons/fontLoader.js.map +0 -0
- /package/{module → package/commonjs}/Icons/icon-categories.json +0 -0
- /package/{commonjs → package/commonjs}/Icons/index.js +0 -0
- /package/{commonjs → package/commonjs}/Icons/index.js.map +0 -0
- /package/{module → package/commonjs}/Icons/real-icon-mapping.json +0 -0
- /package/{module → package/commonjs}/Icons/selection.json +0 -0
- /package/{commonjs → package/commonjs}/Icons/smartFontLoader.js +0 -0
- /package/{commonjs → package/commonjs}/Icons/smartFontLoader.js.map +0 -0
- /package/{commonjs → package/commonjs}/Image/Image.js +0 -0
- /package/{commonjs → package/commonjs}/Image/Image.js.map +0 -0
- /package/{commonjs → package/commonjs}/Image/PreviewImg.js +0 -0
- /package/{commonjs → package/commonjs}/Image/PreviewImg.js.map +0 -0
- /package/{module → package/commonjs}/Input/FOCUS_FIX_SUMMARY.md +0 -0
- /package/{module → package/commonjs}/Input/FOCUS_ISSUE_ANALYSIS.md +0 -0
- /package/{commonjs → package/commonjs}/Input/Input.js +0 -0
- /package/{commonjs → package/commonjs}/Input/Input.js.map +0 -0
- /package/{module → package/commonjs}/Input/README.md +0 -0
- /package/{commonjs → package/commonjs}/Layout/DrawerContext.js +0 -0
- /package/{commonjs → package/commonjs}/Layout/DrawerContext.js.map +0 -0
- /package/{commonjs → package/commonjs}/Layout/Layout.js +0 -0
- /package/{commonjs → package/commonjs}/Layout/Layout.js.map +0 -0
- /package/{commonjs → package/commonjs}/Layout/ToastContext.js +0 -0
- /package/{commonjs → package/commonjs}/Layout/ToastContext.js.map +0 -0
- /package/{commonjs → package/commonjs}/Layout/index.js +0 -0
- /package/{commonjs → package/commonjs}/Layout/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/LineChart/LineChart.js +0 -0
- /package/{commonjs → package/commonjs}/LineChart/LineChart.js.map +0 -0
- /package/{commonjs → package/commonjs}/LineChart/index.js +0 -0
- /package/{commonjs → package/commonjs}/LineChart/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/ListItem/ListItem.js +0 -0
- /package/{commonjs → package/commonjs}/ListItem/ListItem.js.map +0 -0
- /package/{commonjs → package/commonjs}/Loading/Loading.js +0 -0
- /package/{commonjs → package/commonjs}/Loading/Loading.js.map +0 -0
- /package/{module → package/commonjs}/Loading/README.md +0 -0
- /package/{commonjs → package/commonjs}/MessageBox/MessageBox.js +0 -0
- /package/{commonjs → package/commonjs}/MessageBox/MessageBox.js.map +0 -0
- /package/{commonjs → package/commonjs}/MultiSelector/MultiSelector.js +0 -0
- /package/{commonjs → package/commonjs}/MultiSelector/MultiSelector.js.map +0 -0
- /package/{module → package/commonjs}/MultiSelector/README.md +0 -0
- /package/{commonjs → package/commonjs}/MultiSelector/index.js +0 -0
- /package/{commonjs → package/commonjs}/MultiSelector/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/Navigation/Navigation.js +0 -0
- /package/{commonjs → package/commonjs}/Navigation/Navigation.js.map +0 -0
- /package/{commonjs → package/commonjs}/Notification/Notification.js +0 -0
- /package/{commonjs → package/commonjs}/Notification/Notification.js.map +0 -0
- /package/{module → package/commonjs}/Notification/README.md +0 -0
- /package/{commonjs → package/commonjs}/Notification/index.js +0 -0
- /package/{commonjs → package/commonjs}/Notification/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/NumericInput/NumericInput.js +0 -0
- /package/{commonjs → package/commonjs}/NumericInput/NumericInput.js.map +0 -0
- /package/{commonjs → package/commonjs}/Overlay/Overlay.js +0 -0
- /package/{commonjs → package/commonjs}/Overlay/Overlay.js.map +0 -0
- /package/{module → package/commonjs}/Pagination/BACKGROUND_COLOR.md +0 -0
- /package/{module → package/commonjs}/Pagination/DROPDOWN_IMPROVEMENTS.md +0 -0
- /package/{commonjs → package/commonjs}/Pagination/Pagination.js +0 -0
- /package/{commonjs → package/commonjs}/Pagination/Pagination.js.map +0 -0
- /package/{module → package/commonjs}/PieChart/BACKWARD_COMPATIBILITY.md +0 -0
- /package/{module → package/commonjs}/PieChart/BUGFIX_EMPTY_DATA.md +0 -0
- /package/{commonjs → package/commonjs}/PieChart/GroupedLegend.js +0 -0
- /package/{commonjs → package/commonjs}/PieChart/GroupedLegend.js.map +0 -0
- /package/{module → package/commonjs}/PieChart/IMPLEMENTATION_SUMMARY.md +0 -0
- /package/{module → package/commonjs}/PieChart/NestedPieChart.README.md +0 -0
- /package/{commonjs → package/commonjs}/PieChart/NestedPieChart.js +0 -0
- /package/{commonjs → package/commonjs}/PieChart/NestedPieChart.js.map +0 -0
- /package/{commonjs → package/commonjs}/PieChart/NestedPieChart.types.js +0 -0
- /package/{commonjs → package/commonjs}/PieChart/NestedPieChart.types.js.map +0 -0
- /package/{commonjs → package/commonjs}/PieChart/NestedPieChart.utils.js +0 -0
- /package/{commonjs → package/commonjs}/PieChart/NestedPieChart.utils.js.map +0 -0
- /package/{commonjs → package/commonjs}/PieChart/PieChart.js +0 -0
- /package/{commonjs → package/commonjs}/PieChart/PieChart.js.map +0 -0
- /package/{commonjs → package/commonjs}/PieChart/index.js +0 -0
- /package/{commonjs → package/commonjs}/PieChart/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/Popover/Popover.js +0 -0
- /package/{commonjs → package/commonjs}/Popover/Popover.js.map +0 -0
- /package/{commonjs → package/commonjs}/Progress/Progress.js +0 -0
- /package/{commonjs → package/commonjs}/Progress/Progress.js.map +0 -0
- /package/{commonjs → package/commonjs}/Quantity/Quantity.js +0 -0
- /package/{commonjs → package/commonjs}/Quantity/Quantity.js.map +0 -0
- /package/{module → package/commonjs}/Quantity/README.md +0 -0
- /package/{commonjs → package/commonjs}/Quantity/index.js +0 -0
- /package/{commonjs → package/commonjs}/Quantity/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/RadioButton/RadioButton.js +0 -0
- /package/{commonjs → package/commonjs}/RadioButton/RadioButton.js.map +0 -0
- /package/{module → package/commonjs}/ReasonModal/README.md +0 -0
- /package/{commonjs → package/commonjs}/ReasonModal/ReasonModal.js +0 -0
- /package/{commonjs → package/commonjs}/ReasonModal/ReasonModal.js.map +0 -0
- /package/{commonjs → package/commonjs}/ReasonModal/index.js +0 -0
- /package/{commonjs → package/commonjs}/ReasonModal/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/ScanButton/ScanButton.js +0 -0
- /package/{commonjs → package/commonjs}/ScanButton/ScanButton.js.map +0 -0
- /package/{module → package/commonjs}/SearchInput/README.md +0 -0
- /package/{commonjs → package/commonjs}/SearchInput/SearchInput.js +0 -0
- /package/{commonjs → package/commonjs}/SearchInput/SearchInput.js.map +0 -0
- /package/{commonjs → package/commonjs}/SearchInput/index.js +0 -0
- /package/{commonjs → package/commonjs}/SearchInput/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/SheetTitle/SheetTitle.js +0 -0
- /package/{commonjs → package/commonjs}/SheetTitle/SheetTitle.js.map +0 -0
- /package/{commonjs → package/commonjs}/Shell/Shell.js +0 -0
- /package/{commonjs → package/commonjs}/Shell/Shell.js.map +0 -0
- /package/{commonjs → package/commonjs}/Shell/styles.js +0 -0
- /package/{commonjs → package/commonjs}/Shell/styles.js.map +0 -0
- /package/{commonjs → package/commonjs}/Shell/types.js +0 -0
- /package/{commonjs → package/commonjs}/Shell/types.js.map +0 -0
- /package/{commonjs → package/commonjs}/StatisticCard/StatisticCard.js +0 -0
- /package/{commonjs → package/commonjs}/StatisticCard/StatisticCard.js.map +0 -0
- /package/{commonjs → package/commonjs}/StatisticCard/index.js +0 -0
- /package/{commonjs → package/commonjs}/StatisticCard/index.js.map +0 -0
- /package/{module → package/commonjs}/StatisticsTable/PLACEHOLDER_FEATURE.md +0 -0
- /package/{module → package/commonjs}/StatisticsTable/README.md +0 -0
- /package/{module → package/commonjs}/StatisticsTable/SORTING_FEATURE.md +0 -0
- /package/{module → package/commonjs}/StatisticsTable/STATS_CELL_CLICK.md +0 -0
- /package/{commonjs → package/commonjs}/StatisticsTable/StatisticsTable.js +0 -0
- /package/{commonjs → package/commonjs}/StatisticsTable/StatisticsTable.js.map +0 -0
- /package/{module → package/commonjs}/StatisticsTable/VIRTUAL_SCROLLING.md +0 -0
- /package/{commonjs → package/commonjs}/StatisticsTable/index.js +0 -0
- /package/{commonjs → package/commonjs}/StatisticsTable/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/Status/Status.js +0 -0
- /package/{commonjs → package/commonjs}/Status/Status.js.map +0 -0
- /package/{commonjs → package/commonjs}/Steps/Steps.js +0 -0
- /package/{commonjs → package/commonjs}/Steps/Steps.js.map +0 -0
- /package/{commonjs → package/commonjs}/Tab/TapasTab.js +0 -0
- /package/{commonjs → package/commonjs}/Tab/TapasTab.js.map +0 -0
- /package/{commonjs → package/commonjs}/Tab/index.js +0 -0
- /package/{commonjs → package/commonjs}/Tab/index.js.map +0 -0
- /package/{module → package/commonjs}/TabTitle/README.md +0 -0
- /package/{commonjs → package/commonjs}/TabTitle/TabTitle.js +0 -0
- /package/{commonjs → package/commonjs}/TabTitle/TabTitle.js.map +0 -0
- /package/{commonjs → package/commonjs}/TabTitle/index.js +0 -0
- /package/{commonjs → package/commonjs}/TabTitle/index.js.map +0 -0
- /package/{module → package/commonjs}/TableColumnHeader/README.md +0 -0
- /package/{commonjs → package/commonjs}/TableColumnHeader/TableColumnHeader.js +0 -0
- /package/{commonjs → package/commonjs}/TableColumnHeader/TableColumnHeader.js.map +0 -0
- /package/{commonjs → package/commonjs}/TableColumnHeader/index.js +0 -0
- /package/{commonjs → package/commonjs}/TableColumnHeader/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/Tag/Tag.js +0 -0
- /package/{commonjs → package/commonjs}/Tag/Tag.js.map +0 -0
- /package/{commonjs → package/commonjs}/Task/Task.js +0 -0
- /package/{commonjs → package/commonjs}/Task/Task.js.map +0 -0
- /package/{commonjs → package/commonjs}/Task/type.js +0 -0
- /package/{commonjs → package/commonjs}/Task/type.js.map +0 -0
- /package/{commonjs → package/commonjs}/Text/Text.js +0 -0
- /package/{commonjs → package/commonjs}/Text/Text.js.map +0 -0
- /package/{commonjs → package/commonjs}/TextArea/TextArea.js +0 -0
- /package/{commonjs → package/commonjs}/TextArea/TextArea.js.map +0 -0
- /package/{commonjs → package/commonjs}/Theme/ThemeProvider.js +0 -0
- /package/{commonjs → package/commonjs}/Theme/ThemeProvider.js.map +0 -0
- /package/{commonjs → package/commonjs}/Theme/defaultTheme.js +0 -0
- /package/{commonjs → package/commonjs}/Theme/defaultTheme.js.map +0 -0
- /package/{commonjs → package/commonjs}/Theme/themed.d.js +0 -0
- /package/{commonjs → package/commonjs}/Theme/themed.d.js.map +0 -0
- /package/{commonjs → package/commonjs}/Timeline/Timeline.js +0 -0
- /package/{commonjs → package/commonjs}/Timeline/Timeline.js.map +0 -0
- /package/{commonjs → package/commonjs}/Toast/Toast.js +0 -0
- /package/{commonjs → package/commonjs}/Toast/Toast.js.map +0 -0
- /package/{module → package/commonjs}/UserSwitcher/README.md +0 -0
- /package/{commonjs → package/commonjs}/UserSwitcher/UserSwitcher.js +0 -0
- /package/{commonjs → package/commonjs}/UserSwitcher/UserSwitcher.js.map +0 -0
- /package/{commonjs → package/commonjs}/UserSwitcher/index.js +0 -0
- /package/{commonjs → package/commonjs}/UserSwitcher/index.js.map +0 -0
- /package/{module → package/commonjs}/WebViewBridge/OPTIMIZATION_SUMMARY.md +0 -0
- /package/{module → package/commonjs}/WebViewBridge/README.md +0 -0
- /package/{commonjs → package/commonjs}/WebViewBridge/WebViewBridge.js +0 -0
- /package/{commonjs → package/commonjs}/WebViewBridge/WebViewBridge.js.map +0 -0
- /package/{commonjs → package/commonjs}/WebViewBridge/index.js +0 -0
- /package/{commonjs → package/commonjs}/WebViewBridge/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/WebViewBridge/useWebViewBridge.js +0 -0
- /package/{commonjs → package/commonjs}/WebViewBridge/useWebViewBridge.js.map +0 -0
- /package/{commonjs → package/commonjs}/WordCloud/index.js +0 -0
- /package/{commonjs → package/commonjs}/WordCloud/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/common/bridgelessUtils.js +0 -0
- /package/{commonjs → package/commonjs}/common/bridgelessUtils.js.map +0 -0
- /package/{commonjs → package/commonjs}/common.js +0 -0
- /package/{commonjs → package/commonjs}/common.js.map +0 -0
- /package/{commonjs → package/commonjs}/index.js +0 -0
- /package/{commonjs → package/commonjs}/index.js.map +0 -0
- /package/{commonjs → package/commonjs}/package.json +0 -0
- /package/{module → package/module}/Alert/Alert.js +0 -0
- /package/{module → package/module}/Alert/Alert.js.map +0 -0
- /package/{module → package/module}/AnimatedNavItem/AnimatedNavItem.js +0 -0
- /package/{module → package/module}/AnimatedNavItem/AnimatedNavItem.js.map +0 -0
- /package/{module → package/module}/AnimatedNavItem/index.js +0 -0
- /package/{module → package/module}/AnimatedNavItem/index.js.map +0 -0
- /package/{module → package/module}/BarChart/BarChart.js +0 -0
- /package/{module → package/module}/BarChart/BarChart.js.map +0 -0
- /package/{module → package/module}/BarChart/index.js +0 -0
- /package/{module → package/module}/BarChart/index.js.map +0 -0
- /package/{module → package/module}/Button/Button.js +0 -0
- /package/{module → package/module}/Button/Button.js.map +0 -0
- /package/{module → package/module}/Button/ButtonGroup.js +0 -0
- /package/{module → package/module}/Button/ButtonGroup.js.map +0 -0
- /package/{module → package/module}/Button/react-native-hoverable.d.js +0 -0
- /package/{module → package/module}/Button/react-native-hoverable.d.js.map +0 -0
- /package/{module → package/module}/Calendar/Calendar.base.js +0 -0
- /package/{module → package/module}/Calendar/Calendar.base.js.map +0 -0
- /package/{module → package/module}/Calendar/Calendar.js +0 -0
- /package/{module → package/module}/Calendar/Calendar.js.map +0 -0
- /package/{module → package/module}/Calendar/ConcreteTimeSelector.js +0 -0
- /package/{module → package/module}/Calendar/ConcreteTimeSelector.js.map +0 -0
- /package/{module → package/module}/Calendar/CustomRange.js +0 -0
- /package/{module → package/module}/Calendar/CustomRange.js.map +0 -0
- /package/{module → package/module}/Calendar/DaySelector.js +0 -0
- /package/{module → package/module}/Calendar/DaySelector.js.map +0 -0
- /package/{module → package/module}/Calendar/MonthSelector.js +0 -0
- /package/{module → package/module}/Calendar/MonthSelector.js.map +0 -0
- /package/{module → package/module}/Calendar/TimeSelector.js +0 -0
- /package/{module → package/module}/Calendar/TimeSelector.js.map +0 -0
- /package/{module → package/module}/Calendar/WeekDaySelector.js +0 -0
- /package/{module → package/module}/Calendar/WeekDaySelector.js.map +0 -0
- /package/{module → package/module}/Calendar/helper.js +0 -0
- /package/{module → package/module}/Calendar/helper.js.map +0 -0
- /package/{module → package/module}/Calendar/local.js +0 -0
- /package/{module → package/module}/Calendar/local.js.map +0 -0
- /package/{module → package/module}/Calendar/types.js +0 -0
- /package/{module → package/module}/Calendar/types.js.map +0 -0
- /package/{module → package/module}/Card/Card.js +0 -0
- /package/{module → package/module}/Card/Card.js.map +0 -0
- /package/{module → package/module}/CheckBox/CheckBox.js +0 -0
- /package/{module → package/module}/CheckBox/CheckBox.js.map +0 -0
- /package/{module → package/module}/CheckBox/CheckBoxItem.js +0 -0
- /package/{module → package/module}/CheckBox/CheckBoxItem.js.map +0 -0
- /package/{module → package/module}/CheckBox/GroupCheckBox.js +0 -0
- /package/{module → package/module}/CheckBox/GroupCheckBox.js.map +0 -0
- /package/{module → package/module}/CircularProgress/CircularProgress.js +0 -0
- /package/{module → package/module}/CircularProgress/CircularProgress.js.map +0 -0
- /package/{module → package/module}/Collapsible/Collapsible.js +0 -0
- /package/{module → package/module}/Collapsible/Collapsible.js.map +0 -0
- /package/{module → package/module}/ComboChart/ComboChart.js +0 -0
- /package/{module → package/module}/ComboChart/ComboChart.js.map +0 -0
- /package/{module → package/module}/ComboChart/index.js +0 -0
- /package/{module → package/module}/ComboChart/index.js.map +0 -0
- /package/{module → package/module}/DashboardCard/DashboardCard.js +0 -0
- /package/{module → package/module}/DashboardCard/DashboardCard.js.map +0 -0
- /package/{module → package/module}/DataCell/DataCell.js +0 -0
- /package/{module → package/module}/DataCell/DataCell.js.map +0 -0
- /package/{module → package/module}/DataCell/index.js +0 -0
- /package/{module → package/module}/DataCell/index.js.map +0 -0
- /package/{module → package/module}/DataTable/DataTable.js +0 -0
- /package/{module → package/module}/DataTable/DataTable.js.map +0 -0
- /package/{module → package/module}/DataTable/index.js +0 -0
- /package/{module → package/module}/DataTable/index.js.map +0 -0
- /package/{module → package/module}/DeviceSelectionModal/DeviceSelectionModal.js +0 -0
- /package/{module → package/module}/DeviceSelectionModal/DeviceSelectionModal.js.map +0 -0
- /package/{module → package/module}/DraggableFlatList/DraggableFlatList.js +0 -0
- /package/{module → package/module}/DraggableFlatList/DraggableFlatList.js.map +0 -0
- /package/{module → package/module}/Drawer/Drawer.js +0 -0
- /package/{module → package/module}/Drawer/Drawer.js.map +0 -0
- /package/{module → package/module}/Dropdown/CustomDropdown.js +0 -0
- /package/{module → package/module}/Dropdown/CustomDropdown.js.map +0 -0
- /package/{module → package/module}/Dropdown/Dropdown.js +0 -0
- /package/{module → package/module}/Dropdown/Dropdown.js.map +0 -0
- /package/{module → package/module}/Dropdown/InputDropdown.js +0 -0
- /package/{module → package/module}/Dropdown/InputDropdown.js.map +0 -0
- /package/{module → package/module}/ExternalLink/ExternalLink.js +0 -0
- /package/{module → package/module}/ExternalLink/ExternalLink.js.map +0 -0
- /package/{module → package/module}/Gantt/Accessories.js +0 -0
- /package/{module → package/module}/Gantt/Accessories.js.map +0 -0
- /package/{module → package/module}/Gantt/Gantt.js +0 -0
- /package/{module → package/module}/Gantt/Gantt.js.map +0 -0
- /package/{module → package/module}/Gantt/GanttInnerElementType.js +0 -0
- /package/{module → package/module}/Gantt/GanttInnerElementType.js.map +0 -0
- /package/{module → package/module}/Gantt/helper.js +0 -0
- /package/{module → package/module}/Gantt/helper.js.map +0 -0
- /package/{module → package/module}/Gantt/types.js +0 -0
- /package/{module → package/module}/Gantt/types.js.map +0 -0
- /package/{module → package/module}/Grid/FixedSizeGrid.js +0 -0
- /package/{module → package/module}/Grid/FixedSizeGrid.js.map +0 -0
- /package/{module → package/module}/Grid/Grid.base.js +0 -0
- /package/{module → package/module}/Grid/Grid.base.js.map +0 -0
- /package/{module → package/module}/Grid/StaticFixedSizeGrid.js +0 -0
- /package/{module → package/module}/Grid/StaticFixedSizeGrid.js.map +0 -0
- /package/{module → package/module}/Grid/VariableSizeGrid.js +0 -0
- /package/{module → package/module}/Grid/VariableSizeGrid.js.map +0 -0
- /package/{module → package/module}/Grid/helper.js +0 -0
- /package/{module → package/module}/Grid/helper.js.map +0 -0
- /package/{module → package/module}/Grid/timer.js +0 -0
- /package/{module → package/module}/Grid/timer.js.map +0 -0
- /package/{module → package/module}/Header/Header.js +0 -0
- /package/{module → package/module}/Header/Header.js.map +0 -0
- /package/{module → package/module}/HelloWave/HelloWave.js +0 -0
- /package/{module → package/module}/HelloWave/HelloWave.js.map +0 -0
- /package/{module → package/module}/Hoverable/Hoverable.js +0 -0
- /package/{module → package/module}/Hoverable/Hoverable.js.map +0 -0
- /package/{module → package/module}/IconText/IconText.js +0 -0
- /package/{module → package/module}/IconText/IconText.js.map +0 -0
- /package/{module → package/module}/Icons/TapasIcon.js +0 -0
- /package/{module → package/module}/Icons/TapasIcon.js.map +0 -0
- /package/{module → package/module}/Icons/TapasIconExpo.js +0 -0
- /package/{module → package/module}/Icons/TapasIconExpo.js.map +0 -0
- /package/{module → package/module}/Icons/expoFontLoader.js +0 -0
- /package/{module → package/module}/Icons/expoFontLoader.js.map +0 -0
- /package/{module → package/module}/Icons/fontLoader.js +0 -0
- /package/{module → package/module}/Icons/fontLoader.js.map +0 -0
- /package/{module → package/module}/Icons/index.js +0 -0
- /package/{module → package/module}/Icons/index.js.map +0 -0
- /package/{module → package/module}/Icons/smartFontLoader.js +0 -0
- /package/{module → package/module}/Icons/smartFontLoader.js.map +0 -0
- /package/{module → package/module}/Image/Image.js +0 -0
- /package/{module → package/module}/Image/Image.js.map +0 -0
- /package/{module → package/module}/Image/PreviewImg.js +0 -0
- /package/{module → package/module}/Image/PreviewImg.js.map +0 -0
- /package/{module → package/module}/Input/Input.js +0 -0
- /package/{module → package/module}/Input/Input.js.map +0 -0
- /package/{module → package/module}/Layout/DrawerContext.js +0 -0
- /package/{module → package/module}/Layout/DrawerContext.js.map +0 -0
- /package/{module → package/module}/Layout/Layout.js +0 -0
- /package/{module → package/module}/Layout/Layout.js.map +0 -0
- /package/{module → package/module}/Layout/ToastContext.js +0 -0
- /package/{module → package/module}/Layout/ToastContext.js.map +0 -0
- /package/{module → package/module}/Layout/index.js +0 -0
- /package/{module → package/module}/Layout/index.js.map +0 -0
- /package/{module → package/module}/LineChart/LineChart.js +0 -0
- /package/{module → package/module}/LineChart/LineChart.js.map +0 -0
- /package/{module → package/module}/LineChart/index.js +0 -0
- /package/{module → package/module}/LineChart/index.js.map +0 -0
- /package/{module → package/module}/ListItem/ListItem.js +0 -0
- /package/{module → package/module}/ListItem/ListItem.js.map +0 -0
- /package/{module → package/module}/Loading/Loading.js +0 -0
- /package/{module → package/module}/Loading/Loading.js.map +0 -0
- /package/{module → package/module}/MessageBox/MessageBox.js +0 -0
- /package/{module → package/module}/MessageBox/MessageBox.js.map +0 -0
- /package/{module → package/module}/MultiSelector/MultiSelector.js +0 -0
- /package/{module → package/module}/MultiSelector/MultiSelector.js.map +0 -0
- /package/{module → package/module}/MultiSelector/index.js +0 -0
- /package/{module → package/module}/MultiSelector/index.js.map +0 -0
- /package/{module → package/module}/Navigation/Navigation.js +0 -0
- /package/{module → package/module}/Navigation/Navigation.js.map +0 -0
- /package/{module → package/module}/Notification/Notification.js +0 -0
- /package/{module → package/module}/Notification/Notification.js.map +0 -0
- /package/{module → package/module}/Notification/index.js +0 -0
- /package/{module → package/module}/Notification/index.js.map +0 -0
- /package/{module → package/module}/NumericInput/NumericInput.js +0 -0
- /package/{module → package/module}/NumericInput/NumericInput.js.map +0 -0
- /package/{module → package/module}/Overlay/Overlay.js +0 -0
- /package/{module → package/module}/Overlay/Overlay.js.map +0 -0
- /package/{module → package/module}/Pagination/Pagination.js +0 -0
- /package/{module → package/module}/Pagination/Pagination.js.map +0 -0
- /package/{module → package/module}/PieChart/GroupedLegend.js +0 -0
- /package/{module → package/module}/PieChart/GroupedLegend.js.map +0 -0
- /package/{module → package/module}/PieChart/NestedPieChart.js +0 -0
- /package/{module → package/module}/PieChart/NestedPieChart.js.map +0 -0
- /package/{module → package/module}/PieChart/NestedPieChart.types.js +0 -0
- /package/{module → package/module}/PieChart/NestedPieChart.types.js.map +0 -0
- /package/{module → package/module}/PieChart/NestedPieChart.utils.js +0 -0
- /package/{module → package/module}/PieChart/NestedPieChart.utils.js.map +0 -0
- /package/{module → package/module}/PieChart/PieChart.js +0 -0
- /package/{module → package/module}/PieChart/PieChart.js.map +0 -0
- /package/{module → package/module}/PieChart/index.js +0 -0
- /package/{module → package/module}/PieChart/index.js.map +0 -0
- /package/{module → package/module}/Popover/Popover.js +0 -0
- /package/{module → package/module}/Popover/Popover.js.map +0 -0
- /package/{module → package/module}/Progress/Progress.js +0 -0
- /package/{module → package/module}/Progress/Progress.js.map +0 -0
- /package/{module → package/module}/Quantity/Quantity.js +0 -0
- /package/{module → package/module}/Quantity/Quantity.js.map +0 -0
- /package/{module → package/module}/Quantity/index.js +0 -0
- /package/{module → package/module}/Quantity/index.js.map +0 -0
- /package/{module → package/module}/RadioButton/RadioButton.js +0 -0
- /package/{module → package/module}/RadioButton/RadioButton.js.map +0 -0
- /package/{module → package/module}/ReasonModal/ReasonModal.js +0 -0
- /package/{module → package/module}/ReasonModal/ReasonModal.js.map +0 -0
- /package/{module → package/module}/ReasonModal/index.js +0 -0
- /package/{module → package/module}/ReasonModal/index.js.map +0 -0
- /package/{module → package/module}/ScanButton/ScanButton.js +0 -0
- /package/{module → package/module}/ScanButton/ScanButton.js.map +0 -0
- /package/{module → package/module}/SearchInput/SearchInput.js +0 -0
- /package/{module → package/module}/SearchInput/SearchInput.js.map +0 -0
- /package/{module → package/module}/SearchInput/index.js +0 -0
- /package/{module → package/module}/SearchInput/index.js.map +0 -0
- /package/{module → package/module}/SheetTitle/SheetTitle.js +0 -0
- /package/{module → package/module}/SheetTitle/SheetTitle.js.map +0 -0
- /package/{module → package/module}/Shell/Shell.js +0 -0
- /package/{module → package/module}/Shell/Shell.js.map +0 -0
- /package/{module → package/module}/Shell/styles.js +0 -0
- /package/{module → package/module}/Shell/styles.js.map +0 -0
- /package/{module → package/module}/Shell/types.js +0 -0
- /package/{module → package/module}/Shell/types.js.map +0 -0
- /package/{module → package/module}/StatisticCard/StatisticCard.js +0 -0
- /package/{module → package/module}/StatisticCard/StatisticCard.js.map +0 -0
- /package/{module → package/module}/StatisticCard/index.js +0 -0
- /package/{module → package/module}/StatisticCard/index.js.map +0 -0
- /package/{module → package/module}/StatisticsTable/StatisticsTable.js +0 -0
- /package/{module → package/module}/StatisticsTable/StatisticsTable.js.map +0 -0
- /package/{module → package/module}/StatisticsTable/index.js +0 -0
- /package/{module → package/module}/StatisticsTable/index.js.map +0 -0
- /package/{module → package/module}/Status/Status.js +0 -0
- /package/{module → package/module}/Status/Status.js.map +0 -0
- /package/{module → package/module}/Steps/Steps.js +0 -0
- /package/{module → package/module}/Steps/Steps.js.map +0 -0
- /package/{module → package/module}/Tab/TapasTab.js +0 -0
- /package/{module → package/module}/Tab/TapasTab.js.map +0 -0
- /package/{module → package/module}/Tab/index.js +0 -0
- /package/{module → package/module}/Tab/index.js.map +0 -0
- /package/{module → package/module}/TabTitle/TabTitle.js +0 -0
- /package/{module → package/module}/TabTitle/TabTitle.js.map +0 -0
- /package/{module → package/module}/TabTitle/index.js +0 -0
- /package/{module → package/module}/TabTitle/index.js.map +0 -0
- /package/{module → package/module}/TableColumnHeader/TableColumnHeader.js +0 -0
- /package/{module → package/module}/TableColumnHeader/TableColumnHeader.js.map +0 -0
- /package/{module → package/module}/TableColumnHeader/index.js +0 -0
- /package/{module → package/module}/TableColumnHeader/index.js.map +0 -0
- /package/{module → package/module}/Tag/Tag.js +0 -0
- /package/{module → package/module}/Tag/Tag.js.map +0 -0
- /package/{module → package/module}/Task/Task.js +0 -0
- /package/{module → package/module}/Task/Task.js.map +0 -0
- /package/{module → package/module}/Task/type.js +0 -0
- /package/{module → package/module}/Task/type.js.map +0 -0
- /package/{module → package/module}/Text/Text.js +0 -0
- /package/{module → package/module}/Text/Text.js.map +0 -0
- /package/{module → package/module}/TextArea/TextArea.js +0 -0
- /package/{module → package/module}/TextArea/TextArea.js.map +0 -0
- /package/{module → package/module}/Theme/ThemeProvider.js +0 -0
- /package/{module → package/module}/Theme/ThemeProvider.js.map +0 -0
- /package/{module → package/module}/Theme/defaultTheme.js +0 -0
- /package/{module → package/module}/Theme/defaultTheme.js.map +0 -0
- /package/{module → package/module}/Theme/themed.d.js +0 -0
- /package/{module → package/module}/Theme/themed.d.js.map +0 -0
- /package/{module → package/module}/Timeline/Timeline.js +0 -0
- /package/{module → package/module}/Timeline/Timeline.js.map +0 -0
- /package/{module → package/module}/Toast/Toast.js +0 -0
- /package/{module → package/module}/Toast/Toast.js.map +0 -0
- /package/{module → package/module}/UserSwitcher/UserSwitcher.js +0 -0
- /package/{module → package/module}/UserSwitcher/UserSwitcher.js.map +0 -0
- /package/{module → package/module}/UserSwitcher/index.js +0 -0
- /package/{module → package/module}/UserSwitcher/index.js.map +0 -0
- /package/{module → package/module}/WebViewBridge/WebViewBridge.js +0 -0
- /package/{module → package/module}/WebViewBridge/WebViewBridge.js.map +0 -0
- /package/{module → package/module}/WebViewBridge/index.js +0 -0
- /package/{module → package/module}/WebViewBridge/index.js.map +0 -0
- /package/{module → package/module}/WebViewBridge/useWebViewBridge.js +0 -0
- /package/{module → package/module}/WebViewBridge/useWebViewBridge.js.map +0 -0
- /package/{module → package/module}/WordCloud/index.js +0 -0
- /package/{module → package/module}/WordCloud/index.js.map +0 -0
- /package/{module → package/module}/common/bridgelessUtils.js +0 -0
- /package/{module → package/module}/common/bridgelessUtils.js.map +0 -0
- /package/{module → package/module}/common.js +0 -0
- /package/{module → package/module}/common.js.map +0 -0
- /package/{module → package/module}/index.js +0 -0
- /package/{module → package/module}/index.js.map +0 -0
- /package/{typescript → package/typescript}/Alert/Alert.d.ts +0 -0
- /package/{typescript → package/typescript}/Alert/Alert.d.ts.map +0 -0
- /package/{typescript → package/typescript}/AnimatedNavItem/AnimatedNavItem.d.ts +0 -0
- /package/{typescript → package/typescript}/AnimatedNavItem/AnimatedNavItem.d.ts.map +0 -0
- /package/{typescript → package/typescript}/AnimatedNavItem/index.d.ts +0 -0
- /package/{typescript → package/typescript}/AnimatedNavItem/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/BarChart/BarChart.d.ts +0 -0
- /package/{typescript → package/typescript}/BarChart/BarChart.d.ts.map +0 -0
- /package/{typescript → package/typescript}/BarChart/index.d.ts +0 -0
- /package/{typescript → package/typescript}/BarChart/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Button/Button.d.ts +0 -0
- /package/{typescript → package/typescript}/Button/Button.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Button/ButtonGroup.d.ts +0 -0
- /package/{typescript → package/typescript}/Button/ButtonGroup.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/Calendar.base.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/Calendar.base.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/Calendar.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/Calendar.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/ConcreteTimeSelector.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/ConcreteTimeSelector.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/CustomRange.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/CustomRange.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/DaySelector.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/DaySelector.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/MonthSelector.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/MonthSelector.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/TimeSelector.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/TimeSelector.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/WeekDaySelector.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/WeekDaySelector.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/helper.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/helper.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/local.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/local.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Calendar/types.d.ts +0 -0
- /package/{typescript → package/typescript}/Calendar/types.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Card/Card.d.ts +0 -0
- /package/{typescript → package/typescript}/Card/Card.d.ts.map +0 -0
- /package/{typescript → package/typescript}/CheckBox/CheckBox.d.ts +0 -0
- /package/{typescript → package/typescript}/CheckBox/CheckBox.d.ts.map +0 -0
- /package/{typescript → package/typescript}/CheckBox/CheckBoxItem.d.ts +0 -0
- /package/{typescript → package/typescript}/CheckBox/CheckBoxItem.d.ts.map +0 -0
- /package/{typescript → package/typescript}/CheckBox/GroupCheckBox.d.ts +0 -0
- /package/{typescript → package/typescript}/CheckBox/GroupCheckBox.d.ts.map +0 -0
- /package/{typescript → package/typescript}/CircularProgress/CircularProgress.d.ts +0 -0
- /package/{typescript → package/typescript}/CircularProgress/CircularProgress.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Collapsible/Collapsible.d.ts +0 -0
- /package/{typescript → package/typescript}/Collapsible/Collapsible.d.ts.map +0 -0
- /package/{typescript → package/typescript}/ComboChart/ComboChart.d.ts +0 -0
- /package/{typescript → package/typescript}/ComboChart/ComboChart.d.ts.map +0 -0
- /package/{typescript → package/typescript}/ComboChart/index.d.ts +0 -0
- /package/{typescript → package/typescript}/ComboChart/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/DashboardCard/DashboardCard.d.ts +0 -0
- /package/{typescript → package/typescript}/DashboardCard/DashboardCard.d.ts.map +0 -0
- /package/{typescript → package/typescript}/DataCell/DataCell.d.ts +0 -0
- /package/{typescript → package/typescript}/DataCell/DataCell.d.ts.map +0 -0
- /package/{typescript → package/typescript}/DataCell/index.d.ts +0 -0
- /package/{typescript → package/typescript}/DataCell/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/DataTable/DataTable.d.ts +0 -0
- /package/{typescript → package/typescript}/DataTable/DataTable.d.ts.map +0 -0
- /package/{typescript → package/typescript}/DataTable/index.d.ts +0 -0
- /package/{typescript → package/typescript}/DataTable/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/DeviceSelectionModal/DeviceSelectionModal.d.ts +0 -0
- /package/{typescript → package/typescript}/DeviceSelectionModal/DeviceSelectionModal.d.ts.map +0 -0
- /package/{typescript → package/typescript}/DraggableFlatList/DraggableFlatList.d.ts +0 -0
- /package/{typescript → package/typescript}/DraggableFlatList/DraggableFlatList.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Drawer/Drawer.d.ts +0 -0
- /package/{typescript → package/typescript}/Drawer/Drawer.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Dropdown/CustomDropdown.d.ts +0 -0
- /package/{typescript → package/typescript}/Dropdown/CustomDropdown.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Dropdown/Dropdown.d.ts +0 -0
- /package/{typescript → package/typescript}/Dropdown/Dropdown.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Dropdown/InputDropdown.d.ts +0 -0
- /package/{typescript → package/typescript}/Dropdown/InputDropdown.d.ts.map +0 -0
- /package/{typescript → package/typescript}/ExternalLink/ExternalLink.d.ts +0 -0
- /package/{typescript → package/typescript}/ExternalLink/ExternalLink.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Gantt/Accessories.d.ts +0 -0
- /package/{typescript → package/typescript}/Gantt/Accessories.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Gantt/Gantt.d.ts +0 -0
- /package/{typescript → package/typescript}/Gantt/Gantt.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Gantt/GanttInnerElementType.d.ts +0 -0
- /package/{typescript → package/typescript}/Gantt/GanttInnerElementType.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Gantt/helper.d.ts +0 -0
- /package/{typescript → package/typescript}/Gantt/helper.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Gantt/types.d.ts +0 -0
- /package/{typescript → package/typescript}/Gantt/types.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Grid/FixedSizeGrid.d.ts +0 -0
- /package/{typescript → package/typescript}/Grid/FixedSizeGrid.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Grid/Grid.base.d.ts +0 -0
- /package/{typescript → package/typescript}/Grid/Grid.base.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Grid/StaticFixedSizeGrid.d.ts +0 -0
- /package/{typescript → package/typescript}/Grid/StaticFixedSizeGrid.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Grid/VariableSizeGrid.d.ts +0 -0
- /package/{typescript → package/typescript}/Grid/VariableSizeGrid.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Grid/helper.d.ts +0 -0
- /package/{typescript → package/typescript}/Grid/helper.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Grid/timer.d.ts +0 -0
- /package/{typescript → package/typescript}/Grid/timer.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Header/Header.d.ts +0 -0
- /package/{typescript → package/typescript}/Header/Header.d.ts.map +0 -0
- /package/{typescript → package/typescript}/HelloWave/HelloWave.d.ts +0 -0
- /package/{typescript → package/typescript}/HelloWave/HelloWave.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Hoverable/Hoverable.d.ts +0 -0
- /package/{typescript → package/typescript}/Hoverable/Hoverable.d.ts.map +0 -0
- /package/{typescript → package/typescript}/IconText/IconText.d.ts +0 -0
- /package/{typescript → package/typescript}/IconText/IconText.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Icons/TapasIcon.d.ts +0 -0
- /package/{typescript → package/typescript}/Icons/TapasIcon.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Icons/TapasIconExpo.d.ts +0 -0
- /package/{typescript → package/typescript}/Icons/TapasIconExpo.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Icons/expoFontLoader.d.ts +0 -0
- /package/{typescript → package/typescript}/Icons/expoFontLoader.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Icons/fontLoader.d.ts +0 -0
- /package/{typescript → package/typescript}/Icons/fontLoader.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Icons/index.d.ts +0 -0
- /package/{typescript → package/typescript}/Icons/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Icons/smartFontLoader.d.ts +0 -0
- /package/{typescript → package/typescript}/Icons/smartFontLoader.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Image/Image.d.ts +0 -0
- /package/{typescript → package/typescript}/Image/Image.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Image/PreviewImg.d.ts +0 -0
- /package/{typescript → package/typescript}/Image/PreviewImg.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Input/Input.d.ts +0 -0
- /package/{typescript → package/typescript}/Input/Input.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Layout/DrawerContext.d.ts +0 -0
- /package/{typescript → package/typescript}/Layout/DrawerContext.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Layout/Layout.d.ts +0 -0
- /package/{typescript → package/typescript}/Layout/Layout.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Layout/ToastContext.d.ts +0 -0
- /package/{typescript → package/typescript}/Layout/ToastContext.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Layout/index.d.ts +0 -0
- /package/{typescript → package/typescript}/Layout/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/LineChart/LineChart.d.ts +0 -0
- /package/{typescript → package/typescript}/LineChart/LineChart.d.ts.map +0 -0
- /package/{typescript → package/typescript}/LineChart/index.d.ts +0 -0
- /package/{typescript → package/typescript}/LineChart/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/ListItem/ListItem.d.ts +0 -0
- /package/{typescript → package/typescript}/ListItem/ListItem.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Loading/Loading.d.ts +0 -0
- /package/{typescript → package/typescript}/Loading/Loading.d.ts.map +0 -0
- /package/{typescript → package/typescript}/MessageBox/MessageBox.d.ts +0 -0
- /package/{typescript → package/typescript}/MessageBox/MessageBox.d.ts.map +0 -0
- /package/{typescript → package/typescript}/MultiSelector/MultiSelector.d.ts +0 -0
- /package/{typescript → package/typescript}/MultiSelector/MultiSelector.d.ts.map +0 -0
- /package/{typescript → package/typescript}/MultiSelector/index.d.ts +0 -0
- /package/{typescript → package/typescript}/MultiSelector/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Navigation/Navigation.d.ts +0 -0
- /package/{typescript → package/typescript}/Navigation/Navigation.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Notification/Notification.d.ts +0 -0
- /package/{typescript → package/typescript}/Notification/Notification.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Notification/index.d.ts +0 -0
- /package/{typescript → package/typescript}/Notification/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/NumericInput/NumericInput.d.ts +0 -0
- /package/{typescript → package/typescript}/NumericInput/NumericInput.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Overlay/Overlay.d.ts +0 -0
- /package/{typescript → package/typescript}/Overlay/Overlay.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Pagination/Pagination.d.ts +0 -0
- /package/{typescript → package/typescript}/Pagination/Pagination.d.ts.map +0 -0
- /package/{typescript → package/typescript}/PieChart/GroupedLegend.d.ts +0 -0
- /package/{typescript → package/typescript}/PieChart/GroupedLegend.d.ts.map +0 -0
- /package/{typescript → package/typescript}/PieChart/NestedPieChart.d.ts +0 -0
- /package/{typescript → package/typescript}/PieChart/NestedPieChart.d.ts.map +0 -0
- /package/{typescript → package/typescript}/PieChart/NestedPieChart.types.d.ts +0 -0
- /package/{typescript → package/typescript}/PieChart/NestedPieChart.types.d.ts.map +0 -0
- /package/{typescript → package/typescript}/PieChart/NestedPieChart.utils.d.ts +0 -0
- /package/{typescript → package/typescript}/PieChart/NestedPieChart.utils.d.ts.map +0 -0
- /package/{typescript → package/typescript}/PieChart/PieChart.d.ts +0 -0
- /package/{typescript → package/typescript}/PieChart/PieChart.d.ts.map +0 -0
- /package/{typescript → package/typescript}/PieChart/index.d.ts +0 -0
- /package/{typescript → package/typescript}/PieChart/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Popover/Popover.d.ts +0 -0
- /package/{typescript → package/typescript}/Popover/Popover.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Progress/Progress.d.ts +0 -0
- /package/{typescript → package/typescript}/Progress/Progress.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Quantity/Quantity.d.ts +0 -0
- /package/{typescript → package/typescript}/Quantity/Quantity.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Quantity/index.d.ts +0 -0
- /package/{typescript → package/typescript}/Quantity/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/RadioButton/RadioButton.d.ts +0 -0
- /package/{typescript → package/typescript}/RadioButton/RadioButton.d.ts.map +0 -0
- /package/{typescript → package/typescript}/ReasonModal/ReasonModal.d.ts +0 -0
- /package/{typescript → package/typescript}/ReasonModal/ReasonModal.d.ts.map +0 -0
- /package/{typescript → package/typescript}/ReasonModal/index.d.ts +0 -0
- /package/{typescript → package/typescript}/ReasonModal/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/ScanButton/ScanButton.d.ts +0 -0
- /package/{typescript → package/typescript}/ScanButton/ScanButton.d.ts.map +0 -0
- /package/{typescript → package/typescript}/SearchInput/SearchInput.d.ts +0 -0
- /package/{typescript → package/typescript}/SearchInput/SearchInput.d.ts.map +0 -0
- /package/{typescript → package/typescript}/SearchInput/index.d.ts +0 -0
- /package/{typescript → package/typescript}/SearchInput/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/SheetTitle/SheetTitle.d.ts +0 -0
- /package/{typescript → package/typescript}/SheetTitle/SheetTitle.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Shell/Shell.d.ts +0 -0
- /package/{typescript → package/typescript}/Shell/Shell.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Shell/styles.d.ts +0 -0
- /package/{typescript → package/typescript}/Shell/styles.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Shell/types.d.ts +0 -0
- /package/{typescript → package/typescript}/Shell/types.d.ts.map +0 -0
- /package/{typescript → package/typescript}/StatisticCard/StatisticCard.d.ts +0 -0
- /package/{typescript → package/typescript}/StatisticCard/StatisticCard.d.ts.map +0 -0
- /package/{typescript → package/typescript}/StatisticCard/index.d.ts +0 -0
- /package/{typescript → package/typescript}/StatisticCard/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/StatisticsTable/StatisticsTable.d.ts +0 -0
- /package/{typescript → package/typescript}/StatisticsTable/StatisticsTable.d.ts.map +0 -0
- /package/{typescript → package/typescript}/StatisticsTable/index.d.ts +0 -0
- /package/{typescript → package/typescript}/StatisticsTable/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Status/Status.d.ts +0 -0
- /package/{typescript → package/typescript}/Status/Status.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Steps/Steps.d.ts +0 -0
- /package/{typescript → package/typescript}/Steps/Steps.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Tab/TapasTab.d.ts +0 -0
- /package/{typescript → package/typescript}/Tab/TapasTab.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Tab/index.d.ts +0 -0
- /package/{typescript → package/typescript}/Tab/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/TabTitle/TabTitle.d.ts +0 -0
- /package/{typescript → package/typescript}/TabTitle/TabTitle.d.ts.map +0 -0
- /package/{typescript → package/typescript}/TabTitle/index.d.ts +0 -0
- /package/{typescript → package/typescript}/TabTitle/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/TableColumnHeader/TableColumnHeader.d.ts +0 -0
- /package/{typescript → package/typescript}/TableColumnHeader/TableColumnHeader.d.ts.map +0 -0
- /package/{typescript → package/typescript}/TableColumnHeader/index.d.ts +0 -0
- /package/{typescript → package/typescript}/TableColumnHeader/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Tag/Tag.d.ts +0 -0
- /package/{typescript → package/typescript}/Tag/Tag.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Task/Task.d.ts +0 -0
- /package/{typescript → package/typescript}/Task/Task.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Task/type.d.ts +0 -0
- /package/{typescript → package/typescript}/Task/type.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Text/Text.d.ts +0 -0
- /package/{typescript → package/typescript}/Text/Text.d.ts.map +0 -0
- /package/{typescript → package/typescript}/TextArea/TextArea.d.ts +0 -0
- /package/{typescript → package/typescript}/TextArea/TextArea.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Theme/ThemeProvider.d.ts +0 -0
- /package/{typescript → package/typescript}/Theme/ThemeProvider.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Theme/defaultTheme.d.ts +0 -0
- /package/{typescript → package/typescript}/Theme/defaultTheme.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Timeline/Timeline.d.ts +0 -0
- /package/{typescript → package/typescript}/Timeline/Timeline.d.ts.map +0 -0
- /package/{typescript → package/typescript}/Toast/Toast.d.ts +0 -0
- /package/{typescript → package/typescript}/Toast/Toast.d.ts.map +0 -0
- /package/{typescript → package/typescript}/UserSwitcher/UserSwitcher.d.ts +0 -0
- /package/{typescript → package/typescript}/UserSwitcher/UserSwitcher.d.ts.map +0 -0
- /package/{typescript → package/typescript}/UserSwitcher/index.d.ts +0 -0
- /package/{typescript → package/typescript}/UserSwitcher/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/WebViewBridge/WebViewBridge.d.ts +0 -0
- /package/{typescript → package/typescript}/WebViewBridge/WebViewBridge.d.ts.map +0 -0
- /package/{typescript → package/typescript}/WebViewBridge/index.d.ts +0 -0
- /package/{typescript → package/typescript}/WebViewBridge/index.d.ts.map +0 -0
- /package/{typescript → package/typescript}/WebViewBridge/useWebViewBridge.d.ts +0 -0
- /package/{typescript → package/typescript}/WebViewBridge/useWebViewBridge.d.ts.map +0 -0
- /package/{typescript → package/typescript}/common/bridgelessUtils.d.ts +0 -0
- /package/{typescript → package/typescript}/common/bridgelessUtils.d.ts.map +0 -0
- /package/{typescript → package/typescript}/common.d.ts +0 -0
- /package/{typescript → package/typescript}/common.d.ts.map +0 -0
- /package/{typescript → package/typescript}/index.d.ts +0 -0
- /package/{typescript → package/typescript}/index.d.ts.map +0 -0
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
import React, { useState } from "react";
|
|
2
|
+
import {
|
|
3
|
+
View,
|
|
4
|
+
ViewProps,
|
|
5
|
+
Text,
|
|
6
|
+
TouchableWithoutFeedback,
|
|
7
|
+
Pressable,
|
|
8
|
+
} from "react-native";
|
|
9
|
+
import { withTheme, makeStyles, useTheme } from "@rneui/themed";
|
|
10
|
+
import TapasIcon from "../Icons/TapasIcon";
|
|
11
|
+
|
|
12
|
+
export interface CardProps extends ViewProps {
|
|
13
|
+
title?: string;
|
|
14
|
+
subTitle?: string;
|
|
15
|
+
icon?: string;
|
|
16
|
+
showMore?: boolean;
|
|
17
|
+
cardId: string;
|
|
18
|
+
path?: string;
|
|
19
|
+
moreBtnIcon?: string;
|
|
20
|
+
actions?: Action[];
|
|
21
|
+
showNavBtn?: boolean;
|
|
22
|
+
navBtnIcon?: string;
|
|
23
|
+
state?: "normal" | "warning" | "error" | "success";
|
|
24
|
+
stateText?: string;
|
|
25
|
+
width?: number;
|
|
26
|
+
onPress?: (key: string) => void;
|
|
27
|
+
showMoreOptions?: (key: string) => void;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface Action {
|
|
31
|
+
key: string;
|
|
32
|
+
name: string;
|
|
33
|
+
icon: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const Card: React.FC<CardProps> = ({
|
|
37
|
+
style,
|
|
38
|
+
icon,
|
|
39
|
+
state,
|
|
40
|
+
stateText,
|
|
41
|
+
showMore,
|
|
42
|
+
title,
|
|
43
|
+
subTitle,
|
|
44
|
+
moreBtnIcon = "more_vert",
|
|
45
|
+
actions,
|
|
46
|
+
cardId,
|
|
47
|
+
path,
|
|
48
|
+
showNavBtn,
|
|
49
|
+
width = 285,
|
|
50
|
+
navBtnIcon = "back",
|
|
51
|
+
onPress,
|
|
52
|
+
showMoreOptions,
|
|
53
|
+
...otherProps
|
|
54
|
+
}) => {
|
|
55
|
+
const theme = useTheme();
|
|
56
|
+
const styles = useStyles();
|
|
57
|
+
const stateColors: { [key: string]: string } = {
|
|
58
|
+
error_bg: (theme.theme.colors as any).colorStatusErrorBg || "#FFE6E6",
|
|
59
|
+
error_text: (theme.theme.colors as any).colorStatusError || "#FF4444",
|
|
60
|
+
warning_bg: (theme.theme.colors as any).colorStatusWarningBg || "#FFF3E0",
|
|
61
|
+
warning_text: (theme.theme.colors as any).colorStatusWarning || "#FF9800",
|
|
62
|
+
success_bg: (theme.theme.colors as any).colorStatusSuccessBg || "#E8F5E8",
|
|
63
|
+
success_text: (theme.theme.colors as any).colorStatusSuccess || "#4CAF50",
|
|
64
|
+
};
|
|
65
|
+
const [hover, setHover] = useState(false);
|
|
66
|
+
|
|
67
|
+
return (
|
|
68
|
+
<TouchableWithoutFeedback
|
|
69
|
+
onPressIn={() => setHover(true)}
|
|
70
|
+
onPressOut={() => setHover(false)}
|
|
71
|
+
onPress={() => onPress && onPress(`${path}--${cardId}`)}
|
|
72
|
+
>
|
|
73
|
+
<View
|
|
74
|
+
{...otherProps}
|
|
75
|
+
style={[
|
|
76
|
+
styles.container,
|
|
77
|
+
style,
|
|
78
|
+
{ width: width || 285 },
|
|
79
|
+
hover && styles.hoverStyle,
|
|
80
|
+
]}
|
|
81
|
+
>
|
|
82
|
+
<View style={styles.inner}>
|
|
83
|
+
<View style={styles.header}>
|
|
84
|
+
<View style={styles.left}>
|
|
85
|
+
{icon && (
|
|
86
|
+
<TapasIcon
|
|
87
|
+
size={24}
|
|
88
|
+
color={theme.theme.colors.primary}
|
|
89
|
+
name={icon}
|
|
90
|
+
/>
|
|
91
|
+
)}
|
|
92
|
+
{state && stateText && (
|
|
93
|
+
<View
|
|
94
|
+
style={[
|
|
95
|
+
styles.stateCon,
|
|
96
|
+
{ backgroundColor: stateColors[state + "_bg"] },
|
|
97
|
+
]}
|
|
98
|
+
>
|
|
99
|
+
<Text
|
|
100
|
+
numberOfLines={1}
|
|
101
|
+
ellipsizeMode="tail"
|
|
102
|
+
style={[
|
|
103
|
+
styles.stateText,
|
|
104
|
+
{ color: stateColors[state + "_text"] }
|
|
105
|
+
]}
|
|
106
|
+
>
|
|
107
|
+
{stateText}
|
|
108
|
+
</Text>
|
|
109
|
+
</View>
|
|
110
|
+
)}
|
|
111
|
+
</View>
|
|
112
|
+
<View style={styles.right}>
|
|
113
|
+
{showMore && moreBtnIcon && (
|
|
114
|
+
<Pressable
|
|
115
|
+
onPress={(e) => {
|
|
116
|
+
e.stopPropagation();
|
|
117
|
+
if (showMoreOptions) {
|
|
118
|
+
showMoreOptions(cardId);
|
|
119
|
+
}
|
|
120
|
+
}}
|
|
121
|
+
>
|
|
122
|
+
<TapasIcon
|
|
123
|
+
size={20}
|
|
124
|
+
color={theme.theme.colors.primary}
|
|
125
|
+
name={moreBtnIcon}
|
|
126
|
+
/>
|
|
127
|
+
</Pressable>
|
|
128
|
+
)}
|
|
129
|
+
</View>
|
|
130
|
+
</View>
|
|
131
|
+
<View style={styles.main}>
|
|
132
|
+
<View
|
|
133
|
+
style={[
|
|
134
|
+
styles.left,
|
|
135
|
+
{
|
|
136
|
+
flexDirection: "column",
|
|
137
|
+
width: width - 32 - (showNavBtn ? 38 : 0),
|
|
138
|
+
overflow: "hidden",
|
|
139
|
+
},
|
|
140
|
+
]}
|
|
141
|
+
>
|
|
142
|
+
<Text
|
|
143
|
+
numberOfLines={1}
|
|
144
|
+
ellipsizeMode="tail"
|
|
145
|
+
style={styles.subTitle}
|
|
146
|
+
>
|
|
147
|
+
{subTitle || ""}
|
|
148
|
+
</Text>
|
|
149
|
+
<Text numberOfLines={1} ellipsizeMode="tail" style={styles.title}>
|
|
150
|
+
{title || ""}
|
|
151
|
+
</Text>
|
|
152
|
+
</View>
|
|
153
|
+
<View style={styles.right}>
|
|
154
|
+
{showNavBtn && (
|
|
155
|
+
<Pressable
|
|
156
|
+
onPress={() => onPress && onPress(cardId)}
|
|
157
|
+
style={styles.navBtn}
|
|
158
|
+
>
|
|
159
|
+
<TapasIcon
|
|
160
|
+
size={20}
|
|
161
|
+
style={{ alignSelf: "center" }}
|
|
162
|
+
color={theme.theme.colors.primary}
|
|
163
|
+
name={navBtnIcon}
|
|
164
|
+
/>
|
|
165
|
+
</Pressable>
|
|
166
|
+
)}
|
|
167
|
+
</View>
|
|
168
|
+
</View>
|
|
169
|
+
</View>
|
|
170
|
+
</View>
|
|
171
|
+
</TouchableWithoutFeedback>
|
|
172
|
+
);
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
const useStyles = makeStyles((theme) => ({
|
|
176
|
+
container: {
|
|
177
|
+
display: "flex",
|
|
178
|
+
flexDirection: "column",
|
|
179
|
+
justifyContent: "flex-start",
|
|
180
|
+
width: 285,
|
|
181
|
+
height: 128,
|
|
182
|
+
borderRadius: 12,
|
|
183
|
+
overflow: "hidden",
|
|
184
|
+
backgroundColor: theme.colors.white,
|
|
185
|
+
cursor: "pointer",
|
|
186
|
+
},
|
|
187
|
+
hoverStyle: {
|
|
188
|
+
shadowColor: "#000",
|
|
189
|
+
shadowOffset: { width: 0, height: 8 },
|
|
190
|
+
shadowOpacity: 0.08,
|
|
191
|
+
shadowRadius: 24,
|
|
192
|
+
elevation: 12,
|
|
193
|
+
},
|
|
194
|
+
inner: {
|
|
195
|
+
marginTop: 10,
|
|
196
|
+
marginBottom: 16,
|
|
197
|
+
marginRight: 16,
|
|
198
|
+
marginLeft: 16,
|
|
199
|
+
display: "flex",
|
|
200
|
+
flexGrow: 1,
|
|
201
|
+
overflow: "hidden",
|
|
202
|
+
flexDirection: "column",
|
|
203
|
+
justifyContent: "space-between",
|
|
204
|
+
},
|
|
205
|
+
header: {
|
|
206
|
+
height: 32,
|
|
207
|
+
display: "flex",
|
|
208
|
+
flexDirection: "row",
|
|
209
|
+
width: "100%",
|
|
210
|
+
overflow: "hidden",
|
|
211
|
+
justifyContent: "space-between",
|
|
212
|
+
gap: 8,
|
|
213
|
+
},
|
|
214
|
+
left: {
|
|
215
|
+
display: "flex",
|
|
216
|
+
flexDirection: "row",
|
|
217
|
+
flexGrow: 1,
|
|
218
|
+
overflow: "hidden",
|
|
219
|
+
justifyContent: "flex-start",
|
|
220
|
+
},
|
|
221
|
+
right: {
|
|
222
|
+
display: "flex",
|
|
223
|
+
flexDirection: "row",
|
|
224
|
+
overflow: "hidden",
|
|
225
|
+
justifyContent: "flex-end",
|
|
226
|
+
},
|
|
227
|
+
stateCon: {
|
|
228
|
+
display: "flex",
|
|
229
|
+
flexDirection: "row",
|
|
230
|
+
height: 24,
|
|
231
|
+
alignSelf: "center",
|
|
232
|
+
paddingLeft: 8,
|
|
233
|
+
paddingRight: 8,
|
|
234
|
+
borderRadius: 12,
|
|
235
|
+
},
|
|
236
|
+
stateText: {
|
|
237
|
+
fontSize: 10,
|
|
238
|
+
fontWeight: "700",
|
|
239
|
+
lineHeight: 24,
|
|
240
|
+
},
|
|
241
|
+
main: {
|
|
242
|
+
display: "flex",
|
|
243
|
+
flexDirection: "row",
|
|
244
|
+
height: 40,
|
|
245
|
+
justifyContent: "space-between",
|
|
246
|
+
overflow: "hidden",
|
|
247
|
+
width: "100%",
|
|
248
|
+
gap: 8,
|
|
249
|
+
},
|
|
250
|
+
navBtn: {
|
|
251
|
+
display: "flex",
|
|
252
|
+
flexDirection: "column",
|
|
253
|
+
width: 28,
|
|
254
|
+
height: 28,
|
|
255
|
+
justifyContent: "center",
|
|
256
|
+
alignSelf: "center",
|
|
257
|
+
borderRadius: 14,
|
|
258
|
+
borderColor: theme.colors.greyOutline,
|
|
259
|
+
borderWidth: 1,
|
|
260
|
+
transform: "rotate(180deg)",
|
|
261
|
+
borderStyle: "solid",
|
|
262
|
+
},
|
|
263
|
+
subTitle: {
|
|
264
|
+
fontSize: 10,
|
|
265
|
+
fontWeight: "700",
|
|
266
|
+
color: theme.colors.grey1,
|
|
267
|
+
},
|
|
268
|
+
title: {
|
|
269
|
+
fontSize: 16,
|
|
270
|
+
fontWeight: "700",
|
|
271
|
+
color: theme.colors.primary,
|
|
272
|
+
overflow: "hidden",
|
|
273
|
+
},
|
|
274
|
+
}));
|
|
275
|
+
|
|
276
|
+
export default withTheme(Card);
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import React, {FC, useEffect, useState} from 'react';
|
|
2
|
+
import {makeStyles, withTheme, Text as RNText, TextProps} from "@rneui/themed";
|
|
3
|
+
import {Platform, StyleProp, TouchableOpacity, ViewStyle} from "react-native";
|
|
4
|
+
import Icon from '../Icons/TapasIcon';
|
|
5
|
+
import Hoverable from '../Hoverable/Hoverable';
|
|
6
|
+
export interface Props extends TextProps {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
label?: string;
|
|
9
|
+
hoverStyle?: StyleProp<ViewStyle>;
|
|
10
|
+
onPress?: () => void;
|
|
11
|
+
checked?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
type?: 'checkbox' | 'radio',
|
|
14
|
+
mode?: 'dark' | 'light',
|
|
15
|
+
full?: boolean,
|
|
16
|
+
}
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
const useStyles = makeStyles((theme, ...props) => {
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
const { disabled , mode} = props[0];
|
|
21
|
+
return {
|
|
22
|
+
textItem: {
|
|
23
|
+
fontFamily: theme.fonts.fontFamily,
|
|
24
|
+
fontSize: theme.fonts.sizeM,
|
|
25
|
+
fontWeight: theme.fonts.weightR,
|
|
26
|
+
color: theme.colors.colorTextPrimary,
|
|
27
|
+
// textOverflow: 'ellipsis', // Not supported in React Native
|
|
28
|
+
// whiteSpace: 'nowrap', // Not supported in React Native
|
|
29
|
+
justifyContent: "center",
|
|
30
|
+
alignItems: "center",
|
|
31
|
+
display: "flex",
|
|
32
|
+
minWidth: 80,
|
|
33
|
+
},
|
|
34
|
+
checkBoxContainer: {
|
|
35
|
+
backgroundColor: mode === 'dark'? theme.colors.grey4 : theme.colors.white,
|
|
36
|
+
paddingLeft: 12,
|
|
37
|
+
paddingRight: 16,
|
|
38
|
+
paddingVertical: 8,
|
|
39
|
+
height: 40,
|
|
40
|
+
minWidth: 80,
|
|
41
|
+
borderRadius: theme.radius.rounded,
|
|
42
|
+
marginBottom: 8,
|
|
43
|
+
display: "flex",
|
|
44
|
+
justifyContent: "center",
|
|
45
|
+
alignItems: "center",
|
|
46
|
+
},
|
|
47
|
+
disabledText: {
|
|
48
|
+
color: theme.colors.disabled,
|
|
49
|
+
},
|
|
50
|
+
hovered: {
|
|
51
|
+
backgroundColor: mode === 'dark' && theme.colors.grey3,
|
|
52
|
+
},
|
|
53
|
+
selected: {
|
|
54
|
+
backgroundColor: mode === 'dark' && theme.colors.primary,
|
|
55
|
+
},
|
|
56
|
+
textHovered: {
|
|
57
|
+
color: mode === 'light' && theme.colors.grey1,
|
|
58
|
+
},
|
|
59
|
+
textSelected: {
|
|
60
|
+
color: mode === 'dark' ? theme.colors.white : theme.colors.primary,
|
|
61
|
+
},
|
|
62
|
+
checkBox: {
|
|
63
|
+
marginRight: 8,
|
|
64
|
+
color: disabled ? theme.colors.disabled : theme.colors.colorTextPrimary
|
|
65
|
+
},
|
|
66
|
+
checkedBox: {
|
|
67
|
+
color:mode === 'dark' ? theme.colors.white : theme.colors.primary,
|
|
68
|
+
},
|
|
69
|
+
uncheckedBox: {
|
|
70
|
+
color: theme.colors.colorTextPrimary
|
|
71
|
+
},
|
|
72
|
+
disabledBox: {
|
|
73
|
+
color: theme.colors.disabled,
|
|
74
|
+
},
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
const CheckBox: FC<Props> = (props) => {
|
|
80
|
+
const styles = useStyles(props);
|
|
81
|
+
const {children, label, checked = false, disabled ,style ,onPress, hoverStyle, full = true} = props;
|
|
82
|
+
const [isHovered, setIsHovered] = useState(false);
|
|
83
|
+
const [isSelected, setIsSelected] = useState(checked);
|
|
84
|
+
const handleItemPress = () => {
|
|
85
|
+
setIsSelected(!isSelected);
|
|
86
|
+
onPress && onPress();
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
const handleMouseEnter = () => {
|
|
90
|
+
setIsHovered(true);
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
const handleMouseLeave = () => {
|
|
94
|
+
setIsHovered(false);
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
useEffect(() => {
|
|
98
|
+
setIsSelected(checked);
|
|
99
|
+
}, [checked]);
|
|
100
|
+
const renderText = () => {
|
|
101
|
+
return (!disabled ?<TouchableOpacity style={[
|
|
102
|
+
//@ts-ignore
|
|
103
|
+
styles.checkBoxContainer,
|
|
104
|
+
//@ts-ignore
|
|
105
|
+
isHovered && styles.hovered,
|
|
106
|
+
isHovered && hoverStyle,
|
|
107
|
+
//@ts-ignore
|
|
108
|
+
isSelected && styles.selected,
|
|
109
|
+
style
|
|
110
|
+
]} onPress={handleItemPress}>
|
|
111
|
+
<RNText style={[
|
|
112
|
+
//@ts-ignore
|
|
113
|
+
styles.textItem,
|
|
114
|
+
//@ts-ignore
|
|
115
|
+
isHovered && styles.textHovered,
|
|
116
|
+
//@ts-ignore
|
|
117
|
+
isSelected && styles.textSelected,
|
|
118
|
+
]} numberOfLines={1} ellipsizeMode="tail" {...props}>
|
|
119
|
+
<Icon
|
|
120
|
+
// @ts-ignore
|
|
121
|
+
style={[styles.checkBox, isSelected && styles.checkedBox, !isSelected && styles.uncheckedBox]} name={isSelected ? (full ? 'check_box' : 'indeterminate_check_box') : 'check_box_outline_blank'} size={20} />
|
|
122
|
+
{label}
|
|
123
|
+
{children}
|
|
124
|
+
</RNText>
|
|
125
|
+
</TouchableOpacity> : <RNText style={[
|
|
126
|
+
//@ts-ignore
|
|
127
|
+
styles.checkBoxContainer,
|
|
128
|
+
//@ts-ignore
|
|
129
|
+
styles.textItem,
|
|
130
|
+
//@ts-ignore
|
|
131
|
+
disabled && styles.disabledText,
|
|
132
|
+
style
|
|
133
|
+
]} numberOfLines={1} ellipsizeMode="tail" {...props}>
|
|
134
|
+
<Icon
|
|
135
|
+
// @ts-ignore
|
|
136
|
+
style={[styles.checkBox]} name={isSelected ? 'check_box' : 'check_box_outline_blank'} size={24} />
|
|
137
|
+
{label}
|
|
138
|
+
{children}
|
|
139
|
+
</RNText>)
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
return (
|
|
144
|
+
Platform.OS === 'web' ? (
|
|
145
|
+
<Hoverable
|
|
146
|
+
onHoverIn={handleMouseEnter}
|
|
147
|
+
onHoverOut={handleMouseLeave}
|
|
148
|
+
>
|
|
149
|
+
{
|
|
150
|
+
renderText()
|
|
151
|
+
}
|
|
152
|
+
</Hoverable>
|
|
153
|
+
): renderText()
|
|
154
|
+
)
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export default withTheme(CheckBox);
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import React, {useState} from 'react';
|
|
2
|
+
import {ListItem, makeStyles, withTheme, ListItemProps} from '@rneui/themed';
|
|
3
|
+
import Hoverable from '../Hoverable/Hoverable';
|
|
4
|
+
|
|
5
|
+
import Icon from "../Icons/TapasIcon";
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
export type CheckBoxItemProps = {
|
|
10
|
+
value: string;
|
|
11
|
+
title: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface Props extends ListItemProps {
|
|
16
|
+
selected: boolean;
|
|
17
|
+
item: CheckBoxItemProps;
|
|
18
|
+
key: number | string;
|
|
19
|
+
onItemPress: (item: { value: string; title: string , disabled?: boolean }) => void;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const useStyle = makeStyles((theme, ...props) => {
|
|
24
|
+
//@ts-ignore
|
|
25
|
+
const { disabled } = props[0];
|
|
26
|
+
return{
|
|
27
|
+
listItemContainer: {
|
|
28
|
+
backgroundColor: theme.colors.grey5,
|
|
29
|
+
padding: 0,
|
|
30
|
+
width: '100%',
|
|
31
|
+
},
|
|
32
|
+
itemContainer: {
|
|
33
|
+
backgroundColor: theme.colors.white,
|
|
34
|
+
display: 'flex',
|
|
35
|
+
justifyContent: 'flex-start',
|
|
36
|
+
flexDirection: 'row',
|
|
37
|
+
padding:0,
|
|
38
|
+
width: '100%',
|
|
39
|
+
height: 48,
|
|
40
|
+
alignItems: 'center',
|
|
41
|
+
flex: 1,
|
|
42
|
+
},
|
|
43
|
+
selectedItem: {
|
|
44
|
+
backgroundColor: theme.colors.grey5,
|
|
45
|
+
},
|
|
46
|
+
hovered: {
|
|
47
|
+
backgroundColor: theme.colors.grey4,
|
|
48
|
+
},
|
|
49
|
+
title: {
|
|
50
|
+
fontFamily: theme.fonts.fontFamily,
|
|
51
|
+
fontSize: theme.fonts.sizeM,
|
|
52
|
+
fontWeight: theme.fonts.weightR,
|
|
53
|
+
color: theme.colors.colorTextPrimary,
|
|
54
|
+
},
|
|
55
|
+
icon: {
|
|
56
|
+
color: theme.colors.colorTextAccent,
|
|
57
|
+
fontSize: 20,
|
|
58
|
+
marginRight: 8,
|
|
59
|
+
},
|
|
60
|
+
disabled: {
|
|
61
|
+
backgroundColor: theme.colors.white,
|
|
62
|
+
},
|
|
63
|
+
disabledTitle: {
|
|
64
|
+
color: theme.colors.disabled,
|
|
65
|
+
},
|
|
66
|
+
disabledSelectedContainer: {
|
|
67
|
+
backgroundColor: theme.colors.grey5,
|
|
68
|
+
},
|
|
69
|
+
checkedBox: {
|
|
70
|
+
color: theme.colors.colorTextPrimary
|
|
71
|
+
},
|
|
72
|
+
uncheckedBox: {
|
|
73
|
+
color: theme.colors.colorTextPrimary
|
|
74
|
+
},
|
|
75
|
+
disabledBox: {
|
|
76
|
+
color: theme.colors.disabled,
|
|
77
|
+
},
|
|
78
|
+
itemWrapper: {
|
|
79
|
+
display: 'flex',
|
|
80
|
+
flexDirection: 'row',
|
|
81
|
+
alignItems: 'center',
|
|
82
|
+
flex: 1,
|
|
83
|
+
height: 48,
|
|
84
|
+
backgroundColor: 'transparent',
|
|
85
|
+
paddingHorizontal: 16,
|
|
86
|
+
},
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
const CheckBoxItem: React.FC<Props> = ({ item, key, onItemPress, ...props}) => {
|
|
92
|
+
const styles = useStyle(props);
|
|
93
|
+
const { selected, disabled } = props;
|
|
94
|
+
const [isHovered, setIsHovered] = useState(false);
|
|
95
|
+
// const hasSelected = (currentItem: CheckBoxItemProps) => {
|
|
96
|
+
// return selected.some(i => i.value === currentItem.value)
|
|
97
|
+
// }
|
|
98
|
+
|
|
99
|
+
const handleMouseEnter = () => {
|
|
100
|
+
setIsHovered(true);
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
const handleMouseLeave = () => {
|
|
104
|
+
setIsHovered(false);
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
return (
|
|
108
|
+
|
|
109
|
+
<ListItem containerStyle={[styles.listItemContainer, disabled && styles.disabled, selected && disabled && styles.disabledSelectedContainer]} style={{width: '100%'}} key={key} >
|
|
110
|
+
<ListItem.Content style={[styles.itemContainer, selected ? styles.selectedItem : {}]}>
|
|
111
|
+
<Hoverable
|
|
112
|
+
onHoverIn={handleMouseEnter}
|
|
113
|
+
onHoverOut={handleMouseLeave}
|
|
114
|
+
style={[styles.itemWrapper, isHovered && !disabled && styles.hovered]}
|
|
115
|
+
key={key}
|
|
116
|
+
// @ts-ignore
|
|
117
|
+
onPress={() => {
|
|
118
|
+
onItemPress(item);
|
|
119
|
+
}}
|
|
120
|
+
>
|
|
121
|
+
<Icon
|
|
122
|
+
//@ts-ignore
|
|
123
|
+
style={[styles.icon, selected ? styles.checkedBox : styles.uncheckedBox, disabled && styles.disabledBox]} name={selected ? 'check_box' : 'check_box_outline_blank'} size={20} />
|
|
124
|
+
<ListItem.Title style={[styles.title, disabled && styles.disabledTitle ]}>
|
|
125
|
+
{item.title}
|
|
126
|
+
</ListItem.Title>
|
|
127
|
+
</Hoverable>
|
|
128
|
+
</ListItem.Content>
|
|
129
|
+
</ListItem>
|
|
130
|
+
);
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
export default withTheme(CheckBoxItem);
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import React, {useEffect, useState } from "react";
|
|
2
|
+
import {makeStyles, withTheme} from "@rneui/themed";
|
|
3
|
+
import TapasCheckBoxItem from "./CheckBoxItem";
|
|
4
|
+
import {View, Text} from "react-native";
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
const useStyles = makeStyles((theme) => {
|
|
8
|
+
return {
|
|
9
|
+
groupContainer: {
|
|
10
|
+
display: "flex",
|
|
11
|
+
flexDirection: "column",
|
|
12
|
+
},
|
|
13
|
+
categoryTitle: {
|
|
14
|
+
marginTop: 8,
|
|
15
|
+
marginBottom: 8,
|
|
16
|
+
paddingHorizontal: 16,
|
|
17
|
+
fontFamily: theme.fonts.fontFamily,
|
|
18
|
+
fontSize: theme.fonts.sizeS,
|
|
19
|
+
fontWeight: theme.fonts.weightR,
|
|
20
|
+
color: theme.colors.colorTextSecondary,
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
})
|
|
24
|
+
|
|
25
|
+
export interface item {
|
|
26
|
+
title: string;
|
|
27
|
+
value: string;
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
id: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface OptionItem {
|
|
33
|
+
groupName?: string;
|
|
34
|
+
items: item[]
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface Props {
|
|
38
|
+
options: OptionItem[],
|
|
39
|
+
selectedValues?: string[];
|
|
40
|
+
onChange: (value: string[]) => void;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const GroupCheckBox: React.FC<Props> = ({ options, onChange, selectedValues, ...props }) => { // GroupCheckBox component
|
|
44
|
+
const styles = useStyles(props); // styles for the component
|
|
45
|
+
const [selected, setSelected] = useState(selectedValues || []); // useState hook to manage the selected values
|
|
46
|
+
|
|
47
|
+
useEffect(() => {
|
|
48
|
+
setSelected(selectedValues || []);
|
|
49
|
+
}, [selectedValues])
|
|
50
|
+
const getValues = ({groupName, value, id}: {groupName?: string, value: string, id: string}) => {
|
|
51
|
+
return groupName ? `${groupName}__${value}__${id}` : `${value}__${id}`;
|
|
52
|
+
|
|
53
|
+
}
|
|
54
|
+
const handleItemPressed = (value: string, groupName: string, id: string): string[] => {
|
|
55
|
+
const currentValue = getValues({groupName, value, id});
|
|
56
|
+
let currentSelected;
|
|
57
|
+
if(selected.includes(currentValue)) {
|
|
58
|
+
currentSelected = selected.filter(item => item!== currentValue)
|
|
59
|
+
} else {
|
|
60
|
+
currentSelected = [...selected, currentValue]
|
|
61
|
+
}
|
|
62
|
+
setSelected(currentSelected);
|
|
63
|
+
return currentSelected
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return options.map((option, index) => {
|
|
67
|
+
return <View style={styles.groupContainer} key={index}>
|
|
68
|
+
<Text style={styles.categoryTitle}>
|
|
69
|
+
{option.groupName}
|
|
70
|
+
</Text>
|
|
71
|
+
{
|
|
72
|
+
option.items.map((item, subIndex) => {
|
|
73
|
+
return <TapasCheckBoxItem
|
|
74
|
+
key={`${index}_${subIndex}`}
|
|
75
|
+
item={item}
|
|
76
|
+
selected={selected.includes(getValues({groupName: option.groupName, value: item.value, id: item.id}))}
|
|
77
|
+
onItemPress={(currentItem: any)=> {
|
|
78
|
+
const selectedTemp = handleItemPressed(currentItem.value, option?.groupName || "", currentItem?.id);
|
|
79
|
+
onChange(selectedTemp);
|
|
80
|
+
}} />
|
|
81
|
+
})
|
|
82
|
+
}
|
|
83
|
+
</View>
|
|
84
|
+
});
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
export default withTheme(GroupCheckBox);
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React, {FC} from 'react';
|
|
2
|
+
import { StyleSheet, View } from 'react-native';
|
|
3
|
+
import { CircularProgress, CircularProgressProps } from 'react-native-circular-progress';
|
|
4
|
+
import {withTheme} from "@rneui/themed";
|
|
5
|
+
|
|
6
|
+
export interface Props extends CircularProgressProps{
|
|
7
|
+
showFillText?: boolean,
|
|
8
|
+
theme?: any,
|
|
9
|
+
testID?: string,
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const CircularProgressExample: FC<Props> = ({size, fill, width, backgroundColor,theme, tintColor, rotation, lineCap, testID}) => {
|
|
13
|
+
return (
|
|
14
|
+
<View style={styles.container} testID={testID}>
|
|
15
|
+
<CircularProgress
|
|
16
|
+
size={size}
|
|
17
|
+
fill={fill}
|
|
18
|
+
width={width}
|
|
19
|
+
backgroundColor={backgroundColor || theme?.colors.grey3}
|
|
20
|
+
tintColor={tintColor || theme?.colors.success}
|
|
21
|
+
rotation={rotation || 0}
|
|
22
|
+
lineCap={lineCap || 'round'}
|
|
23
|
+
>
|
|
24
|
+
</CircularProgress>
|
|
25
|
+
</View>
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const styles = StyleSheet.create({
|
|
30
|
+
container: {
|
|
31
|
+
display: "flex",
|
|
32
|
+
justifyContent: 'flex-start',
|
|
33
|
+
alignItems: 'center',
|
|
34
|
+
flexDirection: 'row',
|
|
35
|
+
},
|
|
36
|
+
title: {
|
|
37
|
+
fontSize: 24,
|
|
38
|
+
fontWeight: 'bold',
|
|
39
|
+
},
|
|
40
|
+
rightContent: {
|
|
41
|
+
paddingLeft: 8
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
export default withTheme(CircularProgressExample);
|