@ssa-ui-kit/widgets 0.0.14-alpha → 0.0.15-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/customTest.tsx +35 -35
- package/dist/components/AccountBalance/WithLink.d.ts +2 -1
- 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 +82 -82
- package/src/components/AccountBalance/AccountBalance.stories.tsx +35 -35
- package/src/components/AccountBalance/AccountBalance.tsx +63 -63
- package/src/components/AccountBalance/BalancePieChart.tsx +77 -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 +31 -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 +51 -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 +28 -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/storybook-static/0.19f2e251.iframe.bundle.js +1 -0
- package/storybook-static/{497.7e0c2fc7.iframe.bundle.js → 106.f1e6d14d.iframe.bundle.js} +4 -4
- package/storybook-static/106.f1e6d14d.iframe.bundle.js.map +1 -0
- package/storybook-static/{sb-manager/GlobalScrollAreaStyles-4LLX2B3H-DOBSPBNW.js → 162.50e9b926.iframe.bundle.js} +1 -7
- package/storybook-static/291.c8585ee9.iframe.bundle.js +1 -0
- package/storybook-static/293.c50861da.iframe.bundle.js +2 -0
- package/storybook-static/293.c50861da.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/36.713e1566.iframe.bundle.js +1 -0
- package/storybook-static/460.8dc4e7c6.iframe.bundle.js +402 -0
- package/storybook-static/{906.a25e1330.iframe.bundle.js.LICENSE.txt → 460.8dc4e7c6.iframe.bundle.js.LICENSE.txt} +2 -0
- package/storybook-static/460.8dc4e7c6.iframe.bundle.js.map +1 -0
- package/storybook-static/576.98c3eb27.iframe.bundle.js +1 -0
- package/storybook-static/{781.3faed4b1.iframe.bundle.js → 696.e559304f.iframe.bundle.js} +2 -2
- package/storybook-static/710.ab631936.iframe.bundle.js +1 -0
- package/storybook-static/829.7385f99b.iframe.bundle.js +139 -0
- package/storybook-static/829.7385f99b.iframe.bundle.js.map +1 -0
- package/storybook-static/834.04cdfc87.iframe.bundle.js +1 -0
- package/storybook-static/945.ddb2ee2f.iframe.bundle.js +1 -0
- package/storybook-static/components-Activity-Activity-stories.107a3fa3.iframe.bundle.js +1 -0
- package/storybook-static/components-Bmi-Bmi-stories.b8c54168.iframe.bundle.js +1 -0
- package/storybook-static/components-Calories-Calories-stories.8851a637.iframe.bundle.js +1 -0
- package/storybook-static/components-CardList-CardList-stories.963f2911.iframe.bundle.js +1 -0
- package/storybook-static/components-HeartRate-HeartRate-stories.f9844316.iframe.bundle.js +1 -0
- package/storybook-static/components-ListGoals-ListGoals-stories.ca994275.iframe.bundle.js +1 -0
- package/storybook-static/components-MealNutrients-MealNutrients-stories.1850ecb0.iframe.bundle.js +1 -0
- package/storybook-static/components-MealPlanner-MealPlanner-stories.542c85fc.iframe.bundle.js +1 -0
- package/storybook-static/components-NavBar-NavBar-stories.73f09876.iframe.bundle.js +1 -0
- package/storybook-static/components-ProgressInfo-ProgressInfo-stories.f6b5466e.iframe.bundle.js +1 -0
- package/storybook-static/components-StepsCounter-StepsCounter-stories.967e384f.iframe.bundle.js +1 -0
- package/storybook-static/{components-UpcomingWorkouts-UpcomingWorkouts-stories.fab18fcf.iframe.bundle.js → components-UpcomingWorkouts-UpcomingWorkouts-stories.ba735508.iframe.bundle.js} +1 -1
- package/storybook-static/components-WaterConsume-WaterConsume-stories.4b5e8cb5.iframe.bundle.js +1 -0
- package/storybook-static/iframe.html +4 -4
- package/storybook-static/index.json +1 -1
- package/storybook-static/main.912c7e67.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/runtime~main.e664d5e5.iframe.bundle.js +1 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +5 -5
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +51 -49
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.map +3 -3
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js +11 -11
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/links-0/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/links-0/manager-bundle.js.map +3 -3
- package/storybook-static/sb-manager/GlobalScrollAreaStyles-DZEYMYDM-UAEZM2KF.js +7 -0
- package/storybook-static/sb-manager/OverlayScrollbars-OGE3XJTA-T3S33YR7.js +1 -0
- package/storybook-static/sb-manager/WithTooltip-I4CCNYWD-ZW5IOTVO.js +1 -0
- package/storybook-static/sb-manager/{chunk-DP4DR4LA.js → chunk-3FAXWWKG.js} +1 -1
- package/storybook-static/sb-manager/{chunk-6KNXZZZ5.js → chunk-AA6TEL5N.js} +1 -1
- package/storybook-static/sb-manager/{chunk-SJD7EFYL.js → chunk-AM2ZNZZH.js} +1 -1
- package/storybook-static/sb-manager/chunk-AS2AMEUR.js +1 -0
- package/storybook-static/sb-manager/chunk-FPTBIX6P.js +403 -0
- package/storybook-static/sb-manager/{chunk-V7GYLJLR.js → chunk-IPZYHIL3.js} +2 -2
- package/storybook-static/sb-manager/chunk-QPL63VNK.js +1 -0
- package/storybook-static/sb-manager/{chunk-JSPL73I3.js → chunk-R5BIZIS3.js} +1 -1
- package/storybook-static/sb-manager/{formatter-6736J7QO-TGL2ZGQC.js → formatter-OJ5LH2CX-IQX6U4TO.js} +2 -2
- package/storybook-static/sb-manager/globals.js +1 -1
- package/storybook-static/sb-manager/index.js +1 -1
- package/storybook-static/sb-manager/runtime.js +1 -1
- package/storybook-static/sb-manager/syntaxhighlighter-SIPZPD4I-WOB5MYBW.js +1 -0
- package/storybook-static/sb-preview/runtime.js +4 -4
- package/storybook-static/stories.json +1 -1
- package/tsbuildcache +1 -1
- package/tsconfig.build.json +44 -44
- package/tsconfig.json +17 -17
- package/tsconfig.tsbuildinfo +1 -1
- 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.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/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/906.a25e1330.iframe.bundle.js +0 -402
- 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-WaterConsume-WaterConsume-stories.5dae388e.iframe.bundle.js +0 -1
- package/storybook-static/main.c21822d8.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.b259f462.iframe.bundle.js +0 -1
- 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/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-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-UBXIQABM.js +0 -447
- package/storybook-static/sb-manager/chunk-Z4NRYNHR.js +0 -1
- package/storybook-static/sb-manager/syntaxhighlighter-4OVWVELQ-5IZ45DZY.js +0 -1
- /package/storybook-static/{781.3faed4b1.iframe.bundle.js.LICENSE.txt → 696.e559304f.iframe.bundle.js.LICENSE.txt} +0 -0
package/storybook-static/components-WaterConsume-WaterConsume-stories.5dae388e.iframe.bundle.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_ssa_ui_kit_widgets=self.webpackChunk_ssa_ui_kit_widgets||[]).push([[641],{"./src/components/WaterConsume/WaterConsume.stories.tsx":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{Default:function(){return Default},__namedExportsOrder:function(){return __namedExportsOrder},default:function(){return WaterConsume_stories}});var emotion_react_browser_esm=__webpack_require__("../../node_modules/.pnpm/@emotion+react@11.11.1_@types+react@18.2.8_react@18.2.0/node_modules/@emotion/react/dist/emotion-react.browser.esm.js"),emotion_element_c39617d8_browser_esm=__webpack_require__("../../node_modules/.pnpm/@emotion+react@11.11.1_@types+react@18.2.8_react@18.2.0/node_modules/@emotion/react/dist/emotion-element-c39617d8.browser.esm.js"),dist=__webpack_require__("../core/dist/index.js");var _ref2={name:"7mn33w",styles:"flex:1 1 auto;margin-left:11.5px"};const CustomConnector=({active:active,completed:completed})=>{const theme=(0,emotion_element_c39617d8_browser_esm.u)();return(0,emotion_react_browser_esm.jsx)("div",{css:_ref2},(0,emotion_react_browser_esm.jsx)("span",{css:(0,emotion_react_browser_esm.css)("display:block;border-color:",active||completed?theme.colors.blueLightLighter:theme.colors.greyDarker60,";border-left-style:dashed;border-left-width:1px;min-height:20px;","","")}))};CustomConnector.displayName="CustomConnector";const CustomStep=props=>{const{active:active,completed:completed}=props,theme=(0,emotion_element_c39617d8_browser_esm.u)();return(0,emotion_react_browser_esm.jsx)("div",{css:(0,emotion_react_browser_esm.css)("width:6px;height:6px;background-color:",active||completed?theme.colors.blueLightLighter:theme.colors.greyDarker60,";border-radius:50%;","","")})};CustomStep.displayName="CustomStep";var _ref={name:"1paxtit",styles:"box-shadow:0 10px 40px rgba(42, 48, 57, 0.08);border-radius:20px"},_ref3={name:"1n5h93v",styles:"width:100%;justify-content:center;align-items:stretch"};const WaterConsume=({minValue:minValue=0,maxValue:maxValue=100,currentValue:currentValue,active:active,steps:steps,unit:unit="%"})=>{const theme=(0,emotion_element_c39617d8_browser_esm.u)(),currentPercentage=Math.round(100*currentValue/maxValue);return(0,emotion_react_browser_esm.jsx)(dist.Card,{css:_ref},(0,emotion_react_browser_esm.jsx)(dist.CardHeader,{icon:(0,emotion_react_browser_esm.jsx)(dist.ResponsiveImage,{css:(0,emotion_react_browser_esm.css)({filter:`drop-shadow(0px 5px 5px ${theme.colors.grey})`},"",""),srcSet:"https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fwater%2Fwater_64.png?alt=media&token=2abf9f9c-2159-4235-856c-f054783a007d 64w, https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fwater%2Fwater_48.png?alt=media&token=abc1e619-940a-4fc0-9f83-ef0a998464f2 48w",sizes:"(min-width: 1440px) 64px, 48px",src:"https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fwater%2Fwater_48.png?alt=media&token=abc1e619-940a-4fc0-9f83-ef0a998464f2",alt:"Water"})},(0,emotion_react_browser_esm.jsx)(dist.Typography,{variant:"h6",weight:"bold"},"Water")),(0,emotion_react_browser_esm.jsx)(dist.CardContent,{css:_ref3},(0,emotion_react_browser_esm.jsx)("div",{style:{fontSize:14,marginRight:"15px"}},(0,emotion_react_browser_esm.jsx)(dist.ProgressVertical,null,(0,emotion_react_browser_esm.jsx)(dist.ProgressLegend,null,(0,emotion_react_browser_esm.jsx)(dist.ProgressLegendItem,{position:"end",percentage:100},(0,emotion_react_browser_esm.jsx)("span",{style:{textAlign:"right",display:"block",paddingRight:6}},`${maxValue}${unit}`)),(0,emotion_react_browser_esm.jsx)(dist.ProgressLegendItem,{position:"current",percentage:currentPercentage},(0,emotion_react_browser_esm.jsx)("span",{style:{textAlign:"right",display:"block",paddingRight:6}},`${currentValue}${unit}`)),(0,emotion_react_browser_esm.jsx)(dist.ProgressLegendItem,{position:"start",percentage:0},(0,emotion_react_browser_esm.jsx)("span",{style:{textAlign:"right",display:"block",paddingRight:6}},`${minValue}${unit}`))),(0,emotion_react_browser_esm.jsx)(dist.ProgressBar,{percentage:currentPercentage,color:"blueLight"}))),(0,emotion_react_browser_esm.jsx)(dist.Stepper,{color:theme.colors.blueLight,activeStep:active,orientation:"vertical",inverted:!0,sx:{rowGap:0}},steps.map(((step,index)=>(0,emotion_react_browser_esm.jsx)(dist.Step,{key:index,Connector:CustomConnector},(0,emotion_react_browser_esm.jsx)(dist.StepLabel,{StepIcon:CustomStep},(0,emotion_react_browser_esm.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:9}},step.caption),(0,emotion_react_browser_esm.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:9,fontWeight:700}},step.title))))))))};WaterConsume.displayName="WaterConsume";try{WaterConsume.displayName="WaterConsume",WaterConsume.__docgenInfo={description:"\nUI Component shows the water consumption objective of the user",displayName:"WaterConsume",props:{minValue:{defaultValue:{value:"0"},description:"",name:"minValue",required:!1,type:{name:"number"}},maxValue:{defaultValue:{value:"100"},description:"",name:"maxValue",required:!1,type:{name:"number"}},unit:{defaultValue:{value:"%"},description:"",name:"unit",required:!1,type:{name:"string"}},active:{defaultValue:null,description:"",name:"active",required:!0,type:{name:"number"}},currentValue:{defaultValue:null,description:"",name:"currentValue",required:!0,type:{name:"number"}},steps:{defaultValue:null,description:"",name:"steps",required:!0,type:{name:"{ title: string; caption: string; }[]"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/WaterConsume/WaterConsume.tsx#WaterConsume"]={docgenInfo:WaterConsume.__docgenInfo,name:"WaterConsume",path:"src/components/WaterConsume/WaterConsume.tsx#WaterConsume"})}catch(__react_docgen_typescript_loader_error){}var WaterConsume_stories={title:"Widgets/WaterConsume",component:WaterConsume};const Default={args:{minValue:0,maxValue:3,currentValue:2.7,unit:"L",active:3,steps:[{title:"600ml",caption:"2pm - 4pm"},{title:"500ml",caption:"11am - 2pm"},{title:"1000ml",caption:"9am - 11am"},{title:"700ml",caption:"6am - 8am"}]}};Default.parameters={...Default.parameters,docs:{...Default.parameters?.docs,source:{originalSource:"{\n args: {\n minValue: 0,\n maxValue: 3,\n currentValue: 2.7,\n unit: 'L',\n active: 3,\n steps: [{\n title: '600ml',\n caption: '2pm - 4pm'\n }, {\n title: '500ml',\n caption: '11am - 2pm'\n }, {\n title: '1000ml',\n caption: '9am - 11am'\n }, {\n title: '700ml',\n caption: '6am - 8am'\n }]\n }\n}",...Default.parameters?.docs?.source}}};const __namedExportsOrder=["Default"]}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(self.webpackChunk_ssa_ui_kit_widgets=self.webpackChunk_ssa_ui_kit_widgets||[]).push([[179],{"../core/dist/index.js":function(module,__unused_webpack_exports,__webpack_require__){var e,t,n;self,module.exports=(e=__webpack_require__("../../node_modules/.pnpm/@emotion+react@11.11.1_@types+react@18.2.8_react@18.2.0/node_modules/@emotion/react/dist/emotion-react.browser.esm.js"),t=__webpack_require__("../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),n=__webpack_require__("../../node_modules/.pnpm/react-dom@18.2.0_react@18.2.0/node_modules/react-dom/index.js"),function(){var r,o,i={94:function(e,t,n){var r;self,e.exports=(r=n(156),function(){var e={468:function(e){self,e.exports=function(){"use strict";var e={d:function(t,n){for(var r in n)e.o(n,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:n[r]})},o:function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r:function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{assocPath:function(){return f},callAll:function(){return r},dateFormatters:function(){return n},dissocPath:function(){return g},generateRange:function(){return p},mapObjIndexed:function(){return u},path:function(){return h},throttle:function(){return o}});var n={};e.r(n),e.d(n,{formatDate:function(){return a},formatDayOfWeek:function(){return l},formatTime:function(){return s},printDayOfTheWeek:function(){return c}});const r=(...e)=>(...t)=>e.forEach((e=>e?.(...t))),o=(e,t)=>{let n=!1,r=null,o=null;return[function i(...s){n?r=s:(n=!0,e(...s),o=setTimeout((()=>{n=!1,r&&(i(...r),r=null)}),t))},function(){o&&clearTimeout(o)}]},i=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],s=e=>new Date(e).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit"}),l=e=>i[new Date(e).getDay()],a=e=>new Date(e).toLocaleDateString("en-US",{day:"2-digit",month:"short"}),c=e=>{switch(e){case 0:return"Sun";case 1:return"Mon";case 2:return"Tue";case 3:return"Wed";case 4:return"Thu";case 5:return"Fri";case 6:return"Sat"}},u=(e,t)=>Object.keys(t).reduce(((n,r)=>(n[r]=e(t[r],r,t),n)),{}),d=(e,t,n)=>{for(let r=t;r<n;++r)e.push(r)};var p=(e,t)=>{if(null==e||!Number.isInteger(e))throw new Error("Pages count should be an integer");if(e<=0)return[];let n=[1];if(1===e)return n;if(null!=t&&!Number.isInteger(t))throw new Error("Selected page should be an integer");if(null!=t&&(t<1||t>e))throw new Error(`Selected page ${t} is out of range`);if(t&&t>2){const r=((e,t)=>{const n=[];return t!==e&&n.push(t),t>1&&n.unshift(t-1),t+1<e&&n.push(t+1),n})(e,t),[o,,i]=r;o-2>1?n.push(-1):d(n,2,o),n=n.concat(r),e-i>2?n.push(-1):d(n,i+1,e)}else e<=5?d(n,2,e):n.push(2,3,-1);return n.push(e),n};const f=([e,...t],n)=>r=>JSON.parse(JSON.stringify({...r,[e]:t.length?f(t,n)(r[e]):n})),g=e=>t=>{const n=JSON.parse(JSON.stringify(t));return e.reduce(((t,n,r)=>(r===e.length-1&&delete t[n],t[n])),n),n},h=e=>t=>e.reduce(((e,t)=>e?.[t]),t);return t}()},156:function(e){"use strict";e.exports=r}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};return function(){"use strict";n.r(o),n.d(o,{useApi:function(){return t},useClickOutside:function(){return i},usePaginationRange:function(){return l},useWindowSize:function(){return r}});var e=n(156);function t(t,n){const[r,o]=(0,e.useState)(!1),[i,s]=(0,e.useState)(null),[l,a]=(0,e.useState)(n);return{isLoading:r,error:i,data:l,query:async(...e)=>{o(!0),s(null);try{const n=await t(...e);a(n)}catch(e){s(e)}finally{o(!1)}}}}const r=()=>{const[t,n]=(0,e.useState)({width:window.innerWidth,height:window.innerHeight});return(0,e.useEffect)((()=>{function e(){n({width:window.innerWidth,height:window.innerHeight})}return window.addEventListener("resize",e),e(),()=>window.removeEventListener("resize",e)}),[]),t},i=(t,n)=>{const r=["mousedown","touchstart"];(0,e.useEffect)((()=>{const e=e=>{null==t.current||t.current.contains(e.target)||n(e)};return r.forEach((t=>document.addEventListener(t,e))),()=>r.forEach((t=>document.removeEventListener(t,e)))}),[t,n])};var s=n(468);const l=({pagesCount:t,selectedPage:n})=>(0,e.useMemo)((()=>(0,s.generateRange)(t,n)),[t,n])}(),o}())},468:function(e){self,e.exports=function(){"use strict";var e={d:function(t,n){for(var r in n)e.o(n,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:n[r]})},o:function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r:function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{assocPath:function(){return f},callAll:function(){return r},dateFormatters:function(){return n},dissocPath:function(){return g},generateRange:function(){return p},mapObjIndexed:function(){return u},path:function(){return h},throttle:function(){return o}});var n={};e.r(n),e.d(n,{formatDate:function(){return a},formatDayOfWeek:function(){return l},formatTime:function(){return s},printDayOfTheWeek:function(){return c}});const r=(...e)=>(...t)=>e.forEach((e=>e?.(...t))),o=(e,t)=>{let n=!1,r=null,o=null;return[function i(...s){n?r=s:(n=!0,e(...s),o=setTimeout((()=>{n=!1,r&&(i(...r),r=null)}),t))},function(){o&&clearTimeout(o)}]},i=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],s=e=>new Date(e).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit"}),l=e=>i[new Date(e).getDay()],a=e=>new Date(e).toLocaleDateString("en-US",{day:"2-digit",month:"short"}),c=e=>{switch(e){case 0:return"Sun";case 1:return"Mon";case 2:return"Tue";case 3:return"Wed";case 4:return"Thu";case 5:return"Fri";case 6:return"Sat"}},u=(e,t)=>Object.keys(t).reduce(((n,r)=>(n[r]=e(t[r],r,t),n)),{}),d=(e,t,n)=>{for(let r=t;r<n;++r)e.push(r)};var p=(e,t)=>{if(null==e||!Number.isInteger(e))throw new Error("Pages count should be an integer");if(e<=0)return[];let n=[1];if(1===e)return n;if(null!=t&&!Number.isInteger(t))throw new Error("Selected page should be an integer");if(null!=t&&(t<1||t>e))throw new Error(`Selected page ${t} is out of range`);if(t&&t>2){const r=((e,t)=>{const n=[];return t!==e&&n.push(t),t>1&&n.unshift(t-1),t+1<e&&n.push(t+1),n})(e,t),[o,,i]=r;o-2>1?n.push(-1):d(n,2,o),n=n.concat(r),e-i>2?n.push(-1):d(n,i+1,e)}else e<=5?d(n,2,e):n.push(2,3,-1);return n.push(e),n};const f=([e,...t],n)=>r=>JSON.parse(JSON.stringify({...r,[e]:t.length?f(t,n)(r[e]):n})),g=e=>t=>{const n=JSON.parse(JSON.stringify(t));return e.reduce(((t,n,r)=>(r===e.length-1&&delete t[n],t[n])),n),n},h=e=>t=>e.reduce(((e,t)=>e?.[t]),t);return t}()},435:function(t){"use strict";t.exports=e},156:function(e){"use strict";e.exports=t},111:function(e){"use strict";e.exports=n}},s={};function l(e){var t=s[e];if(void 0!==t)return t.exports;var n=s[e]={exports:{}};return i[e](n,n.exports,l),n.exports}l.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return l.d(t,{a:t}),t},o=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},l.t=function(e,t){if(1&t&&(e=this(e)),8&t)return e;if("object"==typeof e&&e){if(4&t&&e.__esModule)return e;if(16&t&&"function"==typeof e.then)return e}var n=Object.create(null);l.r(n);var i={};r=r||[null,o({}),o([]),o(o)];for(var s=2&t&&e;"object"==typeof s&&!~r.indexOf(s);s=o(s))Object.getOwnPropertyNames(s).forEach((function(t){i[t]=function(){return e[t]}}));return i.default=function(){return e},l.d(n,i),n},l.d=function(e,t){for(var n in t)l.o(t,n)&&!l.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},l.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},l.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};return function(){"use strict";l.r(a),l.d(a,{Accordion:function(){return le},AccordionContent:function(){return Y},AccordionGroup:function(){return W},AccordionGroupContext:function(){return N},AccordionGroupContextProvider:function(){return B},AccordionTitle:function(){return ie},Avatar:function(){return ce},Badge:function(){return fe},Button:function(){return Re},Card:function(){return Oe},CardContent:function(){return U},CardHeader:function(){return Te},Checkbox:function(){return Fe},ColorPicker:function(){return ze},Dropdown:function(){return Ot},DropdownOption:function(){return kt},Form:function(){return gl},FormAction:function(){return ml},FormCheckbox:function(){return mt},FormGroup:function(){return hl},FormRadioGroup:function(){return pl},Icon:function(){return re},Input:function(){return Ht},Label:function(){return Ie},LargeTab:function(){return Js},Modal:function(){return Bt},ModalContent:function(){return Gt},ModalContext:function(){return Nt},ModalDismissButton:function(){return Wt},ModalOpenButton:function(){return Kt},MultipleDropdown:function(){return Ri},MultipleDropdownNotification:function(){return Si},MultipleDropdownOptions:function(){return Mi},Popover:function(){return Uo},PopoverClose:function(){return Xo},PopoverContent:function(){return Ko},PopoverDescription:function(){return hi},PopoverHeading:function(){return mi},PopoverTrigger:function(){return bi},ProgressBar:function(){return Zi},ProgressChartTooltip:function(){return Fs},ProgressCircle:function(){return Wi},ProgressLegend:function(){return qi},ProgressLegendItem:function(){return Ui},ProgressVertical:function(){return Xi},Radio:function(){return cl},RadioGroup:function(){return dl},ResponsiveImage:function(){return fl},SimpleChartTooltip:function(){return Is},Step:function(){return as},StepLabel:function(){return gs},Stepper:function(){return Ji},Switch:function(){return vs},SwitchContext:function(){return ms},SwitchContextProvider:function(){return bs},Tab:function(){return Xs},TabBar:function(){return qs},TabBarContext:function(){return Ns},TabBarContextProvider:function(){return _s},Table:function(){return ys},TableBody:function(){return ks},TableCell:function(){return ws},TableHead:function(){return Cs},TableRow:function(){return Ls},Tag:function(){return el},TextField:function(){return ll},Textarea:function(){return nl},Tooltip:function(){return Es},TooltipContent:function(){return Ps},TooltipContentBase:function(){return Ts},TooltipTrigger:function(){return Rs},Typography:function(){return gi},Wrapper:function(){return ge},checkboxStyles:function(){return $e},globalStyles:function(){return e},iconsList:function(){return Q},mainTheme:function(){return r},styles:function(){return n},useSwitchContext:function(){return xs},useTabBarContext:function(){return Bs}});var e={};l.r(e),l.d(e,{blue:function(){return p},blueLight:function(){return f},blueLightDarker:function(){return g},green:function(){return c},pink:function(){return i},purple:function(){return d},turquoise:function(){return u},yellow:function(){return s}});var t={};l.r(t),l.d(t,{body1:function(){return oi},body2:function(){return ii},body3:function(){return si},bold:function(){return di},caption:function(){return li},gutter:function(){return pi},h1:function(){return Yo},h2:function(){return Jo},h3:function(){return Qo},h4:function(){return ei},h5:function(){return ti},h6:function(){return ni},lighter:function(){return ai},medium:function(){return ui},regular:function(){return ci},subtitle:function(){return ri}});var n={};l.r(n),l.d(n,{large:function(){return Zs},medium:function(){return Ds},small:function(){return As}});var r={colors:{white:"rgba(255, 255, 255, 1)",white80:"rgba(255, 255, 255, 0.8)",white60:"rgba(255, 255, 255, 0.6)",white30:"rgba(255, 255, 255, 0.3)",greyLighter:"rgba(238, 241, 247, 1)",greySelectedMenuItem:"rgba(222, 225, 236, 1)",greyFocused:"rgba(210, 212, 219, 1)",greyFocused40:"rgba(210, 212, 219, 0.4)",greyDropdownMain:"rgba(222, 224, 232, 1)",greyDropdownFocused:"rgba(128, 129, 131)",greyDropdownText:"rgba(21, 21, 21, 1)",greyArrowSidebar:"rgba(218, 219, 220)",grey:"rgba(195, 197, 204, 1)",grey20:"rgba(43, 45, 49, 0.2)",grey40:"rgba(43, 45, 49, 0.4)",greyShadow24:"rgba(93, 102, 112, 0.24)",greyDarker:"rgba(43, 45, 49, 1)",greyDarker60:"rgba(43, 45, 49, 0.6)",greyDarker14:"rgba(43, 45, 49, 0.14)",greyDark:"rgb(64, 72, 83)",greyDisabled:"rgba(85, 87, 90, 1)",greyButtonGradient:"rgba(77, 82, 87, 1)",greyButtonGradientLight:"rgba(94, 103, 114, 1)",greyBackground:"rgb(64, 68, 73)",greyBackgroundLight:"rgb(76, 84, 93)",greyShadow:"rgba(42, 48, 57, 0.08)",greyShadowHover:"rgba(93, 102, 112, 0.24)",greyOutline:"rgba(208,\t210,\t220, 1)",greyFilterIcon:"rgb(133, 137, 147)",greyCancelClearButton:"rgb(101, 101, 103)",redLighter:"rgba(242, 136, 142, 1)",redLighter40:"rgba(242, 136, 142, 0.4)",red:"rgba(235, 117, 86, 1)",red40:"rgba(235, 117, 86, 0.4)",greenLighter:"rgba(137, 217, 150, 1)",greenLighter20:"rgba(137, 217, 150, 0.2)",greenLighter40:"rgba(137, 217, 150, 0.4)",greenLighter60:"rgba(137, 217, 150, 0.6)",green:"rgba(82, 197, 135, 1)",green20:"rgba(82, 197, 135, 0.2)",green40:"rgba(82, 197, 135, 0.4)",green60:"rgba(82, 197, 135, 0.6)",pink:"rgba(240, 129, 107, 1)",pink20:"rgba(240, 129, 107, 0.2)",pinkLighter:"rgba(249, 153, 144, 1)",pinkLighter20:"rgba(249, 153, 144, 0.2)",pinkLighter40:"rgba(249, 153, 144, 0.4)",pinkShadow40:"rgba(236, 119, 91, 0.4)",yellow:"rgba(237, 153, 93, 1)",yellow20:"rgba(237, 153, 93, 0.2)",yellowLighter:"rgba(237, 186, 93, 1)",yellowLighter20:"rgba(237, 186, 93, 0.2)",yellowLighter40:"rgba(237, 186, 93, 0.4)",turquoise:"rgba(65, 187, 187, 1)",turquoise20:"rgba(65, 187, 187, 0.2)",turquoiseShadow40:"rgba(143, 207, 207, 0.4)",turquoiseLighter:"rgba(125, 203, 203, 1)",turquoiseLighter20:"rgba(125, 203, 203, 0.2)",turquoiseLighter40:"rgba(125, 203, 203, 0.4)",purple:"rgba(123, 71, 235, 1)",purple20:"rgba(123, 71, 235, 0.2)",purpleLighter:"rgba(160, 120, 245, 1)",purpleLighter20:"rgba(160, 120, 245, 0.2)",purpleLighter40:"rgba(160, 120, 245, 0.4)",purpleDark:"rgba(156, 122, 235, 1)",purpleDark40:"rgba(156, 122, 235, 0.4)",blue:"rgba(65, 120, 225, 1)",blue20:"rgba(65, 120, 225, 0.2)",blueDark:"rgba(36, 101, 227, 1)",blueLightDarker:"rgba(127, 159, 221)",blueDropdownWithSelectedItems:"rgba(236, 247, 255, 1)",blueDropdownWithSelectedItemsBorder:"rgba(166, 213, 244, 1)",blueLighter:"rgba(117, 153, 222, 1)",blueLighter20:"rgba(117, 153, 222, 0.2)",blueLighter40:"rgba(117, 153, 222, 0.4)",blueLight:"rgba(68, 179, 252, 1)",blueLight20:"rgba(68, 179, 252, 0.2)",blueLightDarker40:"rgba(127, 159, 221, 0.4)",blueLightLighter:"rgba(133, 199, 242, 1)",blueLightLighter20:"rgba(133, 199, 242, 0.2)",blueLightLighter40:"rgba(133, 199, 242, 0.4)",blueNotification:"rgba(0, 133, 226, 1)",blueNotification40:"rgba(0, 133, 226, 0.4)",blueButtonHoverGradientFrom:"rgb(72, 122, 218)",blueButtonHoverGradientTo:"rgb(14, 75, 193)",blueButtonActive:"rgb(7, 69, 189)"},mediaQueries:{xs:"@media screen and (max-width: 390px)",sm:"@media screen and (min-width: 390px)",md:"@media screen and (min-width: 900px)",lg:"@media screen and (min-width: 1440px)",xlg:"@media screen and (min-width: 1920px)"}},o=l(435);const i=e=>(0,o.css)("background-color:",e.colors.pink,";background:linear-gradient(\n 99.26deg,\n ",e.colors.pink,",\n ",e.colors.pinkLighter,"\n );box-shadow:-4px 4px 10px ",e.colors.pinkLighter40,";","",""),s=e=>(0,o.css)("background-color:",e.colors.yellow,";background:linear-gradient(\n 90deg,\n ",e.colors.yellow,",\n ",e.colors.yellowLighter,"\n );box-shadow:-4px 4px 10px ",e.colors.yellowLighter40,";","",""),c=e=>(0,o.css)("background-color:",e.colors.green,";background:linear-gradient(\n 295.98deg,\n ",e.colors.green,",\n ",e.colors.greenLighter,"\n );box-shadow:-4px 4px 10px ",e.colors.greenLighter40,";","",""),u=e=>(0,o.css)("background-color:",e.colors.turquoise,";background:linear-gradient(\n 116.22deg,\n ",e.colors.turquoise,",\n ",e.colors.turquoiseLighter,"\n );box-shadow:-4px 4px 10px ",e.colors.turquoiseLighter40,";","",""),d=e=>(0,o.css)("background-color:",e.colors.purple,";background:linear-gradient(\n 243.84deg,\n ",e.colors.purpleLighter,",\n ",e.colors.purple,"\n );box-shadow:-4px 4px 10px ",e.colors.purpleLighter40,";","",""),p=e=>(0,o.css)("background-color:",e.colors.blue,";background:linear-gradient(\n 90deg,\n ",e.colors.blue,",\n ",e.colors.blueLighter,"\n );box-shadow:-4px 4px 10px ",e.colors.blueLighter40,";","",""),f=e=>(0,o.css)("background-color:",e.colors.blueLight,";background:linear-gradient(\n 247.37deg,\n ",e.colors.blueLightLighter,",\n ",e.colors.blueLight,"\n );box-shadow:-4px 4px 10px ",e.colors.blueLightLighter40,";","",""),g=e=>(0,o.css)("background-color:",e.colors.blueLightDarker,";background:linear-gradient(\n 247.37deg,\n ",e.colors.blueDark,",\n ",e.colors.blueLightDarker,"\n );box-shadow:-4px 4px 10px ",e.colors.blueLightDarker40,";","","");function h(){return h=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},h.apply(this,arguments)}function m(){return m=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m.apply(this,arguments)}var x=l(156),b=l.t(x,2),v=l.n(x);function y(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var w=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,C=y((function(e){return w.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),L=function(e,t,n){var r=e.key+"-"+t.name;!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles)},k={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},j=/[A-Z]|^ms/g,M=/_EMO_([^_]+?)_([^]*?)_EMO_/g,S=function(e){return 45===e.charCodeAt(1)},E=function(e){return null!=e&&"boolean"!=typeof e},R=y((function(e){return S(e)?e:e.replace(j,"-$&").toLowerCase()})),O=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(M,(function(e,t,n){return A={name:t,styles:n,next:A},t}))}return 1===k[e]||S(e)||"number"!=typeof t||0===t?t:t+"px"};function T(e,t,n){if(null==n)return"";if(void 0!==n.__emotion_styles)return n;switch(typeof n){case"boolean":return"";case"object":if(1===n.anim)return A={name:n.name,styles:n.styles,next:A},n.name;if(void 0!==n.styles){var r=n.next;if(void 0!==r)for(;void 0!==r;)A={name:r.name,styles:r.styles,next:A},r=r.next;return n.styles+";"}return function(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o<n.length;o++)r+=T(e,t,n[o])+";";else for(var i in n){var s=n[i];if("object"!=typeof s)null!=t&&void 0!==t[s]?r+=i+"{"+t[s]+"}":E(s)&&(r+=R(i)+":"+O(i,s)+";");else if(!Array.isArray(s)||"string"!=typeof s[0]||null!=t&&void 0!==t[s[0]]){var l=T(e,t,s);switch(i){case"animation":case"animationName":r+=R(i)+":"+l+";";break;default:r+=i+"{"+l+"}"}}else for(var a=0;a<s.length;a++)E(s[a])&&(r+=R(i)+":"+O(i,s[a])+";")}return r}(e,t,n);case"function":if(void 0!==e){var o=A,i=n(e);return A=o,T(e,t,i)}}if(null==t)return n;var s=t[n];return void 0!==s?s:n}var A,D=/label:\s*([^\s;\n{]+)\s*(;|$)/g,Z=!!x.useInsertionEffect&&x.useInsertionEffect,z=Z||function(e){return e()},P=(Z||x.useLayoutEffect,C),I=function(e){return"theme"!==e},$=function(e){return"string"==typeof e&&e.charCodeAt(0)>96?P:I},V=function(e,t,n){var r;if(t){var o=t.shouldForwardProp;r=e.__emotion_forwardProp&&o?function(t){return e.__emotion_forwardProp(t)&&o(t)}:o}return"function"!=typeof r&&n&&(r=e.__emotion_forwardProp),r},F=function(e){var t=e.cache,n=e.serialized,r=e.isStringTag;return L(t,n,r),z((function(){return function(e,t,n){L(e,t,n);var r=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var o=t;do{e.insert(t===o?"."+r:"",o,e.sheet,!0),o=o.next}while(void 0!==o)}}(t,n,r)})),null},H=function e(t,n){var r,i,s=t.__emotion_real===t,l=s&&t.__emotion_base||t;void 0!==n&&(r=n.label,i=n.target);var a=V(t,n,s),c=a||$(l),u=!c("as");return function(){var d=arguments,p=s&&void 0!==t.__emotion_styles?t.__emotion_styles.slice(0):[];if(void 0!==r&&p.push("label:"+r+";"),null==d[0]||void 0===d[0].raw)p.push.apply(p,d);else{p.push(d[0][0]);for(var f=d.length,g=1;g<f;g++)p.push(d[g],d[0][g])}var h=(0,o.withEmotionCache)((function(e,t,n){var r,s,d,f,g=u&&e.as||l,h="",m=[],b=e;if(null==e.theme){for(var v in b={},e)b[v]=e[v];b.theme=x.useContext(o.ThemeContext)}"string"==typeof e.className?(r=t.registered,s=m,d=e.className,f="",d.split(" ").forEach((function(e){void 0!==r[e]?s.push(r[e]+";"):f+=e+" "})),h=f):null!=e.className&&(h=e.className+" ");var y=function(e,t,n){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var r=!0,o="";A=void 0;var i=e[0];null==i||void 0===i.raw?(r=!1,o+=T(n,t,i)):o+=i[0];for(var s=1;s<e.length;s++)o+=T(n,t,e[s]),r&&(o+=i[s]);D.lastIndex=0;for(var l,a="";null!==(l=D.exec(o));)a+="-"+l[1];var c=function(e){for(var t,n=0,r=0,o=e.length;o>=4;++r,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(o){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)}(o)+a;return{name:c,styles:o,next:A}}(p.concat(m),t.registered,b);h+=t.key+"-"+y.name,void 0!==i&&(h+=" "+i);var w=u&&void 0===a?$(g):c,C={};for(var L in e)u&&"as"===L||w(L)&&(C[L]=e[L]);return C.className=h,C.ref=n,x.createElement(x.Fragment,null,x.createElement(F,{cache:t,serialized:y,isStringTag:"string"==typeof g}),x.createElement(g,C))}));return h.displayName=void 0!==r?r:"Styled("+("string"==typeof l?l:l.displayName||l.name||"Component")+")",h.defaultProps=t.defaultProps,h.__emotion_real=h,h.__emotion_base=l,h.__emotion_styles=p,h.__emotion_forwardProp=a,Object.defineProperty(h,"toString",{value:function(){return"."+i}}),h.withComponent=function(t,r){return e(t,m({},n,r,{shouldForwardProp:V(h,r,!0)})).apply(void 0,p)},h}};const N=(0,x.createContext)({}),B=({children:e})=>{const{openedAccordions:t,stayOpen:n,setOpenedAccordions:r,toggleOpenedAccordion:i,setStayOpen:s}=(()=>{const[e,t]=(0,x.useState)([]),[n,r]=(0,x.useState)(!1);return{openedAccordions:e,stayOpen:n,setOpenedAccordions:t,toggleOpenedAccordion:r=>{const o=!!e.find((e=>e.id===r.id));if(n){const n=o?e.filter((e=>e.id!==r.id)):e.concat([r]);t(n)}else t(o?[]:[r])},setStayOpen:r}})();return(0,o.jsx)(N.Provider,{value:{openedAccordions:t,stayOpen:n,setOpenedAccordions:r,toggleOpenedAccordion:i,setStayOpen:s}},e)},_=H("div",{target:"e6tqso50"})(""),W=({children:e,size:t="empty",accordionsStayOpen:n=!0,...r})=>{const{openedAccordions:i,setOpenedAccordions:s,toggleOpenedAccordion:l,setStayOpen:a}=(0,x.useContext)(N);return(0,x.useEffect)((()=>{a(n)}),[]),(0,x.useLayoutEffect)((()=>{const t=[];x.Children.map(e,(e=>{if((0,x.isValidElement)(e)&&e.props.isOpened){const{renderContent:n,renderTitle:r,...o}=e.props;t.push({id:o.id,renderContent:n.bind(null,o),renderTitle:r.bind(null,o)})}})),s(t)}),[]),(0,o.jsx)(_,h({"data-testid":"accordion-group",tabIndex:0},r),x.Children.map(e,(e=>{if((0,x.isValidElement)(e)){const{renderContent:n,renderTitle:r,...o}=e.props,s=o.id,a=!!i?.find((e=>e.id===s));return(0,x.cloneElement)(e,{key:s,isOpened:a,size:t,onClick:()=>l({id:s,renderContent:n.bind(null,o),renderTitle:r.bind(null,o)})})}})))};var q=H("div",{target:"e3wmt1x0"})("display:flex;justify-content:space-between;flex-direction:",(({direction:e})=>e||"row"),";align-items:",(({direction:e})=>"column"===e?"normal":"center"),";"),U=({children:e,...t})=>(0,o.jsx)(q,t,e);const X={empty:(0,o.css)("","",""),small:{name:"1iv13by",styles:"background:none;border-radius:0;box-shadow:none"},medium:{name:"1vx7lfx",styles:"border-radius:0;box-shadow:none"},large:{name:"1vq0w5m",styles:"margin-bottom:25px;min-height:70px;border-radius:20px;padding:0;&:last-child:{margin-bottom:0;}"}},G={name:"1mji0ze",styles:"user-select:none;align-items:center;cursor:pointer;border:none"},K=e=>(0,o.css)("flex-direction:column;align-self:flex-start;height:",e?"auto":0,";max-height:",e?"initial":0,";overflow:",e?"visible":"hidden",";","",""),Y=({isOpened:e,children:t,size:n="empty",...r})=>{const i=((e,t)=>({empty:(0,o.css)(K(t),";","",""),small:(0,o.css)(K(t),";color:",e.colors.white80,";& p{color:",e.colors.white80,";margin:15px 0;}","",""),medium:(0,o.css)(K(t),";padding:",t?"18px 8px 23px 8px":0,";","",""),large:(0,o.css)(K(t),";padding:",t?"19px 30px 23px 30px":0,";","","")}))((0,o.useTheme)(),e);return(0,o.jsx)(U,h({css:i[n]},r),t)};var J=H("div",{target:"e1yl60z30"})("position:relative;display:flex;justify-content:space-between;width:100%;margin-bottom:20px;background:",(e=>e.transparent?"transparent":"initial"),";padding-left:",(e=>e.hasIcon?"30px":null),";",(({theme:e})=>e.mediaQueries.md),"{padding-left:",(e=>e.hasIcon?"40px":null),";}");const Q=["diet","calendar","home","stats","sleep","trainings","measurements","settings","plus","minus","more","check","cross","user","union","notification","visible","invisible","carrot-down","carrot-up","carrot-left","carrot-right","radio-on","circle","arrow-up","arrow-down","filter"],ee=[({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Diet"),(0,o.jsx)("path",{d:"M15.3794 1.6875C15.3294 1.68734 15.2788 1.69189 15.2278 1.70215C14.1195 1.92375 13.0319 2.82406 12.4431 3.96241C8.37168 4.3361 5.25 9.29549 5.25 15.5625C5.25 19.2844 8.27812 22.3125 12 22.3125C15.7219 22.3125 18.75 19.2844 18.75 15.5625C18.75 13.7303 18.0635 12.4566 17.3994 11.2251C16.7443 10.009 16.125 8.86013 16.125 7.125C16.125 5.77573 15.2807 4.62307 14.094 4.1587C14.5181 3.61873 15.077 3.26196 15.5222 3.17286C15.9283 3.09186 16.1917 2.69641 16.1104 2.29029C16.0395 1.93493 15.7292 1.68864 15.3794 1.6875ZM12.9441 5.43824C13.8714 5.4419 14.625 6.19689 14.625 7.125C14.625 9.2385 15.3982 10.6714 16.0796 11.9363C16.7077 13.1018 17.25 14.1086 17.25 15.5625C17.25 18.4575 14.895 20.8125 12 20.8125C9.105 20.8125 6.75 18.4575 6.75 15.5625C6.75 10.0089 9.49693 5.4871 12.884 5.4397C12.9054 5.44185 12.9236 5.43802 12.9441 5.43824ZM12 11.4375C10.2319 11.4375 9 13.6247 9 15.5874C9 17.5599 10.2337 18.9375 12 18.9375C13.7662 18.9375 15 17.5599 15 15.5874C15 13.6247 13.7681 11.4375 12 11.4375ZM12 12.9375C12.6611 12.9375 13.5 14.1849 13.5 15.5874C13.5 16.7109 12.9113 17.4375 12 17.4375C11.0887 17.4375 10.5 16.7109 10.5 15.5874C10.5 14.1849 11.3389 12.9375 12 12.9375Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Calendar"),(0,o.jsx)("path",{d:"M3.61111 0C1.6267 0 0 1.6267 0 3.61111V16.3889C0 18.3733 1.6267 20 3.61111 20H16.3889C18.3733 20 20 18.3733 20 16.3889V3.61111C20 1.6267 18.3733 0 16.3889 0H3.61111ZM3.61111 1.66667H16.3889C17.4723 1.66667 18.3333 2.52774 18.3333 3.61111V4.44444H1.66667V3.61111C1.66667 2.52774 2.52774 1.66667 3.61111 1.66667ZM1.66667 6.11111H18.3333V16.3889C18.3333 17.4723 17.4723 18.3333 16.3889 18.3333H3.61111C2.52774 18.3333 1.66667 17.4723 1.66667 16.3889V6.11111ZM5.27778 8.33333C4.90942 8.33333 4.55615 8.47966 4.29569 8.74013C4.03522 9.0006 3.88889 9.35387 3.88889 9.72222C3.88889 10.0906 4.03522 10.4438 4.29569 10.7043C4.55615 10.9648 4.90942 11.1111 5.27778 11.1111C5.64613 11.1111 5.9994 10.9648 6.25987 10.7043C6.52034 10.4438 6.66667 10.0906 6.66667 9.72222C6.66667 9.35387 6.52034 9.0006 6.25987 8.74013C5.9994 8.47966 5.64613 8.33333 5.27778 8.33333ZM10 8.33333C9.63164 8.33333 9.27837 8.47966 9.01791 8.74013C8.75744 9.0006 8.61111 9.35387 8.61111 9.72222C8.61111 10.0906 8.75744 10.4438 9.01791 10.7043C9.27837 10.9648 9.63164 11.1111 10 11.1111C10.3684 11.1111 10.7216 10.9648 10.9821 10.7043C11.2426 10.4438 11.3889 10.0906 11.3889 9.72222C11.3889 9.35387 11.2426 9.0006 10.9821 8.74013C10.7216 8.47966 10.3684 8.33333 10 8.33333ZM14.7222 8.33333C14.3539 8.33333 14.0006 8.47966 13.7401 8.74013C13.4797 9.0006 13.3333 9.35387 13.3333 9.72222C13.3333 10.0906 13.4797 10.4438 13.7401 10.7043C14.0006 10.9648 14.3539 11.1111 14.7222 11.1111C15.0906 11.1111 15.4438 10.9648 15.7043 10.7043C15.9648 10.4438 16.1111 10.0906 16.1111 9.72222C16.1111 9.35387 15.9648 9.0006 15.7043 8.74013C15.4438 8.47966 15.0906 8.33333 14.7222 8.33333ZM5.27778 13.3333C4.90942 13.3333 4.55615 13.4797 4.29569 13.7401C4.03522 14.0006 3.88889 14.3539 3.88889 14.7222C3.88889 15.0906 4.03522 15.4438 4.29569 15.7043C4.55615 15.9648 4.90942 16.1111 5.27778 16.1111C5.64613 16.1111 5.9994 15.9648 6.25987 15.7043C6.52034 15.4438 6.66667 15.0906 6.66667 14.7222C6.66667 14.3539 6.52034 14.0006 6.25987 13.7401C5.9994 13.4797 5.64613 13.3333 5.27778 13.3333ZM10 13.3333C9.63164 13.3333 9.27837 13.4797 9.01791 13.7401C8.75744 14.0006 8.61111 14.3539 8.61111 14.7222C8.61111 15.0906 8.75744 15.4438 9.01791 15.7043C9.27837 15.9648 9.63164 16.1111 10 16.1111C10.3684 16.1111 10.7216 15.9648 10.9821 15.7043C11.2426 15.4438 11.3889 15.0906 11.3889 14.7222C11.3889 14.3539 11.2426 14.0006 10.9821 13.7401C10.7216 13.4797 10.3684 13.3333 10 13.3333Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 18 20",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Home"),(0,o.jsx)("path",{d:"M8.97559 0.250119C8.81566 0.25558 8.66168 0.312041 8.53613 0.411252L1.42969 6.00988C0.527739 6.7207 0 7.80687 0 8.9552V18.5001C0 19.1819 0.568203 19.7501 1.25 19.7501H6.25C6.9318 19.7501 7.5 19.1819 7.5 18.5001V13.5001C7.5 13.3526 7.60248 13.2501 7.75 13.2501H10.25C10.3975 13.2501 10.5 13.3526 10.5 13.5001V18.5001C10.5 19.1819 11.0682 19.7501 11.75 19.7501H16.75C17.4318 19.7501 18 19.1819 18 18.5001V8.9552C18 7.80687 17.4723 6.7207 16.5703 6.00988L9.46387 0.411252C9.32518 0.301689 9.15225 0.244623 8.97559 0.250119ZM9 1.9552L15.6426 7.1886C16.1846 7.61578 16.5 8.26552 16.5 8.9552V18.2501H12V13.5001C12 12.5426 11.2075 11.7501 10.25 11.7501H7.75C6.79252 11.7501 6 12.5426 6 13.5001V18.2501H1.5V8.9552C1.5 8.26552 1.81537 7.61578 2.35742 7.1886L9 1.9552Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 22 20",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Stats"),(0,o.jsx)("path",{d:"M8.60653 3.62364C7.65543 3.81726 6.74357 4.19357 5.9236 4.73666C4.6787 5.56119 3.7015 6.73312 3.11555 8.10427C2.52961 9.47541 2.36125 10.9842 2.63175 12.4398C2.90226 13.8954 3.59949 15.2324 4.63526 16.2818C5.67104 17.3313 6.99885 18.0459 8.45078 18.3355C9.90272 18.625 11.4136 18.4764 12.7923 17.9085C14.1709 17.3405 15.3556 16.3787 16.1963 15.1447C16.7501 14.332 17.1383 13.4251 17.3444 12.4766L14.2451 12.4766C14.116 12.8294 13.943 13.1672 13.7288 13.4816C13.2234 14.2233 12.5114 14.8014 11.6827 15.1427C10.8541 15.4841 9.94598 15.5734 9.0733 15.3994C8.20061 15.2253 7.40253 14.7958 6.77997 14.165C6.15741 13.5343 5.73834 12.7306 5.57575 11.8557C5.41317 10.9809 5.51436 10.074 5.86654 9.24988C6.21873 8.42575 6.80608 7.72135 7.55433 7.22577C7.87147 7.01572 8.21151 6.84716 8.56596 6.72268L8.60653 3.62364ZM9.12977 2.0268C9.67978 1.96553 10.1232 2.41922 10.116 2.97178L10.0637 6.96592C10.0564 7.51848 9.59085 7.95088 9.06614 8.13122C8.82267 8.2149 8.58921 8.32964 8.37184 8.47361C7.87257 8.80429 7.48066 9.27429 7.24567 9.82419C7.01067 10.3741 6.94315 10.9792 7.05164 11.563C7.16013 12.1467 7.43975 12.683 7.85515 13.1038C8.27055 13.5247 8.80308 13.8113 9.38538 13.9274C9.96768 14.0436 10.5736 13.984 11.1265 13.7562C11.6795 13.5284 12.1546 13.1427 12.4917 12.6478C12.6385 12.4323 12.7563 12.2004 12.8432 11.958C13.0304 11.4357 13.4688 10.9759 14.0214 10.9759L18.0159 10.9759C18.5685 10.9759 19.0164 11.4252 18.9479 11.9743C18.7699 13.402 18.2526 14.776 17.4334 15.9785C16.4245 17.4593 15.0029 18.6135 13.3485 19.295C11.694 19.9765 9.88102 20.1548 8.13871 19.8074C6.39639 19.46 4.80302 18.6024 3.56008 17.343C2.31715 16.0837 1.48047 14.4793 1.15587 12.7326C0.83126 10.9858 1.0333 9.17532 1.73643 7.52995C2.43956 5.88458 3.61221 4.47826 5.10608 3.48882C6.31919 2.68535 7.69987 2.18609 9.12977 2.0268Z",fill:e}),(0,o.jsx)("path",{d:"M19.4116 7.47417C19.3221 7.00597 19.1878 6.54685 19.0098 6.10324C18.6446 5.19277 18.1026 4.3655 17.4148 3.66865C16.7271 2.97181 15.9069 2.41904 15.0013 2.04191C14.5601 1.85816 14.1028 1.71786 13.6358 1.62229L13.5952 4.72155C13.6706 4.74828 13.7454 4.77706 13.8193 4.80786C14.3637 5.03454 14.8566 5.36678 15.27 5.78562C15.6834 6.20446 16.0091 6.7017 16.2287 7.24894C16.2585 7.32331 16.2863 7.39842 16.312 7.47417H19.4116ZM21.0021 7.97651C21.0562 8.52571 20.5965 8.97504 20.0439 8.97504H16.0491C15.4964 8.97504 15.07 8.51513 14.8965 7.99278C14.8775 7.93573 14.8568 7.8792 14.8344 7.8233C14.6879 7.45815 14.4705 7.12637 14.1947 6.8469C13.9189 6.56743 13.59 6.34574 13.2268 6.19449C13.1712 6.17133 13.1149 6.1499 13.0581 6.1302C12.5381 5.94984 12.0838 5.51742 12.091 4.96481L12.1433 0.970385C12.1506 0.417779 12.6059 -0.0359408 13.1543 0.0253343C13.9929 0.119031 14.8143 0.330651 15.5939 0.655286C16.6806 1.10784 17.6648 1.77116 18.4901 2.60738C19.3154 3.44359 19.9658 4.43632 20.4041 5.52888C20.7185 6.31262 20.9194 7.13672 21.0021 7.97651Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Sleep"),(0,o.jsx)("path",{d:"M6.00833 2.0001C5.86499 2.002 5.7252 2.04501 5.60557 2.12402C4.00925 3.14394 2.65193 4.502 1.63258 6.0992C1.57541 6.18206 1.53552 6.2756 1.51529 6.37424C1.49506 6.47287 1.4949 6.57457 1.51482 6.67327C1.53474 6.77196 1.57434 6.86563 1.63124 6.94868C1.68814 7.03172 1.76119 7.10245 1.84601 7.15662C1.93084 7.2108 2.0257 7.24732 2.12495 7.264C2.22419 7.28068 2.32577 7.27718 2.42363 7.25371C2.52149 7.23024 2.61363 7.18728 2.69453 7.12739C2.77543 7.06751 2.84343 6.99192 2.89449 6.90516C3.79647 5.49188 4.99859 4.2891 6.41109 3.38663C6.55019 3.30043 6.65725 3.17103 6.71591 3.01821C6.77458 2.86538 6.78161 2.69754 6.73595 2.54034C6.69028 2.38314 6.59443 2.24522 6.46304 2.14766C6.33164 2.05011 6.17194 1.99828 6.00833 2.0001ZM17.9692 2.0001C17.8075 2.00312 17.6512 2.05841 17.5235 2.15772C17.3958 2.25703 17.3037 2.39502 17.2609 2.55107C17.2181 2.70711 17.2269 2.87282 17.286 3.02343C17.3451 3.17404 17.4514 3.30146 17.5889 3.38663C19.0014 4.2891 20.2035 5.49188 21.1055 6.90516C21.1566 6.99192 21.2246 7.06751 21.3055 7.12739C21.3864 7.18727 21.4785 7.23024 21.5764 7.25371C21.6742 7.27718 21.7758 7.28068 21.8751 7.26399C21.9743 7.24731 22.0692 7.2108 22.154 7.15662C22.2388 7.10244 22.3119 7.03172 22.3688 6.94868C22.4257 6.86563 22.4653 6.77196 22.4852 6.67327C22.5051 6.57457 22.5049 6.47287 22.4847 6.37424C22.4645 6.2756 22.4246 6.18206 22.3674 6.0992C21.3481 4.502 19.9907 3.14394 18.3944 2.12402C18.2684 2.04078 18.1202 1.99759 17.9692 2.0001ZM12 3.00512C6.76945 3.00512 2.51319 7.26371 2.51319 12.4971C2.51319 15.3532 3.80753 17.8881 5.80939 19.6298L4.72983 20.71C4.65795 20.779 4.60057 20.8617 4.56104 20.9532C4.5215 21.0448 4.50062 21.1432 4.49961 21.2429C4.49859 21.3426 4.51747 21.4415 4.55514 21.5338C4.5928 21.6261 4.6485 21.71 4.71896 21.7805C4.78942 21.851 4.87323 21.9067 4.96548 21.9444C5.05773 21.9821 5.15658 22.001 5.25622 22C5.35586 21.9989 5.4543 21.9781 5.54576 21.9385C5.63723 21.8989 5.71989 21.8415 5.78891 21.7696L7.01864 20.5392C8.47058 21.4429 10.168 21.9892 12 21.9892C13.832 21.9892 15.5294 21.4429 16.9814 20.5392L18.2111 21.7696C18.2801 21.8415 18.3628 21.8989 18.4542 21.9385C18.5457 21.9781 18.6441 21.9989 18.7438 22C18.8434 22.001 18.9423 21.9821 19.0345 21.9444C19.1268 21.9067 19.2106 21.851 19.281 21.7805C19.3515 21.71 19.4072 21.6261 19.4449 21.5338C19.4825 21.4415 19.5014 21.3426 19.5004 21.2429C19.4994 21.1432 19.4785 21.0448 19.439 20.9532C19.3994 20.8617 19.342 20.779 19.2702 20.71L18.1906 19.6298C20.1925 17.8881 21.4868 15.3532 21.4868 12.4971C21.4868 7.26371 17.2306 3.00512 12 3.00512ZM12 4.50386C16.421 4.50386 19.9889 8.07369 19.9889 12.4971C19.9889 16.9206 16.421 20.4904 12 20.4904C7.57898 20.4904 4.01111 16.9206 4.01111 12.4971C4.01111 8.07369 7.57898 4.50386 12 4.50386ZM10.8 13.3439L10.7992 7.7003C10.7992 7.3137 11.1125 7.00025 11.4991 7.0002C11.8857 7.00014 12.1992 7.31349 12.1992 7.70009L12.1999 12.6035L17.3302 11.3209C17.7053 11.2271 18.0853 11.4552 18.1791 11.8302C18.2729 12.2053 18.0448 12.5853 17.6698 12.6791L11.6698 14.1791C11.2947 14.2729 10.9147 14.0448 10.8209 13.6698C10.8 13.586 10.7951 13.5021 10.8043 13.4211C10.8015 13.3957 10.8001 13.37 10.8 13.3439Z",fill:e}),(0,o.jsx)("path",{d:"M5.60557 2.12402L5.63249 2.16616L5.63313 2.16574L5.60557 2.12402ZM6.00833 2.0001L6.00777 1.95011L6.00767 1.95011L6.00833 2.0001ZM1.63258 6.0992L1.67376 6.1276L1.67472 6.12609L1.63258 6.0992ZM1.51529 6.37424L1.46631 6.36419L1.51529 6.37424ZM1.51482 6.67327L1.56383 6.66337H1.56383L1.51482 6.67327ZM1.63124 6.94868L1.58999 6.97694H1.58999L1.63124 6.94868ZM2.12495 7.264L2.13323 7.21469H2.13323L2.12495 7.264ZM2.42363 7.25371L2.43529 7.30233H2.4353L2.42363 7.25371ZM2.69453 7.12739L2.66478 7.0872H2.66478L2.69453 7.12739ZM2.89449 6.90516L2.85232 6.87824L2.8514 6.8798L2.89449 6.90516ZM6.41109 3.38663L6.38475 3.34413L6.38417 3.3445L6.41109 3.38663ZM6.71591 3.01821L6.76259 3.03612L6.71591 3.01821ZM6.73595 2.54034L6.78396 2.52639V2.52639L6.73595 2.54034ZM6.46304 2.14766L6.43323 2.18781V2.18781L6.46304 2.14766ZM17.5235 2.15772L17.5542 2.19719L17.5235 2.15772ZM17.9692 2.0001L17.9684 1.95011L17.9683 1.95011L17.9692 2.0001ZM17.2609 2.55107L17.2126 2.53784V2.53784L17.2609 2.55107ZM17.5889 3.38663L17.6158 3.34449L17.6152 3.34413L17.5889 3.38663ZM21.1055 6.90516L21.1486 6.87978L21.1477 6.87826L21.1055 6.90516ZM21.3055 7.12739L21.3352 7.0872L21.3055 7.12739ZM21.5764 7.25371L21.588 7.20508L21.5764 7.25371ZM21.8751 7.26399L21.8668 7.21469L21.8751 7.26399ZM22.154 7.15662L22.1809 7.19876V7.19876L22.154 7.15662ZM22.3688 6.94868L22.3275 6.92041V6.92041L22.3688 6.94868ZM22.4852 6.67327L22.4362 6.66337V6.66337L22.4852 6.67327ZM22.3674 6.0992L22.3253 6.12611L22.3263 6.12759L22.3674 6.0992ZM18.3944 2.12402L18.3669 2.16575L18.3675 2.16616L18.3944 2.12402ZM5.80939 19.6298L5.84475 19.6652L5.88263 19.6273L5.84221 19.5921L5.80939 19.6298ZM4.72983 20.71L4.76448 20.746L4.7652 20.7453L4.72983 20.71ZM4.56104 20.9532L4.60694 20.9731L4.56104 20.9532ZM4.55514 21.5338L4.60143 21.5149L4.55514 21.5338ZM4.71896 21.7805L4.68359 21.8158L4.71896 21.7805ZM4.96548 21.9444L4.94657 21.9907H4.94657L4.96548 21.9444ZM5.25622 22L5.25571 21.95H5.25571L5.25622 22ZM5.54576 21.9385L5.52592 21.8926H5.52592L5.54576 21.9385ZM5.78891 21.7696L5.75354 21.7343L5.75283 21.735L5.78891 21.7696ZM7.01864 20.5392L7.04507 20.4967L7.01135 20.4758L6.98328 20.5039L7.01864 20.5392ZM16.9814 20.5392L17.0167 20.5039L16.9886 20.4758L16.9549 20.4967L16.9814 20.5392ZM18.2111 21.7696L18.2472 21.735L18.2465 21.7343L18.2111 21.7696ZM18.4542 21.9385L18.4741 21.8926L18.4542 21.9385ZM18.7438 22L18.7433 22.05L18.7438 22ZM19.0345 21.9444L19.0534 21.9907H19.0534L19.0345 21.9444ZM19.281 21.7805L19.3164 21.8158L19.281 21.7805ZM19.439 20.9532L19.3931 20.9731L19.439 20.9532ZM19.2702 20.71L19.2348 20.7453L19.2355 20.746L19.2702 20.71ZM18.1906 19.6298L18.1578 19.5921L18.1174 19.6273L18.1552 19.6652L18.1906 19.6298ZM10.7992 7.7003L10.8492 7.70029V7.70029L10.7992 7.7003ZM10.8 13.3439L10.85 13.3438L10.8 13.3439ZM11.4991 7.0002L11.4991 7.0502L11.4991 7.0002ZM12.1992 7.70009L12.1492 7.7001L12.1992 7.70009ZM12.1999 12.6035L12.1499 12.6035L12.1499 12.6675L12.2121 12.652L12.1999 12.6035ZM17.3302 11.3209L17.3181 11.2724L17.3302 11.3209ZM18.1791 11.8302L18.2276 11.8181L18.1791 11.8302ZM11.6698 14.1791L11.6819 14.2276H11.6819L11.6698 14.1791ZM10.8209 13.6698L10.8694 13.6576L10.8209 13.6698ZM10.8043 13.4211L10.8552 13.4269L10.854 13.4156L10.8043 13.4211ZM5.63313 2.16574C5.74477 2.092 5.87523 2.05187 6.00899 2.0501L6.00767 1.95011C5.85476 1.95213 5.70564 1.99801 5.57801 2.0823L5.63313 2.16574ZM1.67472 6.12609C2.69017 4.53503 4.0423 3.18216 5.63249 2.16616L5.57865 2.08189C3.97621 3.10571 2.61369 4.46898 1.59043 6.0723L1.67472 6.12609ZM1.56427 6.38428C1.58316 6.29223 1.62038 6.20493 1.67373 6.12759L1.59142 6.0708C1.53044 6.1592 1.48789 6.25898 1.46631 6.36419L1.56427 6.38428ZM1.56383 6.66337C1.54524 6.57126 1.54539 6.47634 1.56427 6.38428L1.46631 6.36419C1.44473 6.4694 1.44456 6.57788 1.46581 6.68316L1.56383 6.66337ZM1.67249 6.92041C1.61938 6.84291 1.58243 6.75549 1.56383 6.66337L1.46581 6.68316C1.48706 6.78844 1.5293 6.88835 1.58999 6.97694L1.67249 6.92041ZM1.87293 7.11448C1.79376 7.06392 1.72559 6.99792 1.67249 6.92041L1.58999 6.97694C1.65069 7.06552 1.72861 7.14097 1.8191 7.19876L1.87293 7.11448ZM2.13323 7.21469C2.04062 7.19912 1.95209 7.16504 1.87293 7.11448L1.8191 7.19876C1.90959 7.25655 2.01079 7.29551 2.11666 7.3133L2.13323 7.21469ZM2.41197 7.20509C2.32065 7.22699 2.22585 7.23025 2.13323 7.21469L2.11666 7.3133C2.22253 7.3311 2.3309 7.32737 2.43529 7.30233L2.41197 7.20509ZM2.66478 7.0872C2.58928 7.14309 2.5033 7.18318 2.41197 7.20509L2.4353 7.30233C2.53969 7.27729 2.63797 7.23146 2.72427 7.16758L2.66478 7.0872ZM2.8514 6.8798C2.80375 6.96078 2.74028 7.03132 2.66478 7.0872L2.72427 7.16758C2.81057 7.1037 2.88312 7.02307 2.93759 6.93052L2.8514 6.8798ZM6.38417 3.3445C4.96554 4.25088 3.75823 5.45886 2.85235 6.87826L2.93664 6.93206C3.83471 5.5249 5.03163 4.32733 6.43801 3.42877L6.38417 3.3445ZM6.66923 3.00029C6.61448 3.14292 6.51456 3.26369 6.38475 3.34413L6.43743 3.42913C6.58581 3.33718 6.70002 3.19914 6.76259 3.03612L6.66923 3.00029ZM6.68793 2.55429C6.73055 2.70101 6.72399 2.85765 6.66923 3.00029L6.76259 3.03612C6.82517 2.87311 6.83267 2.69408 6.78396 2.52639L6.68793 2.55429ZM6.43323 2.18781C6.55585 2.27885 6.64531 2.40757 6.68793 2.55429L6.78396 2.52639C6.73525 2.3587 6.63301 2.21158 6.49284 2.10752L6.43323 2.18781ZM6.00889 2.0501C6.16157 2.0484 6.31061 2.09676 6.43323 2.18781L6.49284 2.10752C6.35268 2.00345 6.18231 1.94816 6.00777 1.95011L6.00889 2.0501ZM17.5542 2.19719C17.6733 2.10451 17.8193 2.05291 17.9702 2.0501L17.9683 1.95011C17.7958 1.95333 17.629 2.01231 17.4928 2.11825L17.5542 2.19719ZM17.3091 2.56429C17.349 2.41865 17.435 2.28987 17.5542 2.19719L17.4928 2.11825C17.3566 2.22419 17.2583 2.37139 17.2126 2.53784L17.3091 2.56429ZM17.3326 3.00516C17.2774 2.86459 17.2691 2.70993 17.3091 2.56429L17.2126 2.53784C17.167 2.70429 17.1764 2.88105 17.2395 3.0417L17.3326 3.00516ZM17.6152 3.34413C17.4869 3.26464 17.3877 3.14572 17.3326 3.00516L17.2395 3.0417C17.3025 3.20236 17.4159 3.33828 17.5626 3.42914L17.6152 3.34413ZM21.1477 6.87826C20.2418 5.45886 19.0345 4.25088 17.6158 3.3445L17.562 3.42877C18.9684 4.32733 20.1653 5.5249 21.0634 6.93206L21.1477 6.87826ZM21.3352 7.0872C21.2597 7.03132 21.1963 6.96078 21.1486 6.8798L21.0624 6.93052C21.1169 7.02307 21.1894 7.1037 21.2757 7.16758L21.3352 7.0872ZM21.588 7.20508C21.4967 7.18318 21.4107 7.14309 21.3352 7.0872L21.2757 7.16758C21.362 7.23146 21.4603 7.27729 21.5647 7.30233L21.588 7.20508ZM21.8668 7.21469C21.7742 7.23025 21.6794 7.22699 21.588 7.20508L21.5647 7.30233C21.6691 7.32736 21.7775 7.3311 21.8833 7.3133L21.8668 7.21469ZM22.1271 7.11448C22.0479 7.16504 21.9594 7.19912 21.8668 7.21469L21.8833 7.3133C21.9892 7.29551 22.0904 7.25655 22.1809 7.19876L22.1271 7.11448ZM22.3275 6.92041C22.2744 6.99792 22.2062 7.06392 22.1271 7.11448L22.1809 7.19876C22.2714 7.14097 22.3493 7.06552 22.41 6.97694L22.3275 6.92041ZM22.4362 6.66337C22.4176 6.75549 22.3806 6.84291 22.3275 6.92041L22.41 6.97694C22.4707 6.88835 22.5129 6.78843 22.5342 6.68316L22.4362 6.66337ZM22.4357 6.38428C22.4546 6.47634 22.4548 6.57126 22.4362 6.66337L22.5342 6.68316C22.5554 6.57788 22.5553 6.4694 22.5337 6.36419L22.4357 6.38428ZM22.3263 6.12759C22.3796 6.20493 22.4168 6.29223 22.4357 6.38428L22.5337 6.36419C22.5121 6.25898 22.4696 6.1592 22.4086 6.0708L22.3263 6.12759ZM18.3675 2.16616C19.9577 3.18216 21.3098 4.53503 22.3253 6.12609L22.4096 6.0723C21.3863 4.46898 20.0238 3.10571 18.4214 2.08189L18.3675 2.16616ZM17.9701 2.0501C18.111 2.04775 18.2493 2.08806 18.3669 2.16574L18.422 2.0823C18.2876 1.99351 18.1295 1.94743 17.9684 1.95011L17.9701 2.0501ZM2.56319 12.4971C2.56319 7.2913 6.79709 3.05512 12 3.05512V2.95512C6.74181 2.95512 2.46319 7.23613 2.46319 12.4971H2.56319ZM5.84221 19.5921C3.85037 17.8591 2.56319 15.3376 2.56319 12.4971H2.46319C2.46319 15.3688 3.76469 17.9171 5.77657 19.6675L5.84221 19.5921ZM4.7652 20.7453L5.84475 19.6652L5.77402 19.5945L4.69447 20.6746L4.7652 20.7453ZM4.60694 20.9731C4.64383 20.8876 4.69739 20.8105 4.76447 20.746L4.69519 20.6739C4.61852 20.7476 4.55731 20.8358 4.51514 20.9334L4.60694 20.9731ZM4.5496 21.2434C4.55055 21.1504 4.57004 21.0585 4.60694 20.9731L4.51514 20.9334C4.47297 21.031 4.45069 21.1361 4.44961 21.2424L4.5496 21.2434ZM4.60143 21.5149C4.56628 21.4288 4.54866 21.3365 4.5496 21.2434L4.44961 21.2424C4.44853 21.3488 4.46867 21.4543 4.50884 21.5527L4.60143 21.5149ZM4.75432 21.7451C4.68856 21.6794 4.63658 21.6011 4.60143 21.5149L4.50884 21.5527C4.54902 21.6512 4.60843 21.7406 4.68359 21.8158L4.75432 21.7451ZM4.98439 21.8981C4.89829 21.8629 4.82008 21.8109 4.75432 21.7451L4.68359 21.8158C4.75875 21.891 4.84816 21.9505 4.94657 21.9907L4.98439 21.8981ZM5.25571 21.95C5.16272 21.9509 5.07048 21.9333 4.98439 21.8981L4.94657 21.9907C5.04499 22.0309 5.15043 22.051 5.25673 22.05L5.25571 21.95ZM5.52592 21.8926C5.44056 21.9295 5.34869 21.949 5.25571 21.95L5.25673 22.05C5.36302 22.0489 5.46803 22.0266 5.56561 21.9844L5.52592 21.8926ZM5.75283 21.735C5.68842 21.8021 5.61128 21.8557 5.52592 21.8926L5.56561 21.9844C5.66319 21.9422 5.75137 21.8809 5.82498 21.8042L5.75283 21.735ZM6.98328 20.5039L5.75354 21.7343L5.82427 21.805L7.05401 20.5745L6.98328 20.5039ZM12 21.9392C10.1782 21.9392 8.4898 21.396 7.04507 20.4967L6.99222 20.5816C8.45137 21.4899 10.1578 22.0392 12 22.0392V21.9392ZM16.9549 20.4967C15.5102 21.396 13.8218 21.9392 12 21.9392V22.0392C13.8422 22.0392 15.5486 21.4899 17.0078 20.5816L16.9549 20.4967ZM18.2465 21.7343L17.0167 20.5039L16.946 20.5745L18.1757 21.805L18.2465 21.7343ZM18.4741 21.8926C18.3887 21.8557 18.3116 21.8021 18.2472 21.735L18.175 21.8042C18.2486 21.8809 18.3368 21.9422 18.4344 21.9844L18.4741 21.8926ZM18.7443 21.95C18.6513 21.949 18.5594 21.9295 18.4741 21.8926L18.4344 21.9844C18.532 22.0266 18.637 22.0489 18.7433 22.05L18.7443 21.95ZM19.0156 21.8981C18.9295 21.9333 18.8373 21.9509 18.7443 21.95L18.7433 22.05C18.8496 22.051 18.955 22.0309 19.0534 21.9907L19.0156 21.8981ZM19.2457 21.7451C19.1799 21.8109 19.1017 21.8629 19.0156 21.8981L19.0534 21.9907C19.1518 21.9505 19.2412 21.891 19.3164 21.8158L19.2457 21.7451ZM19.3986 21.5149C19.3634 21.6011 19.3114 21.6794 19.2457 21.7451L19.3164 21.8158C19.3916 21.7406 19.451 21.6512 19.4912 21.5527L19.3986 21.5149ZM19.4504 21.2434C19.4513 21.3365 19.4337 21.4288 19.3986 21.5149L19.4912 21.5527C19.5313 21.4543 19.5515 21.3488 19.5504 21.2424L19.4504 21.2434ZM19.3931 20.9731C19.43 21.0585 19.4495 21.1504 19.4504 21.2434L19.5504 21.2424C19.5493 21.1361 19.527 21.031 19.4849 20.9334L19.3931 20.9731ZM19.2355 20.746C19.3026 20.8105 19.3562 20.8876 19.3931 20.9731L19.4849 20.9334C19.4427 20.8358 19.3815 20.7476 19.3048 20.6739L19.2355 20.746ZM18.1552 19.6652L19.2348 20.7453L19.3055 20.6746L18.226 19.5945L18.1552 19.6652ZM21.4368 12.4971C21.4368 15.3376 20.1496 17.8591 18.1578 19.5921L18.2234 19.6675C20.2353 17.9171 21.5368 15.3688 21.5368 12.4971H21.4368ZM12 3.05512C17.2029 3.05512 21.4368 7.2913 21.4368 12.4971H21.5368C21.5368 7.23613 17.2582 2.95512 12 2.95512V3.05512ZM20.0389 12.4971C20.0389 8.0461 16.4487 4.45386 12 4.45386V4.55386C16.3934 4.55386 19.9389 8.10128 19.9389 12.4971H20.0389ZM12 20.5404C16.4487 20.5404 20.0389 16.9482 20.0389 12.4971H19.9389C19.9389 16.893 16.3934 20.4404 12 20.4404V20.5404ZM3.96111 12.4971C3.96111 16.9482 7.55134 20.5404 12 20.5404V20.4404C7.60662 20.4404 4.06111 16.893 4.06111 12.4971H3.96111ZM12 4.45386C7.55134 4.45386 3.96111 8.0461 3.96111 12.4971H4.06111C4.06111 8.10128 7.60662 4.55386 12 4.55386V4.45386ZM10.7492 7.70031L10.75 13.3439L10.85 13.3438L10.8492 7.70029L10.7492 7.70031ZM11.4991 6.9502C11.0849 6.95026 10.7492 7.28609 10.7492 7.70031L10.8492 7.70029C10.8492 7.34131 11.1401 7.05025 11.4991 7.0502L11.4991 6.9502ZM12.2492 7.70009C12.2492 7.28587 11.9133 6.95013 11.4991 6.9502L11.4991 7.0502C11.8581 7.05014 12.1492 7.34111 12.1492 7.7001L12.2492 7.70009ZM12.2499 12.6035L12.2492 7.70009L12.1492 7.7001L12.1499 12.6035L12.2499 12.6035ZM12.2121 12.652L17.3424 11.3694L17.3181 11.2724L12.1878 12.555L12.2121 12.652ZM17.3424 11.3694C17.6906 11.2823 18.0435 11.4941 18.1306 11.8424L18.2276 11.8181C18.1271 11.4163 17.7199 11.1719 17.3181 11.2724L17.3424 11.3694ZM18.1306 11.8424C18.2177 12.1906 18.0059 12.5435 17.6576 12.6306L17.6819 12.7276C18.0837 12.6271 18.3281 12.2199 18.2276 11.8181L18.1306 11.8424ZM17.6576 12.6306L11.6576 14.1306L11.6819 14.2276L17.6819 12.7276L17.6576 12.6306ZM11.6576 14.1306C11.3094 14.2177 10.9565 14.0059 10.8694 13.6576L10.7724 13.6819C10.8729 14.0837 11.2801 14.3281 11.6819 14.2276L11.6576 14.1306ZM10.8694 13.6576C10.8499 13.5798 10.8454 13.5019 10.854 13.4267L10.7546 13.4154C10.7447 13.5023 10.75 13.5923 10.7724 13.6819L10.8694 13.6576ZM10.75 13.3439C10.7501 13.3718 10.7516 13.3994 10.7546 13.4265L10.854 13.4156C10.8514 13.3921 10.8501 13.3681 10.85 13.3438L10.75 13.3439Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Trainings"),(0,o.jsx)("path",{d:"M6.75 3.75C5.51634 3.75 4.5 4.76634 4.5 6V6.89062C4.26408 6.80564 4.01367 6.75 3.75 6.75C2.51634 6.75 1.5 7.76634 1.5 9V11.25H0V12.75H1.5V15C1.5 16.2329 2.51544 17.25 3.75 17.25C4.01342 17.25 4.26327 17.1968 4.5 17.1123V18C4.5 19.2329 5.51544 20.25 6.75 20.25C7.3669 20.25 7.93454 19.9971 8.34082 19.5908C8.7471 19.1845 9 18.6169 9 18V12.75H15V18C15 18.6169 15.2529 19.1845 15.6592 19.5908C16.0655 19.9971 16.6331 20.25 17.25 20.25C18.4846 20.25 19.5 19.2329 19.5 18V17.1123C19.7367 17.1968 19.9866 17.25 20.25 17.25C21.4846 17.25 22.5 16.2329 22.5 15V12.75H24V11.25H22.5V9C22.5 7.76634 21.4837 6.75 20.25 6.75C19.9863 6.75 19.7359 6.80564 19.5 6.89062V6C19.5 4.76634 18.4837 3.75 17.25 3.75C16.0154 3.75 15 4.76711 15 6V11.25H9V6C9 4.76711 7.98456 3.75 6.75 3.75ZM6.75 5.25C7.17444 5.25 7.5 5.57689 7.5 6V18C7.5 18.2111 7.41699 18.3936 7.28027 18.5303C7.14355 18.667 6.9611 18.75 6.75 18.75C6.32556 18.75 6 18.4231 6 18V6C6 5.57466 6.32466 5.25 6.75 5.25ZM17.25 5.25C17.6753 5.25 18 5.57466 18 6V9V11.4785V15V18C18 18.4231 17.6744 18.75 17.25 18.75C17.0389 18.75 16.8564 18.667 16.7197 18.5303C16.583 18.3936 16.5 18.2111 16.5 18V6C16.5 5.57689 16.8256 5.25 17.25 5.25ZM3.75 8.25C4.17444 8.25 4.5 8.57689 4.5 9V11.4785V15C4.5 15.2111 4.41699 15.3936 4.28027 15.5303C4.14355 15.667 3.9611 15.75 3.75 15.75C3.32556 15.75 3 15.4231 3 15V9C3 8.57466 3.32466 8.25 3.75 8.25ZM20.25 8.25C20.6753 8.25 21 8.57466 21 9V15C21 15.4231 20.6744 15.75 20.25 15.75C20.0389 15.75 19.8564 15.667 19.7197 15.5303C19.583 15.3936 19.5 15.2111 19.5 15V9C19.5 8.57689 19.8256 8.25 20.25 8.25Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Measurements"),(0,o.jsx)("path",{d:"M8.8254 2C5 2 2 3.60317 2 5.65079V13.5873C2 15.2222 3.95238 16.6349 6.84127 17.0794H6.92064C7.15873 17.0794 7.34921 16.9048 7.39683 16.6825C7.44444 16.4286 7.25397 16.1745 7 16.1428C4.65079 15.7777 2.95238 14.6984 2.95238 13.5873V7.53974C4.12698 8.60324 6.30159 9.30159 8.8254 9.30159H19.1429C20.1905 9.30159 21.0476 10.1587 21.0476 11.2063C21.0476 12.254 20.1905 13.1111 19.1429 13.1111H10.4127C9.26984 13.1111 8.34921 14.0317 8.34921 15.1746V19.9365C8.34921 21.0794 9.26984 22 10.4127 22H19.1429C20.7143 22 22 20.7143 22 19.1429V11.2063C22 9.63492 20.7143 8.34921 19.1429 8.34921H8.8254C5.31746 8.34921 2.95238 6.95238 2.95238 5.65079C2.95238 4.34921 5.31746 2.95238 8.8254 2.95238C12.3333 2.95238 14.6984 4.34921 14.6984 5.65079V6.92064C14.6984 7.19048 14.9048 7.39683 15.1746 7.39683C15.4444 7.39683 15.6508 7.19048 15.6508 6.92064V5.65079C15.6508 3.60317 12.6508 2 8.8254 2ZM8.8254 4.85714C8.40442 4.85714 8.00068 4.94076 7.70301 5.0896C7.40533 5.23844 7.2381 5.4403 7.2381 5.65079C7.2381 5.86128 7.40533 6.06315 7.70301 6.21199C8.00068 6.36083 8.40442 6.44444 8.8254 6.44444C9.24638 6.44444 9.65011 6.36083 9.94779 6.21199C10.2455 6.06315 10.4127 5.86128 10.4127 5.65079C10.4127 5.4403 10.2455 5.23844 9.94779 5.0896C9.65011 4.94076 9.24638 4.85714 8.8254 4.85714ZM21.0476 13.3334V19.1429C21.0476 20.1905 20.1905 21.0476 19.1429 21.0476H10.4127C9.79365 21.0476 9.30159 20.5556 9.30159 19.9365V15.1746C9.30159 14.5556 9.79365 14.0635 10.4127 14.0635H13.1111V15.9683C13.1111 16.2381 13.3175 16.4444 13.5873 16.4444C13.8571 16.4444 14.0635 16.2381 14.0635 15.9683V14.0635H17.873V15.9683C17.873 16.2381 18.0794 16.4444 18.3492 16.4444C18.619 16.4444 18.8254 16.2381 18.8254 15.9683V14.0635H19.1429C19.873 14.0635 20.5397 13.7937 21.0476 13.3334Z",fill:e,stroke:e,strokeWidth:"0.4"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Settings"),(0,o.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.9673 14.5016C13.349 14.5016 14.4837 13.3816 14.5017 12.0001C14.5198 10.6186 13.4145 9.49868 12.0328 9.49868C10.6512 9.49868 9.5165 10.6186 9.49841 12.0001C9.48033 13.3816 10.5857 14.5016 11.9673 14.5016ZM16.0028 12.0001C15.9738 14.2106 14.1583 16.0025 11.9477 16.0025C9.73707 16.0025 7.96848 14.2106 7.99741 12.0001C8.02635 9.78971 9.84186 7.9978 12.0525 7.9978C14.2631 7.9978 16.0317 9.78971 16.0028 12.0001Z",fill:e}),(0,o.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.0239 2.83721L10.6209 4.00046C10.281 4.98131 9.55444 5.67613 8.79735 6.0946C8.73279 6.13028 8.66885 6.16698 8.60556 6.20468C7.86065 6.64834 6.89517 6.92307 5.88366 6.71555L4.68439 6.4695C4.47399 6.42633 4.25779 6.52299 4.14768 6.70947L3.51224 7.78559C3.40213 7.97206 3.42281 8.20651 3.56357 8.36762L4.36704 9.2872C5.0414 10.059 5.27384 11.0262 5.2489 11.8881C5.24674 11.9626 5.24576 12.0373 5.24597 12.1118C5.24834 12.9737 4.99057 13.9409 4.29602 14.7127L3.46847 15.6323C3.32349 15.7934 3.29668 16.0278 3.40191 16.2143L4.00917 17.2904C4.1144 17.4769 4.32806 17.5736 4.5396 17.5304L5.74522 17.2844C6.76218 17.0768 7.72048 17.3516 8.45378 17.7952C8.5161 17.8329 8.5791 17.8697 8.64274 17.9053C9.38887 18.3238 10.0973 19.0186 10.4114 19.9995L10.784 21.1627C10.8494 21.367 11.0388 21.5048 11.2541 21.5048H12.4968C12.7122 21.5048 12.9052 21.367 12.9759 21.1627L13.3789 19.9995C13.7188 19.0186 14.4454 18.3238 15.2025 17.9053C15.267 17.8697 15.331 17.8329 15.3943 17.7952C16.1392 17.3516 17.1047 17.0768 18.1162 17.2844L19.3154 17.5304C19.5258 17.5736 19.742 17.4769 19.8521 17.2904L20.4875 16.2143C20.5976 16.0278 20.5769 15.7934 20.4362 15.6323L19.6328 14.7127C18.9584 13.9409 18.726 12.9737 18.7509 12.1118C18.7531 12.0373 18.754 11.9626 18.7538 11.8881C18.7515 11.0262 19.0092 10.059 19.7038 9.28714L20.5313 8.36762C20.6763 8.20651 20.7031 7.97206 20.5979 7.78559L19.9906 6.70947C19.8854 6.52299 19.6717 6.42633 19.4602 6.4695L18.2545 6.71554C17.2375 6.92307 16.2793 6.64834 15.546 6.20468C15.4837 6.16698 15.4207 6.13028 15.3571 6.0946C14.6109 5.67613 13.9025 4.98131 13.5884 4.00046L13.2158 2.83721C13.1504 2.63293 12.961 2.49515 12.7457 2.49515L11.503 2.49515C11.2876 2.49515 11.0946 2.63293 11.0239 2.83721ZM9.20321 3.52588C9.01369 4.07288 8.59184 4.50289 8.08436 4.7834C8.00543 4.82702 7.92726 4.87189 7.84989 4.91797C7.35101 5.2151 6.7679 5.36099 6.20381 5.24525L5.00454 4.9992C4.16291 4.82653 3.29814 5.21318 2.85769 5.95909L2.22226 7.0352C1.78181 7.78111 1.86451 8.7189 2.42756 9.36333L3.23104 10.2829C3.60754 10.7138 3.76517 11.2885 3.74851 11.8643C3.74589 11.9547 3.74471 12.0452 3.74495 12.1356C3.74654 12.7114 3.57386 13.2861 3.18608 13.717L2.35854 14.6366C1.7786 15.281 1.67135 16.2188 2.09227 16.9647L2.69954 18.0408C3.12046 18.7867 3.9751 19.1733 4.82125 19.0007L6.02688 18.7546C6.59401 18.6389 7.17331 18.7848 7.66441 19.0819C7.7406 19.128 7.81761 19.1729 7.89542 19.2166C8.39556 19.4971 8.80615 19.9271 8.98134 20.4741L9.3539 21.6373C9.61559 22.4544 10.3731 23.0056 11.2345 23.0056H12.4772C13.3386 23.0056 14.1105 22.4544 14.3936 21.6373L14.7966 20.4741C14.9861 19.9271 15.408 19.4971 15.9154 19.2166C15.9944 19.1729 16.0726 19.128 16.15 19.0819C16.6488 18.7848 17.232 18.6389 17.7961 18.7546L18.9952 19.0007C19.8368 19.1733 20.7016 18.7867 21.1421 18.0408L21.7775 16.9647C22.2179 16.2188 22.1352 15.281 21.5722 14.6366L20.7688 13.717C20.3923 13.2861 20.2346 12.7115 20.2513 12.1356C20.2539 12.0452 20.2551 11.9547 20.2549 11.8643C20.2533 11.2884 20.4259 10.7138 20.8137 10.2829L21.6412 9.36333C22.2212 8.7189 22.3284 7.78111 21.9075 7.03521L21.3002 5.95909C20.8793 5.21318 20.0247 4.82653 19.1785 4.9992L17.9728 5.24525C17.4057 5.36098 16.8264 5.21509 16.3353 4.91797C16.2592 4.87189 16.1822 4.82702 16.1044 4.7834C15.6042 4.50289 15.1937 4.07288 15.0185 3.52588L14.6459 2.36262C14.3842 1.54552 13.6267 0.994385 12.7653 0.994385H11.5226C10.6613 0.994385 9.8893 1.54552 9.60622 2.36262L9.20321 3.52588Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 10 10",fill:"none",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Plus"),(0,o.jsx)("path",{d:"M1 5H9",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M5 9V1",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,fill:"none",viewBox:"0 0 10 2",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Minus"),(0,o.jsx)("path",{d:"M1 1H9",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"More"),(0,o.jsx)("path",{d:"M5.4001 10.2C4.4101 10.2 3.6001 11.01 3.6001 12C3.6001 12.99 4.4101 13.8 5.4001 13.8C6.3901 13.8 7.2001 12.99 7.2001 12C7.2001 11.01 6.3901 10.2 5.4001 10.2Z",fill:e}),(0,o.jsx)("path",{d:"M12.0002 10.2C11.0102 10.2 10.2002 11.01 10.2002 12C10.2002 12.99 11.0102 13.8 12.0002 13.8C12.9902 13.8 13.8002 12.99 13.8002 12C13.8002 11.01 12.9902 10.2 12.0002 10.2Z",fill:e}),(0,o.jsx)("path",{d:"M18.6003 10.2C17.6103 10.2 16.8003 11.01 16.8003 12C16.8003 12.99 17.6103 13.8 18.6003 13.8C19.5903 13.8 20.4003 12.99 20.4003 12C20.4003 11.01 19.5903 10.2 18.6003 10.2Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,fill:"none",viewBox:"0 0 11 8",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Check"),(0,o.jsx)("path",{d:"M1 3.83L3.83 6.66L9.5 1",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,fill:"none",viewBox:"0 0 8 8",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Cross"),(0,o.jsx)("path",{d:"M1 6.66L6.66 1",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M6.66 6.66L1 1",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,fill:"none",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"User"),(0,o.jsx)("path",{d:"M12.1202 12.78C12.0502 12.77 11.9602 12.77 11.8802 12.78C10.1202 12.72 8.72021 11.28 8.72021 9.50998C8.72021 7.69998 10.1802 6.22998 12.0002 6.22998C13.8102 6.22998 15.2802 7.69998 15.2802 9.50998C15.2702 11.28 13.8802 12.72 12.1202 12.78Z",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M18.7398 19.3801C16.9598 21.0101 14.5998 22.0001 11.9998 22.0001C9.39977 22.0001 7.03977 21.0101 5.25977 19.3801C5.35977 18.4401 5.95977 17.5201 7.02977 16.8001C9.76977 14.9801 14.2498 14.9801 16.9698 16.8001C18.0398 17.5201 18.6398 18.4401 18.7398 19.3801Z",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,fill:"none",viewBox:"0 0 3 10",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Union"),(0,o.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.50879 2C0.956504 2 0.508789 1.55228 0.508789 1C0.508789 0.447715 0.956504 0 1.50879 0H1.51777C2.07006 0 2.51777 0.447715 2.51777 1C2.51777 1.55228 2.07006 2 1.51777 2H1.50879ZM2.21416 9C2.21416 9.3866 1.90076 9.7 1.51416 9.7C1.12756 9.7 0.81416 9.3866 0.81416 9V4C0.81416 3.6134 1.12756 3.3 1.51416 3.3C1.90076 3.3 2.21416 3.6134 2.21416 4V9Z",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 20 22",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Notification"),(0,o.jsx)("path",{d:"M0.776752 7.36345C0.819992 7.37426 0.865032 7.37966 0.908271 7.37966C1.14969 7.37966 1.37129 7.21572 1.43255 6.97069C1.9334 4.96728 3.12608 3.19267 4.78899 1.97837C5.0304 1.80181 5.08265 1.46491 4.90609 1.22349C4.72953 0.98207 4.39263 0.929823 4.15121 1.10638C2.28472 2.47022 0.946106 4.45922 0.383997 6.70946C0.31013 6.99772 0.48669 7.29138 0.776752 7.36345ZM15.2114 1.97837C16.8743 3.19267 18.0652 4.96548 18.5679 6.97069C18.6291 7.21572 18.8489 7.37966 19.0921 7.37966C19.1354 7.37966 19.1804 7.37426 19.2237 7.36345C19.5137 7.29138 19.6885 6.99772 19.6164 6.70765C19.0543 4.45922 17.7157 2.46842 15.8492 1.10458C15.6078 0.928021 15.2709 0.980269 15.0943 1.22169C14.9178 1.46491 14.97 1.80181 15.2114 1.97837ZM1.92799 15.3879C1.75144 16.0924 1.90638 16.8256 2.35498 17.3967C2.80179 17.9697 3.4756 18.2976 4.20165 18.2976H6.80681C7.06445 19.8289 8.39765 21 10.0011 21C11.6046 21 12.936 19.8289 13.1954 18.2976H15.8006C16.5266 18.2976 17.2004 17.9697 17.6472 17.3967C18.094 16.8238 18.249 16.0924 18.0742 15.3879L16.1194 7.58325C15.4168 4.7691 12.8999 2.80352 9.9993 2.80352C7.09868 2.80352 4.5818 4.7691 3.87916 7.58325L1.92799 15.3879ZM9.9993 19.919C8.99399 19.919 8.14903 19.229 7.90761 18.2976H12.0892C11.8496 19.229 11.0046 19.919 9.9993 19.919ZM9.9993 3.8845C12.4027 3.8845 14.489 5.51317 15.0709 7.84448L17.0221 15.6492C17.1176 16.0293 17.0329 16.4221 16.7933 16.7319C16.5518 17.04 16.1897 17.2166 15.7988 17.2166H4.19985C3.8089 17.2166 3.44677 17.04 3.20535 16.7319C2.96393 16.4239 2.88106 16.0293 2.97654 15.6492L4.92771 7.84448C5.50964 5.51317 7.59593 3.8845 9.9993 3.8845Z",fill:e,stroke:e,strokeWidth:"0.3"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,fill:"none",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Visible"),(0,o.jsx)("path",{d:"M15.5799 11.9999C15.5799 13.9799 13.9799 15.5799 11.9999 15.5799C10.0199 15.5799 8.41992 13.9799 8.41992 11.9999C8.41992 10.0199 10.0199 8.41992 11.9999 8.41992C13.9799 8.41992 15.5799 10.0199 15.5799 11.9999Z",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M11.9998 20.27C15.5298 20.27 18.8198 18.19 21.1098 14.59C22.0098 13.18 22.0098 10.81 21.1098 9.39997C18.8198 5.79997 15.5298 3.71997 11.9998 3.71997C8.46984 3.71997 5.17984 5.79997 2.88984 9.39997C1.98984 10.81 1.98984 13.18 2.88984 14.59C5.17984 18.19 8.46984 20.27 11.9998 20.27Z",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Invisible"),(0,o.jsx)("path",{d:"M14.5299 9.46992L9.46992 14.5299C8.81992 13.8799 8.41992 12.9899 8.41992 11.9999C8.41992 10.0199 10.0199 8.41992 11.9999 8.41992C12.9899 8.41992 13.8799 8.81992 14.5299 9.46992Z",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M17.8198 5.76998C16.0698 4.44998 14.0698 3.72998 11.9998 3.72998C8.46984 3.72998 5.17984 5.80998 2.88984 9.40998C1.98984 10.82 1.98984 13.19 2.88984 14.6C3.67984 15.84 4.59984 16.91 5.59984 17.77",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M8.41992 19.5299C9.55992 20.0099 10.7699 20.2699 11.9999 20.2699C15.5299 20.2699 18.8199 18.1899 21.1099 14.5899C22.0099 13.1799 22.0099 10.8099 21.1099 9.39993C20.7799 8.87993 20.4199 8.38993 20.0499 7.92993",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M15.5099 12.7C15.2499 14.11 14.0999 15.26 12.6899 15.52",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M9.47 14.53L2 22",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M21.9998 2L14.5298 9.47",stroke:e,strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 18 10",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Carrot down"),(0,o.jsx)("path",{d:"M17 1L9 9L1 1",stroke:e,strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 18 10",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Carrot up"),(0,o.jsx)("path",{d:"M17 9.5L9 1.5L1 9.5",stroke:e,strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 11 18",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Carrot left"),(0,o.jsx)("path",{d:"M9.5 0.999999L1.5 9L9.5 17",stroke:e,strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 11 18",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,o.jsx)("title",null,"Carrot right"),(0,o.jsx)("path",{d:"M1.5 0.999999L9.5 9L1.5 17",stroke:e,strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 20 21",fill:"#fff",xmlns:"http://www.w3.org/2000/svg"},(0,o.jsx)("title",null,"Radio on"),(0,o.jsx)("rect",{x:"0.7",y:"1.39995",width:"18.6",height:"18.6",rx:"9.3",fill:e}),(0,o.jsx)("rect",{x:"0.7",y:"1.39995",width:"18.6",height:"18.6",rx:"9.3",stroke:e,strokeWidth:"1.4"}),(0,o.jsx)("circle",{cx:"10",cy:"10.7",r:"5",fill:e})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 20 21",fill:"#fff",xmlns:"http://www.w3.org/2000/svg"},(0,o.jsx)("title",null,"Circle"),(0,o.jsx)("rect",{x:"0.7",y:"1.39995",width:"18.6",height:"18.6",rx:"9.3",fill:"none"}),(0,o.jsx)("rect",{x:"0.7",y:"1.39995",width:"18.6",height:"18.6",rx:"9.3",stroke:e,strokeWidth:"1.4"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 7 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.jsx)("title",null,"Arrow Up"),(0,o.jsx)("path",{d:"M3.17757 0.92293L3.17757 7.07727",stroke:e,strokeWidth:"0.8",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M0.416507 3.40515L3.17751 0.922901L5.93896 3.40515",stroke:e,strokeWidth:"0.8",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{width:`${t}px`,height:`${t}px`,viewBox:"0 0 7 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.jsx)("title",null,"Arrow Down"),(0,o.jsx)("path",{d:"M3.1779 7.07707L3.1779 0.922729",stroke:e,strokeWidth:"0.8",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.jsx)("path",{d:"M5.93896 4.59485L3.17796 7.0771L0.416504 4.59485",stroke:e,strokeWidth:"0.8",strokeLinecap:"round",strokeLinejoin:"round"})),({fill:e="#000",size:t=24})=>(0,o.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:t,height:t,viewBox:"0 0 21 20",fill:"none"},(0,o.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.0189 10.0002C16.8598 10.0002 18.3522 8.50775 18.3522 6.66683C18.3522 4.82588 16.8598 3.3335 15.0189 3.3335C13.4657 3.3335 12.1606 4.3958 11.7905 5.8335H2.51888C2.05865 5.8335 1.68555 6.2066 1.68555 6.66683C1.68555 7.12707 2.05865 7.50016 2.51888 7.50016H11.7905C12.1606 8.93783 13.4657 10.0002 15.0189 10.0002ZM13.3522 6.66683C13.3522 7.5873 14.0984 8.3335 15.0189 8.3335C15.9394 8.3335 16.6855 7.5873 16.6855 6.66683C16.6855 5.74635 15.9394 5.00016 15.0189 5.00016C14.0984 5.00016 13.3522 5.74635 13.3522 6.66683ZM1.68555 13.3335C1.68555 11.4926 3.17793 10.0002 5.01888 10.0002C6.57208 10.0002 7.87716 11.0625 8.2472 12.5002H17.5189C17.9791 12.5002 18.3522 12.8732 18.3522 13.3335C18.3522 13.7937 17.9791 14.1668 17.5189 14.1668H8.2472C7.87716 15.6045 6.57208 16.6668 5.01888 16.6668C3.17793 16.6668 1.68555 15.1744 1.68555 13.3335ZM6.68555 13.3335C6.68555 12.413 5.93936 11.6668 5.01888 11.6668C4.09841 11.6668 3.35221 12.413 3.35221 13.3335C3.35221 14.254 4.09841 15.0002 5.01888 15.0002C5.93936 15.0002 6.68555 14.254 6.68555 13.3335Z",fill:e}))],te=Q.reduce(((e,t,n)=>(e[t]=ee[n],e)),{});var ne=({name:e,color:t,size:n})=>{const r=te[e];return null==r?null:(0,o.jsx)(r,{fill:t,size:n})},re=({name:e,color:t="#000",size:n=24})=>(0,o.jsx)(ne,{name:e,color:t,size:n});const oe=J.withComponent("button",{target:"e1d2nzq00"}),ie=({title:e,size:t="empty",id:n,isOpened:r,ariaControls:i,onClick:s})=>{const l=((e,t)=>({empty:(0,o.css)(G,";","",""),small:(0,o.css)(G," color:",e.colors.white80,";margin-bottom:0;height:20px;font-size:16px;font-weight:500;& svg{width:16px;height:16px;& path{stroke:",e.colors.greyArrowSidebar,";stroke-width:1.6px;}}","",""),medium:(0,o.css)(G," color:",e.colors.greyDropdownText,";margin-bottom:0;height:40px;font-weight:500;font-size:14px;padding:11px 22px 9px 17px;border:1px solid ",e.colors.greyDropdownMain,";border-radius:5px;& svg{width:16px;height:8px;& path{stroke:",e.colors.greyDropdownText,";stroke-width:1.2px;}}","",""),large:(0,o.css)(G," margin-bottom:0;height:70px;font-weight:700;font-size:20px;padding:23px 22px 23px 30px;background:",t?e.colors.greyLighter:"none",";border-top-left-radius:20px;border-top-right-radius:20px;& svg{width:20px;height:10px;& path{stroke:",e.colors.greyDarker,";stroke-width:1.2px;}}","","")}))((0,o.useTheme)(),r);return(0,o.jsx)(oe,{type:"button","data-testid":"accordion-title",css:l[t],id:`${n}`,"aria-expanded":r,"aria-controls":i,onClick:()=>{"function"==typeof s&&s()}},(0,o.jsx)(x.Fragment,null,e,r?(0,o.jsx)(re,{name:"carrot-down"}):(0,o.jsx)(re,{name:"carrot-up"})))};var se=H("div",{target:"e1ddmilo0"})("display:flex;flex-direction:column;align-items:center;padding:20px;background:#fff;box-shadow:",(({theme:e,noShadow:t})=>!t&&`0px 10px 40px ${e.colors.greyDarker60}`),";border-radius:10px;");const le=({title:e,isOpened:t,ariaControls:n,id:r,size:i="empty",renderTitle:s,renderContent:l,onClick:a,...c})=>(0,o.jsx)(se,h({role:"region",tabIndex:0,title:e,css:X[i]},c),s({id:r,isOpened:t,title:e,size:i,ariaControls:n,onClick:a}),l({id:`${n}`,isOpened:t,size:i,"aria-labelledby":`${r}`})),ae=H("div",{target:"e1gxdpq60"})("border-radius:100px;overflow:hidden;width:",(({size:e})=>e),"px;height:",(({size:e})=>e),"px;background:",(({image:e})=>`url(${e})`)," center no-repeat;");var ce=ae,ue=H("div",{target:"e1kzcm730"})({name:"1peiwb3",styles:"display:inline-block;font-family:Manrope,sans-serif;font-style:normal;font-weight:500;border-radius:6px;text-align:center;color:#fff;white-space:pre"});const de={small:{name:"56mou",styles:"height:18px;padding:4px 8px;font-size:0.438rem"},medium:{name:"a7vpx0",styles:"height:24px;padding:4px 15px;font-size:0.688rem"},large:{name:"n10po3",styles:"height:32px;padding:4px 18px;font-size:1rem"}},pe={pink:i,yellow:s,green:c,turquoise:u,purple:d,blueLight:f,blue:p};var fe=({color:e="purple",size:t="medium",children:n,...r})=>(0,o.jsx)(ue,h({css:[pe[e],de[t],"","","",""]},r),n||null),ge=H("div",{target:"ecpj7sg0"})("display:flex;align-items:",(({alignItems:e})=>e||"center"),";width:100%;flex-direction:",(({direction:e})=>e||"row"),";");const he=H("button",{target:"eaatt7n0"})({name:"by1nkt",styles:"display:inline-flex;align-items:center;position:relative;border:none;padding:0 16px;font:inherit;cursor:pointer;outline:inherit;border-radius:12px"}),me=({text:e,className:t,testId:n})=>(0,o.jsx)("span",{className:t,"data-testid":n},e),xe=({text:e})=>{const t=(0,o.useTheme)();return(0,o.jsx)(me,{testId:"white-button-text",text:e,css:(0,o.css)({color:t.colors.white},"","")})},be=({text:e})=>{const t=(0,o.useTheme)();return(0,o.jsx)(me,{testId:"grey-button-text",text:e,css:(0,o.css)({color:t.colors.greyDarker},"","")})},ve=({text:e})=>{const t=(0,o.useTheme)();return(0,o.jsx)(me,{testId:"greylight-button-text",text:e,css:(0,o.css)({color:t.colors.greyButtonGradient},"","")})},ye=({text:e})=>{const t=(0,o.useTheme)();return(0,o.jsx)(me,{testId:"disabled-button-text",text:e,css:(0,o.css)({color:t.colors.grey40},"","")})},we=(e,t,n="12px")=>(0,o.css)("&:focus::before{",Ce(e,t,n),";}","",""),Ce=(e,t,n="12px")=>(0,o.css)("content:'';position:absolute;top:0px;right:0px;bottom:0px;left:0px;border-style:solid;border-width:1px;border-color:",e.colors[t||"greyDarker"],";border-radius:",n,";","",""),Le={name:"3s76dy",styles:"display:grid;span{display:inline-block;margin:auto;}"},ke={name:"rbcvie",styles:"display:inline-flex;margin-right:6px"},je={name:"1640ilx",styles:"display:inline-flex;margin-left:6px"},Me={small:{name:"9hr42i",styles:"height:36px;font-size:13.33px;font-weight:400;letter-spacing:0.8px;padding:0 16px"},medium:{name:"1xlglgs",styles:"height:46px;font-weight:500;font-size:16px;letter-spacing:0.8px;padding:0 24px"},large:{name:"42ly3s",styles:"height:54px;font-weight:400;font-size:16px;letter-spacing:0.8px;padding:0 32px"}},Se={primary:e=>(0,o.css)("color:",e.colors.white,";background:linear-gradient(\n 108.3deg,\n ",e.colors.greyDarker," -0.36%,\n ",e.colors.greyDark," 100%\n );&:hover{background:linear-gradient(\n 108.3deg,\n ",e.colors.greyButtonGradient," -0.36%,\n ",e.colors.greyButtonGradientLight," 100%\n );box-shadow:-4px 4px 14px ",e.colors.greyDarker14,";}&:active{background:",e.colors.greyDarker,";box-shadow:-4px 4px 14px ",e.colors.greyDarker14,";}&:disabled{background:",e.colors.grey,";}&:focus{background:linear-gradient(\n 108.3deg,\n ",e.colors.greyBackground," -0.36%,\n ",e.colors.greyBackgroundLight," 100%\n );box-shadow:-4px 4px 14px ",e.colors.greyDarker14,";}","",""),secondary:e=>(0,o.css)("background:",e.colors.greyLighter,";box-shadow:0px 10px 40px ",e.colors.greyShadow,";&:hover{background:",e.colors.white,";box-shadow:0px 10px 40px ",e.colors.greyShadowHover,";}&:active{background:",e.colors.greyFocused,";box-shadow:0px 10px 40px ",e.colors.greyShadow,";}&:disabled{background:",e.colors.grey,";box-shadow:0px 10px 40px ",e.colors.greyShadow,";}&:focus{background:",e.colors.greySelectedMenuItem,";box-shadow:0px 10px 40px ",e.colors.greyShadow,";}","",""),tertiary:e=>(0,o.css)("background:transparent;",we(e,"greyOutline"),";","",""),info:e=>(0,o.css)("color:",e.colors.white,";background:linear-gradient(\n 247deg,\n ",e.colors.blueLighter," 14.71%,\n ",e.colors.blue," 85.29%\n );&:hover{background:linear-gradient(\n 247deg,\n ",e.colors.blueButtonHoverGradientFrom," 14.71%,\n ",e.colors.blueButtonHoverGradientTo," 85.29%\n );}&:active{background:",e.colors.blueButtonActive,";}&:disabled{background:",e.colors.grey,";}","","")},Ee=(0,x.forwardRef)((function({block:e=!1,size:t="small",text:n,startIcon:r,endIcon:i,variant:s="primary",type:l="button",className:a,isDisabled:c,onClick:u,children:d,...p},f){if(!(n||r||i||d))throw new Error("Button must have either text or icon or children");const g=(0,o.useTheme)(),[m,b]=(0,x.useState)(!1),v="primary"===s,y="info"===s,w="tertiary"===s,C=n?{}:{margin:0},L=v||y||w||"secondary"===s?Se[s]&&Se[s](g):void 0,k=(0,o.jsx)(he,h({ref:f,css:[Me[t],L,"","","",""],type:l,disabled:c,className:a,onMouseEnter:()=>b(!0),onMouseLeave:()=>b(!1),onClick:u},p),r?(0,o.jsx)("span",{style:C,css:[ke,"","","",""]},r):null,d||(n?c?(0,o.jsx)(ye,{text:n,size:t}):v||y?(0,o.jsx)(xe,{text:n,size:t}):w&&m?(0,o.jsx)(ve,{text:n,size:t}):(0,o.jsx)(be,{text:n,size:t}):null),i?(0,o.jsx)("span",{style:C,css:je},i):null);return e?(0,o.jsx)(ge,{css:Le},k):k}));var Re=Ee,Oe=({children:e,...t})=>(0,o.jsx)(se,t,e),Te=({children:e,icon:t,transparent:n,...r})=>(0,o.jsx)(J,h({transparent:n,hasIcon:!!t},r),t?(0,o.jsx)("span",{style:{position:"absolute",left:"-30px",top:"-30px"}},t):null,e);const Ae=H("button",{target:"e1u7e71a0"})("cursor:pointer;width:24px;height:24px;border:none;border-radius:50%;border:",(({active:e})=>e?"1.4px solid #fff":"none"),";box-shadow:",(({active:e})=>e?"inherit":"none !important"),";"),De={pink:i,yellow:s,green:c,turquoise:u,blueLight:f,blue:p,purple:d};var Ze={name:"eebmbo",styles:"display:flex;gap:10px;list-style:none;padding:0"},ze=({onChange:e,initColor:t})=>{const[n,r]=(0,x.useState)(t||"");return(0,o.jsx)("ul",{css:Ze},Object.keys(De).map((t=>(0,o.jsx)("li",{key:t},(0,o.jsx)(Ae,{active:t===n,onClick:()=>(t=>{e(t),r(t)})(t),css:[De[t],"","","",""]})))))};const Pe=H("label",{target:"e1t1qetj0"})("display:inline-block;flex:1;font-weight:500;font-size:1rem;line-height:22px;color:",(({theme:e})=>e.colors.greyDarker),";margin:0 0 6px 4px;");var Ie=({children:e,htmlFor:t,className:n,onMouseEnter:r,onMouseLeave:i})=>(0,o.jsx)(Pe,{htmlFor:t,className:n,onMouseEnter:r,onMouseLeave:i},e);const $e={blueInput:e=>(0,o.css)("& input:disabled+div,& input:indeterminate:disabled+div{background:",e.colors.greyFocused,";}& input:not(:checked, :indeterminate, :disabled)+div::before{border:1.5px solid ",e.colors.greyDropdownMain,";}& input:not(:checked, :indeterminate, :disabled)+div:hover::before{border:1.5px solid ",e.colors.greyDropdownMain,";}& input:not(:disabled):checked+div::before,& input:not(:disabled):indeterminate+div::before{background:",e.colors.blueNotification,";}& input:not(:disabled):checked+div:hover::before{background:",e.colors.blueNotification,";}& input:not(:disabled):checked+div+span{font-weight:500;color:",e.colors.greyDropdownText,";}& input:focus+div{box-shadow:-4px 4px 10px ",e.colors.blueNotification40,";}","",""),greenInput:e=>(0,o.css)("& input:focus+div{box-shadow:-4px 4px 10px ",e.colors.green40,";}& input:disabled+div,& input:indeterminate:disabled+div{background:",e.colors.greyFocused,";}& input:not(:checked, :indeterminate, :disabled)+div::before{border:1.5px solid ",e.colors.green,";}& input:not(:checked, :indeterminate, :disabled)+div:hover::before{border:1.5px solid ",e.colors.green60,";}& input:not(:disabled):checked+div::before,& input:not(:disabled):indeterminate+div::before{background:linear-gradient(\n 117.5deg,\n ",e.colors.greenLighter," 17.12%,\n ",e.colors.green," 85.53%\n );}& input:not(:disabled):checked+div:hover::before,& input:not(:disabled):indeterminate+div:hover::before{background:linear-gradient(\n 117.5deg,\n ",e.colors.greenLighter60," 17.12%,\n ",e.colors.green60," 85.53%\n );}","","")},Ve=H(Ie,{target:"e9e7wc30"})("position:relative;display:inline-flex;flex-grow:0;align-items:center;vertical-align:middle;cursor:pointer;&:has(input:disabled){cursor:default;}div{position:relative;height:20px;width:20px;display:flex;align-items:center;justify-content:center;border-radius:6px;}input+div{svg{z-index:2;}&::before{content:'';position:absolute;box-sizing:border-box;height:20px;width:20px;top:0;left:0;border-radius:6px;z-index:1;}}",(({color:e="green",theme:t})=>{switch(e){case"blue":return $e.blueInput(t);case"green":return $e.greenInput(t)}})," input{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}span{margin-left:10px;font-size:14px;font-weight:100;}");var Fe=({text:e,id:t,onChange:n,isDisabled:r,externalState:i,initialState:s,isIndeterminate:l,name:a="",isRequired:c=!1,ref:u,...d})=>{const[p,f]=(0,x.useState)(Boolean(s)),g=(0,x.useId)(),m=(0,o.useTheme)(),b=(0,x.useRef)(null);(0,x.useEffect)((()=>{b.current&&(b.current.indeterminate=Boolean(l))}),[l,p]),(0,x.useEffect)((()=>{"boolean"==typeof i&&f(Boolean(i))}),[i]);const v=t||g;return(0,o.jsx)(Ve,h({htmlFor:v},d),(0,o.jsx)("input",{id:v,type:"checkbox",checked:p,onChange:()=>{const e=!p;f(e),n(e)},disabled:r,ref:e=>{b.current=e,u&&(u.current=e)},name:a,required:c}),(0,o.jsx)("div",null,l?(0,o.jsx)(re,{name:"minus",size:12,color:m.colors.white}):p?(0,o.jsx)(re,{name:"check",size:12,color:m.colors.white}):null),e?(0,o.jsx)("span",null,e):null)},He=e=>"checkbox"===e.type,Ne=e=>e instanceof Date,Be=e=>null==e;const _e=e=>"object"==typeof e;var We=e=>!Be(e)&&!Array.isArray(e)&&_e(e)&&!Ne(e),qe=e=>We(e)&&e.target?He(e.target)?e.target.checked:e.target.value:e,Ue=(e,t)=>e.has((e=>e.substring(0,e.search(/\.\d+(\.|$)/))||e)(t)),Xe=e=>{const t=e.constructor&&e.constructor.prototype;return We(t)&&t.hasOwnProperty("isPrototypeOf")},Ge="undefined"!=typeof window&&void 0!==window.HTMLElement&&"undefined"!=typeof document;function Ke(e){let t;const n=Array.isArray(e);if(e instanceof Date)t=new Date(e);else if(e instanceof Set)t=new Set(e);else{if(Ge&&(e instanceof Blob||e instanceof FileList)||!n&&!We(e))return e;if(t=n?[]:{},n||Xe(e))for(const n in e)e.hasOwnProperty(n)&&(t[n]=Ke(e[n]));else t=e}return t}var Ye=e=>Array.isArray(e)?e.filter(Boolean):[],Je=e=>void 0===e,Qe=(e,t,n)=>{if(!t||!We(e))return n;const r=Ye(t.split(/[,[\].]+?/)).reduce(((e,t)=>Be(e)?e:e[t]),e);return Je(r)||r===e?Je(e[t])?n:e[t]:r};const et={BLUR:"blur",FOCUS_OUT:"focusout",CHANGE:"change"},tt={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},nt=x.createContext(null),rt=()=>x.useContext(nt);var ot=(e,t,n,r=!0)=>{const o={defaultValues:t._defaultValues};for(const i in e)Object.defineProperty(o,i,{get:()=>{const o=i;return t._proxyFormState[o]!==tt.all&&(t._proxyFormState[o]=!r||tt.all),n&&(n[o]=!0),e[o]}});return o},it=e=>We(e)&&!Object.keys(e).length,st=(e,t,n,r)=>{n(e);const{name:o,...i}=e;return it(i)||Object.keys(i).length>=Object.keys(t).length||Object.keys(i).find((e=>t[e]===(!r||tt.all)))},lt=e=>Array.isArray(e)?e:[e],at=(e,t,n)=>n&&t?e===t||Array.isArray(e)&&e.some((e=>e&&n&&e===t)):!e||!t||e===t||lt(e).some((e=>e&&(e.startsWith(t)||t.startsWith(e))));function ct(e){const t=x.useRef(e);t.current=e,x.useEffect((()=>{const n=!e.disabled&&t.current.subject&&t.current.subject.subscribe({next:t.current.next});return()=>{n&&n.unsubscribe()}}),[e.disabled])}var ut=e=>"string"==typeof e,dt=(e,t,n,r,o)=>ut(e)?(r&&t.watch.add(e),Qe(n,e,o)):Array.isArray(e)?e.map((e=>(r&&t.watch.add(e),Qe(n,e)))):(r&&(t.watchAll=!0),n),pt=e=>/^\w*$/.test(e),ft=e=>Ye(e.replace(/["|']|\]/g,"").split(/\.|\[/));function gt(e,t,n){let r=-1;const o=pt(t)?[t]:ft(t),i=o.length,s=i-1;for(;++r<i;){const t=o[r];let i=n;if(r!==s){const n=e[t];i=We(n)||Array.isArray(n)?n:isNaN(+o[r+1])?{}:[]}e[t]=i,e=e[t]}return e}function ht(e){const t=rt(),{name:n,disabled:r,control:o=t.control,shouldUnregister:i}=e,s=Ue(o._names.array,n),l=function(e){const t=rt(),{control:n=t.control,name:r,defaultValue:o,disabled:i,exact:s}=e||{},l=x.useRef(r);l.current=r,ct({disabled:i,subject:n._subjects.values,next:e=>{at(l.current,e.name,s)&&c(Ke(dt(l.current,n._names,e.values||n._formValues,!1,o)))}});const[a,c]=x.useState(n._getWatch(r,o));return x.useEffect((()=>n._removeUnmounted())),a}({control:o,name:n,defaultValue:Qe(o._formValues,n,Qe(o._defaultValues,n,e.defaultValue)),exact:!0}),a=function(e){const t=rt(),{control:n=t.control,disabled:r,name:o,exact:i}=e||{},[s,l]=x.useState(n._formState),a=x.useRef(!0),c=x.useRef({isDirty:!1,isLoading:!1,dirtyFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1}),u=x.useRef(o);return u.current=o,ct({disabled:r,next:e=>a.current&&at(u.current,e.name,i)&&st(e,c.current,n._updateFormState)&&l({...n._formState,...e}),subject:n._subjects.state}),x.useEffect((()=>(a.current=!0,c.current.isValid&&n._updateValid(!0),()=>{a.current=!1})),[n]),ot(s,n,c.current,!1)}({control:o,name:n}),c=x.useRef(o.register(n,{...e.rules,value:l}));return c.current=o.register(n,e.rules),x.useEffect((()=>{const e=o._options.shouldUnregister||i,t=(e,t)=>{const n=Qe(o._fields,e);n&&(n._f.mount=t)};if(t(n,!0),e){const e=Ke(Qe(o._options.defaultValues,n));gt(o._defaultValues,n,e),Je(Qe(o._formValues,n))&>(o._formValues,n,e)}return()=>{(s?e&&!o._state.action:e)?o.unregister(n):t(n,!1)}}),[n,o,s,i]),x.useEffect((()=>{o._updateDisabledField({disabled:r,fields:o._fields,name:n})}),[r,n,o]),{field:{name:n,value:l,disabled:r,onChange:x.useCallback((e=>c.current.onChange({target:{value:qe(e),name:n},type:et.CHANGE})),[n]),onBlur:x.useCallback((()=>c.current.onBlur({target:{value:Qe(o._formValues,n),name:n},type:et.BLUR})),[n,o]),ref:e=>{const t=Qe(o._fields,n);t&&e&&(t._f.ref={focus:()=>e.focus(),select:()=>e.select(),setCustomValidity:t=>e.setCustomValidity(t),reportValidity:()=>e.reportValidity()})}},formState:a,fieldState:Object.defineProperties({},{invalid:{enumerable:!0,get:()=>!!Qe(a.errors,n)},isDirty:{enumerable:!0,get:()=>!!Qe(a.dirtyFields,n)},isTouched:{enumerable:!0,get:()=>!!Qe(a.touchedFields,n)},error:{enumerable:!0,get:()=>Qe(a.errors,n)}})}}tt.onSubmit,tt.onChange;var mt=({control:e,name:t,isRequired:n=!1,...r})=>{const{field:i}=ht({control:e,name:t,rules:{required:n}});return(0,o.jsx)(Fe,h({name:t,onChange:e=>{i.onChange(e)},isRequired:n},r))},xt=l(94);const bt=H("button",{target:"er3kf7h0"})((({isMultiple:e,theme:t})=>e?we(t,"greyDropdownFocused","5px"):we(t))," display:flex;flex-flow:row nowrap;align-items:center;justify-content:flex-start;gap:10px;position:relative;color:",(({colors:e,isOpen:t})=>t&&e?.[0]||"initial"),";width:auto;padding:8px 14px;font:inherit;font-size:13px;text-align:left;line-height:18px;border:none;cursor:pointer;outline:inherit;border-radius:12px;background:",(({isOpen:e,theme:t})=>e?`linear-gradient(108.3deg, ${t.colors.greyDarker} -0.36%, ${t.colors.greyDark} 100%)`:t.colors.greyLighter),";&:disabled{background:",(({theme:e})=>e.colors.grey),";}&:focus{color:",(({colors:e,theme:t})=>e?.[0]||t.colors.greyDarker),";background:",(({isOpen:e,theme:t})=>e?`linear-gradient(108.3deg, ${t.colors.greyDarker} -0.36%, ${t.colors.greyDark} 100%)`:t.colors.greyFocused),";}svg{path{stroke:",(({colors:e,theme:t})=>e?.[0]||t.colors.greyDarker),";}}",(({isMultiple:e,selectedCount:t,theme:n})=>e&&(({theme:e,selectedCount:t=0})=>{let n=e.colors.greyDropdownMain,r=e.colors.greyDropdownFocused,i=e.colors.white;return t>0&&(n=e.colors.blueDropdownWithSelectedItemsBorder,r=e.colors.blueDropdownWithSelectedItemsBorder,i=e.colors.blueDropdownWithSelectedItems),(0,o.css)("justify-content:space-between;height:40px;padding:11px 15px 9px 10px;font-size:14px;font-weight:500;color:",e.colors.greyDropdownText,";border:1px solid ",n,";border-radius:5px;background:",i,";max-width:250px;&:focus{color:",e.colors.greyDropdownText,";background:",i,";&::before{border-color:",r,";}}svg{path{stroke:",e.colors.greyDarker,";}}","","")})({theme:n,selectedCount:t})),";");var vt=({onClick:e,onFocus:t,isOpen:n,isMultiple:r,selectedCount:i,disabled:s,children:l,ariaLabelledby:a,ariaControls:c,colors:u,className:d})=>(0,o.jsx)(bt,{className:d,colors:u,isOpen:n,isMultiple:r,selectedCount:i,onClick:t=>{t.currentTarget.focus(),e&&e(t)},onFocus:t,disabled:s,role:"combobox","aria-labelledby":a,"aria-controls":c,"aria-expanded":n,"aria-haspopup":"listbox"},l);const yt=H("div",{target:"e1lkmrt90"})({name:"s5xdrg",styles:"display:flex;align-items:center"});var wt=({isUp:e})=>(0,o.jsx)(yt,null,(0,o.jsx)(re,{name:"carrot-"+(e?"up":"down"),size:12}));const Ct=x.createContext({activeItem:null,onChange:()=>{}});var Lt=Ct,kt=H("li",{target:"e784n6w0"})("overflow:hidden;height:34px;padding:8px 16px;border:none;background:",(({isActive:e,theme:t})=>e?t.colors.greySelectedMenuItem:"inherit"),";&:hover{background:",(({theme:e})=>e.colors.greyLighter),";}",(({isMultiple:e,theme:t})=>e&&(({theme:e})=>(0,o.css)("background:none;color:",e.colors.greyDisabled,";&:hover{background:none;}","",""))({theme:t})),";");const jt=H("ul",{target:"e1qg2z4z0"})("position:absolute;width:100%;list-style:none;margin:4px 0 0;padding:0;background:#fff;border-radius:8px;overflow-x:hidden;overflow-y:auto;z-index:2;filter:",(({theme:e})=>`drop-shadow(-4px 4px 14px ${e.colors.greyDarker14})`),";backdrop-filter:",(({theme:e})=>`drop-shadow(-4px 4px 14px ${e.colors.greyDarker14})`),";"),Mt={name:"1vl8pyi",styles:"display:flex;align-items:center;cursor:pointer;font:inherit;font-size:0.813rem;outline:inherit;text-align:left;width:100%;padding:0;margin:0;background:none;color:inherit;border:none"},St={id:Number.NaN,value:"No items"};var Et=({ariaLabelledby:e,id:t,children:n})=>{const{onChange:r,activeItem:i}=x.useContext(Ct),s=v().Children.toArray(n).filter(Boolean).map((e=>{const t=i?.value===e.props.value;return v().cloneElement(e,{...e.props,isActive:t,"aria-selected":t,onClick:r.bind(null,e.props.value)},(0,o.jsx)("button",{type:"button",css:Mt},e.props.children||e.props.label||e.props.value))}));return 0===s.length&&s.push((0,o.jsx)(kt,{key:St.id,value:"",onClick:r.bind(null,""),"aria-selected":!1},(0,o.jsx)("button",{css:Mt},St.value))),(0,o.jsx)(jt,{role:"listbox",tabindex:"-1",id:t,"aria-labelledby":e},s)};const Rt=H("div",{target:"eizhqtp0"})({name:"11ffxfj",styles:"display:inline-block;position:relative"});var Ot=({selectedItem:e,isDisabled:t,isOpen:n,children:r,onChange:i,className:s})=>{const l=(0,o.useTheme)(),a=(0,x.useRef)(null),c="Select something",u=(0,x.useId)(),d=[],[p,f]=(0,x.useState)(!1),[g,h]=(0,x.useState)(n||!1),[m,b]=(0,x.useState)([]),[y,w]=(0,x.useState)(e),C=e=>{const n=d.filter((t=>t.value===e))[0];h(!1),!t&&e&&n.value!==y?.value&&(w(n),i&&i(n))};(0,xt.useClickOutside)(a,(()=>g&&h(!1))),(0,x.useEffect)((()=>{t?b([l.colors.greyDarker60,l.colors.grey20]):g?b([l.colors.white,l.colors.white60]):p&&b([l.colors.greyDarker,l.colors.greyDarker60])}),[g,t,p]),(0,x.useEffect)((()=>{t&&g&&h(!1)}),[t]);const L=v().Children.toArray(r).filter(Boolean).map(((e,t)=>(d.push(e.props),v().cloneElement(e,{index:t,onClick:C.bind(void 0),...e.props})))),k=v().useMemo((()=>({onChange:C,activeItem:y})),[C,y]),j=y&&(y.label||y.children||y.value||y)||c;return(0,o.jsx)(Lt.Provider,{value:k},(0,o.jsx)(Rt,{ref:a,"data-testid":"dropdown"},(0,o.jsx)(vt,{className:s,isOpen:g,disabled:t,onClick:h.bind(null,!g),onFocus:f.bind(null,!0),colors:m,ariaLabelledby:`dropdown-label-${u}`,ariaControls:`dropdown-popup-${u}`},j,(0,o.jsx)(wt,{isUp:g})),g?(0,o.jsx)(Et,null,L):null))};const Tt=H("input",{target:"emgvleb0"})("flex:1;background:",(({theme:e})=>e.colors.white),";border-radius:12px;background-origin:border-box;background-clip:padding-box,border-box;border:",(({theme:e})=>`1px solid ${e.colors.grey}`),";color:",(({theme:e})=>e.colors.greyDarker),";width:100%;height:44px;padding:14px;font-weight:400;font-size:0.875rem;line-height:1rem;&::placeholder{color:",(({theme:e})=>e.colors.greyDarker60),";}&:disabled{color:",(({theme:e})=>`${e.colors.grey}`),";background:",(({theme:e})=>e.colors.greyLighter),";&::placeholder{color:",(({theme:e})=>e.colors.grey),";}&:disabled,&:disabled:hover{border:",(({theme:e})=>`1px solid ${e.colors.grey}`),";background-image:none;}}"),At=H("div",{target:"ewb6hsz0"})("position:relative;width:100%;*{color:",(({theme:e,disabled:t})=>t?`${e.colors.grey} !important`:"inherit"),";}"),Dt={name:"1g5wypb",styles:"position:absolute;top:34%;right:14px;display:flex;justify-content:center;align-items:center;border-radius:10px;width:14px;height:14px"},Zt={name:"1wiujvu",styles:"position:absolute;top:0;left:14px;height:100%;width:auto;display:flex;justify-content:center;align-items:center;border-radius:10px"},zt={name:"14yja53",styles:"position:absolute;top:0;right:14px;height:100%;width:auto;display:flex;justify-content:center;align-items:center;border-radius:10px"},Pt=H("div",{target:"e1urrxy10"})("background:",(({theme:e})=>`linear-gradient(117.5deg, ${e.colors.red}, ${e.colors.redLighter});`),";svg{transform:rotateX(180deg);}"),It=()=>(0,o.jsx)(Pt,{css:Dt},(0,o.jsx)(re,{name:"union",size:10,color:"#fff"})),$t=H("div",{target:"ea93yeh0"})("background:",(({theme:e})=>`linear-gradient(68.38deg, ${e.colors.greenLighter}, ${e.colors.green});`),";"),Vt=()=>(0,o.jsx)($t,{css:Dt},(0,o.jsx)(re,{name:"check",size:10,color:"#fff"})),Ft={basic:e=>(0,o.css)({[`& ${Tt}`]:{border:`1px solid ${e.colors.grey}`,"&:hover":{border:`1.4px solid ${e.colors.greyDarker60}`},"&:focus":{border:`2px solid ${e.colors.grey40}`}}},"","","",""),error:e=>(0,o.css)({[`& ${Tt}`]:{border:"double 1px transparent",backgroundImage:`linear-gradient(white, white),\n linear-gradient(to right, ${e.colors.red}, ${e.colors.redLighter})`,"&:hover":{border:"double 1.4px transparent"},"&:focus":{border:"double 2px transparent",backgroundImage:`linear-gradient(white, white),\n linear-gradient(\n to right,\n ${e.colors.red40},\n ${e.colors.redLighter40}\n )`}}},"","","",""),success:e=>(0,o.css)({[`& ${Tt}`]:{border:"double 1px transparent",backgroundImage:`linear-gradient(white, white),\n linear-gradient(\n to right,\n ${e.colors.greenLighter},\n ${e.colors.green}\n )`,"&:hover":{border:"double 1.4px transparent"},"&:focus":{border:"double 2px transparent",backgroundImage:`linear-gradient(white, white),\n linear-gradient(\n to right,\n ${e.colors.greenLighter40},\n ${e.colors.green40}\n )`}},svg:{stroke:`${e.colors.green}`}},"","","","")};var Ht=({name:e,type:t="text",placeholder:n,register:r,validationSchema:i,status:s="basic",disabled:l=!1,startElement:a,endElement:c,className:u})=>{if(!r)throw new Error("Input component must be used within a Form component");const d=()=>!l&&!c;return(0,o.jsx)(At,{css:[Ft[s],"","","",""],disabled:l},a?(0,o.jsx)("div",{css:Zt},a):null,(0,o.jsx)(Tt,h({type:t,id:`formElement-${e}`,placeholder:n,disabled:l,css:(0,o.css)({paddingLeft:a&&40,paddingRight:c&&40},"",""),className:u},r(e,i))),"error"===s&&d()?(0,o.jsx)(It,null):null,"success"===s&&d()?(0,o.jsx)(Vt,null):null,c?(0,o.jsx)("div",{css:zt},c):null)};const Nt=(0,x.createContext)([!1,()=>{}]);var Bt=({isOpen:e,...t})=>{const[n,r]=(0,x.useState)(e||!1);return(0,o.jsx)(Nt.Provider,h({value:[n,r]},t))},_t=l(468),Wt=function({children:e}){const[,t]=(0,x.useContext)(Nt);return(0,x.cloneElement)(e,{onClick:(0,_t.callAll)((()=>t(!1)),e.props.onClick)})};const qt=(e,t,n)=>(0,o.css)("display:",t?"flex":"none",";position:fixed;inset:0;justify-content:center;align-items:center;background-color:",n?"transparent":e.colors.grey20,";z-index:1000;","",""),Ut=(e,t)=>(0,o.css)("display:",t?"flex":"none",";flex-direction:column;position:relative;width:100%;max-width:400px;padding:20px;background-color:white;box-shadow:0 5px 15px ",e.colors.grey20,";border-radius:20px;","","");var Xt=({isOpen:e,noBackground:t,children:n,"aria-label":r,...i})=>{const s=(0,o.useTheme)();return(0,o.jsx)("div",{role:"button",tabIndex:-1,css:qt(s,e,t)},(0,o.jsx)("div",h({"aria-modal":"true","aria-labelledby":r,role:"dialog",css:Ut(s,e)},i),n))},Gt=function({children:e,"aria-label":t,...n}){const[r]=(0,x.useContext)(Nt);return(0,o.jsx)(Xt,h({"aria-label":t,isOpen:r},n),r?e:null)},Kt=function({children:e}){const[,t]=(0,x.useContext)(Nt);return(0,x.cloneElement)(e,{onClick:(0,_t.callAll)((()=>t(!0)),e.props.onClick)})};function Yt(e){return en(e)?(e.nodeName||"").toLowerCase():"#document"}function Jt(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function Qt(e){var t;return null==(t=(en(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function en(e){return e instanceof Node||e instanceof Jt(e).Node}function tn(e){return e instanceof Element||e instanceof Jt(e).Element}function nn(e){return e instanceof HTMLElement||e instanceof Jt(e).HTMLElement}function rn(e){return"undefined"!=typeof ShadowRoot&&(e instanceof ShadowRoot||e instanceof Jt(e).ShadowRoot)}function on(e){const{overflow:t,overflowX:n,overflowY:r,display:o}=un(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!["inline","contents"].includes(o)}function sn(e){return["table","td","th"].includes(Yt(e))}function ln(e){const t=an(),n=un(e);return"none"!==n.transform||"none"!==n.perspective||!!n.containerType&&"normal"!==n.containerType||!t&&!!n.backdropFilter&&"none"!==n.backdropFilter||!t&&!!n.filter&&"none"!==n.filter||["transform","perspective","filter"].some((e=>(n.willChange||"").includes(e)))||["paint","layout","strict","content"].some((e=>(n.contain||"").includes(e)))}function an(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function cn(e){return["html","body","#document"].includes(Yt(e))}function un(e){return Jt(e).getComputedStyle(e)}function dn(e){return tn(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function pn(e){if("html"===Yt(e))return e;const t=e.assignedSlot||e.parentNode||rn(e)&&e.host||Qt(e);return rn(t)?t.host:t}function fn(e){const t=pn(e);return cn(t)?e.ownerDocument?e.ownerDocument.body:e.body:nn(t)&&on(t)?t:fn(t)}function gn(e,t){var n;void 0===t&&(t=[]);const r=fn(e),o=r===(null==(n=e.ownerDocument)?void 0:n.body),i=Jt(r);return o?t.concat(i,i.visualViewport||[],on(r)?r:[]):t.concat(r,gn(r))}function hn(e){let t=e.activeElement;for(;null!=(null==(n=t)||null==(r=n.shadowRoot)?void 0:r.activeElement);){var n,r;t=t.shadowRoot.activeElement}return t}function mn(e,t){if(!e||!t)return!1;const n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&rn(n)){let n=t;for(;n;){if(e===n)return!0;n=n.parentNode||n.host}}return!1}function xn(){const e=navigator.userAgentData;return null!=e&&e.platform?e.platform:navigator.platform}function bn(e){if(0===e.mozInputSource&&e.isTrusted)return!0;const t=/Android/i;return(t.test(xn())||t.test(function(){const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?e.brands.map((e=>{let{brand:t,version:n}=e;return t+"/"+n})).join(" "):navigator.userAgent}()))&&e.pointerType?"click"===e.type&&1===e.buttons:0===e.detail&&!e.pointerType}function vn(e){return 0===e.width&&0===e.height||1===e.width&&1===e.height&&0===e.pressure&&0===e.detail&&"mouse"!==e.pointerType||e.width<1&&e.height<1&&0===e.pressure&&0===e.detail}function yn(e,t){const n=["mouse","pen"];return t||n.push("",void 0),n.includes(e)}function wn(e){return(null==e?void 0:e.ownerDocument)||document}function Cn(e,t){if(null==t)return!1;if("composedPath"in e)return e.composedPath().includes(t);const n=e;return null!=n.target&&t.contains(n.target)}function Ln(e){return"composedPath"in e?e.composedPath()[0]:e.target}const kn="input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])";function jn(e){return nn(e)&&e.matches(kn)}function Mn(e){e.preventDefault(),e.stopPropagation()}const Sn=Math.min,En=Math.max,Rn=Math.round,On=Math.floor,Tn=e=>({x:e,y:e}),An={left:"right",right:"left",bottom:"top",top:"bottom"},Dn={start:"end",end:"start"};function Zn(e,t,n){return En(e,Sn(t,n))}function zn(e,t){return"function"==typeof e?e(t):e}function Pn(e){return e.split("-")[0]}function In(e){return e.split("-")[1]}function $n(e){return"x"===e?"y":"x"}function Vn(e){return"y"===e?"height":"width"}function Fn(e){return["top","bottom"].includes(Pn(e))?"y":"x"}function Hn(e){return $n(Fn(e))}function Nn(e){return e.replace(/start|end/g,(e=>Dn[e]))}function Bn(e){return e.replace(/left|right|bottom|top/g,(e=>An[e]))}function _n(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}function Wn(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function qn(e,t,n){let{reference:r,floating:o}=e;const i=Fn(t),s=Hn(t),l=Vn(s),a=Pn(t),c="y"===i,u=r.x+r.width/2-o.width/2,d=r.y+r.height/2-o.height/2,p=r[l]/2-o[l]/2;let f;switch(a){case"top":f={x:u,y:r.y-o.height};break;case"bottom":f={x:u,y:r.y+r.height};break;case"right":f={x:r.x+r.width,y:d};break;case"left":f={x:r.x-o.width,y:d};break;default:f={x:r.x,y:r.y}}switch(In(t)){case"start":f[s]-=p*(n&&c?-1:1);break;case"end":f[s]+=p*(n&&c?-1:1)}return f}async function Un(e,t){var n;void 0===t&&(t={});const{x:r,y:o,platform:i,rects:s,elements:l,strategy:a}=e,{boundary:c="clippingAncestors",rootBoundary:u="viewport",elementContext:d="floating",altBoundary:p=!1,padding:f=0}=zn(t,e),g=_n(f),h=l[p?"floating"===d?"reference":"floating":d],m=Wn(await i.getClippingRect({element:null==(n=await(null==i.isElement?void 0:i.isElement(h)))||n?h:h.contextElement||await(null==i.getDocumentElement?void 0:i.getDocumentElement(l.floating)),boundary:c,rootBoundary:u,strategy:a})),x="floating"===d?{...s.floating,x:r,y:o}:s.reference,b=await(null==i.getOffsetParent?void 0:i.getOffsetParent(l.floating)),v=await(null==i.isElement?void 0:i.isElement(b))&&await(null==i.getScale?void 0:i.getScale(b))||{x:1,y:1},y=Wn(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({rect:x,offsetParent:b,strategy:a}):x);return{top:(m.top-y.top+g.top)/v.y,bottom:(y.bottom-m.bottom+g.bottom)/v.y,left:(m.left-y.left+g.left)/v.x,right:(y.right-m.right+g.right)/v.x}}const Xn=e=>({name:"arrow",options:e,async fn(t){const{x:n,y:r,placement:o,rects:i,platform:s,elements:l}=t,{element:a,padding:c=0}=zn(e,t)||{};if(null==a)return{};const u=_n(c),d={x:n,y:r},p=Hn(o),f=Vn(p),g=await s.getDimensions(a),h="y"===p,m=h?"top":"left",x=h?"bottom":"right",b=h?"clientHeight":"clientWidth",v=i.reference[f]+i.reference[p]-d[p]-i.floating[f],y=d[p]-i.reference[p],w=await(null==s.getOffsetParent?void 0:s.getOffsetParent(a));let C=w?w[b]:0;C&&await(null==s.isElement?void 0:s.isElement(w))||(C=l.floating[b]||i.floating[f]);const L=v/2-y/2,k=C/2-g[f]/2-1,j=Sn(u[m],k),M=Sn(u[x],k),S=j,E=C-g[f]-M,R=C/2-g[f]/2+L,O=Zn(S,R,E),T=null!=In(o)&&R!=O&&i.reference[f]/2-(R<S?j:M)-g[f]/2<0?R<S?S-R:E-R:0;return{[p]:d[p]-T,data:{[p]:O,centerOffset:R-O+T}}}}),Gn=function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(t){var n;const{placement:r,middlewareData:o,rects:i,initialPlacement:s,platform:l,elements:a}=t,{mainAxis:c=!0,crossAxis:u=!0,fallbackPlacements:d,fallbackStrategy:p="bestFit",fallbackAxisSideDirection:f="none",flipAlignment:g=!0,...h}=zn(e,t),m=Pn(r),x=Pn(s)===s,b=await(null==l.isRTL?void 0:l.isRTL(a.floating)),v=d||(x||!g?[Bn(s)]:function(e){const t=Bn(e);return[Nn(e),t,Nn(t)]}(s));d||"none"===f||v.push(...function(e,t,n,r){const o=In(e);let i=function(e,t,n){const r=["left","right"],o=["right","left"],i=["top","bottom"],s=["bottom","top"];switch(e){case"top":case"bottom":return n?t?o:r:t?r:o;case"left":case"right":return t?i:s;default:return[]}}(Pn(e),"start"===n,r);return o&&(i=i.map((e=>e+"-"+o)),t&&(i=i.concat(i.map(Nn)))),i}(s,g,f,b));const y=[s,...v],w=await Un(t,h),C=[];let L=(null==(n=o.flip)?void 0:n.overflows)||[];if(c&&C.push(w[m]),u){const e=function(e,t,n){void 0===n&&(n=!1);const r=In(e),o=Hn(e),i=Vn(o);let s="x"===o?r===(n?"end":"start")?"right":"left":"start"===r?"bottom":"top";return t.reference[i]>t.floating[i]&&(s=Bn(s)),[s,Bn(s)]}(r,i,b);C.push(w[e[0]],w[e[1]])}if(L=[...L,{placement:r,overflows:C}],!C.every((e=>e<=0))){var k,j;const e=((null==(k=o.flip)?void 0:k.index)||0)+1,t=y[e];if(t)return{data:{index:e,overflows:L},reset:{placement:t}};let n=null==(j=L.filter((e=>e.overflows[0]<=0)).sort(((e,t)=>e.overflows[1]-t.overflows[1]))[0])?void 0:j.placement;if(!n)switch(p){case"bestFit":{var M;const e=null==(M=L.map((e=>[e.placement,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:M[0];e&&(n=e);break}case"initialPlacement":n=s}if(r!==n)return{reset:{placement:n}}}return{}}}},Kn=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){const{x:n,y:r}=t,o=await async function(e,t){const{placement:n,platform:r,elements:o}=e,i=await(null==r.isRTL?void 0:r.isRTL(o.floating)),s=Pn(n),l=In(n),a="y"===Fn(n),c=["left","top"].includes(s)?-1:1,u=i&&a?-1:1,d=zn(t,e);let{mainAxis:p,crossAxis:f,alignmentAxis:g}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...d};return l&&"number"==typeof g&&(f="end"===l?-1*g:g),a?{x:f*u,y:p*c}:{x:p*c,y:f*u}}(t,e);return{x:n+o.x,y:r+o.y,data:o}}}},Yn=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:o}=t,{mainAxis:i=!0,crossAxis:s=!1,limiter:l={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...a}=zn(e,t),c={x:n,y:r},u=await Un(t,a),d=Fn(Pn(o)),p=$n(d);let f=c[p],g=c[d];if(i){const e="y"===p?"bottom":"right";f=Zn(f+u["y"===p?"top":"left"],f,f-u[e])}if(s){const e="y"===d?"bottom":"right";g=Zn(g+u["y"===d?"top":"left"],g,g-u[e])}const h=l.fn({...t,[p]:f,[d]:g});return{...h,data:{x:h.x-n,y:h.y-r}}}}};function Jn(e){const t=un(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const o=nn(e),i=o?e.offsetWidth:n,s=o?e.offsetHeight:r,l=Rn(n)!==i||Rn(r)!==s;return l&&(n=i,r=s),{width:n,height:r,$:l}}function Qn(e){return tn(e)?e:e.contextElement}function er(e){const t=Qn(e);if(!nn(t))return Tn(1);const n=t.getBoundingClientRect(),{width:r,height:o,$:i}=Jn(t);let s=(i?Rn(n.width):n.width)/r,l=(i?Rn(n.height):n.height)/o;return s&&Number.isFinite(s)||(s=1),l&&Number.isFinite(l)||(l=1),{x:s,y:l}}const tr=Tn(0);function nr(e){const t=Jt(e);return an()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:tr}function rr(e,t,n,r){void 0===t&&(t=!1),void 0===n&&(n=!1);const o=e.getBoundingClientRect(),i=Qn(e);let s=Tn(1);t&&(r?tn(r)&&(s=er(r)):s=er(e));const l=function(e,t,n){return void 0===t&&(t=!1),!(!n||t&&n!==Jt(e))&&t}(i,n,r)?nr(i):Tn(0);let a=(o.left+l.x)/s.x,c=(o.top+l.y)/s.y,u=o.width/s.x,d=o.height/s.y;if(i){const e=Jt(i),t=r&&tn(r)?Jt(r):r;let n=e.frameElement;for(;n&&r&&t!==e;){const e=er(n),t=n.getBoundingClientRect(),r=un(n),o=t.left+(n.clientLeft+parseFloat(r.paddingLeft))*e.x,i=t.top+(n.clientTop+parseFloat(r.paddingTop))*e.y;a*=e.x,c*=e.y,u*=e.x,d*=e.y,a+=o,c+=i,n=Jt(n).frameElement}}return Wn({width:u,height:d,x:a,y:c})}function or(e){return rr(Qt(e)).left+dn(e).scrollLeft}function ir(e,t,n){let r;if("viewport"===t)r=function(e,t){const n=Jt(e),r=Qt(e),o=n.visualViewport;let i=r.clientWidth,s=r.clientHeight,l=0,a=0;if(o){i=o.width,s=o.height;const e=an();(!e||e&&"fixed"===t)&&(l=o.offsetLeft,a=o.offsetTop)}return{width:i,height:s,x:l,y:a}}(e,n);else if("document"===t)r=function(e){const t=Qt(e),n=dn(e),r=e.ownerDocument.body,o=En(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),i=En(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let s=-n.scrollLeft+or(e);const l=-n.scrollTop;return"rtl"===un(r).direction&&(s+=En(t.clientWidth,r.clientWidth)-o),{width:o,height:i,x:s,y:l}}(Qt(e));else if(tn(t))r=function(e,t){const n=rr(e,!0,"fixed"===t),r=n.top+e.clientTop,o=n.left+e.clientLeft,i=nn(e)?er(e):Tn(1);return{width:e.clientWidth*i.x,height:e.clientHeight*i.y,x:o*i.x,y:r*i.y}}(t,n);else{const n=nr(e);r={...t,x:t.x-n.x,y:t.y-n.y}}return Wn(r)}function sr(e,t){const n=pn(e);return!(n===t||!tn(n)||cn(n))&&("fixed"===un(n).position||sr(n,t))}function lr(e,t,n){const r=nn(t),o=Qt(t),i="fixed"===n,s=rr(e,!0,i,t);let l={scrollLeft:0,scrollTop:0};const a=Tn(0);if(r||!r&&!i)if(("body"!==Yt(t)||on(o))&&(l=dn(t)),r){const e=rr(t,!0,i,t);a.x=e.x+t.clientLeft,a.y=e.y+t.clientTop}else o&&(a.x=or(o));return{x:s.left+l.scrollLeft-a.x,y:s.top+l.scrollTop-a.y,width:s.width,height:s.height}}function ar(e,t){return nn(e)&&"fixed"!==un(e).position?t?t(e):e.offsetParent:null}function cr(e,t){const n=Jt(e);if(!nn(e))return n;let r=ar(e,t);for(;r&&sn(r)&&"static"===un(r).position;)r=ar(r,t);return r&&("html"===Yt(r)||"body"===Yt(r)&&"static"===un(r).position&&!ln(r))?n:r||function(e){let t=pn(e);for(;nn(t)&&!cn(t);){if(ln(t))return t;t=pn(t)}return null}(e)||n}const ur={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{rect:t,offsetParent:n,strategy:r}=e;const o=nn(n),i=Qt(n);if(n===i)return t;let s={scrollLeft:0,scrollTop:0},l=Tn(1);const a=Tn(0);if((o||!o&&"fixed"!==r)&&(("body"!==Yt(n)||on(i))&&(s=dn(n)),nn(n))){const e=rr(n);l=er(n),a.x=e.x+n.clientLeft,a.y=e.y+n.clientTop}return{width:t.width*l.x,height:t.height*l.y,x:t.x*l.x-s.scrollLeft*l.x+a.x,y:t.y*l.y-s.scrollTop*l.y+a.y}},getDocumentElement:Qt,getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e;const i=[..."clippingAncestors"===n?function(e,t){const n=t.get(e);if(n)return n;let r=gn(e).filter((e=>tn(e)&&"body"!==Yt(e))),o=null;const i="fixed"===un(e).position;let s=i?pn(e):e;for(;tn(s)&&!cn(s);){const t=un(s),n=ln(s);n||"fixed"!==t.position||(o=null),(i?!n&&!o:!n&&"static"===t.position&&o&&["absolute","fixed"].includes(o.position)||on(s)&&!n&&sr(e,s))?r=r.filter((e=>e!==s)):o=t,s=pn(s)}return t.set(e,r),r}(t,this._c):[].concat(n),r],s=i[0],l=i.reduce(((e,n)=>{const r=ir(t,n,o);return e.top=En(r.top,e.top),e.right=Sn(r.right,e.right),e.bottom=Sn(r.bottom,e.bottom),e.left=En(r.left,e.left),e}),ir(t,s,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},getOffsetParent:cr,getElementRects:async function(e){let{reference:t,floating:n,strategy:r}=e;const o=this.getOffsetParent||cr,i=this.getDimensions;return{reference:lr(t,await o(n),r),floating:{x:0,y:0,...await i(n)}}},getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){return Jn(e)},getScale:er,isElement:tn,isRTL:function(e){return"rtl"===un(e).direction}};function dr(e,t,n,r){void 0===r&&(r={});const{ancestorScroll:o=!0,ancestorResize:i=!0,elementResize:s="function"==typeof ResizeObserver,layoutShift:l="function"==typeof IntersectionObserver,animationFrame:a=!1}=r,c=Qn(e),u=o||i?[...c?gn(c):[],...gn(t)]:[];u.forEach((e=>{o&&e.addEventListener("scroll",n,{passive:!0}),i&&e.addEventListener("resize",n)}));const d=c&&l?function(e,t){let n,r=null;const o=Qt(e);function i(){clearTimeout(n),r&&r.disconnect(),r=null}return function s(l,a){void 0===l&&(l=!1),void 0===a&&(a=1),i();const{left:c,top:u,width:d,height:p}=e.getBoundingClientRect();if(l||t(),!d||!p)return;const f={rootMargin:-On(u)+"px "+-On(o.clientWidth-(c+d))+"px "+-On(o.clientHeight-(u+p))+"px "+-On(c)+"px",threshold:En(0,Sn(1,a))||1};let g=!0;function h(e){const t=e[0].intersectionRatio;if(t!==a){if(!g)return s();t?s(!1,t):n=setTimeout((()=>{s(!1,1e-7)}),100)}g=!1}try{r=new IntersectionObserver(h,{...f,root:o.ownerDocument})}catch(e){r=new IntersectionObserver(h,f)}r.observe(e)}(!0),i}(c,n):null;let p,f=-1,g=null;s&&(g=new ResizeObserver((e=>{let[r]=e;r&&r.target===c&&g&&(g.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame((()=>{g&&g.observe(t)}))),n()})),c&&!a&&g.observe(c),g.observe(t));let h=a?rr(e):null;return a&&function t(){const r=rr(e);!h||r.x===h.x&&r.y===h.y&&r.width===h.width&&r.height===h.height||n(),h=r,p=requestAnimationFrame(t)}(),n(),()=>{u.forEach((e=>{o&&e.removeEventListener("scroll",n),i&&e.removeEventListener("resize",n)})),d&&d(),g&&g.disconnect(),g=null,a&&cancelAnimationFrame(p)}}const pr=(e,t,n)=>{const r=new Map,o={platform:ur,...n},i={...o.platform,_c:r};return(async(e,t,n)=>{const{placement:r="bottom",strategy:o="absolute",middleware:i=[],platform:s}=n,l=i.filter(Boolean),a=await(null==s.isRTL?void 0:s.isRTL(t));let c=await s.getElementRects({reference:e,floating:t,strategy:o}),{x:u,y:d}=qn(c,r,a),p=r,f={},g=0;for(let n=0;n<l.length;n++){const{name:i,fn:h}=l[n],{x:m,y:x,data:b,reset:v}=await h({x:u,y:d,initialPlacement:r,placement:p,strategy:o,middlewareData:f,rects:c,platform:s,elements:{reference:e,floating:t}});u=null!=m?m:u,d=null!=x?x:d,f={...f,[i]:{...f[i],...b}},v&&g<=50&&(g++,"object"==typeof v&&(v.placement&&(p=v.placement),v.rects&&(c=!0===v.rects?await s.getElementRects({reference:e,floating:t,strategy:o}):v.rects),({x:u,y:d}=qn(c,p,a))),n=-1)}return{x:u,y:d,placement:p,strategy:o,middlewareData:f}})(e,t,{...o,platform:i})};var fr=l(111),gr="undefined"!=typeof document?x.useLayoutEffect:x.useEffect;function hr(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;let n,r,o;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if(n=e.length,n!=t.length)return!1;for(r=n;0!=r--;)if(!hr(e[r],t[r]))return!1;return!0}if(o=Object.keys(e),n=o.length,n!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!{}.hasOwnProperty.call(t,o[r]))return!1;for(r=n;0!=r--;){const n=o[r];if(!("_owner"===n&&e.$$typeof||hr(e[n],t[n])))return!1}return!0}return e!=e&&t!=t}function mr(e){return"undefined"==typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function xr(e,t){const n=mr(e);return Math.round(t*n)/n}function br(e){const t=x.useRef(e);return gr((()=>{t.current=e})),t}var yr=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"].join(","),wr="undefined"==typeof Element,Cr=wr?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Lr=!wr&&Element.prototype.getRootNode?function(e){var t;return null==e||null===(t=e.getRootNode)||void 0===t?void 0:t.call(e)}:function(e){return null==e?void 0:e.ownerDocument},kr=function e(t,n){var r;void 0===n&&(n=!0);var o=null==t||null===(r=t.getAttribute)||void 0===r?void 0:r.call(t,"inert");return""===o||"true"===o||n&&t&&e(t.parentNode)},jr=function(e,t,n){if(kr(e))return[];var r=Array.prototype.slice.apply(e.querySelectorAll(yr));return t&&Cr.call(e,yr)&&r.unshift(e),r.filter(n)},Mr=function e(t,n,r){for(var o=[],i=Array.from(t);i.length;){var s=i.shift();if(!kr(s,!1))if("SLOT"===s.tagName){var l=s.assignedElements(),a=e(l.length?l:s.children,!0,r);r.flatten?o.push.apply(o,a):o.push({scopeParent:s,candidates:a})}else{Cr.call(s,yr)&&r.filter(s)&&(n||!t.includes(s))&&o.push(s);var c=s.shadowRoot||"function"==typeof r.getShadowRoot&&r.getShadowRoot(s),u=!kr(c,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(s));if(c&&u){var d=e(!0===c?s.children:c.children,!0,r);r.flatten?o.push.apply(o,d):o.push({scopeParent:s,candidates:d})}else i.unshift.apply(i,s.children)}}return o},Sr=function(e,t){return e.tabIndex<0&&(t||/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||function(e){var t,n=null==e||null===(t=e.getAttribute)||void 0===t?void 0:t.call(e,"contenteditable");return""===n||"true"===n}(e))&&isNaN(parseInt(e.getAttribute("tabindex"),10))?0:e.tabIndex},Er=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},Rr=function(e){return"INPUT"===e.tagName},Or=function(e){return function(e){return Rr(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t,n=e.form||Lr(e),r=function(e){return n.querySelectorAll('input[type="radio"][name="'+e+'"]')};if("undefined"!=typeof window&&void 0!==window.CSS&&"function"==typeof window.CSS.escape)t=r(window.CSS.escape(e.name));else try{t=r(e.name)}catch(e){return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s",e.message),!1}var o=function(e,t){for(var n=0;n<e.length;n++)if(e[n].checked&&e[n].form===t)return e[n]}(t,e.form);return!o||o===e}(e)},Tr=function(e){var t=e.getBoundingClientRect(),n=t.width,r=t.height;return 0===n&&0===r},Ar=function(e,t){var n=t.displayCheck,r=t.getShadowRoot;if("hidden"===getComputedStyle(e).visibility)return!0;var o=Cr.call(e,"details>summary:first-of-type")?e.parentElement:e;if(Cr.call(o,"details:not([open]) *"))return!0;if(n&&"full"!==n&&"legacy-full"!==n){if("non-zero-area"===n)return Tr(e)}else{if("function"==typeof r){for(var i=e;e;){var s=e.parentElement,l=Lr(e);if(s&&!s.shadowRoot&&!0===r(s))return Tr(e);e=e.assignedSlot?e.assignedSlot:s||l===e.ownerDocument?s:l.host}e=i}if(function(e){var t,n,r,o,i=e&&Lr(e),s=null===(t=i)||void 0===t?void 0:t.host,l=!1;if(i&&i!==e)for(l=!!(null!==(n=s)&&void 0!==n&&null!==(r=n.ownerDocument)&&void 0!==r&&r.contains(s)||null!=e&&null!==(o=e.ownerDocument)&&void 0!==o&&o.contains(e));!l&&s;){var a,c,u;l=!(null===(c=s=null===(a=i=Lr(s))||void 0===a?void 0:a.host)||void 0===c||null===(u=c.ownerDocument)||void 0===u||!u.contains(s))}return l}(e))return!e.getClientRects().length;if("legacy-full"!==n)return!0}return!1},Dr=function(e,t){return!(t.disabled||kr(t)||function(e){return Rr(e)&&"hidden"===e.type}(t)||Ar(t,e)||function(e){return"DETAILS"===e.tagName&&Array.prototype.slice.apply(e.children).some((function(e){return"SUMMARY"===e.tagName}))}(t)||function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if("FIELDSET"===t.tagName&&t.disabled){for(var n=0;n<t.children.length;n++){var r=t.children.item(n);if("LEGEND"===r.tagName)return!!Cr.call(t,"fieldset[disabled] *")||!r.contains(e)}return!0}t=t.parentElement}return!1}(t))},Zr=function(e,t){return!(Or(t)||Sr(t)<0||!Dr(e,t))},zr=function(e){var t=parseInt(e.getAttribute("tabindex"),10);return!!(isNaN(t)||t>=0)},Pr=function e(t){var n=[],r=[];return t.forEach((function(t,o){var i=!!t.scopeParent,s=i?t.scopeParent:t,l=Sr(s,i),a=i?e(t.candidates):s;0===l?i?n.push.apply(n,a):n.push(s):r.push({documentOrder:o,tabIndex:l,item:t,isScope:i,content:a})})),r.sort(Er).reduce((function(e,t){return t.isScope?e.push.apply(e,t.content):e.push(t.content),e}),[]).concat(n)},Ir=function(e,t){var n;return n=(t=t||{}).getShadowRoot?Mr([e],t.includeContainer,{filter:Zr.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:zr}):jr(e,t.includeContainer,Zr.bind(null,t)),Pr(n)};function $r(e){return x.useMemo((()=>e.every((e=>null==e))?null:t=>{e.forEach((e=>{"function"==typeof e?e(t):null!=e&&(e.current=t)}))}),e)}let Br=0;function _r(e,t){void 0===t&&(t={});const{preventScroll:n=!1,cancelPrevious:r=!0,sync:o=!1}=t;r&&cancelAnimationFrame(Br);const i=()=>null==e?void 0:e.focus({preventScroll:n});o?i():Br=requestAnimationFrame(i)}var Wr="undefined"!=typeof document?x.useLayoutEffect:x.useEffect;function Xr(){return Xr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Xr.apply(this,arguments)}let Gr=!1,Kr=0;const Yr=()=>"floating-ui-"+Kr++,Jr=b["useId".toString()]||function(){const[e,t]=x.useState((()=>Gr?Yr():void 0));return Wr((()=>{null==e&&t(Yr())}),[]),x.useEffect((()=>{Gr||(Gr=!0)}),[]),e},Qr=x.forwardRef((function(e,t){let{context:{placement:n,elements:{floating:r},middlewareData:{arrow:o}},width:i=14,height:s=7,tipRadius:l=0,strokeWidth:a=0,staticOffset:c,stroke:u,d:d,style:{transform:p,...f}={},...g}=e;const h=Jr();if(!r)return null;a*=2;const m=a/2,b=i/2*(l/-8+1),v=s/2*l/4,[y,w]=n.split("-"),C=ur.isRTL(r),L=!!d,k="top"===y||"bottom"===y,j=c&&"end"===w?"bottom":"top";let M=c&&"end"===w?"right":"left";c&&C&&(M="end"===w?"left":"right");const S=null!=(null==o?void 0:o.x)?c||o.x:"",E=null!=(null==o?void 0:o.y)?c||o.y:"",R=d||"M0,0 H"+i+" L"+(i-b)+","+(s-v)+" Q"+i/2+","+s+" "+b+","+(s-v)+" Z",O={top:L?"rotate(180deg)":"",left:L?"rotate(90deg)":"rotate(-90deg)",bottom:L?"":"rotate(180deg)",right:L?"rotate(-90deg)":"rotate(90deg)"}[y];return x.createElement("svg",Xr({},g,{"aria-hidden":!0,ref:t,width:L?i:i+a,height:i,viewBox:"0 0 "+i+" "+(s>i?s:i),style:{position:"absolute",pointerEvents:"none",[M]:S,[j]:E,[y]:k||L?"100%":"calc(100% - "+a/2+"px)",transform:""+O+(null!=p?p:""),...f}}),a>0&&x.createElement("path",{clipPath:"url(#"+h+")",fill:"none",stroke:u,strokeWidth:a+(d?0:1),d:R}),x.createElement("path",{stroke:a&&!d?g.fill:"none",d:R}),x.createElement("clipPath",{id:h},x.createElement("rect",{x:-m,y:m*(L?-1:1),width:i+a,height:i})))}));function eo(){const e=new Map;return{emit(t,n){var r;null==(r=e.get(t))||r.forEach((e=>e(n)))},on(t,n){e.set(t,[...e.get(t)||[],n])},off(t,n){var r;e.set(t,(null==(r=e.get(t))?void 0:r.filter((e=>e!==n)))||[])}}}const to=x.createContext(null),no=x.createContext(null),ro=()=>{var e;return(null==(e=x.useContext(to))?void 0:e.id)||null},oo=()=>x.useContext(no);function io(e){return"data-floating-ui-"+e}function so(e){const t=(0,x.useRef)(e);return Wr((()=>{t.current=e})),t}const lo=io("safe-polygon");function ao(e,t,n){return n&&!yn(n)?0:"number"==typeof e?e:null==e?void 0:e[t]}function co(e,t){let n=e.filter((e=>{var n;return e.parentId===t&&(null==(n=e.context)?void 0:n.open)})),r=n;for(;r.length;)r=e.filter((e=>{var t;return null==(t=r)?void 0:t.some((t=>{var n;return e.parentId===t.id&&(null==(n=e.context)?void 0:n.open)}))})),n=n.concat(r);return n}let uo=new WeakMap,po=new WeakSet,fo={},go=0;const ho=e=>e&&(e.host||ho(e.parentNode)),mo=(e,t)=>t.map((t=>{if(e.contains(t))return t;const n=ho(t);return e.contains(n)?n:null})).filter((e=>null!=e));function xo(e,t,n){void 0===t&&(t=!1),void 0===n&&(n=!1);const r=wn(e[0]).body;return function(e,t,n,r){const o="data-floating-ui-inert",i=r?"inert":n?"aria-hidden":null,s=mo(t,e),l=new Set,a=new Set(s),c=[];fo[o]||(fo[o]=new WeakMap);const u=fo[o];return s.forEach((function e(t){t&&!l.has(t)&&(l.add(t),t.parentNode&&e(t.parentNode))})),function e(t){t&&!a.has(t)&&Array.prototype.forEach.call(t.children,(t=>{if(l.has(t))e(t);else{const e=i?t.getAttribute(i):null,n=null!==e&&"false"!==e,r=(uo.get(t)||0)+1,s=(u.get(t)||0)+1;uo.set(t,r),u.set(t,s),c.push(t),1===r&&n&&po.add(t),1===s&&t.setAttribute(o,""),!n&&i&&t.setAttribute(i,"true")}}))}(t),l.clear(),go++,()=>{c.forEach((e=>{const t=(uo.get(e)||0)-1,n=(u.get(e)||0)-1;uo.set(e,t),u.set(e,n),t||(!po.has(e)&&i&&e.removeAttribute(i),po.delete(e)),n||e.removeAttribute(o)})),go--,go||(uo=new WeakMap,uo=new WeakMap,po=new WeakSet,fo={})}}(e.concat(Array.from(r.querySelectorAll("[aria-live]"))),r,t,n)}const bo=()=>({getShadowRoot:!0,displayCheck:"function"==typeof ResizeObserver&&ResizeObserver.toString().includes("[native code]")?"full":"none"});function vo(e,t){const n=Ir(e,bo());"prev"===t&&n.reverse();const r=n.indexOf(hn(wn(e)));return n.slice(r+1)[0]}function yo(){return vo(document.body,"next")}function wo(){return vo(document.body,"prev")}function Co(e,t){const n=t||e.currentTarget,r=e.relatedTarget;return!r||!mn(n,r)}function Lo(e){Ir(e,bo()).forEach((e=>{e.dataset.tabindex=e.getAttribute("tabindex")||"",e.setAttribute("tabindex","-1")}))}function ko(e){e.querySelectorAll("[data-tabindex]").forEach((e=>{const t=e.dataset.tabindex;delete e.dataset.tabindex,t?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")}))}const jo={border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"fixed",whiteSpace:"nowrap",width:"1px",top:0,left:0};function Mo(e){"Tab"===e.key&&(e.target,clearTimeout(void 0))}const So=x.forwardRef((function(e,t){const[n,r]=x.useState();Wr((()=>(/apple/i.test(navigator.vendor)&&r("button"),document.addEventListener("keydown",Mo),()=>{document.removeEventListener("keydown",Mo)})),[]);const o={ref:t,tabIndex:0,role:n,"aria-hidden":!n||void 0,[io("focus-guard")]:"",style:jo};return x.createElement("span",Xr({},e,o))})),Eo=x.createContext(null);function Ro(e){let{children:t,id:n,root:r=null,preserveTabOrder:o=!0}=e;const i=function(e){let{id:t,root:n}=void 0===e?{}:e;const[r,o]=x.useState(null),i=Jr(),s=Oo(),l=x.useMemo((()=>({id:t,root:n,portalContext:s,uniqueId:i})),[t,n,s,i]),a=x.useRef();return Wr((()=>()=>{null==r||r.remove()}),[r,l]),Wr((()=>{if(a.current===l)return;a.current=l;const{id:e,root:t,portalContext:n,uniqueId:r}=l,i=e?document.getElementById(e):null,s=io("portal");if(i){const e=document.createElement("div");e.id=r,e.setAttribute(s,""),i.appendChild(e),o(e)}else{let i=t||(null==n?void 0:n.portalNode);i&&!tn(i)&&(i=i.current),i=i||document.body;let l=null;e&&(l=document.createElement("div"),l.id=e,i.appendChild(l));const a=document.createElement("div");a.id=r,a.setAttribute(s,""),i=l||i,i.appendChild(a),o(a)}}),[l]),r}({id:n,root:r}),[s,l]=x.useState(null),a=x.useRef(null),c=x.useRef(null),u=x.useRef(null),d=x.useRef(null),p=!!s&&!s.modal&&s.open&&o&&!(!r&&!i);return x.useEffect((()=>{if(i&&o&&(null==s||!s.modal))return i.addEventListener("focusin",e,!0),i.addEventListener("focusout",e,!0),()=>{i.removeEventListener("focusin",e,!0),i.removeEventListener("focusout",e,!0)};function e(e){i&&Co(e)&&("focusin"===e.type?ko:Lo)(i)}}),[i,o,null==s?void 0:s.modal]),x.createElement(Eo.Provider,{value:x.useMemo((()=>({preserveTabOrder:o,beforeOutsideRef:a,afterOutsideRef:c,beforeInsideRef:u,afterInsideRef:d,portalNode:i,setFocusManagerState:l})),[o,i])},p&&i&&x.createElement(So,{"data-type":"outside",ref:a,onFocus:e=>{if(Co(e,i)){var t;null==(t=u.current)||t.focus()}else{const e=wo()||(null==s?void 0:s.refs.domReference.current);null==e||e.focus()}}}),p&&i&&x.createElement("span",{"aria-owns":i.id,style:jo}),i&&(0,fr.createPortal)(t,i),p&&i&&x.createElement(So,{"data-type":"outside",ref:c,onFocus:e=>{if(Co(e,i)){var t;null==(t=d.current)||t.focus()}else{const t=yo()||(null==s?void 0:s.refs.domReference.current);null==t||t.focus(),(null==s?void 0:s.closeOnFocusOut)&&(null==s||s.onOpenChange(!1,e.nativeEvent))}}}))}const Oo=()=>x.useContext(Eo),To=x.forwardRef((function(e,t){return x.createElement("button",Xr({},e,{type:"button",ref:t,tabIndex:-1,style:jo}))}));function Ao(e){const{context:t,children:n,disabled:r=!1,order:o=["content"],guards:i=!0,initialFocus:s=0,returnFocus:l=!0,modal:a=!0,visuallyHiddenDismiss:c=!1,closeOnFocusOut:u=!0}=e,{open:d,refs:p,nodeId:f,onOpenChange:g,events:h,dataRef:m,elements:{domReference:b,floating:v}}=t,y="undefined"==typeof HTMLElement||!("inert"in HTMLElement.prototype)||i,w=so(o),C=so(s),L=so(l),k=oo(),j=Oo(),M="number"==typeof s&&s<0,S=x.useRef(null),E=x.useRef(null),R=x.useRef(!1),O=x.useRef(null),T=x.useRef(!1),A=null!=j,D=b&&"combobox"===b.getAttribute("role")&&jn(b)&&M,Z=x.useCallback((function(e){return void 0===e&&(e=v),e?Ir(e,bo()):[]}),[v]),z=x.useCallback((e=>{const t=Z(e);return w.current.map((e=>b&&"reference"===e?b:v&&"floating"===e?v:t)).filter(Boolean).flat()}),[b,v,w,Z]);function P(e){return!r&&c&&a?x.createElement(To,{ref:"start"===e?S:E,onClick:e=>g(!1,e.nativeEvent)},"string"==typeof c?c:"Dismiss"):null}x.useEffect((()=>{if(r||!a)return;function e(e){if("Tab"===e.key){mn(v,hn(wn(v)))&&0===Z().length&&!D&&Mn(e);const t=z(),n=Ln(e);"reference"===w.current[0]&&n===b&&(Mn(e),e.shiftKey?_r(t[t.length-1]):_r(t[1])),"floating"===w.current[1]&&n===v&&e.shiftKey&&(Mn(e),_r(t[0]))}}const t=wn(v);return t.addEventListener("keydown",e),()=>{t.removeEventListener("keydown",e)}}),[r,b,v,a,w,p,D,Z,z]),x.useEffect((()=>{if(!r&&u)return v&&nn(b)?(b.addEventListener("focusout",t),b.addEventListener("pointerdown",e),!a&&v.addEventListener("focusout",t),()=>{b.removeEventListener("focusout",t),b.removeEventListener("pointerdown",e),!a&&v.removeEventListener("focusout",t)}):void 0;function e(){T.current=!0,setTimeout((()=>{T.current=!1}))}function t(e){const t=e.relatedTarget;queueMicrotask((()=>{const n=!(mn(b,t)||mn(v,t)||mn(t,v)||mn(null==j?void 0:j.portalNode,t)||null!=t&&t.hasAttribute(io("focus-guard"))||k&&(co(k.nodesRef.current,f).find((e=>{var n,r;return mn(null==(n=e.context)?void 0:n.elements.floating,t)||mn(null==(r=e.context)?void 0:r.elements.domReference,t)}))||function(e,t){var n;let r=[],o=null==(n=e.find((e=>e.id===t)))?void 0:n.parentId;for(;o;){const t=e.find((e=>e.id===o));o=null==t?void 0:t.parentId,t&&(r=r.concat(t))}return r}(k.nodesRef.current,f).find((e=>{var n,r;return(null==(n=e.context)?void 0:n.elements.floating)===t||(null==(r=e.context)?void 0:r.elements.domReference)===t}))));t&&n&&!T.current&&t!==O.current&&(R.current=!0,g(!1,e))}))}}),[r,b,v,a,f,k,j,g,u]),x.useEffect((()=>{var e;if(r)return;const t=Array.from((null==j||null==(e=j.portalNode)?void 0:e.querySelectorAll("["+io("portal")+"]"))||[]);if(v){const e=[v,...t,S.current,E.current,w.current.includes("reference")||D?b:null].filter((e=>null!=e)),n=a?xo(e,y,!y):xo(e);return()=>{n()}}}),[r,b,v,a,w,j,D,y]),Wr((()=>{if(r||!v)return;const e=hn(wn(v));queueMicrotask((()=>{const t=z(v),n=C.current,r=("number"==typeof n?t[n]:n.current)||v,o=mn(v,e);M||o||!d||_r(r,{preventScroll:r===v})}))}),[r,d,v,M,z,C]),Wr((()=>{if(r||!v)return;let e=!1;const t=wn(v),n=hn(t),o=m.current;function i(t){if("escapeKey"===t.type&&p.domReference.current&&(O.current=p.domReference.current),["referencePress","escapeKey"].includes(t.type))return;const n=t.data.returnFocus;"object"==typeof n?(R.current=!1,e=n.preventScroll):R.current=!n}return O.current=n,h.on("dismiss",i),()=>{h.off("dismiss",i);const n=hn(t);(mn(v,n)||k&&co(k.nodesRef.current,f).some((e=>{var t;return mn(null==(t=e.context)?void 0:t.elements.floating,n)}))||o.openEvent&&["click","mousedown"].includes(o.openEvent.type))&&p.domReference.current&&(O.current=p.domReference.current),L.current&&nn(O.current)&&!R.current&&_r(O.current,{cancelPrevious:!1,preventScroll:e})}}),[r,v,L,m,p,h,k,f]),Wr((()=>{if(!r&&j)return j.setFocusManagerState({modal:a,closeOnFocusOut:u,open:d,onOpenChange:g,refs:p}),()=>{j.setFocusManagerState(null)}}),[r,j,a,d,g,p,u]),Wr((()=>{if(!r&&v&&"function"==typeof MutationObserver&&!M){const e=()=>{const e=v.getAttribute("tabindex");w.current.includes("floating")||hn(wn(v))!==p.domReference.current&&0===Z().length?"0"!==e&&v.setAttribute("tabindex","0"):"-1"!==e&&v.setAttribute("tabindex","-1")};e();const t=new MutationObserver(e);return t.observe(v,{childList:!0,subtree:!0,attributes:!0}),()=>{t.disconnect()}}}),[r,v,p,w,Z,M]);const I=!r&&y&&!D&&(A||a);return x.createElement(x.Fragment,null,I&&x.createElement(So,{"data-type":"inside",ref:null==j?void 0:j.beforeInsideRef,onFocus:e=>{if(a){const e=z();_r("reference"===o[0]?e[0]:e[e.length-1])}else if(null!=j&&j.preserveTabOrder&&j.portalNode)if(R.current=!1,Co(e,j.portalNode)){const e=yo()||b;null==e||e.focus()}else{var t;null==(t=j.beforeOutsideRef.current)||t.focus()}}}),!D&&P("start"),n,P("end"),I&&x.createElement(So,{"data-type":"inside",ref:null==j?void 0:j.afterInsideRef,onFocus:e=>{if(a)_r(z()[0]);else if(null!=j&&j.preserveTabOrder&&j.portalNode)if(u&&(R.current=!0),Co(e,j.portalNode)){const e=wo()||b;null==e||e.focus()}else{var t;null==(t=j.afterOutsideRef.current)||t.focus()}}}))}function Do(e){return nn(e.target)&&"BUTTON"===e.target.tagName}function Zo(e){return jn(e)}function zo(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,dataRef:o,elements:{domReference:i}}=e,{enabled:s=!0,event:l="click",toggle:a=!0,ignoreMouse:c=!1,keyboardHandlers:u=!0}=t,d=x.useRef(),p=x.useRef(!1);return x.useMemo((()=>s?{reference:{onPointerDown(e){d.current=e.pointerType},onMouseDown(e){0===e.button&&(yn(d.current,!0)&&c||"click"!==l&&(!n||!a||o.current.openEvent&&"mousedown"!==o.current.openEvent.type?(e.preventDefault(),r(!0,e.nativeEvent)):r(!1,e.nativeEvent)))},onClick(e){"mousedown"===l&&d.current?d.current=void 0:yn(d.current,!0)&&c||(!n||!a||o.current.openEvent&&"click"!==o.current.openEvent.type?r(!0,e.nativeEvent):r(!1,e.nativeEvent))},onKeyDown(e){d.current=void 0,e.defaultPrevented||!u||Do(e)||(" "!==e.key||Zo(i)||(e.preventDefault(),p.current=!0),"Enter"===e.key&&r(!n||!a,e.nativeEvent))},onKeyUp(e){e.defaultPrevented||!u||Do(e)||Zo(i)||" "===e.key&&p.current&&(p.current=!1,r(!n||!a,e.nativeEvent))}}}:{}),[s,o,l,c,u,i,a,n,r])}const Po=b["useInsertionEffect".toString()]||(e=>e());function Io(e){const t=x.useRef((()=>{}));return Po((()=>{t.current=e})),x.useCallback((function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return null==t.current?void 0:t.current(...n)}),[])}const $o={pointerdown:"onPointerDown",mousedown:"onMouseDown",click:"onClick"},Vo={pointerdown:"onPointerDownCapture",mousedown:"onMouseDownCapture",click:"onClickCapture"};function Fo(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,events:o,nodeId:i,elements:{reference:s,domReference:l,floating:a},dataRef:c}=e,{enabled:u=!0,escapeKey:d=!0,outsidePress:p=!0,outsidePressEvent:f="pointerdown",referencePress:g=!1,referencePressEvent:h="pointerdown",ancestorScroll:m=!1,bubbles:b}=t,v=oo(),y=null!=ro(),w=Io("function"==typeof p?p:()=>!1),C="function"==typeof p?w:p,L=x.useRef(!1),{escapeKeyBubbles:k,outsidePressBubbles:j}=(e=>{var t,n;return{escapeKeyBubbles:"boolean"==typeof e?e:null!=(t=null==e?void 0:e.escapeKey)&&t,outsidePressBubbles:"boolean"==typeof e?e:null==(n=null==e?void 0:e.outsidePress)||n}})(b),M=Io((e=>{if(!n||!u||!d||"Escape"!==e.key)return;const t=v?co(v.nodesRef.current,i):[];if(!k&&(e.stopPropagation(),t.length>0)){let e=!0;if(t.forEach((t=>{var n;null==(n=t.context)||!n.open||t.context.dataRef.current.__escapeKeyBubbles||(e=!1)})),!e)return}o.emit("dismiss",{type:"escapeKey",data:{returnFocus:{preventScroll:!1}}}),r(!1,function(e){return"nativeEvent"in e}(e)?e.nativeEvent:e)})),S=Io((e=>{const t=L.current;if(L.current=!1,t)return;if("function"==typeof C&&!C(e))return;const n=Ln(e),s="["+io("inert")+"]",c=wn(a).querySelectorAll(s);let u=tn(n)?n:null;for(;u&&!cn(u);){const e=pn(u);if(e===wn(a).body||!tn(e))break;u=e}if(c.length&&tn(n)&&!n.matches("html,body")&&!mn(n,a)&&Array.from(c).every((e=>!mn(u,e))))return;if(nn(n)&&a){const t=n.clientWidth>0&&n.scrollWidth>n.clientWidth,r=n.clientHeight>0&&n.scrollHeight>n.clientHeight;let o=r&&e.offsetX>n.clientWidth;if(r&&"rtl"===un(n).direction&&(o=e.offsetX<=n.offsetWidth-n.clientWidth),o||t&&e.offsetY>n.clientHeight)return}const d=v&&co(v.nodesRef.current,i).some((t=>{var n;return Cn(e,null==(n=t.context)?void 0:n.elements.floating)}));if(Cn(e,a)||Cn(e,l)||d)return;const p=v?co(v.nodesRef.current,i):[];if(p.length>0){let e=!0;if(p.forEach((t=>{var n;null==(n=t.context)||!n.open||t.context.dataRef.current.__outsidePressBubbles||(e=!1)})),!e)return}o.emit("dismiss",{type:"outsidePress",data:{returnFocus:y?{preventScroll:!0}:bn(e)||vn(e)}}),r(!1,e)}));return x.useEffect((()=>{if(!n||!u)return;function e(e){r(!1,e)}c.current.__escapeKeyBubbles=k,c.current.__outsidePressBubbles=j;const t=wn(a);d&&t.addEventListener("keydown",M),C&&t.addEventListener(f,S);let o=[];return m&&(tn(l)&&(o=gn(l)),tn(a)&&(o=o.concat(gn(a))),!tn(s)&&s&&s.contextElement&&(o=o.concat(gn(s.contextElement)))),o=o.filter((e=>{var n;return e!==(null==(n=t.defaultView)?void 0:n.visualViewport)})),o.forEach((t=>{t.addEventListener("scroll",e,{passive:!0})})),()=>{d&&t.removeEventListener("keydown",M),C&&t.removeEventListener(f,S),o.forEach((t=>{t.removeEventListener("scroll",e)}))}}),[c,a,l,s,d,C,f,n,r,m,u,k,j,M,S]),x.useEffect((()=>{L.current=!1}),[C,f]),x.useMemo((()=>u?{reference:{onKeyDown:M,[$o[h]]:e=>{g&&(o.emit("dismiss",{type:"referencePress",data:{returnFocus:!1}}),r(!1,e.nativeEvent))}},floating:{onKeyDown:M,[Vo[f]]:()=>{L.current=!0}}}:{}),[u,o,g,f,h,r,M])}function Ho(e){var t;void 0===e&&(e={});const{open:n=!1,onOpenChange:r,nodeId:o}=e,[i,s]=x.useState(null),l=(null==(t=e.elements)?void 0:t.reference)||i,a=function(e){void 0===e&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:r=[],platform:o,elements:{reference:i,floating:s}={},transform:l=!0,whileElementsMounted:a,open:c}=e,[u,d]=x.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,f]=x.useState(r);hr(p,r)||f(r);const[g,h]=x.useState(null),[m,b]=x.useState(null),v=x.useCallback((e=>{e!=L.current&&(L.current=e,h(e))}),[h]),y=x.useCallback((e=>{e!==k.current&&(k.current=e,b(e))}),[b]),w=i||g,C=s||m,L=x.useRef(null),k=x.useRef(null),j=x.useRef(u),M=br(a),S=br(o),E=x.useCallback((()=>{if(!L.current||!k.current)return;const e={placement:t,strategy:n,middleware:p};S.current&&(e.platform=S.current),pr(L.current,k.current,e).then((e=>{const t={...e,isPositioned:!0};R.current&&!hr(j.current,t)&&(j.current=t,fr.flushSync((()=>{d(t)})))}))}),[p,t,n,S]);gr((()=>{!1===c&&j.current.isPositioned&&(j.current.isPositioned=!1,d((e=>({...e,isPositioned:!1}))))}),[c]);const R=x.useRef(!1);gr((()=>(R.current=!0,()=>{R.current=!1})),[]),gr((()=>{if(w&&(L.current=w),C&&(k.current=C),w&&C){if(M.current)return M.current(w,C,E);E()}}),[w,C,E,M]);const O=x.useMemo((()=>({reference:L,floating:k,setReference:v,setFloating:y})),[v,y]),T=x.useMemo((()=>({reference:w,floating:C})),[w,C]),A=x.useMemo((()=>{const e={position:n,left:0,top:0};if(!T.floating)return e;const t=xr(T.floating,u.x),r=xr(T.floating,u.y);return l?{...e,transform:"translate("+t+"px, "+r+"px)",...mr(T.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:t,top:r}}),[n,l,T.floating,u.x,u.y]);return x.useMemo((()=>({...u,update:E,refs:O,elements:T,floatingStyles:A})),[u,E,O,T,A])}(e),c=oo(),u=Io(((e,t)=>{e&&(p.current.openEvent=t),null==r||r(e,t)})),d=x.useRef(null),p=x.useRef({}),f=x.useState((()=>eo()))[0],g=Jr(),h=x.useCallback((e=>{const t=tn(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),contextElement:e}:e;a.refs.setReference(t)}),[a.refs]),m=x.useCallback((e=>{(tn(e)||null===e)&&(d.current=e,s(e)),(tn(a.refs.reference.current)||null===a.refs.reference.current||null!==e&&!tn(e))&&a.refs.setReference(e)}),[a.refs]),b=x.useMemo((()=>({...a.refs,setReference:m,setPositionReference:h,domReference:d})),[a.refs,m,h]),v=x.useMemo((()=>({...a.elements,domReference:l})),[a.elements,l]),y=x.useMemo((()=>({...a,refs:b,elements:v,dataRef:p,nodeId:o,floatingId:g,events:f,open:n,onOpenChange:u})),[a,o,g,f,n,u,b,v]);return Wr((()=>{const e=null==c?void 0:c.nodesRef.current.find((e=>e.id===o));e&&(e.context=y)})),x.useMemo((()=>({...a,context:y,refs:b,elements:v})),[a,b,v,y])}function No(e,t,n){const r=new Map;return{..."floating"===n&&{tabIndex:-1},...e,...t.map((e=>e?e[n]:null)).concat(e).reduce(((e,t)=>t?(Object.entries(t).forEach((t=>{let[n,o]=t;var i;0===n.indexOf("on")?(r.has(n)||r.set(n,[]),"function"==typeof o&&(null==(i=r.get(n))||i.push(o),e[n]=function(){for(var e,t=arguments.length,o=new Array(t),i=0;i<t;i++)o[i]=arguments[i];return null==(e=r.get(n))?void 0:e.map((e=>e(...o))).find((e=>void 0!==e))})):e[n]=o})),e):e),{})}}function Bo(e){void 0===e&&(e=[]);const t=e,n=x.useCallback((t=>No(t,e,"reference")),t),r=x.useCallback((t=>No(t,e,"floating")),t),o=x.useCallback((t=>No(t,e,"item")),e.map((e=>null==e?void 0:e.item)));return x.useMemo((()=>({getReferenceProps:n,getFloatingProps:r,getItemProps:o})),[n,r,o])}function _o(e,t){void 0===t&&(t={});const{open:n,floatingId:r}=e,{enabled:o=!0,role:i="dialog"}=t,s=Jr();return x.useMemo((()=>{const e={id:r,role:i};return o?"tooltip"===i?{reference:{"aria-describedby":n?r:void 0},floating:e}:{reference:{"aria-expanded":n?"true":"false","aria-haspopup":"alertdialog"===i?"dialog":i,"aria-controls":n?r:void 0,..."listbox"===i&&{role:"combobox"},..."menu"===i&&{id:s}},floating:{...e,..."menu"===i&&{"aria-labelledby":s}}}:{}}),[o,i,n,r,s])}const Wo=x.createContext({}),qo=()=>{const e=x.useContext(Wo);if(null==e)throw new Error("Popover components must be wrapped in <Popover />");return e},Uo=({children:e,modal:t=!1,...n})=>{const r=(({initialOpen:e=!1,placement:t="bottom",modal:n,open:r,onOpenChange:o,floatingOptions:i={}}={})=>{const[s,l]=x.useState(e),[a,c]=x.useState(),[u,d]=x.useState(),p=r??s,f=o??l,g=Ho({placement:t,open:p,onOpenChange:f,whileElementsMounted:dr,middleware:[Kn(5),Gn({crossAxis:t.includes("-"),padding:5}),Yn({padding:5})],...i}),h=g.context,m=Bo([zo(h,{enabled:null==r}),Fo(h),_o(h)]);return x.useMemo((()=>({open:p,setOpen:f,...m,...g,modal:n,labelId:a,descriptionId:u,floatingOptions:i,setLabelId:c,setDescriptionId:d})),[p,f,m,g,n,a,u,i])})({modal:t,...n});return(0,o.jsx)(Wo.Provider,{value:r},e)},Xo=x.forwardRef((function(e,t){const{setOpen:n}=qo();return(0,o.jsx)(Re,h({ref:t,variant:"secondary"},e,{onClick:t=>{e.onClick?.(t),n(!1)}}))}));var Go={name:"3abrc0",styles:"width:auto"};const Ko=x.forwardRef((function({style:e,...t},n){const{context:r,...i}=qo(),s=$r([i.refs.setFloating,n]);return r.open?(0,o.jsx)(Ro,null,(0,o.jsx)(Ao,{context:r,modal:i.modal},(0,o.jsx)(ge,h({ref:s,css:Go,style:{...i.floatingStyles,...e},"aria-labelledby":i.labelId,"aria-describedby":i.descriptionId,direction:"column"},i.getFloatingProps(t)),t.children))):null})),Yo={name:"96m7w5",styles:"font-size:2.488rem;line-height:3.375rem"},Jo=e=>(0,o.css)("font-size:1.188rem;line-height:1.375rem;",e.mediaQueries.md,"{font-size:1.719rem;}",e.mediaQueries.lg,"{font-size:2.074rem;line-height:2.813rem;}","",""),Qo=e=>(0,o.css)("font-size:1.438rem;line-height:1.625rem;",e.mediaQueries.lg,"{font-size:1.728rem;}","",""),ei={name:"syje04",styles:"font-size:1.44rem;line-height:1.625rem"},ti=e=>(0,o.css)("font-size:1rem;line-height:1.5rem;",e.mediaQueries.md,"{font-size:1.2rem;}","",""),ni={name:"186bvbg",styles:"font-size:1rem;line-height:1.375rem"},ri={name:"t6dbm",styles:"font-size:0.833rem;line-height:0.938rem"},oi={name:"xmvvjj",styles:"font-size:0.694rem;line-height:0.938rem"},ii={name:"176y97v",styles:"font-size:0.579rem;line-height:0.938rem"},si={name:"1289xoh",styles:"font-size:0.5rem;line-height:0.938rem"},li={name:"1j7d63q",styles:"display:block;font-size:0.481rem;line-height:0.75rem"},ai={name:"zfxb30",styles:"font-style:normal;font-weight:400"},ci={name:"1ef5ax",styles:"font-style:normal;font-weight:500"},ui={name:"14avjek",styles:"font-style:normal;font-weight:600"},di={name:"h15tq0",styles:"font-style:normal;font-weight:700"},pi={name:"14oxna6",styles:"margin-block-end:1rem"},fi={h1:"h1",h2:"h2",h3:"h3",h4:"h4",h5:"h5",h6:"h6",subtitle:"h6",body1:"p",body2:"p",body3:"p",caption:"span"};var gi=({children:e,weight:n="regular",variant:r="body1",gutter:i=!1,color:s="rgba(43, 45, 49, 1)",as:l,...a})=>{const c=l||fi[r];return(0,o.jsx)(c,h({css:[t[r],t[n],(0,o.css)("color:",s,";","",""),i&&pi,"","","",""]},a),e)};const hi=x.forwardRef((function(e,t){const{setDescriptionId:n}=qo(),r=Jr();return x.useLayoutEffect((()=>(n(r),()=>n(void 0))),[r,n]),(0,o.jsx)(gi,h({as:"div"},e,{ref:t,id:r}))})),mi=x.forwardRef((function(e,t){const{setLabelId:n}=qo(),r=Jr();return x.useLayoutEffect((()=>(n(r),()=>n(void 0))),[r,n]),(0,o.jsx)(gi,h({},e,{ref:t,id:r}),e.children)}));var xi={name:"220rkc",styles:"color:#fff"};const bi=x.forwardRef((function({children:e,asChild:t=!1,...n},r){const i=qo(),s=e?.ref,l=$r([i?.refs.setReference,r,s]);return t&&x.isValidElement(e)?x.cloneElement(e,i?.getReferenceProps({ref:l,...n,...e.props,"data-state":i.open?"open":"closed"})):(0,o.jsx)(Re,h({css:xi,ref:l,"data-state":i?.open?"open":"closed"},i?.getReferenceProps(n)),e)}));var vi=H("div",{target:"e17t09ee0"})({name:"1g20qn",styles:"display:inline-block;position:relative;min-width:180px"});const yi=x.createContext({allItems:{},isMultiple:!1,onChange:()=>{}});var wi=yi;const Ci=H("ul",{target:"e1ckq94i1"})("position:absolute;width:100%;list-style:none;margin:4px 0 0;padding:0;background:#fff;border-radius:8px;overflow-x:hidden;overflow-y:auto;z-index:2;filter:",(({theme:e})=>`drop-shadow(-4px 4px 14px ${e.colors.greyDarker14})`),";backdrop-filter:",(({theme:e})=>`drop-shadow(-4px 4px 14px ${e.colors.greyDarker14})`),";",(({theme:e})=>$e.blueInput(e)),";"),Li=H("div",{target:"e1ckq94i0"})((({theme:e})=>({display:"block",cursor:"pointer",font:"inherit",fontSize:"0.813rem",outline:"inherit",textAlign:"left",width:"100%",padding:0,margin:0,background:"none",color:"inherit",border:"none",whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",userSelect:"none","& label":{margin:"0 16px 0 0","& input:not(:checked, :indeterminate) + div::before":{border:`1.5px solid ${e.colors.greyDropdownMain}`},"& input:checked + div::before,\n & input:indeterminate + div::before":{background:e.colors.blueNotification},"& input + div":{borderRadius:"2px","&::before":{borderRadius:"2px"}}},"&:has(> label > input:checked)":{fontWeight:"800"},"&:hover input:not(:checked, :indeterminate) + div::before":{borderColor:e.colors.greyDropdownFocused}})),""),ki={id:Number.NaN,value:"No items"};var ji={name:"ti75j2",styles:"margin:0"},Mi=({ariaLabelledby:e,id:t,children:n})=>{const{onChange:r,allItems:i,isMultiple:s}=x.useContext(yi),l=e=>{const t=i[e];r(t)},a=v().Children.toArray(n).filter(Boolean).map((e=>{const t=i[e.props.value],n=Boolean(t?.isSelected);return v().cloneElement(e,{...e.props,isActive:n,isMultiple:s,"aria-selected":n,onClick:()=>{l(e.props.value)}},(0,o.jsx)(Li,{checked:n,role:"button"},s&&(0,o.jsx)(Fe,{initialState:n,externalState:n,onChange:l.bind(null,e.props.value),css:ji,color:"blue"}),e.props.children||e.props.label||e.props.value))}));return 0===a.length&&a.push((0,o.jsx)(kt,{key:ki.id,value:"","aria-selected":!1},(0,o.jsx)(Li,{as:"button"},ki.value))),(0,o.jsx)(Ci,{role:"listbox",tabindex:"-1",id:t,"aria-labelledby":e},a)},Si=H(ue,{target:"epos7tr0"})("min-width:18px;width:18px;color:",(({theme:e})=>e.colors.white),";background-color:",(({theme:e})=>e.colors.blueNotification),";font-size:10px;border-radius:50%;");const Ei=H("div",{target:"ezz35kx0"})({name:"l8l8b8",styles:"white-space:nowrap;overflow:hidden;text-overflow:ellipsis"});var Ri=({selectedItems:e=[],isDisabled:t,isOpen:n,isMultiple:r=!0,label:i,children:s,onChange:l,className:a})=>{const c=(0,o.useTheme)(),u=(0,x.useRef)(null),d=(0,x.useId)(),[p,f]=(0,x.useState)(!1),[g,h]=(0,x.useState)(n||!1),[m,b]=(0,x.useState)([]),[y,w]=(0,x.useState)({}),[C,L]=(0,x.useState)([]),k=e=>{if(t||!e)return;if(!r&&y[e.value].isSelected)return;let n={};r?(n={...y,[e.value]:{...y[e.value],isSelected:!y[e.value].isSelected}},w(n)):(n=(0,_t.mapObjIndexed)((t=>({...t,isSelected:t.value===e.value})),y),w(n),h(!1)),l&&l(Object.values(n))};(0,xt.useClickOutside)(u,(()=>g&&h(!1))),(0,x.useEffect)((()=>{t?b([c.colors.greyDarker60,c.colors.grey20]):g?b([c.colors.white,c.colors.white60]):p&&b([c.colors.greyDarker,c.colors.greyDarker60])}),[g,t,p]),(0,x.useEffect)((()=>{t&&g&&h(!1)}),[t]),(0,x.useEffect)((()=>{const t=v().Children.toArray(s).filter(Boolean),n=[],r={},o=t.map(((t,o)=>{const i={...t.props,isSelected:!!e.find((e=>e.value===t.props.value))};return n.push(i),r[i.value]=i,v().cloneElement(t,{index:o,onClick:k.bind(null),...t.props})}));w(r),L(o)}),[]);const j=v().useMemo((()=>({onChange:k,allItems:y,isMultiple:r})),[k,y,r]),M=(({allItems:e={},placeholder:t})=>{const n=Object.values(e).filter((e=>e.isSelected)).map((e=>(({activeItem:e,placeholder:t})=>e&&(e.label||e.children||e.value||e)||t)({activeItem:e,placeholder:t})));return n.length?n:[t]})({allItems:y,placeholder:"Select something"});return(0,o.jsx)(wi.Provider,{value:j},(0,o.jsx)(vi,{ref:u,"data-testid":"dropdown"},(0,o.jsx)(vt,{className:a,isOpen:g,disabled:t,onClick:h.bind(null,!g),onFocus:f.bind(null,!0),colors:m,ariaLabelledby:`dropdown-label-${d}`,ariaControls:`dropdown-popup-${d}`,isMultiple:r,selectedCount:M.length},r?(0,o.jsx)(v().Fragment,null,(0,o.jsx)(Ei,null,i,M.length>0?`: ${M[0]}`:""),M.length>1?(0,o.jsx)(Si,{as:"div"},"+",M.length-1):""):M.join(""),(0,o.jsx)(wt,{isUp:g})),g?(0,o.jsx)(Mi,null,C):null))};const Oi=e=>(0,o.css)("position:relative;background-color:",e.colors.greyLighter,";border-radius:12px;box-shadow:inset 0 -1px 1px ",e.colors.white30,";","","");var Ti={name:"14rz325",styles:"position:absolute;display:block;bottom:0;border-radius:12px"};const Ai=()=>Ti,Di={pink:i,yellow:s,green:c,turquoise:u,purple:d,blue:p,blueLight:f};var Zi=({percentage:e,color:t="green",vertical:n=!1,bgColor:r="rgba(238, 241, 247, 1)",size:i=12})=>{const s={horizontal:{height:i,width:"100%"},vertical:{height:"100%",width:i}},l={horizontal:{width:`${e}%`,height:i},vertical:{width:i,height:`${e}%`}};return(0,o.jsx)("div",{css:[Oi,{backgroundColor:r},"","","",""],style:{...s[n?"vertical":"horizontal"]}},(0,o.jsx)("span",{role:"progressbar",css:[Ai,Di[t],"","","",""],style:l[n?"vertical":"horizontal"]}))},zi={randomUUID:"undefined"!=typeof crypto&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};let Pi;const Ii=new Uint8Array(16);function $i(){if(!Pi&&(Pi="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Pi))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Pi(Ii)}const Vi=[];for(let e=0;e<256;++e)Vi.push((e+256).toString(16).slice(1));function Fi(e,t=0){return(Vi[e[t+0]]+Vi[e[t+1]]+Vi[e[t+2]]+Vi[e[t+3]]+"-"+Vi[e[t+4]]+Vi[e[t+5]]+"-"+Vi[e[t+6]]+Vi[e[t+7]]+"-"+Vi[e[t+8]]+Vi[e[t+9]]+"-"+Vi[e[t+10]]+Vi[e[t+11]]+Vi[e[t+12]]+Vi[e[t+13]]+Vi[e[t+14]]+Vi[e[t+15]]).toLowerCase()}var Hi=function(e,t,n){if(zi.randomUUID&&!t&&!e)return zi.randomUUID();const r=(e=e||{}).random||(e.rng||$i)();if(r[6]=15&r[6]|64,r[8]=63&r[8]|128,t){n=n||0;for(let e=0;e<16;++e)t[n+e]=r[e];return t}return Fi(r)};const Ni=H("div",{target:"eok4i9s0"})("width:",(({size:e})=>e),"px;height:",(({size:e})=>e),"px;position:relative;svg{position:absolute;top:0;left:0;filter:",(({theme:e,color:t})=>`drop-shadow(3px 5px 10px ${e.colors[`${t}Lighter40`]})`),";}circle{fill:none;stroke:url(#",(({gradientId:e})=>e),");stroke-width:",(({size:e})=>e/10),"px;stroke-linecap:round;stroke-dasharray:",(({fullStroke:e})=>e),";stroke-dashoffset:",(({fullStroke:e})=>e),";animation:",(({gradientId:e})=>e)," 1s linear forwards;}@keyframes ",(({gradientId:e})=>e),"{100%{stroke-dashoffset:",(e=>e.svgOffset),";}}"),Bi=H("div",{target:"ec0v4p0"})("width:",(({size:e})=>e),"px;height:",(({size:e})=>e),"px;border-radius:50%;padding:",(({size:e})=>e/10),"px;background:",(({theme:e})=>e.colors.greyLighter),";"),_i=H("div",{target:"e73kyir0"})("width:",(({size:e})=>e-e/10*2),"px;height:",(({size:e})=>e-e/10*2),"px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#fff;");var Wi=({max:e,currentValue:t,color:n="green",size:r=160,infoContent:i})=>{const s=(0,o.useTheme)(),l=`gradient-${Hi()}`,a=r/10/2,c=22/7*2*(r/2-a),u=c-44/7*(r/2-a)*(t/e*100)/100;return(0,o.jsx)(Ni,{gradientId:l,role:"progressbar",fullStroke:c,svgOffset:u,color:n,size:r},(0,o.jsx)(Bi,{size:r},(0,o.jsx)(_i,{size:r},i)),(0,o.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",version:"1.1",viewBox:`0 0 ${r} ${r}`,preserveAspectRatio:"xMinYMin slice",width:"100%",height:"100%"},(0,o.jsx)("defs",null,(0,o.jsx)("linearGradient",{id:l},(0,o.jsx)("stop",{offset:"0%",stopColor:s.colors[n]}),(0,o.jsx)("stop",{offset:"100%",stopColor:s.colors[`${n}Lighter`]}))),(0,o.jsx)("circle",{cx:r/2,cy:r/2,r:r/2-a})))},qi=({children:e,vertical:t=!1})=>{const n={horizontal:{width:"100%",height:"12px"},vertical:{height:"100%",width:"35px"}};return(0,o.jsx)("div",{style:{position:"relative",fontSize:"10px",fontWeight:700,...n[t?"vertical":"horizontal"]}},x.Children.map(e,(e=>{if((0,x.isValidElement)(e))return(0,x.cloneElement)(e,{...e.props,vertical:t})})))},Ui=({position:e="current",percentage:t,vertical:n=!1,children:r})=>{const i={horizontal:{top:0,left:"start"===e?0:"current"===e?`${t}%`:"100%",transform:"current"===e||"end"===e?"translateX(-50%)":"none"},vertical:{width:"100%",top:"start"===e?"100%":"current"===e?100-t+"%":0,transform:"start"===e?"translateY(-100%)":"current"===e?"translateY(-50%)":"none"}};return(0,o.jsx)("div",{style:{position:"absolute",display:"block",lineHeight:1,...i[n?"vertical":"horizontal"]}},r)},Xi=({children:e})=>(0,o.jsx)("div",{style:{display:"flex",height:"100%"}},x.Children.map(e,(e=>{if((0,x.isValidElement)(e))return(0,x.cloneElement)(e,{vertical:!0})})));const Gi=x.createContext({activeStep:0,orientation:"horizontal",color:"grey",inverted:!1});function Ki(){return x.useContext(Gi)}var Yi=Gi,Ji=({activeStep:e=0,orientation:t="horizontal",color:n="#4178e1",inverted:r=!1,children:i,sx:s})=>{const l=v().Children.toArray(i).filter(Boolean);r&&l.reverse();const a=l.map(((e,t)=>v().cloneElement(e,{index:r?l.length-t-1:t,...e.props}))),c=v().useMemo((()=>({activeStep:e,orientation:t,color:n,inverted:r})),[e,t,n,r]);return(0,o.jsx)(Yi.Provider,{value:c},(0,o.jsx)("div",{"data-testid":"stepper",css:(0,o.css)("display:flex;flex-direction:","vertical"===t?"column":"row",";row-gap:8px;","",""),style:{...s}},a))};const Qi=x.createContext({index:0,active:!1,completed:!1,disabled:!1});function es(){return x.useContext(Qi)}var ts=Qi;const ns=e=>(0,o.css)("position:absolute;top:10px;left:calc(",e?"50%":"-50%"," + 16px);right:calc(",e?"-50%":"50%"," + 16px);","",""),rs=e=>(0,o.css)("display:block;border-color:",e,";border-left-style:solid;border-left-width:2px;min-height:20px;","",""),os=e=>(0,o.css)("display:block;border-color:",e,";border-top-width:2px;border-top-style:solid;","","");var is={name:"1hrg7is",styles:"flex:1 1 auto;margin-left:calc(12px - 1px)"},ss=()=>{const e=(0,o.useTheme)(),{orientation:t,color:n,inverted:r}=Ki(),{active:i,completed:s}=es(),l=i||s?n:e.colors.grey;return"vertical"===t?(0,o.jsx)("div",{css:is},(0,o.jsx)("span",{css:rs(l)})):(0,o.jsx)("div",{css:ns(r)},(0,o.jsx)("span",{css:os(l)}))},ls={name:"15tvnc7",styles:"flex:1 1 0%;position:relative"},as=({index:e=0,children:t,Connector:n=ss})=>{const{activeStep:r,orientation:i,inverted:s}=Ki();let[l,a,c]=[!1,!1,!1];r===e?l=r===e:r>e?a=!0:r<e&&(c=!0);const u=(0,x.useMemo)((()=>({index:e,active:l,completed:a,disabled:c})),[e,l,a,c]);return(0,o.jsx)(ts.Provider,{value:u},s||"vertical"!==i||0===e?null:(0,o.jsx)(n,{active:l,completed:a}),(0,o.jsx)("div",{css:ls},"horizontal"===i&&0!==e?(0,o.jsx)(n,{active:l,completed:a}):null,t),s&&"vertical"===i&&0!==e&&(0,o.jsx)(n,{active:l,completed:a}))};const cs={name:"i38kcj",styles:"display:flex;align-items:center;flex-direction:column"},us={name:"1w8lz0x",styles:"display:flex;height:22px;align-items:center"},ds={name:"11a6uth",styles:"display:flex;flex-shrink:0;justify-content:center;align-items:center;width:24px;height:24px;margin-right:5px"},ps={name:"1azakc",styles:"text-align:center"},fs=e=>(0,o.css)("display:flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background-color:",e,";","","");var gs=({children:e,StepIcon:t})=>{const n=(0,o.useTheme)(),{orientation:r,color:i}=Ki(),{index:s,active:l,completed:a}=es(),c="vertical"===r?ds:us;return(0,o.jsx)("div",{role:"listitem",css:cs,style:{flexDirection:"vertical"===r?"row":"column"}},(0,o.jsx)("div",{css:c},t?(0,o.jsx)(t,{index:s,completed:a,active:a}):a?(0,o.jsx)(re,{name:"check",size:16,color:i}):(0,o.jsx)("div",{css:fs(l||a?i:n.colors.greyLighter)},(0,o.jsx)("span",{style:{color:l||a?n.colors.white:n.colors.grey}},s+1))),(0,o.jsx)("div",{css:ps},e))},hs=H("button",{target:"eb0rpfw0"})("width:44px;height:24px;border:0;outline:0;padding:0;border-radius:50px;position:relative;background:",(({theme:e})=>`linear-gradient(117.5deg, ${e.colors.greenLighter}, ${e.colors.green});`),";cursor:pointer;&::before{position:absolute;content:'';height:14px;width:14px;right:5px;bottom:calc(50% - 7px);background-color:",(({theme:e})=>e.colors.white),";transition:0.4s;border-radius:50%;}&[aria-checked='false']{background:",(({theme:e})=>e.colors.greyFocused),";}&:focus{box-shadow:",(({theme:e})=>`-4px 4px 10px ${e.colors.green40}`),";outline:0;}&:disabled{background:",(({theme:e})=>e.colors.greyDisabled),";cursor:auto;}&:not(:disabled):hover{box-shadow:",(({theme:e})=>`-4px 4px 10px ${e.colors.green40}`),";}&[aria-checked='false']:focus::after,&:not(:disabled)[aria-checked='false']:hover::after{",(({theme:e})=>Ce(e,"greenLighter","50px")),";}&[aria-checked='true']::before{transform:translateX(0);}&[aria-checked='false']::before{transform:translateX(-20px);}");const ms=(0,x.createContext)({isOn:!0,toggle:()=>{}}),xs=()=>(0,x.useContext)(ms),bs=({initialState:e,children:t})=>{const[n,r]=((e=!1)=>{const[t,n]=(0,x.useState)(e);return[t,(0,x.useCallback)((()=>n((e=>!e))),[])]})(e);return(0,o.jsx)(ms.Provider,{value:{isOn:n,toggle:r}},t)};var vs=({label:e,isDisabled:t=!1})=>{const{isOn:n,toggle:r}=xs();return(0,o.jsx)(hs,{type:"button",role:"switch","aria-readonly":t,"aria-checked":n,"aria-label":e,disabled:t,onClick:()=>!t&&r()})},ys=H("table",{target:"ef55xbt0"})({name:"1suweh2",styles:"display:table;width:100%;border-collapse:collapse;border-spacing:0"}),ws=H("td",{target:"e9xnb9j0"})("display:table-cell;vertical-align:inherit;text-align:",(({align:e})=>e||"left"),";border-bottom:1px solid #eef1f7;border-right:1px solid #eef1f7;padding:14px;"),Cs=H("thead",{target:"e1ezyu020"})({display:"table-header-group",background:"#eef1f7",[`& ${ws}`]:{borderBottom:"1px solid white",borderRight:"1px solid white"}},""),Ls=H("tr",{target:"epe3ucm0"})({name:"1cb05rb",styles:"display:table-row;outline:0;vertical-align:middle"}),ks=H("tbody",{target:"erj4fs00"})({name:"xfuyo9",styles:"display:table-row-group"});const js=({placement:e,enableClick:t=!0,enableHover:n=!1,offsetPx:r=12,size:o="small",hasArrow:i=!0,arrowProps:s={},isOpen:l=!1})=>{const[a,c]=(0,x.useState)(l||!1),u=(0,x.useRef)(null),d=Ho({open:a,onOpenChange:c,placement:e,middleware:[Kn(r),Gn(),Yn(),(p={element:u},{name:"arrow",options:p,fn(e){const{element:t,padding:n}="function"==typeof p?p(e):p;return t&&(r=t,{}.hasOwnProperty.call(r,"current"))?null!=t.current?Xn({element:t.current,padding:n}).fn(e):{}:t?Xn({element:t,padding:n}).fn(e):{};var r}})],whileElementsMounted:dr});var p;const{context:f}=d,g=function(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,dataRef:o,events:i,elements:{domReference:s,floating:l},refs:a}=e,{enabled:c=!0,delay:u=0,handleClose:d=null,mouseOnly:p=!1,restMs:f=0,move:g=!0}=t,h=oo(),m=ro(),b=so(d),v=so(u),y=x.useRef(),w=x.useRef(),C=x.useRef(),L=x.useRef(),k=x.useRef(!0),j=x.useRef(!1),M=x.useRef((()=>{})),S=x.useCallback((()=>{var e;const t=null==(e=o.current.openEvent)?void 0:e.type;return(null==t?void 0:t.includes("mouse"))&&"mousedown"!==t}),[o]);x.useEffect((()=>{if(c)return i.on("dismiss",e),()=>{i.off("dismiss",e)};function e(){clearTimeout(w.current),clearTimeout(L.current),k.current=!0}}),[c,i]),x.useEffect((()=>{if(!c||!b.current||!n)return;function e(e){S()&&r(!1,e)}const t=wn(l).documentElement;return t.addEventListener("mouseleave",e),()=>{t.removeEventListener("mouseleave",e)}}),[l,n,r,c,b,o,S]);const E=x.useCallback((function(e,t){void 0===t&&(t=!0);const n=ao(v.current,"close",y.current);n&&!C.current?(clearTimeout(w.current),w.current=setTimeout((()=>r(!1,e)),n)):t&&(clearTimeout(w.current),r(!1,e))}),[v,r]),R=x.useCallback((()=>{M.current(),C.current=void 0}),[]),O=x.useCallback((()=>{if(j.current){const e=wn(a.floating.current).body;e.style.pointerEvents="",e.removeAttribute(lo),j.current=!1}}),[a]);return x.useEffect((()=>{if(c&&tn(s)){const e=s;return n&&e.addEventListener("mouseleave",u),null==l||l.addEventListener("mouseleave",u),g&&e.addEventListener("mousemove",i,{once:!0}),e.addEventListener("mouseenter",i),e.addEventListener("mouseleave",a),()=>{n&&e.removeEventListener("mouseleave",u),null==l||l.removeEventListener("mouseleave",u),g&&e.removeEventListener("mousemove",i),e.removeEventListener("mouseenter",i),e.removeEventListener("mouseleave",a)}}function t(){return!!o.current.openEvent&&["click","mousedown"].includes(o.current.openEvent.type)}function i(e){if(clearTimeout(w.current),k.current=!1,p&&!yn(y.current)||f>0&&0===ao(v.current,"open"))return;const t=ao(v.current,"open",y.current);t?w.current=setTimeout((()=>{r(!0,e)}),t):r(!0,e)}function a(r){if(t())return;M.current();const o=wn(l);if(clearTimeout(L.current),b.current){n||clearTimeout(w.current),C.current=b.current({...e,tree:h,x:r.clientX,y:r.clientY,onClose(){O(),R(),E(r)}});const t=C.current;return o.addEventListener("mousemove",t),void(M.current=()=>{o.removeEventListener("mousemove",t)})}("touch"!==y.current||!mn(l,r.relatedTarget))&&E(r)}function u(n){t()||null==b.current||b.current({...e,tree:h,x:n.clientX,y:n.clientY,onClose(){O(),R(),E(n)}})(n)}}),[s,l,c,e,p,f,g,E,R,O,r,n,h,v,b,o]),Wr((()=>{var e;if(c&&n&&null!=(e=b.current)&&e.__options.blockPointerEvents&&S()){const e=wn(l).body;if(e.setAttribute(lo,""),e.style.pointerEvents="none",j.current=!0,tn(s)&&l){var t,r;const e=s,n=null==h||null==(t=h.nodesRef.current.find((e=>e.id===m)))||null==(r=t.context)?void 0:r.elements.floating;return n&&(n.style.pointerEvents=""),e.style.pointerEvents="auto",l.style.pointerEvents="auto",()=>{e.style.pointerEvents="",l.style.pointerEvents=""}}}}),[c,n,m,l,s,h,b,o,S]),Wr((()=>{n||(y.current=void 0,R(),O())}),[n,R,O]),x.useEffect((()=>()=>{R(),clearTimeout(w.current),clearTimeout(L.current),O()}),[c,s,R,O]),x.useMemo((()=>{if(!c)return{};function e(e){y.current=e.pointerType}return{reference:{onPointerDown:e,onPointerEnter:e,onMouseMove(e){n||0===f||(clearTimeout(L.current),L.current=setTimeout((()=>{k.current||r(!0,e.nativeEvent)}),f))}},floating:{onMouseEnter(){clearTimeout(w.current)},onMouseLeave(e){i.emit("dismiss",{type:"mouseLeave",data:{returnFocus:!1}}),E(e.nativeEvent,!1)}}}}),[i,c,f,n,r,E])}(f,{enabled:n,move:!0}),h=Bo([g,zo(f,{enabled:t}),Fo(f),_o(f)]);return(0,x.useMemo)((()=>({isOpen:a,arrowRef:u,size:o,hasArrow:i,arrowProps:s,...d,...h})),[a,u,o,i,s,d,h])},Ms=(0,x.createContext)(null),Ss=()=>{const e=(0,x.useContext)(Ms);if(null==e)throw new Error("The component should be wrapped with <Tooltip> to have access to the context");return e};var Es=({children:e,...t})=>{const n=js(t);return(0,o.jsx)(Ms.Provider,{value:n},e)},Rs=({children:e})=>{const t=Ss();return(0,x.isValidElement)(e)?(0,x.cloneElement)(e,t?.getReferenceProps({ref:t.refs.setReference})):null};const Os=({width:e=10,height:t=10,fill:n,...r})=>{const{context:i,arrowRef:s}=Ss(),l=(0,o.useTheme)();return(0,o.jsx)(Qr,h({"data-testid":"floating-arrow",ref:s,context:i,width:e,height:t,fill:n||l.colors.greyLighter},r))},Ts=H("div",{target:"e1bojkfb0"})("line-height:0.75rem;background:",(({theme:e})=>e.colors.greyLighter),";border-radius:8px;color:",(({theme:e})=>e.colors.greyDarker),";font-weight:600;"),As={name:"1gyajfm",styles:"font-size:0.579rem;padding:6px 12px"},Ds={name:"171cl2n",styles:"font-size:0.694rem;padding:8px 16px"},Zs={name:"2t1ujq",styles:"font-size:0.833rem;padding:10px 20px"},zs={small:As,medium:Ds,large:Zs};var Ps=(0,x.forwardRef)((function({children:e,className:t,style:n},r){const i=Ss(),s=$r([i?.refs.setFloating,r]);return(0,o.jsx)(Ro,null,i?.isOpen&&(0,o.jsx)(Ao,{context:i.context,modal:!1},(0,o.jsx)(Ts,i.getFloatingProps({ref:s,css:i.size&&zs[i.size],className:t,style:{position:i.strategy,top:i.y??0,left:i.x??0,width:"max-content",...n}}),i.hasArrow&&(0,o.jsx)(Os,i.arrowProps),e)))}));const Is=({point:e,size:t="small",renderValue:n})=>{const{data:r}=e,{xFormatted:i,yFormatted:s}=r;return(0,o.jsx)(Ts,{css:zs[t]},"function"==typeof n?n(r):`${i} - ${s}`)};var $s={name:"1pays9c",styles:"display:flex;flex-direction:row;justify-content:space-between;align-items:center;line-height:1rem;margin-bottom:6px"},Vs={name:"s5xdrg",styles:"display:flex;align-items:center"};const Fs=({caption:e,value:t,valueFormatted:n,iconName:r,barProps:i={}})=>{const{color:s}=i;return(0,o.jsx)(Ts,{css:[zs.small,"padding:12px;width:112px;","","",""]},(0,o.jsx)("div",{css:$s},(0,o.jsx)(gi,{variant:"body2",weight:"medium"},e),(0,o.jsx)(gi,{variant:"body3",weight:"lighter",css:Vs},n,r&&(0,o.jsx)(re,{name:r,size:8}))),(0,o.jsx)(Zi,{percentage:t,color:s,bgColor:"#fff",size:6}))},Hs={tabId:Number.NaN,renderContent(){return null}},Ns=(0,x.createContext)({activeTab:Hs,setActiveTab(){}}),Bs=()=>(0,x.useContext)(Ns),_s=({initialTab:e=Hs,children:t})=>{const{activeTab:n,setActiveTab:r}=(e=>{const[t,n]=(0,x.useState)(e);return{activeTab:t,setActiveTab:e=>n(e)}})(e);return(0,o.jsx)(Ns.Provider,{value:{activeTab:n,setActiveTab:r}},t)},Ws=H("div",{target:"e1hg26v10"})("");var qs=({children:e})=>{const{activeTab:t,setActiveTab:n}=Bs(),r=t?.tabId;return(0,o.jsx)(Ws,{role:"tablist"},x.Children.map(e,(e=>{if((0,x.isValidElement)(e)){const{renderContent:t,...o}=e.props,i=o.tabId;return(0,x.cloneElement)(e,{key:i,isActive:r===i,onClick:()=>r!==i&&n({tabId:i,renderContent:t.bind(null,o)})})}})))};const Us=H("button",{target:"e1k30s2y0"})("height:34px;border:0;outline:0;padding:0 14px;margin:0 1px 0 0;color:",(({theme:e})=>e.colors.greyDarker),";background:",(({isActive:e,theme:t})=>e?t.colors.greyFocused:t.colors.greyLighter),";font-size:14px;line-height:15px;cursor:pointer;&:first-of-type{border-radius:12px 0 0 12px;}&:last-child{border-radius:0 12px 12px 0;margin-right:0;}&:focus{background:",(({isActive:e,theme:t})=>e?t.colors.greyFocused:t.colors.greySelectedMenuItem),";}");var Xs=({onClick:e,isActive:t,text:n,ariaControls:r,tabId:i})=>(0,o.jsx)(Us,{role:"tab",id:`${i}`,"aria-selected":t,"aria-controls":r,tabIndex:0,isActive:t,title:n,onClick:()=>{"function"==typeof e&&e()}},n);const Gs=H("button",{target:"etuhwiv0"})("width:100px;max-width:100px;height:60px;border:0;border-radius:12px;outline:0;margin:0 12px 0 0;padding:0;color:",(({theme:e})=>e.colors.greyDarker),";background:",(({isActive:e,theme:t})=>e?t.colors.greyFocused:t.colors.greyLighter),";box-shadow:",(({isActive:e,theme:t})=>e?`0px 10px 40px ${t.colors.greyShadow24}`:null),";cursor:pointer;&:last-child{margin-right:0;}&:focus{background:",(({isActive:e,theme:t})=>e?t.colors.greyFocused:t.colors.greySelectedMenuItem),";}p{letter-spacing:0.1px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}@media (max-width: 900px){max-width:70px;}"),Ks=e=>(0,o.css)("fontSize:'15.5px',lineHeight:'22px',fontWeight:300,color:",e.colors.greyDarker60,",margin:0,;","",""),Ys=e=>(0,o.css)("fontSize:'14px',fontWeight:500,lineHeight:'18px',color:",e.colors.greyDarker,",margin:'3px 0 0 0',;","","");var Js=({topText:e,bottomText:t,isActive:n,onClick:r,ariaControls:i,tabId:s})=>{const l=(0,o.useTheme)();return(0,o.jsx)(Gs,{role:"tab",id:`${s}`,"aria-selected":n,"aria-controls":i,tabIndex:0,isActive:n,title:`${e}-${t}`,onClick:()=>{"function"==typeof r&&r()}},(0,o.jsx)("p",{css:Ks(l)},e),(0,o.jsx)("p",{css:Ys(l)},t))};const Qs={pink:[e=>(0,o.css)("color:",e.colors.pink,";background-color:",e.colors.pink20,";background:linear-gradient(\n 90deg,\n ",e.colors.pink20," 0%,\n ",e.colors.pinkLighter20," 100%\n );box-shadow:-4px 4px 10px ",e.colors.pinkShadow40,";","",""),(0,o.css)("border:1px solid ",r.colors.pink,";","","")],yellow:[e=>(0,o.css)("color:",e.colors.yellow,";background-color:",e.colors.yellow20,";background:linear-gradient(\n 90deg,\n ",e.colors.yellow20," 0%,\n ",e.colors.yellowLighter20," 100%\n );box-shadow:-4px 4px 10px ",e.colors.yellowLighter40,";","",""),(0,o.css)("border:1px solid ",r.colors.yellow,";","","")],green:[e=>(0,o.css)("color:",e.colors.green,";background-color:",e.colors.green20,";background:linear-gradient(\n 270deg,\n ",e.colors.greenLighter20," 0%,\n ",e.colors.green20," 100%\n );box-shadow:-4px 4px 10px ",e.colors.greenLighter40,";","",""),(0,o.css)("border:1px solid ",r.colors.green,";","","")],turquoise:[e=>(0,o.css)("color:",e.colors.turquoise,";background-color:",e.colors.turquoise20,";background:linear-gradient(\n 90deg,\n ",e.colors.turquoise20," 0%,\n ",e.colors.turquoiseLighter20," 100%\n );box-shadow:-4px 4px 10px ",e.colors.turquoiseShadow40,";","",""),(0,o.css)("border:1px solid ",r.colors.turquoise,";","","")],purple:[e=>(0,o.css)("color:",e.colors.purple,";background-color:",e.colors.purpleLighter20,";background:linear-gradient(\n 270deg,\n ",e.colors.purpleLighter20," 0%,\n ",e.colors.purple20," 100%\n );box-shadow:-4px 4px 10px ",e.colors.purpleLighter40,";","",""),(0,o.css)("border:1px solid ",r.colors.purple,";","","")],blueLight:[e=>(0,o.css)("color:",e.colors.blueLight,";background-color:",e.colors.blueLight20,";background:linear-gradient(\n 270deg,\n ",e.colors.blueLight20," 0%,\n ",e.colors.blueLightLighter20," 100%\n );box-shadow:-4px 4px 10px ",e.colors.blueLightLighter40,";","",""),(0,o.css)("border:1px solid ",r.colors.blueLight,";","","")],blue:[e=>(0,o.css)("color:",e.colors.blue,";background-color:",e.colors.blue20,";background:linear-gradient(\n 90deg,\n ",e.colors.blueLighter20,",\n ",e.colors.blue20,"\n );box-shadow:-4px 4px 10px ",e.colors.blueLightDarker40,";","",""),(0,o.css)("border:1px solid ",r.colors.blue,";","","")]};var el=({color:e="purple",size:t="medium",children:n})=>(0,o.jsx)(fe,{color:e,size:t,css:Qs[e]},n);const tl=H("textarea",{target:"e1jiml3c0"})("flex:1 100%;background:",(({theme:e})=>e.colors.white),";border-radius:12px;background-origin:border-box;background-clip:padding-box,border-box;border:",(({theme:e})=>`1px solid ${e.colors.grey}`),";color:",(({theme:e})=>e.colors.greyDarker),";width:100%;min-height:114px;padding:14px;font-weight:400;font-size:0.875rem;line-height:1rem;&::placeholder{color:",(({theme:e})=>e.colors.greyDarker60),";}&:hover{border:",(({theme:e})=>`1.4px solid ${e.colors.greyDarker60};`),";}&:focus{border:",(({theme:e})=>`2px solid ${e.colors.grey40};`),";}&:disabled{color:",(({theme:e})=>`${e.colors.grey}`),";border:",(({theme:e})=>`1px solid ${e.colors.grey}`),";background:",(({theme:e})=>e.colors.greyLighter),";&::placeholder{color:",(({theme:e})=>e.colors.grey),";}}");var nl=({name:e,placeholder:t,register:n,validationSchema:r,disabled:i=!1,rows:s=10,setCountChar:l,maxLength:a})=>{if(!n)throw new Error("Input component must be used within a Form component");const{onChange:c,...u}=n(e,r);return(0,o.jsx)(tl,h({id:`formElement-${e}`,placeholder:t,disabled:i,rows:s,maxLength:a,onChange:(0,_t.callAll)(l,c)},u))};const rl={error:"red",success:"greenLighter",basic:"greyDarker60"},ol=H("span",{target:"ereid9f0"})("display:block;font-weight:400;font-size:0.688rem;margin:6px 0 0 4px;color:",(({theme:e,status:t="basic"})=>e.colors[rl[t]]),";");var il=({role:e,status:t,disabled:n,children:r})=>(t=n?"basic":t,(0,o.jsx)(ol,{role:e,status:t},r)),sl={name:"unrh3l",styles:"display:flex;justify-content:space-between;width:100%"},ll=({multirow:e,name:t,label:n,errors:r,helperText:i,success:s,disabled:l,maxLength:a,...c})=>{const[u,d]=v().useState(0),p=s?"success":r?"error":"basic";return(0,o.jsx)(v().Fragment,null,(0,o.jsx)(Ie,{htmlFor:`formElement-${t}`},n),e?(0,o.jsx)(nl,h({name:t,disabled:l,maxLength:a,setCountChar:e=>d(e.currentTarget.value.length)},c)):(0,o.jsx)(Ht,h({name:t,status:p,disabled:l},c)),(0,o.jsx)("div",{css:sl},(0,o.jsx)(il,{role:"status",status:p,disabled:l},r?r?.message:i),(0,o.jsx)(il,{role:"meter"},a?`${u} / ${a}`:null)))};const al=H(Ie,{target:"efp6u1p0"})("display:inline-flex;flex-grow:0;align-items:center;cursor:pointer;&:has(input:disabled){cursor:default;}input:focus+svg{filter:drop-shadow(\n ",(({theme:e})=>`-4px 4px 10px ${e.colors.green40}`),"\n );}input{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}span{margin-left:10px;font-size:14px;font-weight:100;}");var cl=({id:e,name:t="",value:n,isChecked:r,isDisabled:i,isRequired:s,onChange:l,text:a,className:c})=>{const u=(0,o.useTheme)(),d=(0,x.useId)(),[p,f]=(0,x.useState)(!1),g=e||d;return(0,o.jsx)(al,{htmlFor:g,className:c,onMouseEnter:()=>f(!0),onMouseLeave:()=>f(!1)},(0,o.jsx)("input",{id:g,type:"radio",value:n,checked:r,onChange:()=>"function"==typeof l&&l(n),disabled:i,required:s,name:t}),(0,o.jsx)(re,{name:r?"radio-on":"circle",size:20,color:u.colors[i?"greyFocused40":p?"green60":"green"]}),a?(0,o.jsx)("span",{"data-testid":e},a):null)};const ul=H("div",{target:"ex21npo0"})("");var dl=({name:e,isRequired:t,initialState:n,onChange:r,children:i,className:s})=>{const[l,a]=(0,x.useState)(n),c=e=>{a(e),r(e)};return(0,o.jsx)(ul,{role:"radiogroup","aria-required":t,className:s},x.Children.map(i,(n=>{if((0,x.isValidElement)(n)&&n.type===cl){const{id:r,value:o,isDisabled:i,text:s}=n.props;return(0,x.cloneElement)(n,{key:r,name:e,value:o,isChecked:l===o,isDisabled:i,isRequired:t,text:s,onChange:c})}})))},pl=({name:e,isRequired:t=!1,control:n,children:r,...i})=>{const{field:s}=ht({control:n,name:e,rules:{required:t}});return(0,o.jsx)(dl,h({name:s.name,onChange:e=>{s.onChange(e)},isRequired:t},i),r)},fl=({src:e,alt:t,...n})=>(0,o.jsx)("img",h({src:e,alt:t},n)),gl=H("form",{target:"e33is650"})({name:"1wb33nr",styles:"display:flex;flex-flow:row wrap"}),hl=H("div",{target:"e1kq83bj0"})({name:"b3bm4q",styles:"display:flex;margin:10px 0;flex:1 1 100%;flex-wrap:wrap;align-items:flex-start"}),ml=H("div",{target:"e1fqyjs10"})({name:"10h7o7i",styles:"flex:1 1 100%"})}(),a}())},"./.storybook/preview.tsx":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:function(){return _storybook_preview}});var emotion_element_c39617d8_browser_esm=__webpack_require__("../../node_modules/.pnpm/@emotion+react@11.11.1_@types+react@18.2.8_react@18.2.0/node_modules/@emotion/react/dist/emotion-element-c39617d8.browser.esm.js"),dist=__webpack_require__("../core/dist/index.js"),injectStylesIntoStyleTag=__webpack_require__("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.85.0/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.85.0/node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.85.0/node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.85.0/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.85.0/node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.85.0/node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),style=__webpack_require__("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.85.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./.storybook/style.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(style.Z,options),style.Z&&style.Z.locals&&style.Z.locals;var emotion_react_browser_esm=__webpack_require__("../../node_modules/.pnpm/@emotion+react@11.11.1_@types+react@18.2.8_react@18.2.0/node_modules/@emotion/react/dist/emotion-react.browser.esm.js");var _storybook_preview={parameters:{controls:{expanded:!0,hideNoControlsWarning:!0}},decorators:[Story=>(0,emotion_react_browser_esm.jsx)(emotion_element_c39617d8_browser_esm.a,{theme:dist.mainTheme},Story())]}},"../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.85.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./.storybook/style.css":function(module,__webpack_exports__,__webpack_require__){"use strict";var _node_modules_pnpm_css_loader_6_8_1_webpack_5_85_0_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.85.0/node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_pnpm_css_loader_6_8_1_webpack_5_85_0_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_pnpm_css_loader_6_8_1_webpack_5_85_0_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_pnpm_css_loader_6_8_1_webpack_5_85_0_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.85.0/node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_pnpm_css_loader_6_8_1_webpack_5_85_0_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_pnpm_css_loader_6_8_1_webpack_5_85_0_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap);"]),___CSS_LOADER_EXPORT___.push([module.id,"* {\r\n outline: none;\r\n\r\n box-sizing: border-box;\r\n font-family: 'Manrope', sans-serif;\r\n\r\n color: #2b2d31;\r\n}\r\n\r\n*::after,\r\n*::before {\r\n box-sizing: border-box;\r\n}\r\n\r\nh1,\r\nh2,\r\nh3,\r\nh4,\r\nh5,\r\nh6,\r\np {\r\n margin: 0;\r\n padding: 0;\r\n}\r\n\r\n.token.plain-text,\r\n.language-jsx span {\r\n color: white;\r\n}\r\n","",{version:3,sources:["webpack://./.storybook/style.css"],names:[],mappings:"AAEA;EACE,aAAa;;EAEb,sBAAsB;EACtB,kCAAkC;;EAElC,cAAc;AAChB;;AAEA;;EAEE,sBAAsB;AACxB;;AAEA;;;;;;;EAOE,SAAS;EACT,UAAU;AACZ;;AAEA;;EAEE,YAAY;AACd",sourcesContent:["@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');\r\n\r\n* {\r\n outline: none;\r\n\r\n box-sizing: border-box;\r\n font-family: 'Manrope', sans-serif;\r\n\r\n color: #2b2d31;\r\n}\r\n\r\n*::after,\r\n*::before {\r\n box-sizing: border-box;\r\n}\r\n\r\nh1,\r\nh2,\r\nh3,\r\nh4,\r\nh5,\r\nh6,\r\np {\r\n margin: 0;\r\n padding: 0;\r\n}\r\n\r\n.token.plain-text,\r\n.language-jsx span {\r\n color: white;\r\n}\r\n"],sourceRoot:""}]),__webpack_exports__.Z=___CSS_LOADER_EXPORT___},"./src lazy recursive ^\\.\\/.*$ include: (?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx%7Cmdx))$":function(module,__unused_webpack_exports,__webpack_require__){var map={"./components/Activity/Activity.stories":["./src/components/Activity/Activity.stories.tsx",318],"./components/Activity/Activity.stories.tsx":["./src/components/Activity/Activity.stories.tsx",318],"./components/Bmi/Bmi.stories":["./src/components/Bmi/Bmi.stories.tsx",645],"./components/Bmi/Bmi.stories.tsx":["./src/components/Bmi/Bmi.stories.tsx",645],"./components/Calories/Calories.stories":["./src/components/Calories/Calories.stories.tsx",733],"./components/Calories/Calories.stories.tsx":["./src/components/Calories/Calories.stories.tsx",733],"./components/CardList/CardList.stories":["./src/components/CardList/CardList.stories.tsx",541],"./components/CardList/CardList.stories.tsx":["./src/components/CardList/CardList.stories.tsx",541],"./components/HeartRate/HeartRate.stories":["./src/components/HeartRate/HeartRate.stories.tsx",494,979,845],"./components/HeartRate/HeartRate.stories.tsx":["./src/components/HeartRate/HeartRate.stories.tsx",494,979,845],"./components/ListGoals/ListGoals.stories":["./src/components/ListGoals/ListGoals.stories.tsx",229],"./components/ListGoals/ListGoals.stories.tsx":["./src/components/ListGoals/ListGoals.stories.tsx",229],"./components/MealNutrients/MealNutrients.stories":["./src/components/MealNutrients/MealNutrients.stories.tsx",494,979,817],"./components/MealNutrients/MealNutrients.stories.tsx":["./src/components/MealNutrients/MealNutrients.stories.tsx",494,979,817],"./components/MealPlanner/MealPlanner.stories":["./src/components/MealPlanner/MealPlanner.stories.tsx",9],"./components/MealPlanner/MealPlanner.stories.tsx":["./src/components/MealPlanner/MealPlanner.stories.tsx",9],"./components/NavBar/NavBar.stories":["./src/components/NavBar/NavBar.stories.tsx",185,781,300],"./components/NavBar/NavBar.stories.tsx":["./src/components/NavBar/NavBar.stories.tsx",185,781,300],"./components/Pagination/Pagination.stories":["./src/components/Pagination/Pagination.stories.tsx",234],"./components/Pagination/Pagination.stories.tsx":["./src/components/Pagination/Pagination.stories.tsx",234],"./components/ProgressInfo/ProgressInfo.stories":["./src/components/ProgressInfo/ProgressInfo.stories.tsx",494,106,997],"./components/ProgressInfo/ProgressInfo.stories.tsx":["./src/components/ProgressInfo/ProgressInfo.stories.tsx",494,106,997],"./components/StepsCounter/StepsCounter.stories":["./src/components/StepsCounter/StepsCounter.stories.tsx",805],"./components/StepsCounter/StepsCounter.stories.tsx":["./src/components/StepsCounter/StepsCounter.stories.tsx",805],"./components/TableFilters/stories/TableFilters.stories":["./src/components/TableFilters/stories/TableFilters.stories.tsx",826],"./components/TableFilters/stories/TableFilters.stories.tsx":["./src/components/TableFilters/stories/TableFilters.stories.tsx",826],"./components/UpcomingWorkouts/UpcomingWorkouts.stories":["./src/components/UpcomingWorkouts/UpcomingWorkouts.stories.tsx",919],"./components/UpcomingWorkouts/UpcomingWorkouts.stories.tsx":["./src/components/UpcomingWorkouts/UpcomingWorkouts.stories.tsx",919],"./components/WaterConsume/WaterConsume.stories":["./src/components/WaterConsume/WaterConsume.stories.tsx",641],"./components/WaterConsume/WaterConsume.stories.tsx":["./src/components/WaterConsume/WaterConsume.stories.tsx",641]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((function(){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((function(){return __webpack_require__(id)}))}webpackAsyncContext.keys=function(){return Object.keys(map)},webpackAsyncContext.id="./src lazy recursive ^\\.\\/.*$ include: (?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx%7Cmdx))$",module.exports=webpackAsyncContext},"./storybook-config-entry.js":function(__unused_webpack_module,__unused_webpack___webpack_exports__,__webpack_require__){"use strict";var dist=__webpack_require__("../../node_modules/.pnpm/@storybook+global@5.0.0/node_modules/@storybook/global/dist/index.mjs"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("@storybook/preview-api"),external_STORYBOOK_MODULE_CHANNELS_=__webpack_require__("@storybook/channels");const importers=[async path=>{if(!/^\.[\\/](?:src(?:[\\/](?!\.)(?:(?:(?!(?:^|[\\/])\.).)*?)[\\/]|[\\/]|$)(?!\.)(?=.)[^\\/]*?\.stories\.(js|jsx|ts|tsx|mdx))$/.exec(path))return;const pathRemainder=path.substring(6);return __webpack_require__("./src lazy recursive ^\\.\\/.*$ include: (?:[\\\\/]src(?:[\\\\/](?%21\\.)(?:(?:(?%21(?:^%7C[\\\\/])\\.).)*?)[\\\\/]%7C[\\\\/]%7C$)(?%21\\.)(?=.)[^\\\\/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx%7Cmdx))$")("./"+pathRemainder)}];const channel=(0,external_STORYBOOK_MODULE_CHANNELS_.createBrowserChannel)({page:"preview"});external_STORYBOOK_MODULE_PREVIEW_API_.addons.setChannel(channel),"DEVELOPMENT"===dist.global.CONFIG_TYPE&&(window.__STORYBOOK_SERVER_CHANNEL__=channel);const preview=new external_STORYBOOK_MODULE_PREVIEW_API_.PreviewWeb;window.__STORYBOOK_PREVIEW__=preview,window.__STORYBOOK_STORY_STORE__=preview.storyStore,window.__STORYBOOK_ADDONS_CHANNEL__=channel,window.__STORYBOOK_CLIENT_API__=new external_STORYBOOK_MODULE_PREVIEW_API_.ClientApi({storyStore:preview.storyStore}),preview.initialize({importFn:async function importFn(path){for(let i=0;i<importers.length;i++){const moduleExports=await(x=()=>importers[i](path),x());if(moduleExports)return moduleExports}var x},getProjectAnnotations:()=>(0,external_STORYBOOK_MODULE_PREVIEW_API_.composeConfigs)([__webpack_require__("../../node_modules/.pnpm/@storybook+react@7.3.2_react-dom@18.2.0_react@18.2.0_typescript@5.1.3/node_modules/@storybook/react/preview.js"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-links@7.3.2_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-links/dist/preview.mjs"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-essentials@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-essentials/dist/docs/preview.mjs"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-essentials@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-essentials/dist/actions/preview.mjs"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-essentials@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-essentials/dist/backgrounds/preview.mjs"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-essentials@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-essentials/dist/measure/preview.mjs"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-essentials@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-essentials/dist/outline/preview.mjs"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-essentials@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-essentials/dist/highlight/preview.mjs"),__webpack_require__("../../node_modules/.pnpm/@storybook+addon-interactions@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-interactions/dist/preview.mjs"),__webpack_require__("./.storybook/preview.tsx")])})},"@storybook/channels":function(module){"use strict";module.exports=__STORYBOOK_MODULE_CHANNELS__},"@storybook/client-logger":function(module){"use strict";module.exports=__STORYBOOK_MODULE_CLIENT_LOGGER__},"@storybook/core-events":function(module){"use strict";module.exports=__STORYBOOK_MODULE_CORE_EVENTS__},"@storybook/preview-api":function(module){"use strict";module.exports=__STORYBOOK_MODULE_PREVIEW_API__}},function(__webpack_require__){__webpack_require__.O(0,[906],(function(){return moduleId="./storybook-config-entry.js",__webpack_require__(__webpack_require__.s=moduleId);var moduleId}));__webpack_require__.O()}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(){"use strict";var deferred,leafPrototypes,getProto,inProgress,__webpack_modules__={},__webpack_module_cache__={};function __webpack_require__(moduleId){var cachedModule=__webpack_module_cache__[moduleId];if(void 0!==cachedModule)return cachedModule.exports;var module=__webpack_module_cache__[moduleId]={id:moduleId,loaded:!1,exports:{}};return __webpack_modules__[moduleId].call(module.exports,module,module.exports,__webpack_require__),module.loaded=!0,module.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.amdO={},deferred=[],__webpack_require__.O=function(result,chunkIds,fn,priority){if(!chunkIds){var notFulfilled=1/0;for(i=0;i<deferred.length;i++){chunkIds=deferred[i][0],fn=deferred[i][1],priority=deferred[i][2];for(var fulfilled=!0,j=0;j<chunkIds.length;j++)(!1&priority||notFulfilled>=priority)&&Object.keys(__webpack_require__.O).every((function(key){return __webpack_require__.O[key](chunkIds[j])}))?chunkIds.splice(j--,1):(fulfilled=!1,priority<notFulfilled&&(notFulfilled=priority));if(fulfilled){deferred.splice(i--,1);var r=fn();void 0!==r&&(result=r)}}return result}priority=priority||0;for(var i=deferred.length;i>0&&deferred[i-1][2]>priority;i--)deferred[i]=deferred[i-1];deferred[i]=[chunkIds,fn,priority]},__webpack_require__.n=function(module){var getter=module&&module.__esModule?function(){return module.default}:function(){return module};return __webpack_require__.d(getter,{a:getter}),getter},getProto=Object.getPrototypeOf?function(obj){return Object.getPrototypeOf(obj)}:function(obj){return obj.__proto__},__webpack_require__.t=function(value,mode){if(1&mode&&(value=this(value)),8&mode)return value;if("object"==typeof value&&value){if(4&mode&&value.__esModule)return value;if(16&mode&&"function"==typeof value.then)return value}var ns=Object.create(null);__webpack_require__.r(ns);var def={};leafPrototypes=leafPrototypes||[null,getProto({}),getProto([]),getProto(getProto)];for(var current=2&mode&&value;"object"==typeof current&&!~leafPrototypes.indexOf(current);current=getProto(current))Object.getOwnPropertyNames(current).forEach((function(key){def[key]=function(){return value[key]}}));return def.default=function(){return value},__webpack_require__.d(ns,def),ns},__webpack_require__.d=function(exports,definition){for(var key in definition)__webpack_require__.o(definition,key)&&!__webpack_require__.o(exports,key)&&Object.defineProperty(exports,key,{enumerable:!0,get:definition[key]})},__webpack_require__.f={},__webpack_require__.e=function(chunkId){return Promise.all(Object.keys(__webpack_require__.f).reduce((function(promises,key){return __webpack_require__.f[key](chunkId,promises),promises}),[]))},__webpack_require__.u=function(chunkId){return({9:"components-MealPlanner-MealPlanner-stories",229:"components-ListGoals-ListGoals-stories",234:"components-Pagination-Pagination-stories",300:"components-NavBar-NavBar-stories",318:"components-Activity-Activity-stories",541:"components-CardList-CardList-stories",641:"components-WaterConsume-WaterConsume-stories",645:"components-Bmi-Bmi-stories",733:"components-Calories-Calories-stories",805:"components-StepsCounter-StepsCounter-stories",817:"components-MealNutrients-MealNutrients-stories",826:"components-TableFilters-stories-TableFilters-stories",845:"components-HeartRate-HeartRate-stories",919:"components-UpcomingWorkouts-UpcomingWorkouts-stories",997:"components-ProgressInfo-ProgressInfo-stories"}[chunkId]||chunkId)+"."+{9:"4b8341d3",76:"25b4aa80",106:"9e8cbea9",134:"2444003c",166:"927d7b90",185:"4df02b5b",229:"e68d5cbf",234:"2fd0c446",251:"8c3ebcca",263:"0a5aa731",283:"258a25c8",300:"4f37096a",318:"1f2220be",326:"7772ae66",494:"f5410ab1",497:"7e0c2fc7",540:"17a57e0e",541:"caaffeda",547:"951a46da",609:"f12a4891",620:"61fd9060",633:"947e8b75",641:"5dae388e",645:"033dba0e",661:"14057bc5",733:"61da75cb",753:"91179890",767:"1716b836",781:"3faed4b1",805:"b87bd065",817:"7e46bd1e",826:"24c4f9e8",845:"bd133239",912:"a84a00a8",919:"fab18fcf",973:"d2780faa",979:"9baaf9d9",995:"818e1781",997:"665cee18"}[chunkId]+".iframe.bundle.js"},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.o=function(obj,prop){return Object.prototype.hasOwnProperty.call(obj,prop)},inProgress={},__webpack_require__.l=function(url,done,key,chunkId){if(inProgress[url])inProgress[url].push(done);else{var script,needAttach;if(void 0!==key)for(var scripts=document.getElementsByTagName("script"),i=0;i<scripts.length;i++){var s=scripts[i];if(s.getAttribute("src")==url||s.getAttribute("data-webpack")=="@ssa-ui-kit/widgets:"+key){script=s;break}}script||(needAttach=!0,(script=document.createElement("script")).charset="utf-8",script.timeout=120,__webpack_require__.nc&&script.setAttribute("nonce",__webpack_require__.nc),script.setAttribute("data-webpack","@ssa-ui-kit/widgets:"+key),script.src=url),inProgress[url]=[done];var onScriptComplete=function(prev,event){script.onerror=script.onload=null,clearTimeout(timeout);var doneFns=inProgress[url];if(delete inProgress[url],script.parentNode&&script.parentNode.removeChild(script),doneFns&&doneFns.forEach((function(fn){return fn(event)})),prev)return prev(event)},timeout=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:script}),12e4);script.onerror=onScriptComplete.bind(null,script.onerror),script.onload=onScriptComplete.bind(null,script.onload),needAttach&&document.head.appendChild(script)}},__webpack_require__.r=function(exports){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(exports,"__esModule",{value:!0})},__webpack_require__.nmd=function(module){return module.paths=[],module.children||(module.children=[]),module},__webpack_require__.p="",function(){var installedChunks={303:0};__webpack_require__.f.j=function(chunkId,promises){var installedChunkData=__webpack_require__.o(installedChunks,chunkId)?installedChunks[chunkId]:void 0;if(0!==installedChunkData)if(installedChunkData)promises.push(installedChunkData[2]);else if(303!=chunkId){var promise=new Promise((function(resolve,reject){installedChunkData=installedChunks[chunkId]=[resolve,reject]}));promises.push(installedChunkData[2]=promise);var url=__webpack_require__.p+__webpack_require__.u(chunkId),error=new Error;__webpack_require__.l(url,(function(event){if(__webpack_require__.o(installedChunks,chunkId)&&(0!==(installedChunkData=installedChunks[chunkId])&&(installedChunks[chunkId]=void 0),installedChunkData)){var errorType=event&&("load"===event.type?"missing":event.type),realSrc=event&&event.target&&event.target.src;error.message="Loading chunk "+chunkId+" failed.\n("+errorType+": "+realSrc+")",error.name="ChunkLoadError",error.type=errorType,error.request=realSrc,installedChunkData[1](error)}}),"chunk-"+chunkId,chunkId)}else installedChunks[chunkId]=0},__webpack_require__.O.j=function(chunkId){return 0===installedChunks[chunkId]};var webpackJsonpCallback=function(parentChunkLoadingFunction,data){var moduleId,chunkId,chunkIds=data[0],moreModules=data[1],runtime=data[2],i=0;if(chunkIds.some((function(id){return 0!==installedChunks[id]}))){for(moduleId in moreModules)__webpack_require__.o(moreModules,moduleId)&&(__webpack_require__.m[moduleId]=moreModules[moduleId]);if(runtime)var result=runtime(__webpack_require__)}for(parentChunkLoadingFunction&&parentChunkLoadingFunction(data);i<chunkIds.length;i++)chunkId=chunkIds[i],__webpack_require__.o(installedChunks,chunkId)&&installedChunks[chunkId]&&installedChunks[chunkId][0](),installedChunks[chunkId]=0;return __webpack_require__.O(result)},chunkLoadingGlobal=self.webpackChunk_ssa_ui_kit_widgets=self.webpackChunk_ssa_ui_kit_widgets||[];chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null,0)),chunkLoadingGlobal.push=webpackJsonpCallback.bind(null,chunkLoadingGlobal.push.bind(chunkLoadingGlobal))}(),__webpack_require__.nc=void 0}();
|