nx-react-native-cli 2.3.0 → 2.4.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 +5 -5
- package/lib/index.cjs +33 -33
- package/package.json +4 -3
- package/templates/19.7.0/apps/mobile/.ignorefile +147 -0
- package/templates/21.2.2/.eslintrc.json +288 -0
- package/templates/21.2.2/.prettierignore +9 -0
- package/templates/21.2.2/.prettierrc +13 -0
- package/templates/21.2.2/.ruby-version +1 -0
- package/templates/21.2.2/apps/mobile/.eslintrc.json +38 -0
- package/templates/21.2.2/apps/mobile/.ignorefile +147 -0
- package/templates/21.2.2/apps/mobile/Gemfile +20 -0
- package/templates/21.2.2/apps/mobile/android/app/build.gradle +159 -0
- package/templates/21.2.2/apps/mobile/android/app/src/dev/res/values/strings.xml +3 -0
- package/templates/21.2.2/apps/mobile/android/app/src/main/java/com/mobile/MainActivity.kt +28 -0
- package/templates/21.2.2/apps/mobile/android/app/src/main/java/com/mobile/MainApplication.kt +44 -0
- package/templates/21.2.2/apps/mobile/android/app/src/production/res/values/strings.xml +3 -0
- package/templates/21.2.2/apps/mobile/android/settings.gradle +6 -0
- package/templates/21.2.2/apps/mobile/ios/Mobile/AppDelegate.mm +53 -0
- package/templates/21.2.2/apps/mobile/jest.config.ts +12 -0
- package/templates/21.2.2/apps/mobile/metro.config.js +42 -0
- package/templates/21.2.2/apps/mobile/project.json +107 -0
- package/templates/21.2.2/apps/mobile/src/main.tsx +5 -0
- package/templates/21.2.2/apps/mobile/test-setup.ts +1 -0
- package/templates/21.2.2/apps/mobile/tsconfig.app.json +34 -0
- package/templates/shared/apps/mobile/.env.template +3 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/KeyboardAccessory/keyboard-accessory.component.tsx +2 -2
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/TextInput/bottom-sheet-text-input.component.tsx +9 -8
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/TextInput/text-input-area.component.tsx +4 -2
- package/templates/{.eslintrc.json → 19.7.0/.eslintrc.json} +0 -0
- package/templates/{.prettierignore → 19.7.0/.prettierignore} +0 -0
- package/templates/{.prettierrc → 19.7.0/.prettierrc} +0 -0
- package/templates/{.ruby-version → 19.7.0/.ruby-version} +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/.eslintrc.json +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/Gemfile +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/android/app/build.gradle +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/android/app/src/dev/res/values/strings.xml +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/android/app/src/main/java/com/appsmobile/MainActivity.kt +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/android/app/src/main/java/com/appsmobile/MainApplication.kt +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/android/app/src/production/res/values/strings.xml +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/android/settings.gradle +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/ios/AppsMobile/AppDelegate.mm +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/jest.config.ts +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/metro.config.js +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/project.json +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/src/main.tsx +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/test-setup.ts +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/tsconfig.app.json +0 -0
- package/templates/{apps → 19.7.0/apps}/mobile/tsconfig.spec.json +0 -0
- package/templates/{.husky → shared/.husky}/pre-commit +0 -0
- package/templates/{.husky → shared/.husky}/pre-push +0 -0
- package/templates/{.ignorefile → shared/.ignorefile} +0 -0
- package/templates/{.nvmrc → shared/.nvmrc} +0 -0
- package/templates/{.vscode → shared/.vscode}/extensions.json +0 -0
- package/templates/{.vscode → shared/.vscode}/settings.json +0 -0
- package/templates/{apps/mobile/.env.template → shared/apps/mobile/.env} +0 -0
- package/templates/{apps → shared/apps}/mobile/android/app/proguard-rules.pro +0 -0
- package/templates/{apps → shared/apps}/mobile/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- package/templates/{apps → shared/apps}/mobile/android/build.gradle +0 -0
- package/templates/{apps → shared/apps}/mobile/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/templates/{apps → shared/apps}/mobile/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- package/templates/{apps → shared/apps}/mobile/android/gradle.properties +0 -0
- package/templates/{apps → shared/apps}/mobile/android/gradlew +0 -0
- package/templates/{apps → shared/apps}/mobile/android/gradlew.bat +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterBlack.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterBlackItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterBold.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterBoldItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterExtraBold.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterExtraBoldItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterExtraLight.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterExtraLightItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterLight.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterLightItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterMedium.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterMediumItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterRegular.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterSemiBold.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterSemiBoldItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterThin.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/assets/fonts/InterThinItalic.ttf +0 -0
- package/templates/{apps → shared/apps}/mobile/babel.config.json +0 -0
- package/templates/{apps → shared/apps}/mobile/export-node-binary.sh +0 -0
- package/templates/{apps → shared/apps}/mobile/fastlane/.env.template +0 -0
- package/templates/{apps → shared/apps}/mobile/fastlane/Fastfile +0 -0
- package/templates/{apps → shared/apps}/mobile/fastlane/Matchfile +0 -0
- package/templates/{apps → shared/apps}/mobile/fastlane/Pluginfile +0 -0
- package/templates/{apps → shared/apps}/mobile/fastlane/README.md +0 -0
- package/templates/{apps → shared/apps}/mobile/package.json +0 -0
- package/templates/{apps → shared/apps}/mobile/react-native.config.js +0 -0
- package/templates/{apps → shared/apps}/mobile/src/app/index.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/assets/images/.gitkeep +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/BottomSheet/bottom-sheet.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/BottomSheet/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Button/button.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Button/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Divider/divider-component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Divider/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/ExcludedEdges/excluded-edges.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/ExcludedEdges/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/InputLayout/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/InputLayout/input-layout.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/KeyboardAccessory/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/KeyboardAwareScrollView/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/KeyboardAwareScrollView/keyboard-aware-scroll-view.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/ListLoadingItem/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/ListLoadingItem/list-loading-item.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Modal/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Modal/modal.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/ScreenLoader/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/ScreenLoader/screen-loader.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Skeleton/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/Skeleton/skeleton.component.tsx +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/TextInput/constants.ts +6 -6
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/TextInput/index.ts +0 -0
- package/templates/{apps → shared/apps}/mobile/src/components/atoms/TextInput/text-input.component.tsx +1 -1
- /package/templates/{apps → shared/apps}/mobile/src/components/atoms/TextInput/util.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/atoms/Typography/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/atoms/Typography/typography.component.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/atoms/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/BackButton/back-button.component.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/BackButton/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/BottomActionsContainer/BottomActionsContainer.component.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/BottomActionsContainer/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/ScreenContainer/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/ScreenContainer/screen-container.component.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/ScreenHeader/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/ScreenHeader/screen-header.component.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/StorageManager/StorageManager.component.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/StorageManager/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/molecules/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/components/organisms/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/config/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/dimens/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/env.d.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useAppState.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useApplicationDimensions.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useDebounce.hook.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useGetLayoutHeight.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useGetLayoutWidth.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useNavigation.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useShakeAnimation.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useTextInputChangeFocus.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useThrottle.hook.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/hooks/useToggleDarkMode.hook.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/icons/arrow-left.svg +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/icons/cross.svg +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/icons/gear.svg +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/icons/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/icons/keyboard-hide.svg +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/routes/index.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/routes/privateRoutes.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/routes/publicRoutes.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/routes/routes.enum.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/routes/screen-options.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/routes/screens.enum.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/screens/HomeScreen/home.screen.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/screens/LandingScreen/landing.screen.tsx +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/stores/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/stores/local-storage.store.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/stores/mmkvStorage.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/tailwind/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/types/component.type.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/types/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/utils/axios.util.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/utils/index.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/utils/log.util.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/src/utils/route.util.ts +0 -0
- /package/templates/{apps → shared/apps}/mobile/tailwind.config.js +0 -0
- /package/templates/{check-env.sh → shared/check-env.sh} +0 -0
- /package/templates/{clean-generated-outputs.sh → shared/clean-generated-outputs.sh} +0 -0
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/templates/{apps → shared/apps}/mobile/android/gradle/wrapper/gradle-wrapper.properties
RENAMED
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
package/templates/{apps → shared/apps}/mobile/src/components/atoms/Button/button.component.tsx
RENAMED
|
File without changes
|
|
File without changes
|
package/templates/{apps → shared/apps}/mobile/src/components/atoms/Divider/divider-component.tsx
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/templates/{apps → shared/apps}/mobile/src/components/atoms/KeyboardAccessory/index.ts
RENAMED
|
File without changes
|
package/templates/{apps → shared/apps}/mobile/src/components/atoms/KeyboardAwareScrollView/index.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/templates/{apps → shared/apps}/mobile/src/components/atoms/Modal/modal.component.tsx
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/templates/{apps → shared/apps}/mobile/src/components/atoms/Skeleton/skeleton.component.tsx
RENAMED
|
File without changes
|
|
@@ -4,49 +4,49 @@ export const TEXT_INPUT_MIN_HEIGHT = 56;
|
|
|
4
4
|
export const TEXT_INPUT_LINE_HEIGHT = 21;
|
|
5
5
|
|
|
6
6
|
export const DefaultPhonePadInputProps: TextInputProps = {
|
|
7
|
-
keyboardAppearance: 'dark',
|
|
8
7
|
autoCapitalize: 'none',
|
|
9
8
|
autoCorrect: true,
|
|
9
|
+
keyboardAppearance: 'dark',
|
|
10
10
|
keyboardType: 'phone-pad',
|
|
11
11
|
numberOfLines: 1,
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
export const DefaultNumberPadInputProps: TextInputProps = {
|
|
15
|
-
keyboardAppearance: 'dark',
|
|
16
15
|
autoCapitalize: 'none',
|
|
17
16
|
autoCorrect: true,
|
|
17
|
+
keyboardAppearance: 'dark',
|
|
18
18
|
keyboardType: 'number-pad',
|
|
19
19
|
numberOfLines: 1,
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
export const DefaultNumericInputProps: TextInputProps = {
|
|
23
|
-
keyboardAppearance: 'dark',
|
|
24
23
|
autoCapitalize: 'none',
|
|
25
24
|
autoCorrect: true,
|
|
25
|
+
keyboardAppearance: 'dark',
|
|
26
26
|
keyboardType: 'numeric',
|
|
27
27
|
numberOfLines: 1,
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
export const DefaultNameInputProps: TextInputProps = {
|
|
31
|
-
keyboardAppearance: 'dark',
|
|
32
31
|
autoCapitalize: 'words',
|
|
33
32
|
autoCorrect: true,
|
|
33
|
+
keyboardAppearance: 'dark',
|
|
34
34
|
keyboardType: 'default',
|
|
35
35
|
numberOfLines: 1,
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
export const DefaultEmailInputProps: TextInputProps = {
|
|
39
|
-
keyboardAppearance: 'dark',
|
|
40
39
|
autoCapitalize: 'none',
|
|
41
40
|
autoCorrect: true,
|
|
41
|
+
keyboardAppearance: 'dark',
|
|
42
42
|
keyboardType: 'email-address',
|
|
43
43
|
numberOfLines: 1,
|
|
44
44
|
};
|
|
45
45
|
|
|
46
46
|
export const DefaultTextAreaInputProps: TextInputProps = {
|
|
47
|
-
keyboardAppearance: 'dark',
|
|
48
47
|
autoCapitalize: 'sentences',
|
|
49
48
|
autoCorrect: true,
|
|
49
|
+
keyboardAppearance: 'dark',
|
|
50
50
|
keyboardType: 'default',
|
|
51
51
|
numberOfLines: 3,
|
|
52
52
|
};
|
|
File without changes
|
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
|
|
11
11
|
import { DefaultNameInputProps } from './constants';
|
|
12
12
|
|
|
13
|
+
import { CrossIcon } from '@/icons';
|
|
13
14
|
import {
|
|
14
15
|
colors,
|
|
15
16
|
defaultInputContainerStyle,
|
|
@@ -19,7 +20,6 @@ import {
|
|
|
19
20
|
tw,
|
|
20
21
|
} from '@/tailwind';
|
|
21
22
|
import { DefaultComponentProps } from '@/types/component.type';
|
|
22
|
-
import { CrossIcon } from '@/icons';
|
|
23
23
|
|
|
24
24
|
export type TextInputProps = DefaultComponentProps &
|
|
25
25
|
RNTextInputProps & {
|
|
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
|
/package/templates/{apps → shared/apps}/mobile/src/components/molecules/ScreenContainer/index.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/templates/{apps → shared/apps}/mobile/src/components/molecules/ScreenHeader/index.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/templates/{apps → shared/apps}/mobile/src/components/molecules/StorageManager/index.ts
RENAMED
|
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
|
|
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
|
|
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
|
|
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
|