@ssa-ui-kit/widgets 0.0.14-alpha → 0.0.16-alpha
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/.babelrc.js +4 -4
- package/.env +7 -7
- package/.storybook/main.ts +42 -42
- package/.storybook/preview.tsx +21 -21
- package/.storybook/style.css +31 -31
- package/LICENSE +21 -0
- package/customTest.tsx +35 -35
- package/dist/components/AccountBalance/AccountBalance.d.ts +1 -1
- package/dist/components/AccountBalance/BalancePieChart.d.ts +1 -1
- package/dist/components/AccountBalance/BalancePieChartTitle.d.ts +1 -1
- package/dist/components/AccountBalance/WithLink.d.ts +2 -1
- package/dist/components/AccountBalance/types.d.ts +4 -1
- package/dist/components/PieChart/PieChartLegend.d.ts +1 -1
- package/dist/components/PieChart/types.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/jest-setup.ts +17 -17
- package/lostpixel.config.ts +29 -29
- package/package.json +3 -3
- package/playwright.config.ts +7 -7
- package/src/components/AccountBalance/AccountBalance.spec.tsx +111 -82
- package/src/components/AccountBalance/AccountBalance.stories.tsx +77 -35
- package/src/components/AccountBalance/AccountBalance.tsx +64 -63
- package/src/components/AccountBalance/BalancePieChart.tsx +86 -77
- package/src/components/AccountBalance/BalancePieChartTitle.tsx +42 -42
- package/src/components/AccountBalance/WithLink.tsx +29 -26
- package/src/components/AccountBalance/index.ts +5 -5
- package/src/components/AccountBalance/stories/fixtures.ts +26 -26
- package/src/components/AccountBalance/types.ts +34 -31
- package/src/components/Activity/Activity.spec.tsx +79 -79
- package/src/components/Activity/Activity.stories.tsx +15 -15
- package/src/components/Activity/Activity.tsx +83 -83
- package/src/components/Activity/ActivityItem.tsx +38 -38
- package/src/components/Activity/index.tsx +2 -2
- package/src/components/Activity/mockActivityRequest.ts +106 -106
- package/src/components/Activity/styles.ts +12 -12
- package/src/components/Activity/types.ts +10 -10
- package/src/components/AddNewAccountCard/AddNewAccountCard.spec.tsx +39 -39
- package/src/components/AddNewAccountCard/AddNewAccountCard.stories.tsx +48 -48
- package/src/components/AddNewAccountCard/AddNewAccountCard.tsx +22 -22
- package/src/components/AddNewAccountCard/index.ts +2 -2
- package/src/components/AddNewAccountCard/styles.ts +29 -29
- package/src/components/AddNewAccountCard/types.ts +7 -7
- package/src/components/Bmi/Bmi.spec.tsx +68 -68
- package/src/components/Bmi/Bmi.stories.tsx +10 -10
- package/src/components/Bmi/Bmi.tsx +96 -96
- package/src/components/Bmi/BmiHeatbar.tsx +18 -18
- package/src/components/Bmi/BmiInfo.tsx +11 -11
- package/src/components/Bmi/BmiLabel.tsx +9 -9
- package/src/components/Bmi/BmiLabels.tsx +33 -33
- package/src/components/Bmi/BmiPointer.tsx +15 -15
- package/src/components/Bmi/index.tsx +2 -2
- package/src/components/Bmi/styles.ts +18 -18
- package/src/components/Bmi/types.ts +4 -4
- package/src/components/BotsTable/BotsTable.e2e.ts +77 -77
- package/src/components/BotsTable/BotsTable.spec.tsx +125 -125
- package/src/components/BotsTable/BotsTable.tsx +32 -32
- package/src/components/BotsTable/BotsTableCell.tsx +13 -13
- package/src/components/BotsTable/BotsTableHead.tsx +13 -13
- package/src/components/BotsTable/BotsTableRow.tsx +17 -17
- package/src/components/BotsTable/BotsTableWrapper.tsx +23 -23
- package/src/components/BotsTable/index.ts +5 -5
- package/src/components/BotsTable/stories/BotsTable/StoryComponent.tsx +59 -59
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionIcon.tsx +11 -11
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionItem.tsx +40 -40
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionMore.tsx +89 -89
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionRun.tsx +133 -133
- package/src/components/BotsTable/stories/BotsTable/components/Actions/Actions.tsx +13 -13
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionsWrapper.tsx +21 -21
- package/src/components/BotsTable/stories/BotsTable/components/Actions/consts.tsx +118 -118
- package/src/components/BotsTable/stories/BotsTable/components/Actions/index.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/Exchange.tsx +26 -26
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/consts.tsx +157 -157
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/types.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/components/PNL.tsx +27 -27
- package/src/components/BotsTable/stories/BotsTable/components/ROI.tsx +25 -25
- package/src/components/BotsTable/stories/BotsTable/components/TableTag.tsx +22 -22
- package/src/components/BotsTable/stories/BotsTable/components/Trade/Trade.tsx +8 -8
- package/src/components/BotsTable/stories/BotsTable/components/Trade/consts.ts +14 -14
- package/src/components/BotsTable/stories/BotsTable/components/Trade/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/components/Trade/types.ts +5 -5
- package/src/components/BotsTable/stories/BotsTable/components/index.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/mockData.ts +84 -84
- package/src/components/BotsTable/stories/BotsTable.stories.tsx +39 -39
- package/src/components/BotsTable/stories/NoControlOrders/StoryComponent.tsx +35 -35
- package/src/components/BotsTable/stories/NoControlOrders/components/ActionMore.tsx +95 -95
- package/src/components/BotsTable/stories/NoControlOrders/components/Reason.tsx +11 -11
- package/src/components/BotsTable/stories/NoControlOrders/components/TableList.tsx +45 -45
- package/src/components/BotsTable/stories/NoControlOrders/components/TableRow.tsx +31 -31
- package/src/components/BotsTable/stories/NoControlOrders/components/index.ts +4 -4
- package/src/components/BotsTable/stories/NoControlOrders/mockData.ts +23 -23
- package/src/components/BotsTable/stories/NoControlOrders/types.ts +16 -16
- package/src/components/BotsTable/types.ts +31 -31
- package/src/components/Calories/Calories.spec.tsx +11 -11
- package/src/components/Calories/Calories.stories.tsx +26 -26
- package/src/components/Calories/Calories.tsx +54 -54
- package/src/components/Calories/index.tsx +2 -2
- package/src/components/Calories/innerContent.tsx +30 -30
- package/src/components/Calories/types.ts +4 -4
- package/src/components/CardList/CardList.spec.tsx +32 -32
- package/src/components/CardList/CardList.stories.tsx +37 -37
- package/src/components/CardList/CardList.tsx +37 -37
- package/src/components/CardList/index.ts +2 -2
- package/src/components/CardList/types.ts +10 -10
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.e2e.ts +115 -115
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.spec.tsx +50 -50
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.tsx +67 -67
- package/src/components/CollapsibleNavBar/CollapsibleNavBarBase.ts +134 -134
- package/src/components/CollapsibleNavBar/CollapsibleNavBarItem.ts +28 -28
- package/src/components/CollapsibleNavBar/CollapsibleNavBarLink.ts +40 -40
- package/src/components/CollapsibleNavBar/CollapsibleNavBarList.ts +18 -18
- package/src/components/CollapsibleNavBar/CollapsibleNavBarWrapper.ts +24 -24
- package/src/components/CollapsibleNavBar/CollapsibleNavContentToggle.tsx +27 -27
- package/src/components/CollapsibleNavBar/CollapsibleNavToggle.tsx +49 -49
- package/src/components/CollapsibleNavBar/CollapsibleNavToggleWrapper.ts +16 -16
- package/src/components/CollapsibleNavBar/NavBarAccordionContent.tsx +49 -49
- package/src/components/CollapsibleNavBar/NavBarItemWithSubMenu.tsx +91 -91
- package/src/components/CollapsibleNavBar/NavBarItemWithoutSubMenu.tsx +26 -26
- package/src/components/CollapsibleNavBar/NavBarPopover.tsx +124 -124
- package/src/components/CollapsibleNavBar/TriggerIcon.tsx +33 -33
- package/src/components/CollapsibleNavBar/index.ts +2 -2
- package/src/components/CollapsibleNavBar/stories/CollapsibleNavBar.stories.tsx +53 -53
- package/src/components/CollapsibleNavBar/stories/Layout.tsx +53 -53
- package/src/components/CollapsibleNavBar/stories/Logo.tsx +12 -12
- package/src/components/CollapsibleNavBar/stories/StoryComponent.tsx +20 -20
- package/src/components/CollapsibleNavBar/stories/consts.ts +37 -37
- package/src/components/CollapsibleNavBar/stories/styles.ts +21 -21
- package/src/components/CollapsibleNavBar/styles.ts +91 -91
- package/src/components/CollapsibleNavBar/types.ts +16 -16
- package/src/components/ExchangeAccount/ExchangeAccount.spec.tsx +110 -110
- package/src/components/ExchangeAccount/ExchangeAccount.stories.tsx +90 -90
- package/src/components/ExchangeAccount/ExchangeAccount.tsx +73 -73
- package/src/components/ExchangeAccount/helpers.tsx +153 -153
- package/src/components/ExchangeAccount/index.ts +2 -2
- package/src/components/ExchangeAccount/styles.ts +133 -133
- package/src/components/ExchangeAccount/types.ts +12 -12
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.spec.tsx +43 -43
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.stories.tsx +14 -14
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.tsx +73 -73
- package/src/components/ExchangeAccountKeys/helpers.ts +7 -7
- package/src/components/ExchangeAccountKeys/index.ts +2 -2
- package/src/components/ExchangeAccountKeys/stories/StoryComponent.tsx +33 -33
- package/src/components/ExchangeAccountKeys/styles.ts +87 -87
- package/src/components/ExchangeAccountKeys/types.ts +8 -8
- package/src/components/Filters/FilterBlockWrapper.tsx +11 -11
- package/src/components/Filters/Filters.e2e.ts +115 -115
- package/src/components/Filters/Filters.spec.tsx +47 -47
- package/src/components/Filters/Filters.tsx +87 -87
- package/src/components/Filters/FiltersBlock.tsx +77 -77
- package/src/components/Filters/FiltersContext.tsx +44 -44
- package/src/components/Filters/FiltersWrapper.tsx +34 -34
- package/src/components/Filters/hooks/useVisibility.ts +101 -101
- package/src/components/Filters/index.ts +1 -1
- package/src/components/Filters/stories/Filters.stories.tsx +24 -24
- package/src/components/Filters/stories/StoryComponent.tsx +19 -19
- package/src/components/Filters/stories/mockData.ts +421 -421
- package/src/components/Filters/types.ts +4 -4
- package/src/components/HeartRate/BPM.tsx +43 -43
- package/src/components/HeartRate/HeartRate.e2e.ts +78 -78
- package/src/components/HeartRate/HeartRate.spec.tsx +91 -91
- package/src/components/HeartRate/HeartRate.stories.tsx +36 -36
- package/src/components/HeartRate/HeartRate.tsx +105 -105
- package/src/components/HeartRate/HeartRateLineChart.tsx +53 -53
- package/src/components/HeartRate/index.ts +2 -2
- package/src/components/HeartRate/mockHeartRateRequest.ts +15 -15
- package/src/components/HeartRate/types.ts +15 -15
- package/src/components/HeartRate/utils.tsx +8 -8
- package/src/components/LinksTabBar/LinksTabBar.e2e.ts +23 -23
- package/src/components/LinksTabBar/LinksTabBar.spec.tsx +48 -48
- package/src/components/LinksTabBar/LinksTabBar.stories.tsx +45 -45
- package/src/components/LinksTabBar/LinksTabBar.tsx +14 -14
- package/src/components/LinksTabBar/LinksTabBarBase.tsx +36 -36
- package/src/components/LinksTabBar/index.ts +2 -2
- package/src/components/LinksTabBar/stories/decorators.tsx +34 -34
- package/src/components/LinksTabBar/stories/mockData.ts +27 -27
- package/src/components/LinksTabBar/types.ts +12 -12
- package/src/components/ListGoals/ListGoals.spec.tsx +82 -82
- package/src/components/ListGoals/ListGoals.stories.tsx +58 -58
- package/src/components/ListGoals/ListGoals.tsx +29 -29
- package/src/components/ListGoals/ListGoalsCard.tsx +61 -61
- package/src/components/ListGoals/index.ts +2 -2
- package/src/components/ListGoals/styles.tsx +11 -11
- package/src/components/ListGoals/types.ts +25 -25
- package/src/components/MealNutrients/MealNutrients.e2e.ts +68 -68
- package/src/components/MealNutrients/MealNutrients.spec.tsx +134 -134
- package/src/components/MealNutrients/MealNutrients.stories.tsx +37 -37
- package/src/components/MealNutrients/MealNutrients.tsx +84 -84
- package/src/components/MealNutrients/MealNutrientsLineChart.tsx +87 -87
- package/src/components/MealNutrients/MealNutrientsTooltip.tsx +30 -30
- package/src/components/MealNutrients/chartDefaultConfig.tsx +87 -87
- package/src/components/MealNutrients/index.tsx +2 -2
- package/src/components/MealNutrients/mockMealNutrientsRequest.ts +1246 -1246
- package/src/components/MealNutrients/types.ts +37 -37
- package/src/components/MealNutrients/useChartConfig.ts +69 -69
- package/src/components/MealPlanner/MealPlanner.spec.tsx +77 -77
- package/src/components/MealPlanner/MealPlanner.stories.tsx +15 -15
- package/src/components/MealPlanner/MealPlanner.tsx +100 -100
- package/src/components/MealPlanner/MealPlannerBadge.tsx +15 -15
- package/src/components/MealPlanner/MealPlannerBars.tsx +19 -19
- package/src/components/MealPlanner/MealPlannerCard.tsx +73 -73
- package/src/components/MealPlanner/MealPlannerLegends.tsx +22 -22
- package/src/components/MealPlanner/index.ts +2 -2
- package/src/components/MealPlanner/mockMealPlannerRequest.ts +70 -70
- package/src/components/MealPlanner/types.ts +21 -21
- package/src/components/NavBar/NavBar.e2e.ts +64 -64
- package/src/components/NavBar/NavBar.stories.tsx +86 -86
- package/src/components/NavBar/NavBar.tsx +41 -41
- package/src/components/NavBar/NavBarBase.ts +45 -45
- package/src/components/NavBar/NavBarItem.ts +13 -13
- package/src/components/NavBar/NavBarLink.ts +33 -33
- package/src/components/NavBar/NavBarList.ts +16 -16
- package/src/components/NavBar/NavBarWrapper.ts +40 -40
- package/src/components/NavBar/NavToggle.tsx +36 -36
- package/src/components/NavBar/NavToggleWrapper.ts +21 -21
- package/src/components/NavBar/index.ts +2 -2
- package/src/components/NavBar/types.ts +22 -22
- package/src/components/NotificationCard/NotificationCard.spec.tsx +113 -113
- package/src/components/NotificationCard/NotificationCard.stories.tsx +112 -112
- package/src/components/NotificationCard/NotificationCard.tsx +95 -95
- package/src/components/NotificationCard/index.ts +2 -2
- package/src/components/NotificationCard/styles.tsx +134 -134
- package/src/components/NotificationCard/types.ts +12 -12
- package/src/components/NotificationMenu/NotificationMenu.e2e.ts +27 -27
- package/src/components/NotificationMenu/NotificationMenu.spec.tsx +64 -64
- package/src/components/NotificationMenu/NotificationMenu.tsx +77 -77
- package/src/components/NotificationMenu/helpers.ts +91 -91
- package/src/components/NotificationMenu/index.ts +2 -2
- package/src/components/NotificationMenu/stories/NotificationMenu.stories.tsx +14 -14
- package/src/components/NotificationMenu/stories/StoryComponent.tsx +84 -84
- package/src/components/NotificationMenu/stories/StoryContent.tsx +52 -52
- package/src/components/NotificationMenu/styles.ts +125 -125
- package/src/components/NotificationMenu/types.ts +11 -11
- package/src/components/Pagination/ArrowButton.tsx +32 -32
- package/src/components/Pagination/Pagination.e2e.ts +51 -51
- package/src/components/Pagination/Pagination.spec.tsx +228 -228
- package/src/components/Pagination/Pagination.stories.tsx +60 -60
- package/src/components/Pagination/Pagination.tsx +66 -66
- package/src/components/Pagination/PaginationButtons.tsx +63 -63
- package/src/components/Pagination/PaginationContext.tsx +20 -20
- package/src/components/Pagination/index.ts +3 -3
- package/src/components/Pagination/styles.tsx +98 -98
- package/src/components/Pagination/types.ts +38 -38
- package/src/components/PieChart/PieChart.spec.tsx +97 -97
- package/src/components/PieChart/PieChart.stories.tsx +129 -129
- package/src/components/PieChart/PieChart.tsx +40 -40
- package/src/components/PieChart/PieChartBases.tsx +26 -26
- package/src/components/PieChart/PieChartLegend.tsx +74 -51
- package/src/components/PieChart/PieChartLegendList.tsx +19 -19
- package/src/components/PieChart/PieChartLegendMarker.tsx +12 -12
- package/src/components/PieChart/colorPalettes.ts +28 -28
- package/src/components/PieChart/index.ts +4 -4
- package/src/components/PieChart/stories/fixtures.ts +39 -39
- package/src/components/PieChart/types.ts +30 -28
- package/src/components/ProgressInfo/ProgressInfo.e2e.ts +31 -31
- package/src/components/ProgressInfo/ProgressInfo.spec.tsx +91 -91
- package/src/components/ProgressInfo/ProgressInfo.stories.tsx +32 -32
- package/src/components/ProgressInfo/ProgressInfo.tsx +117 -117
- package/src/components/ProgressInfo/ProgressInfoTotals.tsx +60 -60
- package/src/components/ProgressInfo/index.ts +3 -3
- package/src/components/ProgressInfo/mockProgressInfoRequest.ts +166 -166
- package/src/components/ProgressInfo/styles.ts +20 -20
- package/src/components/ProgressInfo/types.ts +29 -29
- package/src/components/SearchBox/SearchBox.e2e.ts +37 -37
- package/src/components/SearchBox/SearchBox.spec.tsx +77 -77
- package/src/components/SearchBox/SearchBox.tsx +70 -70
- package/src/components/SearchBox/SearchBoxCrossIcon.tsx +26 -26
- package/src/components/SearchBox/SearchBoxInput.tsx +42 -42
- package/src/components/SearchBox/SearchBoxWrapper.tsx +9 -9
- package/src/components/SearchBox/index.ts +4 -4
- package/src/components/SearchBox/stories/SearchBox.stories.tsx +16 -16
- package/src/components/SearchBox/stories/StoryComponent.tsx +25 -25
- package/src/components/SearchBox/types.ts +9 -9
- package/src/components/StepsCounter/StepsCounter.spec.tsx +14 -14
- package/src/components/StepsCounter/StepsCounter.stories.tsx +16 -16
- package/src/components/StepsCounter/StepsCounter.tsx +74 -74
- package/src/components/StepsCounter/index.ts +2 -2
- package/src/components/StepsCounter/types.ts +4 -4
- package/src/components/TableFilters/TableFilterCancelButton.tsx +39 -39
- package/src/components/TableFilters/TableFilterCheckbox.tsx +24 -24
- package/src/components/TableFilters/TableFilterClearButton.tsx +47 -47
- package/src/components/TableFilters/TableFilterTrigger.tsx +66 -66
- package/src/components/TableFilters/TableFilterTriggerWithNotification.tsx +44 -44
- package/src/components/TableFilters/TableFilters.e2e.ts +32 -32
- package/src/components/TableFilters/TableFilters.spec.tsx +171 -171
- package/src/components/TableFilters/TableFilters.tsx +187 -187
- package/src/components/TableFilters/TableFiltersAccordion.tsx +14 -14
- package/src/components/TableFilters/TableFiltersAccordionContent.tsx +18 -18
- package/src/components/TableFilters/TableFiltersButtons.tsx +32 -32
- package/src/components/TableFilters/hooks/useTableData.ts +137 -137
- package/src/components/TableFilters/index.ts +9 -9
- package/src/components/TableFilters/stories/StoryComponent.tsx +35 -35
- package/src/components/TableFilters/stories/TableFilters.stories.tsx +17 -17
- package/src/components/TableFilters/stories/TableFiltersWrapper.tsx +7 -7
- package/src/components/TableFilters/stories/mockData.tsx +114 -114
- package/src/components/TableFilters/styles.ts +26 -26
- package/src/components/TableFilters/types.ts +34 -34
- package/src/components/TableFilters/utils/handlers.ts +73 -73
- package/src/components/TradingInfoCard/TradingInfoCard.e2e.ts +16 -16
- package/src/components/TradingInfoCard/TradingInfoCard.spec.tsx +116 -116
- package/src/components/TradingInfoCard/TradingInfoCard.stories.tsx +118 -118
- package/src/components/TradingInfoCard/TradingInfoCard.tsx +43 -43
- package/src/components/TradingInfoCard/TradingInfoCardContent.tsx +32 -32
- package/src/components/TradingInfoCard/TradingInfoCardTooltip.tsx +47 -47
- package/src/components/TradingInfoCard/TradingInfoCardWrapper.tsx +72 -72
- package/src/components/TradingInfoCard/index.ts +3 -3
- package/src/components/TradingInfoCard/types.ts +27 -27
- package/src/components/TradingScoreboard/TradingScoreboard.spec.tsx +119 -119
- package/src/components/TradingScoreboard/TradingScoreboard.stories.tsx +119 -119
- package/src/components/TradingScoreboard/TradingScoreboard.tsx +41 -41
- package/src/components/TradingScoreboard/TradingScoreboardBase.tsx +17 -17
- package/src/components/TradingScoreboard/helpers.tsx +134 -134
- package/src/components/TradingScoreboard/index.ts +2 -2
- package/src/components/TradingScoreboard/types.ts +18 -18
- package/src/components/UpcomingWorkouts/UpcomingWorkoutCard.tsx +64 -64
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.spec.tsx +56 -56
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.stories.tsx +32 -32
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.tsx +27 -27
- package/src/components/UpcomingWorkouts/index.ts +2 -2
- package/src/components/UpcomingWorkouts/style.ts +12 -12
- package/src/components/UpcomingWorkouts/types.ts +23 -23
- package/src/components/UserCard/UserCard.tsx +46 -46
- package/src/components/UserCard/UserCardBMI.tsx +37 -37
- package/src/components/UserCard/UserCardCredentials.tsx +56 -56
- package/src/components/UserCard/UserCardItem.tsx +42 -42
- package/src/components/UserCard/index.tsx +2 -2
- package/src/components/UserCard/types.ts +8 -8
- package/src/components/UserProfile/UserProfile.e2e.ts +21 -21
- package/src/components/UserProfile/UserProfile.spec.tsx +107 -107
- package/src/components/UserProfile/UserProfile.stories.tsx +21 -21
- package/src/components/UserProfile/UserProfile.tsx +53 -53
- package/src/components/UserProfile/index.ts +2 -2
- package/src/components/UserProfile/styles.ts +47 -47
- package/src/components/UserProfile/types.ts +8 -8
- package/src/components/WaterConsume/WaterConsume.spec.tsx +62 -62
- package/src/components/WaterConsume/WaterConsume.stories.tsx +36 -36
- package/src/components/WaterConsume/WaterConsume.tsx +188 -188
- package/src/components/WaterConsume/index.ts +2 -2
- package/src/components/WaterConsume/types.ts +11 -11
- package/src/consts.ts +18 -18
- package/src/index.ts +53 -53
- package/src/injectGlobal.ts +41 -41
- package/tsbuildcache +1 -1
- package/tsconfig.build.json +44 -44
- package/tsconfig.json +17 -17
- package/webpack.config.js +28 -28
- package/custom-shots/widgets-bots-table--no-control-orders--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-bots-table--no-control-orders--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px]_statistics_submenu_popover.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_side_menu_expanded.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_expanded.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_popover.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_default.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_menu_opened.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_statistics_submenu.png +0 -0
- package/custom-shots/widgets-filters--default__[w1920px].png +0 -0
- package/custom-shots/widgets-filters--filter-button-items-not-selected__[w390px].png +0 -0
- package/custom-shots/widgets-filters--filter-button__[w390px].png +0 -0
- package/custom-shots/widgets-filters--filter-button__[w900px].png +0 -0
- package/custom-shots/widgets-filters--more-button-items-selected__[w390px].png +0 -0
- package/custom-shots/widgets-filters--more-button__[w900px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w390px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w900px].png +0 -0
- package/custom-shots/widgets-linkstabbar--current-focus__[w1920px].png +0 -0
- package/custom-shots/widgets-linkstabbar--non-current-focus__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w390px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w900px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1440px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w390px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w900px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w390px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w900px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w390px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w900px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w390px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w900px].png +0 -0
- package/custom-shots/widgets-pagination--next-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--not-selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--previous-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--next-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--not-selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--previous-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w1440px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w390px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w900px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w1440px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w390px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w900px].png +0 -0
- package/custom-shots/widgets-searchbox--cross-icon__[w1920px].png +0 -0
- package/custom-shots/widgets-searchbox--cross-icon__[w900px].png +0 -0
- package/custom-shots/widgets-searchbox--search-icon__[w1920px].png +0 -0
- package/custom-shots/widgets-searchbox--search-icon__[w900px].png +0 -0
- package/custom-shots/widgets-table-bots--default_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--no-control-orders--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--no-control-orders--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-table-filters--opened__[w1920px].png +0 -0
- package/custom-shots/widgets-trading-info-card--hover__[w1920px].png +0 -0
- package/custom-shots/widgets-user-profile--is-opened__[w1920px].png +0 -0
- package/storybook-static/106.9e8cbea9.iframe.bundle.js +0 -1
- package/storybook-static/134.2444003c.iframe.bundle.js +0 -1
- package/storybook-static/166.927d7b90.iframe.bundle.js +0 -1
- package/storybook-static/185.4df02b5b.iframe.bundle.js +0 -139
- package/storybook-static/185.4df02b5b.iframe.bundle.js.map +0 -1
- package/storybook-static/251.8c3ebcca.iframe.bundle.js +0 -1
- package/storybook-static/263.0a5aa731.iframe.bundle.js +0 -1
- package/storybook-static/283.258a25c8.iframe.bundle.js +0 -1
- package/storybook-static/326.7772ae66.iframe.bundle.js +0 -1
- package/storybook-static/494.f5410ab1.iframe.bundle.js +0 -2
- package/storybook-static/494.f5410ab1.iframe.bundle.js.LICENSE.txt +0 -18
- package/storybook-static/497.7e0c2fc7.iframe.bundle.js +0 -44
- package/storybook-static/497.7e0c2fc7.iframe.bundle.js.map +0 -1
- package/storybook-static/540.17a57e0e.iframe.bundle.js +0 -1
- package/storybook-static/547.951a46da.iframe.bundle.js +0 -1
- package/storybook-static/609.f12a4891.iframe.bundle.js +0 -1
- package/storybook-static/620.61fd9060.iframe.bundle.js +0 -1
- package/storybook-static/633.947e8b75.iframe.bundle.js +0 -1
- package/storybook-static/661.14057bc5.iframe.bundle.js +0 -1
- package/storybook-static/753.91179890.iframe.bundle.js +0 -1
- package/storybook-static/76.25b4aa80.iframe.bundle.js +0 -1
- package/storybook-static/767.1716b836.iframe.bundle.js +0 -1
- package/storybook-static/781.3faed4b1.iframe.bundle.js +0 -2
- package/storybook-static/781.3faed4b1.iframe.bundle.js.LICENSE.txt +0 -32
- package/storybook-static/906.a25e1330.iframe.bundle.js +0 -402
- package/storybook-static/906.a25e1330.iframe.bundle.js.LICENSE.txt +0 -62
- package/storybook-static/906.a25e1330.iframe.bundle.js.map +0 -1
- package/storybook-static/912.a84a00a8.iframe.bundle.js +0 -1
- package/storybook-static/973.d2780faa.iframe.bundle.js +0 -1
- package/storybook-static/979.9baaf9d9.iframe.bundle.js +0 -1
- package/storybook-static/995.818e1781.iframe.bundle.js +0 -1
- package/storybook-static/components-Activity-Activity-stories.1f2220be.iframe.bundle.js +0 -1
- package/storybook-static/components-Bmi-Bmi-stories.033dba0e.iframe.bundle.js +0 -1
- package/storybook-static/components-Calories-Calories-stories.61da75cb.iframe.bundle.js +0 -1
- package/storybook-static/components-CardList-CardList-stories.caaffeda.iframe.bundle.js +0 -1
- package/storybook-static/components-HeartRate-HeartRate-stories.bd133239.iframe.bundle.js +0 -1
- package/storybook-static/components-ListGoals-ListGoals-stories.e68d5cbf.iframe.bundle.js +0 -1
- package/storybook-static/components-MealNutrients-MealNutrients-stories.7e46bd1e.iframe.bundle.js +0 -1
- package/storybook-static/components-MealPlanner-MealPlanner-stories.4b8341d3.iframe.bundle.js +0 -1
- package/storybook-static/components-NavBar-NavBar-stories.4f37096a.iframe.bundle.js +0 -1
- package/storybook-static/components-Pagination-Pagination-stories.2fd0c446.iframe.bundle.js +0 -1
- package/storybook-static/components-ProgressInfo-ProgressInfo-stories.665cee18.iframe.bundle.js +0 -1
- package/storybook-static/components-StepsCounter-StepsCounter-stories.b87bd065.iframe.bundle.js +0 -1
- package/storybook-static/components-TableFilters-stories-TableFilters-stories.24c4f9e8.iframe.bundle.js +0 -1
- package/storybook-static/components-UpcomingWorkouts-UpcomingWorkouts-stories.fab18fcf.iframe.bundle.js +0 -1
- package/storybook-static/components-WaterConsume-WaterConsume-stories.5dae388e.iframe.bundle.js +0 -1
- package/storybook-static/favicon.svg +0 -7
- package/storybook-static/iframe.html +0 -355
- package/storybook-static/index.html +0 -126
- package/storybook-static/index.json +0 -1
- package/storybook-static/main.c21822d8.iframe.bundle.js +0 -1
- package/storybook-static/project.json +0 -1
- package/storybook-static/runtime~main.b259f462.iframe.bundle.js +0 -1
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +0 -13
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +0 -115
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -18
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js +0 -28
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/links-0/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/links-0/manager-bundle.js.map +0 -7
- package/storybook-static/sb-common-assets/fonts.css +0 -31
- package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/sb-manager/CRUD-I5EZL2FS-LBZVDZXV.js +0 -1
- package/storybook-static/sb-manager/Communicate-7JXCND2Z-6SIVXWT4.js +0 -1
- package/storybook-static/sb-manager/Devices-SUYACUPO-DMGV6ENX.js +0 -1
- package/storybook-static/sb-manager/Documents-SGWAY3KW-XZRZ6I6S.js +0 -1
- package/storybook-static/sb-manager/Editing-7QFB6ZMG-J5U6QGB6.js +0 -1
- package/storybook-static/sb-manager/Git-DZ2D5ZUL-VKBWYJHE.js +0 -1
- package/storybook-static/sb-manager/GlobalScrollAreaStyles-4LLX2B3H-DOBSPBNW.js +0 -7
- package/storybook-static/sb-manager/Images-S2WTXNGG-NXAYS4VP.js +0 -1
- package/storybook-static/sb-manager/Logos-SJTNNI74-F3IVL4UV.js +0 -1
- package/storybook-static/sb-manager/OS-YZ2Y4VYS-KGSGCOHC.js +0 -1
- package/storybook-static/sb-manager/OverlayScrollbars-OL4C4TVX-FNYA4OIC.js +0 -1
- package/storybook-static/sb-manager/People-OD4EV7WZ-DBPUNUXW.js +0 -1
- package/storybook-static/sb-manager/Wayfinding-BB4H7CHP-N2QAVLVA.js +0 -1
- package/storybook-static/sb-manager/WithTooltip-YBG737T3-GLWUADFI.js +0 -1
- package/storybook-static/sb-manager/chunk-6KNXZZZ5.js +0 -207
- package/storybook-static/sb-manager/chunk-DP4DR4LA.js +0 -15
- package/storybook-static/sb-manager/chunk-GBCXFRBK.js +0 -1
- package/storybook-static/sb-manager/chunk-IFNK3PLJ.js +0 -1
- package/storybook-static/sb-manager/chunk-JMPBYCHU.js +0 -1
- package/storybook-static/sb-manager/chunk-JSPL73I3.js +0 -1
- package/storybook-static/sb-manager/chunk-SJD7EFYL.js +0 -136
- package/storybook-static/sb-manager/chunk-UBXIQABM.js +0 -447
- package/storybook-static/sb-manager/chunk-V7GYLJLR.js +0 -7
- package/storybook-static/sb-manager/chunk-Z4NRYNHR.js +0 -1
- package/storybook-static/sb-manager/formatter-6736J7QO-TGL2ZGQC.js +0 -156
- package/storybook-static/sb-manager/globals.js +0 -1
- package/storybook-static/sb-manager/index.js +0 -1
- package/storybook-static/sb-manager/runtime.js +0 -1
- package/storybook-static/sb-manager/syntaxhighlighter-4OVWVELQ-5IZ45DZY.js +0 -1
- package/storybook-static/sb-preview/globals.js +0 -1
- package/storybook-static/sb-preview/runtime.js +0 -105
- package/storybook-static/stories.json +0 -1
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
import { Fragment } from 'react';
|
|
2
|
-
import { Routes, Route, MemoryRouter } from 'react-router-dom';
|
|
3
|
-
import { Meta } from '@storybook/react';
|
|
4
|
-
import { Title, Description, Source } from '@storybook/addon-docs';
|
|
5
|
-
|
|
6
|
-
import { NavBar } from './NavBar';
|
|
7
|
-
import { DecoratorFunction } from '@storybook/types';
|
|
8
|
-
|
|
9
|
-
type Args = Parameters<typeof NavBar>[0];
|
|
10
|
-
|
|
11
|
-
const reactRouterDecorator: DecoratorFunction<
|
|
12
|
-
{
|
|
13
|
-
component: typeof NavBar;
|
|
14
|
-
storyResult: React.ReactElement;
|
|
15
|
-
canvasElement: unknown;
|
|
16
|
-
},
|
|
17
|
-
Args
|
|
18
|
-
> = (Story) => {
|
|
19
|
-
return (
|
|
20
|
-
<MemoryRouter>
|
|
21
|
-
<Routes>
|
|
22
|
-
<Route path="/*" element={<Story />} />
|
|
23
|
-
</Routes>
|
|
24
|
-
</MemoryRouter>
|
|
25
|
-
);
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
const Items = [
|
|
29
|
-
{ path: 'stats', iconName: 'stats' },
|
|
30
|
-
{ path: 'calendar', iconName: 'calendar' },
|
|
31
|
-
{ path: 'trainings', iconName: 'trainings' },
|
|
32
|
-
{ path: 'measurements', iconName: 'measurements' },
|
|
33
|
-
{ path: 'diet', iconName: 'diet' },
|
|
34
|
-
{ path: 'notification', iconName: 'notification' },
|
|
35
|
-
{ path: 'settings', iconName: 'settings' },
|
|
36
|
-
];
|
|
37
|
-
|
|
38
|
-
export default {
|
|
39
|
-
title: 'Widgets/NavBar',
|
|
40
|
-
component: NavBar,
|
|
41
|
-
parameters: {
|
|
42
|
-
viewport: {
|
|
43
|
-
defaultViewport: 'mobile2',
|
|
44
|
-
},
|
|
45
|
-
docs: {
|
|
46
|
-
page: () => (
|
|
47
|
-
<Fragment>
|
|
48
|
-
<Title />
|
|
49
|
-
<Description />
|
|
50
|
-
<Source code={`<NavBar />`} />
|
|
51
|
-
</Fragment>
|
|
52
|
-
),
|
|
53
|
-
},
|
|
54
|
-
},
|
|
55
|
-
decorators: [
|
|
56
|
-
reactRouterDecorator,
|
|
57
|
-
(Story) => (
|
|
58
|
-
<div style={{ height: '100vh', position: 'relative' }}>{Story()}</div>
|
|
59
|
-
),
|
|
60
|
-
],
|
|
61
|
-
args: {
|
|
62
|
-
items: Items,
|
|
63
|
-
},
|
|
64
|
-
} as Meta<typeof NavBar>;
|
|
65
|
-
|
|
66
|
-
export const Default = {};
|
|
67
|
-
|
|
68
|
-
const VIEWPORTS = {
|
|
69
|
-
laptop: {
|
|
70
|
-
name: 'Laptop',
|
|
71
|
-
styles: {
|
|
72
|
-
width: '1440px',
|
|
73
|
-
height: '1080px',
|
|
74
|
-
},
|
|
75
|
-
},
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
export const WideScreen = {
|
|
79
|
-
component: NavBar,
|
|
80
|
-
parameters: {
|
|
81
|
-
viewport: {
|
|
82
|
-
viewports: VIEWPORTS,
|
|
83
|
-
defaultViewport: 'laptop',
|
|
84
|
-
},
|
|
85
|
-
},
|
|
86
|
-
};
|
|
1
|
+
import { Fragment } from 'react';
|
|
2
|
+
import { Routes, Route, MemoryRouter } from 'react-router-dom';
|
|
3
|
+
import { Meta } from '@storybook/react';
|
|
4
|
+
import { Title, Description, Source } from '@storybook/addon-docs';
|
|
5
|
+
|
|
6
|
+
import { NavBar } from './NavBar';
|
|
7
|
+
import { DecoratorFunction } from '@storybook/types';
|
|
8
|
+
|
|
9
|
+
type Args = Parameters<typeof NavBar>[0];
|
|
10
|
+
|
|
11
|
+
const reactRouterDecorator: DecoratorFunction<
|
|
12
|
+
{
|
|
13
|
+
component: typeof NavBar;
|
|
14
|
+
storyResult: React.ReactElement;
|
|
15
|
+
canvasElement: unknown;
|
|
16
|
+
},
|
|
17
|
+
Args
|
|
18
|
+
> = (Story) => {
|
|
19
|
+
return (
|
|
20
|
+
<MemoryRouter>
|
|
21
|
+
<Routes>
|
|
22
|
+
<Route path="/*" element={<Story />} />
|
|
23
|
+
</Routes>
|
|
24
|
+
</MemoryRouter>
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const Items = [
|
|
29
|
+
{ path: 'stats', iconName: 'stats' },
|
|
30
|
+
{ path: 'calendar', iconName: 'calendar' },
|
|
31
|
+
{ path: 'trainings', iconName: 'trainings' },
|
|
32
|
+
{ path: 'measurements', iconName: 'measurements' },
|
|
33
|
+
{ path: 'diet', iconName: 'diet' },
|
|
34
|
+
{ path: 'notification', iconName: 'notification' },
|
|
35
|
+
{ path: 'settings', iconName: 'settings' },
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
export default {
|
|
39
|
+
title: 'Widgets/NavBar',
|
|
40
|
+
component: NavBar,
|
|
41
|
+
parameters: {
|
|
42
|
+
viewport: {
|
|
43
|
+
defaultViewport: 'mobile2',
|
|
44
|
+
},
|
|
45
|
+
docs: {
|
|
46
|
+
page: () => (
|
|
47
|
+
<Fragment>
|
|
48
|
+
<Title />
|
|
49
|
+
<Description />
|
|
50
|
+
<Source code={`<NavBar />`} />
|
|
51
|
+
</Fragment>
|
|
52
|
+
),
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
decorators: [
|
|
56
|
+
reactRouterDecorator,
|
|
57
|
+
(Story) => (
|
|
58
|
+
<div style={{ height: '100vh', position: 'relative' }}>{Story()}</div>
|
|
59
|
+
),
|
|
60
|
+
],
|
|
61
|
+
args: {
|
|
62
|
+
items: Items,
|
|
63
|
+
},
|
|
64
|
+
} as Meta<typeof NavBar>;
|
|
65
|
+
|
|
66
|
+
export const Default = {};
|
|
67
|
+
|
|
68
|
+
const VIEWPORTS = {
|
|
69
|
+
laptop: {
|
|
70
|
+
name: 'Laptop',
|
|
71
|
+
styles: {
|
|
72
|
+
width: '1440px',
|
|
73
|
+
height: '1080px',
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export const WideScreen = {
|
|
79
|
+
component: NavBar,
|
|
80
|
+
parameters: {
|
|
81
|
+
viewport: {
|
|
82
|
+
viewports: VIEWPORTS,
|
|
83
|
+
defaultViewport: 'laptop',
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
};
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
import { useId } from 'react';
|
|
2
|
-
import { useTheme } from '@emotion/react';
|
|
3
|
-
|
|
4
|
-
import { Icon } from '@ssa-ui-kit/core';
|
|
5
|
-
|
|
6
|
-
import NavBarBase from './NavBarBase';
|
|
7
|
-
import NavBarWrapper from './NavBarWrapper';
|
|
8
|
-
import NavBarList from './NavBarList';
|
|
9
|
-
import NavBarItem from './NavBarItem';
|
|
10
|
-
import NavBarLink from './NavBarLink';
|
|
11
|
-
import NavToggle from './NavToggle';
|
|
12
|
-
|
|
13
|
-
import { INavBarProps } from './types';
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* UI Component that shows the navigation bar
|
|
17
|
-
*/
|
|
18
|
-
export const NavBar = ({ items }: INavBarProps) => {
|
|
19
|
-
const toggleId = useId();
|
|
20
|
-
const theme = useTheme();
|
|
21
|
-
|
|
22
|
-
return (
|
|
23
|
-
<NavBarBase>
|
|
24
|
-
<input type="checkbox" id={toggleId} />
|
|
25
|
-
|
|
26
|
-
<NavToggle htmlFor={toggleId} />
|
|
27
|
-
|
|
28
|
-
<NavBarWrapper>
|
|
29
|
-
<NavBarList>
|
|
30
|
-
{items.map(({ path, iconName }) => (
|
|
31
|
-
<NavBarItem key={path}>
|
|
32
|
-
<NavBarLink to={'/' + path}>
|
|
33
|
-
<Icon name={iconName} color={theme.colors.grey} />
|
|
34
|
-
</NavBarLink>
|
|
35
|
-
</NavBarItem>
|
|
36
|
-
))}
|
|
37
|
-
</NavBarList>
|
|
38
|
-
</NavBarWrapper>
|
|
39
|
-
</NavBarBase>
|
|
40
|
-
);
|
|
41
|
-
};
|
|
1
|
+
import { useId } from 'react';
|
|
2
|
+
import { useTheme } from '@emotion/react';
|
|
3
|
+
|
|
4
|
+
import { Icon } from '@ssa-ui-kit/core';
|
|
5
|
+
|
|
6
|
+
import NavBarBase from './NavBarBase';
|
|
7
|
+
import NavBarWrapper from './NavBarWrapper';
|
|
8
|
+
import NavBarList from './NavBarList';
|
|
9
|
+
import NavBarItem from './NavBarItem';
|
|
10
|
+
import NavBarLink from './NavBarLink';
|
|
11
|
+
import NavToggle from './NavToggle';
|
|
12
|
+
|
|
13
|
+
import { INavBarProps } from './types';
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* UI Component that shows the navigation bar
|
|
17
|
+
*/
|
|
18
|
+
export const NavBar = ({ items }: INavBarProps) => {
|
|
19
|
+
const toggleId = useId();
|
|
20
|
+
const theme = useTheme();
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<NavBarBase>
|
|
24
|
+
<input type="checkbox" id={toggleId} />
|
|
25
|
+
|
|
26
|
+
<NavToggle htmlFor={toggleId} />
|
|
27
|
+
|
|
28
|
+
<NavBarWrapper>
|
|
29
|
+
<NavBarList>
|
|
30
|
+
{items.map(({ path, iconName }) => (
|
|
31
|
+
<NavBarItem key={path}>
|
|
32
|
+
<NavBarLink to={'/' + path}>
|
|
33
|
+
<Icon name={iconName} color={theme.colors.grey} />
|
|
34
|
+
</NavBarLink>
|
|
35
|
+
</NavBarItem>
|
|
36
|
+
))}
|
|
37
|
+
</NavBarList>
|
|
38
|
+
</NavBarWrapper>
|
|
39
|
+
</NavBarBase>
|
|
40
|
+
);
|
|
41
|
+
};
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import styled from '@emotion/styled';
|
|
2
|
-
|
|
3
|
-
const NavBarBase = styled.nav`
|
|
4
|
-
align-items: center;
|
|
5
|
-
justify-content: center;
|
|
6
|
-
|
|
7
|
-
z-index: 9999;
|
|
8
|
-
|
|
9
|
-
color: ${({ theme }) => theme.colors.greyLighter};
|
|
10
|
-
|
|
11
|
-
input[type='checkbox'] {
|
|
12
|
-
display: none;
|
|
13
|
-
|
|
14
|
-
&:checked {
|
|
15
|
-
& ~ div:first-of-type {
|
|
16
|
-
background-color: #dee1ec;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
& ~ div:nth-of-type(2) {
|
|
20
|
-
transform: translateY(0);
|
|
21
|
-
border-radius: 12px 12px 0 0;
|
|
22
|
-
height: calc(100vh - 60px);
|
|
23
|
-
|
|
24
|
-
${({ theme }) => theme.mediaQueries.lg} {
|
|
25
|
-
border-radius: 0;
|
|
26
|
-
height: 100vh;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
${({ theme }) => theme.mediaQueries.lg} {
|
|
33
|
-
display: flex;
|
|
34
|
-
|
|
35
|
-
top: 0;
|
|
36
|
-
|
|
37
|
-
border-radius: 0;
|
|
38
|
-
|
|
39
|
-
button {
|
|
40
|
-
display: none;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
`;
|
|
44
|
-
|
|
45
|
-
export default NavBarBase;
|
|
1
|
+
import styled from '@emotion/styled';
|
|
2
|
+
|
|
3
|
+
const NavBarBase = styled.nav`
|
|
4
|
+
align-items: center;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
|
|
7
|
+
z-index: 9999;
|
|
8
|
+
|
|
9
|
+
color: ${({ theme }) => theme.colors.greyLighter};
|
|
10
|
+
|
|
11
|
+
input[type='checkbox'] {
|
|
12
|
+
display: none;
|
|
13
|
+
|
|
14
|
+
&:checked {
|
|
15
|
+
& ~ div:first-of-type {
|
|
16
|
+
background-color: #dee1ec;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
& ~ div:nth-of-type(2) {
|
|
20
|
+
transform: translateY(0);
|
|
21
|
+
border-radius: 12px 12px 0 0;
|
|
22
|
+
height: calc(100vh - 60px);
|
|
23
|
+
|
|
24
|
+
${({ theme }) => theme.mediaQueries.lg} {
|
|
25
|
+
border-radius: 0;
|
|
26
|
+
height: 100vh;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
${({ theme }) => theme.mediaQueries.lg} {
|
|
33
|
+
display: flex;
|
|
34
|
+
|
|
35
|
+
top: 0;
|
|
36
|
+
|
|
37
|
+
border-radius: 0;
|
|
38
|
+
|
|
39
|
+
button {
|
|
40
|
+
display: none;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
`;
|
|
44
|
+
|
|
45
|
+
export default NavBarBase;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import styled from '@emotion/styled';
|
|
2
|
-
|
|
3
|
-
const NavBarItem = styled.li`
|
|
4
|
-
display: flex;
|
|
5
|
-
flex: 1 1 100%;
|
|
6
|
-
|
|
7
|
-
align-items: center;
|
|
8
|
-
justify-content: center;
|
|
9
|
-
|
|
10
|
-
height: 65px;
|
|
11
|
-
`;
|
|
12
|
-
|
|
13
|
-
export default NavBarItem;
|
|
1
|
+
import styled from '@emotion/styled';
|
|
2
|
+
|
|
3
|
+
const NavBarItem = styled.li`
|
|
4
|
+
display: flex;
|
|
5
|
+
flex: 1 1 100%;
|
|
6
|
+
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
|
|
10
|
+
height: 65px;
|
|
11
|
+
`;
|
|
12
|
+
|
|
13
|
+
export default NavBarItem;
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import styled from '@emotion/styled';
|
|
2
|
-
import { NavLink } from 'react-router-dom';
|
|
3
|
-
|
|
4
|
-
const NavBarLink = styled(NavLink)`
|
|
5
|
-
cursor: pointer;
|
|
6
|
-
|
|
7
|
-
&:not(.active):hover {
|
|
8
|
-
svg {
|
|
9
|
-
filter: ${({ theme }) =>
|
|
10
|
-
`drop-shadow(-4px 4px 14px ${theme.colors.white})`};
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&.active {
|
|
15
|
-
cursor: default;
|
|
16
|
-
backdrop-filter: blur(0);
|
|
17
|
-
filter: drop-shadow(-4px 4px 14px ${({ theme }) => theme.colors.white});
|
|
18
|
-
color: ${({ theme }) => theme.colors.white};
|
|
19
|
-
|
|
20
|
-
svg {
|
|
21
|
-
filter: drop-shadow(-4px 4px 14px ${({ theme }) => theme.colors.white});
|
|
22
|
-
|
|
23
|
-
& path {
|
|
24
|
-
fill: ${({ theme }) => theme.colors.white};
|
|
25
|
-
}
|
|
26
|
-
& circle {
|
|
27
|
-
stroke: ${({ theme }) => theme.colors.white};
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
`;
|
|
32
|
-
|
|
33
|
-
export default NavBarLink;
|
|
1
|
+
import styled from '@emotion/styled';
|
|
2
|
+
import { NavLink } from 'react-router-dom';
|
|
3
|
+
|
|
4
|
+
const NavBarLink = styled(NavLink)`
|
|
5
|
+
cursor: pointer;
|
|
6
|
+
|
|
7
|
+
&:not(.active):hover {
|
|
8
|
+
svg {
|
|
9
|
+
filter: ${({ theme }) =>
|
|
10
|
+
`drop-shadow(-4px 4px 14px ${theme.colors.white})`};
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.active {
|
|
15
|
+
cursor: default;
|
|
16
|
+
backdrop-filter: blur(0);
|
|
17
|
+
filter: drop-shadow(-4px 4px 14px ${({ theme }) => theme.colors.white});
|
|
18
|
+
color: ${({ theme }) => theme.colors.white};
|
|
19
|
+
|
|
20
|
+
svg {
|
|
21
|
+
filter: drop-shadow(-4px 4px 14px ${({ theme }) => theme.colors.white});
|
|
22
|
+
|
|
23
|
+
& path {
|
|
24
|
+
fill: ${({ theme }) => theme.colors.white};
|
|
25
|
+
}
|
|
26
|
+
& circle {
|
|
27
|
+
stroke: ${({ theme }) => theme.colors.white};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
`;
|
|
32
|
+
|
|
33
|
+
export default NavBarLink;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import styled from '@emotion/styled';
|
|
2
|
-
|
|
3
|
-
const NavBarList = styled.ul`
|
|
4
|
-
display: flex;
|
|
5
|
-
flex-wrap: wrap;
|
|
6
|
-
|
|
7
|
-
list-style: none;
|
|
8
|
-
|
|
9
|
-
align-items: center;
|
|
10
|
-
align-self: center;
|
|
11
|
-
height: 486px;
|
|
12
|
-
|
|
13
|
-
padding: 0;
|
|
14
|
-
`;
|
|
15
|
-
|
|
16
|
-
export default NavBarList;
|
|
1
|
+
import styled from '@emotion/styled';
|
|
2
|
+
|
|
3
|
+
const NavBarList = styled.ul`
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-wrap: wrap;
|
|
6
|
+
|
|
7
|
+
list-style: none;
|
|
8
|
+
|
|
9
|
+
align-items: center;
|
|
10
|
+
align-self: center;
|
|
11
|
+
height: 486px;
|
|
12
|
+
|
|
13
|
+
padding: 0;
|
|
14
|
+
`;
|
|
15
|
+
|
|
16
|
+
export default NavBarList;
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import styled from '@emotion/styled';
|
|
2
|
-
|
|
3
|
-
const NavBarWrapper = styled.div`
|
|
4
|
-
position: absolute;
|
|
5
|
-
|
|
6
|
-
top: 60px;
|
|
7
|
-
left: 0;
|
|
8
|
-
|
|
9
|
-
width: 56px;
|
|
10
|
-
|
|
11
|
-
border-radius: 12px 12px 0 0;
|
|
12
|
-
background: linear-gradient(
|
|
13
|
-
108.3deg,
|
|
14
|
-
${({ theme }) => theme.colors.greyDarker} -0.36%,
|
|
15
|
-
${({ theme }) => theme.colors.greyDarker} 100%
|
|
16
|
-
);
|
|
17
|
-
|
|
18
|
-
transform: translateY(-200vh);
|
|
19
|
-
transition: height 475ms ease, transform 450ms ease, border-radius 450ms ease;
|
|
20
|
-
|
|
21
|
-
${({ theme }) => theme.mediaQueries.md} {
|
|
22
|
-
width: 64px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
${({ theme }) => theme.mediaQueries.xlg} {
|
|
26
|
-
display: flex;
|
|
27
|
-
position: fixed;
|
|
28
|
-
|
|
29
|
-
top: 0;
|
|
30
|
-
|
|
31
|
-
width: 94px;
|
|
32
|
-
height: 100vh;
|
|
33
|
-
|
|
34
|
-
border-radius: 0;
|
|
35
|
-
|
|
36
|
-
transform: translateY(0);
|
|
37
|
-
}
|
|
38
|
-
`;
|
|
39
|
-
|
|
40
|
-
export default NavBarWrapper;
|
|
1
|
+
import styled from '@emotion/styled';
|
|
2
|
+
|
|
3
|
+
const NavBarWrapper = styled.div`
|
|
4
|
+
position: absolute;
|
|
5
|
+
|
|
6
|
+
top: 60px;
|
|
7
|
+
left: 0;
|
|
8
|
+
|
|
9
|
+
width: 56px;
|
|
10
|
+
|
|
11
|
+
border-radius: 12px 12px 0 0;
|
|
12
|
+
background: linear-gradient(
|
|
13
|
+
108.3deg,
|
|
14
|
+
${({ theme }) => theme.colors.greyDarker} -0.36%,
|
|
15
|
+
${({ theme }) => theme.colors.greyDarker} 100%
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
transform: translateY(-200vh);
|
|
19
|
+
transition: height 475ms ease, transform 450ms ease, border-radius 450ms ease;
|
|
20
|
+
|
|
21
|
+
${({ theme }) => theme.mediaQueries.md} {
|
|
22
|
+
width: 64px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
${({ theme }) => theme.mediaQueries.xlg} {
|
|
26
|
+
display: flex;
|
|
27
|
+
position: fixed;
|
|
28
|
+
|
|
29
|
+
top: 0;
|
|
30
|
+
|
|
31
|
+
width: 94px;
|
|
32
|
+
height: 100vh;
|
|
33
|
+
|
|
34
|
+
border-radius: 0;
|
|
35
|
+
|
|
36
|
+
transform: translateY(0);
|
|
37
|
+
}
|
|
38
|
+
`;
|
|
39
|
+
|
|
40
|
+
export default NavBarWrapper;
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
import { css } from '@emotion/react';
|
|
2
|
-
|
|
3
|
-
import NavToggleWrapper from './NavToggleWrapper';
|
|
4
|
-
|
|
5
|
-
const NavToggle = ({ htmlFor }: { htmlFor: string }) => (
|
|
6
|
-
<NavToggleWrapper>
|
|
7
|
-
<label
|
|
8
|
-
htmlFor={htmlFor}
|
|
9
|
-
css={css`
|
|
10
|
-
cursor: pointer;
|
|
11
|
-
|
|
12
|
-
height: 20px;
|
|
13
|
-
width: 20px;
|
|
14
|
-
|
|
15
|
-
transform: scale(-1, 1);
|
|
16
|
-
|
|
17
|
-
span {
|
|
18
|
-
height: 2px;
|
|
19
|
-
width: 100%;
|
|
20
|
-
background: black;
|
|
21
|
-
display: block;
|
|
22
|
-
margin: 3px 0;
|
|
23
|
-
|
|
24
|
-
&:nth-of-type(2) {
|
|
25
|
-
width: 80%;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
`}>
|
|
29
|
-
<span></span>
|
|
30
|
-
<span></span>
|
|
31
|
-
<span></span>
|
|
32
|
-
</label>
|
|
33
|
-
</NavToggleWrapper>
|
|
34
|
-
);
|
|
35
|
-
|
|
36
|
-
export default NavToggle;
|
|
1
|
+
import { css } from '@emotion/react';
|
|
2
|
+
|
|
3
|
+
import NavToggleWrapper from './NavToggleWrapper';
|
|
4
|
+
|
|
5
|
+
const NavToggle = ({ htmlFor }: { htmlFor: string }) => (
|
|
6
|
+
<NavToggleWrapper>
|
|
7
|
+
<label
|
|
8
|
+
htmlFor={htmlFor}
|
|
9
|
+
css={css`
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
|
|
12
|
+
height: 20px;
|
|
13
|
+
width: 20px;
|
|
14
|
+
|
|
15
|
+
transform: scale(-1, 1);
|
|
16
|
+
|
|
17
|
+
span {
|
|
18
|
+
height: 2px;
|
|
19
|
+
width: 100%;
|
|
20
|
+
background: black;
|
|
21
|
+
display: block;
|
|
22
|
+
margin: 3px 0;
|
|
23
|
+
|
|
24
|
+
&:nth-of-type(2) {
|
|
25
|
+
width: 80%;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
`}>
|
|
29
|
+
<span></span>
|
|
30
|
+
<span></span>
|
|
31
|
+
<span></span>
|
|
32
|
+
</label>
|
|
33
|
+
</NavToggleWrapper>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default NavToggle;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import styled from '@emotion/styled';
|
|
2
|
-
|
|
3
|
-
const NavToggleWrapper = styled.div`
|
|
4
|
-
display: flex;
|
|
5
|
-
flex-wrap: wrap;
|
|
6
|
-
align-items: center;
|
|
7
|
-
justify-content: center;
|
|
8
|
-
|
|
9
|
-
border: none;
|
|
10
|
-
border-radius: 25px;
|
|
11
|
-
background: transparent;
|
|
12
|
-
|
|
13
|
-
height: 36px;
|
|
14
|
-
width: 36px;
|
|
15
|
-
|
|
16
|
-
${({ theme }) => theme.mediaQueries.lg} {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
`;
|
|
20
|
-
|
|
21
|
-
export default NavToggleWrapper;
|
|
1
|
+
import styled from '@emotion/styled';
|
|
2
|
+
|
|
3
|
+
const NavToggleWrapper = styled.div`
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-wrap: wrap;
|
|
6
|
+
align-items: center;
|
|
7
|
+
justify-content: center;
|
|
8
|
+
|
|
9
|
+
border: none;
|
|
10
|
+
border-radius: 25px;
|
|
11
|
+
background: transparent;
|
|
12
|
+
|
|
13
|
+
height: 36px;
|
|
14
|
+
width: 36px;
|
|
15
|
+
|
|
16
|
+
${({ theme }) => theme.mediaQueries.lg} {
|
|
17
|
+
display: none;
|
|
18
|
+
}
|
|
19
|
+
`;
|
|
20
|
+
|
|
21
|
+
export default NavToggleWrapper;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { NavBar as default } from './NavBar';
|
|
2
|
-
export * from './types';
|
|
1
|
+
export { NavBar as default } from './NavBar';
|
|
2
|
+
export * from './types';
|