@titan-design/react-ui 0.6.0 → 0.7.0
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/dist/bodymap.js +12 -7
- package/dist/bodymap.js.map +1 -1
- package/dist/bodymap.mjs +12 -7
- package/dist/bodymap.mjs.map +1 -1
- package/dist/index.d.mts +855 -124
- package/dist/index.d.ts +855 -124
- package/dist/index.js +2276 -801
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2230 -802
- package/dist/index.mjs.map +1 -1
- package/dist/{pages-MO0JCySL.d.mts → pages-8u_4WbL-.d.mts} +280 -57
- package/dist/{pages-D7Jlssvp.d.ts → pages-DaWiBOGa.d.ts} +280 -57
- package/dist/pages.d.mts +1 -1
- package/dist/pages.d.ts +1 -1
- package/dist/pages.js +1255 -798
- package/dist/pages.js.map +1 -1
- package/dist/pages.mjs +1255 -798
- package/dist/pages.mjs.map +1 -1
- package/dist/theme/index.d.mts +16 -82
- package/dist/theme/index.d.ts +16 -82
- package/dist/theme/index.js +13 -115
- package/dist/theme/index.js.map +1 -1
- package/dist/theme/index.mjs +13 -115
- package/dist/theme/index.mjs.map +1 -1
- package/dist/theme/tokens-css.js +14 -6
- package/dist/theme/tokens-css.js.map +1 -1
- package/dist/theme/tokens-css.mjs +14 -6
- package/dist/theme/tokens-css.mjs.map +1 -1
- package/package.json +1 -1
- package/src/arch/Architecture.stories.tsx +870 -0
- package/src/arch/annotations.json +48 -0
- package/src/arch/arch-graph.json +4301 -0
- package/src/components/custom/DateTime/DateTime.stories.tsx +1 -1
- package/src/components/custom/EmptyState/EmptyState.stories.tsx +1 -1
- package/src/components/custom/Gauge/Gauge.stories.tsx +1 -1
- package/src/components/custom/Metric/Metric.stories.tsx +1 -1
- package/src/components/custom/Scatter/Scatter.stories.tsx +1 -1
- package/src/components/custom/Sidebar/Sidebar.stories.tsx +1 -1
- package/src/components/custom/Table/Table.stories.tsx +1 -1
- package/src/components/custom/TimerReadout/TimerReadout.stories.tsx +62 -0
- package/src/components/custom/TimerReadout/TimerReadout.test.tsx +72 -0
- package/src/components/custom/TimerReadout/TimerReadout.tsx +75 -0
- package/src/components/custom/TimerReadout/index.ts +1 -0
- package/src/components/custom/Treemap/Treemap.stories.tsx +1 -1
- package/src/components/custom/Typography/Typography.stories.tsx +1 -1
- package/src/components/custom/Workout/ActiveWorkoutPage.stories.tsx +21 -13
- package/src/components/custom/Workout/ActiveWorkoutPage.test.tsx +16 -13
- package/src/components/custom/Workout/ActiveWorkoutPage.tsx +9 -15
- package/src/components/custom/Workout/BaseBadge.stories.tsx +1 -1
- package/src/components/custom/Workout/BodyMap.stories.tsx +1 -1
- package/src/components/custom/Workout/BodyMapDetailPanel.stories.tsx +1 -1
- package/src/components/custom/Workout/CapacityBandChart.stories.tsx +1 -1
- package/src/components/custom/Workout/DeviationBar.stories.tsx +1 -1
- package/src/components/custom/Workout/ExerciseCard.stories.tsx +51 -66
- package/src/components/custom/Workout/ExerciseCard.test.tsx +146 -143
- package/src/components/custom/Workout/ExerciseCard.tsx +176 -198
- package/src/components/custom/Workout/ExerciseCardHeading.stories.tsx +99 -0
- package/src/components/custom/Workout/ExerciseCardHeading.test.tsx +72 -0
- package/src/components/custom/Workout/ExerciseCardHeading.tsx +43 -0
- package/src/components/custom/Workout/ExerciseCardUnified.stories.tsx +151 -0
- package/src/components/custom/Workout/ExerciseDetailPage.stories.tsx +5 -3
- package/src/components/custom/Workout/ExerciseDetailPage.test.tsx +4 -4
- package/src/components/custom/Workout/ExerciseDetailPage.tsx +4 -5
- package/src/components/custom/Workout/ExerciseHeading.stories.tsx +81 -0
- package/src/components/custom/Workout/ExerciseHeading.test.tsx +77 -0
- package/src/components/custom/Workout/ExerciseHeading.tsx +85 -0
- package/src/components/custom/Workout/ExerciseIndicator.stories.tsx +110 -0
- package/src/components/custom/Workout/ExerciseIndicator.test.tsx +93 -0
- package/src/components/custom/Workout/ExerciseIndicator.tsx +120 -0
- package/src/components/custom/Workout/FatigueMeter.stories.tsx +51 -0
- package/src/components/custom/Workout/FatigueMeter.test.tsx +73 -0
- package/src/components/custom/Workout/FatigueMeter.tsx +82 -0
- package/src/components/custom/Workout/InputBar.stories.tsx +1 -1
- package/src/components/custom/Workout/IntensityBar.stories.tsx +1 -1
- package/src/components/custom/Workout/LiveAuraFrame.stories.tsx +153 -0
- package/src/components/custom/Workout/LiveAuraFrame.test.tsx +74 -0
- package/src/components/custom/Workout/LiveAuraFrame.tsx +105 -0
- package/src/components/custom/Workout/MesoCard.stories.tsx +1 -1
- package/src/components/custom/Workout/MesoProgressBar.stories.tsx +1 -1
- package/src/components/custom/Workout/MesoStatusCard.stories.tsx +1 -1
- package/src/components/custom/Workout/MetricTiles.stories.tsx +60 -0
- package/src/components/custom/Workout/MetricTiles.test.tsx +58 -0
- package/src/components/custom/Workout/MetricTiles.tsx +48 -0
- package/src/components/custom/Workout/MuscleGroupChip.stories.tsx +1 -1
- package/src/components/custom/Workout/PlaceholderStrip.stories.tsx +1 -1
- package/src/components/custom/Workout/PrBadge.stories.tsx +1 -1
- package/src/components/custom/Workout/PrHistoryModal.stories.tsx +1 -1
- package/src/components/custom/Workout/ProgramPlanningPage.stories.tsx +4 -16
- package/src/components/custom/Workout/ProgramPlanningPage.tsx +8 -6
- package/src/components/custom/Workout/README.md +146 -4
- package/src/components/custom/Workout/ReadinessCheck.stories.tsx +1 -1
- package/src/components/custom/Workout/RestTimer.stories.tsx +1 -1
- package/src/components/custom/Workout/RestTimer.tsx +15 -10
- package/src/components/custom/Workout/RowInventory.stories.tsx +405 -0
- package/src/components/custom/Workout/S3FullRail.stories.tsx +34 -0
- package/src/components/custom/Workout/S3SessionPace.stories.tsx +95 -0
- package/src/components/custom/Workout/S3SessionRailHeading.stories.tsx +61 -0
- package/src/components/custom/Workout/S3SetTypes.stories.tsx +176 -0
- package/src/components/custom/Workout/S3WorkoutExpansion.stories.tsx +240 -0
- package/src/components/custom/Workout/ScheduleTiles.stories.tsx +40 -0
- package/src/components/custom/Workout/ScheduleTiles.test.tsx +34 -0
- package/src/components/custom/Workout/ScheduleTiles.tsx +70 -0
- package/src/components/custom/Workout/SegmentedBar.stories.tsx +99 -0
- package/src/components/custom/Workout/SegmentedBar.test.tsx +77 -0
- package/src/components/custom/Workout/SegmentedBar.tsx +172 -0
- package/src/components/custom/Workout/SegmentedProgressBar.stories.tsx +50 -0
- package/src/components/custom/Workout/SegmentedProgressBar.test.tsx +80 -0
- package/src/components/custom/Workout/SegmentedProgressBar.tsx +67 -0
- package/src/components/custom/Workout/SessionHeader.stories.tsx +121 -0
- package/src/components/custom/Workout/SessionHeader.test.tsx +122 -0
- package/src/components/custom/Workout/SessionHeader.tsx +152 -0
- package/src/components/custom/Workout/SessionRail.stories.tsx +153 -0
- package/src/components/custom/Workout/SessionRail.test.tsx +86 -0
- package/src/components/custom/Workout/SessionRail.tsx +126 -0
- package/src/components/custom/Workout/SetBar.stories.tsx +124 -0
- package/src/components/custom/Workout/SetBar.test.tsx +123 -0
- package/src/components/custom/Workout/SetBar.tsx +171 -0
- package/src/components/custom/Workout/SetRow.stories.tsx +50 -100
- package/src/components/custom/Workout/SetRow.test.tsx +94 -166
- package/src/components/custom/Workout/SetRow.tsx +169 -232
- package/src/components/custom/Workout/SetStrip.stories.tsx +154 -0
- package/src/components/custom/Workout/SetStrip.test.tsx +109 -0
- package/src/components/custom/Workout/SetStrip.tsx +71 -0
- package/src/components/custom/Workout/SetTableHeader.stories.tsx +66 -0
- package/src/components/custom/Workout/SetTableHeader.test.tsx +47 -0
- package/src/components/custom/Workout/SetTableHeader.tsx +88 -0
- package/src/components/custom/Workout/SetsRepsLoad.stories.tsx +47 -0
- package/src/components/custom/Workout/SetsRepsLoad.test.tsx +44 -0
- package/src/components/custom/Workout/SetsRepsLoad.tsx +52 -0
- package/src/components/custom/Workout/Sparkline.stories.tsx +1 -1
- package/src/components/custom/Workout/StatusDot.stories.tsx +1 -1
- package/src/components/custom/Workout/StatusPill.stories.tsx +59 -0
- package/src/components/custom/Workout/StatusPill.test.tsx +63 -0
- package/src/components/custom/Workout/StatusPill.tsx +88 -0
- package/src/components/custom/Workout/StrengthTrendChart.stories.tsx +1 -1
- package/src/components/custom/Workout/SupersetWrapper.stories.tsx +1 -1
- package/src/components/custom/Workout/TempoBar.stories.tsx +1 -1
- package/src/components/custom/Workout/TempoDisplay.stories.tsx +12 -1
- package/src/components/custom/Workout/TempoDisplay.tsx +23 -33
- package/src/components/custom/Workout/TrainingStatusPage.stories.tsx +1 -1
- package/src/components/custom/Workout/VelocityStrip.modalities.stories.tsx +254 -0
- package/src/components/custom/Workout/VelocityStrip.responsive.stories.tsx +145 -0
- package/src/components/custom/Workout/VelocityStrip.stories.tsx +129 -66
- package/src/components/custom/Workout/VelocityStrip.test.tsx +376 -141
- package/src/components/custom/Workout/VelocityStrip.tsx +508 -120
- package/src/components/custom/Workout/VolumeLandmarkBar.stories.tsx +73 -0
- package/src/components/custom/Workout/VolumeLandmarkBar.test.tsx +119 -0
- package/src/components/custom/Workout/VolumeLandmarkBar.tsx +154 -0
- package/src/components/custom/Workout/WeekRow.stories.tsx +1 -1
- package/src/components/custom/Workout/WeightBadge.stories.tsx +1 -1
- package/src/components/custom/Workout/WorkoutCard.stories.tsx +2 -6
- package/src/components/custom/Workout/WorkoutCard.test.tsx +13 -46
- package/src/components/custom/Workout/WorkoutPill.stories.tsx +1 -1
- package/src/components/custom/Workout/ZoneTrack.stories.tsx +140 -0
- package/src/components/custom/Workout/ZoneTrack.test.tsx +200 -0
- package/src/components/custom/Workout/ZoneTrack.tsx +315 -0
- package/src/components/custom/Workout/index.ts +55 -2
- package/src/components/custom/Workout/metricText.stories.tsx +69 -0
- package/src/components/custom/Workout/metricText.tsx +34 -0
- package/src/components/custom/Workout/paceTone.test.ts +29 -0
- package/src/components/custom/Workout/paceTone.ts +27 -0
- package/src/components/custom/Workout/setHeadingKit.tsx +177 -0
- package/src/components/custom/index.ts +1 -0
- package/src/components/custom/stepper/Stepper.stories.tsx +1 -1
- package/src/components/icons/icons.stories.tsx +67 -2
- package/src/components/icons/icons.test.tsx +32 -2
- package/src/components/icons/icons.tsx +108 -0
- package/src/components/shell/BrandLockup.stories.tsx +3 -3
- package/src/components/shell/DashboardShell.stories.tsx +65 -0
- package/src/components/shell/DashboardShell.test.tsx +42 -0
- package/src/components/shell/DashboardShell.tsx +74 -0
- package/src/components/shell/DeviceIndicator.stories.tsx +2 -2
- package/src/components/shell/DeviceMenu.stories.tsx +5 -5
- package/src/components/shell/DeviceRow.stories.tsx +3 -3
- package/src/components/shell/NavItem.stories.tsx +52 -0
- package/src/components/shell/NavItem.test.tsx +35 -0
- package/src/components/shell/NavItem.tsx +75 -0
- package/src/components/shell/README.md +30 -0
- package/src/components/shell/SessionRailSpecimen.stories.tsx +753 -0
- package/src/components/shell/SessionStatePill.stories.tsx +3 -3
- package/src/components/shell/SessionStatePill.tsx +1 -1
- package/src/components/shell/SideNav.stories.tsx +81 -0
- package/src/components/shell/SideNav.test.tsx +51 -0
- package/src/components/shell/SideNav.tsx +74 -0
- package/src/components/shell/TopBar.stories.tsx +5 -5
- package/src/components/shell/index.ts +5 -0
- package/src/components/ui/alert/Alert.stories.tsx +1 -1
- package/src/components/ui/autocomplete/Autocomplete.stories.tsx +1 -1
- package/src/components/ui/avatar/Avatar.stories.tsx +1 -1
- package/src/components/ui/badge/Badge.stories.tsx +1 -1
- package/src/components/ui/breadcrumbs/Breadcrumbs.stories.tsx +1 -1
- package/src/components/ui/button/Button.stories.tsx +1 -1
- package/src/components/ui/card/Card.stories.tsx +1 -1
- package/src/components/ui/checkbox/Checkbox.stories.tsx +1 -1
- package/src/components/ui/chip/Chip.stories.tsx +1 -1
- package/src/components/ui/collapse/Collapse.stories.tsx +1 -1
- package/src/components/ui/data-row/DataRow.stories.tsx +1 -1
- package/src/components/ui/divider/Divider.stories.tsx +1 -1
- package/src/components/ui/drawer/Drawer.stories.tsx +1 -1
- package/src/components/ui/form-field/FormField.stories.tsx +1 -1
- package/src/components/ui/help-tip/HelpTip.stories.tsx +1 -1
- package/src/components/ui/icon-box/IconBox.stories.tsx +1 -1
- package/src/components/ui/index.ts +1 -0
- package/src/components/ui/indicator/Indicator.stories.tsx +2 -2
- package/src/components/ui/indicator/Indicator.test.tsx +1 -0
- package/src/components/ui/indicator/Indicator.tsx +6 -1
- package/src/components/ui/input/Input.stories.tsx +1 -1
- package/src/components/ui/link/Link.stories.tsx +1 -1
- package/src/components/ui/list-item/ListItem.stories.tsx +1 -1
- package/src/components/ui/menu/Menu.stories.tsx +1 -1
- package/src/components/ui/modal/Modal.stories.tsx +1 -1
- package/src/components/ui/pill/Pill.stories.tsx +1 -1
- package/src/components/ui/popover/Popover.stories.tsx +1 -1
- package/src/components/ui/progress/Progress.stories.tsx +1 -1
- package/src/components/ui/radio/Radio.stories.tsx +1 -1
- package/src/components/ui/section/Section.stories.tsx +1 -1
- package/src/components/ui/select/Select.stories.tsx +1 -1
- package/src/components/ui/skeleton/Skeleton.stories.tsx +1 -1
- package/src/components/ui/spinner/Spinner.stories.tsx +1 -1
- package/src/components/ui/stack/Stack.stories.tsx +1 -1
- package/src/components/ui/surface/Surface.stories.tsx +1 -1
- package/src/components/ui/switch/Switch.stories.tsx +1 -1
- package/src/components/ui/tabs/Tabs.stories.tsx +1 -1
- package/src/components/ui/tile/Tile.stories.tsx +79 -0
- package/src/components/ui/tile/Tile.test.tsx +48 -0
- package/src/components/ui/tile/Tile.tsx +64 -0
- package/src/components/ui/tile/index.ts +2 -0
- package/src/components/ui/toast/Toast.stories.tsx +1 -1
- package/src/components/ui/toolbar-button/ToolbarButton.stories.tsx +1 -1
- package/src/components/ui/tooltip/Tooltip.stories.tsx +1 -1
- package/src/examples/react-hook-form/ReactHookForm.stories.tsx +1 -1
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useTimer.test.ts +150 -0
- package/src/hooks/useTimer.ts +77 -0
- package/src/index.ts +3 -0
- package/src/pages.ts +1 -1
- package/src/stories/PresetShowcase.stories.tsx +1 -1
- package/src/stories/ThemePresets.stories.tsx +1 -1
- package/src/theme/ColorSystem.stories.tsx +1 -1
- package/src/theme/Colors.stories.tsx +5 -8
- package/src/theme/config.ts +4 -0
- package/src/theme/elevation.stories.tsx +1 -1
- package/src/theme/global.css +5 -1
- package/src/theme/shadows.stories.tsx +1 -1
- package/src/theme/tokens/primitives.ts +11 -107
- package/src/theme/tokens/semantic.ts +8 -0
- package/src/theme/workout-tokens.ts +11 -7
- package/tailwind.config.js +5 -0
|
@@ -0,0 +1,4301 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": 1,
|
|
3
|
+
"components": [
|
|
4
|
+
{
|
|
5
|
+
"name": "ActiveWorkoutPage",
|
|
6
|
+
"file": "packages/ui/src/components/custom/Workout/ActiveWorkoutPage.tsx",
|
|
7
|
+
"dir": "workout",
|
|
8
|
+
"exports": [
|
|
9
|
+
"countCompletedSets",
|
|
10
|
+
"deriveWorkoutProgress",
|
|
11
|
+
"findActiveExercise",
|
|
12
|
+
"statusToCardState",
|
|
13
|
+
"toActiveCardProps",
|
|
14
|
+
"groupExercises",
|
|
15
|
+
"ActiveWorkoutPage",
|
|
16
|
+
"ActiveExerciseStatus",
|
|
17
|
+
"ActiveWorkoutExercise",
|
|
18
|
+
"ActiveWorkoutSuperset",
|
|
19
|
+
"ActiveWorkoutInput",
|
|
20
|
+
"ActiveWorkoutRest",
|
|
21
|
+
"WorkoutProgress",
|
|
22
|
+
"WorkoutGroup",
|
|
23
|
+
"ActiveWorkoutPageProps",
|
|
24
|
+
"supersetPositionAt",
|
|
25
|
+
"toggleFocus"
|
|
26
|
+
],
|
|
27
|
+
"libDependents": 0,
|
|
28
|
+
"storyRefs": 1,
|
|
29
|
+
"xproj": {
|
|
30
|
+
"mobile": 0,
|
|
31
|
+
"mcp": 0,
|
|
32
|
+
"dash": 0,
|
|
33
|
+
"total": 0
|
|
34
|
+
},
|
|
35
|
+
"dependsOn": [
|
|
36
|
+
"ExerciseCard",
|
|
37
|
+
"InputBar",
|
|
38
|
+
"RestTimer",
|
|
39
|
+
"SetRow",
|
|
40
|
+
"SupersetWrapper"
|
|
41
|
+
],
|
|
42
|
+
"leak": {
|
|
43
|
+
"rawView": 11,
|
|
44
|
+
"rawText": 4,
|
|
45
|
+
"inlineStyle": 15,
|
|
46
|
+
"rawHex": 0,
|
|
47
|
+
"loc": 444,
|
|
48
|
+
"score": 45
|
|
49
|
+
},
|
|
50
|
+
"tier": "page",
|
|
51
|
+
"verdict": "demo-only",
|
|
52
|
+
"deadByAssociation": false,
|
|
53
|
+
"audited": "unaudited",
|
|
54
|
+
"standard": false
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "Alert",
|
|
58
|
+
"file": "packages/ui/src/components/ui/alert/Alert.tsx",
|
|
59
|
+
"dir": "ui",
|
|
60
|
+
"exports": [
|
|
61
|
+
"Alert",
|
|
62
|
+
"AlertTitle",
|
|
63
|
+
"AlertDescription",
|
|
64
|
+
"AlertStatus",
|
|
65
|
+
"AlertVariant",
|
|
66
|
+
"AlertProps",
|
|
67
|
+
"AlertTitleProps",
|
|
68
|
+
"AlertDescriptionProps"
|
|
69
|
+
],
|
|
70
|
+
"libDependents": 0,
|
|
71
|
+
"storyRefs": 1,
|
|
72
|
+
"xproj": {
|
|
73
|
+
"mobile": 0,
|
|
74
|
+
"mcp": 0,
|
|
75
|
+
"dash": 6,
|
|
76
|
+
"total": 6
|
|
77
|
+
},
|
|
78
|
+
"dependsOn": [],
|
|
79
|
+
"leak": {
|
|
80
|
+
"rawView": 3,
|
|
81
|
+
"rawText": 4,
|
|
82
|
+
"inlineStyle": 0,
|
|
83
|
+
"rawHex": 0,
|
|
84
|
+
"loc": 171,
|
|
85
|
+
"score": 7
|
|
86
|
+
},
|
|
87
|
+
"tier": "atom",
|
|
88
|
+
"verdict": "keep-app",
|
|
89
|
+
"deadByAssociation": false,
|
|
90
|
+
"audited": "unaudited",
|
|
91
|
+
"standard": true
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "Autocomplete",
|
|
95
|
+
"file": "packages/ui/src/components/ui/autocomplete/Autocomplete.tsx",
|
|
96
|
+
"dir": "ui",
|
|
97
|
+
"exports": [
|
|
98
|
+
"Autocomplete",
|
|
99
|
+
"AutocompleteOption",
|
|
100
|
+
"AutocompleteProps",
|
|
101
|
+
"defaultFilterFn"
|
|
102
|
+
],
|
|
103
|
+
"libDependents": 0,
|
|
104
|
+
"storyRefs": 1,
|
|
105
|
+
"xproj": {
|
|
106
|
+
"mobile": 0,
|
|
107
|
+
"mcp": 0,
|
|
108
|
+
"dash": 0,
|
|
109
|
+
"total": 0
|
|
110
|
+
},
|
|
111
|
+
"dependsOn": [],
|
|
112
|
+
"leak": {
|
|
113
|
+
"rawView": 5,
|
|
114
|
+
"rawText": 10,
|
|
115
|
+
"inlineStyle": 0,
|
|
116
|
+
"rawHex": 0,
|
|
117
|
+
"loc": 333,
|
|
118
|
+
"score": 15
|
|
119
|
+
},
|
|
120
|
+
"tier": "atom",
|
|
121
|
+
"verdict": "dead",
|
|
122
|
+
"deadByAssociation": false,
|
|
123
|
+
"audited": "unaudited",
|
|
124
|
+
"standard": true
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "Avatar",
|
|
128
|
+
"file": "packages/ui/src/components/ui/avatar/Avatar.tsx",
|
|
129
|
+
"dir": "ui",
|
|
130
|
+
"exports": [
|
|
131
|
+
"Avatar",
|
|
132
|
+
"AvatarBadge",
|
|
133
|
+
"AvatarGroup",
|
|
134
|
+
"AvatarSize",
|
|
135
|
+
"AvatarProps",
|
|
136
|
+
"AvatarBadgeProps",
|
|
137
|
+
"AvatarGroupProps"
|
|
138
|
+
],
|
|
139
|
+
"libDependents": 0,
|
|
140
|
+
"storyRefs": 1,
|
|
141
|
+
"xproj": {
|
|
142
|
+
"mobile": 0,
|
|
143
|
+
"mcp": 0,
|
|
144
|
+
"dash": 0,
|
|
145
|
+
"total": 0
|
|
146
|
+
},
|
|
147
|
+
"dependsOn": [],
|
|
148
|
+
"leak": {
|
|
149
|
+
"rawView": 6,
|
|
150
|
+
"rawText": 2,
|
|
151
|
+
"inlineStyle": 0,
|
|
152
|
+
"rawHex": 0,
|
|
153
|
+
"loc": 177,
|
|
154
|
+
"score": 8
|
|
155
|
+
},
|
|
156
|
+
"tier": "atom",
|
|
157
|
+
"verdict": "dead",
|
|
158
|
+
"deadByAssociation": false,
|
|
159
|
+
"audited": "unaudited",
|
|
160
|
+
"standard": true
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Badge",
|
|
164
|
+
"file": "packages/ui/src/components/ui/badge/Badge.tsx",
|
|
165
|
+
"dir": "ui",
|
|
166
|
+
"exports": [
|
|
167
|
+
"Badge",
|
|
168
|
+
"BadgeText",
|
|
169
|
+
"BadgeVariant",
|
|
170
|
+
"BadgeColor",
|
|
171
|
+
"BadgeSize",
|
|
172
|
+
"BadgeProps",
|
|
173
|
+
"BadgeTextProps"
|
|
174
|
+
],
|
|
175
|
+
"libDependents": 3,
|
|
176
|
+
"storyRefs": 3,
|
|
177
|
+
"xproj": {
|
|
178
|
+
"mobile": 0,
|
|
179
|
+
"mcp": 0,
|
|
180
|
+
"dash": 2,
|
|
181
|
+
"total": 2
|
|
182
|
+
},
|
|
183
|
+
"dependsOn": [
|
|
184
|
+
"Indicator"
|
|
185
|
+
],
|
|
186
|
+
"leak": {
|
|
187
|
+
"rawView": 1,
|
|
188
|
+
"rawText": 2,
|
|
189
|
+
"inlineStyle": 0,
|
|
190
|
+
"rawHex": 0,
|
|
191
|
+
"loc": 120,
|
|
192
|
+
"score": 3
|
|
193
|
+
},
|
|
194
|
+
"tier": "molecule",
|
|
195
|
+
"verdict": "keep-core",
|
|
196
|
+
"deadByAssociation": false,
|
|
197
|
+
"audited": "unaudited",
|
|
198
|
+
"standard": true
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "BaseBadge",
|
|
202
|
+
"file": "packages/ui/src/components/custom/Workout/BaseBadge.tsx",
|
|
203
|
+
"dir": "workout",
|
|
204
|
+
"exports": [
|
|
205
|
+
"BaseBadge",
|
|
206
|
+
"BaseBadgeVariant",
|
|
207
|
+
"BaseBadgeSize",
|
|
208
|
+
"BaseBadgeProps",
|
|
209
|
+
"baseBadgeSizeConfig",
|
|
210
|
+
"handlePressIn",
|
|
211
|
+
"handlePressOut"
|
|
212
|
+
],
|
|
213
|
+
"libDependents": 2,
|
|
214
|
+
"storyRefs": 1,
|
|
215
|
+
"xproj": {
|
|
216
|
+
"mobile": 0,
|
|
217
|
+
"mcp": 0,
|
|
218
|
+
"dash": 0,
|
|
219
|
+
"total": 0
|
|
220
|
+
},
|
|
221
|
+
"dependsOn": [],
|
|
222
|
+
"leak": {
|
|
223
|
+
"rawView": 2,
|
|
224
|
+
"rawText": 0,
|
|
225
|
+
"inlineStyle": 2,
|
|
226
|
+
"rawHex": 2,
|
|
227
|
+
"loc": 114,
|
|
228
|
+
"score": 8
|
|
229
|
+
},
|
|
230
|
+
"tier": "atom",
|
|
231
|
+
"verdict": "keep-internal",
|
|
232
|
+
"deadByAssociation": false,
|
|
233
|
+
"audited": "unaudited",
|
|
234
|
+
"standard": false
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "BodyMap",
|
|
238
|
+
"file": "packages/ui/src/components/custom/Workout/BodyMap.tsx",
|
|
239
|
+
"dir": "workout",
|
|
240
|
+
"exports": [
|
|
241
|
+
"BodyMap",
|
|
242
|
+
"BodyMapData",
|
|
243
|
+
"BodyMapProps",
|
|
244
|
+
"buildSlugParts",
|
|
245
|
+
"buildSimpleLegend",
|
|
246
|
+
"buildDetailedLegend",
|
|
247
|
+
"handleBodyPress"
|
|
248
|
+
],
|
|
249
|
+
"libDependents": 1,
|
|
250
|
+
"storyRefs": 1,
|
|
251
|
+
"xproj": {
|
|
252
|
+
"mobile": 0,
|
|
253
|
+
"mcp": 0,
|
|
254
|
+
"dash": 0,
|
|
255
|
+
"total": 0
|
|
256
|
+
},
|
|
257
|
+
"dependsOn": [],
|
|
258
|
+
"leak": {
|
|
259
|
+
"rawView": 4,
|
|
260
|
+
"rawText": 3,
|
|
261
|
+
"inlineStyle": 8,
|
|
262
|
+
"rawHex": 0,
|
|
263
|
+
"loc": 350,
|
|
264
|
+
"score": 23
|
|
265
|
+
},
|
|
266
|
+
"tier": "atom",
|
|
267
|
+
"verdict": "keep-internal",
|
|
268
|
+
"deadByAssociation": true,
|
|
269
|
+
"audited": "unaudited",
|
|
270
|
+
"standard": false
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "BodyMapDetailPanel",
|
|
274
|
+
"file": "packages/ui/src/components/custom/Workout/BodyMapDetailPanel.tsx",
|
|
275
|
+
"dir": "workout",
|
|
276
|
+
"exports": [
|
|
277
|
+
"BodyMapDetailPanel",
|
|
278
|
+
"ContributingExercise",
|
|
279
|
+
"UpcomingExercise",
|
|
280
|
+
"BodyMapDetailPanelProps",
|
|
281
|
+
"clamp01",
|
|
282
|
+
"markerFraction"
|
|
283
|
+
],
|
|
284
|
+
"libDependents": 1,
|
|
285
|
+
"storyRefs": 1,
|
|
286
|
+
"xproj": {
|
|
287
|
+
"mobile": 0,
|
|
288
|
+
"mcp": 0,
|
|
289
|
+
"dash": 0,
|
|
290
|
+
"total": 0
|
|
291
|
+
},
|
|
292
|
+
"dependsOn": [
|
|
293
|
+
"Badge",
|
|
294
|
+
"Sparkline"
|
|
295
|
+
],
|
|
296
|
+
"leak": {
|
|
297
|
+
"rawView": 15,
|
|
298
|
+
"rawText": 15,
|
|
299
|
+
"inlineStyle": 37,
|
|
300
|
+
"rawHex": 1,
|
|
301
|
+
"loc": 478,
|
|
302
|
+
"score": 105
|
|
303
|
+
},
|
|
304
|
+
"tier": "organism",
|
|
305
|
+
"verdict": "keep-internal",
|
|
306
|
+
"deadByAssociation": true,
|
|
307
|
+
"audited": "unaudited",
|
|
308
|
+
"standard": false
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "BrandLockup",
|
|
312
|
+
"file": "packages/ui/src/components/shell/BrandLockup.tsx",
|
|
313
|
+
"dir": "shell",
|
|
314
|
+
"exports": [
|
|
315
|
+
"BrandLockup",
|
|
316
|
+
"BrandLockupProps"
|
|
317
|
+
],
|
|
318
|
+
"libDependents": 1,
|
|
319
|
+
"storyRefs": 1,
|
|
320
|
+
"xproj": {
|
|
321
|
+
"mobile": 0,
|
|
322
|
+
"mcp": 0,
|
|
323
|
+
"dash": 0,
|
|
324
|
+
"total": 0
|
|
325
|
+
},
|
|
326
|
+
"dependsOn": [
|
|
327
|
+
"Typography",
|
|
328
|
+
"icons"
|
|
329
|
+
],
|
|
330
|
+
"leak": {
|
|
331
|
+
"rawView": 2,
|
|
332
|
+
"rawText": 0,
|
|
333
|
+
"inlineStyle": 0,
|
|
334
|
+
"rawHex": 0,
|
|
335
|
+
"loc": 48,
|
|
336
|
+
"score": 2
|
|
337
|
+
},
|
|
338
|
+
"tier": "organism",
|
|
339
|
+
"verdict": "keep-internal",
|
|
340
|
+
"deadByAssociation": true,
|
|
341
|
+
"audited": "unaudited",
|
|
342
|
+
"standard": false
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "Breadcrumbs",
|
|
346
|
+
"file": "packages/ui/src/components/ui/breadcrumbs/Breadcrumbs.tsx",
|
|
347
|
+
"dir": "ui",
|
|
348
|
+
"exports": [
|
|
349
|
+
"Breadcrumbs",
|
|
350
|
+
"BreadcrumbItem",
|
|
351
|
+
"BreadcrumbsProps",
|
|
352
|
+
"BreadcrumbItemProps"
|
|
353
|
+
],
|
|
354
|
+
"libDependents": 0,
|
|
355
|
+
"storyRefs": 1,
|
|
356
|
+
"xproj": {
|
|
357
|
+
"mobile": 0,
|
|
358
|
+
"mcp": 0,
|
|
359
|
+
"dash": 0,
|
|
360
|
+
"total": 0
|
|
361
|
+
},
|
|
362
|
+
"dependsOn": [],
|
|
363
|
+
"leak": {
|
|
364
|
+
"rawView": 2,
|
|
365
|
+
"rawText": 4,
|
|
366
|
+
"inlineStyle": 0,
|
|
367
|
+
"rawHex": 0,
|
|
368
|
+
"loc": 128,
|
|
369
|
+
"score": 6
|
|
370
|
+
},
|
|
371
|
+
"tier": "atom",
|
|
372
|
+
"verdict": "dead",
|
|
373
|
+
"deadByAssociation": false,
|
|
374
|
+
"audited": "unaudited",
|
|
375
|
+
"standard": true
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"name": "Button",
|
|
379
|
+
"file": "packages/ui/src/components/ui/button/Button.tsx",
|
|
380
|
+
"dir": "ui",
|
|
381
|
+
"exports": [
|
|
382
|
+
"ButtonText",
|
|
383
|
+
"ButtonIcon",
|
|
384
|
+
"ButtonSpinner",
|
|
385
|
+
"ButtonVariant",
|
|
386
|
+
"ButtonSize",
|
|
387
|
+
"ButtonColor",
|
|
388
|
+
"ButtonProps",
|
|
389
|
+
"Button",
|
|
390
|
+
"ButtonTextProps",
|
|
391
|
+
"ButtonIconProps",
|
|
392
|
+
"ButtonSpinnerProps"
|
|
393
|
+
],
|
|
394
|
+
"libDependents": 1,
|
|
395
|
+
"storyRefs": 12,
|
|
396
|
+
"xproj": {
|
|
397
|
+
"mobile": 14,
|
|
398
|
+
"mcp": 0,
|
|
399
|
+
"dash": 2,
|
|
400
|
+
"total": 16
|
|
401
|
+
},
|
|
402
|
+
"dependsOn": [],
|
|
403
|
+
"leak": {
|
|
404
|
+
"rawView": 0,
|
|
405
|
+
"rawText": 2,
|
|
406
|
+
"inlineStyle": 1,
|
|
407
|
+
"rawHex": 6,
|
|
408
|
+
"loc": 298,
|
|
409
|
+
"score": 10
|
|
410
|
+
},
|
|
411
|
+
"tier": "atom",
|
|
412
|
+
"verdict": "keep-core",
|
|
413
|
+
"deadByAssociation": false,
|
|
414
|
+
"audited": "unaudited",
|
|
415
|
+
"standard": true
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"name": "CapacityBandChart",
|
|
419
|
+
"file": "packages/ui/src/components/custom/Workout/CapacityBandChart.tsx",
|
|
420
|
+
"dir": "workout",
|
|
421
|
+
"exports": [
|
|
422
|
+
"CapacityBandChart",
|
|
423
|
+
"WorkoutDotStatus",
|
|
424
|
+
"CapacityBandDataPoint",
|
|
425
|
+
"WorkoutDot",
|
|
426
|
+
"CapacityBandProjection",
|
|
427
|
+
"CapacityBandChartProps",
|
|
428
|
+
"parseTime",
|
|
429
|
+
"formatDate",
|
|
430
|
+
"toPixels",
|
|
431
|
+
"interpEdge",
|
|
432
|
+
"buildColumns",
|
|
433
|
+
"buildEdges",
|
|
434
|
+
"collectValues",
|
|
435
|
+
"currentStatus",
|
|
436
|
+
"toX",
|
|
437
|
+
"toY"
|
|
438
|
+
],
|
|
439
|
+
"libDependents": 1,
|
|
440
|
+
"storyRefs": 1,
|
|
441
|
+
"xproj": {
|
|
442
|
+
"mobile": 0,
|
|
443
|
+
"mcp": 4,
|
|
444
|
+
"dash": 0,
|
|
445
|
+
"total": 4
|
|
446
|
+
},
|
|
447
|
+
"dependsOn": [],
|
|
448
|
+
"leak": {
|
|
449
|
+
"rawView": 9,
|
|
450
|
+
"rawText": 4,
|
|
451
|
+
"inlineStyle": 12,
|
|
452
|
+
"rawHex": 1,
|
|
453
|
+
"loc": 496,
|
|
454
|
+
"score": 38
|
|
455
|
+
},
|
|
456
|
+
"tier": "atom",
|
|
457
|
+
"verdict": "keep-core",
|
|
458
|
+
"deadByAssociation": false,
|
|
459
|
+
"audited": "unaudited",
|
|
460
|
+
"standard": false
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"name": "Card",
|
|
464
|
+
"file": "packages/ui/src/components/ui/card/Card.tsx",
|
|
465
|
+
"dir": "ui",
|
|
466
|
+
"exports": [
|
|
467
|
+
"Card",
|
|
468
|
+
"CardHeader",
|
|
469
|
+
"CardTitle",
|
|
470
|
+
"CardDescription",
|
|
471
|
+
"CardContent",
|
|
472
|
+
"CardFooter",
|
|
473
|
+
"CardSkeleton",
|
|
474
|
+
"CardInset",
|
|
475
|
+
"CardVariant",
|
|
476
|
+
"CardElevation",
|
|
477
|
+
"CardProps",
|
|
478
|
+
"CardHeaderProps",
|
|
479
|
+
"CardTitleProps",
|
|
480
|
+
"CardDescriptionProps",
|
|
481
|
+
"CardContentProps",
|
|
482
|
+
"CardFooterProps",
|
|
483
|
+
"CardSkeletonProps",
|
|
484
|
+
"CardInsetProps"
|
|
485
|
+
],
|
|
486
|
+
"libDependents": 4,
|
|
487
|
+
"storyRefs": 4,
|
|
488
|
+
"xproj": {
|
|
489
|
+
"mobile": 69,
|
|
490
|
+
"mcp": 6,
|
|
491
|
+
"dash": 2,
|
|
492
|
+
"total": 77
|
|
493
|
+
},
|
|
494
|
+
"dependsOn": [],
|
|
495
|
+
"leak": {
|
|
496
|
+
"rawView": 13,
|
|
497
|
+
"rawText": 4,
|
|
498
|
+
"inlineStyle": 0,
|
|
499
|
+
"rawHex": 1,
|
|
500
|
+
"loc": 402,
|
|
501
|
+
"score": 18
|
|
502
|
+
},
|
|
503
|
+
"tier": "atom",
|
|
504
|
+
"verdict": "keep-core",
|
|
505
|
+
"deadByAssociation": false,
|
|
506
|
+
"audited": "unaudited",
|
|
507
|
+
"standard": true
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"name": "Checkbox",
|
|
511
|
+
"file": "packages/ui/src/components/ui/checkbox/Checkbox.tsx",
|
|
512
|
+
"dir": "ui",
|
|
513
|
+
"exports": [
|
|
514
|
+
"CheckboxGroup",
|
|
515
|
+
"CheckboxSize",
|
|
516
|
+
"CheckboxProps",
|
|
517
|
+
"Checkbox",
|
|
518
|
+
"CheckboxGroupProps",
|
|
519
|
+
"handlePress"
|
|
520
|
+
],
|
|
521
|
+
"libDependents": 1,
|
|
522
|
+
"storyRefs": 1,
|
|
523
|
+
"xproj": {
|
|
524
|
+
"mobile": 0,
|
|
525
|
+
"mcp": 0,
|
|
526
|
+
"dash": 0,
|
|
527
|
+
"total": 0
|
|
528
|
+
},
|
|
529
|
+
"dependsOn": [],
|
|
530
|
+
"leak": {
|
|
531
|
+
"rawView": 6,
|
|
532
|
+
"rawText": 4,
|
|
533
|
+
"inlineStyle": 0,
|
|
534
|
+
"rawHex": 0,
|
|
535
|
+
"loc": 164,
|
|
536
|
+
"score": 10
|
|
537
|
+
},
|
|
538
|
+
"tier": "atom",
|
|
539
|
+
"verdict": "keep-internal",
|
|
540
|
+
"deadByAssociation": false,
|
|
541
|
+
"audited": "unaudited",
|
|
542
|
+
"standard": true
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "Chip",
|
|
546
|
+
"file": "packages/ui/src/components/ui/chip/Chip.tsx",
|
|
547
|
+
"dir": "ui",
|
|
548
|
+
"exports": [
|
|
549
|
+
"Chip",
|
|
550
|
+
"ChipVariant",
|
|
551
|
+
"ChipColor",
|
|
552
|
+
"ChipSize",
|
|
553
|
+
"ChipProps"
|
|
554
|
+
],
|
|
555
|
+
"libDependents": 0,
|
|
556
|
+
"storyRefs": 1,
|
|
557
|
+
"xproj": {
|
|
558
|
+
"mobile": 0,
|
|
559
|
+
"mcp": 0,
|
|
560
|
+
"dash": 0,
|
|
561
|
+
"total": 0
|
|
562
|
+
},
|
|
563
|
+
"dependsOn": [],
|
|
564
|
+
"leak": {
|
|
565
|
+
"rawView": 2,
|
|
566
|
+
"rawText": 2,
|
|
567
|
+
"inlineStyle": 0,
|
|
568
|
+
"rawHex": 0,
|
|
569
|
+
"loc": 152,
|
|
570
|
+
"score": 4
|
|
571
|
+
},
|
|
572
|
+
"tier": "atom",
|
|
573
|
+
"verdict": "dead",
|
|
574
|
+
"deadByAssociation": false,
|
|
575
|
+
"audited": "unaudited",
|
|
576
|
+
"standard": true
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"name": "Collapse",
|
|
580
|
+
"file": "packages/ui/src/components/ui/collapse/Collapse.tsx",
|
|
581
|
+
"dir": "ui",
|
|
582
|
+
"exports": [
|
|
583
|
+
"Collapse",
|
|
584
|
+
"CollapseButton",
|
|
585
|
+
"CollapseContent",
|
|
586
|
+
"Accordion",
|
|
587
|
+
"AccordionItem",
|
|
588
|
+
"AccordionButton",
|
|
589
|
+
"AccordionPanel",
|
|
590
|
+
"CollapseProps",
|
|
591
|
+
"CollapseButtonProps",
|
|
592
|
+
"CollapseContentProps",
|
|
593
|
+
"AccordionProps",
|
|
594
|
+
"AccordionItemProps",
|
|
595
|
+
"AccordionButtonProps",
|
|
596
|
+
"AccordionPanelProps",
|
|
597
|
+
"toggle",
|
|
598
|
+
"cn"
|
|
599
|
+
],
|
|
600
|
+
"libDependents": 0,
|
|
601
|
+
"storyRefs": 1,
|
|
602
|
+
"xproj": {
|
|
603
|
+
"mobile": 0,
|
|
604
|
+
"mcp": 0,
|
|
605
|
+
"dash": 0,
|
|
606
|
+
"total": 0
|
|
607
|
+
},
|
|
608
|
+
"dependsOn": [],
|
|
609
|
+
"leak": {
|
|
610
|
+
"rawView": 5,
|
|
611
|
+
"rawText": 5,
|
|
612
|
+
"inlineStyle": 0,
|
|
613
|
+
"rawHex": 0,
|
|
614
|
+
"loc": 276,
|
|
615
|
+
"score": 10
|
|
616
|
+
},
|
|
617
|
+
"tier": "atom",
|
|
618
|
+
"verdict": "dead",
|
|
619
|
+
"deadByAssociation": false,
|
|
620
|
+
"audited": "unaudited",
|
|
621
|
+
"standard": true
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"name": "DataRow",
|
|
625
|
+
"file": "packages/ui/src/components/ui/data-row/DataRow.tsx",
|
|
626
|
+
"dir": "ui",
|
|
627
|
+
"exports": [
|
|
628
|
+
"DataRow",
|
|
629
|
+
"DataRowProps"
|
|
630
|
+
],
|
|
631
|
+
"libDependents": 0,
|
|
632
|
+
"storyRefs": 1,
|
|
633
|
+
"xproj": {
|
|
634
|
+
"mobile": 2,
|
|
635
|
+
"mcp": 0,
|
|
636
|
+
"dash": 0,
|
|
637
|
+
"total": 2
|
|
638
|
+
},
|
|
639
|
+
"dependsOn": [],
|
|
640
|
+
"leak": {
|
|
641
|
+
"rawView": 2,
|
|
642
|
+
"rawText": 2,
|
|
643
|
+
"inlineStyle": 0,
|
|
644
|
+
"rawHex": 0,
|
|
645
|
+
"loc": 30,
|
|
646
|
+
"score": 4
|
|
647
|
+
},
|
|
648
|
+
"tier": "atom",
|
|
649
|
+
"verdict": "keep-app",
|
|
650
|
+
"deadByAssociation": false,
|
|
651
|
+
"audited": "unaudited",
|
|
652
|
+
"standard": false
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "DateTime",
|
|
656
|
+
"file": "packages/ui/src/components/custom/DateTime/DateTime.tsx",
|
|
657
|
+
"dir": "custom",
|
|
658
|
+
"exports": [
|
|
659
|
+
"DateTime",
|
|
660
|
+
"formatDateTime",
|
|
661
|
+
"DateTimeFormat",
|
|
662
|
+
"DateTimeProps",
|
|
663
|
+
"formatDate",
|
|
664
|
+
"getRelativeTime"
|
|
665
|
+
],
|
|
666
|
+
"libDependents": 1,
|
|
667
|
+
"storyRefs": 1,
|
|
668
|
+
"xproj": {
|
|
669
|
+
"mobile": 0,
|
|
670
|
+
"mcp": 0,
|
|
671
|
+
"dash": 0,
|
|
672
|
+
"total": 0
|
|
673
|
+
},
|
|
674
|
+
"dependsOn": [
|
|
675
|
+
"Typography"
|
|
676
|
+
],
|
|
677
|
+
"leak": {
|
|
678
|
+
"rawView": 0,
|
|
679
|
+
"rawText": 1,
|
|
680
|
+
"inlineStyle": 0,
|
|
681
|
+
"rawHex": 0,
|
|
682
|
+
"loc": 276,
|
|
683
|
+
"score": 1
|
|
684
|
+
},
|
|
685
|
+
"tier": "molecule",
|
|
686
|
+
"verdict": "keep-internal",
|
|
687
|
+
"deadByAssociation": true,
|
|
688
|
+
"audited": "unaudited",
|
|
689
|
+
"standard": true
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"name": "DeviationBar",
|
|
693
|
+
"file": "packages/ui/src/components/custom/Workout/DeviationBar.tsx",
|
|
694
|
+
"dir": "workout",
|
|
695
|
+
"exports": [
|
|
696
|
+
"DeviationBar",
|
|
697
|
+
"DeviationBarProps",
|
|
698
|
+
"getDotColor",
|
|
699
|
+
"getDeviationDescription"
|
|
700
|
+
],
|
|
701
|
+
"libDependents": 2,
|
|
702
|
+
"storyRefs": 1,
|
|
703
|
+
"xproj": {
|
|
704
|
+
"mobile": 0,
|
|
705
|
+
"mcp": 1,
|
|
706
|
+
"dash": 0,
|
|
707
|
+
"total": 1
|
|
708
|
+
},
|
|
709
|
+
"dependsOn": [],
|
|
710
|
+
"leak": {
|
|
711
|
+
"rawView": 3,
|
|
712
|
+
"rawText": 0,
|
|
713
|
+
"inlineStyle": 3,
|
|
714
|
+
"rawHex": 2,
|
|
715
|
+
"loc": 82,
|
|
716
|
+
"score": 11
|
|
717
|
+
},
|
|
718
|
+
"tier": "atom",
|
|
719
|
+
"verdict": "keep-core",
|
|
720
|
+
"deadByAssociation": false,
|
|
721
|
+
"audited": "unaudited",
|
|
722
|
+
"standard": false
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "DeviceIndicator",
|
|
726
|
+
"file": "packages/ui/src/components/shell/DeviceIndicator.tsx",
|
|
727
|
+
"dir": "shell",
|
|
728
|
+
"exports": [
|
|
729
|
+
"DeviceIndicator",
|
|
730
|
+
"DeviceConnState",
|
|
731
|
+
"DeviceIndicatorProps",
|
|
732
|
+
"cn"
|
|
733
|
+
],
|
|
734
|
+
"libDependents": 1,
|
|
735
|
+
"storyRefs": 1,
|
|
736
|
+
"xproj": {
|
|
737
|
+
"mobile": 0,
|
|
738
|
+
"mcp": 0,
|
|
739
|
+
"dash": 0,
|
|
740
|
+
"total": 0
|
|
741
|
+
},
|
|
742
|
+
"dependsOn": [
|
|
743
|
+
"icons"
|
|
744
|
+
],
|
|
745
|
+
"leak": {
|
|
746
|
+
"rawView": 0,
|
|
747
|
+
"rawText": 0,
|
|
748
|
+
"inlineStyle": 0,
|
|
749
|
+
"rawHex": 0,
|
|
750
|
+
"loc": 53,
|
|
751
|
+
"score": 0
|
|
752
|
+
},
|
|
753
|
+
"tier": "organism",
|
|
754
|
+
"verdict": "keep-internal",
|
|
755
|
+
"deadByAssociation": true,
|
|
756
|
+
"audited": "unaudited",
|
|
757
|
+
"standard": false
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "DeviceMenu",
|
|
761
|
+
"file": "packages/ui/src/components/shell/DeviceMenu.tsx",
|
|
762
|
+
"dir": "shell",
|
|
763
|
+
"exports": [
|
|
764
|
+
"DeviceMenu",
|
|
765
|
+
"DeviceMenuProps",
|
|
766
|
+
"aggregateStatus"
|
|
767
|
+
],
|
|
768
|
+
"libDependents": 1,
|
|
769
|
+
"storyRefs": 1,
|
|
770
|
+
"xproj": {
|
|
771
|
+
"mobile": 0,
|
|
772
|
+
"mcp": 0,
|
|
773
|
+
"dash": 0,
|
|
774
|
+
"total": 0
|
|
775
|
+
},
|
|
776
|
+
"dependsOn": [
|
|
777
|
+
"DeviceIndicator",
|
|
778
|
+
"DeviceRow",
|
|
779
|
+
"Popover",
|
|
780
|
+
"Typography"
|
|
781
|
+
],
|
|
782
|
+
"leak": {
|
|
783
|
+
"rawView": 1,
|
|
784
|
+
"rawText": 0,
|
|
785
|
+
"inlineStyle": 0,
|
|
786
|
+
"rawHex": 0,
|
|
787
|
+
"loc": 66,
|
|
788
|
+
"score": 1
|
|
789
|
+
},
|
|
790
|
+
"tier": "organism",
|
|
791
|
+
"verdict": "keep-internal",
|
|
792
|
+
"deadByAssociation": true,
|
|
793
|
+
"audited": "unaudited",
|
|
794
|
+
"standard": false
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"name": "DeviceRow",
|
|
798
|
+
"file": "packages/ui/src/components/shell/DeviceRow.tsx",
|
|
799
|
+
"dir": "shell",
|
|
800
|
+
"exports": [
|
|
801
|
+
"DeviceRow",
|
|
802
|
+
"DeviceRowState",
|
|
803
|
+
"Device",
|
|
804
|
+
"DeviceRowProps",
|
|
805
|
+
"cn"
|
|
806
|
+
],
|
|
807
|
+
"libDependents": 2,
|
|
808
|
+
"storyRefs": 3,
|
|
809
|
+
"xproj": {
|
|
810
|
+
"mobile": 0,
|
|
811
|
+
"mcp": 0,
|
|
812
|
+
"dash": 0,
|
|
813
|
+
"total": 0
|
|
814
|
+
},
|
|
815
|
+
"dependsOn": [
|
|
816
|
+
"Indicator",
|
|
817
|
+
"Typography"
|
|
818
|
+
],
|
|
819
|
+
"leak": {
|
|
820
|
+
"rawView": 0,
|
|
821
|
+
"rawText": 0,
|
|
822
|
+
"inlineStyle": 0,
|
|
823
|
+
"rawHex": 0,
|
|
824
|
+
"loc": 59,
|
|
825
|
+
"score": 0
|
|
826
|
+
},
|
|
827
|
+
"tier": "molecule",
|
|
828
|
+
"verdict": "keep-internal",
|
|
829
|
+
"deadByAssociation": true,
|
|
830
|
+
"audited": "unaudited",
|
|
831
|
+
"standard": false
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"name": "Divider",
|
|
835
|
+
"file": "packages/ui/src/components/ui/divider/Divider.tsx",
|
|
836
|
+
"dir": "ui",
|
|
837
|
+
"exports": [
|
|
838
|
+
"Divider",
|
|
839
|
+
"DividerOrientation",
|
|
840
|
+
"DividerProps"
|
|
841
|
+
],
|
|
842
|
+
"libDependents": 1,
|
|
843
|
+
"storyRefs": 1,
|
|
844
|
+
"xproj": {
|
|
845
|
+
"mobile": 0,
|
|
846
|
+
"mcp": 0,
|
|
847
|
+
"dash": 0,
|
|
848
|
+
"total": 0
|
|
849
|
+
},
|
|
850
|
+
"dependsOn": [],
|
|
851
|
+
"leak": {
|
|
852
|
+
"rawView": 1,
|
|
853
|
+
"rawText": 0,
|
|
854
|
+
"inlineStyle": 0,
|
|
855
|
+
"rawHex": 0,
|
|
856
|
+
"loc": 38,
|
|
857
|
+
"score": 1
|
|
858
|
+
},
|
|
859
|
+
"tier": "atom",
|
|
860
|
+
"verdict": "keep-internal",
|
|
861
|
+
"deadByAssociation": true,
|
|
862
|
+
"audited": "unaudited",
|
|
863
|
+
"standard": true
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"name": "Drawer",
|
|
867
|
+
"file": "packages/ui/src/components/ui/drawer/Drawer.tsx",
|
|
868
|
+
"dir": "ui",
|
|
869
|
+
"exports": [
|
|
870
|
+
"Drawer",
|
|
871
|
+
"DrawerHeader",
|
|
872
|
+
"DrawerBody",
|
|
873
|
+
"DrawerFooter",
|
|
874
|
+
"DrawerPlacement",
|
|
875
|
+
"DrawerSize",
|
|
876
|
+
"DrawerProps",
|
|
877
|
+
"DrawerHeaderProps",
|
|
878
|
+
"DrawerBodyProps",
|
|
879
|
+
"DrawerFooterProps",
|
|
880
|
+
"handleOverlayPress",
|
|
881
|
+
"cn"
|
|
882
|
+
],
|
|
883
|
+
"libDependents": 1,
|
|
884
|
+
"storyRefs": 1,
|
|
885
|
+
"xproj": {
|
|
886
|
+
"mobile": 6,
|
|
887
|
+
"mcp": 0,
|
|
888
|
+
"dash": 0,
|
|
889
|
+
"total": 6
|
|
890
|
+
},
|
|
891
|
+
"dependsOn": [],
|
|
892
|
+
"leak": {
|
|
893
|
+
"rawView": 7,
|
|
894
|
+
"rawText": 3,
|
|
895
|
+
"inlineStyle": 0,
|
|
896
|
+
"rawHex": 0,
|
|
897
|
+
"loc": 229,
|
|
898
|
+
"score": 10
|
|
899
|
+
},
|
|
900
|
+
"tier": "atom",
|
|
901
|
+
"verdict": "keep-core",
|
|
902
|
+
"deadByAssociation": false,
|
|
903
|
+
"audited": "unaudited",
|
|
904
|
+
"standard": true
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"name": "EmptyState",
|
|
908
|
+
"file": "packages/ui/src/components/custom/EmptyState/EmptyState.tsx",
|
|
909
|
+
"dir": "custom",
|
|
910
|
+
"exports": [
|
|
911
|
+
"EmptyState",
|
|
912
|
+
"EmptyStateProps"
|
|
913
|
+
],
|
|
914
|
+
"libDependents": 0,
|
|
915
|
+
"storyRefs": 1,
|
|
916
|
+
"xproj": {
|
|
917
|
+
"mobile": 1,
|
|
918
|
+
"mcp": 0,
|
|
919
|
+
"dash": 4,
|
|
920
|
+
"total": 5
|
|
921
|
+
},
|
|
922
|
+
"dependsOn": [],
|
|
923
|
+
"leak": {
|
|
924
|
+
"rawView": 3,
|
|
925
|
+
"rawText": 2,
|
|
926
|
+
"inlineStyle": 0,
|
|
927
|
+
"rawHex": 0,
|
|
928
|
+
"loc": 69,
|
|
929
|
+
"score": 5
|
|
930
|
+
},
|
|
931
|
+
"tier": "atom",
|
|
932
|
+
"verdict": "keep-app",
|
|
933
|
+
"deadByAssociation": false,
|
|
934
|
+
"audited": "unaudited",
|
|
935
|
+
"standard": true
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"name": "ExerciseCard",
|
|
939
|
+
"file": "packages/ui/src/components/custom/Workout/ExerciseCard.tsx",
|
|
940
|
+
"dir": "workout",
|
|
941
|
+
"exports": [
|
|
942
|
+
"ExerciseCard",
|
|
943
|
+
"ExerciseCardState",
|
|
944
|
+
"ExerciseCardProps",
|
|
945
|
+
"buildColumnHeaders",
|
|
946
|
+
"getSupersetBorderRadius",
|
|
947
|
+
"getSupersetMargin",
|
|
948
|
+
"formatSummary",
|
|
949
|
+
"formatAccessibilityLabel"
|
|
950
|
+
],
|
|
951
|
+
"libDependents": 5,
|
|
952
|
+
"storyRefs": 4,
|
|
953
|
+
"xproj": {
|
|
954
|
+
"mobile": 0,
|
|
955
|
+
"mcp": 2,
|
|
956
|
+
"dash": 0,
|
|
957
|
+
"total": 2
|
|
958
|
+
},
|
|
959
|
+
"dependsOn": [
|
|
960
|
+
"PlaceholderStrip",
|
|
961
|
+
"PrBadge",
|
|
962
|
+
"SetRow",
|
|
963
|
+
"TempoDisplay",
|
|
964
|
+
"VelocityStrip",
|
|
965
|
+
"WeightBadge"
|
|
966
|
+
],
|
|
967
|
+
"leak": {
|
|
968
|
+
"rawView": 16,
|
|
969
|
+
"rawText": 8,
|
|
970
|
+
"inlineStyle": 18,
|
|
971
|
+
"rawHex": 0,
|
|
972
|
+
"loc": 432,
|
|
973
|
+
"score": 60
|
|
974
|
+
},
|
|
975
|
+
"tier": "organism",
|
|
976
|
+
"verdict": "keep-core",
|
|
977
|
+
"deadByAssociation": false,
|
|
978
|
+
"audited": "unaudited",
|
|
979
|
+
"standard": false
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"name": "ExerciseDetailPage",
|
|
983
|
+
"file": "packages/ui/src/components/custom/Workout/ExerciseDetailPage.tsx",
|
|
984
|
+
"dir": "workout",
|
|
985
|
+
"exports": [
|
|
986
|
+
"deriveExerciseStats",
|
|
987
|
+
"toExerciseCardProps",
|
|
988
|
+
"summarizeVbt",
|
|
989
|
+
"ExerciseDetailPage",
|
|
990
|
+
"ExerciseDetailTab",
|
|
991
|
+
"EXERCISE_DETAIL_TABS",
|
|
992
|
+
"ExerciseDetailHeader",
|
|
993
|
+
"ExerciseDetailEntry",
|
|
994
|
+
"ExerciseTrend",
|
|
995
|
+
"ExerciseVbtSet",
|
|
996
|
+
"ExerciseVbt",
|
|
997
|
+
"ExerciseDetailStats",
|
|
998
|
+
"VbtSummary",
|
|
999
|
+
"ExerciseDetailPageProps"
|
|
1000
|
+
],
|
|
1001
|
+
"libDependents": 0,
|
|
1002
|
+
"storyRefs": 1,
|
|
1003
|
+
"xproj": {
|
|
1004
|
+
"mobile": 0,
|
|
1005
|
+
"mcp": 0,
|
|
1006
|
+
"dash": 0,
|
|
1007
|
+
"total": 0
|
|
1008
|
+
},
|
|
1009
|
+
"dependsOn": [
|
|
1010
|
+
"CapacityBandChart",
|
|
1011
|
+
"ExerciseCard",
|
|
1012
|
+
"MesoStatusCard",
|
|
1013
|
+
"SetRow",
|
|
1014
|
+
"StrengthTrendChart",
|
|
1015
|
+
"VelocityStrip"
|
|
1016
|
+
],
|
|
1017
|
+
"leak": {
|
|
1018
|
+
"rawView": 18,
|
|
1019
|
+
"rawText": 13,
|
|
1020
|
+
"inlineStyle": 32,
|
|
1021
|
+
"rawHex": 0,
|
|
1022
|
+
"loc": 639,
|
|
1023
|
+
"score": 95
|
|
1024
|
+
},
|
|
1025
|
+
"tier": "page",
|
|
1026
|
+
"verdict": "demo-only",
|
|
1027
|
+
"deadByAssociation": false,
|
|
1028
|
+
"audited": "unaudited",
|
|
1029
|
+
"standard": false
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"name": "FormField",
|
|
1033
|
+
"file": "packages/ui/src/components/ui/form-field/FormField.tsx",
|
|
1034
|
+
"dir": "ui",
|
|
1035
|
+
"exports": [
|
|
1036
|
+
"FormField",
|
|
1037
|
+
"FormSection",
|
|
1038
|
+
"FormActions",
|
|
1039
|
+
"FormRow",
|
|
1040
|
+
"FormFieldProps",
|
|
1041
|
+
"FormSectionProps",
|
|
1042
|
+
"FormActionsProps",
|
|
1043
|
+
"FormRowProps"
|
|
1044
|
+
],
|
|
1045
|
+
"libDependents": 1,
|
|
1046
|
+
"storyRefs": 1,
|
|
1047
|
+
"xproj": {
|
|
1048
|
+
"mobile": 0,
|
|
1049
|
+
"mcp": 0,
|
|
1050
|
+
"dash": 0,
|
|
1051
|
+
"total": 0
|
|
1052
|
+
},
|
|
1053
|
+
"dependsOn": [],
|
|
1054
|
+
"leak": {
|
|
1055
|
+
"rawView": 9,
|
|
1056
|
+
"rawText": 6,
|
|
1057
|
+
"inlineStyle": 0,
|
|
1058
|
+
"rawHex": 0,
|
|
1059
|
+
"loc": 309,
|
|
1060
|
+
"score": 15
|
|
1061
|
+
},
|
|
1062
|
+
"tier": "atom",
|
|
1063
|
+
"verdict": "keep-internal",
|
|
1064
|
+
"deadByAssociation": false,
|
|
1065
|
+
"audited": "unaudited",
|
|
1066
|
+
"standard": true
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"name": "Gauge",
|
|
1070
|
+
"file": "packages/ui/src/components/custom/Gauge/Gauge.tsx",
|
|
1071
|
+
"dir": "custom",
|
|
1072
|
+
"exports": [
|
|
1073
|
+
"Gauge",
|
|
1074
|
+
"GaugeThreshold",
|
|
1075
|
+
"GaugeProps",
|
|
1076
|
+
"clamp01",
|
|
1077
|
+
"formatValue",
|
|
1078
|
+
"bandColor",
|
|
1079
|
+
"buildTicks",
|
|
1080
|
+
"activeColor"
|
|
1081
|
+
],
|
|
1082
|
+
"libDependents": 0,
|
|
1083
|
+
"storyRefs": 1,
|
|
1084
|
+
"xproj": {
|
|
1085
|
+
"mobile": 0,
|
|
1086
|
+
"mcp": 0,
|
|
1087
|
+
"dash": 1,
|
|
1088
|
+
"total": 1
|
|
1089
|
+
},
|
|
1090
|
+
"dependsOn": [],
|
|
1091
|
+
"leak": {
|
|
1092
|
+
"rawView": 4,
|
|
1093
|
+
"rawText": 3,
|
|
1094
|
+
"inlineStyle": 4,
|
|
1095
|
+
"rawHex": 0,
|
|
1096
|
+
"loc": 171,
|
|
1097
|
+
"score": 15
|
|
1098
|
+
},
|
|
1099
|
+
"tier": "atom",
|
|
1100
|
+
"verdict": "keep-app",
|
|
1101
|
+
"deadByAssociation": false,
|
|
1102
|
+
"audited": "unaudited",
|
|
1103
|
+
"standard": false
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
"name": "HelpTip",
|
|
1107
|
+
"file": "packages/ui/src/components/ui/help-tip/HelpTip.tsx",
|
|
1108
|
+
"dir": "ui",
|
|
1109
|
+
"exports": [
|
|
1110
|
+
"HelpTip",
|
|
1111
|
+
"LabelWithHelp",
|
|
1112
|
+
"HelpTipSize",
|
|
1113
|
+
"HelpTipPlacement",
|
|
1114
|
+
"HelpTipIcon",
|
|
1115
|
+
"HelpTipProps",
|
|
1116
|
+
"LabelWithHelpProps",
|
|
1117
|
+
"handlePress",
|
|
1118
|
+
"handleHoverIn",
|
|
1119
|
+
"handleHoverOut",
|
|
1120
|
+
"cn"
|
|
1121
|
+
],
|
|
1122
|
+
"libDependents": 0,
|
|
1123
|
+
"storyRefs": 1,
|
|
1124
|
+
"xproj": {
|
|
1125
|
+
"mobile": 0,
|
|
1126
|
+
"mcp": 0,
|
|
1127
|
+
"dash": 0,
|
|
1128
|
+
"total": 0
|
|
1129
|
+
},
|
|
1130
|
+
"dependsOn": [],
|
|
1131
|
+
"leak": {
|
|
1132
|
+
"rawView": 5,
|
|
1133
|
+
"rawText": 5,
|
|
1134
|
+
"inlineStyle": 1,
|
|
1135
|
+
"rawHex": 0,
|
|
1136
|
+
"loc": 230,
|
|
1137
|
+
"score": 12
|
|
1138
|
+
},
|
|
1139
|
+
"tier": "atom",
|
|
1140
|
+
"verdict": "dead",
|
|
1141
|
+
"deadByAssociation": false,
|
|
1142
|
+
"audited": "unaudited",
|
|
1143
|
+
"standard": true
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"name": "IconBox",
|
|
1147
|
+
"file": "packages/ui/src/components/ui/icon-box/IconBox.tsx",
|
|
1148
|
+
"dir": "ui",
|
|
1149
|
+
"exports": [
|
|
1150
|
+
"IconBox",
|
|
1151
|
+
"IconBoxProps"
|
|
1152
|
+
],
|
|
1153
|
+
"libDependents": 0,
|
|
1154
|
+
"storyRefs": 1,
|
|
1155
|
+
"xproj": {
|
|
1156
|
+
"mobile": 0,
|
|
1157
|
+
"mcp": 0,
|
|
1158
|
+
"dash": 0,
|
|
1159
|
+
"total": 0
|
|
1160
|
+
},
|
|
1161
|
+
"dependsOn": [],
|
|
1162
|
+
"leak": {
|
|
1163
|
+
"rawView": 1,
|
|
1164
|
+
"rawText": 0,
|
|
1165
|
+
"inlineStyle": 0,
|
|
1166
|
+
"rawHex": 0,
|
|
1167
|
+
"loc": 58,
|
|
1168
|
+
"score": 1
|
|
1169
|
+
},
|
|
1170
|
+
"tier": "atom",
|
|
1171
|
+
"verdict": "dead",
|
|
1172
|
+
"deadByAssociation": false,
|
|
1173
|
+
"audited": "unaudited",
|
|
1174
|
+
"standard": true
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"name": "icons",
|
|
1178
|
+
"file": "packages/ui/src/components/custom/Workout/icons.tsx",
|
|
1179
|
+
"dir": "workout",
|
|
1180
|
+
"exports": [],
|
|
1181
|
+
"libDependents": 0,
|
|
1182
|
+
"storyRefs": 0,
|
|
1183
|
+
"xproj": {
|
|
1184
|
+
"mobile": 0,
|
|
1185
|
+
"mcp": 0,
|
|
1186
|
+
"dash": 0,
|
|
1187
|
+
"total": 0
|
|
1188
|
+
},
|
|
1189
|
+
"dependsOn": [
|
|
1190
|
+
"SvgIcon"
|
|
1191
|
+
],
|
|
1192
|
+
"leak": {
|
|
1193
|
+
"rawView": 0,
|
|
1194
|
+
"rawText": 0,
|
|
1195
|
+
"inlineStyle": 0,
|
|
1196
|
+
"rawHex": 0,
|
|
1197
|
+
"loc": 8,
|
|
1198
|
+
"score": 0
|
|
1199
|
+
},
|
|
1200
|
+
"tier": "molecule",
|
|
1201
|
+
"verdict": "remove",
|
|
1202
|
+
"deadByAssociation": false,
|
|
1203
|
+
"audited": "unaudited",
|
|
1204
|
+
"standard": false
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"name": "icons",
|
|
1208
|
+
"file": "packages/ui/src/components/icons/icons.tsx",
|
|
1209
|
+
"dir": "custom",
|
|
1210
|
+
"exports": [
|
|
1211
|
+
"VoltrasMark",
|
|
1212
|
+
"BluetoothIcon",
|
|
1213
|
+
"DumbbellIcon",
|
|
1214
|
+
"StarIcon",
|
|
1215
|
+
"ActivityIcon",
|
|
1216
|
+
"HistoryIcon",
|
|
1217
|
+
"LayersIcon",
|
|
1218
|
+
"PersonStandingIcon"
|
|
1219
|
+
],
|
|
1220
|
+
"libDependents": 6,
|
|
1221
|
+
"storyRefs": 3,
|
|
1222
|
+
"xproj": {
|
|
1223
|
+
"mobile": 0,
|
|
1224
|
+
"mcp": 0,
|
|
1225
|
+
"dash": 0,
|
|
1226
|
+
"total": 0
|
|
1227
|
+
},
|
|
1228
|
+
"dependsOn": [
|
|
1229
|
+
"SvgIcon"
|
|
1230
|
+
],
|
|
1231
|
+
"leak": {
|
|
1232
|
+
"rawView": 0,
|
|
1233
|
+
"rawText": 0,
|
|
1234
|
+
"inlineStyle": 0,
|
|
1235
|
+
"rawHex": 0,
|
|
1236
|
+
"loc": 89,
|
|
1237
|
+
"score": 0
|
|
1238
|
+
},
|
|
1239
|
+
"tier": "molecule",
|
|
1240
|
+
"verdict": "remove",
|
|
1241
|
+
"deadByAssociation": false,
|
|
1242
|
+
"audited": "unaudited",
|
|
1243
|
+
"standard": false
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"name": "Indicator",
|
|
1247
|
+
"file": "packages/ui/src/components/ui/indicator/Indicator.tsx",
|
|
1248
|
+
"dir": "ui",
|
|
1249
|
+
"exports": [
|
|
1250
|
+
"Indicator",
|
|
1251
|
+
"IndicatorSize",
|
|
1252
|
+
"IndicatorColor",
|
|
1253
|
+
"IndicatorPulse",
|
|
1254
|
+
"IndicatorProps"
|
|
1255
|
+
],
|
|
1256
|
+
"libDependents": 3,
|
|
1257
|
+
"storyRefs": 2,
|
|
1258
|
+
"xproj": {
|
|
1259
|
+
"mobile": 0,
|
|
1260
|
+
"mcp": 0,
|
|
1261
|
+
"dash": 0,
|
|
1262
|
+
"total": 0
|
|
1263
|
+
},
|
|
1264
|
+
"dependsOn": [],
|
|
1265
|
+
"leak": {
|
|
1266
|
+
"rawView": 4,
|
|
1267
|
+
"rawText": 0,
|
|
1268
|
+
"inlineStyle": 0,
|
|
1269
|
+
"rawHex": 0,
|
|
1270
|
+
"loc": 118,
|
|
1271
|
+
"score": 4
|
|
1272
|
+
},
|
|
1273
|
+
"tier": "atom",
|
|
1274
|
+
"verdict": "keep-internal",
|
|
1275
|
+
"deadByAssociation": false,
|
|
1276
|
+
"audited": "unaudited",
|
|
1277
|
+
"standard": false
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"name": "Input",
|
|
1281
|
+
"file": "packages/ui/src/components/ui/input/Input.tsx",
|
|
1282
|
+
"dir": "ui",
|
|
1283
|
+
"exports": [
|
|
1284
|
+
"InputGroup",
|
|
1285
|
+
"InputSize",
|
|
1286
|
+
"InputVariant",
|
|
1287
|
+
"InputProps",
|
|
1288
|
+
"Input",
|
|
1289
|
+
"InputGroupProps",
|
|
1290
|
+
"PasswordInputProps",
|
|
1291
|
+
"PasswordInput",
|
|
1292
|
+
"handleFocus",
|
|
1293
|
+
"handleBlur",
|
|
1294
|
+
"cn",
|
|
1295
|
+
"toggleVisibility"
|
|
1296
|
+
],
|
|
1297
|
+
"libDependents": 1,
|
|
1298
|
+
"storyRefs": 4,
|
|
1299
|
+
"xproj": {
|
|
1300
|
+
"mobile": 0,
|
|
1301
|
+
"mcp": 0,
|
|
1302
|
+
"dash": 0,
|
|
1303
|
+
"total": 0
|
|
1304
|
+
},
|
|
1305
|
+
"dependsOn": [],
|
|
1306
|
+
"leak": {
|
|
1307
|
+
"rawView": 12,
|
|
1308
|
+
"rawText": 4,
|
|
1309
|
+
"inlineStyle": 0,
|
|
1310
|
+
"rawHex": 0,
|
|
1311
|
+
"loc": 274,
|
|
1312
|
+
"score": 16
|
|
1313
|
+
},
|
|
1314
|
+
"tier": "atom",
|
|
1315
|
+
"verdict": "keep-internal",
|
|
1316
|
+
"deadByAssociation": false,
|
|
1317
|
+
"audited": "unaudited",
|
|
1318
|
+
"standard": true
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"name": "InputBar",
|
|
1322
|
+
"file": "packages/ui/src/components/custom/Workout/InputBar.tsx",
|
|
1323
|
+
"dir": "workout",
|
|
1324
|
+
"exports": [
|
|
1325
|
+
"InputBar",
|
|
1326
|
+
"InputBarProps"
|
|
1327
|
+
],
|
|
1328
|
+
"libDependents": 2,
|
|
1329
|
+
"storyRefs": 1,
|
|
1330
|
+
"xproj": {
|
|
1331
|
+
"mobile": 0,
|
|
1332
|
+
"mcp": 0,
|
|
1333
|
+
"dash": 0,
|
|
1334
|
+
"total": 0
|
|
1335
|
+
},
|
|
1336
|
+
"dependsOn": [],
|
|
1337
|
+
"leak": {
|
|
1338
|
+
"rawView": 3,
|
|
1339
|
+
"rawText": 5,
|
|
1340
|
+
"inlineStyle": 10,
|
|
1341
|
+
"rawHex": 1,
|
|
1342
|
+
"loc": 163,
|
|
1343
|
+
"score": 29
|
|
1344
|
+
},
|
|
1345
|
+
"tier": "atom",
|
|
1346
|
+
"verdict": "keep-internal",
|
|
1347
|
+
"deadByAssociation": true,
|
|
1348
|
+
"audited": "unaudited",
|
|
1349
|
+
"standard": false
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"name": "IntensityBar",
|
|
1353
|
+
"file": "packages/ui/src/components/custom/Workout/IntensityBar.tsx",
|
|
1354
|
+
"dir": "workout",
|
|
1355
|
+
"exports": [
|
|
1356
|
+
"IntensityBar",
|
|
1357
|
+
"IntensityBarOrientation",
|
|
1358
|
+
"IntensityBarProps",
|
|
1359
|
+
"zoneForPct",
|
|
1360
|
+
"clampFill",
|
|
1361
|
+
"isAtTarget"
|
|
1362
|
+
],
|
|
1363
|
+
"libDependents": 3,
|
|
1364
|
+
"storyRefs": 1,
|
|
1365
|
+
"xproj": {
|
|
1366
|
+
"mobile": 0,
|
|
1367
|
+
"mcp": 0,
|
|
1368
|
+
"dash": 0,
|
|
1369
|
+
"total": 0
|
|
1370
|
+
},
|
|
1371
|
+
"dependsOn": [],
|
|
1372
|
+
"leak": {
|
|
1373
|
+
"rawView": 4,
|
|
1374
|
+
"rawText": 2,
|
|
1375
|
+
"inlineStyle": 5,
|
|
1376
|
+
"rawHex": 2,
|
|
1377
|
+
"loc": 222,
|
|
1378
|
+
"score": 18
|
|
1379
|
+
},
|
|
1380
|
+
"tier": "atom",
|
|
1381
|
+
"verdict": "keep-internal",
|
|
1382
|
+
"deadByAssociation": false,
|
|
1383
|
+
"audited": "unaudited",
|
|
1384
|
+
"standard": false
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"name": "Link",
|
|
1388
|
+
"file": "packages/ui/src/components/ui/link/Link.tsx",
|
|
1389
|
+
"dir": "ui",
|
|
1390
|
+
"exports": [
|
|
1391
|
+
"Link",
|
|
1392
|
+
"LinkUnderline",
|
|
1393
|
+
"LinkColor",
|
|
1394
|
+
"LinkProps",
|
|
1395
|
+
"handlePress"
|
|
1396
|
+
],
|
|
1397
|
+
"libDependents": 0,
|
|
1398
|
+
"storyRefs": 1,
|
|
1399
|
+
"xproj": {
|
|
1400
|
+
"mobile": 0,
|
|
1401
|
+
"mcp": 0,
|
|
1402
|
+
"dash": 0,
|
|
1403
|
+
"total": 0
|
|
1404
|
+
},
|
|
1405
|
+
"dependsOn": [],
|
|
1406
|
+
"leak": {
|
|
1407
|
+
"rawView": 0,
|
|
1408
|
+
"rawText": 1,
|
|
1409
|
+
"inlineStyle": 0,
|
|
1410
|
+
"rawHex": 0,
|
|
1411
|
+
"loc": 87,
|
|
1412
|
+
"score": 1
|
|
1413
|
+
},
|
|
1414
|
+
"tier": "atom",
|
|
1415
|
+
"verdict": "dead",
|
|
1416
|
+
"deadByAssociation": false,
|
|
1417
|
+
"audited": "unaudited",
|
|
1418
|
+
"standard": true
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"name": "ListItem",
|
|
1422
|
+
"file": "packages/ui/src/components/ui/list-item/ListItem.tsx",
|
|
1423
|
+
"dir": "ui",
|
|
1424
|
+
"exports": [
|
|
1425
|
+
"ListItem",
|
|
1426
|
+
"ListItemIcon",
|
|
1427
|
+
"ListItemContent",
|
|
1428
|
+
"ListItemTrailing",
|
|
1429
|
+
"ListItemDivider",
|
|
1430
|
+
"ListItemProps",
|
|
1431
|
+
"ListItemIconProps",
|
|
1432
|
+
"ListItemContentProps",
|
|
1433
|
+
"ListItemTrailingProps",
|
|
1434
|
+
"ListItemDividerProps",
|
|
1435
|
+
"cn"
|
|
1436
|
+
],
|
|
1437
|
+
"libDependents": 0,
|
|
1438
|
+
"storyRefs": 1,
|
|
1439
|
+
"xproj": {
|
|
1440
|
+
"mobile": 9,
|
|
1441
|
+
"mcp": 0,
|
|
1442
|
+
"dash": 0,
|
|
1443
|
+
"total": 9
|
|
1444
|
+
},
|
|
1445
|
+
"dependsOn": [],
|
|
1446
|
+
"leak": {
|
|
1447
|
+
"rawView": 4,
|
|
1448
|
+
"rawText": 2,
|
|
1449
|
+
"inlineStyle": 0,
|
|
1450
|
+
"rawHex": 0,
|
|
1451
|
+
"loc": 90,
|
|
1452
|
+
"score": 6
|
|
1453
|
+
},
|
|
1454
|
+
"tier": "atom",
|
|
1455
|
+
"verdict": "keep-app",
|
|
1456
|
+
"deadByAssociation": false,
|
|
1457
|
+
"audited": "unaudited",
|
|
1458
|
+
"standard": true
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"name": "Menu",
|
|
1462
|
+
"file": "packages/ui/src/components/ui/menu/Menu.tsx",
|
|
1463
|
+
"dir": "ui",
|
|
1464
|
+
"exports": [
|
|
1465
|
+
"Menu",
|
|
1466
|
+
"MenuTrigger",
|
|
1467
|
+
"MenuList",
|
|
1468
|
+
"MenuItem",
|
|
1469
|
+
"MenuDivider",
|
|
1470
|
+
"MenuGroup",
|
|
1471
|
+
"MenuProps",
|
|
1472
|
+
"MenuTriggerProps",
|
|
1473
|
+
"MenuListProps",
|
|
1474
|
+
"MenuItemProps",
|
|
1475
|
+
"MenuDividerProps",
|
|
1476
|
+
"MenuGroupProps",
|
|
1477
|
+
"setIsOpen",
|
|
1478
|
+
"closeMenu"
|
|
1479
|
+
],
|
|
1480
|
+
"libDependents": 0,
|
|
1481
|
+
"storyRefs": 1,
|
|
1482
|
+
"xproj": {
|
|
1483
|
+
"mobile": 0,
|
|
1484
|
+
"mcp": 0,
|
|
1485
|
+
"dash": 0,
|
|
1486
|
+
"total": 0
|
|
1487
|
+
},
|
|
1488
|
+
"dependsOn": [],
|
|
1489
|
+
"leak": {
|
|
1490
|
+
"rawView": 5,
|
|
1491
|
+
"rawText": 2,
|
|
1492
|
+
"inlineStyle": 1,
|
|
1493
|
+
"rawHex": 0,
|
|
1494
|
+
"loc": 223,
|
|
1495
|
+
"score": 9
|
|
1496
|
+
},
|
|
1497
|
+
"tier": "atom",
|
|
1498
|
+
"verdict": "dead",
|
|
1499
|
+
"deadByAssociation": false,
|
|
1500
|
+
"audited": "unaudited",
|
|
1501
|
+
"standard": true
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"name": "MesoCard",
|
|
1505
|
+
"file": "packages/ui/src/components/custom/Workout/MesoCard.tsx",
|
|
1506
|
+
"dir": "workout",
|
|
1507
|
+
"exports": [
|
|
1508
|
+
"MesoCard",
|
|
1509
|
+
"MesoVolumeHeatmapEntry",
|
|
1510
|
+
"MesoCardProps",
|
|
1511
|
+
"heatmapColor"
|
|
1512
|
+
],
|
|
1513
|
+
"libDependents": 1,
|
|
1514
|
+
"storyRefs": 1,
|
|
1515
|
+
"xproj": {
|
|
1516
|
+
"mobile": 0,
|
|
1517
|
+
"mcp": 0,
|
|
1518
|
+
"dash": 0,
|
|
1519
|
+
"total": 0
|
|
1520
|
+
},
|
|
1521
|
+
"dependsOn": [
|
|
1522
|
+
"Badge",
|
|
1523
|
+
"Card",
|
|
1524
|
+
"WeekRow"
|
|
1525
|
+
],
|
|
1526
|
+
"leak": {
|
|
1527
|
+
"rawView": 8,
|
|
1528
|
+
"rawText": 2,
|
|
1529
|
+
"inlineStyle": 9,
|
|
1530
|
+
"rawHex": 1,
|
|
1531
|
+
"loc": 239,
|
|
1532
|
+
"score": 29
|
|
1533
|
+
},
|
|
1534
|
+
"tier": "organism",
|
|
1535
|
+
"verdict": "keep-internal",
|
|
1536
|
+
"deadByAssociation": true,
|
|
1537
|
+
"audited": "unaudited",
|
|
1538
|
+
"standard": false
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"name": "MesoProgressBar",
|
|
1542
|
+
"file": "packages/ui/src/components/custom/Workout/MesoProgressBar.tsx",
|
|
1543
|
+
"dir": "workout",
|
|
1544
|
+
"exports": [
|
|
1545
|
+
"MesoProgressBar",
|
|
1546
|
+
"MesoStatus",
|
|
1547
|
+
"Meso",
|
|
1548
|
+
"MesoProgressBarProps",
|
|
1549
|
+
"clampProgress",
|
|
1550
|
+
"handlePressIn",
|
|
1551
|
+
"handlePressOut"
|
|
1552
|
+
],
|
|
1553
|
+
"libDependents": 1,
|
|
1554
|
+
"storyRefs": 1,
|
|
1555
|
+
"xproj": {
|
|
1556
|
+
"mobile": 0,
|
|
1557
|
+
"mcp": 0,
|
|
1558
|
+
"dash": 0,
|
|
1559
|
+
"total": 0
|
|
1560
|
+
},
|
|
1561
|
+
"dependsOn": [],
|
|
1562
|
+
"leak": {
|
|
1563
|
+
"rawView": 2,
|
|
1564
|
+
"rawText": 0,
|
|
1565
|
+
"inlineStyle": 3,
|
|
1566
|
+
"rawHex": 0,
|
|
1567
|
+
"loc": 167,
|
|
1568
|
+
"score": 8
|
|
1569
|
+
},
|
|
1570
|
+
"tier": "atom",
|
|
1571
|
+
"verdict": "keep-internal",
|
|
1572
|
+
"deadByAssociation": true,
|
|
1573
|
+
"audited": "unaudited",
|
|
1574
|
+
"standard": false
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"name": "MesoStatusCard",
|
|
1578
|
+
"file": "packages/ui/src/components/custom/Workout/MesoStatusCard.tsx",
|
|
1579
|
+
"dir": "workout",
|
|
1580
|
+
"exports": [
|
|
1581
|
+
"MesoStatusCard",
|
|
1582
|
+
"MesoStatusBadgeVariant",
|
|
1583
|
+
"MesoStatusBadge",
|
|
1584
|
+
"MesoStatusMetric",
|
|
1585
|
+
"MesoStatusGauge",
|
|
1586
|
+
"MesoStatusCoaching",
|
|
1587
|
+
"MesoStatusNextTarget",
|
|
1588
|
+
"MesoStatusCardProps",
|
|
1589
|
+
"clamp01",
|
|
1590
|
+
"getGaugeZoneColor",
|
|
1591
|
+
"renderCoachingText"
|
|
1592
|
+
],
|
|
1593
|
+
"libDependents": 2,
|
|
1594
|
+
"storyRefs": 3,
|
|
1595
|
+
"xproj": {
|
|
1596
|
+
"mobile": 0,
|
|
1597
|
+
"mcp": 1,
|
|
1598
|
+
"dash": 0,
|
|
1599
|
+
"total": 1
|
|
1600
|
+
},
|
|
1601
|
+
"dependsOn": [
|
|
1602
|
+
"Card",
|
|
1603
|
+
"StatusDot"
|
|
1604
|
+
],
|
|
1605
|
+
"leak": {
|
|
1606
|
+
"rawView": 17,
|
|
1607
|
+
"rawText": 11,
|
|
1608
|
+
"inlineStyle": 24,
|
|
1609
|
+
"rawHex": 0,
|
|
1610
|
+
"loc": 466,
|
|
1611
|
+
"score": 76
|
|
1612
|
+
},
|
|
1613
|
+
"tier": "molecule",
|
|
1614
|
+
"verdict": "keep-core",
|
|
1615
|
+
"deadByAssociation": false,
|
|
1616
|
+
"audited": "unaudited",
|
|
1617
|
+
"standard": false
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"name": "Metric",
|
|
1621
|
+
"file": "packages/ui/src/components/custom/Metric/Metric.tsx",
|
|
1622
|
+
"dir": "custom",
|
|
1623
|
+
"exports": [
|
|
1624
|
+
"Metric",
|
|
1625
|
+
"MetricGroup",
|
|
1626
|
+
"MetricTrend",
|
|
1627
|
+
"MetricProps",
|
|
1628
|
+
"MetricGroupProps"
|
|
1629
|
+
],
|
|
1630
|
+
"libDependents": 0,
|
|
1631
|
+
"storyRefs": 1,
|
|
1632
|
+
"xproj": {
|
|
1633
|
+
"mobile": 8,
|
|
1634
|
+
"mcp": 3,
|
|
1635
|
+
"dash": 1,
|
|
1636
|
+
"total": 12
|
|
1637
|
+
},
|
|
1638
|
+
"dependsOn": [],
|
|
1639
|
+
"leak": {
|
|
1640
|
+
"rawView": 5,
|
|
1641
|
+
"rawText": 4,
|
|
1642
|
+
"inlineStyle": 0,
|
|
1643
|
+
"rawHex": 0,
|
|
1644
|
+
"loc": 93,
|
|
1645
|
+
"score": 9
|
|
1646
|
+
},
|
|
1647
|
+
"tier": "atom",
|
|
1648
|
+
"verdict": "keep-app",
|
|
1649
|
+
"deadByAssociation": false,
|
|
1650
|
+
"audited": "unaudited",
|
|
1651
|
+
"standard": false
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"name": "Modal",
|
|
1655
|
+
"file": "packages/ui/src/components/ui/modal/Modal.tsx",
|
|
1656
|
+
"dir": "ui",
|
|
1657
|
+
"exports": [
|
|
1658
|
+
"Modal",
|
|
1659
|
+
"ModalContent",
|
|
1660
|
+
"ModalHeader",
|
|
1661
|
+
"ModalTitle",
|
|
1662
|
+
"ModalCloseButton",
|
|
1663
|
+
"ModalBody",
|
|
1664
|
+
"ModalFooter",
|
|
1665
|
+
"ModalSize",
|
|
1666
|
+
"ModalScrollBehavior",
|
|
1667
|
+
"ModalProps",
|
|
1668
|
+
"ModalContentProps",
|
|
1669
|
+
"ModalHeaderProps",
|
|
1670
|
+
"ModalTitleProps",
|
|
1671
|
+
"ModalCloseButtonProps",
|
|
1672
|
+
"ModalBodyProps",
|
|
1673
|
+
"ModalFooterProps",
|
|
1674
|
+
"handleBackdropPress",
|
|
1675
|
+
"cn"
|
|
1676
|
+
],
|
|
1677
|
+
"libDependents": 0,
|
|
1678
|
+
"storyRefs": 1,
|
|
1679
|
+
"xproj": {
|
|
1680
|
+
"mobile": 0,
|
|
1681
|
+
"mcp": 0,
|
|
1682
|
+
"dash": 0,
|
|
1683
|
+
"total": 0
|
|
1684
|
+
},
|
|
1685
|
+
"dependsOn": [],
|
|
1686
|
+
"leak": {
|
|
1687
|
+
"rawView": 4,
|
|
1688
|
+
"rawText": 3,
|
|
1689
|
+
"inlineStyle": 0,
|
|
1690
|
+
"rawHex": 0,
|
|
1691
|
+
"loc": 255,
|
|
1692
|
+
"score": 7
|
|
1693
|
+
},
|
|
1694
|
+
"tier": "atom",
|
|
1695
|
+
"verdict": "dead",
|
|
1696
|
+
"deadByAssociation": false,
|
|
1697
|
+
"audited": "unaudited",
|
|
1698
|
+
"standard": true
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"name": "MuscleGroupChip",
|
|
1702
|
+
"file": "packages/ui/src/components/custom/Workout/MuscleGroupChip.tsx",
|
|
1703
|
+
"dir": "workout",
|
|
1704
|
+
"exports": [
|
|
1705
|
+
"MuscleGroupChip",
|
|
1706
|
+
"VolumeStatus",
|
|
1707
|
+
"MuscleGroupChipProps"
|
|
1708
|
+
],
|
|
1709
|
+
"libDependents": 3,
|
|
1710
|
+
"storyRefs": 1,
|
|
1711
|
+
"xproj": {
|
|
1712
|
+
"mobile": 0,
|
|
1713
|
+
"mcp": 2,
|
|
1714
|
+
"dash": 0,
|
|
1715
|
+
"total": 2
|
|
1716
|
+
},
|
|
1717
|
+
"dependsOn": [],
|
|
1718
|
+
"leak": {
|
|
1719
|
+
"rawView": 2,
|
|
1720
|
+
"rawText": 1,
|
|
1721
|
+
"inlineStyle": 3,
|
|
1722
|
+
"rawHex": 2,
|
|
1723
|
+
"loc": 94,
|
|
1724
|
+
"score": 11
|
|
1725
|
+
},
|
|
1726
|
+
"tier": "atom",
|
|
1727
|
+
"verdict": "keep-core",
|
|
1728
|
+
"deadByAssociation": false,
|
|
1729
|
+
"audited": "unaudited",
|
|
1730
|
+
"standard": false
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"name": "NavItem",
|
|
1734
|
+
"file": "packages/ui/src/components/shell/NavItem.tsx",
|
|
1735
|
+
"dir": "shell",
|
|
1736
|
+
"exports": [
|
|
1737
|
+
"NavItem",
|
|
1738
|
+
"NavItemProps",
|
|
1739
|
+
"cn"
|
|
1740
|
+
],
|
|
1741
|
+
"libDependents": 1,
|
|
1742
|
+
"storyRefs": 1,
|
|
1743
|
+
"xproj": {
|
|
1744
|
+
"mobile": 0,
|
|
1745
|
+
"mcp": 0,
|
|
1746
|
+
"dash": 0,
|
|
1747
|
+
"total": 0
|
|
1748
|
+
},
|
|
1749
|
+
"dependsOn": [
|
|
1750
|
+
"Typography"
|
|
1751
|
+
],
|
|
1752
|
+
"leak": {
|
|
1753
|
+
"rawView": 2,
|
|
1754
|
+
"rawText": 0,
|
|
1755
|
+
"inlineStyle": 0,
|
|
1756
|
+
"rawHex": 0,
|
|
1757
|
+
"loc": 76,
|
|
1758
|
+
"score": 2
|
|
1759
|
+
},
|
|
1760
|
+
"tier": "molecule",
|
|
1761
|
+
"verdict": "keep-internal",
|
|
1762
|
+
"deadByAssociation": true,
|
|
1763
|
+
"audited": "unaudited",
|
|
1764
|
+
"standard": false
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"name": "Pill",
|
|
1768
|
+
"file": "packages/ui/src/components/ui/pill/Pill.tsx",
|
|
1769
|
+
"dir": "ui",
|
|
1770
|
+
"exports": [
|
|
1771
|
+
"Pill",
|
|
1772
|
+
"PillVariant",
|
|
1773
|
+
"PillColor",
|
|
1774
|
+
"PillSize",
|
|
1775
|
+
"PillProps"
|
|
1776
|
+
],
|
|
1777
|
+
"libDependents": 0,
|
|
1778
|
+
"storyRefs": 1,
|
|
1779
|
+
"xproj": {
|
|
1780
|
+
"mobile": 0,
|
|
1781
|
+
"mcp": 0,
|
|
1782
|
+
"dash": 0,
|
|
1783
|
+
"total": 0
|
|
1784
|
+
},
|
|
1785
|
+
"dependsOn": [],
|
|
1786
|
+
"leak": {
|
|
1787
|
+
"rawView": 1,
|
|
1788
|
+
"rawText": 1,
|
|
1789
|
+
"inlineStyle": 0,
|
|
1790
|
+
"rawHex": 0,
|
|
1791
|
+
"loc": 105,
|
|
1792
|
+
"score": 2
|
|
1793
|
+
},
|
|
1794
|
+
"tier": "atom",
|
|
1795
|
+
"verdict": "dead",
|
|
1796
|
+
"deadByAssociation": false,
|
|
1797
|
+
"audited": "unaudited",
|
|
1798
|
+
"standard": true
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"name": "PlaceholderStrip",
|
|
1802
|
+
"file": "packages/ui/src/components/custom/Workout/PlaceholderStrip.tsx",
|
|
1803
|
+
"dir": "workout",
|
|
1804
|
+
"exports": [
|
|
1805
|
+
"PlaceholderStrip",
|
|
1806
|
+
"PlaceholderStripProps",
|
|
1807
|
+
"SingleStrip"
|
|
1808
|
+
],
|
|
1809
|
+
"libDependents": 3,
|
|
1810
|
+
"storyRefs": 1,
|
|
1811
|
+
"xproj": {
|
|
1812
|
+
"mobile": 0,
|
|
1813
|
+
"mcp": 0,
|
|
1814
|
+
"dash": 0,
|
|
1815
|
+
"total": 0
|
|
1816
|
+
},
|
|
1817
|
+
"dependsOn": [],
|
|
1818
|
+
"leak": {
|
|
1819
|
+
"rawView": 3,
|
|
1820
|
+
"rawText": 0,
|
|
1821
|
+
"inlineStyle": 1,
|
|
1822
|
+
"rawHex": 0,
|
|
1823
|
+
"loc": 86,
|
|
1824
|
+
"score": 5
|
|
1825
|
+
},
|
|
1826
|
+
"tier": "atom",
|
|
1827
|
+
"verdict": "keep-internal",
|
|
1828
|
+
"deadByAssociation": false,
|
|
1829
|
+
"audited": "unaudited",
|
|
1830
|
+
"standard": false
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"name": "Popover",
|
|
1834
|
+
"file": "packages/ui/src/components/ui/popover/Popover.tsx",
|
|
1835
|
+
"dir": "ui",
|
|
1836
|
+
"exports": [
|
|
1837
|
+
"Popover",
|
|
1838
|
+
"PopoverTrigger",
|
|
1839
|
+
"PopoverContent",
|
|
1840
|
+
"PopoverCloseButton",
|
|
1841
|
+
"PopoverPlacement",
|
|
1842
|
+
"PopoverProps",
|
|
1843
|
+
"PopoverTriggerProps",
|
|
1844
|
+
"PopoverContentProps",
|
|
1845
|
+
"PopoverCloseButtonProps",
|
|
1846
|
+
"cn"
|
|
1847
|
+
],
|
|
1848
|
+
"libDependents": 1,
|
|
1849
|
+
"storyRefs": 1,
|
|
1850
|
+
"xproj": {
|
|
1851
|
+
"mobile": 0,
|
|
1852
|
+
"mcp": 0,
|
|
1853
|
+
"dash": 0,
|
|
1854
|
+
"total": 0
|
|
1855
|
+
},
|
|
1856
|
+
"dependsOn": [],
|
|
1857
|
+
"leak": {
|
|
1858
|
+
"rawView": 2,
|
|
1859
|
+
"rawText": 1,
|
|
1860
|
+
"inlineStyle": 2,
|
|
1861
|
+
"rawHex": 0,
|
|
1862
|
+
"loc": 238,
|
|
1863
|
+
"score": 7
|
|
1864
|
+
},
|
|
1865
|
+
"tier": "atom",
|
|
1866
|
+
"verdict": "keep-internal",
|
|
1867
|
+
"deadByAssociation": true,
|
|
1868
|
+
"audited": "unaudited",
|
|
1869
|
+
"standard": true
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"name": "PrBadge",
|
|
1873
|
+
"file": "packages/ui/src/components/custom/Workout/PrBadge.tsx",
|
|
1874
|
+
"dir": "workout",
|
|
1875
|
+
"exports": [
|
|
1876
|
+
"PrBadge",
|
|
1877
|
+
"PRType",
|
|
1878
|
+
"PrBadgeProps"
|
|
1879
|
+
],
|
|
1880
|
+
"libDependents": 4,
|
|
1881
|
+
"storyRefs": 1,
|
|
1882
|
+
"xproj": {
|
|
1883
|
+
"mobile": 0,
|
|
1884
|
+
"mcp": 0,
|
|
1885
|
+
"dash": 0,
|
|
1886
|
+
"total": 0
|
|
1887
|
+
},
|
|
1888
|
+
"dependsOn": [
|
|
1889
|
+
"BaseBadge",
|
|
1890
|
+
"icons"
|
|
1891
|
+
],
|
|
1892
|
+
"leak": {
|
|
1893
|
+
"rawView": 1,
|
|
1894
|
+
"rawText": 1,
|
|
1895
|
+
"inlineStyle": 2,
|
|
1896
|
+
"rawHex": 0,
|
|
1897
|
+
"loc": 107,
|
|
1898
|
+
"score": 6
|
|
1899
|
+
},
|
|
1900
|
+
"tier": "organism",
|
|
1901
|
+
"verdict": "keep-internal",
|
|
1902
|
+
"deadByAssociation": false,
|
|
1903
|
+
"audited": "unaudited",
|
|
1904
|
+
"standard": false
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"name": "PrHistoryModal",
|
|
1908
|
+
"file": "packages/ui/src/components/custom/Workout/PrHistoryModal.tsx",
|
|
1909
|
+
"dir": "workout",
|
|
1910
|
+
"exports": [
|
|
1911
|
+
"PrHistoryModal",
|
|
1912
|
+
"PrRecordType",
|
|
1913
|
+
"PrRecord",
|
|
1914
|
+
"PrHistoryModalProps",
|
|
1915
|
+
"recordLabel",
|
|
1916
|
+
"recordValueText"
|
|
1917
|
+
],
|
|
1918
|
+
"libDependents": 0,
|
|
1919
|
+
"storyRefs": 1,
|
|
1920
|
+
"xproj": {
|
|
1921
|
+
"mobile": 0,
|
|
1922
|
+
"mcp": 1,
|
|
1923
|
+
"dash": 0,
|
|
1924
|
+
"total": 1
|
|
1925
|
+
},
|
|
1926
|
+
"dependsOn": [
|
|
1927
|
+
"Drawer",
|
|
1928
|
+
"icons"
|
|
1929
|
+
],
|
|
1930
|
+
"leak": {
|
|
1931
|
+
"rawView": 4,
|
|
1932
|
+
"rawText": 6,
|
|
1933
|
+
"inlineStyle": 11,
|
|
1934
|
+
"rawHex": 0,
|
|
1935
|
+
"loc": 244,
|
|
1936
|
+
"score": 32
|
|
1937
|
+
},
|
|
1938
|
+
"tier": "organism",
|
|
1939
|
+
"verdict": "keep-app",
|
|
1940
|
+
"deadByAssociation": false,
|
|
1941
|
+
"audited": "unaudited",
|
|
1942
|
+
"standard": false
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"name": "ProgramPlanningPage",
|
|
1946
|
+
"file": "packages/ui/src/components/custom/Workout/ProgramPlanningPage.tsx",
|
|
1947
|
+
"dir": "workout",
|
|
1948
|
+
"exports": [
|
|
1949
|
+
"deriveNavLevel",
|
|
1950
|
+
"toProgressBarMesos",
|
|
1951
|
+
"findMeso",
|
|
1952
|
+
"findWeek",
|
|
1953
|
+
"findWorkout",
|
|
1954
|
+
"buildBreadcrumbs",
|
|
1955
|
+
"ProgramPlanningPage",
|
|
1956
|
+
"PlanWorkout",
|
|
1957
|
+
"PlanWeek",
|
|
1958
|
+
"PlanMeso",
|
|
1959
|
+
"ProgramNavLevel",
|
|
1960
|
+
"ProgramSelection",
|
|
1961
|
+
"ProgramBreadcrumb",
|
|
1962
|
+
"ProgramPlanningPageProps",
|
|
1963
|
+
"selectMeso",
|
|
1964
|
+
"selectWeek",
|
|
1965
|
+
"selectWorkout",
|
|
1966
|
+
"toggleExercise",
|
|
1967
|
+
"navigateTo"
|
|
1968
|
+
],
|
|
1969
|
+
"libDependents": 0,
|
|
1970
|
+
"storyRefs": 1,
|
|
1971
|
+
"xproj": {
|
|
1972
|
+
"mobile": 0,
|
|
1973
|
+
"mcp": 0,
|
|
1974
|
+
"dash": 0,
|
|
1975
|
+
"total": 0
|
|
1976
|
+
},
|
|
1977
|
+
"dependsOn": [
|
|
1978
|
+
"ExerciseCard",
|
|
1979
|
+
"MesoCard",
|
|
1980
|
+
"MesoProgressBar",
|
|
1981
|
+
"WeekRow",
|
|
1982
|
+
"WorkoutCard",
|
|
1983
|
+
"WorkoutPill"
|
|
1984
|
+
],
|
|
1985
|
+
"leak": {
|
|
1986
|
+
"rawView": 9,
|
|
1987
|
+
"rawText": 3,
|
|
1988
|
+
"inlineStyle": 11,
|
|
1989
|
+
"rawHex": 0,
|
|
1990
|
+
"loc": 420,
|
|
1991
|
+
"score": 34
|
|
1992
|
+
},
|
|
1993
|
+
"tier": "page",
|
|
1994
|
+
"verdict": "demo-only",
|
|
1995
|
+
"deadByAssociation": false,
|
|
1996
|
+
"audited": "unaudited",
|
|
1997
|
+
"standard": false
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"name": "Progress",
|
|
2001
|
+
"file": "packages/ui/src/components/ui/progress/Progress.tsx",
|
|
2002
|
+
"dir": "ui",
|
|
2003
|
+
"exports": [
|
|
2004
|
+
"Progress",
|
|
2005
|
+
"CircularProgress",
|
|
2006
|
+
"ProgressSteps",
|
|
2007
|
+
"ProgressSize",
|
|
2008
|
+
"ProgressColor",
|
|
2009
|
+
"ProgressVariant",
|
|
2010
|
+
"ProgressProps",
|
|
2011
|
+
"CircularProgressProps",
|
|
2012
|
+
"ProgressStepsProps",
|
|
2013
|
+
"cn"
|
|
2014
|
+
],
|
|
2015
|
+
"libDependents": 0,
|
|
2016
|
+
"storyRefs": 3,
|
|
2017
|
+
"xproj": {
|
|
2018
|
+
"mobile": 2,
|
|
2019
|
+
"mcp": 0,
|
|
2020
|
+
"dash": 0,
|
|
2021
|
+
"total": 2
|
|
2022
|
+
},
|
|
2023
|
+
"dependsOn": [],
|
|
2024
|
+
"leak": {
|
|
2025
|
+
"rawView": 11,
|
|
2026
|
+
"rawText": 4,
|
|
2027
|
+
"inlineStyle": 6,
|
|
2028
|
+
"rawHex": 0,
|
|
2029
|
+
"loc": 340,
|
|
2030
|
+
"score": 27
|
|
2031
|
+
},
|
|
2032
|
+
"tier": "atom",
|
|
2033
|
+
"verdict": "keep-app",
|
|
2034
|
+
"deadByAssociation": false,
|
|
2035
|
+
"audited": "unaudited",
|
|
2036
|
+
"standard": true
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"name": "Radio",
|
|
2040
|
+
"file": "packages/ui/src/components/ui/radio/Radio.tsx",
|
|
2041
|
+
"dir": "ui",
|
|
2042
|
+
"exports": [
|
|
2043
|
+
"RadioGroup",
|
|
2044
|
+
"Radio",
|
|
2045
|
+
"RadioSize",
|
|
2046
|
+
"RadioColor",
|
|
2047
|
+
"RadioGroupProps",
|
|
2048
|
+
"RadioProps",
|
|
2049
|
+
"cn"
|
|
2050
|
+
],
|
|
2051
|
+
"libDependents": 1,
|
|
2052
|
+
"storyRefs": 1,
|
|
2053
|
+
"xproj": {
|
|
2054
|
+
"mobile": 2,
|
|
2055
|
+
"mcp": 0,
|
|
2056
|
+
"dash": 0,
|
|
2057
|
+
"total": 2
|
|
2058
|
+
},
|
|
2059
|
+
"dependsOn": [],
|
|
2060
|
+
"leak": {
|
|
2061
|
+
"rawView": 4,
|
|
2062
|
+
"rawText": 2,
|
|
2063
|
+
"inlineStyle": 0,
|
|
2064
|
+
"rawHex": 0,
|
|
2065
|
+
"loc": 201,
|
|
2066
|
+
"score": 6
|
|
2067
|
+
},
|
|
2068
|
+
"tier": "atom",
|
|
2069
|
+
"verdict": "keep-core",
|
|
2070
|
+
"deadByAssociation": false,
|
|
2071
|
+
"audited": "unaudited",
|
|
2072
|
+
"standard": true
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"name": "ReadinessCheck",
|
|
2076
|
+
"file": "packages/ui/src/components/custom/Workout/ReadinessCheck.tsx",
|
|
2077
|
+
"dir": "workout",
|
|
2078
|
+
"exports": [
|
|
2079
|
+
"ReadinessCheck",
|
|
2080
|
+
"WarmUpStatus",
|
|
2081
|
+
"ReadinessFactor",
|
|
2082
|
+
"WarmUpValidation",
|
|
2083
|
+
"ReadinessCheckProps",
|
|
2084
|
+
"scoreColor",
|
|
2085
|
+
"emojiSet",
|
|
2086
|
+
"velocityDeficitText"
|
|
2087
|
+
],
|
|
2088
|
+
"libDependents": 0,
|
|
2089
|
+
"storyRefs": 1,
|
|
2090
|
+
"xproj": {
|
|
2091
|
+
"mobile": 0,
|
|
2092
|
+
"mcp": 0,
|
|
2093
|
+
"dash": 0,
|
|
2094
|
+
"total": 0
|
|
2095
|
+
},
|
|
2096
|
+
"dependsOn": [
|
|
2097
|
+
"Badge",
|
|
2098
|
+
"Card"
|
|
2099
|
+
],
|
|
2100
|
+
"leak": {
|
|
2101
|
+
"rawView": 7,
|
|
2102
|
+
"rawText": 7,
|
|
2103
|
+
"inlineStyle": 14,
|
|
2104
|
+
"rawHex": 1,
|
|
2105
|
+
"loc": 271,
|
|
2106
|
+
"score": 43
|
|
2107
|
+
},
|
|
2108
|
+
"tier": "organism",
|
|
2109
|
+
"verdict": "dead",
|
|
2110
|
+
"deadByAssociation": false,
|
|
2111
|
+
"audited": "unaudited",
|
|
2112
|
+
"standard": false
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"name": "RestTimer",
|
|
2116
|
+
"file": "packages/ui/src/components/custom/Workout/RestTimer.tsx",
|
|
2117
|
+
"dir": "workout",
|
|
2118
|
+
"exports": [
|
|
2119
|
+
"RestTimer",
|
|
2120
|
+
"RestTimerProps"
|
|
2121
|
+
],
|
|
2122
|
+
"libDependents": 2,
|
|
2123
|
+
"storyRefs": 1,
|
|
2124
|
+
"xproj": {
|
|
2125
|
+
"mobile": 0,
|
|
2126
|
+
"mcp": 0,
|
|
2127
|
+
"dash": 0,
|
|
2128
|
+
"total": 0
|
|
2129
|
+
},
|
|
2130
|
+
"dependsOn": [],
|
|
2131
|
+
"leak": {
|
|
2132
|
+
"rawView": 6,
|
|
2133
|
+
"rawText": 5,
|
|
2134
|
+
"inlineStyle": 13,
|
|
2135
|
+
"rawHex": 0,
|
|
2136
|
+
"loc": 184,
|
|
2137
|
+
"score": 37
|
|
2138
|
+
},
|
|
2139
|
+
"tier": "atom",
|
|
2140
|
+
"verdict": "keep-internal",
|
|
2141
|
+
"deadByAssociation": true,
|
|
2142
|
+
"audited": "unaudited",
|
|
2143
|
+
"standard": false
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"name": "Scatter",
|
|
2147
|
+
"file": "packages/ui/src/components/custom/Scatter/Scatter.tsx",
|
|
2148
|
+
"dir": "custom",
|
|
2149
|
+
"exports": [
|
|
2150
|
+
"Scatter",
|
|
2151
|
+
"ScatterDatum",
|
|
2152
|
+
"ScatterAxis",
|
|
2153
|
+
"ScatterProps",
|
|
2154
|
+
"domainOf",
|
|
2155
|
+
"ticksOf",
|
|
2156
|
+
"formatTick",
|
|
2157
|
+
"LineSegment",
|
|
2158
|
+
"toX",
|
|
2159
|
+
"toY"
|
|
2160
|
+
],
|
|
2161
|
+
"libDependents": 0,
|
|
2162
|
+
"storyRefs": 1,
|
|
2163
|
+
"xproj": {
|
|
2164
|
+
"mobile": 0,
|
|
2165
|
+
"mcp": 0,
|
|
2166
|
+
"dash": 1,
|
|
2167
|
+
"total": 1
|
|
2168
|
+
},
|
|
2169
|
+
"dependsOn": [],
|
|
2170
|
+
"leak": {
|
|
2171
|
+
"rawView": 8,
|
|
2172
|
+
"rawText": 5,
|
|
2173
|
+
"inlineStyle": 14,
|
|
2174
|
+
"rawHex": 1,
|
|
2175
|
+
"loc": 259,
|
|
2176
|
+
"score": 42
|
|
2177
|
+
},
|
|
2178
|
+
"tier": "atom",
|
|
2179
|
+
"verdict": "keep-app",
|
|
2180
|
+
"deadByAssociation": false,
|
|
2181
|
+
"audited": "unaudited",
|
|
2182
|
+
"standard": false
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
"name": "Section",
|
|
2186
|
+
"file": "packages/ui/src/components/ui/section/Section.tsx",
|
|
2187
|
+
"dir": "ui",
|
|
2188
|
+
"exports": [
|
|
2189
|
+
"Section",
|
|
2190
|
+
"SectionHeader",
|
|
2191
|
+
"SectionContent",
|
|
2192
|
+
"SectionProps",
|
|
2193
|
+
"SectionHeaderProps",
|
|
2194
|
+
"SectionContentProps"
|
|
2195
|
+
],
|
|
2196
|
+
"libDependents": 0,
|
|
2197
|
+
"storyRefs": 1,
|
|
2198
|
+
"xproj": {
|
|
2199
|
+
"mobile": 10,
|
|
2200
|
+
"mcp": 0,
|
|
2201
|
+
"dash": 0,
|
|
2202
|
+
"total": 10
|
|
2203
|
+
},
|
|
2204
|
+
"dependsOn": [],
|
|
2205
|
+
"leak": {
|
|
2206
|
+
"rawView": 5,
|
|
2207
|
+
"rawText": 2,
|
|
2208
|
+
"inlineStyle": 0,
|
|
2209
|
+
"rawHex": 0,
|
|
2210
|
+
"loc": 53,
|
|
2211
|
+
"score": 7
|
|
2212
|
+
},
|
|
2213
|
+
"tier": "atom",
|
|
2214
|
+
"verdict": "keep-app",
|
|
2215
|
+
"deadByAssociation": false,
|
|
2216
|
+
"audited": "unaudited",
|
|
2217
|
+
"standard": true
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"name": "Select",
|
|
2221
|
+
"file": "packages/ui/src/components/ui/select/Select.tsx",
|
|
2222
|
+
"dir": "ui",
|
|
2223
|
+
"exports": [
|
|
2224
|
+
"Select",
|
|
2225
|
+
"SelectOption",
|
|
2226
|
+
"SelectProps",
|
|
2227
|
+
"selectValue",
|
|
2228
|
+
"isSelected",
|
|
2229
|
+
"getDisplayValue",
|
|
2230
|
+
"clearValue"
|
|
2231
|
+
],
|
|
2232
|
+
"libDependents": 2,
|
|
2233
|
+
"storyRefs": 1,
|
|
2234
|
+
"xproj": {
|
|
2235
|
+
"mobile": 0,
|
|
2236
|
+
"mcp": 0,
|
|
2237
|
+
"dash": 0,
|
|
2238
|
+
"total": 0
|
|
2239
|
+
},
|
|
2240
|
+
"dependsOn": [],
|
|
2241
|
+
"leak": {
|
|
2242
|
+
"rawView": 4,
|
|
2243
|
+
"rawText": 5,
|
|
2244
|
+
"inlineStyle": 1,
|
|
2245
|
+
"rawHex": 0,
|
|
2246
|
+
"loc": 244,
|
|
2247
|
+
"score": 11
|
|
2248
|
+
},
|
|
2249
|
+
"tier": "atom",
|
|
2250
|
+
"verdict": "keep-internal",
|
|
2251
|
+
"deadByAssociation": false,
|
|
2252
|
+
"audited": "unaudited",
|
|
2253
|
+
"standard": true
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"name": "SessionStatePill",
|
|
2257
|
+
"file": "packages/ui/src/components/shell/SessionStatePill.tsx",
|
|
2258
|
+
"dir": "shell",
|
|
2259
|
+
"exports": [
|
|
2260
|
+
"SessionStatePill",
|
|
2261
|
+
"SessionState",
|
|
2262
|
+
"SessionStatePillProps"
|
|
2263
|
+
],
|
|
2264
|
+
"libDependents": 1,
|
|
2265
|
+
"storyRefs": 1,
|
|
2266
|
+
"xproj": {
|
|
2267
|
+
"mobile": 0,
|
|
2268
|
+
"mcp": 0,
|
|
2269
|
+
"dash": 0,
|
|
2270
|
+
"total": 0
|
|
2271
|
+
},
|
|
2272
|
+
"dependsOn": [
|
|
2273
|
+
"Indicator",
|
|
2274
|
+
"Typography"
|
|
2275
|
+
],
|
|
2276
|
+
"leak": {
|
|
2277
|
+
"rawView": 1,
|
|
2278
|
+
"rawText": 0,
|
|
2279
|
+
"inlineStyle": 0,
|
|
2280
|
+
"rawHex": 0,
|
|
2281
|
+
"loc": 47,
|
|
2282
|
+
"score": 1
|
|
2283
|
+
},
|
|
2284
|
+
"tier": "molecule",
|
|
2285
|
+
"verdict": "keep-internal",
|
|
2286
|
+
"deadByAssociation": true,
|
|
2287
|
+
"audited": "unaudited",
|
|
2288
|
+
"standard": false
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"name": "SetRow",
|
|
2292
|
+
"file": "packages/ui/src/components/custom/Workout/SetRow.tsx",
|
|
2293
|
+
"dir": "workout",
|
|
2294
|
+
"exports": [
|
|
2295
|
+
"SetRow",
|
|
2296
|
+
"SetRowMode",
|
|
2297
|
+
"SetRowProps",
|
|
2298
|
+
"formatAccessibilityLabel"
|
|
2299
|
+
],
|
|
2300
|
+
"libDependents": 4,
|
|
2301
|
+
"storyRefs": 4,
|
|
2302
|
+
"xproj": {
|
|
2303
|
+
"mobile": 0,
|
|
2304
|
+
"mcp": 1,
|
|
2305
|
+
"dash": 0,
|
|
2306
|
+
"total": 1
|
|
2307
|
+
},
|
|
2308
|
+
"dependsOn": [
|
|
2309
|
+
"PrBadge",
|
|
2310
|
+
"VelocityStrip"
|
|
2311
|
+
],
|
|
2312
|
+
"leak": {
|
|
2313
|
+
"rawView": 8,
|
|
2314
|
+
"rawText": 8,
|
|
2315
|
+
"inlineStyle": 14,
|
|
2316
|
+
"rawHex": 0,
|
|
2317
|
+
"loc": 261,
|
|
2318
|
+
"score": 44
|
|
2319
|
+
},
|
|
2320
|
+
"tier": "organism",
|
|
2321
|
+
"verdict": "keep-core",
|
|
2322
|
+
"deadByAssociation": false,
|
|
2323
|
+
"audited": "unaudited",
|
|
2324
|
+
"standard": false
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"name": "Sidebar",
|
|
2328
|
+
"file": "packages/ui/src/components/custom/Sidebar/Sidebar.tsx",
|
|
2329
|
+
"dir": "custom",
|
|
2330
|
+
"exports": [
|
|
2331
|
+
"Sidebar",
|
|
2332
|
+
"SidebarHeader",
|
|
2333
|
+
"SidebarContent",
|
|
2334
|
+
"SidebarFooter",
|
|
2335
|
+
"SidebarSection",
|
|
2336
|
+
"SidebarItem",
|
|
2337
|
+
"SidebarDivider",
|
|
2338
|
+
"SidebarProps",
|
|
2339
|
+
"SidebarHeaderProps",
|
|
2340
|
+
"SidebarContentProps",
|
|
2341
|
+
"SidebarFooterProps",
|
|
2342
|
+
"SidebarSectionProps",
|
|
2343
|
+
"SidebarItemProps",
|
|
2344
|
+
"SidebarDividerProps",
|
|
2345
|
+
"cn",
|
|
2346
|
+
"handlePress"
|
|
2347
|
+
],
|
|
2348
|
+
"libDependents": 0,
|
|
2349
|
+
"storyRefs": 1,
|
|
2350
|
+
"xproj": {
|
|
2351
|
+
"mobile": 0,
|
|
2352
|
+
"mcp": 0,
|
|
2353
|
+
"dash": 3,
|
|
2354
|
+
"total": 3
|
|
2355
|
+
},
|
|
2356
|
+
"dependsOn": [],
|
|
2357
|
+
"leak": {
|
|
2358
|
+
"rawView": 7,
|
|
2359
|
+
"rawText": 3,
|
|
2360
|
+
"inlineStyle": 1,
|
|
2361
|
+
"rawHex": 0,
|
|
2362
|
+
"loc": 258,
|
|
2363
|
+
"score": 12
|
|
2364
|
+
},
|
|
2365
|
+
"tier": "atom",
|
|
2366
|
+
"verdict": "keep-app",
|
|
2367
|
+
"deadByAssociation": false,
|
|
2368
|
+
"audited": "unaudited",
|
|
2369
|
+
"standard": true
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
"name": "SideNav",
|
|
2373
|
+
"file": "packages/ui/src/components/shell/SideNav.tsx",
|
|
2374
|
+
"dir": "shell",
|
|
2375
|
+
"exports": [
|
|
2376
|
+
"SideNav",
|
|
2377
|
+
"SideNavItem",
|
|
2378
|
+
"SideNavProps",
|
|
2379
|
+
"defaultNavItems"
|
|
2380
|
+
],
|
|
2381
|
+
"libDependents": 0,
|
|
2382
|
+
"storyRefs": 1,
|
|
2383
|
+
"xproj": {
|
|
2384
|
+
"mobile": 0,
|
|
2385
|
+
"mcp": 0,
|
|
2386
|
+
"dash": 0,
|
|
2387
|
+
"total": 0
|
|
2388
|
+
},
|
|
2389
|
+
"dependsOn": [
|
|
2390
|
+
"NavItem",
|
|
2391
|
+
"icons"
|
|
2392
|
+
],
|
|
2393
|
+
"leak": {
|
|
2394
|
+
"rawView": 1,
|
|
2395
|
+
"rawText": 0,
|
|
2396
|
+
"inlineStyle": 0,
|
|
2397
|
+
"rawHex": 0,
|
|
2398
|
+
"loc": 75,
|
|
2399
|
+
"score": 1
|
|
2400
|
+
},
|
|
2401
|
+
"tier": "organism",
|
|
2402
|
+
"verdict": "dead",
|
|
2403
|
+
"deadByAssociation": false,
|
|
2404
|
+
"audited": "unaudited",
|
|
2405
|
+
"standard": true
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"name": "Skeleton",
|
|
2409
|
+
"file": "packages/ui/src/components/ui/skeleton/Skeleton.tsx",
|
|
2410
|
+
"dir": "ui",
|
|
2411
|
+
"exports": [
|
|
2412
|
+
"Skeleton",
|
|
2413
|
+
"SkeletonText",
|
|
2414
|
+
"SkeletonCircle",
|
|
2415
|
+
"SkeletonCard",
|
|
2416
|
+
"SkeletonListItem",
|
|
2417
|
+
"SkeletonVariant",
|
|
2418
|
+
"SkeletonAnimation",
|
|
2419
|
+
"SkeletonProps",
|
|
2420
|
+
"SkeletonTextProps",
|
|
2421
|
+
"SkeletonCircleProps",
|
|
2422
|
+
"SkeletonCardProps",
|
|
2423
|
+
"SkeletonListItemProps"
|
|
2424
|
+
],
|
|
2425
|
+
"libDependents": 0,
|
|
2426
|
+
"storyRefs": 1,
|
|
2427
|
+
"xproj": {
|
|
2428
|
+
"mobile": 0,
|
|
2429
|
+
"mcp": 0,
|
|
2430
|
+
"dash": 0,
|
|
2431
|
+
"total": 0
|
|
2432
|
+
},
|
|
2433
|
+
"dependsOn": [],
|
|
2434
|
+
"leak": {
|
|
2435
|
+
"rawView": 6,
|
|
2436
|
+
"rawText": 0,
|
|
2437
|
+
"inlineStyle": 1,
|
|
2438
|
+
"rawHex": 0,
|
|
2439
|
+
"loc": 230,
|
|
2440
|
+
"score": 8
|
|
2441
|
+
},
|
|
2442
|
+
"tier": "atom",
|
|
2443
|
+
"verdict": "dead",
|
|
2444
|
+
"deadByAssociation": false,
|
|
2445
|
+
"audited": "unaudited",
|
|
2446
|
+
"standard": true
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
"name": "Sparkline",
|
|
2450
|
+
"file": "packages/ui/src/components/custom/Workout/Sparkline.tsx",
|
|
2451
|
+
"dir": "workout",
|
|
2452
|
+
"exports": [
|
|
2453
|
+
"Sparkline",
|
|
2454
|
+
"SparklineProps",
|
|
2455
|
+
"normalizeData",
|
|
2456
|
+
"normalizeValue"
|
|
2457
|
+
],
|
|
2458
|
+
"libDependents": 3,
|
|
2459
|
+
"storyRefs": 1,
|
|
2460
|
+
"xproj": {
|
|
2461
|
+
"mobile": 0,
|
|
2462
|
+
"mcp": 0,
|
|
2463
|
+
"dash": 0,
|
|
2464
|
+
"total": 0
|
|
2465
|
+
},
|
|
2466
|
+
"dependsOn": [],
|
|
2467
|
+
"leak": {
|
|
2468
|
+
"rawView": 5,
|
|
2469
|
+
"rawText": 1,
|
|
2470
|
+
"inlineStyle": 5,
|
|
2471
|
+
"rawHex": 0,
|
|
2472
|
+
"loc": 190,
|
|
2473
|
+
"score": 16
|
|
2474
|
+
},
|
|
2475
|
+
"tier": "atom",
|
|
2476
|
+
"verdict": "keep-internal",
|
|
2477
|
+
"deadByAssociation": true,
|
|
2478
|
+
"audited": "unaudited",
|
|
2479
|
+
"standard": false
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"name": "Spinner",
|
|
2483
|
+
"file": "packages/ui/src/components/ui/spinner/Spinner.tsx",
|
|
2484
|
+
"dir": "ui",
|
|
2485
|
+
"exports": [
|
|
2486
|
+
"Spinner",
|
|
2487
|
+
"SpinnerSize",
|
|
2488
|
+
"SpinnerColor",
|
|
2489
|
+
"SpinnerProps"
|
|
2490
|
+
],
|
|
2491
|
+
"libDependents": 0,
|
|
2492
|
+
"storyRefs": 1,
|
|
2493
|
+
"xproj": {
|
|
2494
|
+
"mobile": 0,
|
|
2495
|
+
"mcp": 0,
|
|
2496
|
+
"dash": 0,
|
|
2497
|
+
"total": 0
|
|
2498
|
+
},
|
|
2499
|
+
"dependsOn": [],
|
|
2500
|
+
"leak": {
|
|
2501
|
+
"rawView": 1,
|
|
2502
|
+
"rawText": 0,
|
|
2503
|
+
"inlineStyle": 0,
|
|
2504
|
+
"rawHex": 2,
|
|
2505
|
+
"loc": 74,
|
|
2506
|
+
"score": 3
|
|
2507
|
+
},
|
|
2508
|
+
"tier": "atom",
|
|
2509
|
+
"verdict": "dead",
|
|
2510
|
+
"deadByAssociation": false,
|
|
2511
|
+
"audited": "unaudited",
|
|
2512
|
+
"standard": true
|
|
2513
|
+
},
|
|
2514
|
+
{
|
|
2515
|
+
"name": "Stack",
|
|
2516
|
+
"file": "packages/ui/src/components/ui/stack/Stack.tsx",
|
|
2517
|
+
"dir": "ui",
|
|
2518
|
+
"exports": [
|
|
2519
|
+
"Stack",
|
|
2520
|
+
"HStack",
|
|
2521
|
+
"VStack",
|
|
2522
|
+
"StackProps"
|
|
2523
|
+
],
|
|
2524
|
+
"libDependents": 0,
|
|
2525
|
+
"storyRefs": 1,
|
|
2526
|
+
"xproj": {
|
|
2527
|
+
"mobile": 27,
|
|
2528
|
+
"mcp": 0,
|
|
2529
|
+
"dash": 0,
|
|
2530
|
+
"total": 27
|
|
2531
|
+
},
|
|
2532
|
+
"dependsOn": [],
|
|
2533
|
+
"leak": {
|
|
2534
|
+
"rawView": 1,
|
|
2535
|
+
"rawText": 0,
|
|
2536
|
+
"inlineStyle": 0,
|
|
2537
|
+
"rawHex": 0,
|
|
2538
|
+
"loc": 77,
|
|
2539
|
+
"score": 1
|
|
2540
|
+
},
|
|
2541
|
+
"tier": "atom",
|
|
2542
|
+
"verdict": "keep-app",
|
|
2543
|
+
"deadByAssociation": false,
|
|
2544
|
+
"audited": "unaudited",
|
|
2545
|
+
"standard": true
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"name": "StatusDot",
|
|
2549
|
+
"file": "packages/ui/src/components/custom/Workout/StatusDot.tsx",
|
|
2550
|
+
"dir": "workout",
|
|
2551
|
+
"exports": [
|
|
2552
|
+
"StatusDot",
|
|
2553
|
+
"StatusDotVariant",
|
|
2554
|
+
"StatusDotProps",
|
|
2555
|
+
"isSolidVariant"
|
|
2556
|
+
],
|
|
2557
|
+
"libDependents": 4,
|
|
2558
|
+
"storyRefs": 1,
|
|
2559
|
+
"xproj": {
|
|
2560
|
+
"mobile": 0,
|
|
2561
|
+
"mcp": 0,
|
|
2562
|
+
"dash": 0,
|
|
2563
|
+
"total": 0
|
|
2564
|
+
},
|
|
2565
|
+
"dependsOn": [],
|
|
2566
|
+
"leak": {
|
|
2567
|
+
"rawView": 4,
|
|
2568
|
+
"rawText": 2,
|
|
2569
|
+
"inlineStyle": 3,
|
|
2570
|
+
"rawHex": 7,
|
|
2571
|
+
"loc": 164,
|
|
2572
|
+
"score": 19
|
|
2573
|
+
},
|
|
2574
|
+
"tier": "atom",
|
|
2575
|
+
"verdict": "keep-internal",
|
|
2576
|
+
"deadByAssociation": false,
|
|
2577
|
+
"audited": "unaudited",
|
|
2578
|
+
"standard": false
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"name": "Stepper",
|
|
2582
|
+
"file": "packages/ui/src/components/custom/stepper/Stepper.tsx",
|
|
2583
|
+
"dir": "custom",
|
|
2584
|
+
"exports": [
|
|
2585
|
+
"Stepper",
|
|
2586
|
+
"Step",
|
|
2587
|
+
"StepIndicator",
|
|
2588
|
+
"StepLabel",
|
|
2589
|
+
"StepContent",
|
|
2590
|
+
"StepStatus",
|
|
2591
|
+
"StepperOrientation",
|
|
2592
|
+
"StepperProps",
|
|
2593
|
+
"StepProps",
|
|
2594
|
+
"StepIndicatorProps",
|
|
2595
|
+
"StepLabelProps",
|
|
2596
|
+
"StepContentProps",
|
|
2597
|
+
"cn"
|
|
2598
|
+
],
|
|
2599
|
+
"libDependents": 0,
|
|
2600
|
+
"storyRefs": 1,
|
|
2601
|
+
"xproj": {
|
|
2602
|
+
"mobile": 0,
|
|
2603
|
+
"mcp": 0,
|
|
2604
|
+
"dash": 0,
|
|
2605
|
+
"total": 0
|
|
2606
|
+
},
|
|
2607
|
+
"dependsOn": [],
|
|
2608
|
+
"leak": {
|
|
2609
|
+
"rawView": 6,
|
|
2610
|
+
"rawText": 2,
|
|
2611
|
+
"inlineStyle": 0,
|
|
2612
|
+
"rawHex": 0,
|
|
2613
|
+
"loc": 251,
|
|
2614
|
+
"score": 8
|
|
2615
|
+
},
|
|
2616
|
+
"tier": "atom",
|
|
2617
|
+
"verdict": "dead",
|
|
2618
|
+
"deadByAssociation": false,
|
|
2619
|
+
"audited": "unaudited",
|
|
2620
|
+
"standard": true
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
"name": "StrengthTrendChart",
|
|
2624
|
+
"file": "packages/ui/src/components/custom/Workout/StrengthTrendChart.tsx",
|
|
2625
|
+
"dir": "workout",
|
|
2626
|
+
"exports": [
|
|
2627
|
+
"StrengthTrendChart",
|
|
2628
|
+
"StrengthTrendDataPoint",
|
|
2629
|
+
"StrengthTrendChartMesoBoundary",
|
|
2630
|
+
"StrengthTrendChartProps",
|
|
2631
|
+
"timeOf",
|
|
2632
|
+
"formatValue",
|
|
2633
|
+
"buildGeometry",
|
|
2634
|
+
"toX",
|
|
2635
|
+
"toY",
|
|
2636
|
+
"project",
|
|
2637
|
+
"computeTrend"
|
|
2638
|
+
],
|
|
2639
|
+
"libDependents": 1,
|
|
2640
|
+
"storyRefs": 1,
|
|
2641
|
+
"xproj": {
|
|
2642
|
+
"mobile": 0,
|
|
2643
|
+
"mcp": 1,
|
|
2644
|
+
"dash": 0,
|
|
2645
|
+
"total": 1
|
|
2646
|
+
},
|
|
2647
|
+
"dependsOn": [],
|
|
2648
|
+
"leak": {
|
|
2649
|
+
"rawView": 20,
|
|
2650
|
+
"rawText": 12,
|
|
2651
|
+
"inlineStyle": 33,
|
|
2652
|
+
"rawHex": 0,
|
|
2653
|
+
"loc": 630,
|
|
2654
|
+
"score": 98
|
|
2655
|
+
},
|
|
2656
|
+
"tier": "atom",
|
|
2657
|
+
"verdict": "keep-core",
|
|
2658
|
+
"deadByAssociation": false,
|
|
2659
|
+
"audited": "unaudited",
|
|
2660
|
+
"standard": false
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
"name": "SupersetWrapper",
|
|
2664
|
+
"file": "packages/ui/src/components/custom/Workout/SupersetWrapper.tsx",
|
|
2665
|
+
"dir": "workout",
|
|
2666
|
+
"exports": [
|
|
2667
|
+
"SupersetWrapper",
|
|
2668
|
+
"SupersetWrapperProps"
|
|
2669
|
+
],
|
|
2670
|
+
"libDependents": 2,
|
|
2671
|
+
"storyRefs": 1,
|
|
2672
|
+
"xproj": {
|
|
2673
|
+
"mobile": 0,
|
|
2674
|
+
"mcp": 0,
|
|
2675
|
+
"dash": 0,
|
|
2676
|
+
"total": 0
|
|
2677
|
+
},
|
|
2678
|
+
"dependsOn": [],
|
|
2679
|
+
"leak": {
|
|
2680
|
+
"rawView": 2,
|
|
2681
|
+
"rawText": 1,
|
|
2682
|
+
"inlineStyle": 3,
|
|
2683
|
+
"rawHex": 1,
|
|
2684
|
+
"loc": 64,
|
|
2685
|
+
"score": 10
|
|
2686
|
+
},
|
|
2687
|
+
"tier": "atom",
|
|
2688
|
+
"verdict": "keep-internal",
|
|
2689
|
+
"deadByAssociation": true,
|
|
2690
|
+
"audited": "unaudited",
|
|
2691
|
+
"standard": false
|
|
2692
|
+
},
|
|
2693
|
+
{
|
|
2694
|
+
"name": "Surface",
|
|
2695
|
+
"file": "packages/ui/src/components/ui/surface/Surface.tsx",
|
|
2696
|
+
"dir": "ui",
|
|
2697
|
+
"exports": [
|
|
2698
|
+
"Surface",
|
|
2699
|
+
"SurfaceProps"
|
|
2700
|
+
],
|
|
2701
|
+
"libDependents": 0,
|
|
2702
|
+
"storyRefs": 1,
|
|
2703
|
+
"xproj": {
|
|
2704
|
+
"mobile": 23,
|
|
2705
|
+
"mcp": 0,
|
|
2706
|
+
"dash": 0,
|
|
2707
|
+
"total": 23
|
|
2708
|
+
},
|
|
2709
|
+
"dependsOn": [],
|
|
2710
|
+
"leak": {
|
|
2711
|
+
"rawView": 1,
|
|
2712
|
+
"rawText": 0,
|
|
2713
|
+
"inlineStyle": 0,
|
|
2714
|
+
"rawHex": 0,
|
|
2715
|
+
"loc": 52,
|
|
2716
|
+
"score": 1
|
|
2717
|
+
},
|
|
2718
|
+
"tier": "atom",
|
|
2719
|
+
"verdict": "keep-app",
|
|
2720
|
+
"deadByAssociation": false,
|
|
2721
|
+
"audited": "unaudited",
|
|
2722
|
+
"standard": true
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"name": "SvgIcon",
|
|
2726
|
+
"file": "packages/ui/src/components/icons/SvgIcon.tsx",
|
|
2727
|
+
"dir": "custom",
|
|
2728
|
+
"exports": [
|
|
2729
|
+
"SvgIcon",
|
|
2730
|
+
"IconProps",
|
|
2731
|
+
"SvgIconProps"
|
|
2732
|
+
],
|
|
2733
|
+
"libDependents": 1,
|
|
2734
|
+
"storyRefs": 0,
|
|
2735
|
+
"xproj": {
|
|
2736
|
+
"mobile": 0,
|
|
2737
|
+
"mcp": 0,
|
|
2738
|
+
"dash": 0,
|
|
2739
|
+
"total": 0
|
|
2740
|
+
},
|
|
2741
|
+
"dependsOn": [],
|
|
2742
|
+
"leak": {
|
|
2743
|
+
"rawView": 0,
|
|
2744
|
+
"rawText": 0,
|
|
2745
|
+
"inlineStyle": 0,
|
|
2746
|
+
"rawHex": 0,
|
|
2747
|
+
"loc": 51,
|
|
2748
|
+
"score": 0
|
|
2749
|
+
},
|
|
2750
|
+
"tier": "atom",
|
|
2751
|
+
"verdict": "keep-internal",
|
|
2752
|
+
"deadByAssociation": true,
|
|
2753
|
+
"audited": "unaudited",
|
|
2754
|
+
"standard": false
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"name": "Switch",
|
|
2758
|
+
"file": "packages/ui/src/components/ui/switch/Switch.tsx",
|
|
2759
|
+
"dir": "ui",
|
|
2760
|
+
"exports": [
|
|
2761
|
+
"SwitchSize",
|
|
2762
|
+
"SwitchProps",
|
|
2763
|
+
"Switch",
|
|
2764
|
+
"handlePress"
|
|
2765
|
+
],
|
|
2766
|
+
"libDependents": 0,
|
|
2767
|
+
"storyRefs": 2,
|
|
2768
|
+
"xproj": {
|
|
2769
|
+
"mobile": 0,
|
|
2770
|
+
"mcp": 0,
|
|
2771
|
+
"dash": 0,
|
|
2772
|
+
"total": 0
|
|
2773
|
+
},
|
|
2774
|
+
"dependsOn": [],
|
|
2775
|
+
"leak": {
|
|
2776
|
+
"rawView": 2,
|
|
2777
|
+
"rawText": 2,
|
|
2778
|
+
"inlineStyle": 0,
|
|
2779
|
+
"rawHex": 0,
|
|
2780
|
+
"loc": 104,
|
|
2781
|
+
"score": 4
|
|
2782
|
+
},
|
|
2783
|
+
"tier": "atom",
|
|
2784
|
+
"verdict": "dead",
|
|
2785
|
+
"deadByAssociation": false,
|
|
2786
|
+
"audited": "unaudited",
|
|
2787
|
+
"standard": true
|
|
2788
|
+
},
|
|
2789
|
+
{
|
|
2790
|
+
"name": "Table",
|
|
2791
|
+
"file": "packages/ui/src/components/custom/Table/Table.tsx",
|
|
2792
|
+
"dir": "custom",
|
|
2793
|
+
"exports": [
|
|
2794
|
+
"Table",
|
|
2795
|
+
"TableHeader",
|
|
2796
|
+
"TableBody",
|
|
2797
|
+
"TableRow",
|
|
2798
|
+
"TableHeaderCell",
|
|
2799
|
+
"TableCell",
|
|
2800
|
+
"TablePagination",
|
|
2801
|
+
"useTable",
|
|
2802
|
+
"TableSelectAllCell",
|
|
2803
|
+
"TableSelectCell",
|
|
2804
|
+
"TableEmptyState",
|
|
2805
|
+
"SortDirection",
|
|
2806
|
+
"TableProps",
|
|
2807
|
+
"TableHeaderProps",
|
|
2808
|
+
"TableBodyProps",
|
|
2809
|
+
"TableRowProps",
|
|
2810
|
+
"TableHeaderCellProps",
|
|
2811
|
+
"TableCellProps",
|
|
2812
|
+
"TablePaginationProps",
|
|
2813
|
+
"UseTableOptions",
|
|
2814
|
+
"UseTableReturn",
|
|
2815
|
+
"TableSelectAllCellProps",
|
|
2816
|
+
"TableSelectCellProps",
|
|
2817
|
+
"TableEmptyStateProps",
|
|
2818
|
+
"cn",
|
|
2819
|
+
"handleSort",
|
|
2820
|
+
"handlePageSizeChange"
|
|
2821
|
+
],
|
|
2822
|
+
"libDependents": 0,
|
|
2823
|
+
"storyRefs": 1,
|
|
2824
|
+
"xproj": {
|
|
2825
|
+
"mobile": 0,
|
|
2826
|
+
"mcp": 0,
|
|
2827
|
+
"dash": 12,
|
|
2828
|
+
"total": 12
|
|
2829
|
+
},
|
|
2830
|
+
"dependsOn": [],
|
|
2831
|
+
"leak": {
|
|
2832
|
+
"rawView": 21,
|
|
2833
|
+
"rawText": 12,
|
|
2834
|
+
"inlineStyle": 1,
|
|
2835
|
+
"rawHex": 0,
|
|
2836
|
+
"loc": 713,
|
|
2837
|
+
"score": 35
|
|
2838
|
+
},
|
|
2839
|
+
"tier": "atom",
|
|
2840
|
+
"verdict": "keep-app",
|
|
2841
|
+
"deadByAssociation": false,
|
|
2842
|
+
"audited": "unaudited",
|
|
2843
|
+
"standard": true
|
|
2844
|
+
},
|
|
2845
|
+
{
|
|
2846
|
+
"name": "Tabs",
|
|
2847
|
+
"file": "packages/ui/src/components/ui/tabs/Tabs.tsx",
|
|
2848
|
+
"dir": "ui",
|
|
2849
|
+
"exports": [
|
|
2850
|
+
"Tabs",
|
|
2851
|
+
"TabList",
|
|
2852
|
+
"Tab",
|
|
2853
|
+
"TabPanels",
|
|
2854
|
+
"TabPanel",
|
|
2855
|
+
"TabsVariant",
|
|
2856
|
+
"TabsOrientation",
|
|
2857
|
+
"TabsProps",
|
|
2858
|
+
"TabListProps",
|
|
2859
|
+
"TabProps",
|
|
2860
|
+
"TabPanelsProps",
|
|
2861
|
+
"TabPanelProps",
|
|
2862
|
+
"setActiveIndex",
|
|
2863
|
+
"cn"
|
|
2864
|
+
],
|
|
2865
|
+
"libDependents": 0,
|
|
2866
|
+
"storyRefs": 1,
|
|
2867
|
+
"xproj": {
|
|
2868
|
+
"mobile": 0,
|
|
2869
|
+
"mcp": 0,
|
|
2870
|
+
"dash": 0,
|
|
2871
|
+
"total": 0
|
|
2872
|
+
},
|
|
2873
|
+
"dependsOn": [],
|
|
2874
|
+
"leak": {
|
|
2875
|
+
"rawView": 4,
|
|
2876
|
+
"rawText": 1,
|
|
2877
|
+
"inlineStyle": 0,
|
|
2878
|
+
"rawHex": 0,
|
|
2879
|
+
"loc": 254,
|
|
2880
|
+
"score": 5
|
|
2881
|
+
},
|
|
2882
|
+
"tier": "atom",
|
|
2883
|
+
"verdict": "dead",
|
|
2884
|
+
"deadByAssociation": false,
|
|
2885
|
+
"audited": "unaudited",
|
|
2886
|
+
"standard": true
|
|
2887
|
+
},
|
|
2888
|
+
{
|
|
2889
|
+
"name": "TempoBar",
|
|
2890
|
+
"file": "packages/ui/src/components/custom/Workout/TempoBar.tsx",
|
|
2891
|
+
"dir": "workout",
|
|
2892
|
+
"exports": [
|
|
2893
|
+
"getTempoPacingState",
|
|
2894
|
+
"getTempoFillPct",
|
|
2895
|
+
"TempoBar",
|
|
2896
|
+
"TempoPhaseKey",
|
|
2897
|
+
"TEMPO_PACING",
|
|
2898
|
+
"TempoPacingState",
|
|
2899
|
+
"TempoBarProps",
|
|
2900
|
+
"formatDuration"
|
|
2901
|
+
],
|
|
2902
|
+
"libDependents": 1,
|
|
2903
|
+
"storyRefs": 1,
|
|
2904
|
+
"xproj": {
|
|
2905
|
+
"mobile": 0,
|
|
2906
|
+
"mcp": 0,
|
|
2907
|
+
"dash": 0,
|
|
2908
|
+
"total": 0
|
|
2909
|
+
},
|
|
2910
|
+
"dependsOn": [],
|
|
2911
|
+
"leak": {
|
|
2912
|
+
"rawView": 9,
|
|
2913
|
+
"rawText": 3,
|
|
2914
|
+
"inlineStyle": 11,
|
|
2915
|
+
"rawHex": 1,
|
|
2916
|
+
"loc": 216,
|
|
2917
|
+
"score": 35
|
|
2918
|
+
},
|
|
2919
|
+
"tier": "atom",
|
|
2920
|
+
"verdict": "keep-internal",
|
|
2921
|
+
"deadByAssociation": false,
|
|
2922
|
+
"audited": "unaudited",
|
|
2923
|
+
"standard": false
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
"name": "TempoDisplay",
|
|
2927
|
+
"file": "packages/ui/src/components/custom/Workout/TempoDisplay.tsx",
|
|
2928
|
+
"dir": "workout",
|
|
2929
|
+
"exports": [
|
|
2930
|
+
"TempoDisplay",
|
|
2931
|
+
"TempoLivePhase",
|
|
2932
|
+
"TempoLiveState",
|
|
2933
|
+
"TempoDisplayProps",
|
|
2934
|
+
"TempoValue",
|
|
2935
|
+
"TempoSeparator"
|
|
2936
|
+
],
|
|
2937
|
+
"libDependents": 3,
|
|
2938
|
+
"storyRefs": 1,
|
|
2939
|
+
"xproj": {
|
|
2940
|
+
"mobile": 0,
|
|
2941
|
+
"mcp": 2,
|
|
2942
|
+
"dash": 0,
|
|
2943
|
+
"total": 2
|
|
2944
|
+
},
|
|
2945
|
+
"dependsOn": [
|
|
2946
|
+
"TempoBar"
|
|
2947
|
+
],
|
|
2948
|
+
"leak": {
|
|
2949
|
+
"rawView": 8,
|
|
2950
|
+
"rawText": 8,
|
|
2951
|
+
"inlineStyle": 16,
|
|
2952
|
+
"rawHex": 9,
|
|
2953
|
+
"loc": 316,
|
|
2954
|
+
"score": 57
|
|
2955
|
+
},
|
|
2956
|
+
"tier": "molecule",
|
|
2957
|
+
"verdict": "keep-core",
|
|
2958
|
+
"deadByAssociation": false,
|
|
2959
|
+
"audited": "unaudited",
|
|
2960
|
+
"standard": false
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
"name": "Toast",
|
|
2964
|
+
"file": "packages/ui/src/components/ui/toast/Toast.tsx",
|
|
2965
|
+
"dir": "ui",
|
|
2966
|
+
"exports": [
|
|
2967
|
+
"ToastProvider",
|
|
2968
|
+
"useToast",
|
|
2969
|
+
"Toast",
|
|
2970
|
+
"ToastStatus",
|
|
2971
|
+
"ToastPosition",
|
|
2972
|
+
"ToastConfig",
|
|
2973
|
+
"ToastProviderProps",
|
|
2974
|
+
"ToastProps"
|
|
2975
|
+
],
|
|
2976
|
+
"libDependents": 0,
|
|
2977
|
+
"storyRefs": 2,
|
|
2978
|
+
"xproj": {
|
|
2979
|
+
"mobile": 0,
|
|
2980
|
+
"mcp": 0,
|
|
2981
|
+
"dash": 0,
|
|
2982
|
+
"total": 0
|
|
2983
|
+
},
|
|
2984
|
+
"dependsOn": [],
|
|
2985
|
+
"leak": {
|
|
2986
|
+
"rawView": 9,
|
|
2987
|
+
"rawText": 8,
|
|
2988
|
+
"inlineStyle": 0,
|
|
2989
|
+
"rawHex": 0,
|
|
2990
|
+
"loc": 328,
|
|
2991
|
+
"score": 17
|
|
2992
|
+
},
|
|
2993
|
+
"tier": "atom",
|
|
2994
|
+
"verdict": "dead",
|
|
2995
|
+
"deadByAssociation": false,
|
|
2996
|
+
"audited": "unaudited",
|
|
2997
|
+
"standard": true
|
|
2998
|
+
},
|
|
2999
|
+
{
|
|
3000
|
+
"name": "ToolbarButton",
|
|
3001
|
+
"file": "packages/ui/src/components/ui/toolbar-button/ToolbarButton.tsx",
|
|
3002
|
+
"dir": "ui",
|
|
3003
|
+
"exports": [
|
|
3004
|
+
"ToolbarButton",
|
|
3005
|
+
"ToolbarButtonGroup",
|
|
3006
|
+
"useToolbarButton",
|
|
3007
|
+
"ToolbarButtonVariant",
|
|
3008
|
+
"ToolbarButtonSize",
|
|
3009
|
+
"ToolbarButtonProps",
|
|
3010
|
+
"ToolbarButtonGroupProps",
|
|
3011
|
+
"getIconColor",
|
|
3012
|
+
"getNeumorphicStyle",
|
|
3013
|
+
"cn"
|
|
3014
|
+
],
|
|
3015
|
+
"libDependents": 0,
|
|
3016
|
+
"storyRefs": 1,
|
|
3017
|
+
"xproj": {
|
|
3018
|
+
"mobile": 0,
|
|
3019
|
+
"mcp": 0,
|
|
3020
|
+
"dash": 0,
|
|
3021
|
+
"total": 0
|
|
3022
|
+
},
|
|
3023
|
+
"dependsOn": [],
|
|
3024
|
+
"leak": {
|
|
3025
|
+
"rawView": 4,
|
|
3026
|
+
"rawText": 1,
|
|
3027
|
+
"inlineStyle": 0,
|
|
3028
|
+
"rawHex": 5,
|
|
3029
|
+
"loc": 309,
|
|
3030
|
+
"score": 10
|
|
3031
|
+
},
|
|
3032
|
+
"tier": "atom",
|
|
3033
|
+
"verdict": "dead",
|
|
3034
|
+
"deadByAssociation": false,
|
|
3035
|
+
"audited": "unaudited",
|
|
3036
|
+
"standard": true
|
|
3037
|
+
},
|
|
3038
|
+
{
|
|
3039
|
+
"name": "Tooltip",
|
|
3040
|
+
"file": "packages/ui/src/components/ui/tooltip/Tooltip.tsx",
|
|
3041
|
+
"dir": "ui",
|
|
3042
|
+
"exports": [
|
|
3043
|
+
"Tooltip",
|
|
3044
|
+
"TooltipPlacement",
|
|
3045
|
+
"TooltipProps",
|
|
3046
|
+
"clearTimeouts",
|
|
3047
|
+
"show",
|
|
3048
|
+
"hide"
|
|
3049
|
+
],
|
|
3050
|
+
"libDependents": 0,
|
|
3051
|
+
"storyRefs": 1,
|
|
3052
|
+
"xproj": {
|
|
3053
|
+
"mobile": 0,
|
|
3054
|
+
"mcp": 0,
|
|
3055
|
+
"dash": 0,
|
|
3056
|
+
"total": 0
|
|
3057
|
+
},
|
|
3058
|
+
"dependsOn": [],
|
|
3059
|
+
"leak": {
|
|
3060
|
+
"rawView": 6,
|
|
3061
|
+
"rawText": 3,
|
|
3062
|
+
"inlineStyle": 1,
|
|
3063
|
+
"rawHex": 0,
|
|
3064
|
+
"loc": 235,
|
|
3065
|
+
"score": 11
|
|
3066
|
+
},
|
|
3067
|
+
"tier": "atom",
|
|
3068
|
+
"verdict": "dead",
|
|
3069
|
+
"deadByAssociation": false,
|
|
3070
|
+
"audited": "unaudited",
|
|
3071
|
+
"standard": true
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
"name": "TopBar",
|
|
3075
|
+
"file": "packages/ui/src/components/shell/TopBar.tsx",
|
|
3076
|
+
"dir": "shell",
|
|
3077
|
+
"exports": [
|
|
3078
|
+
"TopBar",
|
|
3079
|
+
"TopBarProps",
|
|
3080
|
+
"onLayout"
|
|
3081
|
+
],
|
|
3082
|
+
"libDependents": 0,
|
|
3083
|
+
"storyRefs": 1,
|
|
3084
|
+
"xproj": {
|
|
3085
|
+
"mobile": 0,
|
|
3086
|
+
"mcp": 0,
|
|
3087
|
+
"dash": 0,
|
|
3088
|
+
"total": 0
|
|
3089
|
+
},
|
|
3090
|
+
"dependsOn": [
|
|
3091
|
+
"BrandLockup",
|
|
3092
|
+
"DateTime",
|
|
3093
|
+
"DeviceMenu",
|
|
3094
|
+
"DeviceRow",
|
|
3095
|
+
"Divider",
|
|
3096
|
+
"SessionStatePill"
|
|
3097
|
+
],
|
|
3098
|
+
"leak": {
|
|
3099
|
+
"rawView": 2,
|
|
3100
|
+
"rawText": 0,
|
|
3101
|
+
"inlineStyle": 0,
|
|
3102
|
+
"rawHex": 0,
|
|
3103
|
+
"loc": 90,
|
|
3104
|
+
"score": 2
|
|
3105
|
+
},
|
|
3106
|
+
"tier": "organism",
|
|
3107
|
+
"verdict": "dead",
|
|
3108
|
+
"deadByAssociation": false,
|
|
3109
|
+
"audited": "unaudited",
|
|
3110
|
+
"standard": false
|
|
3111
|
+
},
|
|
3112
|
+
{
|
|
3113
|
+
"name": "TrainingStatusPage",
|
|
3114
|
+
"file": "packages/ui/src/components/custom/Workout/TrainingStatusPage.tsx",
|
|
3115
|
+
"dir": "workout",
|
|
3116
|
+
"exports": [
|
|
3117
|
+
"deriveTrainingSummary",
|
|
3118
|
+
"toBodyMapData",
|
|
3119
|
+
"TrainingStatusPage",
|
|
3120
|
+
"TrainingStatusMuscle",
|
|
3121
|
+
"TrainingStatusSummary",
|
|
3122
|
+
"TrainingStatusPageProps"
|
|
3123
|
+
],
|
|
3124
|
+
"libDependents": 0,
|
|
3125
|
+
"storyRefs": 1,
|
|
3126
|
+
"xproj": {
|
|
3127
|
+
"mobile": 0,
|
|
3128
|
+
"mcp": 0,
|
|
3129
|
+
"dash": 0,
|
|
3130
|
+
"total": 0
|
|
3131
|
+
},
|
|
3132
|
+
"dependsOn": [
|
|
3133
|
+
"BodyMap",
|
|
3134
|
+
"BodyMapDetailPanel",
|
|
3135
|
+
"MesoStatusCard"
|
|
3136
|
+
],
|
|
3137
|
+
"leak": {
|
|
3138
|
+
"rawView": 10,
|
|
3139
|
+
"rawText": 4,
|
|
3140
|
+
"inlineStyle": 14,
|
|
3141
|
+
"rawHex": 0,
|
|
3142
|
+
"loc": 313,
|
|
3143
|
+
"score": 42
|
|
3144
|
+
},
|
|
3145
|
+
"tier": "page",
|
|
3146
|
+
"verdict": "demo-only",
|
|
3147
|
+
"deadByAssociation": false,
|
|
3148
|
+
"audited": "unaudited",
|
|
3149
|
+
"standard": false
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"name": "Treemap",
|
|
3153
|
+
"file": "packages/ui/src/components/custom/Treemap/Treemap.tsx",
|
|
3154
|
+
"dir": "custom",
|
|
3155
|
+
"exports": [
|
|
3156
|
+
"Treemap",
|
|
3157
|
+
"TreemapDatum",
|
|
3158
|
+
"TreemapScale",
|
|
3159
|
+
"TreemapProps",
|
|
3160
|
+
"scaleValue",
|
|
3161
|
+
"worstRatio",
|
|
3162
|
+
"squarify"
|
|
3163
|
+
],
|
|
3164
|
+
"libDependents": 0,
|
|
3165
|
+
"storyRefs": 1,
|
|
3166
|
+
"xproj": {
|
|
3167
|
+
"mobile": 0,
|
|
3168
|
+
"mcp": 0,
|
|
3169
|
+
"dash": 0,
|
|
3170
|
+
"total": 0
|
|
3171
|
+
},
|
|
3172
|
+
"dependsOn": [],
|
|
3173
|
+
"leak": {
|
|
3174
|
+
"rawView": 1,
|
|
3175
|
+
"rawText": 1,
|
|
3176
|
+
"inlineStyle": 2,
|
|
3177
|
+
"rawHex": 2,
|
|
3178
|
+
"loc": 191,
|
|
3179
|
+
"score": 8
|
|
3180
|
+
},
|
|
3181
|
+
"tier": "atom",
|
|
3182
|
+
"verdict": "dead",
|
|
3183
|
+
"deadByAssociation": false,
|
|
3184
|
+
"audited": "unaudited",
|
|
3185
|
+
"standard": false
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
"name": "Typography",
|
|
3189
|
+
"file": "packages/ui/src/components/custom/Typography/Typography.tsx",
|
|
3190
|
+
"dir": "custom",
|
|
3191
|
+
"exports": [
|
|
3192
|
+
"Typography",
|
|
3193
|
+
"Heading",
|
|
3194
|
+
"Paragraph",
|
|
3195
|
+
"Caption",
|
|
3196
|
+
"Label",
|
|
3197
|
+
"Overline",
|
|
3198
|
+
"TypographyVariant",
|
|
3199
|
+
"TypographyColor",
|
|
3200
|
+
"TypographyAlign",
|
|
3201
|
+
"TypographyMarginBottom",
|
|
3202
|
+
"TypographyProps",
|
|
3203
|
+
"HeadingProps",
|
|
3204
|
+
"ParagraphProps",
|
|
3205
|
+
"CaptionProps",
|
|
3206
|
+
"LabelProps",
|
|
3207
|
+
"OverlineProps"
|
|
3208
|
+
],
|
|
3209
|
+
"libDependents": 6,
|
|
3210
|
+
"storyRefs": 2,
|
|
3211
|
+
"xproj": {
|
|
3212
|
+
"mobile": 0,
|
|
3213
|
+
"mcp": 0,
|
|
3214
|
+
"dash": 1,
|
|
3215
|
+
"total": 1
|
|
3216
|
+
},
|
|
3217
|
+
"dependsOn": [],
|
|
3218
|
+
"leak": {
|
|
3219
|
+
"rawView": 0,
|
|
3220
|
+
"rawText": 1,
|
|
3221
|
+
"inlineStyle": 0,
|
|
3222
|
+
"rawHex": 0,
|
|
3223
|
+
"loc": 224,
|
|
3224
|
+
"score": 1
|
|
3225
|
+
},
|
|
3226
|
+
"tier": "atom",
|
|
3227
|
+
"verdict": "keep-core",
|
|
3228
|
+
"deadByAssociation": false,
|
|
3229
|
+
"audited": "unaudited",
|
|
3230
|
+
"standard": true
|
|
3231
|
+
},
|
|
3232
|
+
{
|
|
3233
|
+
"name": "VelocityStrip",
|
|
3234
|
+
"file": "packages/ui/src/components/custom/Workout/VelocityStrip.tsx",
|
|
3235
|
+
"dir": "workout",
|
|
3236
|
+
"exports": [
|
|
3237
|
+
"getVelocityZoneColor",
|
|
3238
|
+
"getVelocityZoneName",
|
|
3239
|
+
"calculateVelocityLoss",
|
|
3240
|
+
"calculateMeanVelocity",
|
|
3241
|
+
"VelocityStrip",
|
|
3242
|
+
"VelocityZoneBandProp",
|
|
3243
|
+
"VelocityStripProps",
|
|
3244
|
+
"classifyBand",
|
|
3245
|
+
"bandColor",
|
|
3246
|
+
"getLossStyle",
|
|
3247
|
+
"getReducedMotionPreference",
|
|
3248
|
+
"usePrefersReducedMotion",
|
|
3249
|
+
"handler",
|
|
3250
|
+
"barColorFor"
|
|
3251
|
+
],
|
|
3252
|
+
"libDependents": 5,
|
|
3253
|
+
"storyRefs": 1,
|
|
3254
|
+
"xproj": {
|
|
3255
|
+
"mobile": 0,
|
|
3256
|
+
"mcp": 1,
|
|
3257
|
+
"dash": 0,
|
|
3258
|
+
"total": 1
|
|
3259
|
+
},
|
|
3260
|
+
"dependsOn": [],
|
|
3261
|
+
"leak": {
|
|
3262
|
+
"rawView": 5,
|
|
3263
|
+
"rawText": 3,
|
|
3264
|
+
"inlineStyle": 9,
|
|
3265
|
+
"rawHex": 0,
|
|
3266
|
+
"loc": 456,
|
|
3267
|
+
"score": 26
|
|
3268
|
+
},
|
|
3269
|
+
"tier": "atom",
|
|
3270
|
+
"verdict": "keep-core",
|
|
3271
|
+
"deadByAssociation": false,
|
|
3272
|
+
"audited": "unaudited",
|
|
3273
|
+
"standard": false
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"name": "WeekRow",
|
|
3277
|
+
"file": "packages/ui/src/components/custom/Workout/WeekRow.tsx",
|
|
3278
|
+
"dir": "workout",
|
|
3279
|
+
"exports": [
|
|
3280
|
+
"WeekRow",
|
|
3281
|
+
"WeekRowWorkout",
|
|
3282
|
+
"WeekRowProps"
|
|
3283
|
+
],
|
|
3284
|
+
"libDependents": 2,
|
|
3285
|
+
"storyRefs": 2,
|
|
3286
|
+
"xproj": {
|
|
3287
|
+
"mobile": 0,
|
|
3288
|
+
"mcp": 2,
|
|
3289
|
+
"dash": 0,
|
|
3290
|
+
"total": 2
|
|
3291
|
+
},
|
|
3292
|
+
"dependsOn": [
|
|
3293
|
+
"IntensityBar",
|
|
3294
|
+
"WorkoutPill"
|
|
3295
|
+
],
|
|
3296
|
+
"leak": {
|
|
3297
|
+
"rawView": 5,
|
|
3298
|
+
"rawText": 1,
|
|
3299
|
+
"inlineStyle": 4,
|
|
3300
|
+
"rawHex": 0,
|
|
3301
|
+
"loc": 143,
|
|
3302
|
+
"score": 14
|
|
3303
|
+
},
|
|
3304
|
+
"tier": "molecule",
|
|
3305
|
+
"verdict": "keep-core",
|
|
3306
|
+
"deadByAssociation": false,
|
|
3307
|
+
"audited": "unaudited",
|
|
3308
|
+
"standard": false
|
|
3309
|
+
},
|
|
3310
|
+
{
|
|
3311
|
+
"name": "WeightBadge",
|
|
3312
|
+
"file": "packages/ui/src/components/custom/Workout/WeightBadge.tsx",
|
|
3313
|
+
"dir": "workout",
|
|
3314
|
+
"exports": [
|
|
3315
|
+
"WeightBadge",
|
|
3316
|
+
"WeightBadgeSize",
|
|
3317
|
+
"WeightBadgeProps",
|
|
3318
|
+
"showIcon"
|
|
3319
|
+
],
|
|
3320
|
+
"libDependents": 4,
|
|
3321
|
+
"storyRefs": 1,
|
|
3322
|
+
"xproj": {
|
|
3323
|
+
"mobile": 0,
|
|
3324
|
+
"mcp": 0,
|
|
3325
|
+
"dash": 0,
|
|
3326
|
+
"total": 0
|
|
3327
|
+
},
|
|
3328
|
+
"dependsOn": [
|
|
3329
|
+
"BaseBadge",
|
|
3330
|
+
"icons"
|
|
3331
|
+
],
|
|
3332
|
+
"leak": {
|
|
3333
|
+
"rawView": 0,
|
|
3334
|
+
"rawText": 3,
|
|
3335
|
+
"inlineStyle": 3,
|
|
3336
|
+
"rawHex": 1,
|
|
3337
|
+
"loc": 118,
|
|
3338
|
+
"score": 10
|
|
3339
|
+
},
|
|
3340
|
+
"tier": "organism",
|
|
3341
|
+
"verdict": "keep-internal",
|
|
3342
|
+
"deadByAssociation": false,
|
|
3343
|
+
"audited": "unaudited",
|
|
3344
|
+
"standard": false
|
|
3345
|
+
},
|
|
3346
|
+
{
|
|
3347
|
+
"name": "WorkoutCard",
|
|
3348
|
+
"file": "packages/ui/src/components/custom/Workout/WorkoutCard.tsx",
|
|
3349
|
+
"dir": "workout",
|
|
3350
|
+
"exports": [
|
|
3351
|
+
"WorkoutCard",
|
|
3352
|
+
"WorkoutStatus",
|
|
3353
|
+
"WorkoutMuscleVolumeStatus",
|
|
3354
|
+
"WorkoutMuscleGroup",
|
|
3355
|
+
"WorkoutCardProps",
|
|
3356
|
+
"formatStats"
|
|
3357
|
+
],
|
|
3358
|
+
"libDependents": 1,
|
|
3359
|
+
"storyRefs": 2,
|
|
3360
|
+
"xproj": {
|
|
3361
|
+
"mobile": 0,
|
|
3362
|
+
"mcp": 1,
|
|
3363
|
+
"dash": 0,
|
|
3364
|
+
"total": 1
|
|
3365
|
+
},
|
|
3366
|
+
"dependsOn": [
|
|
3367
|
+
"Card",
|
|
3368
|
+
"ExerciseCard",
|
|
3369
|
+
"MuscleGroupChip"
|
|
3370
|
+
],
|
|
3371
|
+
"leak": {
|
|
3372
|
+
"rawView": 5,
|
|
3373
|
+
"rawText": 3,
|
|
3374
|
+
"inlineStyle": 6,
|
|
3375
|
+
"rawHex": 1,
|
|
3376
|
+
"loc": 227,
|
|
3377
|
+
"score": 21
|
|
3378
|
+
},
|
|
3379
|
+
"tier": "organism",
|
|
3380
|
+
"verdict": "keep-core",
|
|
3381
|
+
"deadByAssociation": false,
|
|
3382
|
+
"audited": "unaudited",
|
|
3383
|
+
"standard": false
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"name": "WorkoutPill",
|
|
3387
|
+
"file": "packages/ui/src/components/custom/Workout/WorkoutPill.tsx",
|
|
3388
|
+
"dir": "workout",
|
|
3389
|
+
"exports": [
|
|
3390
|
+
"WorkoutPill",
|
|
3391
|
+
"WorkoutPillStatus",
|
|
3392
|
+
"WorkoutPillProps",
|
|
3393
|
+
"usePulse"
|
|
3394
|
+
],
|
|
3395
|
+
"libDependents": 4,
|
|
3396
|
+
"storyRefs": 1,
|
|
3397
|
+
"xproj": {
|
|
3398
|
+
"mobile": 0,
|
|
3399
|
+
"mcp": 0,
|
|
3400
|
+
"dash": 0,
|
|
3401
|
+
"total": 0
|
|
3402
|
+
},
|
|
3403
|
+
"dependsOn": [],
|
|
3404
|
+
"leak": {
|
|
3405
|
+
"rawView": 1,
|
|
3406
|
+
"rawText": 3,
|
|
3407
|
+
"inlineStyle": 3,
|
|
3408
|
+
"rawHex": 3,
|
|
3409
|
+
"loc": 182,
|
|
3410
|
+
"score": 13
|
|
3411
|
+
},
|
|
3412
|
+
"tier": "atom",
|
|
3413
|
+
"verdict": "keep-internal",
|
|
3414
|
+
"deadByAssociation": false,
|
|
3415
|
+
"audited": "unaudited",
|
|
3416
|
+
"standard": false
|
|
3417
|
+
}
|
|
3418
|
+
],
|
|
3419
|
+
"edges": [
|
|
3420
|
+
[
|
|
3421
|
+
"DateTime",
|
|
3422
|
+
"Typography"
|
|
3423
|
+
],
|
|
3424
|
+
[
|
|
3425
|
+
"ActiveWorkoutPage",
|
|
3426
|
+
"ExerciseCard"
|
|
3427
|
+
],
|
|
3428
|
+
[
|
|
3429
|
+
"ActiveWorkoutPage",
|
|
3430
|
+
"InputBar"
|
|
3431
|
+
],
|
|
3432
|
+
[
|
|
3433
|
+
"ActiveWorkoutPage",
|
|
3434
|
+
"RestTimer"
|
|
3435
|
+
],
|
|
3436
|
+
[
|
|
3437
|
+
"ActiveWorkoutPage",
|
|
3438
|
+
"SupersetWrapper"
|
|
3439
|
+
],
|
|
3440
|
+
[
|
|
3441
|
+
"ActiveWorkoutPage",
|
|
3442
|
+
"SetRow"
|
|
3443
|
+
],
|
|
3444
|
+
[
|
|
3445
|
+
"BodyMapDetailPanel",
|
|
3446
|
+
"Badge"
|
|
3447
|
+
],
|
|
3448
|
+
[
|
|
3449
|
+
"BodyMapDetailPanel",
|
|
3450
|
+
"Sparkline"
|
|
3451
|
+
],
|
|
3452
|
+
[
|
|
3453
|
+
"ExerciseCard",
|
|
3454
|
+
"VelocityStrip"
|
|
3455
|
+
],
|
|
3456
|
+
[
|
|
3457
|
+
"ExerciseCard",
|
|
3458
|
+
"PlaceholderStrip"
|
|
3459
|
+
],
|
|
3460
|
+
[
|
|
3461
|
+
"ExerciseCard",
|
|
3462
|
+
"WeightBadge"
|
|
3463
|
+
],
|
|
3464
|
+
[
|
|
3465
|
+
"ExerciseCard",
|
|
3466
|
+
"PrBadge"
|
|
3467
|
+
],
|
|
3468
|
+
[
|
|
3469
|
+
"ExerciseCard",
|
|
3470
|
+
"TempoDisplay"
|
|
3471
|
+
],
|
|
3472
|
+
[
|
|
3473
|
+
"ExerciseCard",
|
|
3474
|
+
"SetRow"
|
|
3475
|
+
],
|
|
3476
|
+
[
|
|
3477
|
+
"ExerciseDetailPage",
|
|
3478
|
+
"MesoStatusCard"
|
|
3479
|
+
],
|
|
3480
|
+
[
|
|
3481
|
+
"ExerciseDetailPage",
|
|
3482
|
+
"StrengthTrendChart"
|
|
3483
|
+
],
|
|
3484
|
+
[
|
|
3485
|
+
"ExerciseDetailPage",
|
|
3486
|
+
"CapacityBandChart"
|
|
3487
|
+
],
|
|
3488
|
+
[
|
|
3489
|
+
"ExerciseDetailPage",
|
|
3490
|
+
"ExerciseCard"
|
|
3491
|
+
],
|
|
3492
|
+
[
|
|
3493
|
+
"ExerciseDetailPage",
|
|
3494
|
+
"SetRow"
|
|
3495
|
+
],
|
|
3496
|
+
[
|
|
3497
|
+
"ExerciseDetailPage",
|
|
3498
|
+
"VelocityStrip"
|
|
3499
|
+
],
|
|
3500
|
+
[
|
|
3501
|
+
"MesoCard",
|
|
3502
|
+
"Card"
|
|
3503
|
+
],
|
|
3504
|
+
[
|
|
3505
|
+
"MesoCard",
|
|
3506
|
+
"Badge"
|
|
3507
|
+
],
|
|
3508
|
+
[
|
|
3509
|
+
"MesoCard",
|
|
3510
|
+
"WeekRow"
|
|
3511
|
+
],
|
|
3512
|
+
[
|
|
3513
|
+
"MesoStatusCard",
|
|
3514
|
+
"Card"
|
|
3515
|
+
],
|
|
3516
|
+
[
|
|
3517
|
+
"MesoStatusCard",
|
|
3518
|
+
"StatusDot"
|
|
3519
|
+
],
|
|
3520
|
+
[
|
|
3521
|
+
"PrBadge",
|
|
3522
|
+
"icons"
|
|
3523
|
+
],
|
|
3524
|
+
[
|
|
3525
|
+
"PrBadge",
|
|
3526
|
+
"BaseBadge"
|
|
3527
|
+
],
|
|
3528
|
+
[
|
|
3529
|
+
"PrHistoryModal",
|
|
3530
|
+
"icons"
|
|
3531
|
+
],
|
|
3532
|
+
[
|
|
3533
|
+
"PrHistoryModal",
|
|
3534
|
+
"Drawer"
|
|
3535
|
+
],
|
|
3536
|
+
[
|
|
3537
|
+
"ProgramPlanningPage",
|
|
3538
|
+
"MesoProgressBar"
|
|
3539
|
+
],
|
|
3540
|
+
[
|
|
3541
|
+
"ProgramPlanningPage",
|
|
3542
|
+
"MesoCard"
|
|
3543
|
+
],
|
|
3544
|
+
[
|
|
3545
|
+
"ProgramPlanningPage",
|
|
3546
|
+
"WeekRow"
|
|
3547
|
+
],
|
|
3548
|
+
[
|
|
3549
|
+
"ProgramPlanningPage",
|
|
3550
|
+
"WorkoutCard"
|
|
3551
|
+
],
|
|
3552
|
+
[
|
|
3553
|
+
"ProgramPlanningPage",
|
|
3554
|
+
"WorkoutPill"
|
|
3555
|
+
],
|
|
3556
|
+
[
|
|
3557
|
+
"ProgramPlanningPage",
|
|
3558
|
+
"ExerciseCard"
|
|
3559
|
+
],
|
|
3560
|
+
[
|
|
3561
|
+
"ReadinessCheck",
|
|
3562
|
+
"Card"
|
|
3563
|
+
],
|
|
3564
|
+
[
|
|
3565
|
+
"ReadinessCheck",
|
|
3566
|
+
"Badge"
|
|
3567
|
+
],
|
|
3568
|
+
[
|
|
3569
|
+
"SetRow",
|
|
3570
|
+
"VelocityStrip"
|
|
3571
|
+
],
|
|
3572
|
+
[
|
|
3573
|
+
"SetRow",
|
|
3574
|
+
"PrBadge"
|
|
3575
|
+
],
|
|
3576
|
+
[
|
|
3577
|
+
"TempoDisplay",
|
|
3578
|
+
"TempoBar"
|
|
3579
|
+
],
|
|
3580
|
+
[
|
|
3581
|
+
"TrainingStatusPage",
|
|
3582
|
+
"BodyMap"
|
|
3583
|
+
],
|
|
3584
|
+
[
|
|
3585
|
+
"TrainingStatusPage",
|
|
3586
|
+
"BodyMapDetailPanel"
|
|
3587
|
+
],
|
|
3588
|
+
[
|
|
3589
|
+
"TrainingStatusPage",
|
|
3590
|
+
"MesoStatusCard"
|
|
3591
|
+
],
|
|
3592
|
+
[
|
|
3593
|
+
"WeekRow",
|
|
3594
|
+
"WorkoutPill"
|
|
3595
|
+
],
|
|
3596
|
+
[
|
|
3597
|
+
"WeekRow",
|
|
3598
|
+
"IntensityBar"
|
|
3599
|
+
],
|
|
3600
|
+
[
|
|
3601
|
+
"WeightBadge",
|
|
3602
|
+
"icons"
|
|
3603
|
+
],
|
|
3604
|
+
[
|
|
3605
|
+
"WeightBadge",
|
|
3606
|
+
"BaseBadge"
|
|
3607
|
+
],
|
|
3608
|
+
[
|
|
3609
|
+
"WorkoutCard",
|
|
3610
|
+
"Card"
|
|
3611
|
+
],
|
|
3612
|
+
[
|
|
3613
|
+
"WorkoutCard",
|
|
3614
|
+
"ExerciseCard"
|
|
3615
|
+
],
|
|
3616
|
+
[
|
|
3617
|
+
"WorkoutCard",
|
|
3618
|
+
"MuscleGroupChip"
|
|
3619
|
+
],
|
|
3620
|
+
[
|
|
3621
|
+
"icons",
|
|
3622
|
+
"SvgIcon"
|
|
3623
|
+
],
|
|
3624
|
+
[
|
|
3625
|
+
"BrandLockup",
|
|
3626
|
+
"Typography"
|
|
3627
|
+
],
|
|
3628
|
+
[
|
|
3629
|
+
"BrandLockup",
|
|
3630
|
+
"icons"
|
|
3631
|
+
],
|
|
3632
|
+
[
|
|
3633
|
+
"DeviceIndicator",
|
|
3634
|
+
"icons"
|
|
3635
|
+
],
|
|
3636
|
+
[
|
|
3637
|
+
"DeviceMenu",
|
|
3638
|
+
"Typography"
|
|
3639
|
+
],
|
|
3640
|
+
[
|
|
3641
|
+
"DeviceMenu",
|
|
3642
|
+
"Popover"
|
|
3643
|
+
],
|
|
3644
|
+
[
|
|
3645
|
+
"DeviceMenu",
|
|
3646
|
+
"DeviceIndicator"
|
|
3647
|
+
],
|
|
3648
|
+
[
|
|
3649
|
+
"DeviceMenu",
|
|
3650
|
+
"DeviceRow"
|
|
3651
|
+
],
|
|
3652
|
+
[
|
|
3653
|
+
"DeviceRow",
|
|
3654
|
+
"Indicator"
|
|
3655
|
+
],
|
|
3656
|
+
[
|
|
3657
|
+
"DeviceRow",
|
|
3658
|
+
"Typography"
|
|
3659
|
+
],
|
|
3660
|
+
[
|
|
3661
|
+
"NavItem",
|
|
3662
|
+
"Typography"
|
|
3663
|
+
],
|
|
3664
|
+
[
|
|
3665
|
+
"SessionStatePill",
|
|
3666
|
+
"Indicator"
|
|
3667
|
+
],
|
|
3668
|
+
[
|
|
3669
|
+
"SessionStatePill",
|
|
3670
|
+
"Typography"
|
|
3671
|
+
],
|
|
3672
|
+
[
|
|
3673
|
+
"SideNav",
|
|
3674
|
+
"icons"
|
|
3675
|
+
],
|
|
3676
|
+
[
|
|
3677
|
+
"SideNav",
|
|
3678
|
+
"NavItem"
|
|
3679
|
+
],
|
|
3680
|
+
[
|
|
3681
|
+
"TopBar",
|
|
3682
|
+
"Divider"
|
|
3683
|
+
],
|
|
3684
|
+
[
|
|
3685
|
+
"TopBar",
|
|
3686
|
+
"DateTime"
|
|
3687
|
+
],
|
|
3688
|
+
[
|
|
3689
|
+
"TopBar",
|
|
3690
|
+
"BrandLockup"
|
|
3691
|
+
],
|
|
3692
|
+
[
|
|
3693
|
+
"TopBar",
|
|
3694
|
+
"SessionStatePill"
|
|
3695
|
+
],
|
|
3696
|
+
[
|
|
3697
|
+
"TopBar",
|
|
3698
|
+
"DeviceMenu"
|
|
3699
|
+
],
|
|
3700
|
+
[
|
|
3701
|
+
"TopBar",
|
|
3702
|
+
"DeviceRow"
|
|
3703
|
+
],
|
|
3704
|
+
[
|
|
3705
|
+
"Badge",
|
|
3706
|
+
"Indicator"
|
|
3707
|
+
]
|
|
3708
|
+
],
|
|
3709
|
+
"summary": {
|
|
3710
|
+
"total": 91,
|
|
3711
|
+
"dead": [
|
|
3712
|
+
"Autocomplete",
|
|
3713
|
+
"Avatar",
|
|
3714
|
+
"Breadcrumbs",
|
|
3715
|
+
"Chip",
|
|
3716
|
+
"Collapse",
|
|
3717
|
+
"HelpTip",
|
|
3718
|
+
"IconBox",
|
|
3719
|
+
"Link",
|
|
3720
|
+
"Menu",
|
|
3721
|
+
"Modal",
|
|
3722
|
+
"Pill",
|
|
3723
|
+
"ReadinessCheck",
|
|
3724
|
+
"SideNav",
|
|
3725
|
+
"Skeleton",
|
|
3726
|
+
"Spinner",
|
|
3727
|
+
"Stepper",
|
|
3728
|
+
"Switch",
|
|
3729
|
+
"Tabs",
|
|
3730
|
+
"Toast",
|
|
3731
|
+
"ToolbarButton",
|
|
3732
|
+
"Tooltip",
|
|
3733
|
+
"TopBar",
|
|
3734
|
+
"Treemap"
|
|
3735
|
+
],
|
|
3736
|
+
"deadByAssociation": [
|
|
3737
|
+
"BodyMap",
|
|
3738
|
+
"BodyMapDetailPanel",
|
|
3739
|
+
"BrandLockup",
|
|
3740
|
+
"DateTime",
|
|
3741
|
+
"DeviceIndicator",
|
|
3742
|
+
"DeviceMenu",
|
|
3743
|
+
"DeviceRow",
|
|
3744
|
+
"Divider",
|
|
3745
|
+
"InputBar",
|
|
3746
|
+
"MesoCard",
|
|
3747
|
+
"MesoProgressBar",
|
|
3748
|
+
"NavItem",
|
|
3749
|
+
"Popover",
|
|
3750
|
+
"RestTimer",
|
|
3751
|
+
"SessionStatePill",
|
|
3752
|
+
"Sparkline",
|
|
3753
|
+
"SupersetWrapper",
|
|
3754
|
+
"SvgIcon"
|
|
3755
|
+
],
|
|
3756
|
+
"auditedCount": 0,
|
|
3757
|
+
"standardCoverage": [
|
|
3758
|
+
{
|
|
3759
|
+
"name": "Button",
|
|
3760
|
+
"category": "Forms",
|
|
3761
|
+
"status": "present",
|
|
3762
|
+
"have": [
|
|
3763
|
+
"Button"
|
|
3764
|
+
]
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
"name": "IconButton",
|
|
3768
|
+
"category": "Forms",
|
|
3769
|
+
"status": "present-dead",
|
|
3770
|
+
"have": [
|
|
3771
|
+
"IconBox",
|
|
3772
|
+
"ToolbarButton"
|
|
3773
|
+
]
|
|
3774
|
+
},
|
|
3775
|
+
{
|
|
3776
|
+
"name": "Input",
|
|
3777
|
+
"category": "Forms",
|
|
3778
|
+
"status": "present",
|
|
3779
|
+
"have": [
|
|
3780
|
+
"Input"
|
|
3781
|
+
]
|
|
3782
|
+
},
|
|
3783
|
+
{
|
|
3784
|
+
"name": "Textarea",
|
|
3785
|
+
"category": "Forms",
|
|
3786
|
+
"status": "missing",
|
|
3787
|
+
"have": []
|
|
3788
|
+
},
|
|
3789
|
+
{
|
|
3790
|
+
"name": "Select",
|
|
3791
|
+
"category": "Forms",
|
|
3792
|
+
"status": "present",
|
|
3793
|
+
"have": [
|
|
3794
|
+
"Select"
|
|
3795
|
+
]
|
|
3796
|
+
},
|
|
3797
|
+
{
|
|
3798
|
+
"name": "Combobox",
|
|
3799
|
+
"category": "Forms",
|
|
3800
|
+
"status": "present-dead",
|
|
3801
|
+
"have": [
|
|
3802
|
+
"Autocomplete"
|
|
3803
|
+
]
|
|
3804
|
+
},
|
|
3805
|
+
{
|
|
3806
|
+
"name": "Checkbox",
|
|
3807
|
+
"category": "Forms",
|
|
3808
|
+
"status": "present",
|
|
3809
|
+
"have": [
|
|
3810
|
+
"Checkbox"
|
|
3811
|
+
]
|
|
3812
|
+
},
|
|
3813
|
+
{
|
|
3814
|
+
"name": "Radio",
|
|
3815
|
+
"category": "Forms",
|
|
3816
|
+
"status": "present",
|
|
3817
|
+
"have": [
|
|
3818
|
+
"Radio"
|
|
3819
|
+
]
|
|
3820
|
+
},
|
|
3821
|
+
{
|
|
3822
|
+
"name": "Switch",
|
|
3823
|
+
"category": "Forms",
|
|
3824
|
+
"status": "present-dead",
|
|
3825
|
+
"have": [
|
|
3826
|
+
"Switch"
|
|
3827
|
+
]
|
|
3828
|
+
},
|
|
3829
|
+
{
|
|
3830
|
+
"name": "Slider",
|
|
3831
|
+
"category": "Forms",
|
|
3832
|
+
"status": "missing",
|
|
3833
|
+
"have": []
|
|
3834
|
+
},
|
|
3835
|
+
{
|
|
3836
|
+
"name": "FormField",
|
|
3837
|
+
"category": "Forms",
|
|
3838
|
+
"status": "present",
|
|
3839
|
+
"have": [
|
|
3840
|
+
"FormField"
|
|
3841
|
+
]
|
|
3842
|
+
},
|
|
3843
|
+
{
|
|
3844
|
+
"name": "DatePicker",
|
|
3845
|
+
"category": "Forms",
|
|
3846
|
+
"status": "present-dead",
|
|
3847
|
+
"have": [
|
|
3848
|
+
"DateTime"
|
|
3849
|
+
]
|
|
3850
|
+
},
|
|
3851
|
+
{
|
|
3852
|
+
"name": "Tabs",
|
|
3853
|
+
"category": "Navigation",
|
|
3854
|
+
"status": "present-dead",
|
|
3855
|
+
"have": [
|
|
3856
|
+
"Tabs"
|
|
3857
|
+
]
|
|
3858
|
+
},
|
|
3859
|
+
{
|
|
3860
|
+
"name": "Breadcrumbs",
|
|
3861
|
+
"category": "Navigation",
|
|
3862
|
+
"status": "present-dead",
|
|
3863
|
+
"have": [
|
|
3864
|
+
"Breadcrumbs"
|
|
3865
|
+
]
|
|
3866
|
+
},
|
|
3867
|
+
{
|
|
3868
|
+
"name": "Menu",
|
|
3869
|
+
"category": "Navigation",
|
|
3870
|
+
"status": "present-dead",
|
|
3871
|
+
"have": [
|
|
3872
|
+
"Menu"
|
|
3873
|
+
]
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
"name": "Link",
|
|
3877
|
+
"category": "Navigation",
|
|
3878
|
+
"status": "present-dead",
|
|
3879
|
+
"have": [
|
|
3880
|
+
"Link"
|
|
3881
|
+
]
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
"name": "Pagination",
|
|
3885
|
+
"category": "Navigation",
|
|
3886
|
+
"status": "missing",
|
|
3887
|
+
"have": []
|
|
3888
|
+
},
|
|
3889
|
+
{
|
|
3890
|
+
"name": "Stepper",
|
|
3891
|
+
"category": "Navigation",
|
|
3892
|
+
"status": "present-dead",
|
|
3893
|
+
"have": [
|
|
3894
|
+
"Stepper"
|
|
3895
|
+
]
|
|
3896
|
+
},
|
|
3897
|
+
{
|
|
3898
|
+
"name": "Sidebar",
|
|
3899
|
+
"category": "Navigation",
|
|
3900
|
+
"status": "present",
|
|
3901
|
+
"have": [
|
|
3902
|
+
"SideNav",
|
|
3903
|
+
"Sidebar"
|
|
3904
|
+
]
|
|
3905
|
+
},
|
|
3906
|
+
{
|
|
3907
|
+
"name": "Alert",
|
|
3908
|
+
"category": "Feedback",
|
|
3909
|
+
"status": "present",
|
|
3910
|
+
"have": [
|
|
3911
|
+
"Alert"
|
|
3912
|
+
]
|
|
3913
|
+
},
|
|
3914
|
+
{
|
|
3915
|
+
"name": "Toast",
|
|
3916
|
+
"category": "Feedback",
|
|
3917
|
+
"status": "present-dead",
|
|
3918
|
+
"have": [
|
|
3919
|
+
"Toast"
|
|
3920
|
+
]
|
|
3921
|
+
},
|
|
3922
|
+
{
|
|
3923
|
+
"name": "Tooltip",
|
|
3924
|
+
"category": "Feedback",
|
|
3925
|
+
"status": "present-dead",
|
|
3926
|
+
"have": [
|
|
3927
|
+
"Tooltip"
|
|
3928
|
+
]
|
|
3929
|
+
},
|
|
3930
|
+
{
|
|
3931
|
+
"name": "Popover",
|
|
3932
|
+
"category": "Feedback",
|
|
3933
|
+
"status": "present-dead",
|
|
3934
|
+
"have": [
|
|
3935
|
+
"Popover"
|
|
3936
|
+
]
|
|
3937
|
+
},
|
|
3938
|
+
{
|
|
3939
|
+
"name": "Modal",
|
|
3940
|
+
"category": "Feedback",
|
|
3941
|
+
"status": "present-dead",
|
|
3942
|
+
"have": [
|
|
3943
|
+
"Modal"
|
|
3944
|
+
]
|
|
3945
|
+
},
|
|
3946
|
+
{
|
|
3947
|
+
"name": "Drawer",
|
|
3948
|
+
"category": "Feedback",
|
|
3949
|
+
"status": "present",
|
|
3950
|
+
"have": [
|
|
3951
|
+
"Drawer"
|
|
3952
|
+
]
|
|
3953
|
+
},
|
|
3954
|
+
{
|
|
3955
|
+
"name": "Progress",
|
|
3956
|
+
"category": "Feedback",
|
|
3957
|
+
"status": "present",
|
|
3958
|
+
"have": [
|
|
3959
|
+
"Progress"
|
|
3960
|
+
]
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
"name": "Spinner",
|
|
3964
|
+
"category": "Feedback",
|
|
3965
|
+
"status": "present-dead",
|
|
3966
|
+
"have": [
|
|
3967
|
+
"Spinner"
|
|
3968
|
+
]
|
|
3969
|
+
},
|
|
3970
|
+
{
|
|
3971
|
+
"name": "Skeleton",
|
|
3972
|
+
"category": "Feedback",
|
|
3973
|
+
"status": "present-dead",
|
|
3974
|
+
"have": [
|
|
3975
|
+
"Skeleton"
|
|
3976
|
+
]
|
|
3977
|
+
},
|
|
3978
|
+
{
|
|
3979
|
+
"name": "EmptyState",
|
|
3980
|
+
"category": "Feedback",
|
|
3981
|
+
"status": "present",
|
|
3982
|
+
"have": [
|
|
3983
|
+
"EmptyState"
|
|
3984
|
+
]
|
|
3985
|
+
},
|
|
3986
|
+
{
|
|
3987
|
+
"name": "Card",
|
|
3988
|
+
"category": "Data display",
|
|
3989
|
+
"status": "present",
|
|
3990
|
+
"have": [
|
|
3991
|
+
"Card"
|
|
3992
|
+
]
|
|
3993
|
+
},
|
|
3994
|
+
{
|
|
3995
|
+
"name": "Badge",
|
|
3996
|
+
"category": "Data display",
|
|
3997
|
+
"status": "present",
|
|
3998
|
+
"have": [
|
|
3999
|
+
"Badge"
|
|
4000
|
+
]
|
|
4001
|
+
},
|
|
4002
|
+
{
|
|
4003
|
+
"name": "Avatar",
|
|
4004
|
+
"category": "Data display",
|
|
4005
|
+
"status": "present-dead",
|
|
4006
|
+
"have": [
|
|
4007
|
+
"Avatar"
|
|
4008
|
+
]
|
|
4009
|
+
},
|
|
4010
|
+
{
|
|
4011
|
+
"name": "Table",
|
|
4012
|
+
"category": "Data display",
|
|
4013
|
+
"status": "present",
|
|
4014
|
+
"have": [
|
|
4015
|
+
"Table"
|
|
4016
|
+
]
|
|
4017
|
+
},
|
|
4018
|
+
{
|
|
4019
|
+
"name": "ListItem",
|
|
4020
|
+
"category": "Data display",
|
|
4021
|
+
"status": "present",
|
|
4022
|
+
"have": [
|
|
4023
|
+
"ListItem"
|
|
4024
|
+
]
|
|
4025
|
+
},
|
|
4026
|
+
{
|
|
4027
|
+
"name": "Chip",
|
|
4028
|
+
"category": "Data display",
|
|
4029
|
+
"status": "present-dead",
|
|
4030
|
+
"have": [
|
|
4031
|
+
"Chip",
|
|
4032
|
+
"Pill"
|
|
4033
|
+
]
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
"name": "Accordion",
|
|
4037
|
+
"category": "Data display",
|
|
4038
|
+
"status": "present-dead",
|
|
4039
|
+
"have": [
|
|
4040
|
+
"Collapse"
|
|
4041
|
+
]
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
"name": "Tooltip / HelpTip",
|
|
4045
|
+
"category": "Data display",
|
|
4046
|
+
"status": "present-dead",
|
|
4047
|
+
"have": [
|
|
4048
|
+
"HelpTip"
|
|
4049
|
+
]
|
|
4050
|
+
},
|
|
4051
|
+
{
|
|
4052
|
+
"name": "Typography",
|
|
4053
|
+
"category": "Layout",
|
|
4054
|
+
"status": "present",
|
|
4055
|
+
"have": [
|
|
4056
|
+
"Typography"
|
|
4057
|
+
]
|
|
4058
|
+
},
|
|
4059
|
+
{
|
|
4060
|
+
"name": "Stack",
|
|
4061
|
+
"category": "Layout",
|
|
4062
|
+
"status": "present",
|
|
4063
|
+
"have": [
|
|
4064
|
+
"Stack"
|
|
4065
|
+
]
|
|
4066
|
+
},
|
|
4067
|
+
{
|
|
4068
|
+
"name": "Surface",
|
|
4069
|
+
"category": "Layout",
|
|
4070
|
+
"status": "present",
|
|
4071
|
+
"have": [
|
|
4072
|
+
"Surface"
|
|
4073
|
+
]
|
|
4074
|
+
},
|
|
4075
|
+
{
|
|
4076
|
+
"name": "Divider",
|
|
4077
|
+
"category": "Layout",
|
|
4078
|
+
"status": "present-dead",
|
|
4079
|
+
"have": [
|
|
4080
|
+
"Divider"
|
|
4081
|
+
]
|
|
4082
|
+
},
|
|
4083
|
+
{
|
|
4084
|
+
"name": "Section",
|
|
4085
|
+
"category": "Layout",
|
|
4086
|
+
"status": "present",
|
|
4087
|
+
"have": [
|
|
4088
|
+
"Section"
|
|
4089
|
+
]
|
|
4090
|
+
}
|
|
4091
|
+
],
|
|
4092
|
+
"extractionTop": [
|
|
4093
|
+
{
|
|
4094
|
+
"name": "BodyMapDetailPanel",
|
|
4095
|
+
"tier": "organism",
|
|
4096
|
+
"rawView": 15,
|
|
4097
|
+
"rawText": 15,
|
|
4098
|
+
"inlineStyle": 37,
|
|
4099
|
+
"rawHex": 1,
|
|
4100
|
+
"loc": 478,
|
|
4101
|
+
"score": 105
|
|
4102
|
+
},
|
|
4103
|
+
{
|
|
4104
|
+
"name": "StrengthTrendChart",
|
|
4105
|
+
"tier": "atom",
|
|
4106
|
+
"rawView": 20,
|
|
4107
|
+
"rawText": 12,
|
|
4108
|
+
"inlineStyle": 33,
|
|
4109
|
+
"rawHex": 0,
|
|
4110
|
+
"loc": 630,
|
|
4111
|
+
"score": 98
|
|
4112
|
+
},
|
|
4113
|
+
{
|
|
4114
|
+
"name": "ExerciseDetailPage",
|
|
4115
|
+
"tier": "page",
|
|
4116
|
+
"rawView": 18,
|
|
4117
|
+
"rawText": 13,
|
|
4118
|
+
"inlineStyle": 32,
|
|
4119
|
+
"rawHex": 0,
|
|
4120
|
+
"loc": 639,
|
|
4121
|
+
"score": 95
|
|
4122
|
+
},
|
|
4123
|
+
{
|
|
4124
|
+
"name": "MesoStatusCard",
|
|
4125
|
+
"tier": "molecule",
|
|
4126
|
+
"rawView": 17,
|
|
4127
|
+
"rawText": 11,
|
|
4128
|
+
"inlineStyle": 24,
|
|
4129
|
+
"rawHex": 0,
|
|
4130
|
+
"loc": 466,
|
|
4131
|
+
"score": 76
|
|
4132
|
+
},
|
|
4133
|
+
{
|
|
4134
|
+
"name": "ExerciseCard",
|
|
4135
|
+
"tier": "organism",
|
|
4136
|
+
"rawView": 16,
|
|
4137
|
+
"rawText": 8,
|
|
4138
|
+
"inlineStyle": 18,
|
|
4139
|
+
"rawHex": 0,
|
|
4140
|
+
"loc": 432,
|
|
4141
|
+
"score": 60
|
|
4142
|
+
},
|
|
4143
|
+
{
|
|
4144
|
+
"name": "TempoDisplay",
|
|
4145
|
+
"tier": "molecule",
|
|
4146
|
+
"rawView": 8,
|
|
4147
|
+
"rawText": 8,
|
|
4148
|
+
"inlineStyle": 16,
|
|
4149
|
+
"rawHex": 9,
|
|
4150
|
+
"loc": 316,
|
|
4151
|
+
"score": 57
|
|
4152
|
+
},
|
|
4153
|
+
{
|
|
4154
|
+
"name": "ActiveWorkoutPage",
|
|
4155
|
+
"tier": "page",
|
|
4156
|
+
"rawView": 11,
|
|
4157
|
+
"rawText": 4,
|
|
4158
|
+
"inlineStyle": 15,
|
|
4159
|
+
"rawHex": 0,
|
|
4160
|
+
"loc": 444,
|
|
4161
|
+
"score": 45
|
|
4162
|
+
},
|
|
4163
|
+
{
|
|
4164
|
+
"name": "SetRow",
|
|
4165
|
+
"tier": "organism",
|
|
4166
|
+
"rawView": 8,
|
|
4167
|
+
"rawText": 8,
|
|
4168
|
+
"inlineStyle": 14,
|
|
4169
|
+
"rawHex": 0,
|
|
4170
|
+
"loc": 261,
|
|
4171
|
+
"score": 44
|
|
4172
|
+
},
|
|
4173
|
+
{
|
|
4174
|
+
"name": "ReadinessCheck",
|
|
4175
|
+
"tier": "organism",
|
|
4176
|
+
"rawView": 7,
|
|
4177
|
+
"rawText": 7,
|
|
4178
|
+
"inlineStyle": 14,
|
|
4179
|
+
"rawHex": 1,
|
|
4180
|
+
"loc": 271,
|
|
4181
|
+
"score": 43
|
|
4182
|
+
},
|
|
4183
|
+
{
|
|
4184
|
+
"name": "Scatter",
|
|
4185
|
+
"tier": "atom",
|
|
4186
|
+
"rawView": 8,
|
|
4187
|
+
"rawText": 5,
|
|
4188
|
+
"inlineStyle": 14,
|
|
4189
|
+
"rawHex": 1,
|
|
4190
|
+
"loc": 259,
|
|
4191
|
+
"score": 42
|
|
4192
|
+
},
|
|
4193
|
+
{
|
|
4194
|
+
"name": "TrainingStatusPage",
|
|
4195
|
+
"tier": "page",
|
|
4196
|
+
"rawView": 10,
|
|
4197
|
+
"rawText": 4,
|
|
4198
|
+
"inlineStyle": 14,
|
|
4199
|
+
"rawHex": 0,
|
|
4200
|
+
"loc": 313,
|
|
4201
|
+
"score": 42
|
|
4202
|
+
},
|
|
4203
|
+
{
|
|
4204
|
+
"name": "CapacityBandChart",
|
|
4205
|
+
"tier": "atom",
|
|
4206
|
+
"rawView": 9,
|
|
4207
|
+
"rawText": 4,
|
|
4208
|
+
"inlineStyle": 12,
|
|
4209
|
+
"rawHex": 1,
|
|
4210
|
+
"loc": 496,
|
|
4211
|
+
"score": 38
|
|
4212
|
+
},
|
|
4213
|
+
{
|
|
4214
|
+
"name": "RestTimer",
|
|
4215
|
+
"tier": "atom",
|
|
4216
|
+
"rawView": 6,
|
|
4217
|
+
"rawText": 5,
|
|
4218
|
+
"inlineStyle": 13,
|
|
4219
|
+
"rawHex": 0,
|
|
4220
|
+
"loc": 184,
|
|
4221
|
+
"score": 37
|
|
4222
|
+
},
|
|
4223
|
+
{
|
|
4224
|
+
"name": "Table",
|
|
4225
|
+
"tier": "atom",
|
|
4226
|
+
"rawView": 21,
|
|
4227
|
+
"rawText": 12,
|
|
4228
|
+
"inlineStyle": 1,
|
|
4229
|
+
"rawHex": 0,
|
|
4230
|
+
"loc": 713,
|
|
4231
|
+
"score": 35
|
|
4232
|
+
},
|
|
4233
|
+
{
|
|
4234
|
+
"name": "TempoBar",
|
|
4235
|
+
"tier": "atom",
|
|
4236
|
+
"rawView": 9,
|
|
4237
|
+
"rawText": 3,
|
|
4238
|
+
"inlineStyle": 11,
|
|
4239
|
+
"rawHex": 1,
|
|
4240
|
+
"loc": 216,
|
|
4241
|
+
"score": 35
|
|
4242
|
+
}
|
|
4243
|
+
],
|
|
4244
|
+
"substitution": {
|
|
4245
|
+
"library(titan)": {
|
|
4246
|
+
"Text": 68,
|
|
4247
|
+
"View": 84,
|
|
4248
|
+
"TouchableOpacity": 0,
|
|
4249
|
+
"Pressable": 50,
|
|
4250
|
+
"TextInput": 3,
|
|
4251
|
+
"ActivityIndicator": 2,
|
|
4252
|
+
"Switch": 0,
|
|
4253
|
+
"Modal": 3
|
|
4254
|
+
},
|
|
4255
|
+
"mobile": {
|
|
4256
|
+
"Text": 92,
|
|
4257
|
+
"View": 91,
|
|
4258
|
+
"TouchableOpacity": 34,
|
|
4259
|
+
"Pressable": 9,
|
|
4260
|
+
"TextInput": 3,
|
|
4261
|
+
"ActivityIndicator": 7,
|
|
4262
|
+
"Switch": 3,
|
|
4263
|
+
"Modal": 5
|
|
4264
|
+
},
|
|
4265
|
+
"mcp": {
|
|
4266
|
+
"Text": 0,
|
|
4267
|
+
"View": 0,
|
|
4268
|
+
"TouchableOpacity": 0,
|
|
4269
|
+
"Pressable": 0,
|
|
4270
|
+
"TextInput": 0,
|
|
4271
|
+
"ActivityIndicator": 0,
|
|
4272
|
+
"Switch": 0,
|
|
4273
|
+
"Modal": 0
|
|
4274
|
+
},
|
|
4275
|
+
"dash": {
|
|
4276
|
+
"Text": 12,
|
|
4277
|
+
"View": 12,
|
|
4278
|
+
"TouchableOpacity": 0,
|
|
4279
|
+
"Pressable": 10,
|
|
4280
|
+
"TextInput": 1,
|
|
4281
|
+
"ActivityIndicator": 0,
|
|
4282
|
+
"Switch": 0,
|
|
4283
|
+
"Modal": 0
|
|
4284
|
+
}
|
|
4285
|
+
},
|
|
4286
|
+
"consumers": [
|
|
4287
|
+
{
|
|
4288
|
+
"name": "mobile",
|
|
4289
|
+
"present": true
|
|
4290
|
+
},
|
|
4291
|
+
{
|
|
4292
|
+
"name": "mcp",
|
|
4293
|
+
"present": true
|
|
4294
|
+
},
|
|
4295
|
+
{
|
|
4296
|
+
"name": "dash",
|
|
4297
|
+
"present": true
|
|
4298
|
+
}
|
|
4299
|
+
]
|
|
4300
|
+
}
|
|
4301
|
+
}
|