@decky/ui 3.26.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/LICENSE +504 -0
- package/README.md +30 -0
- package/dist/class-mapper.d.ts +7 -0
- package/dist/class-mapper.js +26 -0
- package/dist/components/Button.d.ts +5 -0
- package/dist/components/Button.js +2 -0
- package/dist/components/ButtonItem.d.ts +7 -0
- package/dist/components/ButtonItem.js +5 -0
- package/dist/components/Carousel.d.ts +19 -0
- package/dist/components/Carousel.js +2 -0
- package/dist/components/ControlsList.d.ts +7 -0
- package/dist/components/ControlsList.js +2 -0
- package/dist/components/Dialog.d.ts +33 -0
- package/dist/components/Dialog.js +24 -0
- package/dist/components/DialogCheckbox.d.ts +17 -0
- package/dist/components/DialogCheckbox.js +14 -0
- package/dist/components/Dropdown.d.ts +34 -0
- package/dist/components/Dropdown.js +5 -0
- package/dist/components/Field.d.ts +23 -0
- package/dist/components/Field.js +2 -0
- package/dist/components/FocusRing.d.ts +9 -0
- package/dist/components/FocusRing.js +2 -0
- package/dist/components/Focusable.d.ts +12 -0
- package/dist/components/Focusable.js +4 -0
- package/dist/components/FooterLegend.d.ts +66 -0
- package/dist/components/FooterLegend.js +32 -0
- package/dist/components/Item.d.ts +12 -0
- package/dist/components/Item.js +1 -0
- package/dist/components/Marquee.d.ts +14 -0
- package/dist/components/Marquee.js +2 -0
- package/dist/components/Menu.d.ts +29 -0
- package/dist/components/Menu.js +9 -0
- package/dist/components/Modal.d.ts +52 -0
- package/dist/components/Modal.js +29 -0
- package/dist/components/Panel.d.ts +11 -0
- package/dist/components/Panel.js +4 -0
- package/dist/components/ProgressBar.d.ts +21 -0
- package/dist/components/ProgressBar.js +6 -0
- package/dist/components/Scroll.d.ts +7 -0
- package/dist/components/Scroll.js +5 -0
- package/dist/components/SidebarNavigation.d.ts +21 -0
- package/dist/components/SidebarNavigation.js +4 -0
- package/dist/components/SliderField.d.ts +26 -0
- package/dist/components/SliderField.js +2 -0
- package/dist/components/Spinner.d.ts +2 -0
- package/dist/components/Spinner.js +2 -0
- package/dist/components/SteamSpinner.d.ts +2 -0
- package/dist/components/SteamSpinner.js +2 -0
- package/dist/components/Tabs.d.ts +16 -0
- package/dist/components/Tabs.js +48 -0
- package/dist/components/TextField.d.ts +22 -0
- package/dist/components/TextField.js +2 -0
- package/dist/components/Toggle.d.ts +8 -0
- package/dist/components/Toggle.js +2 -0
- package/dist/components/ToggleField.d.ts +9 -0
- package/dist/components/ToggleField.js +2 -0
- package/dist/components/index.d.ts +25 -0
- package/dist/components/index.js +25 -0
- package/dist/custom-components/ColorPickerModal.d.ts +12 -0
- package/dist/custom-components/ColorPickerModal.js +87 -0
- package/dist/custom-components/ReorderableList.d.ts +26 -0
- package/dist/custom-components/ReorderableList.js +84 -0
- package/dist/custom-components/SuspensefulImage.d.ts +7 -0
- package/dist/custom-components/SuspensefulImage.js +27 -0
- package/dist/custom-components/index.d.ts +3 -0
- package/dist/custom-components/index.js +3 -0
- package/dist/custom-hooks/index.d.ts +1 -0
- package/dist/custom-hooks/index.js +1 -0
- package/dist/custom-hooks/useQuickAccessVisible.d.ts +1 -0
- package/dist/custom-hooks/useQuickAccessVisible.js +22 -0
- package/dist/deck-hooks/index.d.ts +1 -0
- package/dist/deck-hooks/index.js +1 -0
- package/dist/deck-hooks/useParams.d.ts +1 -0
- package/dist/deck-hooks/useParams.js +2 -0
- package/dist/globals/SteamClient.d.ts +307 -0
- package/dist/globals/SteamClient.js +1 -0
- package/dist/globals/index.d.ts +2 -0
- package/dist/globals/index.js +2 -0
- package/dist/globals/stores.d.ts +50 -0
- package/dist/globals/stores.js +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +14 -0
- package/dist/logger.d.ts +17 -0
- package/dist/logger.js +46 -0
- package/dist/modules/Router.d.ts +110 -0
- package/dist/modules/Router.js +102 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/index.js +1 -0
- package/dist/utils/index.d.ts +12 -0
- package/dist/utils/index.js +23 -0
- package/dist/utils/patcher.d.ts +18 -0
- package/dist/utils/patcher.js +103 -0
- package/dist/utils/react.d.ts +19 -0
- package/dist/utils/react.js +89 -0
- package/dist/utils/static-classes.d.ts +52 -0
- package/dist/utils/static-classes.js +28 -0
- package/dist/webpack.d.ts +21 -0
- package/dist/webpack.js +102 -0
- package/package.json +89 -0
- package/src/class-mapper.ts +34 -0
- package/src/components/Button.ts +8 -0
- package/src/components/ButtonItem.ts +16 -0
- package/src/components/Carousel.ts +25 -0
- package/src/components/ControlsList.ts +14 -0
- package/src/components/Dialog.ts +90 -0
- package/src/components/DialogCheckbox.ts +36 -0
- package/src/components/Dropdown.ts +51 -0
- package/src/components/Field.ts +29 -0
- package/src/components/FocusRing.ts +15 -0
- package/src/components/Focusable.ts +21 -0
- package/src/components/FooterLegend.ts +67 -0
- package/src/components/Item.ts +13 -0
- package/src/components/Marquee.ts +20 -0
- package/src/components/Menu.ts +58 -0
- package/src/components/Modal.ts +119 -0
- package/src/components/Panel.ts +26 -0
- package/src/components/ProgressBar.ts +37 -0
- package/src/components/Scroll.ts +15 -0
- package/src/components/SidebarNavigation.ts +30 -0
- package/src/components/SliderField.ts +33 -0
- package/src/components/Spinner.ts +8 -0
- package/src/components/SteamSpinner.ts +7 -0
- package/src/components/Tabs.tsx +127 -0
- package/src/components/TextField.ts +28 -0
- package/src/components/Toggle.ts +14 -0
- package/src/components/ToggleField.ts +15 -0
- package/src/components/index.ts +25 -0
- package/src/custom-components/ColorPickerModal.tsx +132 -0
- package/src/custom-components/ReorderableList.tsx +183 -0
- package/src/custom-components/SuspensefulImage.tsx +44 -0
- package/src/custom-components/index.ts +3 -0
- package/src/custom-hooks/index.ts +1 -0
- package/src/custom-hooks/useQuickAccessVisible.ts +63 -0
- package/src/deck-hooks/index.ts +1 -0
- package/src/deck-hooks/useParams.ts +15 -0
- package/src/globals/SteamClient.ts +321 -0
- package/src/globals/index.ts +2 -0
- package/src/globals/stores.ts +50 -0
- package/src/index.ts +20 -0
- package/src/logger.ts +77 -0
- package/src/modules/Router.ts +174 -0
- package/src/modules/index.ts +1 -0
- package/src/utils/index.ts +43 -0
- package/src/utils/patcher.ts +160 -0
- package/src/utils/react.ts +141 -0
- package/src/utils/static-classes.ts +1104 -0
- package/src/webpack.ts +136 -0
|
@@ -0,0 +1,1104 @@
|
|
|
1
|
+
import { findClassModule } from '../class-mapper';
|
|
2
|
+
|
|
3
|
+
type QuickAccessMenuClasses = Record<
|
|
4
|
+
| 'ActiveTab'
|
|
5
|
+
| 'AllTabContents'
|
|
6
|
+
| 'BackgroundAnimation'
|
|
7
|
+
| 'BatteryDetailsLabels'
|
|
8
|
+
| 'BatteryIcon'
|
|
9
|
+
| 'BatteryPercentageLabel'
|
|
10
|
+
| 'BatteryProjectedLabel'
|
|
11
|
+
| 'BatteryProjectedValue'
|
|
12
|
+
| 'BatterySectionContainer'
|
|
13
|
+
| 'Blocked'
|
|
14
|
+
| 'ComingSoon'
|
|
15
|
+
| 'Container'
|
|
16
|
+
| 'ContentTransition'
|
|
17
|
+
| 'Down'
|
|
18
|
+
| 'EmptyNotifications'
|
|
19
|
+
| 'Enter'
|
|
20
|
+
| 'EnterActive'
|
|
21
|
+
| 'Exit'
|
|
22
|
+
| 'ExitActive'
|
|
23
|
+
| 'FooterBoxShadow'
|
|
24
|
+
| 'FriendsListTabPanel'
|
|
25
|
+
| 'FriendsTitle'
|
|
26
|
+
| 'FullHeight'
|
|
27
|
+
| 'HeaderAndFooterVisible'
|
|
28
|
+
| 'HeaderContainer'
|
|
29
|
+
| 'ItemFocusAnim-darkGrey'
|
|
30
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
31
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
32
|
+
| 'ItemFocusAnim-green'
|
|
33
|
+
| 'ItemFocusAnim-grey'
|
|
34
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
35
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
36
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
37
|
+
| 'KeyboardButton'
|
|
38
|
+
| 'Label'
|
|
39
|
+
| 'LowBattery'
|
|
40
|
+
| 'LowBatteryGauge'
|
|
41
|
+
| 'Menu'
|
|
42
|
+
| 'Open'
|
|
43
|
+
| 'PanelExitAnchor'
|
|
44
|
+
| 'PanelOuterNav'
|
|
45
|
+
| 'PanelSection'
|
|
46
|
+
| 'PanelSectionRow'
|
|
47
|
+
| 'PanelSectionTitle'
|
|
48
|
+
| 'PopupBody'
|
|
49
|
+
| 'QuickAccessMenu'
|
|
50
|
+
| 'QuickAccessNotifications'
|
|
51
|
+
| 'ReallyLow'
|
|
52
|
+
| 'Remaining'
|
|
53
|
+
| 'Selected'
|
|
54
|
+
| 'Tab'
|
|
55
|
+
| 'TabContentColumn'
|
|
56
|
+
| 'TabGroupPanel'
|
|
57
|
+
| 'TabPanelHidden'
|
|
58
|
+
| 'Tabs'
|
|
59
|
+
| 'TabsWithFooter'
|
|
60
|
+
| 'Text'
|
|
61
|
+
| 'Title'
|
|
62
|
+
| 'TransitionMenuDelay'
|
|
63
|
+
| 'Up'
|
|
64
|
+
| 'VR'
|
|
65
|
+
| 'ViewPlaceholder'
|
|
66
|
+
| 'VoiceTab'
|
|
67
|
+
| 'duration-app-launch'
|
|
68
|
+
| 'focusAnimation'
|
|
69
|
+
| 'hoverAnimation'
|
|
70
|
+
| 'vrgamepadui-floating-bar-popup-panel-height'
|
|
71
|
+
| 'vrgamepadui-floating-bar-popup-panel-width'
|
|
72
|
+
| 'vrgamepadui-floating-keyboard-height'
|
|
73
|
+
| 'vrgamepadui-floating-keyboard-width'
|
|
74
|
+
| 'vrgamepadui-floating-side-panel-height'
|
|
75
|
+
| 'vrgamepadui-floating-side-panel-width',
|
|
76
|
+
string
|
|
77
|
+
>;
|
|
78
|
+
|
|
79
|
+
type ScrollPanelClasses = Record<'ScrollBoth' | 'ScrollPanel' | 'ScrollX' | 'ScrollY', string>;
|
|
80
|
+
|
|
81
|
+
type GamepadDialogClasses = Record<
|
|
82
|
+
| 'ActiveAndUnfocused'
|
|
83
|
+
| 'AlignCenter'
|
|
84
|
+
| 'AlignLeft'
|
|
85
|
+
| 'AlignRight'
|
|
86
|
+
| 'BackgroundAnimation'
|
|
87
|
+
| 'BasicTextInput'
|
|
88
|
+
| 'BeforeChildren'
|
|
89
|
+
| 'BottomButtons'
|
|
90
|
+
| 'Button'
|
|
91
|
+
| 'ChildrenWidthFixed'
|
|
92
|
+
| 'ChildrenWidthGrow'
|
|
93
|
+
| 'Clickable'
|
|
94
|
+
| 'CompactPadding'
|
|
95
|
+
| 'ControlsListChild'
|
|
96
|
+
| 'ControlsListOuterPanel'
|
|
97
|
+
| 'Disabled'
|
|
98
|
+
| 'DropDownControlButtonContents'
|
|
99
|
+
| 'DropDownRow'
|
|
100
|
+
| 'ExtraPaddingOnChildrenBelow'
|
|
101
|
+
| 'ExtraSpacing'
|
|
102
|
+
| 'Field'
|
|
103
|
+
| 'FieldChildrenInner'
|
|
104
|
+
| 'FieldChildrenWithIcon'
|
|
105
|
+
| 'FieldClickTarget'
|
|
106
|
+
| 'FieldDescription'
|
|
107
|
+
| 'FieldIcon'
|
|
108
|
+
| 'FieldLabel'
|
|
109
|
+
| 'FieldLabelRow'
|
|
110
|
+
| 'FieldLabelValue'
|
|
111
|
+
| 'Front'
|
|
112
|
+
| 'FullWidth'
|
|
113
|
+
| 'GamepadDialogContent'
|
|
114
|
+
| 'GamepadDialogContent_InnerWidth'
|
|
115
|
+
| 'HighlightOnFocus'
|
|
116
|
+
| 'IconContainer'
|
|
117
|
+
| 'InlineWrapShiftsChildrenBelow'
|
|
118
|
+
| 'ItemFocusAnim-darkGrey'
|
|
119
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
120
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
121
|
+
| 'ItemFocusAnim-green'
|
|
122
|
+
| 'ItemFocusAnim-grey'
|
|
123
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
124
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
125
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
126
|
+
| 'ItemMaxSizeDesktop'
|
|
127
|
+
| 'Label'
|
|
128
|
+
| 'LabelFieldValue'
|
|
129
|
+
| 'ModalClickToDismiss'
|
|
130
|
+
| 'ModalPosition'
|
|
131
|
+
| 'NoHeaderPadding'
|
|
132
|
+
| 'NoMinWidth'
|
|
133
|
+
| 'On'
|
|
134
|
+
| 'QuickAccess-Menu'
|
|
135
|
+
| 'ScrollWithin'
|
|
136
|
+
| 'Spacer'
|
|
137
|
+
| 'StandaloneFieldSeparator'
|
|
138
|
+
| 'StandardPadding'
|
|
139
|
+
| 'StandardSpacing'
|
|
140
|
+
| 'Toggle'
|
|
141
|
+
| 'ToggleRail'
|
|
142
|
+
| 'ToggleSwitch'
|
|
143
|
+
| 'VR'
|
|
144
|
+
| 'VerticalAlignCenter'
|
|
145
|
+
| 'WithBottomSeparator'
|
|
146
|
+
| 'WithBottomSeparatorStandard'
|
|
147
|
+
| 'WithBottomSeparatorThick'
|
|
148
|
+
| 'WithChildrenBelow'
|
|
149
|
+
| 'WithDescription'
|
|
150
|
+
| 'WithFirstRow'
|
|
151
|
+
| 'WithStandardPadding'
|
|
152
|
+
| 'duration-app-launch'
|
|
153
|
+
| 'focusAnimation'
|
|
154
|
+
| 'hoverAnimation'
|
|
155
|
+
| 'slideInAnimation',
|
|
156
|
+
string
|
|
157
|
+
>;
|
|
158
|
+
|
|
159
|
+
type QuickAccessControlsClasses = Record<
|
|
160
|
+
| 'BackgroundAnimation'
|
|
161
|
+
| 'BatteryDetailsLabels'
|
|
162
|
+
| 'BatteryIcon'
|
|
163
|
+
| 'BatteryPercentageLabel'
|
|
164
|
+
| 'BatteryProjectedLabel'
|
|
165
|
+
| 'BatteryProjectedValue'
|
|
166
|
+
| 'BatterySectionContainer'
|
|
167
|
+
| 'ComingSoon'
|
|
168
|
+
| 'EmptyNotifications'
|
|
169
|
+
| 'ItemFocusAnim-darkGrey'
|
|
170
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
171
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
172
|
+
| 'ItemFocusAnim-green'
|
|
173
|
+
| 'ItemFocusAnim-grey'
|
|
174
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
175
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
176
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
177
|
+
| 'Label'
|
|
178
|
+
| 'LowBattery'
|
|
179
|
+
| 'LowBatteryGauge'
|
|
180
|
+
| 'PanelSection'
|
|
181
|
+
| 'PanelSectionRow'
|
|
182
|
+
| 'PanelSectionTitle'
|
|
183
|
+
| 'QuickAccessNotifications'
|
|
184
|
+
| 'ReallyLow'
|
|
185
|
+
| 'Remaining'
|
|
186
|
+
| 'Text'
|
|
187
|
+
| 'VR'
|
|
188
|
+
| 'duration-app-launch'
|
|
189
|
+
| 'focusAnimation'
|
|
190
|
+
| 'hoverAnimation',
|
|
191
|
+
string
|
|
192
|
+
>;
|
|
193
|
+
|
|
194
|
+
type UpdaterFieldClasses = Record<
|
|
195
|
+
| 'ApplyingText'
|
|
196
|
+
| 'BackgroundAnimation'
|
|
197
|
+
| 'BatteryLowWarning'
|
|
198
|
+
| 'Body'
|
|
199
|
+
| 'CurrentStatus'
|
|
200
|
+
| 'Denominator'
|
|
201
|
+
| 'EventDetailTitle'
|
|
202
|
+
| 'EventDetailsBody'
|
|
203
|
+
| 'EventDetailsSubTitle'
|
|
204
|
+
| 'InsufficientBatteryText'
|
|
205
|
+
| 'ItemFocusAnim-darkGrey'
|
|
206
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
207
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
208
|
+
| 'ItemFocusAnim-green'
|
|
209
|
+
| 'ItemFocusAnim-grey'
|
|
210
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
211
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
212
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
213
|
+
| 'Label'
|
|
214
|
+
| 'Numerator'
|
|
215
|
+
| 'OOBEUpdateStatusContainer'
|
|
216
|
+
| 'PatchNotes'
|
|
217
|
+
| 'PostedTime'
|
|
218
|
+
| 'ProgressInfoContainer'
|
|
219
|
+
| 'ProgressStatus'
|
|
220
|
+
| 'Separator'
|
|
221
|
+
| 'Text'
|
|
222
|
+
| 'TextContainer'
|
|
223
|
+
| 'TimeRemaining'
|
|
224
|
+
| 'Title'
|
|
225
|
+
| 'TotalUpdateSize'
|
|
226
|
+
| 'UnsupportedHardwareWarning'
|
|
227
|
+
| 'UpdateBytesRemaining'
|
|
228
|
+
| 'UpdatePanel'
|
|
229
|
+
| 'UpdateScreen'
|
|
230
|
+
| 'UpdateStatusContainer'
|
|
231
|
+
| 'UpdaterFieldStatusApplying'
|
|
232
|
+
| 'UpdaterFieldStatusSuccess'
|
|
233
|
+
| 'duration-app-launch'
|
|
234
|
+
| 'fadeInAnimation'
|
|
235
|
+
| 'focusAnimation'
|
|
236
|
+
| 'hoverAnimation',
|
|
237
|
+
string
|
|
238
|
+
>;
|
|
239
|
+
|
|
240
|
+
type PlaySectionClasses = Record<
|
|
241
|
+
| 'AchievementCountLabel'
|
|
242
|
+
| 'AchievementProgressRow'
|
|
243
|
+
| 'AchievementSVG'
|
|
244
|
+
| 'ActionSection'
|
|
245
|
+
| 'AppButtonsContainer'
|
|
246
|
+
| 'Arrow'
|
|
247
|
+
| 'AvatarAndPersona'
|
|
248
|
+
| 'BackgroundAnimation'
|
|
249
|
+
| 'BreakNarrow'
|
|
250
|
+
| 'BreakShort'
|
|
251
|
+
| 'BreakTall'
|
|
252
|
+
| 'BreakUltraWide'
|
|
253
|
+
| 'BreakWide'
|
|
254
|
+
| 'ButtonChild'
|
|
255
|
+
| 'ButtonText'
|
|
256
|
+
| 'ChooseButton'
|
|
257
|
+
| 'ClaimButton'
|
|
258
|
+
| 'ClaimButtonContainer'
|
|
259
|
+
| 'ClickablePlayBarItem'
|
|
260
|
+
| 'CloudIconSVG'
|
|
261
|
+
| 'CloudStatusIcon'
|
|
262
|
+
| 'CloudStatusLabel'
|
|
263
|
+
| 'CloudStatusRow'
|
|
264
|
+
| 'CloudStatusSyncFail'
|
|
265
|
+
| 'CloudSyncProblem'
|
|
266
|
+
| 'CloudSynching'
|
|
267
|
+
| 'ComingSoon'
|
|
268
|
+
| 'Container'
|
|
269
|
+
| 'ControllerConfigButton'
|
|
270
|
+
| 'ControllerSupportInfo'
|
|
271
|
+
| 'ControllerSupportRow'
|
|
272
|
+
| 'DetailsProgressBar'
|
|
273
|
+
| 'DetailsProgressContainer'
|
|
274
|
+
| 'DetailsSection'
|
|
275
|
+
| 'DetailsSectionExtra'
|
|
276
|
+
| 'DetailsSectionStatus'
|
|
277
|
+
| 'Disabled'
|
|
278
|
+
| 'DotDotDot'
|
|
279
|
+
| 'DownloadPaused'
|
|
280
|
+
| 'DownloadProgressBar'
|
|
281
|
+
| 'Downloading'
|
|
282
|
+
| 'FavoriteButton'
|
|
283
|
+
| 'Favorited'
|
|
284
|
+
| 'FeatureHidden'
|
|
285
|
+
| 'GameInfoButton'
|
|
286
|
+
| 'GameStat'
|
|
287
|
+
| 'GameStatIcon'
|
|
288
|
+
| 'GameStatIconForced'
|
|
289
|
+
| 'GameStatRight'
|
|
290
|
+
| 'GameStatsSection'
|
|
291
|
+
| 'GamepadUIBreakNarrow'
|
|
292
|
+
| 'GamepadUIBreakShort'
|
|
293
|
+
| 'GamepadUIBreakWide'
|
|
294
|
+
| 'Glassy'
|
|
295
|
+
| 'HideWhenNarrow'
|
|
296
|
+
| 'Icon'
|
|
297
|
+
| 'Icons'
|
|
298
|
+
| 'InPage'
|
|
299
|
+
| 'InnerContainer'
|
|
300
|
+
| 'InvalidPlatform'
|
|
301
|
+
| 'ItemFocusAnim-darkGrey'
|
|
302
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
303
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
304
|
+
| 'ItemFocusAnim-green'
|
|
305
|
+
| 'ItemFocusAnim-grey'
|
|
306
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
307
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
308
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
309
|
+
| 'LastPlayed'
|
|
310
|
+
| 'LastPlayedInfo'
|
|
311
|
+
| 'LaunchOptionCallout'
|
|
312
|
+
| 'LaunchOptionCalloutMessage'
|
|
313
|
+
| 'LaunchOptionCalloutMessageContainer'
|
|
314
|
+
| 'LongButton'
|
|
315
|
+
| 'MenuActive'
|
|
316
|
+
| 'MenuButton'
|
|
317
|
+
| 'MenuButtonContainer'
|
|
318
|
+
| 'MiniAchievements'
|
|
319
|
+
| 'OfflineMode'
|
|
320
|
+
| 'OnlyDownloadBar'
|
|
321
|
+
| 'PermanentlyUnavailable'
|
|
322
|
+
| 'PlayBar'
|
|
323
|
+
| 'PlayBarCloudStatusContainer'
|
|
324
|
+
| 'PlayBarDetailLabel'
|
|
325
|
+
| 'PlayBarGameIcon'
|
|
326
|
+
| 'PlayBarGameName'
|
|
327
|
+
| 'PlayBarIconAndGame'
|
|
328
|
+
| 'PlayBarLabel'
|
|
329
|
+
| 'Playtime'
|
|
330
|
+
| 'PlaytimeIcon'
|
|
331
|
+
| 'PlaytimeIconForced'
|
|
332
|
+
| 'PortraitBar'
|
|
333
|
+
| 'PrivateAppActiveIndicator'
|
|
334
|
+
| 'RecentlyUpdated'
|
|
335
|
+
| 'RecentlyUpdatedIcon'
|
|
336
|
+
| 'RecentlyUpdatedLink'
|
|
337
|
+
| 'RecentlyUpdatedText'
|
|
338
|
+
| 'RightBreakNarrow'
|
|
339
|
+
| 'RightBreakUltraNarrow'
|
|
340
|
+
| 'RightBreakUltraWide'
|
|
341
|
+
| 'RightBreakWide'
|
|
342
|
+
| 'RightControls'
|
|
343
|
+
| 'Row'
|
|
344
|
+
| 'SharedLibrary'
|
|
345
|
+
| 'ShowStreaming'
|
|
346
|
+
| 'StatusAndStats'
|
|
347
|
+
| 'StatusNameContainer'
|
|
348
|
+
| 'StickyHeader'
|
|
349
|
+
| 'StickyHeaderShadow'
|
|
350
|
+
| 'SuperimposedGridItems'
|
|
351
|
+
| 'SyncAnim'
|
|
352
|
+
| 'Visible'
|
|
353
|
+
| 'duration-app-launch'
|
|
354
|
+
| 'favorited'
|
|
355
|
+
| 'focusAnimation'
|
|
356
|
+
| 'hoverAnimation',
|
|
357
|
+
string
|
|
358
|
+
>;
|
|
359
|
+
|
|
360
|
+
type GamepadSliderClasses = Record<
|
|
361
|
+
| 'AlignToEnds'
|
|
362
|
+
| 'AlignToLeft'
|
|
363
|
+
| 'AlignToRight'
|
|
364
|
+
| 'BackgroundAnimation'
|
|
365
|
+
| 'CompoundSlider'
|
|
366
|
+
| 'CompoundSliderSubSlider'
|
|
367
|
+
| 'CompoundSliderSubSliderLabel'
|
|
368
|
+
| 'CompoundSliderSubSliderLabelContainer'
|
|
369
|
+
| 'CompoundSliderSubSliderLabelInternal'
|
|
370
|
+
| 'CompoundSliderSubSliderLabelPositioner'
|
|
371
|
+
| 'DefaultValueColorLeft'
|
|
372
|
+
| 'DefaultValueColorRight'
|
|
373
|
+
| 'DefaultValueIsColorRange'
|
|
374
|
+
| 'DefaultValueTick'
|
|
375
|
+
| 'DefaultValueTickContainer'
|
|
376
|
+
| 'DescriptionValue'
|
|
377
|
+
| 'Disabled'
|
|
378
|
+
| 'EditableValue'
|
|
379
|
+
| 'ErrorShake'
|
|
380
|
+
| 'FakeEditableValue'
|
|
381
|
+
| 'Icon'
|
|
382
|
+
| 'ItemFocusAnim-darkGrey'
|
|
383
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
384
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
385
|
+
| 'ItemFocusAnim-green'
|
|
386
|
+
| 'ItemFocusAnim-grey'
|
|
387
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
388
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
389
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
390
|
+
| 'LabelText'
|
|
391
|
+
| 'Left'
|
|
392
|
+
| 'ParenSliderHandle'
|
|
393
|
+
| 'ParenSliderHandleContainer'
|
|
394
|
+
| 'RedBorder'
|
|
395
|
+
| 'Right'
|
|
396
|
+
| 'SliderControl'
|
|
397
|
+
| 'SliderControlAndNotches'
|
|
398
|
+
| 'SliderControlPanelGroup'
|
|
399
|
+
| 'SliderHandle'
|
|
400
|
+
| 'SliderHandleContainer'
|
|
401
|
+
| 'SliderHandleFocusPop'
|
|
402
|
+
| 'SliderHasNotches'
|
|
403
|
+
| 'SliderNotch'
|
|
404
|
+
| 'SliderNotchContainer'
|
|
405
|
+
| 'SliderNotchLabel'
|
|
406
|
+
| 'SliderNotchTick'
|
|
407
|
+
| 'SliderTrack'
|
|
408
|
+
| 'SliderTrackDark'
|
|
409
|
+
| 'TickActive'
|
|
410
|
+
| 'VerticalLineSliderHandle'
|
|
411
|
+
| 'VerticalLineSliderHandleContainer'
|
|
412
|
+
| 'WithDefaultValue'
|
|
413
|
+
| 'duration-app-launch'
|
|
414
|
+
| 'error-shake'
|
|
415
|
+
| 'error-shake-duration',
|
|
416
|
+
string
|
|
417
|
+
>;
|
|
418
|
+
|
|
419
|
+
type AppDetailsHeaderClasses = Record<
|
|
420
|
+
| 'AddBoxSizer'
|
|
421
|
+
| 'Background'
|
|
422
|
+
| 'Bottom'
|
|
423
|
+
| 'BottomCenter'
|
|
424
|
+
| 'BottomLeft'
|
|
425
|
+
| 'BottomRight'
|
|
426
|
+
| 'BoxSizer'
|
|
427
|
+
| 'BoxSizerButtonContainer'
|
|
428
|
+
| 'BoxSizerContainer'
|
|
429
|
+
| 'BoxSizerDelete'
|
|
430
|
+
| 'BoxSizerDragBox'
|
|
431
|
+
| 'BoxSizerEdge'
|
|
432
|
+
| 'BoxSizerGridBox'
|
|
433
|
+
| 'BoxSizerInfo'
|
|
434
|
+
| 'BoxSizerSettings'
|
|
435
|
+
| 'BoxSizerValidRegion'
|
|
436
|
+
| 'CenterCenter'
|
|
437
|
+
| 'DialogButton'
|
|
438
|
+
| 'EdgeDown'
|
|
439
|
+
| 'FallbackArt'
|
|
440
|
+
| 'Features'
|
|
441
|
+
| 'FullscreenEnterActive'
|
|
442
|
+
| 'FullscreenEnterDone'
|
|
443
|
+
| 'FullscreenEnterStart'
|
|
444
|
+
| 'FullscreenExitActive'
|
|
445
|
+
| 'FullscreenExitDone'
|
|
446
|
+
| 'FullscreenExitStart'
|
|
447
|
+
| 'HeaderBackgroundImage'
|
|
448
|
+
| 'ImgBlur'
|
|
449
|
+
| 'ImgBlurBackdrop'
|
|
450
|
+
| 'ImgContainer'
|
|
451
|
+
| 'ImgSrc'
|
|
452
|
+
| 'Left'
|
|
453
|
+
| 'Loaded'
|
|
454
|
+
| 'Middle'
|
|
455
|
+
| 'NoArt'
|
|
456
|
+
| 'PinBox'
|
|
457
|
+
| 'Right'
|
|
458
|
+
| 'SVGTitle'
|
|
459
|
+
| 'SaveBoxSizer'
|
|
460
|
+
| 'TextNameSpace'
|
|
461
|
+
| 'TitleImageContainer'
|
|
462
|
+
| 'TitleLogo'
|
|
463
|
+
| 'TitleSection'
|
|
464
|
+
| 'Top'
|
|
465
|
+
| 'TopCapsule'
|
|
466
|
+
| 'TopGradient'
|
|
467
|
+
| 'TopLeft'
|
|
468
|
+
| 'TopRight'
|
|
469
|
+
| 'UpperCenter'
|
|
470
|
+
| 'UpperLeft'
|
|
471
|
+
| 'duration-app-launch',
|
|
472
|
+
string
|
|
473
|
+
>;
|
|
474
|
+
|
|
475
|
+
type AppDetailsClasses = Record<
|
|
476
|
+
| 'AppDetailsOverviewPanel'
|
|
477
|
+
| 'BackgroundAnimation'
|
|
478
|
+
| 'BreakNarrow'
|
|
479
|
+
| 'BreakShort'
|
|
480
|
+
| 'BreakTall'
|
|
481
|
+
| 'BreakUltraWide'
|
|
482
|
+
| 'BreakWide'
|
|
483
|
+
| 'Container'
|
|
484
|
+
| 'GamepadUIBreakNarrow'
|
|
485
|
+
| 'GamepadUIBreakShort'
|
|
486
|
+
| 'GamepadUIBreakWide'
|
|
487
|
+
| 'Glassy'
|
|
488
|
+
| 'Header'
|
|
489
|
+
| 'HeaderLoaded'
|
|
490
|
+
| 'InnerContainer'
|
|
491
|
+
| 'ItemFocusAnim-darkGrey'
|
|
492
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
493
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
494
|
+
| 'ItemFocusAnim-green'
|
|
495
|
+
| 'ItemFocusAnim-grey'
|
|
496
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
497
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
498
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
499
|
+
| 'PlayBar'
|
|
500
|
+
| 'PreventScrolling'
|
|
501
|
+
| 'RightBreakNarrow'
|
|
502
|
+
| 'RightBreakUltraNarrow'
|
|
503
|
+
| 'RightBreakUltraWide'
|
|
504
|
+
| 'RightBreakWide'
|
|
505
|
+
| 'ScrollContainer'
|
|
506
|
+
| 'ShowPlayBar'
|
|
507
|
+
| 'Throbber'
|
|
508
|
+
| 'duration-app-launch'
|
|
509
|
+
| 'fadein'
|
|
510
|
+
| 'focusAnimation'
|
|
511
|
+
| 'hoverAnimation',
|
|
512
|
+
string
|
|
513
|
+
>;
|
|
514
|
+
|
|
515
|
+
type GamepadUIClasses = Record<
|
|
516
|
+
| 'BackgroundAnimation'
|
|
517
|
+
| 'BasicHome'
|
|
518
|
+
| 'BasicUiRoot'
|
|
519
|
+
| 'Content'
|
|
520
|
+
| 'ContinuousRenderPixel'
|
|
521
|
+
| 'ContinuousRenderPixelBlink'
|
|
522
|
+
| 'GamepadDialogOverlay'
|
|
523
|
+
| 'GamepadUIPopupWindowBody'
|
|
524
|
+
| 'HeaderHeightVisible'
|
|
525
|
+
| 'ItemFocusAnim-darkGrey'
|
|
526
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
527
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
528
|
+
| 'ItemFocusAnim-green'
|
|
529
|
+
| 'ItemFocusAnim-grey'
|
|
530
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
531
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
532
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
533
|
+
| 'MainNavMenuAnchor'
|
|
534
|
+
| 'MainNavMenuMainSplit'
|
|
535
|
+
| 'OpaqueBackground'
|
|
536
|
+
| 'PopupBody'
|
|
537
|
+
| 'QuickAccessMenuAnchor'
|
|
538
|
+
| 'StandaloneKeyboard'
|
|
539
|
+
| 'SteamUIPopupHTML'
|
|
540
|
+
| 'SteamUIPopupWindow'
|
|
541
|
+
| 'SteamUIPopupWindowBody'
|
|
542
|
+
| 'TransparentBackground'
|
|
543
|
+
| 'TrueBlackBackground'
|
|
544
|
+
| 'VR'
|
|
545
|
+
| 'duration-app-launch'
|
|
546
|
+
| 'focusAnimation'
|
|
547
|
+
| 'hoverAnimation'
|
|
548
|
+
| 'vrgamepadui-floating-bar-popup-panel-height'
|
|
549
|
+
| 'vrgamepadui-floating-bar-popup-panel-width'
|
|
550
|
+
| 'vrgamepadui-floating-keyboard-height'
|
|
551
|
+
| 'vrgamepadui-floating-keyboard-width'
|
|
552
|
+
| 'vrgamepadui-floating-side-panel-height'
|
|
553
|
+
| 'vrgamepadui-floating-side-panel-width',
|
|
554
|
+
string
|
|
555
|
+
>;
|
|
556
|
+
|
|
557
|
+
type GamepadTabbedPageClasses = Record<
|
|
558
|
+
| 'Active'
|
|
559
|
+
| 'AnimateDownwardExpansion'
|
|
560
|
+
| 'Arrows'
|
|
561
|
+
| 'BackgroundAnimation'
|
|
562
|
+
| 'BleedGlyphs'
|
|
563
|
+
| 'CanBeHeaderBackground'
|
|
564
|
+
| 'ContentTransition'
|
|
565
|
+
| 'Enter'
|
|
566
|
+
| 'EnterActive'
|
|
567
|
+
| 'Exit'
|
|
568
|
+
| 'ExitActive'
|
|
569
|
+
| 'ExpandFadeDownwards'
|
|
570
|
+
| 'FixCenterAlignScroll'
|
|
571
|
+
| 'Floating'
|
|
572
|
+
| 'GamepadTabbedPage'
|
|
573
|
+
| 'Glyphs'
|
|
574
|
+
| 'HasAddon'
|
|
575
|
+
| 'IsUnderHeader'
|
|
576
|
+
| 'ItemFocusAnim-darkGrey'
|
|
577
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
578
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
579
|
+
| 'ItemFocusAnim-green'
|
|
580
|
+
| 'ItemFocusAnim-grey'
|
|
581
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
582
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
583
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
584
|
+
| 'Left'
|
|
585
|
+
| 'LeftAddon'
|
|
586
|
+
| 'OverlayPinnedView'
|
|
587
|
+
| 'Right'
|
|
588
|
+
| 'RightAddon'
|
|
589
|
+
| 'ScrolledDown'
|
|
590
|
+
| 'Selected'
|
|
591
|
+
| 'Show'
|
|
592
|
+
| 'SortAndFilterButton'
|
|
593
|
+
| 'SortAndFilterContainer'
|
|
594
|
+
| 'Tab'
|
|
595
|
+
| 'TabBadge'
|
|
596
|
+
| 'TabContents'
|
|
597
|
+
| 'TabContentsScroll'
|
|
598
|
+
| 'TabCount'
|
|
599
|
+
| 'TabCountBadge'
|
|
600
|
+
| 'TabHeaderRowWrapper'
|
|
601
|
+
| 'TabIcon'
|
|
602
|
+
| 'TabRow'
|
|
603
|
+
| 'TabRowSpacer'
|
|
604
|
+
| 'TabRowTabs'
|
|
605
|
+
| 'TabTitle'
|
|
606
|
+
| 'TabsRowScroll'
|
|
607
|
+
| 'contentPadding'
|
|
608
|
+
| 'duration-app-launch'
|
|
609
|
+
| 'headerHeight',
|
|
610
|
+
string
|
|
611
|
+
>;
|
|
612
|
+
|
|
613
|
+
type GamepadContextMenuClasses = Record<
|
|
614
|
+
| 'Arrow'
|
|
615
|
+
| 'BackgroundAnimation'
|
|
616
|
+
| 'BasicContextMenuContainer'
|
|
617
|
+
| 'BasicContextMenuHeader'
|
|
618
|
+
| 'BasicContextMenuHeaderShrinkableSpacing'
|
|
619
|
+
| 'BasicContextMenuModal'
|
|
620
|
+
| 'Capitalized'
|
|
621
|
+
| 'ContextMenuSeparator'
|
|
622
|
+
| 'Destructive'
|
|
623
|
+
| 'Emphasis'
|
|
624
|
+
| 'Focused'
|
|
625
|
+
| 'ItemFocusAnim-darkGrey'
|
|
626
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
627
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
628
|
+
| 'ItemFocusAnim-green'
|
|
629
|
+
| 'ItemFocusAnim-grey'
|
|
630
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
631
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
632
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
633
|
+
| 'Label'
|
|
634
|
+
| 'MenuSectionHeader'
|
|
635
|
+
| 'Positive'
|
|
636
|
+
| 'Selected'
|
|
637
|
+
| 'SubMenu'
|
|
638
|
+
| 'UpperCase'
|
|
639
|
+
| 'active'
|
|
640
|
+
| 'contextMenu'
|
|
641
|
+
| 'contextMenuContents'
|
|
642
|
+
| 'contextMenuFade'
|
|
643
|
+
| 'contextMenuItem'
|
|
644
|
+
| 'duration-app-launch'
|
|
645
|
+
| 'focusAnimation'
|
|
646
|
+
| 'hasSubMenu'
|
|
647
|
+
| 'hoverAnimation'
|
|
648
|
+
| 'slideInAnimation',
|
|
649
|
+
string
|
|
650
|
+
>;
|
|
651
|
+
|
|
652
|
+
type AchievementListClasses = Record<
|
|
653
|
+
| 'AchievementContent'
|
|
654
|
+
| 'AchievementDescription'
|
|
655
|
+
| 'AchievementGlobalPercentage'
|
|
656
|
+
| 'AchievementList'
|
|
657
|
+
| 'AchievementListItemBase'
|
|
658
|
+
| 'AchievementTitle'
|
|
659
|
+
| 'AlignEnd'
|
|
660
|
+
| 'Avatar'
|
|
661
|
+
| 'AvatarContainer'
|
|
662
|
+
| 'ComparisonAchieverColumn'
|
|
663
|
+
| 'ComparisonAchieverInfo'
|
|
664
|
+
| 'Container'
|
|
665
|
+
| 'Content'
|
|
666
|
+
| 'Description'
|
|
667
|
+
| 'Footer'
|
|
668
|
+
| 'FriendAchievementFooter'
|
|
669
|
+
| 'GlobalAchievementListItem'
|
|
670
|
+
| 'GlobalAchievementsListHeader'
|
|
671
|
+
| 'GlobalPercentage'
|
|
672
|
+
| 'HeaderText'
|
|
673
|
+
| 'Hidden'
|
|
674
|
+
| 'HiddenAchievementContent'
|
|
675
|
+
| 'ImageContainer'
|
|
676
|
+
| 'InBody'
|
|
677
|
+
| 'Info'
|
|
678
|
+
| 'ListTitle'
|
|
679
|
+
| 'Percent'
|
|
680
|
+
| 'ProgressBar'
|
|
681
|
+
| 'ProgressContainer'
|
|
682
|
+
| 'ProgressCount'
|
|
683
|
+
| 'ProgressFill'
|
|
684
|
+
| 'ProgressLabel'
|
|
685
|
+
| 'Right'
|
|
686
|
+
| 'SearchField'
|
|
687
|
+
| 'Secondary'
|
|
688
|
+
| 'SpoilerWarning'
|
|
689
|
+
| 'Title'
|
|
690
|
+
| 'Unachieved'
|
|
691
|
+
| 'UnlockContainer'
|
|
692
|
+
| 'UnlockDate'
|
|
693
|
+
| 'UserUnlockDateTime'
|
|
694
|
+
| 'VerticalContent'
|
|
695
|
+
| 'duration-app-launch'
|
|
696
|
+
| 'nAchievementGap'
|
|
697
|
+
| 'nAchievementHeight'
|
|
698
|
+
| 'nAchievementsListTitleHeight'
|
|
699
|
+
| 'nGlobalAchievementHeight',
|
|
700
|
+
string
|
|
701
|
+
>;
|
|
702
|
+
|
|
703
|
+
type AchievementPageClasses = Record<
|
|
704
|
+
| 'AchievementContent'
|
|
705
|
+
| 'AchievementDescription'
|
|
706
|
+
| 'AchievementGlobalPercentage'
|
|
707
|
+
| 'AchievementList'
|
|
708
|
+
| 'AchievementListItemBase'
|
|
709
|
+
| 'AchievementTabs'
|
|
710
|
+
| 'AchievementTitle'
|
|
711
|
+
| 'AlignEnd'
|
|
712
|
+
| 'Avatar'
|
|
713
|
+
| 'AvatarContainer'
|
|
714
|
+
| 'Background'
|
|
715
|
+
| 'Blur'
|
|
716
|
+
| 'CompareButtonContainer'
|
|
717
|
+
| 'ComparisonAchieverColumn'
|
|
718
|
+
| 'ComparisonAchieverInfo'
|
|
719
|
+
| 'Container'
|
|
720
|
+
| 'Content'
|
|
721
|
+
| 'Description'
|
|
722
|
+
| 'DragHandle'
|
|
723
|
+
| 'ErrorButtons'
|
|
724
|
+
| 'ErrorContainer'
|
|
725
|
+
| 'ErrorTitle'
|
|
726
|
+
| 'Footer'
|
|
727
|
+
| 'FriendAchievementFooter'
|
|
728
|
+
| 'FriendAchievementsListHeader'
|
|
729
|
+
| 'GlobalAchievementListItem'
|
|
730
|
+
| 'GlobalAchievementsListHeader'
|
|
731
|
+
| 'GlobalButton'
|
|
732
|
+
| 'GlobalPercentage'
|
|
733
|
+
| 'HeaderContainer'
|
|
734
|
+
| 'HeaderImage'
|
|
735
|
+
| 'HeaderText'
|
|
736
|
+
| 'Hidden'
|
|
737
|
+
| 'HiddenAchievementContent'
|
|
738
|
+
| 'ImageContainer'
|
|
739
|
+
| 'InBody'
|
|
740
|
+
| 'Info'
|
|
741
|
+
| 'Label'
|
|
742
|
+
| 'List'
|
|
743
|
+
| 'ListTitle'
|
|
744
|
+
| 'LoadingContainer'
|
|
745
|
+
| 'MyAchievementsHeader'
|
|
746
|
+
| 'Nav'
|
|
747
|
+
| 'NotOwnedMessage'
|
|
748
|
+
| 'Page'
|
|
749
|
+
| 'Percent'
|
|
750
|
+
| 'PerfectGame'
|
|
751
|
+
| 'PinnedView'
|
|
752
|
+
| 'PinnedViewTabs'
|
|
753
|
+
| 'ProgressBar'
|
|
754
|
+
| 'ProgressContainer'
|
|
755
|
+
| 'ProgressCount'
|
|
756
|
+
| 'ProgressFill'
|
|
757
|
+
| 'ProgressLabel'
|
|
758
|
+
| 'Right'
|
|
759
|
+
| 'SearchField'
|
|
760
|
+
| 'Secondary'
|
|
761
|
+
| 'SortableAchievementsList'
|
|
762
|
+
| 'SortableUserAchievement'
|
|
763
|
+
| 'SortableUserAchievementInner'
|
|
764
|
+
| 'SpoilerWarning'
|
|
765
|
+
| 'Text'
|
|
766
|
+
| 'Throbber'
|
|
767
|
+
| 'Title'
|
|
768
|
+
| 'ToggleContainer'
|
|
769
|
+
| 'Unachieved'
|
|
770
|
+
| 'UnlockContainer'
|
|
771
|
+
| 'UnlockDate'
|
|
772
|
+
| 'UserContext'
|
|
773
|
+
| 'UserUnlockDateTime'
|
|
774
|
+
| 'VerticalContent'
|
|
775
|
+
| 'duration-app-launch'
|
|
776
|
+
| 'headerPadding'
|
|
777
|
+
| 'nAchievementGap'
|
|
778
|
+
| 'nAchievementHeight'
|
|
779
|
+
| 'nAchievementsListTitleHeight'
|
|
780
|
+
| 'nGlobalAchievementHeight',
|
|
781
|
+
string
|
|
782
|
+
>;
|
|
783
|
+
|
|
784
|
+
type MainMenuAppRunningClasses = Record<
|
|
785
|
+
| 'Active'
|
|
786
|
+
| 'ActiveContent'
|
|
787
|
+
| 'ActiveDot'
|
|
788
|
+
| 'AppColumn'
|
|
789
|
+
| 'AppColumnContent'
|
|
790
|
+
| 'AppRunningControls'
|
|
791
|
+
| 'BackgroundAnimation'
|
|
792
|
+
| 'Collapsible'
|
|
793
|
+
| 'Container'
|
|
794
|
+
| 'ControllerColumnFocused'
|
|
795
|
+
| 'CurrentGameBackground'
|
|
796
|
+
| 'CurrentGameLogo'
|
|
797
|
+
| 'Disabled'
|
|
798
|
+
| 'FocusedColumn'
|
|
799
|
+
| 'HideMask'
|
|
800
|
+
| 'ItemFocusAnim-darkGrey'
|
|
801
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
802
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
803
|
+
| 'ItemFocusAnim-green'
|
|
804
|
+
| 'ItemFocusAnim-grey'
|
|
805
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
806
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
807
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
808
|
+
| 'KeyBoardVisible'
|
|
809
|
+
| 'NavColumnFocused'
|
|
810
|
+
| 'NavigationBox'
|
|
811
|
+
| 'NavigationColumn'
|
|
812
|
+
| 'NavigationMenuItem'
|
|
813
|
+
| 'NavigationMenuItemSeparator'
|
|
814
|
+
| 'OverlayAchievements'
|
|
815
|
+
| 'OverlayGuides'
|
|
816
|
+
| 'OverlayInplaceBrowser'
|
|
817
|
+
| 'OverlayNotes'
|
|
818
|
+
| 'ScrollMask'
|
|
819
|
+
| 'SelectableAppWindow'
|
|
820
|
+
| 'SwitchAppsTitle'
|
|
821
|
+
| 'Visible'
|
|
822
|
+
| 'duration-app-launch'
|
|
823
|
+
| 'focusAnimation'
|
|
824
|
+
| 'hoverAnimation',
|
|
825
|
+
string
|
|
826
|
+
>;
|
|
827
|
+
|
|
828
|
+
type BasicAppDetailsSectionStylerClasses = Record<
|
|
829
|
+
| 'ActionButtonAndStatusPanel'
|
|
830
|
+
| 'ActionRow'
|
|
831
|
+
| 'AppActionButton'
|
|
832
|
+
| 'AppButtons'
|
|
833
|
+
| 'AppDetailSectionList'
|
|
834
|
+
| 'AppDetailsContainer'
|
|
835
|
+
| 'AppDetailsContent'
|
|
836
|
+
| 'AppDetailsRoot'
|
|
837
|
+
| 'CollectionsHeader'
|
|
838
|
+
| 'DeckVerifiedFeedbackButton'
|
|
839
|
+
| 'DeckVerifiedFeedbackConfirmation'
|
|
840
|
+
| 'DeckVerifiedFeedbackConfirmationContainer'
|
|
841
|
+
| 'DeckVerifiedFeedbackContainer'
|
|
842
|
+
| 'DeckVerifiedFeedbackQuestion'
|
|
843
|
+
| 'GameInfoCollections'
|
|
844
|
+
| 'GameInfoContainer'
|
|
845
|
+
| 'GameInfoQuickLinks'
|
|
846
|
+
| 'Header'
|
|
847
|
+
| 'InvertFocusedIcon'
|
|
848
|
+
| 'PlaySection'
|
|
849
|
+
| 'duration-app-launch'
|
|
850
|
+
| 'headerPadding',
|
|
851
|
+
string
|
|
852
|
+
>;
|
|
853
|
+
|
|
854
|
+
type SteamSpinnerClasses = Record<
|
|
855
|
+
| 'BackgroundAnimation'
|
|
856
|
+
| 'Black'
|
|
857
|
+
| 'Container'
|
|
858
|
+
| 'ContainerBackground'
|
|
859
|
+
| 'ExtraSpace'
|
|
860
|
+
| 'ItemFocusAnim-darkGrey'
|
|
861
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
862
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
863
|
+
| 'ItemFocusAnim-green'
|
|
864
|
+
| 'ItemFocusAnim-grey'
|
|
865
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
866
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
867
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
868
|
+
| 'LoadingStatus'
|
|
869
|
+
| 'Medium'
|
|
870
|
+
| 'Small'
|
|
871
|
+
| 'Spacer'
|
|
872
|
+
| 'SpinnerLoaderContainer'
|
|
873
|
+
| 'focusAnimation'
|
|
874
|
+
| 'hoverAnimation',
|
|
875
|
+
string
|
|
876
|
+
>;
|
|
877
|
+
|
|
878
|
+
type FooterClasses = Record<
|
|
879
|
+
| 'BackgroundAnimation'
|
|
880
|
+
| 'BasicFooter'
|
|
881
|
+
| 'FooterLegend'
|
|
882
|
+
| 'ItemFocusAnim-darkGrey'
|
|
883
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
884
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
885
|
+
| 'ItemFocusAnim-green'
|
|
886
|
+
| 'ItemFocusAnim-grey'
|
|
887
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
888
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
889
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
890
|
+
| 'Opaque'
|
|
891
|
+
| 'PillShapedIcon'
|
|
892
|
+
| 'QuickAccessFooter'
|
|
893
|
+
| 'Relative'
|
|
894
|
+
| 'Spacer'
|
|
895
|
+
| 'WithKeyboard'
|
|
896
|
+
| 'duration-app-launch'
|
|
897
|
+
| 'focusAnimation'
|
|
898
|
+
| 'hoverAnimation',
|
|
899
|
+
string
|
|
900
|
+
>;
|
|
901
|
+
|
|
902
|
+
type AppActionButtonClasses = Record<
|
|
903
|
+
| 'BackgroundAnimation'
|
|
904
|
+
| 'BreakNarrow'
|
|
905
|
+
| 'BreakShort'
|
|
906
|
+
| 'BreakTall'
|
|
907
|
+
| 'BreakUltraWide'
|
|
908
|
+
| 'BreakWide'
|
|
909
|
+
| 'ButtonChild'
|
|
910
|
+
| 'ButtonText'
|
|
911
|
+
| 'ButtonThrobberPadding'
|
|
912
|
+
| 'Disabled'
|
|
913
|
+
| 'ForceShutdownButton'
|
|
914
|
+
| 'GamepadUIBreakNarrow'
|
|
915
|
+
| 'GamepadUIBreakShort'
|
|
916
|
+
| 'GamepadUIBreakWide'
|
|
917
|
+
| 'Green'
|
|
918
|
+
| 'ItemFocusAnim-darkGrey'
|
|
919
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
920
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
921
|
+
| 'ItemFocusAnim-green'
|
|
922
|
+
| 'ItemFocusAnim-grey'
|
|
923
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
924
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
925
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
926
|
+
| 'LongButton'
|
|
927
|
+
| 'NoAction'
|
|
928
|
+
| 'PlayButton'
|
|
929
|
+
| 'PlayButtonContainer'
|
|
930
|
+
| 'RightBreakNarrow'
|
|
931
|
+
| 'RightBreakUltraNarrow'
|
|
932
|
+
| 'RightBreakUltraWide'
|
|
933
|
+
| 'RightBreakWide'
|
|
934
|
+
| 'ShowStreaming'
|
|
935
|
+
| 'ShowingStreaming'
|
|
936
|
+
| 'ShutdownAppButton'
|
|
937
|
+
| 'StreamingCallout'
|
|
938
|
+
| 'StreamingCalloutMessage'
|
|
939
|
+
| 'StreamingCalloutMessageContainer'
|
|
940
|
+
| 'StreamingContextMenuItem'
|
|
941
|
+
| 'StreamingSelector'
|
|
942
|
+
| 'Throbber'
|
|
943
|
+
| 'ThrobberContainer'
|
|
944
|
+
| 'WaitingForForceShutdown'
|
|
945
|
+
| 'WaitingForShutdownSpinner'
|
|
946
|
+
| 'duration-app-launch'
|
|
947
|
+
| 'focusAnimation'
|
|
948
|
+
| 'hoverAnimation'
|
|
949
|
+
| 'rotate',
|
|
950
|
+
string
|
|
951
|
+
>;
|
|
952
|
+
|
|
953
|
+
type LibraryAssetImageClasses = Record<
|
|
954
|
+
| 'Container'
|
|
955
|
+
| 'GreyBackground'
|
|
956
|
+
| 'Hidden'
|
|
957
|
+
| 'Image'
|
|
958
|
+
| 'LandscapeImage'
|
|
959
|
+
| 'LongTitles'
|
|
960
|
+
| 'NoTransitions'
|
|
961
|
+
| 'PortraitImage'
|
|
962
|
+
| 'Short'
|
|
963
|
+
| 'Title'
|
|
964
|
+
| 'Visibility'
|
|
965
|
+
| 'Visible'
|
|
966
|
+
| 'duration-app-launch',
|
|
967
|
+
string
|
|
968
|
+
>;
|
|
969
|
+
|
|
970
|
+
type GamepadLibraryClasses = Record<
|
|
971
|
+
| 'AppGridFilterHeader'
|
|
972
|
+
| 'AppGridFilterHeaderAsButton'
|
|
973
|
+
| 'AppGridFilterText'
|
|
974
|
+
| 'BackgroundAnimation'
|
|
975
|
+
| 'BreakNarrow'
|
|
976
|
+
| 'BreakShort'
|
|
977
|
+
| 'BreakTall'
|
|
978
|
+
| 'BreakUltraWide'
|
|
979
|
+
| 'BreakWide'
|
|
980
|
+
| 'CollectionContents'
|
|
981
|
+
| 'CollectionHeader'
|
|
982
|
+
| 'ComingSoon'
|
|
983
|
+
| 'GamepadLibrary'
|
|
984
|
+
| 'GamepadUIBreakNarrow'
|
|
985
|
+
| 'GamepadUIBreakShort'
|
|
986
|
+
| 'GamepadUIBreakWide'
|
|
987
|
+
| 'ItemFocusAnim-darkGrey'
|
|
988
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
989
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
990
|
+
| 'ItemFocusAnim-green'
|
|
991
|
+
| 'ItemFocusAnim-grey'
|
|
992
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
993
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
994
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
995
|
+
| 'RightBreakNarrow'
|
|
996
|
+
| 'RightBreakUltraNarrow'
|
|
997
|
+
| 'RightBreakUltraWide'
|
|
998
|
+
| 'RightBreakWide'
|
|
999
|
+
| 'duration-app-launch'
|
|
1000
|
+
| 'focusAnimation'
|
|
1001
|
+
| 'hoverAnimation',
|
|
1002
|
+
string
|
|
1003
|
+
>;
|
|
1004
|
+
|
|
1005
|
+
type FocusRingClasses = Record<
|
|
1006
|
+
| 'DebugFocusRing'
|
|
1007
|
+
| 'FocusRing'
|
|
1008
|
+
| 'FocusRingOnHiddenItem'
|
|
1009
|
+
| 'FocusRingRoot'
|
|
1010
|
+
| 'blinker'
|
|
1011
|
+
| 'fadeOutline'
|
|
1012
|
+
| 'flash'
|
|
1013
|
+
| 'growOutline',
|
|
1014
|
+
string
|
|
1015
|
+
>;
|
|
1016
|
+
|
|
1017
|
+
type SearchBarClasses = Record<
|
|
1018
|
+
| 'BackgroundAnimation'
|
|
1019
|
+
| 'ForceExpanded'
|
|
1020
|
+
| 'IconMovesOnHover'
|
|
1021
|
+
| 'ItemFocusAnim-darkGrey'
|
|
1022
|
+
| 'ItemFocusAnim-darkerGrey'
|
|
1023
|
+
| 'ItemFocusAnim-darkerGrey-nocolor'
|
|
1024
|
+
| 'ItemFocusAnim-green'
|
|
1025
|
+
| 'ItemFocusAnim-grey'
|
|
1026
|
+
| 'ItemFocusAnim-translucent-white-10'
|
|
1027
|
+
| 'ItemFocusAnim-translucent-white-20'
|
|
1028
|
+
| 'ItemFocusAnimBorder-darkGrey'
|
|
1029
|
+
| 'SearchAndTitleContainer'
|
|
1030
|
+
| 'SearchBox'
|
|
1031
|
+
| 'SearchFieldBackground'
|
|
1032
|
+
| 'SearchIconLeft'
|
|
1033
|
+
| 'SearchIconRight'
|
|
1034
|
+
| 'ShowingSearch'
|
|
1035
|
+
| 'ShowingTitle'
|
|
1036
|
+
| 'VR'
|
|
1037
|
+
| 'Visible'
|
|
1038
|
+
| 'WhiteBackground'
|
|
1039
|
+
| 'duration-app-launch',
|
|
1040
|
+
string
|
|
1041
|
+
>;
|
|
1042
|
+
|
|
1043
|
+
type MainBrowserClasses = Record<
|
|
1044
|
+
| 'Browser'
|
|
1045
|
+
| 'BrowserContainer'
|
|
1046
|
+
| 'BrowserNavRoot'
|
|
1047
|
+
| 'Disabled'
|
|
1048
|
+
| 'ExternalBrowserContainer'
|
|
1049
|
+
| 'InputSupportLevel'
|
|
1050
|
+
| 'MainBrowser'
|
|
1051
|
+
| 'MainBrowserContainer'
|
|
1052
|
+
| 'MicroTxnContainer'
|
|
1053
|
+
| 'NavigationButton'
|
|
1054
|
+
| 'RequireTouchscreenLabel'
|
|
1055
|
+
| 'StatusIcon'
|
|
1056
|
+
| 'Toggled'
|
|
1057
|
+
| 'URL'
|
|
1058
|
+
| 'URLBar'
|
|
1059
|
+
| 'URLInput'
|
|
1060
|
+
| 'Visible'
|
|
1061
|
+
| 'duration-app-launch'
|
|
1062
|
+
| 'showSupportLevel',
|
|
1063
|
+
string
|
|
1064
|
+
>;
|
|
1065
|
+
|
|
1066
|
+
export const quickAccessMenuClasses = findClassModule((m) => m.Title && m.QuickAccessMenu && m.BatteryDetailsLabels) as QuickAccessMenuClasses;
|
|
1067
|
+
export const scrollPanelClasses = findClassModule((m) => m.ScrollPanel) as ScrollPanelClasses;
|
|
1068
|
+
export const gamepadDialogClasses = findClassModule((m) => m.GamepadDialogContent && !m.BindingButtons) as GamepadDialogClasses;
|
|
1069
|
+
export const quickAccessControlsClasses = findClassModule((m) => m.BatteryPercentageLabel && m.PanelSection && !m['vr-dashboard-bar-height'] && !m.QuickAccessMenu && !m.QuickAccess && !m.PerfProfileInfo) as QuickAccessControlsClasses;
|
|
1070
|
+
export const updaterFieldClasses = findClassModule((m) => m.OOBEUpdateStatusContainer) as UpdaterFieldClasses;
|
|
1071
|
+
export const playSectionClasses = findClassModule((m) => m.PlayBarDetailLabel) as PlaySectionClasses;
|
|
1072
|
+
export const gamepadSliderClasses = findClassModule((m) => m.SliderControlPanelGroup) as GamepadSliderClasses;
|
|
1073
|
+
export const appDetailsHeaderClasses = findClassModule((m) => m.TopCapsule) as AppDetailsHeaderClasses;
|
|
1074
|
+
export const appDetailsClasses = findClassModule((m) => m.HeaderLoaded) as AppDetailsClasses;
|
|
1075
|
+
export const gamepadUIClasses = findClassModule((m) => m.BasicUiRoot) as GamepadUIClasses;
|
|
1076
|
+
export const gamepadTabbedPageClasses = findClassModule((m) => m.GamepadTabbedPage) as GamepadTabbedPageClasses;
|
|
1077
|
+
export const gamepadContextMenuClasses = findClassModule((m) => m.BasicContextMenuModal) as GamepadContextMenuClasses;
|
|
1078
|
+
export const achievementListClasses = findClassModule((m) => m.AchievementListItemBase && !m.Page) as AchievementListClasses;
|
|
1079
|
+
export const achievementPageClasses = findClassModule((m) => m.AchievementListItemBase && m.Page) as AchievementPageClasses;
|
|
1080
|
+
export const mainMenuAppRunningClasses = findClassModule((m) => m.AppRunningControls && m.OverlayAchievements) as MainMenuAppRunningClasses;
|
|
1081
|
+
export const basicAppDetailsSectionStylerClasses = findClassModule((m) => m.AppDetailsRoot) as BasicAppDetailsSectionStylerClasses;
|
|
1082
|
+
export const steamSpinnerClasses = findClassModule(m => m.SpinnerLoaderContainer) as SteamSpinnerClasses;
|
|
1083
|
+
export const footerClasses = findClassModule(m => m.QuickAccessFooter) as FooterClasses;
|
|
1084
|
+
export const appActionButtonClasses = findClassModule(m => m.PlayButtonContainer) as AppActionButtonClasses;
|
|
1085
|
+
export const libraryAssetImageClasses = findClassModule(m => m.LongTitles && m.GreyBackground) as LibraryAssetImageClasses;
|
|
1086
|
+
export const gamepadLibraryClasses = findClassModule(m => m.GamepadLibrary) as GamepadLibraryClasses;
|
|
1087
|
+
export const focusRingClasses = findClassModule(m => m.FocusRingRoot) as FocusRingClasses;
|
|
1088
|
+
export const searchBarClasses = findClassModule(m => m.SearchAndTitleContainer) as SearchBarClasses;
|
|
1089
|
+
export const mainBrowserClasses = findClassModule(m => m.MainBrowserContainer) as MainBrowserClasses;
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
* @deprecated please use quickAccessMenuClasses instead
|
|
1093
|
+
*/
|
|
1094
|
+
export const staticClasses = quickAccessMenuClasses;
|
|
1095
|
+
|
|
1096
|
+
/**
|
|
1097
|
+
* @deprecated please use scrollPanelClasses instead
|
|
1098
|
+
*/
|
|
1099
|
+
export const scrollClasses = scrollPanelClasses;
|
|
1100
|
+
|
|
1101
|
+
/**
|
|
1102
|
+
* @deprecated please use achievementListClasses instead
|
|
1103
|
+
*/
|
|
1104
|
+
export const achievementClasses = achievementListClasses;
|