react-native-debug-toolkit 2.0.0 → 2.2.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/README.md +82 -120
- package/README.zh-CN.md +171 -0
- package/lib/commonjs/core/DebugToolkit.js +117 -115
- package/lib/commonjs/core/DebugToolkit.js.map +1 -1
- package/lib/commonjs/core/DebugToolkitProvider.js +38 -30
- package/lib/commonjs/core/DebugToolkitProvider.js.map +1 -1
- package/lib/commonjs/core/initialize.js +84 -0
- package/lib/commonjs/core/initialize.js.map +1 -0
- package/lib/commonjs/{components → features/clipboard}/ClipboardTab.js +16 -17
- package/lib/commonjs/features/clipboard/ClipboardTab.js.map +1 -0
- package/lib/commonjs/features/{ClipboardFeature.js → clipboard/index.js} +9 -5
- package/lib/commonjs/features/clipboard/index.js.map +1 -0
- package/lib/commonjs/features/console/ConsoleLogTab.js +162 -0
- package/lib/commonjs/features/console/ConsoleLogTab.js.map +1 -0
- package/lib/commonjs/features/console/index.js +118 -0
- package/lib/commonjs/features/console/index.js.map +1 -0
- package/lib/commonjs/{components → features/environment}/EnvironmentTab.js +24 -25
- package/lib/commonjs/features/environment/EnvironmentTab.js.map +1 -0
- package/lib/commonjs/features/{EnvironmentFeature.js → environment/index.js} +22 -25
- package/lib/commonjs/features/environment/index.js.map +1 -0
- package/lib/commonjs/{components → features/navigation}/NavigationLogTab.js +11 -10
- package/lib/commonjs/features/navigation/NavigationLogTab.js.map +1 -0
- package/lib/commonjs/features/navigation/index.js +39 -0
- package/lib/commonjs/features/navigation/index.js.map +1 -0
- package/lib/commonjs/{hooks → features/navigation}/useNavigationLogger.js +3 -3
- package/lib/commonjs/features/navigation/useNavigationLogger.js.map +1 -0
- package/lib/commonjs/features/network/NetworkLogTab.js +405 -0
- package/lib/commonjs/features/network/NetworkLogTab.js.map +1 -0
- package/lib/commonjs/features/network/index.js +96 -0
- package/lib/commonjs/features/network/index.js.map +1 -0
- package/lib/commonjs/features/network/networkInterceptor.js +261 -0
- package/lib/commonjs/features/network/networkInterceptor.js.map +1 -0
- package/lib/commonjs/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.js +10 -9
- package/lib/commonjs/features/thirdPartyLibs/ThirdPartyLibsTab.js.map +1 -0
- package/lib/commonjs/features/{ThirdPartyLibsFeature.js → thirdPartyLibs/index.js} +8 -8
- package/lib/commonjs/features/thirdPartyLibs/index.js.map +1 -0
- package/lib/commonjs/{native/NativeDebugLibs.js → features/thirdPartyLibs/nativeDebugLibs.js} +1 -1
- package/lib/commonjs/features/thirdPartyLibs/nativeDebugLibs.js.map +1 -0
- package/lib/commonjs/features/track/TrackLogTab.js +230 -0
- package/lib/commonjs/features/track/TrackLogTab.js.map +1 -0
- package/lib/commonjs/features/track/index.js +39 -0
- package/lib/commonjs/features/track/index.js.map +1 -0
- package/lib/commonjs/features/zustand/ZustandLogTab.js +311 -0
- package/lib/commonjs/features/zustand/ZustandLogTab.js.map +1 -0
- package/lib/commonjs/features/zustand/index.js +59 -0
- package/lib/commonjs/features/zustand/index.js.map +1 -0
- package/lib/commonjs/index.js +27 -40
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types/environment.js +2 -0
- package/lib/commonjs/types/environment.js.map +1 -0
- package/lib/commonjs/types/feature.js +6 -0
- package/lib/commonjs/types/feature.js.map +1 -0
- package/lib/commonjs/types/index.js +0 -4
- package/lib/commonjs/types/logs.js +2 -0
- package/lib/commonjs/types/logs.js.map +1 -0
- package/lib/commonjs/types/navigation.js +2 -0
- package/lib/commonjs/types/navigation.js.map +1 -0
- package/lib/commonjs/types/thirdPartyLibs.js +2 -0
- package/lib/commonjs/types/thirdPartyLibs.js.map +1 -0
- package/lib/commonjs/ui/DebugView.js +66 -0
- package/lib/commonjs/ui/DebugView.js.map +1 -0
- package/lib/commonjs/ui/floating/FloatIcon.js +240 -0
- package/lib/commonjs/ui/floating/FloatIcon.js.map +1 -0
- package/lib/commonjs/ui/panel/DebugPanel.js +230 -0
- package/lib/commonjs/ui/panel/DebugPanel.js.map +1 -0
- package/lib/commonjs/ui/panel/FeatureTabBar.js +182 -0
- package/lib/commonjs/ui/panel/FeatureTabBar.js.map +1 -0
- package/lib/commonjs/ui/panel/FloatPanelView.js +238 -0
- package/lib/commonjs/ui/panel/FloatPanelView.js.map +1 -0
- package/lib/commonjs/{components → ui}/shared/CollapsibleSection.js +4 -4
- package/lib/commonjs/ui/shared/CollapsibleSection.js.map +1 -0
- package/lib/commonjs/{components → ui}/shared/CopyButton.js +3 -3
- package/lib/commonjs/ui/shared/CopyButton.js.map +1 -0
- package/lib/commonjs/ui/shared/JsonView.js.map +1 -0
- package/lib/commonjs/ui/shared/LogListScreen.js +174 -0
- package/lib/commonjs/ui/shared/LogListScreen.js.map +1 -0
- package/lib/commonjs/ui/shared/useSlideDetailAnimation.js.map +1 -0
- package/lib/commonjs/ui/theme/colors.js +43 -0
- package/lib/commonjs/ui/theme/colors.js.map +1 -0
- package/lib/commonjs/ui/theme/layout.js +8 -0
- package/lib/commonjs/ui/theme/layout.js.map +1 -0
- package/lib/commonjs/utils/createChannelFeature.js +62 -0
- package/lib/commonjs/utils/createChannelFeature.js.map +1 -0
- package/lib/commonjs/utils/createObservableStore.js +5 -0
- package/lib/commonjs/utils/createObservableStore.js.map +1 -1
- package/lib/commonjs/utils/createPersistedObservableStore.js +71 -0
- package/lib/commonjs/utils/createPersistedObservableStore.js.map +1 -0
- package/lib/commonjs/utils/debugPreferences.js +52 -0
- package/lib/commonjs/utils/debugPreferences.js.map +1 -0
- package/lib/commonjs/utils/urlRewriterRegistry.js +14 -0
- package/lib/commonjs/utils/urlRewriterRegistry.js.map +1 -0
- package/lib/module/core/DebugToolkit.js +117 -114
- package/lib/module/core/DebugToolkit.js.map +1 -1
- package/lib/module/core/DebugToolkitProvider.js +39 -31
- package/lib/module/core/DebugToolkitProvider.js.map +1 -1
- package/lib/module/core/initialize.js +80 -0
- package/lib/module/core/initialize.js.map +1 -0
- package/lib/module/{components → features/clipboard}/ClipboardTab.js +9 -9
- package/lib/module/features/clipboard/ClipboardTab.js.map +1 -0
- package/lib/module/features/clipboard/index.js +16 -0
- package/lib/module/features/clipboard/index.js.map +1 -0
- package/lib/module/features/console/ConsoleLogTab.js +157 -0
- package/lib/module/features/console/ConsoleLogTab.js.map +1 -0
- package/lib/module/features/console/index.js +112 -0
- package/lib/module/features/console/index.js.map +1 -0
- package/lib/module/{components → features/environment}/EnvironmentTab.js +5 -5
- package/lib/module/features/environment/EnvironmentTab.js.map +1 -0
- package/lib/module/features/{EnvironmentFeature.js → environment/index.js} +22 -25
- package/lib/module/features/environment/index.js.map +1 -0
- package/lib/module/{components → features/navigation}/NavigationLogTab.js +4 -3
- package/lib/module/features/navigation/NavigationLogTab.js.map +1 -0
- package/lib/module/features/navigation/index.js +32 -0
- package/lib/module/features/navigation/index.js.map +1 -0
- package/lib/module/{hooks → features/navigation}/useNavigationLogger.js +2 -2
- package/lib/module/features/navigation/useNavigationLogger.js.map +1 -0
- package/lib/module/features/network/NetworkLogTab.js +400 -0
- package/lib/module/features/network/NetworkLogTab.js.map +1 -0
- package/lib/module/features/network/index.js +90 -0
- package/lib/module/features/network/index.js.map +1 -0
- package/lib/module/features/network/networkInterceptor.js +256 -0
- package/lib/module/features/network/networkInterceptor.js.map +1 -0
- package/lib/module/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.js +3 -2
- package/lib/module/features/thirdPartyLibs/ThirdPartyLibsTab.js.map +1 -0
- package/lib/module/features/{ThirdPartyLibsFeature.js → thirdPartyLibs/index.js} +4 -4
- package/lib/module/features/thirdPartyLibs/index.js.map +1 -0
- package/lib/module/{native/NativeDebugLibs.js → features/thirdPartyLibs/nativeDebugLibs.js} +1 -1
- package/lib/module/features/thirdPartyLibs/nativeDebugLibs.js.map +1 -0
- package/lib/module/features/track/TrackLogTab.js +225 -0
- package/lib/module/features/track/TrackLogTab.js.map +1 -0
- package/lib/module/features/track/index.js +32 -0
- package/lib/module/features/track/index.js.map +1 -0
- package/lib/module/features/zustand/ZustandLogTab.js +306 -0
- package/lib/module/features/zustand/ZustandLogTab.js.map +1 -0
- package/lib/module/features/zustand/index.js +53 -0
- package/lib/module/features/zustand/index.js.map +1 -0
- package/lib/module/index.js +11 -12
- package/lib/module/index.js.map +1 -1
- package/lib/module/types/environment.js +2 -0
- package/lib/module/types/environment.js.map +1 -0
- package/lib/module/types/feature.js +4 -0
- package/lib/module/types/feature.js.map +1 -0
- package/lib/module/types/index.js +0 -2
- package/lib/module/types/logs.js +2 -0
- package/lib/module/types/logs.js.map +1 -0
- package/lib/module/types/navigation.js +2 -0
- package/lib/module/types/navigation.js.map +1 -0
- package/lib/module/types/thirdPartyLibs.js +2 -0
- package/lib/module/types/thirdPartyLibs.js.map +1 -0
- package/lib/module/ui/DebugView.js +61 -0
- package/lib/module/ui/DebugView.js.map +1 -0
- package/lib/module/ui/floating/FloatIcon.js +235 -0
- package/lib/module/ui/floating/FloatIcon.js.map +1 -0
- package/lib/module/ui/panel/DebugPanel.js +225 -0
- package/lib/module/ui/panel/DebugPanel.js.map +1 -0
- package/lib/module/ui/panel/FeatureTabBar.js +177 -0
- package/lib/module/ui/panel/FeatureTabBar.js.map +1 -0
- package/lib/module/ui/panel/FloatPanelView.js +233 -0
- package/lib/module/ui/panel/FloatPanelView.js.map +1 -0
- package/lib/module/{components → ui}/shared/CollapsibleSection.js +1 -1
- package/lib/module/ui/shared/CollapsibleSection.js.map +1 -0
- package/lib/module/{components → ui}/shared/CopyButton.js +1 -1
- package/lib/module/ui/shared/CopyButton.js.map +1 -0
- package/lib/module/ui/shared/JsonView.js.map +1 -0
- package/lib/module/ui/shared/LogListScreen.js +169 -0
- package/lib/module/ui/shared/LogListScreen.js.map +1 -0
- package/lib/module/ui/shared/useSlideDetailAnimation.js.map +1 -0
- package/lib/module/ui/theme/colors.js +38 -0
- package/lib/module/ui/theme/colors.js.map +1 -0
- package/lib/module/ui/theme/layout.js +4 -0
- package/lib/module/ui/theme/layout.js.map +1 -0
- package/lib/module/utils/createChannelFeature.js +58 -0
- package/lib/module/utils/createChannelFeature.js.map +1 -0
- package/lib/module/utils/createObservableStore.js +5 -0
- package/lib/module/utils/createObservableStore.js.map +1 -1
- package/lib/module/utils/createPersistedObservableStore.js +67 -0
- package/lib/module/utils/createPersistedObservableStore.js.map +1 -0
- package/lib/module/utils/debugPreferences.js +46 -0
- package/lib/module/utils/debugPreferences.js.map +1 -0
- package/lib/module/utils/urlRewriterRegistry.js +10 -0
- package/lib/module/utils/urlRewriterRegistry.js.map +1 -0
- package/lib/typescript/src/core/DebugToolkit.d.ts +17 -20
- package/lib/typescript/src/core/DebugToolkit.d.ts.map +1 -1
- package/lib/typescript/src/core/DebugToolkitProvider.d.ts +4 -7
- package/lib/typescript/src/core/DebugToolkitProvider.d.ts.map +1 -1
- package/lib/typescript/src/core/initialize.d.ts +32 -0
- package/lib/typescript/src/core/initialize.d.ts.map +1 -0
- package/lib/typescript/src/features/clipboard/ClipboardTab.d.ts +4 -0
- package/lib/typescript/src/features/clipboard/ClipboardTab.d.ts.map +1 -0
- package/lib/typescript/src/features/clipboard/index.d.ts +7 -0
- package/lib/typescript/src/features/clipboard/index.d.ts.map +1 -0
- package/lib/typescript/src/{components → features/console}/ConsoleLogTab.d.ts +2 -2
- package/lib/typescript/src/features/console/ConsoleLogTab.d.ts.map +1 -0
- package/lib/typescript/src/features/console/index.d.ts +9 -0
- package/lib/typescript/src/features/console/index.d.ts.map +1 -0
- package/lib/typescript/src/{components → features/environment}/EnvironmentTab.d.ts +1 -1
- package/lib/typescript/src/features/environment/EnvironmentTab.d.ts.map +1 -0
- package/lib/typescript/src/features/{EnvironmentFeature.d.ts → environment/index.d.ts} +2 -2
- package/lib/typescript/src/features/environment/index.d.ts.map +1 -0
- package/lib/typescript/src/{components → features/navigation}/NavigationLogTab.d.ts +2 -2
- package/lib/typescript/src/features/navigation/NavigationLogTab.d.ts.map +1 -0
- package/lib/typescript/src/features/{NavigationLogFeature.d.ts → navigation/index.d.ts} +5 -3
- package/lib/typescript/src/features/navigation/index.d.ts.map +1 -0
- package/lib/typescript/src/{hooks → features/navigation}/useNavigationLogger.d.ts +1 -8
- package/lib/typescript/src/features/navigation/useNavigationLogger.d.ts.map +1 -0
- package/lib/typescript/src/{components → features/network}/NetworkLogTab.d.ts +2 -2
- package/lib/typescript/src/features/network/NetworkLogTab.d.ts.map +1 -0
- package/lib/typescript/src/features/network/index.d.ts +15 -0
- package/lib/typescript/src/features/network/index.d.ts.map +1 -0
- package/lib/typescript/src/features/network/networkInterceptor.d.ts +19 -0
- package/lib/typescript/src/features/network/networkInterceptor.d.ts.map +1 -0
- package/lib/typescript/src/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.d.ts +2 -2
- package/lib/typescript/src/features/thirdPartyLibs/ThirdPartyLibsTab.d.ts.map +1 -0
- package/lib/typescript/src/features/thirdPartyLibs/index.d.ts +3 -0
- package/lib/typescript/src/features/thirdPartyLibs/index.d.ts.map +1 -0
- package/lib/typescript/src/{native/NativeDebugLibs.d.ts → features/thirdPartyLibs/nativeDebugLibs.d.ts} +1 -1
- package/lib/typescript/src/features/thirdPartyLibs/nativeDebugLibs.d.ts.map +1 -0
- package/lib/typescript/src/{components → features/track}/TrackLogTab.d.ts +2 -2
- package/lib/typescript/src/features/track/TrackLogTab.d.ts.map +1 -0
- package/lib/typescript/src/features/{TrackFeature.d.ts → track/index.d.ts} +5 -3
- package/lib/typescript/src/features/track/index.d.ts.map +1 -0
- package/lib/typescript/src/{components → features/zustand}/ZustandLogTab.d.ts +2 -2
- package/lib/typescript/src/features/zustand/ZustandLogTab.d.ts.map +1 -0
- package/lib/typescript/src/features/{ZustandLogFeature.d.ts → zustand/index.d.ts} +5 -3
- package/lib/typescript/src/features/zustand/index.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +20 -20
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/types/environment.d.ts +11 -0
- package/lib/typescript/src/types/environment.d.ts.map +1 -0
- package/lib/typescript/src/types/feature.d.ts +23 -0
- package/lib/typescript/src/types/feature.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts +5 -111
- package/lib/typescript/src/types/index.d.ts.map +1 -1
- package/lib/typescript/src/types/logs.d.ts +51 -0
- package/lib/typescript/src/types/logs.d.ts.map +1 -0
- package/lib/typescript/src/types/navigation.d.ts +8 -0
- package/lib/typescript/src/types/navigation.d.ts.map +1 -0
- package/lib/typescript/src/types/thirdPartyLibs.d.ts +13 -0
- package/lib/typescript/src/types/thirdPartyLibs.d.ts.map +1 -0
- package/lib/typescript/src/ui/DebugView.d.ts +19 -0
- package/lib/typescript/src/ui/DebugView.d.ts.map +1 -0
- package/lib/typescript/src/ui/floating/FloatIcon.d.ts +12 -0
- package/lib/typescript/src/ui/floating/FloatIcon.d.ts.map +1 -0
- package/lib/typescript/src/ui/panel/DebugPanel.d.ts +9 -0
- package/lib/typescript/src/ui/panel/DebugPanel.d.ts.map +1 -0
- package/lib/typescript/src/ui/panel/FeatureTabBar.d.ts +13 -0
- package/lib/typescript/src/ui/panel/FeatureTabBar.d.ts.map +1 -0
- package/lib/typescript/src/ui/panel/FloatPanelView.d.ts +12 -0
- package/lib/typescript/src/ui/panel/FloatPanelView.d.ts.map +1 -0
- package/lib/typescript/src/ui/shared/CollapsibleSection.d.ts.map +1 -0
- package/lib/typescript/src/ui/shared/CopyButton.d.ts.map +1 -0
- package/lib/typescript/src/ui/shared/JsonView.d.ts.map +1 -0
- package/lib/typescript/src/ui/shared/LogListScreen.d.ts +21 -0
- package/lib/typescript/src/ui/shared/LogListScreen.d.ts.map +1 -0
- package/lib/typescript/src/ui/shared/useSlideDetailAnimation.d.ts.map +1 -0
- package/lib/typescript/src/ui/theme/colors.d.ts +21 -0
- package/lib/typescript/src/ui/theme/colors.d.ts.map +1 -0
- package/lib/typescript/src/ui/theme/layout.d.ts +2 -0
- package/lib/typescript/src/ui/theme/layout.d.ts.map +1 -0
- package/lib/typescript/src/utils/createChannelFeature.d.ts +27 -0
- package/lib/typescript/src/utils/createChannelFeature.d.ts.map +1 -0
- package/lib/typescript/src/utils/createObservableStore.d.ts +1 -0
- package/lib/typescript/src/utils/createObservableStore.d.ts.map +1 -1
- package/lib/typescript/src/utils/createPersistedObservableStore.d.ts +15 -0
- package/lib/typescript/src/utils/createPersistedObservableStore.d.ts.map +1 -0
- package/lib/typescript/src/utils/debugPreferences.d.ts +10 -0
- package/lib/typescript/src/utils/debugPreferences.d.ts.map +1 -0
- package/lib/typescript/src/utils/urlRewriterRegistry.d.ts +7 -0
- package/lib/typescript/src/utils/urlRewriterRegistry.d.ts.map +1 -0
- package/package.json +5 -1
- package/src/core/DebugToolkit.tsx +144 -142
- package/src/core/DebugToolkitProvider.tsx +44 -43
- package/src/core/initialize.ts +122 -0
- package/src/{components → features/clipboard}/ClipboardTab.tsx +10 -10
- package/src/features/clipboard/index.ts +15 -0
- package/src/features/console/ConsoleLogTab.tsx +95 -0
- package/src/features/console/index.ts +119 -0
- package/src/{components → features/environment}/EnvironmentTab.tsx +7 -7
- package/src/features/{EnvironmentFeature.ts → environment/index.ts} +27 -25
- package/src/{components → features/navigation}/NavigationLogTab.tsx +6 -5
- package/src/features/navigation/index.ts +44 -0
- package/src/{hooks → features/navigation}/useNavigationLogger.ts +3 -8
- package/src/features/network/NetworkLogTab.tsx +271 -0
- package/src/features/network/index.ts +113 -0
- package/src/features/network/networkInterceptor.ts +311 -0
- package/src/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.tsx +6 -5
- package/src/features/{ThirdPartyLibsFeature.ts → thirdPartyLibs/index.ts} +5 -5
- package/src/features/track/TrackLogTab.tsx +110 -0
- package/src/features/track/index.ts +41 -0
- package/src/features/zustand/ZustandLogTab.tsx +203 -0
- package/src/features/{ZustandLogFeature.ts → zustand/index.ts} +19 -45
- package/src/index.ts +20 -24
- package/src/types/environment.ts +11 -0
- package/src/types/feature.ts +32 -0
- package/src/types/index.ts +29 -138
- package/src/types/logs.ts +54 -0
- package/src/types/navigation.ts +5 -0
- package/src/types/thirdPartyLibs.ts +13 -0
- package/src/ui/DebugView.tsx +80 -0
- package/src/ui/floating/FloatIcon.tsx +202 -0
- package/src/ui/panel/DebugPanel.tsx +215 -0
- package/src/ui/panel/FeatureTabBar.tsx +204 -0
- package/src/ui/panel/FloatPanelView.tsx +227 -0
- package/src/{components → ui}/shared/CollapsibleSection.tsx +1 -1
- package/src/{components → ui}/shared/CopyButton.tsx +1 -1
- package/src/ui/shared/LogListScreen.tsx +164 -0
- package/src/ui/theme/colors.ts +33 -0
- package/src/ui/theme/layout.ts +1 -0
- package/src/utils/createChannelFeature.ts +80 -0
- package/src/utils/createObservableStore.ts +6 -0
- package/src/utils/createPersistedObservableStore.ts +76 -0
- package/src/utils/debugPreferences.ts +48 -0
- package/src/utils/urlRewriterRegistry.ts +10 -0
- package/lib/commonjs/components/ClipboardTab.js.map +0 -1
- package/lib/commonjs/components/ConsoleLogTab.js +0 -295
- package/lib/commonjs/components/ConsoleLogTab.js.map +0 -1
- package/lib/commonjs/components/EnvironmentTab.js.map +0 -1
- package/lib/commonjs/components/FloatPanelView.js +0 -797
- package/lib/commonjs/components/FloatPanelView.js.map +0 -1
- package/lib/commonjs/components/NavigationLogTab.js.map +0 -1
- package/lib/commonjs/components/NetworkLogTab.js +0 -575
- package/lib/commonjs/components/NetworkLogTab.js.map +0 -1
- package/lib/commonjs/components/ThirdPartyLibsTab.js.map +0 -1
- package/lib/commonjs/components/TrackLogTab.js +0 -372
- package/lib/commonjs/components/TrackLogTab.js.map +0 -1
- package/lib/commonjs/components/ZustandLogTab.js +0 -451
- package/lib/commonjs/components/ZustandLogTab.js.map +0 -1
- package/lib/commonjs/components/shared/CollapsibleSection.js.map +0 -1
- package/lib/commonjs/components/shared/CopyButton.js.map +0 -1
- package/lib/commonjs/components/shared/JsonView.js.map +0 -1
- package/lib/commonjs/features/ClipboardFeature.js.map +0 -1
- package/lib/commonjs/features/ConsoleLogFeature.js +0 -98
- package/lib/commonjs/features/ConsoleLogFeature.js.map +0 -1
- package/lib/commonjs/features/EnvironmentFeature.js.map +0 -1
- package/lib/commonjs/features/NavigationLogFeature.js +0 -60
- package/lib/commonjs/features/NavigationLogFeature.js.map +0 -1
- package/lib/commonjs/features/NetworkFeature.js +0 -328
- package/lib/commonjs/features/NetworkFeature.js.map +0 -1
- package/lib/commonjs/features/ThirdPartyLibsFeature.js.map +0 -1
- package/lib/commonjs/features/TrackFeature.js +0 -55
- package/lib/commonjs/features/TrackFeature.js.map +0 -1
- package/lib/commonjs/features/ZustandLogFeature.js +0 -76
- package/lib/commonjs/features/ZustandLogFeature.js.map +0 -1
- package/lib/commonjs/hooks/useNavigationLogger.js.map +0 -1
- package/lib/commonjs/hooks/useSlideDetailAnimation.js.map +0 -1
- package/lib/commonjs/initialize.js +0 -161
- package/lib/commonjs/initialize.js.map +0 -1
- package/lib/commonjs/native/NativeDebugLibs.js.map +0 -1
- package/lib/commonjs/utils/constants.js +0 -135
- package/lib/commonjs/utils/constants.js.map +0 -1
- package/lib/module/components/ClipboardTab.js.map +0 -1
- package/lib/module/components/ConsoleLogTab.js +0 -290
- package/lib/module/components/ConsoleLogTab.js.map +0 -1
- package/lib/module/components/EnvironmentTab.js.map +0 -1
- package/lib/module/components/FloatPanelView.js +0 -791
- package/lib/module/components/FloatPanelView.js.map +0 -1
- package/lib/module/components/NavigationLogTab.js.map +0 -1
- package/lib/module/components/NetworkLogTab.js +0 -570
- package/lib/module/components/NetworkLogTab.js.map +0 -1
- package/lib/module/components/ThirdPartyLibsTab.js.map +0 -1
- package/lib/module/components/TrackLogTab.js +0 -367
- package/lib/module/components/TrackLogTab.js.map +0 -1
- package/lib/module/components/ZustandLogTab.js +0 -446
- package/lib/module/components/ZustandLogTab.js.map +0 -1
- package/lib/module/components/shared/CollapsibleSection.js.map +0 -1
- package/lib/module/components/shared/CopyButton.js.map +0 -1
- package/lib/module/components/shared/JsonView.js.map +0 -1
- package/lib/module/features/ClipboardFeature.js +0 -12
- package/lib/module/features/ClipboardFeature.js.map +0 -1
- package/lib/module/features/ConsoleLogFeature.js +0 -93
- package/lib/module/features/ConsoleLogFeature.js.map +0 -1
- package/lib/module/features/EnvironmentFeature.js.map +0 -1
- package/lib/module/features/NavigationLogFeature.js +0 -54
- package/lib/module/features/NavigationLogFeature.js.map +0 -1
- package/lib/module/features/NetworkFeature.js +0 -322
- package/lib/module/features/NetworkFeature.js.map +0 -1
- package/lib/module/features/ThirdPartyLibsFeature.js.map +0 -1
- package/lib/module/features/TrackFeature.js +0 -49
- package/lib/module/features/TrackFeature.js.map +0 -1
- package/lib/module/features/ZustandLogFeature.js +0 -69
- package/lib/module/features/ZustandLogFeature.js.map +0 -1
- package/lib/module/hooks/useNavigationLogger.js.map +0 -1
- package/lib/module/hooks/useSlideDetailAnimation.js.map +0 -1
- package/lib/module/initialize.js +0 -156
- package/lib/module/initialize.js.map +0 -1
- package/lib/module/native/NativeDebugLibs.js.map +0 -1
- package/lib/module/utils/constants.js +0 -130
- package/lib/module/utils/constants.js.map +0 -1
- package/lib/typescript/src/components/ClipboardTab.d.ts +0 -4
- package/lib/typescript/src/components/ClipboardTab.d.ts.map +0 -1
- package/lib/typescript/src/components/ConsoleLogTab.d.ts.map +0 -1
- package/lib/typescript/src/components/EnvironmentTab.d.ts.map +0 -1
- package/lib/typescript/src/components/FloatPanelView.d.ts +0 -64
- package/lib/typescript/src/components/FloatPanelView.d.ts.map +0 -1
- package/lib/typescript/src/components/NavigationLogTab.d.ts.map +0 -1
- package/lib/typescript/src/components/NetworkLogTab.d.ts.map +0 -1
- package/lib/typescript/src/components/ThirdPartyLibsTab.d.ts.map +0 -1
- package/lib/typescript/src/components/TrackLogTab.d.ts.map +0 -1
- package/lib/typescript/src/components/ZustandLogTab.d.ts.map +0 -1
- package/lib/typescript/src/components/shared/CollapsibleSection.d.ts.map +0 -1
- package/lib/typescript/src/components/shared/CopyButton.d.ts.map +0 -1
- package/lib/typescript/src/components/shared/JsonView.d.ts.map +0 -1
- package/lib/typescript/src/features/ClipboardFeature.d.ts +0 -3
- package/lib/typescript/src/features/ClipboardFeature.d.ts.map +0 -1
- package/lib/typescript/src/features/ConsoleLogFeature.d.ts +0 -7
- package/lib/typescript/src/features/ConsoleLogFeature.d.ts.map +0 -1
- package/lib/typescript/src/features/EnvironmentFeature.d.ts.map +0 -1
- package/lib/typescript/src/features/NavigationLogFeature.d.ts.map +0 -1
- package/lib/typescript/src/features/NetworkFeature.d.ts +0 -28
- package/lib/typescript/src/features/NetworkFeature.d.ts.map +0 -1
- package/lib/typescript/src/features/ThirdPartyLibsFeature.d.ts +0 -3
- package/lib/typescript/src/features/ThirdPartyLibsFeature.d.ts.map +0 -1
- package/lib/typescript/src/features/TrackFeature.d.ts.map +0 -1
- package/lib/typescript/src/features/ZustandLogFeature.d.ts.map +0 -1
- package/lib/typescript/src/hooks/useNavigationLogger.d.ts.map +0 -1
- package/lib/typescript/src/hooks/useSlideDetailAnimation.d.ts.map +0 -1
- package/lib/typescript/src/initialize.d.ts +0 -51
- package/lib/typescript/src/initialize.d.ts.map +0 -1
- package/lib/typescript/src/native/NativeDebugLibs.d.ts.map +0 -1
- package/lib/typescript/src/utils/constants.d.ts +0 -96
- package/lib/typescript/src/utils/constants.d.ts.map +0 -1
- package/src/components/ConsoleLogTab.tsx +0 -209
- package/src/components/FloatPanelView.tsx +0 -714
- package/src/components/NetworkLogTab.tsx +0 -411
- package/src/components/TrackLogTab.tsx +0 -245
- package/src/components/ZustandLogTab.tsx +0 -305
- package/src/features/ClipboardFeature.ts +0 -11
- package/src/features/ConsoleLogFeature.ts +0 -118
- package/src/features/NavigationLogFeature.ts +0 -74
- package/src/features/NetworkFeature.ts +0 -488
- package/src/features/TrackFeature.ts +0 -69
- package/src/initialize.ts +0 -214
- package/src/utils/constants.ts +0 -91
- /package/lib/commonjs/{components → ui}/shared/JsonView.js +0 -0
- /package/lib/commonjs/{hooks → ui/shared}/useSlideDetailAnimation.js +0 -0
- /package/lib/module/{components → ui}/shared/JsonView.js +0 -0
- /package/lib/module/{hooks → ui/shared}/useSlideDetailAnimation.js +0 -0
- /package/lib/typescript/src/{components → ui}/shared/CollapsibleSection.d.ts +0 -0
- /package/lib/typescript/src/{components → ui}/shared/CopyButton.d.ts +0 -0
- /package/lib/typescript/src/{components → ui}/shared/JsonView.d.ts +0 -0
- /package/lib/typescript/src/{hooks → ui/shared}/useSlideDetailAnimation.d.ts +0 -0
- /package/src/{native/NativeDebugLibs.ts → features/thirdPartyLibs/nativeDebugLibs.ts} +0 -0
- /package/src/{components → ui}/shared/JsonView.tsx +0 -0
- /package/src/{hooks → ui/shared}/useSlideDetailAnimation.ts +0 -0
package/src/initialize.ts
DELETED
|
@@ -1,214 +0,0 @@
|
|
|
1
|
-
import { DebugToolkit } from './core/DebugToolkit';
|
|
2
|
-
import { createNetworkFeature } from './features/NetworkFeature';
|
|
3
|
-
import type { NetworkFeatureConfig } from './features/NetworkFeature';
|
|
4
|
-
import { createConsoleLogFeature } from './features/ConsoleLogFeature';
|
|
5
|
-
import type { ConsoleFeatureConfig } from './features/ConsoleLogFeature';
|
|
6
|
-
import { createZustandLogFeature } from './features/ZustandLogFeature';
|
|
7
|
-
import type { ZustandFeatureConfig } from './features/ZustandLogFeature';
|
|
8
|
-
import { createNavigationLogFeature } from './features/NavigationLogFeature';
|
|
9
|
-
import type { NavigationFeatureConfig } from './features/NavigationLogFeature';
|
|
10
|
-
import { createTrackFeature } from './features/TrackFeature';
|
|
11
|
-
import type { TrackFeatureConfig } from './features/TrackFeature';
|
|
12
|
-
import { createThirdPartyLibsFeature } from './features/ThirdPartyLibsFeature';
|
|
13
|
-
import { createEnvironmentFeature } from './features/EnvironmentFeature';
|
|
14
|
-
import { createClipboardFeature } from './features/ClipboardFeature';
|
|
15
|
-
import { NativeDebugLibs } from './native/NativeDebugLibs';
|
|
16
|
-
import type {
|
|
17
|
-
BuiltInFeatureName,
|
|
18
|
-
DebugFeature,
|
|
19
|
-
DebugFeatureInput,
|
|
20
|
-
} from './types';
|
|
21
|
-
|
|
22
|
-
export const isDebugMode = __DEV__;
|
|
23
|
-
|
|
24
|
-
/** Feature-specific configuration map */
|
|
25
|
-
export interface FeatureConfigs {
|
|
26
|
-
network?: boolean | NetworkFeatureConfig;
|
|
27
|
-
console?: boolean | ConsoleFeatureConfig;
|
|
28
|
-
zustand?: boolean | ZustandFeatureConfig;
|
|
29
|
-
navigation?: boolean | NavigationFeatureConfig;
|
|
30
|
-
track?: boolean | TrackFeatureConfig;
|
|
31
|
-
thirdPartyLibs?: boolean;
|
|
32
|
-
environment?: Parameters<typeof createEnvironmentFeature>[0];
|
|
33
|
-
clipboard?: boolean;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export interface InitializeOptions {
|
|
37
|
-
doraemonProductId?: string;
|
|
38
|
-
enabled?: boolean;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/** Registry mapping feature names to creator functions */
|
|
42
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
43
|
-
const featureRegistry: Record<BuiltInFeatureName, (config?: any) => DebugFeature<any>> = {
|
|
44
|
-
network: createNetworkFeature,
|
|
45
|
-
console: createConsoleLogFeature,
|
|
46
|
-
zustand: createZustandLogFeature,
|
|
47
|
-
navigation: createNavigationLogFeature,
|
|
48
|
-
track: createTrackFeature,
|
|
49
|
-
thirdPartyLibs: createThirdPartyLibsFeature,
|
|
50
|
-
environment: createEnvironmentFeature,
|
|
51
|
-
clipboard: createClipboardFeature,
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
const DEFAULT_FEATURES: BuiltInFeatureName[] = [
|
|
55
|
-
'network',
|
|
56
|
-
'console',
|
|
57
|
-
'navigation',
|
|
58
|
-
'zustand',
|
|
59
|
-
'track',
|
|
60
|
-
'thirdPartyLibs',
|
|
61
|
-
'clipboard',
|
|
62
|
-
];
|
|
63
|
-
|
|
64
|
-
function resolveFeatures(
|
|
65
|
-
features: DebugFeatureInput[],
|
|
66
|
-
): DebugFeature<any>[] {
|
|
67
|
-
return features.reduce<DebugFeature<any>[]>((resolvedFeatures, identifier) => {
|
|
68
|
-
let feature: DebugFeature<any> | null = null;
|
|
69
|
-
|
|
70
|
-
if (typeof identifier === 'string') {
|
|
71
|
-
const creator = featureRegistry[identifier as BuiltInFeatureName];
|
|
72
|
-
if (!creator) {
|
|
73
|
-
console.warn(`[DebugToolkit] Unknown feature: "${identifier}"`);
|
|
74
|
-
return resolvedFeatures;
|
|
75
|
-
}
|
|
76
|
-
feature = creator();
|
|
77
|
-
} else if (typeof identifier === 'function') {
|
|
78
|
-
try {
|
|
79
|
-
feature = identifier();
|
|
80
|
-
} catch (error) {
|
|
81
|
-
console.error('[DebugToolkit] Feature creator failed:', error);
|
|
82
|
-
return resolvedFeatures;
|
|
83
|
-
}
|
|
84
|
-
} else if (identifier && typeof identifier === 'object' && identifier.name) {
|
|
85
|
-
feature = identifier;
|
|
86
|
-
} else {
|
|
87
|
-
console.warn('[DebugToolkit] Invalid feature identifier:', identifier);
|
|
88
|
-
return resolvedFeatures;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
if (feature) {
|
|
92
|
-
resolvedFeatures.push(feature);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
return resolvedFeatures;
|
|
96
|
-
}, []);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/**
|
|
100
|
-
* Resolve feature configs to DebugFeature instances.
|
|
101
|
-
*/
|
|
102
|
-
function resolveFeatureConfigs(configs: FeatureConfigs): DebugFeature<any>[] {
|
|
103
|
-
const features: DebugFeature<any>[] = [];
|
|
104
|
-
|
|
105
|
-
const entries = Object.entries(configs) as [BuiltInFeatureName, unknown][];
|
|
106
|
-
|
|
107
|
-
for (const [name, config] of entries) {
|
|
108
|
-
// Skip false/explicitly disabled
|
|
109
|
-
if (config === false) continue;
|
|
110
|
-
|
|
111
|
-
const creator = featureRegistry[name];
|
|
112
|
-
if (!creator) {
|
|
113
|
-
console.warn(`[DebugToolkit] Unknown feature: "${name}"`);
|
|
114
|
-
continue;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
// config === true or undefined → use defaults
|
|
118
|
-
if (config === true || config === undefined) {
|
|
119
|
-
features.push(creator());
|
|
120
|
-
} else if (typeof config === 'object') {
|
|
121
|
-
features.push(creator(config as Record<string, unknown>));
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
return features;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* Initialize the debug toolkit.
|
|
130
|
-
*
|
|
131
|
-
* @param featuresOrOptions - Either an array of feature inputs (legacy), or a full config object.
|
|
132
|
-
* @param options - Options when using legacy array mode.
|
|
133
|
-
*
|
|
134
|
-
* @example
|
|
135
|
-
* // Legacy mode (still supported)
|
|
136
|
-
* initializeDebugToolkit(['network', 'console'], { enabled: true });
|
|
137
|
-
*
|
|
138
|
-
* // Config object mode (recommended)
|
|
139
|
-
* initializeDebugToolkit({
|
|
140
|
-
* features: {
|
|
141
|
-
* network: { maxLogs: 100 },
|
|
142
|
-
* console: true,
|
|
143
|
-
* track: true,
|
|
144
|
-
* environment: { environments: [...] },
|
|
145
|
-
* },
|
|
146
|
-
* enabled: true,
|
|
147
|
-
* });
|
|
148
|
-
*/
|
|
149
|
-
export function initializeDebugToolkit(
|
|
150
|
-
featuresOrOptions?: DebugFeatureInput[] | {
|
|
151
|
-
features?: FeatureConfigs;
|
|
152
|
-
enabled?: boolean;
|
|
153
|
-
doraemonProductId?: string;
|
|
154
|
-
},
|
|
155
|
-
options: InitializeOptions = {},
|
|
156
|
-
): DebugToolkit | null {
|
|
157
|
-
// Determine which mode we're in
|
|
158
|
-
let resolvedFeatures: DebugFeature<any>[];
|
|
159
|
-
let enabled: boolean;
|
|
160
|
-
let doraemonProductId: string | undefined;
|
|
161
|
-
|
|
162
|
-
if (Array.isArray(featuresOrOptions)) {
|
|
163
|
-
// Legacy mode
|
|
164
|
-
resolvedFeatures = resolveFeatures(featuresOrOptions);
|
|
165
|
-
enabled = options.enabled ?? isDebugMode;
|
|
166
|
-
doraemonProductId = options.doraemonProductId;
|
|
167
|
-
} else if (featuresOrOptions && typeof featuresOrOptions === 'object' && !('name' in featuresOrOptions)) {
|
|
168
|
-
// Config object mode
|
|
169
|
-
const config = featuresOrOptions;
|
|
170
|
-
enabled = config.enabled ?? isDebugMode;
|
|
171
|
-
doraemonProductId = config.doraemonProductId;
|
|
172
|
-
|
|
173
|
-
if (config.features) {
|
|
174
|
-
resolvedFeatures = resolveFeatureConfigs(config.features);
|
|
175
|
-
} else {
|
|
176
|
-
resolvedFeatures = resolveFeatures(DEFAULT_FEATURES);
|
|
177
|
-
}
|
|
178
|
-
} else {
|
|
179
|
-
// Default - no args or single feature
|
|
180
|
-
resolvedFeatures = resolveFeatures(
|
|
181
|
-
featuresOrOptions ? [featuresOrOptions as DebugFeatureInput] : DEFAULT_FEATURES,
|
|
182
|
-
);
|
|
183
|
-
enabled = options.enabled ?? isDebugMode;
|
|
184
|
-
doraemonProductId = options.doraemonProductId;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
try {
|
|
188
|
-
const toolkit = DebugToolkit.getInstance(enabled);
|
|
189
|
-
toolkit.setEnabled(enabled);
|
|
190
|
-
|
|
191
|
-
if (!enabled) {
|
|
192
|
-
toolkit.reset();
|
|
193
|
-
return toolkit;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// Initialize native debug libs if configured
|
|
197
|
-
if (doraemonProductId) {
|
|
198
|
-
NativeDebugLibs.installDoraemonKit(doraemonProductId);
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
toolkit.replaceFeatures(resolvedFeatures);
|
|
202
|
-
|
|
203
|
-
if (toolkit.hasFeatures()) {
|
|
204
|
-
toolkit.showPanel();
|
|
205
|
-
} else {
|
|
206
|
-
toolkit.hidePanel();
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
return toolkit;
|
|
210
|
-
} catch (error) {
|
|
211
|
-
console.error('[DebugToolkit] Initialization failed:', error);
|
|
212
|
-
return null;
|
|
213
|
-
}
|
|
214
|
-
}
|
package/src/utils/constants.ts
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import { Dimensions } from 'react-native';
|
|
2
|
-
|
|
3
|
-
const { width: screenWidth, height: screenHeight } = Dimensions.get('window');
|
|
4
|
-
|
|
5
|
-
export const Layout = {
|
|
6
|
-
screenWidth,
|
|
7
|
-
screenHeight,
|
|
8
|
-
iconSize: 52,
|
|
9
|
-
} as const;
|
|
10
|
-
|
|
11
|
-
// Apple iOS System Color Palette
|
|
12
|
-
export const Colors = {
|
|
13
|
-
// System
|
|
14
|
-
primary: '#007AFF',
|
|
15
|
-
text: '#1C1C1E',
|
|
16
|
-
textSecondary: '#8E8E93',
|
|
17
|
-
textLight: '#C7C7CC',
|
|
18
|
-
border: '#E5E5EA',
|
|
19
|
-
opaqueSeparator: '#C6C6C8',
|
|
20
|
-
background: '#F2F2F7',
|
|
21
|
-
surface: '#FFFFFF',
|
|
22
|
-
|
|
23
|
-
// Semantic
|
|
24
|
-
success: '#34C759',
|
|
25
|
-
error: '#FF3B30',
|
|
26
|
-
warning: '#FF9500',
|
|
27
|
-
info: '#5AC8FA',
|
|
28
|
-
|
|
29
|
-
// iOS Accent Colors
|
|
30
|
-
blue: '#007AFF',
|
|
31
|
-
green: '#34C759',
|
|
32
|
-
indigo: '#5856D6',
|
|
33
|
-
orange: '#FF9500',
|
|
34
|
-
pink: '#FF2D55',
|
|
35
|
-
purple: '#AF52DE',
|
|
36
|
-
red: '#FF3B30',
|
|
37
|
-
teal: '#5AC8FA',
|
|
38
|
-
yellow: '#FFCC00',
|
|
39
|
-
|
|
40
|
-
// HTTP Method Colors
|
|
41
|
-
get: '#007AFF',
|
|
42
|
-
post: '#34C759',
|
|
43
|
-
put: '#FF9500',
|
|
44
|
-
delete: '#FF3B30',
|
|
45
|
-
patch: '#5AC8FA',
|
|
46
|
-
} as const;
|
|
47
|
-
|
|
48
|
-
export const getMethodColor = (method: string): string => {
|
|
49
|
-
switch (method.toUpperCase()) {
|
|
50
|
-
case 'GET': return Colors.get;
|
|
51
|
-
case 'POST': return Colors.post;
|
|
52
|
-
case 'PUT': return Colors.put;
|
|
53
|
-
case 'DELETE': return Colors.delete;
|
|
54
|
-
case 'PATCH': return Colors.patch;
|
|
55
|
-
default: return Colors.textSecondary;
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
// iOS 8pt Grid Spacing
|
|
60
|
-
export const Spacing = {
|
|
61
|
-
xs: 4,
|
|
62
|
-
sm: 8,
|
|
63
|
-
md: 12,
|
|
64
|
-
lg: 16,
|
|
65
|
-
xl: 20,
|
|
66
|
-
xxl: 24,
|
|
67
|
-
} as const;
|
|
68
|
-
|
|
69
|
-
// iOS Border Radius
|
|
70
|
-
export const Radius = {
|
|
71
|
-
sm: 8,
|
|
72
|
-
md: 12,
|
|
73
|
-
lg: 16,
|
|
74
|
-
xl: 20,
|
|
75
|
-
full: 999,
|
|
76
|
-
} as const;
|
|
77
|
-
|
|
78
|
-
// iOS Typography Scale
|
|
79
|
-
export const Typography = {
|
|
80
|
-
largeTitle: { fontSize: 34, fontWeight: '700' as const },
|
|
81
|
-
title1: { fontSize: 28, fontWeight: '700' as const },
|
|
82
|
-
title2: { fontSize: 22, fontWeight: '700' as const },
|
|
83
|
-
title3: { fontSize: 20, fontWeight: '600' as const },
|
|
84
|
-
headline: { fontSize: 17, fontWeight: '600' as const },
|
|
85
|
-
body: { fontSize: 17, fontWeight: '400' as const },
|
|
86
|
-
callout: { fontSize: 16, fontWeight: '400' as const },
|
|
87
|
-
subheadline: { fontSize: 15, fontWeight: '400' as const },
|
|
88
|
-
footnote: { fontSize: 13, fontWeight: '400' as const },
|
|
89
|
-
caption1: { fontSize: 12, fontWeight: '400' as const },
|
|
90
|
-
caption2: { fontSize: 11, fontWeight: '400' as const },
|
|
91
|
-
} as const;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|