@verdaccio/ui-theme 6.0.0-6-next.12 → 6.0.0-6-next.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +1 -1
- package/.eslintrc +0 -15
- package/CHANGELOG.md +6 -0
- package/jest/setup-env.ts +4 -1
- package/jest/unit/components/__mocks__/token.ts +0 -1
- package/jest/unit/components/store/login.ts +1 -0
- package/package.json +34 -37
- package/src/App/App.test.tsx +4 -6
- package/src/App/App.tsx +3 -5
- package/src/App/AppRoute.tsx +1 -1
- package/src/App/Footer/Footer.test.tsx +0 -1
- package/src/App/Footer/Footer.tsx +3 -3
- package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +25 -9
- package/src/App/Footer/styles.ts +2 -3
- package/src/App/Header/Header.test.tsx +3 -5
- package/src/App/Header/Header.tsx +3 -5
- package/src/App/Header/HeaderGreetings.tsx +0 -1
- package/src/App/Header/HeaderLeft.tsx +0 -1
- package/src/App/Header/HeaderMenu.tsx +3 -3
- package/src/App/Header/HeaderRight.tsx +1 -2
- package/src/App/Header/HeaderToolTip.tsx +0 -1
- package/src/App/Header/HeaderToolTipIcon.tsx +10 -10
- package/src/App/Header/LanguageSwitch.tsx +4 -5
- package/src/App/Header/LoginDialog/LoginDialog.test.tsx +4 -7
- package/src/App/Header/LoginDialog/LoginDialog.tsx +2 -4
- package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +1 -2
- package/src/App/Header/LoginDialog/LoginDialogForm.tsx +0 -1
- package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +1 -2
- package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +4 -4
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +1 -2
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +9 -10
- package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +1 -2
- package/src/App/Header/RegistryInfoDialog/styles.ts +0 -1
- package/src/App/Header/Search/Search.test.tsx +32 -41
- package/src/App/Header/Search/Search.tsx +15 -58
- package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +392 -28
- package/src/App/Header/styles.ts +2 -3
- package/src/App/utils/loadable.tsx +2 -1
- package/src/components/ActionBar/ActionBar.test.tsx +5 -13
- package/src/components/ActionBar/ActionBar.tsx +0 -2
- package/src/components/ActionBar/ActionBarAction.tsx +6 -7
- package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +198 -53
- package/src/components/AppBar.tsx +1 -1
- package/src/components/Author/Author.test.tsx +1 -3
- package/src/components/Author/Author.tsx +2 -4
- package/src/components/Author/__snapshots__/Author.test.tsx.snap +804 -48
- package/src/components/Author/styles.ts +0 -1
- package/src/components/AutoComplete/AutoComplete.tsx +85 -163
- package/src/components/AutoComplete/AutoCompleteV2.tsx +7 -9
- package/src/components/AutoComplete/styles.tsx +0 -15
- package/src/components/Avatar.tsx +1 -1
- package/src/components/Box.tsx +1 -1
- package/src/components/Button.tsx +1 -1
- package/src/components/Card.tsx +1 -1
- package/src/components/CardActions.tsx +1 -1
- package/src/components/CardContent.tsx +1 -1
- package/src/components/Chip.tsx +1 -1
- package/src/components/CircularProgress.tsx +2 -2
- package/src/components/CopyToClipBoard.tsx +2 -3
- package/src/components/Dialog.tsx +1 -1
- package/src/components/DialogActions.tsx +2 -2
- package/src/components/DialogContent.tsx +2 -2
- package/src/components/DialogTitle.tsx +1 -1
- package/src/components/Divider.tsx +1 -1
- package/src/components/FloatingActionButton.tsx +1 -1
- package/src/components/FormControl.tsx +1 -1
- package/src/components/FormHelperText.tsx +2 -2
- package/src/components/Grid.tsx +1 -1
- package/src/components/Heading.tsx +1 -1
- package/src/components/IconButton.tsx +1 -1
- package/src/components/Input.tsx +1 -1
- package/src/components/InputAdornment/InputAdornment.tsx +2 -2
- package/src/components/InputLabel.tsx +1 -1
- package/src/components/Label/Label.test.tsx +0 -1
- package/src/components/Label/Label.tsx +1 -2
- package/src/components/List.tsx +1 -1
- package/src/components/ListItem.tsx +1 -1
- package/src/components/ListItemText.tsx +1 -4
- package/src/components/Loading/Loading.test.tsx +0 -1
- package/src/components/Loading/Loading.tsx +1 -2
- package/src/components/Loading/Spinner/Spinner.test.tsx +1 -2
- package/src/components/Loading/Spinner/Spinner.tsx +1 -2
- package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +114 -16
- package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +63 -11
- package/src/components/Loading/styles.ts +1 -2
- package/src/components/Logo/Logo.test.tsx +0 -1
- package/src/components/Logo/Logo.tsx +1 -2
- package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +2 -0
- package/src/components/Menu.tsx +1 -1
- package/src/components/MenuItem.tsx +1 -1
- package/src/components/NotFound/NotFound.tsx +1 -3
- package/src/components/NotFound/Notfound.test.tsx +1 -2
- package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +138 -11
- package/src/components/NotFound/styles.ts +0 -1
- package/src/components/Paper.tsx +1 -1
- package/src/components/SnackbarContent.tsx +1 -1
- package/src/components/SvgIcon.tsx +1 -1
- package/src/components/Tab.tsx +1 -1
- package/src/components/Tabs.tsx +1 -1
- package/src/components/Text/Text.tsx +1 -1
- package/src/components/Text/TextConfig.ts +1 -1
- package/src/components/TextField/TextField.test.tsx +0 -1
- package/src/components/TextField/TextField.tsx +2 -2
- package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +216 -3
- package/src/components/Toolbar.tsx +1 -1
- package/src/components/Tooltip.tsx +1 -1
- package/src/design-tokens/ResetStyles.tsx +1 -1
- package/src/design-tokens/StyleBaseline.tsx +2 -2
- package/src/design-tokens/ThemeProvider.tsx +15 -12
- package/src/design-tokens/theme.ts +28 -26
- package/src/design-tokens/useTheme.ts +1 -1
- package/src/{design-tokens → hooks}/useLocalStorage.ts +0 -0
- package/src/{design-tokens → hooks}/useOnClickOutside.ts +0 -0
- package/src/i18n/__mocks__/loadTranslationFile.ts +5 -0
- package/src/i18n/config.ts +1 -15
- package/src/i18n/download_translations/es-ES/ui.json +17 -17
- package/src/i18n/download_translations/it-IT/ui.json +77 -77
- package/src/i18n/download_translations/tr-TR/ui.json +6 -6
- package/src/i18n/download_translations/vi-VN/ui.json +2 -2
- package/src/i18n/loadTranslationFile.ts +14 -0
- package/src/index.tsx +2 -1
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +0 -2
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +1 -3
- package/src/pages/Version/DetailContainer/Dependencies/styles.ts +0 -1
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +1 -3
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +2 -3
- package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainer.tsx +1 -3
- package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +10 -1
- package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +1 -2
- package/src/pages/Version/DetailContainer/Readme/Readme.tsx +1 -2
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +1 -3
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +1 -3
- package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +184 -26
- package/src/pages/Version/DetailContainer/UpLinks/styles.ts +2 -3
- package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +2 -4
- package/src/pages/Version/DetailContainer/Versions/Versions.tsx +1 -2
- package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +2 -4
- package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +1 -3
- package/src/pages/Version/DetailContainer/Versions/styles.ts +2 -3
- package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +168 -34
- package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +0 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +0 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +1 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +3 -5
- package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +3 -5
- package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +328 -40
- package/src/pages/Version/DetailSidebar/Developers/styles.ts +0 -1
- package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +1436 -74
- package/src/pages/Version/DetailSidebar/Dist/styles.ts +2 -1
- package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Engines/styles.ts +0 -1
- package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Install/Install.tsx +0 -2
- package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +1 -3
- package/src/pages/Version/Version.test.tsx +1 -3
- package/src/pages/Version/Version.tsx +1 -3
- package/src/pages/Version/VersionContextProvider.tsx +0 -1
- package/src/pages/Version/VersionLayout.tsx +1 -1
- package/src/pages/Version/context.ts +1 -1
- package/src/pages/home/Home.tsx +0 -2
- package/src/pages/home/PackageList/Help/Help.test.tsx +0 -1
- package/src/pages/home/PackageList/Help/Help.tsx +0 -1
- package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +295 -56
- package/src/pages/home/PackageList/Help/styles.ts +0 -1
- package/src/pages/home/PackageList/Package/Package.test.tsx +1 -3
- package/src/pages/home/PackageList/Package/Package.tsx +14 -19
- package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +0 -1
- package/src/pages/home/PackageList/Package/styles.ts +5 -6
- package/src/pages/home/PackageList/PackageList.tsx +0 -1
- package/src/pages/home/PackageList/Packagelist.test.tsx +1 -3
- package/src/providers/API/api.ts +1 -1
- package/src/providers/config/AppConfigurationProvider.tsx +3 -3
- package/src/store/models/configuration.ts +2 -3
- package/src/store/models/download.ts +1 -2
- package/src/store/models/index.ts +1 -0
- package/src/store/models/login.ts +4 -2
- package/src/store/models/manifest.ts +2 -2
- package/src/store/models/packages.ts +2 -2
- package/src/store/models/search.ts +5 -5
- package/src/store/store.ts +2 -2
- package/src/utils/login.test.ts +2 -3
- package/src/utils/package.test.ts +2 -3
- package/src/utils/package.ts +2 -1
- package/src/utils/sec-utils.ts +1 -1
- package/src/utils/test-react-testing-library.tsx +11 -7
- package/src/utils/url.test.ts +1 -1
- package/src/utils/url.ts +1 -0
- package/static/Dependencies.15768a14646212b71166.js +2 -0
- package/static/Dependencies.15768a14646212b71166.js.LICENSE.txt +78 -0
- package/static/Dist.15768a14646212b71166.js +2 -0
- package/static/Dist.15768a14646212b71166.js.LICENSE.txt +60 -0
- package/static/Engines.15768a14646212b71166.js +2 -0
- package/static/Engines.15768a14646212b71166.js.LICENSE.txt +66 -0
- package/static/Home.15768a14646212b71166.js +2 -0
- package/static/Home.15768a14646212b71166.js.LICENSE.txt +222 -0
- package/static/Install.15768a14646212b71166.js +2 -0
- package/static/Install.15768a14646212b71166.js.LICENSE.txt +66 -0
- package/static/NotFound.15768a14646212b71166.js +2 -0
- package/static/NotFound.15768a14646212b71166.js.LICENSE.txt +40 -0
- package/static/Provider.15768a14646212b71166.js +2 -0
- package/static/Provider.15768a14646212b71166.js.LICENSE.txt +32 -0
- package/static/Repository.15768a14646212b71166.js +2 -0
- package/static/Repository.15768a14646212b71166.js.LICENSE.txt +50 -0
- package/static/UpLinks.15768a14646212b71166.js +2 -0
- package/static/UpLinks.15768a14646212b71166.js.LICENSE.txt +56 -0
- package/static/Version.15768a14646212b71166.js +2 -0
- package/static/Version.15768a14646212b71166.js.LICENSE.txt +380 -0
- package/static/Versions.15768a14646212b71166.js +2 -0
- package/static/Versions.15768a14646212b71166.js.LICENSE.txt +64 -0
- package/static/index.html +1 -1
- package/static/main.15768a14646212b71166.js +2 -0
- package/static/{main.87dd0a7ff6e306a24166.js.LICENSE.txt → main.15768a14646212b71166.js.LICENSE.txt} +63 -663
- package/static/manifest.json +17 -3
- package/static/runtime.15768a14646212b71166.js +2 -0
- package/static/{runtime.87dd0a7ff6e306a24166.js.LICENSE.txt → runtime.15768a14646212b71166.js.LICENSE.txt} +2 -2
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js.LICENSE.txt +148 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js.LICENSE.txt +218 -0
- package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js.LICENSE.txt +316 -0
- package/static/vendors.15768a14646212b71166.js +103 -0
- package/static/{vendors.87dd0a7ff6e306a24166.js.LICENSE.txt → vendors.15768a14646212b71166.js.LICENSE.txt} +1261 -1035
- package/tools/dev.server.js +0 -1
- package/tools/webpack.dev.config.babel.js +1 -3
- package/tsconfig.json +0 -2
- package/types/index.ts +1 -0
- package/src/App/Header/Search/SearchAdornment.tsx +0 -18
- package/src/design-tokens/emotion.ts +0 -5
- package/src/lib/constants.ts +0 -9
- package/static/main.87dd0a7ff6e306a24166.js +0 -2
- package/static/runtime.87dd0a7ff6e306a24166.js +0 -2
- package/static/vendors.87dd0a7ff6e306a24166.js +0 -2
package/static/{main.87dd0a7ff6e306a24166.js.LICENSE.txt → main.15768a14646212b71166.js.LICENSE.txt}
RENAMED
|
@@ -1,34 +1,22 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
3
|
* Name: main
|
|
4
|
-
* Generated on:
|
|
4
|
+
* Generated on: 1639591616140
|
|
5
5
|
* Package: @verdaccio/ui-theme
|
|
6
|
-
* Version: v6.0.0-6-next.
|
|
6
|
+
* Version: v6.0.0-6-next.13
|
|
7
7
|
* License: MIT
|
|
8
8
|
* https://www.verdaccio.org
|
|
9
9
|
*
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
|
-
/*! .. */
|
|
13
|
-
|
|
14
|
-
/*! ../.. */
|
|
15
|
-
|
|
16
|
-
/*! ../../../../../lib/constants */
|
|
17
|
-
|
|
18
|
-
/*! ../../../App/utils/loadable */
|
|
19
|
-
|
|
20
12
|
/*! ../../../types */
|
|
21
13
|
|
|
22
14
|
/*! ../../CircularProgress */
|
|
23
15
|
|
|
24
|
-
/*! ../../
|
|
16
|
+
/*! ../../hooks/useOnClickOutside */
|
|
25
17
|
|
|
26
18
|
/*! ../../i18n/enabledLanguages */
|
|
27
19
|
|
|
28
|
-
/*! ../../lib/constants */
|
|
29
|
-
|
|
30
|
-
/*! ../../pages/Version */
|
|
31
|
-
|
|
32
20
|
/*! ../../providers/API/api */
|
|
33
21
|
|
|
34
22
|
/*! ../../types */
|
|
@@ -37,43 +25,19 @@
|
|
|
37
25
|
|
|
38
26
|
/*! ../../utils/url */
|
|
39
27
|
|
|
40
|
-
/*! ../Box */
|
|
41
|
-
|
|
42
|
-
/*! ../Button */
|
|
43
|
-
|
|
44
|
-
/*! ../FloatingActionButton */
|
|
45
|
-
|
|
46
|
-
/*! ../Heading */
|
|
47
|
-
|
|
48
28
|
/*! ../IconButton */
|
|
49
29
|
|
|
50
|
-
/*! ../Install/img/npm.svg */
|
|
51
|
-
|
|
52
|
-
/*! ../Link */
|
|
53
|
-
|
|
54
|
-
/*! ../List */
|
|
55
|
-
|
|
56
|
-
/*! ../ListItem */
|
|
57
|
-
|
|
58
|
-
/*! ../ListItemText */
|
|
59
|
-
|
|
60
30
|
/*! ../Logo */
|
|
61
31
|
|
|
62
32
|
/*! ../MenuItem */
|
|
63
33
|
|
|
64
|
-
/*! ../NoItems */
|
|
65
|
-
|
|
66
34
|
/*! ../Paper */
|
|
67
35
|
|
|
68
36
|
/*! ../SvgIcon */
|
|
69
37
|
|
|
70
|
-
/*! ../Text */
|
|
71
|
-
|
|
72
38
|
/*! ../TextField */
|
|
73
39
|
|
|
74
|
-
/*! ../
|
|
75
|
-
|
|
76
|
-
/*! ../context */
|
|
40
|
+
/*! ../hooks/useLocalStorage */
|
|
77
41
|
|
|
78
42
|
/*! ../i18n/config */
|
|
79
43
|
|
|
@@ -83,50 +47,16 @@
|
|
|
83
47
|
|
|
84
48
|
/*! ../pages/home */
|
|
85
49
|
|
|
86
|
-
/*! ./ActionBar */
|
|
87
|
-
|
|
88
|
-
/*! ./ActionBarAction */
|
|
89
|
-
|
|
90
50
|
/*! ./App */
|
|
91
51
|
|
|
92
52
|
/*! ./AppConfigurationProvider */
|
|
93
53
|
|
|
94
54
|
/*! ./AppRoute */
|
|
95
55
|
|
|
96
|
-
/*! ./Author */
|
|
97
|
-
|
|
98
56
|
/*! ./AutoComplete */
|
|
99
57
|
|
|
100
|
-
/*! ./Dependencies */
|
|
101
|
-
|
|
102
|
-
/*! ./Deprecated */
|
|
103
|
-
|
|
104
|
-
/*! ./DetailContainer */
|
|
105
|
-
|
|
106
|
-
/*! ./DetailContainerContent */
|
|
107
|
-
|
|
108
|
-
/*! ./DetailContainerContentReadme */
|
|
109
|
-
|
|
110
|
-
/*! ./DetailContainerTabs */
|
|
111
|
-
|
|
112
|
-
/*! ./DetailSidebar */
|
|
113
|
-
|
|
114
|
-
/*! ./DetailSidebarFundButton */
|
|
115
|
-
|
|
116
|
-
/*! ./DetailSidebarTitle */
|
|
117
|
-
|
|
118
|
-
/*! ./Developers */
|
|
119
|
-
|
|
120
|
-
/*! ./Developers/DevelopersTitle */
|
|
121
|
-
|
|
122
|
-
/*! ./DevelopersTitle */
|
|
123
|
-
|
|
124
|
-
/*! ./Dist */
|
|
125
|
-
|
|
126
58
|
/*! ./Earth */
|
|
127
59
|
|
|
128
|
-
/*! ./Engines */
|
|
129
|
-
|
|
130
60
|
/*! ./FileBinary */
|
|
131
61
|
|
|
132
62
|
/*! ./Footer */
|
|
@@ -147,18 +77,8 @@
|
|
|
147
77
|
|
|
148
78
|
/*! ./HeaderToolTipIcon */
|
|
149
79
|
|
|
150
|
-
/*! ./Help */
|
|
151
|
-
|
|
152
|
-
/*! ./Home */
|
|
153
|
-
|
|
154
80
|
/*! ./IconButton */
|
|
155
81
|
|
|
156
|
-
/*! ./InputAdornment */
|
|
157
|
-
|
|
158
|
-
/*! ./Install */
|
|
159
|
-
|
|
160
|
-
/*! ./InstallListItem */
|
|
161
|
-
|
|
162
82
|
/*! ./Label */
|
|
163
83
|
|
|
164
84
|
/*! ./LanguageSwitch */
|
|
@@ -179,32 +99,16 @@
|
|
|
179
99
|
|
|
180
100
|
/*! ./Logo */
|
|
181
101
|
|
|
182
|
-
/*! ./NoItems */
|
|
183
|
-
|
|
184
|
-
/*! ./NotFound */
|
|
185
|
-
|
|
186
|
-
/*! ./Package */
|
|
187
|
-
|
|
188
|
-
/*! ./PackageList */
|
|
189
|
-
|
|
190
|
-
/*! ./Readme */
|
|
191
|
-
|
|
192
102
|
/*! ./RegistryInfoContent */
|
|
193
103
|
|
|
194
104
|
/*! ./RegistryInfoDialog */
|
|
195
105
|
|
|
196
|
-
/*! ./Repository */
|
|
197
|
-
|
|
198
106
|
/*! ./ResetStyles */
|
|
199
107
|
|
|
200
108
|
/*! ./Search */
|
|
201
109
|
|
|
202
|
-
/*! ./SearchAdornment */
|
|
203
|
-
|
|
204
110
|
/*! ./Spinner */
|
|
205
111
|
|
|
206
|
-
/*! ./Tag */
|
|
207
|
-
|
|
208
112
|
/*! ./Text */
|
|
209
113
|
|
|
210
114
|
/*! ./TextConfig */
|
|
@@ -217,22 +121,10 @@
|
|
|
217
121
|
|
|
218
122
|
/*! ./Tooltip */
|
|
219
123
|
|
|
220
|
-
/*! ./UpLinks */
|
|
221
|
-
|
|
222
124
|
/*! ./Version */
|
|
223
125
|
|
|
224
|
-
/*! ./VersionLayout */
|
|
225
|
-
|
|
226
|
-
/*! ./Versions */
|
|
227
|
-
|
|
228
|
-
/*! ./VersionsHistoryList */
|
|
229
|
-
|
|
230
|
-
/*! ./VersionsTagList */
|
|
231
|
-
|
|
232
126
|
/*! ./configuration */
|
|
233
127
|
|
|
234
|
-
/*! ./context */
|
|
235
|
-
|
|
236
128
|
/*! ./crowdin/ui.json */
|
|
237
129
|
|
|
238
130
|
/*! ./design-tokens/StyleBaseline */
|
|
@@ -243,28 +135,14 @@
|
|
|
243
135
|
|
|
244
136
|
/*! ./enabledLanguages */
|
|
245
137
|
|
|
246
|
-
/*! ./get-route-package-name */
|
|
247
|
-
|
|
248
|
-
/*! ./get-unique-developer-values */
|
|
249
|
-
|
|
250
|
-
/*! ./img/git.png */
|
|
251
|
-
|
|
252
138
|
/*! ./img/logo-black-and-white.svg */
|
|
253
139
|
|
|
254
140
|
/*! ./img/logo.svg */
|
|
255
141
|
|
|
256
|
-
/*! ./img/node.png */
|
|
257
|
-
|
|
258
|
-
/*! ./img/npm.svg */
|
|
259
|
-
|
|
260
|
-
/*! ./img/package.svg */
|
|
261
|
-
|
|
262
|
-
/*! ./img/pnpm.svg */
|
|
263
|
-
|
|
264
|
-
/*! ./img/yarn.svg */
|
|
265
|
-
|
|
266
142
|
/*! ./load-dayjs-locale */
|
|
267
143
|
|
|
144
|
+
/*! ./loadTranslationFile */
|
|
145
|
+
|
|
268
146
|
/*! ./login */
|
|
269
147
|
|
|
270
148
|
/*! ./manifest */
|
|
@@ -285,12 +163,8 @@
|
|
|
285
163
|
|
|
286
164
|
/*! ./useAutoComplete */
|
|
287
165
|
|
|
288
|
-
/*! ./useLocalStorage */
|
|
289
|
-
|
|
290
166
|
/*! ./utils/loadable */
|
|
291
167
|
|
|
292
|
-
/*! ./version-config */
|
|
293
|
-
|
|
294
168
|
/*! @babel/runtime/helpers/asyncToGenerator */
|
|
295
169
|
|
|
296
170
|
/*! @babel/runtime/helpers/classCallCheck */
|
|
@@ -307,136 +181,100 @@
|
|
|
307
181
|
|
|
308
182
|
/*! @babel/runtime/helpers/toConsumableArray */
|
|
309
183
|
|
|
310
|
-
/*! @babel/runtime/helpers/typeof */
|
|
311
|
-
|
|
312
184
|
/*! @babel/runtime/regenerator */
|
|
313
185
|
|
|
314
|
-
/*! @emotion/
|
|
315
|
-
|
|
316
|
-
/*! @emotion/styled-base */
|
|
317
|
-
|
|
318
|
-
/*! @material-ui/core/Accordion */
|
|
186
|
+
/*! @emotion/react */
|
|
319
187
|
|
|
320
|
-
/*! @
|
|
188
|
+
/*! @emotion/styled/base */
|
|
321
189
|
|
|
322
|
-
/*! @material
|
|
190
|
+
/*! @mui/icons-material/AccountCircle */
|
|
323
191
|
|
|
324
|
-
/*! @material
|
|
192
|
+
/*! @mui/icons-material/Close */
|
|
325
193
|
|
|
326
|
-
/*! @material
|
|
194
|
+
/*! @mui/icons-material/Error */
|
|
327
195
|
|
|
328
|
-
/*! @material
|
|
196
|
+
/*! @mui/icons-material/ExpandMore */
|
|
329
197
|
|
|
330
|
-
/*! @material
|
|
198
|
+
/*! @mui/icons-material/FileCopy */
|
|
331
199
|
|
|
332
|
-
/*! @material
|
|
200
|
+
/*! @mui/icons-material/Help */
|
|
333
201
|
|
|
334
|
-
/*! @material
|
|
202
|
+
/*! @mui/icons-material/Info */
|
|
335
203
|
|
|
336
|
-
/*! @material
|
|
204
|
+
/*! @mui/icons-material/Language */
|
|
337
205
|
|
|
338
|
-
/*! @material
|
|
206
|
+
/*! @mui/icons-material/LockOutlined */
|
|
339
207
|
|
|
340
|
-
/*! @material
|
|
208
|
+
/*! @mui/icons-material/NightsStay */
|
|
341
209
|
|
|
342
|
-
/*! @material
|
|
210
|
+
/*! @mui/icons-material/Search */
|
|
343
211
|
|
|
344
|
-
/*! @material
|
|
212
|
+
/*! @mui/icons-material/WbSunny */
|
|
345
213
|
|
|
346
|
-
/*! @material
|
|
214
|
+
/*! @mui/material/Accordion */
|
|
347
215
|
|
|
348
|
-
/*! @material
|
|
216
|
+
/*! @mui/material/AccordionDetails */
|
|
349
217
|
|
|
350
|
-
/*! @material
|
|
218
|
+
/*! @mui/material/AccordionSummary */
|
|
351
219
|
|
|
352
|
-
/*! @material
|
|
220
|
+
/*! @mui/material/AppBar */
|
|
353
221
|
|
|
354
|
-
/*! @material
|
|
222
|
+
/*! @mui/material/Autocomplete */
|
|
355
223
|
|
|
356
|
-
/*! @material
|
|
224
|
+
/*! @mui/material/Avatar */
|
|
357
225
|
|
|
358
|
-
/*! @material
|
|
226
|
+
/*! @mui/material/Box */
|
|
359
227
|
|
|
360
|
-
/*! @material
|
|
228
|
+
/*! @mui/material/Button */
|
|
361
229
|
|
|
362
|
-
/*! @material
|
|
230
|
+
/*! @mui/material/CircularProgress */
|
|
363
231
|
|
|
364
|
-
/*! @material
|
|
232
|
+
/*! @mui/material/CssBaseline */
|
|
365
233
|
|
|
366
|
-
/*! @material
|
|
234
|
+
/*! @mui/material/Dialog */
|
|
367
235
|
|
|
368
|
-
/*! @material
|
|
236
|
+
/*! @mui/material/DialogActions */
|
|
369
237
|
|
|
370
|
-
/*! @material
|
|
238
|
+
/*! @mui/material/DialogContent */
|
|
371
239
|
|
|
372
|
-
/*! @material
|
|
240
|
+
/*! @mui/material/DialogTitle */
|
|
373
241
|
|
|
374
|
-
/*! @material
|
|
242
|
+
/*! @mui/material/IconButton */
|
|
375
243
|
|
|
376
|
-
/*! @material
|
|
244
|
+
/*! @mui/material/InputAdornment */
|
|
377
245
|
|
|
378
|
-
/*! @material
|
|
246
|
+
/*! @mui/material/Link */
|
|
379
247
|
|
|
380
|
-
/*! @material
|
|
248
|
+
/*! @mui/material/Menu */
|
|
381
249
|
|
|
382
|
-
/*! @material
|
|
250
|
+
/*! @mui/material/MenuItem */
|
|
383
251
|
|
|
384
|
-
/*! @material
|
|
252
|
+
/*! @mui/material/Paper */
|
|
385
253
|
|
|
386
|
-
/*! @material
|
|
254
|
+
/*! @mui/material/SnackbarContent */
|
|
387
255
|
|
|
388
|
-
/*! @material
|
|
256
|
+
/*! @mui/material/SvgIcon */
|
|
389
257
|
|
|
390
|
-
/*! @material
|
|
258
|
+
/*! @mui/material/TextField */
|
|
391
259
|
|
|
392
|
-
/*! @material
|
|
260
|
+
/*! @mui/material/Toolbar */
|
|
393
261
|
|
|
394
|
-
/*! @material
|
|
262
|
+
/*! @mui/material/Tooltip */
|
|
395
263
|
|
|
396
|
-
/*! @material
|
|
264
|
+
/*! @mui/material/Typography */
|
|
397
265
|
|
|
398
|
-
/*! @material
|
|
266
|
+
/*! @mui/material/styles */
|
|
399
267
|
|
|
400
|
-
/*! @
|
|
268
|
+
/*! @mui/styles */
|
|
401
269
|
|
|
402
|
-
/*! @
|
|
270
|
+
/*! @mui/styles/makeStyles */
|
|
403
271
|
|
|
404
|
-
/*! @
|
|
405
|
-
|
|
406
|
-
/*! @material-ui/icons/Error */
|
|
407
|
-
|
|
408
|
-
/*! @material-ui/icons/ExpandMore */
|
|
409
|
-
|
|
410
|
-
/*! @material-ui/icons/Favorite */
|
|
411
|
-
|
|
412
|
-
/*! @material-ui/icons/FileCopy */
|
|
413
|
-
|
|
414
|
-
/*! @material-ui/icons/Help */
|
|
415
|
-
|
|
416
|
-
/*! @material-ui/icons/Home */
|
|
417
|
-
|
|
418
|
-
/*! @material-ui/icons/Info */
|
|
419
|
-
|
|
420
|
-
/*! @material-ui/icons/Language */
|
|
421
|
-
|
|
422
|
-
/*! @material-ui/icons/LockOutlined */
|
|
423
|
-
|
|
424
|
-
/*! @material-ui/icons/NightsStay */
|
|
425
|
-
|
|
426
|
-
/*! @material-ui/icons/Search */
|
|
427
|
-
|
|
428
|
-
/*! @material-ui/icons/WbSunny */
|
|
429
|
-
|
|
430
|
-
/*! @material-ui/styles */
|
|
272
|
+
/*! @mui/styles/withStyles */
|
|
431
273
|
|
|
432
274
|
/*! @rematch/core */
|
|
433
275
|
|
|
434
276
|
/*! @rematch/loading */
|
|
435
277
|
|
|
436
|
-
/*! autosuggest-highlight/match */
|
|
437
|
-
|
|
438
|
-
/*! autosuggest-highlight/parse */
|
|
439
|
-
|
|
440
278
|
/*! country-flag-icons/react/3x2 */
|
|
441
279
|
|
|
442
280
|
/*! dayjs */
|
|
@@ -465,17 +303,17 @@
|
|
|
465
303
|
|
|
466
304
|
/*! dayjs/locale/zh-tw */
|
|
467
305
|
|
|
468
|
-
/*!
|
|
306
|
+
/*! history */
|
|
469
307
|
|
|
470
|
-
/*!
|
|
308
|
+
/*! i18next */
|
|
471
309
|
|
|
472
|
-
/*!
|
|
310
|
+
/*! import() | Home */
|
|
473
311
|
|
|
474
|
-
/*!
|
|
312
|
+
/*! import() | NotFound */
|
|
475
313
|
|
|
476
|
-
/*!
|
|
314
|
+
/*! import() | Provider */
|
|
477
315
|
|
|
478
|
-
/*!
|
|
316
|
+
/*! import() | Version */
|
|
479
317
|
|
|
480
318
|
/*! localstorage-memory */
|
|
481
319
|
|
|
@@ -485,14 +323,10 @@
|
|
|
485
323
|
|
|
486
324
|
/*! lodash/isNil */
|
|
487
325
|
|
|
488
|
-
/*! lodash/isString */
|
|
489
|
-
|
|
490
326
|
/*! normalize.css */
|
|
491
327
|
|
|
492
328
|
/*! react */
|
|
493
329
|
|
|
494
|
-
/*! react-autosuggest */
|
|
495
|
-
|
|
496
330
|
/*! react-dom */
|
|
497
331
|
|
|
498
332
|
/*! react-hook-form */
|
|
@@ -507,24 +341,12 @@
|
|
|
507
341
|
|
|
508
342
|
/*! react-router-dom */
|
|
509
343
|
|
|
510
|
-
/*! react-virtualized/dist/commonjs/AutoSizer */
|
|
511
|
-
|
|
512
|
-
/*! react-virtualized/dist/commonjs/CellMeasurer */
|
|
513
|
-
|
|
514
|
-
/*! react-virtualized/dist/commonjs/List */
|
|
515
|
-
|
|
516
|
-
/*! react-virtualized/dist/commonjs/WindowScroller */
|
|
517
|
-
|
|
518
344
|
/*! validator/lib/isEmail */
|
|
519
345
|
|
|
520
346
|
/*! validator/lib/isURL */
|
|
521
347
|
|
|
522
|
-
/*! verdaccio-ui/components/ActionBar */
|
|
523
|
-
|
|
524
348
|
/*! verdaccio-ui/components/AppBar */
|
|
525
349
|
|
|
526
|
-
/*! verdaccio-ui/components/Author */
|
|
527
|
-
|
|
528
350
|
/*! verdaccio-ui/components/AutoComplete */
|
|
529
351
|
|
|
530
352
|
/*! verdaccio-ui/components/AutoComplete/AutoCompleteV2 */
|
|
@@ -535,14 +357,6 @@
|
|
|
535
357
|
|
|
536
358
|
/*! verdaccio-ui/components/Button */
|
|
537
359
|
|
|
538
|
-
/*! verdaccio-ui/components/Card */
|
|
539
|
-
|
|
540
|
-
/*! verdaccio-ui/components/CardActions */
|
|
541
|
-
|
|
542
|
-
/*! verdaccio-ui/components/CardContent */
|
|
543
|
-
|
|
544
|
-
/*! verdaccio-ui/components/Chip */
|
|
545
|
-
|
|
546
360
|
/*! verdaccio-ui/components/CopyToClipBoard */
|
|
547
361
|
|
|
548
362
|
/*! verdaccio-ui/components/Dialog */
|
|
@@ -553,30 +367,16 @@
|
|
|
553
367
|
|
|
554
368
|
/*! verdaccio-ui/components/DialogTitle */
|
|
555
369
|
|
|
556
|
-
/*! verdaccio-ui/components/Divider */
|
|
557
|
-
|
|
558
|
-
/*! verdaccio-ui/components/FloatingActionButton */
|
|
559
|
-
|
|
560
|
-
/*! verdaccio-ui/components/Grid */
|
|
561
|
-
|
|
562
370
|
/*! verdaccio-ui/components/Heading */
|
|
563
371
|
|
|
564
372
|
/*! verdaccio-ui/components/IconButton */
|
|
565
373
|
|
|
566
374
|
/*! verdaccio-ui/components/Icons */
|
|
567
375
|
|
|
568
|
-
/*! verdaccio-ui/components/InputAdornment */
|
|
569
|
-
|
|
570
376
|
/*! verdaccio-ui/components/Label */
|
|
571
377
|
|
|
572
378
|
/*! verdaccio-ui/components/Link */
|
|
573
379
|
|
|
574
|
-
/*! verdaccio-ui/components/List */
|
|
575
|
-
|
|
576
|
-
/*! verdaccio-ui/components/ListItem */
|
|
577
|
-
|
|
578
|
-
/*! verdaccio-ui/components/ListItemText */
|
|
579
|
-
|
|
580
380
|
/*! verdaccio-ui/components/Loading */
|
|
581
381
|
|
|
582
382
|
/*! verdaccio-ui/components/Logo */
|
|
@@ -587,16 +387,8 @@
|
|
|
587
387
|
|
|
588
388
|
/*! verdaccio-ui/components/NotFound */
|
|
589
389
|
|
|
590
|
-
/*! verdaccio-ui/components/Paper */
|
|
591
|
-
|
|
592
390
|
/*! verdaccio-ui/components/SnackbarContent */
|
|
593
391
|
|
|
594
|
-
/*! verdaccio-ui/components/Tab */
|
|
595
|
-
|
|
596
|
-
/*! verdaccio-ui/components/Tabs */
|
|
597
|
-
|
|
598
|
-
/*! verdaccio-ui/components/Text */
|
|
599
|
-
|
|
600
392
|
/*! verdaccio-ui/components/TextField */
|
|
601
393
|
|
|
602
394
|
/*! verdaccio-ui/components/Toolbar */
|
|
@@ -609,8 +401,6 @@
|
|
|
609
401
|
|
|
610
402
|
/*! verdaccio-ui/design-tokens/load-dayjs-locale */
|
|
611
403
|
|
|
612
|
-
/*! verdaccio-ui/design-tokens/useOnClickOutside */
|
|
613
|
-
|
|
614
404
|
/*! verdaccio-ui/providers/config */
|
|
615
405
|
|
|
616
406
|
/*! verdaccio-ui/utils/cli-utils */
|
|
@@ -619,18 +409,8 @@
|
|
|
619
409
|
|
|
620
410
|
/*! verdaccio-ui/utils/constants */
|
|
621
411
|
|
|
622
|
-
/*! verdaccio-ui/utils/file-size */
|
|
623
|
-
|
|
624
|
-
/*! verdaccio-ui/utils/package */
|
|
625
|
-
|
|
626
|
-
/*! verdaccio-ui/utils/sec-utils */
|
|
627
|
-
|
|
628
|
-
/*! verdaccio-ui/utils/url */
|
|
629
|
-
|
|
630
412
|
/*! verdaccio-ui/utils/windows */
|
|
631
413
|
|
|
632
|
-
/*! xss */
|
|
633
|
-
|
|
634
414
|
/*!***********************!*\
|
|
635
415
|
!*** ./src/index.tsx ***!
|
|
636
416
|
\***********************/
|
|
@@ -643,10 +423,6 @@
|
|
|
643
423
|
!*** ./src/App/App.tsx ***!
|
|
644
424
|
\*************************/
|
|
645
425
|
|
|
646
|
-
/*!**************************!*\
|
|
647
|
-
!*** ./lib/constants.ts ***!
|
|
648
|
-
\**************************/
|
|
649
|
-
|
|
650
426
|
/*!**************************!*\
|
|
651
427
|
!*** ./src/App/index.ts ***!
|
|
652
428
|
\**************************/
|
|
@@ -675,14 +451,6 @@
|
|
|
675
451
|
!*** ./src/App/AppRoute.tsx ***!
|
|
676
452
|
\******************************/
|
|
677
453
|
|
|
678
|
-
/*!******************************!*\
|
|
679
|
-
!*** ./src/lib/constants.ts ***!
|
|
680
|
-
\******************************/
|
|
681
|
-
|
|
682
|
-
/*!******************************!*\
|
|
683
|
-
!*** ./src/utils/package.ts ***!
|
|
684
|
-
\******************************/
|
|
685
|
-
|
|
686
454
|
/*!******************************!*\
|
|
687
455
|
!*** ./src/utils/storage.ts ***!
|
|
688
456
|
\******************************/
|
|
@@ -695,10 +463,6 @@
|
|
|
695
463
|
!*** ./src/components/Box.tsx ***!
|
|
696
464
|
\********************************/
|
|
697
465
|
|
|
698
|
-
/*!********************************!*\
|
|
699
|
-
!*** ./src/components/Tab.tsx ***!
|
|
700
|
-
\********************************/
|
|
701
|
-
|
|
702
466
|
/*!********************************!*\
|
|
703
467
|
!*** ./src/utils/cli-utils.ts ***!
|
|
704
468
|
\********************************/
|
|
@@ -707,14 +471,6 @@
|
|
|
707
471
|
!*** ./src/utils/constants.ts ***!
|
|
708
472
|
\********************************/
|
|
709
473
|
|
|
710
|
-
/*!********************************!*\
|
|
711
|
-
!*** ./src/utils/file-size.ts ***!
|
|
712
|
-
\********************************/
|
|
713
|
-
|
|
714
|
-
/*!********************************!*\
|
|
715
|
-
!*** ./src/utils/sec-utils.ts ***!
|
|
716
|
-
\********************************/
|
|
717
|
-
|
|
718
474
|
/*!*********************************!*\
|
|
719
475
|
!*** ./src/App/Footer/index.ts ***!
|
|
720
476
|
\*********************************/
|
|
@@ -723,42 +479,14 @@
|
|
|
723
479
|
!*** ./src/App/Header/index.ts ***!
|
|
724
480
|
\*********************************/
|
|
725
481
|
|
|
726
|
-
/*!*********************************!*\
|
|
727
|
-
!*** ./src/components/Card.tsx ***!
|
|
728
|
-
\*********************************/
|
|
729
|
-
|
|
730
|
-
/*!*********************************!*\
|
|
731
|
-
!*** ./src/components/Chip.tsx ***!
|
|
732
|
-
\*********************************/
|
|
733
|
-
|
|
734
|
-
/*!*********************************!*\
|
|
735
|
-
!*** ./src/components/Grid.tsx ***!
|
|
736
|
-
\*********************************/
|
|
737
|
-
|
|
738
482
|
/*!*********************************!*\
|
|
739
483
|
!*** ./src/components/Link.tsx ***!
|
|
740
484
|
\*********************************/
|
|
741
485
|
|
|
742
|
-
/*!*********************************!*\
|
|
743
|
-
!*** ./src/components/List.tsx ***!
|
|
744
|
-
\*********************************/
|
|
745
|
-
|
|
746
486
|
/*!*********************************!*\
|
|
747
487
|
!*** ./src/components/Menu.tsx ***!
|
|
748
488
|
\*********************************/
|
|
749
489
|
|
|
750
|
-
/*!*********************************!*\
|
|
751
|
-
!*** ./src/components/Tabs.tsx ***!
|
|
752
|
-
\*********************************/
|
|
753
|
-
|
|
754
|
-
/*!*********************************!*\
|
|
755
|
-
!*** ./src/pages/home/Home.tsx ***!
|
|
756
|
-
\*********************************/
|
|
757
|
-
|
|
758
|
-
/*!*********************************!*\
|
|
759
|
-
!*** ./src/pages/home/index.ts ***!
|
|
760
|
-
\*********************************/
|
|
761
|
-
|
|
762
490
|
/*!**********************************!*\
|
|
763
491
|
!*** ./src/App/Footer/styles.ts ***!
|
|
764
492
|
\**********************************/
|
|
@@ -815,10 +543,6 @@
|
|
|
815
543
|
!*** ./src/App/utils/loadable.tsx ***!
|
|
816
544
|
\************************************/
|
|
817
545
|
|
|
818
|
-
/*!************************************!*\
|
|
819
|
-
!*** ./src/components/Divider.tsx ***!
|
|
820
|
-
\************************************/
|
|
821
|
-
|
|
822
546
|
/*!************************************!*\
|
|
823
547
|
!*** ./src/components/Heading.tsx ***!
|
|
824
548
|
\************************************/
|
|
@@ -839,18 +563,10 @@
|
|
|
839
563
|
!*** ./src/design-tokens/theme.ts ***!
|
|
840
564
|
\************************************/
|
|
841
565
|
|
|
842
|
-
/*!************************************!*\
|
|
843
|
-
!*** ./src/pages/Version/index.ts ***!
|
|
844
|
-
\************************************/
|
|
845
|
-
|
|
846
566
|
/*!************************************!*\
|
|
847
567
|
!*** ./src/store/models/search.ts ***!
|
|
848
568
|
\************************************/
|
|
849
569
|
|
|
850
|
-
/*!*************************************!*\
|
|
851
|
-
!*** ./src/components/ListItem.tsx ***!
|
|
852
|
-
\*************************************/
|
|
853
|
-
|
|
854
570
|
/*!*************************************!*\
|
|
855
571
|
!*** ./src/components/MenuItem.tsx ***!
|
|
856
572
|
\*************************************/
|
|
@@ -876,11 +592,11 @@
|
|
|
876
592
|
\**************************************/
|
|
877
593
|
|
|
878
594
|
/*!**************************************!*\
|
|
879
|
-
!*** ./src/
|
|
595
|
+
!*** ./src/hooks/useLocalStorage.ts ***!
|
|
880
596
|
\**************************************/
|
|
881
597
|
|
|
882
598
|
/*!**************************************!*\
|
|
883
|
-
!*** ./src/
|
|
599
|
+
!*** ./src/i18n/enabledLanguages.ts ***!
|
|
884
600
|
\**************************************/
|
|
885
601
|
|
|
886
602
|
/*!**************************************!*\
|
|
@@ -923,10 +639,6 @@
|
|
|
923
639
|
!*** ./src/components/Label/index.ts ***!
|
|
924
640
|
\***************************************/
|
|
925
641
|
|
|
926
|
-
/*!***************************************!*\
|
|
927
|
-
!*** ./src/pages/Version/Version.tsx ***!
|
|
928
|
-
\***************************************/
|
|
929
|
-
|
|
930
642
|
/*!***************************************!*\
|
|
931
643
|
!*** ./src/providers/config/index.ts ***!
|
|
932
644
|
\***************************************/
|
|
@@ -939,18 +651,6 @@
|
|
|
939
651
|
!*** ./src/App/Header/Search/index.ts ***!
|
|
940
652
|
\****************************************/
|
|
941
653
|
|
|
942
|
-
/*!****************************************!*\
|
|
943
|
-
!*** ./src/components/Author/index.ts ***!
|
|
944
|
-
\****************************************/
|
|
945
|
-
|
|
946
|
-
/*!****************************************!*\
|
|
947
|
-
!*** ./src/components/CardActions.tsx ***!
|
|
948
|
-
\****************************************/
|
|
949
|
-
|
|
950
|
-
/*!****************************************!*\
|
|
951
|
-
!*** ./src/components/CardContent.tsx ***!
|
|
952
|
-
\****************************************/
|
|
953
|
-
|
|
954
654
|
/*!****************************************!*\
|
|
955
655
|
!*** ./src/components/DialogTitle.tsx ***!
|
|
956
656
|
\****************************************/
|
|
@@ -963,16 +663,16 @@
|
|
|
963
663
|
!*** ./src/components/Label/Label.tsx ***!
|
|
964
664
|
\****************************************/
|
|
965
665
|
|
|
966
|
-
|
|
967
|
-
!*** ./src/
|
|
968
|
-
|
|
666
|
+
/*!****************************************!*\
|
|
667
|
+
!*** ./src/hooks/useOnClickOutside.ts ***!
|
|
668
|
+
\****************************************/
|
|
969
669
|
|
|
970
670
|
/*!*****************************************!*\
|
|
971
|
-
!*** ./src/components/
|
|
671
|
+
!*** ./src/components/Loading/index.ts ***!
|
|
972
672
|
\*****************************************/
|
|
973
673
|
|
|
974
674
|
/*!*****************************************!*\
|
|
975
|
-
!*** ./src/
|
|
675
|
+
!*** ./src/i18n/loadTranslationFile.ts ***!
|
|
976
676
|
\*****************************************/
|
|
977
677
|
|
|
978
678
|
/*!******************************************!*\
|
|
@@ -983,10 +683,6 @@
|
|
|
983
683
|
!*** ./src/App/Header/Search/Search.tsx ***!
|
|
984
684
|
\******************************************/
|
|
985
685
|
|
|
986
|
-
/*!******************************************!*\
|
|
987
|
-
!*** ./src/components/Author/Author.tsx ***!
|
|
988
|
-
\******************************************/
|
|
989
|
-
|
|
990
686
|
/*!******************************************!*\
|
|
991
687
|
!*** ./src/components/DialogActions.tsx ***!
|
|
992
688
|
\******************************************/
|
|
@@ -1007,18 +703,10 @@
|
|
|
1007
703
|
!*** ./src/components/Logo/img/logo.svg ***!
|
|
1008
704
|
\******************************************/
|
|
1009
705
|
|
|
1010
|
-
/*!******************************************!*\
|
|
1011
|
-
!*** ./src/components/NotFound/index.ts ***!
|
|
1012
|
-
\******************************************/
|
|
1013
|
-
|
|
1014
706
|
/*!*******************************************!*\
|
|
1015
707
|
!*** ./src/App/Header/LanguageSwitch.tsx ***!
|
|
1016
708
|
\*******************************************/
|
|
1017
709
|
|
|
1018
|
-
/*!*******************************************!*\
|
|
1019
|
-
!*** ./src/components/ActionBar/index.ts ***!
|
|
1020
|
-
\*******************************************/
|
|
1021
|
-
|
|
1022
710
|
/*!*******************************************!*\
|
|
1023
711
|
!*** ./src/components/Text/TextConfig.ts ***!
|
|
1024
712
|
\*******************************************/
|
|
@@ -1079,18 +767,6 @@
|
|
|
1079
767
|
!*** ./src/design-tokens/ThemeProvider.tsx ***!
|
|
1080
768
|
\*********************************************/
|
|
1081
769
|
|
|
1082
|
-
/*!*********************************************!*\
|
|
1083
|
-
!*** ./src/pages/Version/VersionLayout.tsx ***!
|
|
1084
|
-
\*********************************************/
|
|
1085
|
-
|
|
1086
|
-
/*!*********************************************!*\
|
|
1087
|
-
!*** ./src/pages/Version/version-config.ts ***!
|
|
1088
|
-
\*********************************************/
|
|
1089
|
-
|
|
1090
|
-
/*!*********************************************!*\
|
|
1091
|
-
!*** ./src/pages/home/PackageList/index.ts ***!
|
|
1092
|
-
\*********************************************/
|
|
1093
|
-
|
|
1094
770
|
/*!**********************************************!*\
|
|
1095
771
|
!*** ./src/App/Header/HeaderToolTipIcon.tsx ***!
|
|
1096
772
|
\**********************************************/
|
|
@@ -1099,26 +775,10 @@
|
|
|
1099
775
|
!*** ./src/components/AutoComplete/index.ts ***!
|
|
1100
776
|
\**********************************************/
|
|
1101
777
|
|
|
1102
|
-
/*!**********************************************!*\
|
|
1103
|
-
!*** ./src/components/NotFound/NotFound.tsx ***!
|
|
1104
|
-
\**********************************************/
|
|
1105
|
-
|
|
1106
|
-
/*!**********************************************!*\
|
|
1107
|
-
!*** ./src/design-tokens/useLocalStorage.ts ***!
|
|
1108
|
-
\**********************************************/
|
|
1109
|
-
|
|
1110
|
-
/*!************************************************!*\
|
|
1111
|
-
!*** ./src/components/ActionBar/ActionBar.tsx ***!
|
|
1112
|
-
\************************************************/
|
|
1113
|
-
|
|
1114
778
|
/*!************************************************!*\
|
|
1115
779
|
!*** ./src/components/AutoComplete/styles.tsx ***!
|
|
1116
780
|
\************************************************/
|
|
1117
781
|
|
|
1118
|
-
/*!************************************************!*\
|
|
1119
|
-
!*** ./src/components/InputAdornment/index.ts ***!
|
|
1120
|
-
\************************************************/
|
|
1121
|
-
|
|
1122
782
|
/*!************************************************!*\
|
|
1123
783
|
!*** ./src/components/TextField/TextField.tsx ***!
|
|
1124
784
|
\************************************************/
|
|
@@ -1127,42 +787,10 @@
|
|
|
1127
787
|
!*** ./src/design-tokens/load-dayjs-locale.ts ***!
|
|
1128
788
|
\************************************************/
|
|
1129
789
|
|
|
1130
|
-
/*!************************************************!*\
|
|
1131
|
-
!*** ./src/design-tokens/useOnClickOutside.ts ***!
|
|
1132
|
-
\************************************************/
|
|
1133
|
-
|
|
1134
|
-
/*!*************************************************!*\
|
|
1135
|
-
!*** ./src/components/FloatingActionButton.tsx ***!
|
|
1136
|
-
\*************************************************/
|
|
1137
|
-
|
|
1138
|
-
/*!*************************************************!*\
|
|
1139
|
-
!*** ./src/components/NotFound/img/package.svg ***!
|
|
1140
|
-
\*************************************************/
|
|
1141
|
-
|
|
1142
790
|
/*!**************************************************!*\
|
|
1143
791
|
!*** ./src/components/Loading/Spinner/index.tsx ***!
|
|
1144
792
|
\**************************************************/
|
|
1145
793
|
|
|
1146
|
-
/*!**************************************************!*\
|
|
1147
|
-
!*** ./src/pages/Version/DetailSidebar/index.ts ***!
|
|
1148
|
-
\**************************************************/
|
|
1149
|
-
|
|
1150
|
-
/*!**************************************************!*\
|
|
1151
|
-
!*** ./src/pages/home/PackageList/Help/Help.tsx ***!
|
|
1152
|
-
\**************************************************/
|
|
1153
|
-
|
|
1154
|
-
/*!**************************************************!*\
|
|
1155
|
-
!*** ./src/pages/home/PackageList/Help/index.ts ***!
|
|
1156
|
-
\**************************************************/
|
|
1157
|
-
|
|
1158
|
-
/*!***************************************************!*\
|
|
1159
|
-
!*** ./src/App/Header/Search/SearchAdornment.tsx ***!
|
|
1160
|
-
\***************************************************/
|
|
1161
|
-
|
|
1162
|
-
/*!***************************************************!*\
|
|
1163
|
-
!*** ./src/pages/home/PackageList/Help/styles.ts ***!
|
|
1164
|
-
\***************************************************/
|
|
1165
|
-
|
|
1166
794
|
/*!****************************************************!*\
|
|
1167
795
|
!*** ./src/App/Header/LoginDialog/LoginDialog.tsx ***!
|
|
1168
796
|
\****************************************************/
|
|
@@ -1175,14 +803,6 @@
|
|
|
1175
803
|
!*** ./src/components/Loading/Spinner/Spinner.tsx ***!
|
|
1176
804
|
\****************************************************/
|
|
1177
805
|
|
|
1178
|
-
/*!****************************************************!*\
|
|
1179
|
-
!*** ./src/pages/Version/DetailContainer/index.ts ***!
|
|
1180
|
-
\****************************************************/
|
|
1181
|
-
|
|
1182
|
-
/*!****************************************************!*\
|
|
1183
|
-
!*** ./src/pages/home/PackageList/PackageList.tsx ***!
|
|
1184
|
-
\****************************************************/
|
|
1185
|
-
|
|
1186
806
|
/*!*****************************************************!*\
|
|
1187
807
|
!*** ./src/App/Header/RegistryInfoContent/index.ts ***!
|
|
1188
808
|
\*****************************************************/
|
|
@@ -1191,18 +811,6 @@
|
|
|
1191
811
|
!*** ./src/App/Header/RegistryInfoDialog/styles.ts ***!
|
|
1192
812
|
\*****************************************************/
|
|
1193
813
|
|
|
1194
|
-
/*!*****************************************************!*\
|
|
1195
|
-
!*** ./src/pages/Version/get-route-package-name.ts ***!
|
|
1196
|
-
\*****************************************************/
|
|
1197
|
-
|
|
1198
|
-
/*!*****************************************************!*\
|
|
1199
|
-
!*** ./src/pages/home/PackageList/Package/index.ts ***!
|
|
1200
|
-
\*****************************************************/
|
|
1201
|
-
|
|
1202
|
-
/*!******************************************************!*\
|
|
1203
|
-
!*** ./src/components/ActionBar/ActionBarAction.tsx ***!
|
|
1204
|
-
\******************************************************/
|
|
1205
|
-
|
|
1206
814
|
/*!******************************************************!*\
|
|
1207
815
|
!*** ./src/components/AutoComplete/AutoComplete.tsx ***!
|
|
1208
816
|
\******************************************************/
|
|
@@ -1315,26 +923,10 @@
|
|
|
1315
923
|
!*** ./src/i18n/download_translations/zh-TW/ui.json ***!
|
|
1316
924
|
\******************************************************/
|
|
1317
925
|
|
|
1318
|
-
/*!******************************************************!*\
|
|
1319
|
-
!*** ./src/pages/Version/VersionContextProvider.tsx ***!
|
|
1320
|
-
\******************************************************/
|
|
1321
|
-
|
|
1322
|
-
/*!******************************************************!*\
|
|
1323
|
-
!*** ./src/pages/home/PackageList/Package/styles.ts ***!
|
|
1324
|
-
\******************************************************/
|
|
1325
|
-
|
|
1326
926
|
/*!*******************************************************!*\
|
|
1327
927
|
!*** ./src/i18n/download_translations/fil-PH/ui.json ***!
|
|
1328
928
|
\*******************************************************/
|
|
1329
929
|
|
|
1330
|
-
/*!*******************************************************!*\
|
|
1331
|
-
!*** ./src/pages/Version/DetailSidebar/Dist/Dist.tsx ***!
|
|
1332
|
-
\*******************************************************/
|
|
1333
|
-
|
|
1334
|
-
/*!*******************************************************!*\
|
|
1335
|
-
!*** ./src/pages/Version/DetailSidebar/Dist/index.ts ***!
|
|
1336
|
-
\*******************************************************/
|
|
1337
|
-
|
|
1338
930
|
/*!********************************************************!*\
|
|
1339
931
|
!*** ./src/App/Header/LoginDialog/LoginDialogForm.tsx ***!
|
|
1340
932
|
\********************************************************/
|
|
@@ -1343,230 +935,38 @@
|
|
|
1343
935
|
!*** ./src/components/AutoComplete/AutoCompleteV2.tsx ***!
|
|
1344
936
|
\********************************************************/
|
|
1345
937
|
|
|
1346
|
-
/*!********************************************************!*\
|
|
1347
|
-
!*** ./src/pages/Version/DetailSidebar/Dist/styles.ts ***!
|
|
1348
|
-
\********************************************************/
|
|
1349
|
-
|
|
1350
|
-
/*!********************************************************!*\
|
|
1351
|
-
!*** ./src/pages/home/PackageList/Package/Package.tsx ***!
|
|
1352
|
-
\********************************************************/
|
|
1353
|
-
|
|
1354
|
-
/*!********************************************************!*\
|
|
1355
|
-
!*** ./src/pages/home/PackageList/Package/Tag/Tag.tsx ***!
|
|
1356
|
-
\********************************************************/
|
|
1357
|
-
|
|
1358
938
|
/*!*********************************************************!*\
|
|
1359
939
|
!*** ./src/components/AutoComplete/useAutoComplete.tsx ***!
|
|
1360
940
|
\*********************************************************/
|
|
1361
941
|
|
|
1362
|
-
/*!*********************************************************!*\
|
|
1363
|
-
!*** ./src/pages/home/PackageList/Package/Tag/index.ts ***!
|
|
1364
|
-
\*********************************************************/
|
|
1365
|
-
|
|
1366
942
|
/*!**********************************************************!*\
|
|
1367
943
|
!*** ./src/App/Header/LoginDialog/LoginDialogHeader.tsx ***!
|
|
1368
944
|
\**********************************************************/
|
|
1369
945
|
|
|
1370
|
-
/*!**********************************************************!*\
|
|
1371
|
-
!*** ./src/components/InputAdornment/InputAdornment.tsx ***!
|
|
1372
|
-
\**********************************************************/
|
|
1373
|
-
|
|
1374
946
|
/*!**********************************************************!*\
|
|
1375
947
|
!*** ./src/components/Logo/img/logo-black-and-white.svg ***!
|
|
1376
948
|
\**********************************************************/
|
|
1377
949
|
|
|
1378
|
-
/*!**********************************************************!*\
|
|
1379
|
-
!*** ./src/pages/Version/DetailSidebar/Engines/index.ts ***!
|
|
1380
|
-
\**********************************************************/
|
|
1381
|
-
|
|
1382
|
-
/*!**********************************************************!*\
|
|
1383
|
-
!*** ./src/pages/Version/DetailSidebar/Install/index.ts ***!
|
|
1384
|
-
\**********************************************************/
|
|
1385
|
-
|
|
1386
|
-
/*!**********************************************************!*\
|
|
1387
|
-
!*** ./src/pages/home/PackageList/Package/Tag/styles.ts ***!
|
|
1388
|
-
\**********************************************************/
|
|
1389
|
-
|
|
1390
|
-
/*!***********************************************************!*\
|
|
1391
|
-
!*** ./src/pages/Version/DetailContainer/Readme/index.ts ***!
|
|
1392
|
-
\***********************************************************/
|
|
1393
|
-
|
|
1394
|
-
/*!***********************************************************!*\
|
|
1395
|
-
!*** ./src/pages/Version/DetailSidebar/DetailSidebar.tsx ***!
|
|
1396
|
-
\***********************************************************/
|
|
1397
|
-
|
|
1398
|
-
/*!***********************************************************!*\
|
|
1399
|
-
!*** ./src/pages/Version/DetailSidebar/Engines/styles.ts ***!
|
|
1400
|
-
\***********************************************************/
|
|
1401
|
-
|
|
1402
950
|
/*!***********************************************************!*\
|
|
1403
951
|
!*** ./src/providers/config/AppConfigurationProvider.tsx ***!
|
|
1404
952
|
\***********************************************************/
|
|
1405
953
|
|
|
1406
|
-
/*!************************************************************!*\
|
|
1407
|
-
!*** ./src/pages/Version/DetailContainer/NoItems/index.ts ***!
|
|
1408
|
-
\************************************************************/
|
|
1409
|
-
|
|
1410
|
-
/*!************************************************************!*\
|
|
1411
|
-
!*** ./src/pages/Version/DetailContainer/UpLinks/index.ts ***!
|
|
1412
|
-
\************************************************************/
|
|
1413
|
-
|
|
1414
954
|
/*!*************************************************************!*\
|
|
1415
955
|
!*** ./src/App/Header/LoginDialog/LoginDialogFormError.tsx ***!
|
|
1416
956
|
\*************************************************************/
|
|
1417
957
|
|
|
1418
|
-
/*!*************************************************************!*\
|
|
1419
|
-
!*** ./src/pages/Version/DetailContainer/Readme/Readme.tsx ***!
|
|
1420
|
-
\*************************************************************/
|
|
1421
|
-
|
|
1422
|
-
/*!*************************************************************!*\
|
|
1423
|
-
!*** ./src/pages/Version/DetailContainer/UpLinks/styles.ts ***!
|
|
1424
|
-
\*************************************************************/
|
|
1425
|
-
|
|
1426
|
-
/*!*************************************************************!*\
|
|
1427
|
-
!*** ./src/pages/Version/DetailContainer/Versions/index.ts ***!
|
|
1428
|
-
\*************************************************************/
|
|
1429
|
-
|
|
1430
|
-
/*!*************************************************************!*\
|
|
1431
|
-
!*** ./src/pages/Version/DetailSidebar/Developers/index.ts ***!
|
|
1432
|
-
\*************************************************************/
|
|
1433
|
-
|
|
1434
|
-
/*!*************************************************************!*\
|
|
1435
|
-
!*** ./src/pages/Version/DetailSidebar/Engines/Engines.tsx ***!
|
|
1436
|
-
\*************************************************************/
|
|
1437
|
-
|
|
1438
|
-
/*!*************************************************************!*\
|
|
1439
|
-
!*** ./src/pages/Version/DetailSidebar/Install/Install.tsx ***!
|
|
1440
|
-
\*************************************************************/
|
|
1441
|
-
|
|
1442
|
-
/*!*************************************************************!*\
|
|
1443
|
-
!*** ./src/pages/Version/DetailSidebar/Install/img/npm.svg ***!
|
|
1444
|
-
\*************************************************************/
|
|
1445
|
-
|
|
1446
|
-
/*!*************************************************************!*\
|
|
1447
|
-
!*** ./src/pages/Version/DetailSidebar/Repository/index.ts ***!
|
|
1448
|
-
\*************************************************************/
|
|
1449
|
-
|
|
1450
|
-
/*!**************************************************************!*\
|
|
1451
|
-
!*** ./src/pages/Version/DetailContainer/Versions/styles.ts ***!
|
|
1452
|
-
\**************************************************************/
|
|
1453
|
-
|
|
1454
|
-
/*!**************************************************************!*\
|
|
1455
|
-
!*** ./src/pages/Version/DetailSidebar/Engines/img/node.png ***!
|
|
1456
|
-
\**************************************************************/
|
|
1457
|
-
|
|
1458
|
-
/*!**************************************************************!*\
|
|
1459
|
-
!*** ./src/pages/Version/DetailSidebar/Install/img/pnpm.svg ***!
|
|
1460
|
-
\**************************************************************/
|
|
1461
|
-
|
|
1462
|
-
/*!**************************************************************!*\
|
|
1463
|
-
!*** ./src/pages/Version/DetailSidebar/Install/img/yarn.svg ***!
|
|
1464
|
-
\**************************************************************/
|
|
1465
|
-
|
|
1466
958
|
/*!***************************************************************!*\
|
|
1467
959
|
!*** ./src/App/Header/LoginDialog/LoginDialogCloseButton.tsx ***!
|
|
1468
960
|
\***************************************************************/
|
|
1469
961
|
|
|
1470
|
-
/*!***************************************************************!*\
|
|
1471
|
-
!*** ./src/pages/Version/DetailContainer/Deprecated/index.ts ***!
|
|
1472
|
-
\***************************************************************/
|
|
1473
|
-
|
|
1474
|
-
/*!***************************************************************!*\
|
|
1475
|
-
!*** ./src/pages/Version/DetailContainer/DetailContainer.tsx ***!
|
|
1476
|
-
\***************************************************************/
|
|
1477
|
-
|
|
1478
|
-
/*!***************************************************************!*\
|
|
1479
|
-
!*** ./src/pages/Version/DetailContainer/NoItems/NoItems.tsx ***!
|
|
1480
|
-
\***************************************************************/
|
|
1481
|
-
|
|
1482
|
-
/*!***************************************************************!*\
|
|
1483
|
-
!*** ./src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx ***!
|
|
1484
|
-
\***************************************************************/
|
|
1485
|
-
|
|
1486
|
-
/*!****************************************************************!*\
|
|
1487
|
-
!*** ./src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx ***!
|
|
1488
|
-
\****************************************************************/
|
|
1489
|
-
|
|
1490
|
-
/*!****************************************************************!*\
|
|
1491
|
-
!*** ./src/pages/Version/DetailSidebar/Repository/img/git.png ***!
|
|
1492
|
-
\****************************************************************/
|
|
1493
|
-
|
|
1494
962
|
/*!*****************************************************************!*\
|
|
1495
963
|
!*** ./src/i18n/download_translations/ sync ^\.\/.*\/ui\.json$ ***!
|
|
1496
964
|
\*****************************************************************/
|
|
1497
965
|
|
|
1498
|
-
/*!*****************************************************************!*\
|
|
1499
|
-
!*** ./src/pages/Version/DetailContainer/Dependencies/index.ts ***!
|
|
1500
|
-
\*****************************************************************/
|
|
1501
|
-
|
|
1502
|
-
/*!*****************************************************************!*\
|
|
1503
|
-
!*** ./src/pages/Version/DetailContainer/Versions/Versions.tsx ***!
|
|
1504
|
-
\*****************************************************************/
|
|
1505
|
-
|
|
1506
966
|
/*!******************************************************************!*\
|
|
1507
967
|
!*** ./src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx ***!
|
|
1508
968
|
\******************************************************************/
|
|
1509
969
|
|
|
1510
|
-
/*!******************************************************************!*\
|
|
1511
|
-
!*** ./src/pages/Version/DetailContainer/Dependencies/styles.ts ***!
|
|
1512
|
-
\******************************************************************/
|
|
1513
|
-
|
|
1514
|
-
/*!*******************************************************************!*\
|
|
1515
|
-
!*** ./src/pages/Version/DetailContainer/DetailContainerTabs.tsx ***!
|
|
1516
|
-
\*******************************************************************/
|
|
1517
|
-
|
|
1518
|
-
/*!*******************************************************************!*\
|
|
1519
|
-
!*** ./src/pages/Version/DetailSidebar/Developers/Developers.tsx ***!
|
|
1520
|
-
\*******************************************************************/
|
|
1521
|
-
|
|
1522
|
-
/*!*******************************************************************!*\
|
|
1523
|
-
!*** ./src/pages/Version/DetailSidebar/Repository/Repository.tsx ***!
|
|
1524
|
-
\*******************************************************************/
|
|
1525
|
-
|
|
1526
970
|
/*!********************************************************************!*\
|
|
1527
971
|
!*** ./src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx ***!
|
|
1528
972
|
\********************************************************************/
|
|
1529
|
-
|
|
1530
|
-
/*!*********************************************************************!*\
|
|
1531
|
-
!*** ./src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx ***!
|
|
1532
|
-
\*********************************************************************/
|
|
1533
|
-
|
|
1534
|
-
/*!*********************************************************************!*\
|
|
1535
|
-
!*** ./src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx ***!
|
|
1536
|
-
\*********************************************************************/
|
|
1537
|
-
|
|
1538
|
-
/*!*********************************************************************!*\
|
|
1539
|
-
!*** ./src/pages/Version/DetailSidebar/Install/InstallListItem.tsx ***!
|
|
1540
|
-
\*********************************************************************/
|
|
1541
|
-
|
|
1542
|
-
/*!**********************************************************************!*\
|
|
1543
|
-
!*** ./src/pages/Version/DetailContainer/DetailContainerContent.tsx ***!
|
|
1544
|
-
\**********************************************************************/
|
|
1545
|
-
|
|
1546
|
-
/*!************************************************************************!*\
|
|
1547
|
-
!*** ./src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx ***!
|
|
1548
|
-
\************************************************************************/
|
|
1549
|
-
|
|
1550
|
-
/*!************************************************************************!*\
|
|
1551
|
-
!*** ./src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx ***!
|
|
1552
|
-
\************************************************************************/
|
|
1553
|
-
|
|
1554
|
-
/*!*************************************************************************!*\
|
|
1555
|
-
!*** ./src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx ***!
|
|
1556
|
-
\*************************************************************************/
|
|
1557
|
-
|
|
1558
|
-
/*!****************************************************************************!*\
|
|
1559
|
-
!*** ./src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx ***!
|
|
1560
|
-
\****************************************************************************/
|
|
1561
|
-
|
|
1562
|
-
/*!****************************************************************************!*\
|
|
1563
|
-
!*** ./src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx ***!
|
|
1564
|
-
\****************************************************************************/
|
|
1565
|
-
|
|
1566
|
-
/*!***********************************************************************************!*\
|
|
1567
|
-
!*** ./src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts ***!
|
|
1568
|
-
\***********************************************************************************/
|
|
1569
|
-
|
|
1570
|
-
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1571
|
-
!*** data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 version=%271.1%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27%3E%3Cpath fill-rule=%27evenodd%27 d=%27M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z%27%3E%3C/path%3E%3C/svg%3E ***!
|
|
1572
|
-
\****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|