codeforlife 2.11.9 → 2.11.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/endpoints/index.d.ts +2 -9
- package/dist/api/index.d.ts +2 -5
- package/dist/components/form/index.d.ts +2 -14
- package/dist/components/index.d.ts +2 -17
- package/dist/components/page/index.d.ts +2 -5
- package/dist/components/router/index.d.ts +2 -6
- package/dist/components/table/index.d.ts +2 -3
- package/dist/features/index.d.ts +2 -4
- package/dist/hooks/index.d.ts +2 -5
- package/dist/index.d.ts +2 -2
- package/dist/middlewares/index.d.ts +2 -1
- package/dist/server/App.d.ts +4 -15
- package/dist/server/entry.cjs.js +1 -1
- package/dist/server/entry.cjs.js.map +1 -1
- package/dist/server/entry.d.ts +2 -16
- package/dist/server/entry.es.js +23 -17
- package/dist/server/entry.es.js.map +1 -1
- package/dist/server/server.d.ts +4 -55
- package/dist/settings/index.d.ts +2 -3
- package/dist/slices/index.d.ts +2 -2
- package/dist/src/api/endpoints/index.d.ts +9 -0
- package/dist/src/api/index.d.ts +5 -0
- package/dist/src/components/form/index.d.ts +14 -0
- package/dist/src/components/index.d.ts +17 -0
- package/dist/src/components/page/index.d.ts +5 -0
- package/dist/src/components/router/index.d.ts +6 -0
- package/dist/src/components/table/index.d.ts +3 -0
- package/dist/src/features/index.d.ts +4 -0
- package/dist/src/hooks/index.d.ts +5 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/middlewares/index.d.ts +1 -0
- package/dist/src/server/App.d.ts +15 -0
- package/dist/src/server/entry.d.ts +16 -0
- package/dist/src/server/server.d.ts +55 -0
- package/dist/src/settings/index.d.ts +3 -0
- package/dist/src/slices/index.d.ts +2 -0
- package/dist/src/theme/components/index.d.ts +3 -0
- package/dist/src/theme/index.d.ts +7 -0
- package/dist/src/utils/api.d.ts +72 -0
- package/dist/src/utils/auth.d.ts +28 -0
- package/dist/src/utils/form.d.ts +25 -0
- package/dist/src/utils/general.d.ts +30 -0
- package/dist/src/utils/router.d.ts +19 -0
- package/dist/src/utils/schema.d.ts +43 -0
- package/dist/src/utils/store.d.ts +10 -0
- package/dist/src/utils/test.d.ts +53 -0
- package/dist/src/utils/theme.d.ts +11 -0
- package/dist/src/utils/window.d.ts +2 -0
- package/dist/theme/components/index.d.ts +4 -3
- package/dist/theme/index.d.ts +2 -7
- package/dist/utils/api.d.ts +2 -72
- package/dist/utils/auth.d.ts +2 -28
- package/dist/utils/form.d.ts +2 -25
- package/dist/utils/general.d.ts +2 -30
- package/dist/utils/router.d.ts +2 -19
- package/dist/utils/schema.d.ts +2 -43
- package/dist/utils/store.d.ts +2 -10
- package/dist/utils/test.d.ts +2 -53
- package/dist/utils/theme.d.ts +2 -11
- package/dist/utils/window.d.ts +2 -2
- package/package.json +1 -1
- /package/dist/{api → src/api}/createApi.d.ts +0 -0
- /package/dist/{api → src/api}/endpoints/authFactor.d.ts +0 -0
- /package/dist/{api → src/api}/endpoints/klass.d.ts +0 -0
- /package/dist/{api → src/api}/endpoints/school.d.ts +0 -0
- /package/dist/{api → src/api}/endpoints/session.d.ts +0 -0
- /package/dist/{api → src/api}/endpoints/user.d.ts +0 -0
- /package/dist/{api → src/api}/models.d.ts +0 -0
- /package/dist/{api → src/api}/schemas.d.ts +0 -0
- /package/dist/{api → src/api}/tagTypes.d.ts +0 -0
- /package/dist/{api → src/api}/urls.d.ts +0 -0
- /package/dist/{components → src/components}/ClickableTooltip.d.ts +0 -0
- /package/dist/{components → src/components}/CopyIconButton.d.ts +0 -0
- /package/dist/{components → src/components}/CopyIconButton.test.d.ts +0 -0
- /package/dist/{components → src/components}/Countdown.d.ts +0 -0
- /package/dist/{components → src/components}/DownloadFileButton.d.ts +0 -0
- /package/dist/{components → src/components}/ElevatedAppBar.d.ts +0 -0
- /package/dist/{components → src/components}/Image.d.ts +0 -0
- /package/dist/{components → src/components}/InputFileButton.d.ts +0 -0
- /package/dist/{components → src/components}/ItemizedList.d.ts +0 -0
- /package/dist/{components → src/components}/OrderedGrid.d.ts +0 -0
- /package/dist/{components → src/components}/ScrollIntoViewLink.d.ts +0 -0
- /package/dist/{components → src/components}/SyncError.d.ts +0 -0
- /package/dist/{components → src/components}/TablePagination.d.ts +0 -0
- /package/dist/{components → src/components}/YouTubeVideo.d.ts +0 -0
- /package/dist/{components → src/components}/form/ApiAutocompleteField.d.ts +0 -0
- /package/dist/{components → src/components}/form/AutocompleteField.d.ts +0 -0
- /package/dist/{components → src/components}/form/CheckboxField.d.ts +0 -0
- /package/dist/{components → src/components}/form/CountryField.d.ts +0 -0
- /package/dist/{components → src/components}/form/DatePickerField.d.ts +0 -0
- /package/dist/{components → src/components}/form/EmailField.d.ts +0 -0
- /package/dist/{components → src/components}/form/FirstNameField.d.ts +0 -0
- /package/dist/{components → src/components}/form/Form.d.ts +0 -0
- /package/dist/{components → src/components}/form/OtpField.d.ts +0 -0
- /package/dist/{components → src/components}/form/PasswordField.d.ts +0 -0
- /package/dist/{components → src/components}/form/RepeatField.d.ts +0 -0
- /package/dist/{components → src/components}/form/SubmitButton.d.ts +0 -0
- /package/dist/{components → src/components}/form/TextField.d.ts +0 -0
- /package/dist/{components → src/components}/form/UkCountyField.d.ts +0 -0
- /package/dist/{components → src/components}/page/Banner.d.ts +0 -0
- /package/dist/{components → src/components}/page/Notification.d.ts +0 -0
- /package/dist/{components → src/components}/page/Page.d.ts +0 -0
- /package/dist/{components → src/components}/page/Section.d.ts +0 -0
- /package/dist/{components → src/components}/page/TabBar.d.ts +0 -0
- /package/dist/{components → src/components}/router/Link.d.ts +0 -0
- /package/dist/{components → src/components}/router/LinkButton.d.ts +0 -0
- /package/dist/{components → src/components}/router/LinkIconButton.d.ts +0 -0
- /package/dist/{components → src/components}/router/LinkListItem.d.ts +0 -0
- /package/dist/{components → src/components}/router/LinkTab.d.ts +0 -0
- /package/dist/{components → src/components}/router/Navigate.d.ts +0 -0
- /package/dist/{components → src/components}/table/CellStack.d.ts +0 -0
- /package/dist/{components → src/components}/table/Table.d.ts +0 -0
- /package/dist/{features → src/features}/InactiveDialog.d.ts +0 -0
- /package/dist/{features → src/features}/ScreenTimeDialog.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/api.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/auth.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/form.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/general.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/router.d.ts +0 -0
- /package/dist/{middlewares → src/middlewares}/session.d.ts +0 -0
- /package/dist/{scripts → src/scripts}/index.d.ts +0 -0
- /package/dist/{settings → src/settings}/custom.d.ts +0 -0
- /package/dist/{settings → src/settings}/vite.d.ts +0 -0
- /package/dist/{slices → src/slices}/createSlice.d.ts +0 -0
- /package/dist/{slices → src/slices}/session.d.ts +0 -0
- /package/dist/{theme → src/theme}/ThemedBox.d.ts +0 -0
- /package/dist/{theme → src/theme}/colors.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiAccordion.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiAutocomplete.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiButton.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiCardActions.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiCheckbox.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiContainer.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiDialog.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiFormControlLabel.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiFormHelperText.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiGrid.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiInputBase.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiLink.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiList.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiListItemText.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiMenu.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiMenuItem.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiSelect.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiTab.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiTable.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiTableBody.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiTableHead.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiTabs.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiTextField.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiToolbar.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/MuiTypography.d.ts +0 -0
- /package/dist/{theme → src/theme}/components/_components.d.ts +0 -0
- /package/dist/{theme → src/theme}/palette.d.ts +0 -0
- /package/dist/{theme → src/theme}/spacing.d.ts +0 -0
- /package/dist/{theme → src/theme}/typography.d.ts +0 -0
- /package/dist/{utils → src/utils}/api.test.d.ts +0 -0
- /package/dist/{utils → src/utils}/form.test.d.ts +0 -0
- /package/dist/{utils → src/utils}/general.test.d.ts +0 -0
- /package/dist/{utils → src/utils}/router.test.d.ts +0 -0
package/dist/utils/schema.d.ts
CHANGED
|
@@ -1,43 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
[k in keyof T]: T[k];
|
|
4
|
-
} : T;
|
|
5
|
-
export type MakeKeysOptional<T> = T extends AnyObject ? _<MakePartial<T>> : T;
|
|
6
|
-
export type ObjectFromShape<Shape extends ObjectShape> = MakeKeysOptional<_<TypeFromShape<Shape, AnyObject>>>;
|
|
7
|
-
export type ObjectSchemaFromShape<Shape extends ObjectShape> = ObjectSchema<_<TypeFromShape<Shape, AnyObject>>, AnyObject, _<DefaultFromShape<Shape>>, "">;
|
|
8
|
-
export type SchemaMap<TType, TContext = AnyObject, TDefault = any, TFlags extends Flags = ""> = NonNullable<TType> extends string ? StringSchema<TType extends undefined ? TType | undefined : TType, TContext, TDefault, TFlags> : NonNullable<TType> extends number ? NumberSchema<TType extends undefined ? TType | undefined : TType, TContext, TDefault, TFlags> : NonNullable<TType> extends boolean ? BooleanSchema<TType extends undefined ? TType | undefined : TType, TContext, TDefault, TFlags> : NonNullable<TType> extends Date ? DateSchema<TType extends undefined ? TType | undefined : TType, TContext, TDefault, TFlags> : NonNullable<TType> extends object ? ObjectSchema<TType extends undefined ? TType | undefined : TType, TContext, TDefault, TFlags> : Schema<TType, TContext, TDefault, TFlags>;
|
|
9
|
-
export declare function numericId(schema?: NumberSchema): NumberSchema<number | undefined, AnyObject, undefined, "">;
|
|
10
|
-
export type MatchesCharSetOptions = Partial<{
|
|
11
|
-
schema: StringSchema;
|
|
12
|
-
flags: string;
|
|
13
|
-
}>;
|
|
14
|
-
export declare function matchesCharSet(charSet: string, message: string, options?: MatchesCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
15
|
-
export type BuildCharSetOptions = MatchesCharSetOptions & Partial<{
|
|
16
|
-
spaces: boolean;
|
|
17
|
-
specialChars: string;
|
|
18
|
-
}>;
|
|
19
|
-
export declare function buildCharSet(charSet: string, description: string, options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
20
|
-
export declare function buildUnicodeCharSet(charSet: string, description: string, options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
21
|
-
export declare function asciiAlphaString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
22
|
-
export declare function lowercaseAsciiAlphaString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
23
|
-
export declare function uppercaseAsciiAlphaString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
24
|
-
export declare function asciiNumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
25
|
-
export declare function asciiAlphanumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
26
|
-
export declare function lowercaseAsciiAlphanumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
27
|
-
export declare function uppercaseAsciiAlphanumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
28
|
-
export declare function unicodeAlphaString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
29
|
-
export declare function lowercaseUnicodeAlphaString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
30
|
-
export declare function uppercaseUnicodeAlphaString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
31
|
-
export declare function unicodeNumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
32
|
-
export declare function unicodeAlphanumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
33
|
-
export declare function lowercaseUnicodeAlphanumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
34
|
-
export declare function uppercaseUnicodeAlphanumericString(options?: BuildCharSetOptions): StringSchema<string | undefined, AnyObject, undefined, "">;
|
|
35
|
-
export type TryValidateSyncOnErrorRT<S extends Schema> = InferType<S> | void;
|
|
36
|
-
export type TryValidateSyncRT<S extends Schema, OnErrorRT extends TryValidateSyncOnErrorRT<S>> = OnErrorRT extends InferType<S> ? InferType<S> : InferType<S> | undefined;
|
|
37
|
-
export type TryValidateSyncOptions<S extends Schema, OnErrorRT extends TryValidateSyncOnErrorRT<S>> = ValidateOptions & {
|
|
38
|
-
onError?: (error: ValidationError) => OnErrorRT;
|
|
39
|
-
};
|
|
40
|
-
export declare function tryValidateSync<S extends Schema>(value: any, schema: S, options?: ValidateOptions): InferType<S> | undefined;
|
|
41
|
-
export declare function tryValidateSync<S extends Schema, OnErrorRT extends TryValidateSyncOnErrorRT<S>>(value: any, schema: S, options?: ValidateOptions & {
|
|
42
|
-
onError: (error: ValidationError) => OnErrorRT;
|
|
43
|
-
}): TryValidateSyncRT<S, OnErrorRT>;
|
|
1
|
+
export * from '../src/utils/schema'
|
|
2
|
+
export {}
|
package/dist/utils/store.d.ts
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { ThunkDispatch } from 'redux-thunk';
|
|
4
|
-
export declare function makeStore<R extends Reducer>({ reducer, middlewares, preloadedState, }: {
|
|
5
|
-
reducer: R;
|
|
6
|
-
middlewares?: Middleware[];
|
|
7
|
-
preloadedState?: Partial<ReturnType<R>>;
|
|
8
|
-
}): EnhancedStore<any, UnknownAction, Tuple<[ StoreEnhancer<{
|
|
9
|
-
dispatch: ThunkDispatch<any, undefined, UnknownAction>;
|
|
10
|
-
}>, StoreEnhancer]>>;
|
|
1
|
+
export * from '../src/utils/store'
|
|
2
|
+
export {}
|
package/dist/utils/test.d.ts
CHANGED
|
@@ -1,53 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { Queries, queries } from '@testing-library/dom';
|
|
4
|
-
import { RenderOptions, RenderResult } from '@testing-library/react';
|
|
5
|
-
import { Container as RendererableContainer, hydrateRoot } from 'react-dom/client';
|
|
6
|
-
import { UserEvent } from '@testing-library/user-event';
|
|
7
|
-
import { makeStore } from './store';
|
|
8
|
-
type HydrateableContainer = Parameters<typeof hydrateRoot>[0];
|
|
9
|
-
type RenderWithUserResult<Q extends Queries = typeof queries, Container extends RendererableContainer | HydrateableContainer = HTMLElement, BaseElement extends RendererableContainer | HydrateableContainer = Container> = RenderResult<Q, Container, BaseElement> & {
|
|
10
|
-
user: UserEvent;
|
|
11
|
-
};
|
|
12
|
-
export declare function renderWithUser<Q extends Queries = typeof queries, Container extends RendererableContainer | HydrateableContainer = HTMLElement, BaseElement extends RendererableContainer | HydrateableContainer = Container>(ui: ReactElement, renderOptions?: RenderOptions<Q, Container, BaseElement>): RenderWithUserResult<Q, Container, BaseElement>;
|
|
13
|
-
/**
|
|
14
|
-
* Renders the given React element with Redux Provider and custom store.
|
|
15
|
-
* This function is useful for testing components that are connected to the
|
|
16
|
-
* Redux store.
|
|
17
|
-
*
|
|
18
|
-
* @param ui - The React component or element to render.
|
|
19
|
-
* @param reducer - The root reducer to use for the store.
|
|
20
|
-
* @param extendedRenderOptions - Optional configuration options for rendering.
|
|
21
|
-
* This includes `preloadedState` for initial Redux state and `store` for a
|
|
22
|
-
* specific Redux store instance. Any additional properties are passed to React
|
|
23
|
-
* Testing Library's render function.
|
|
24
|
-
* @returns An object containing the Redux store used in the render, User event
|
|
25
|
-
* API for simulating user interactions in tests, and all of React Testing
|
|
26
|
-
* Library's query functions for testing the component.
|
|
27
|
-
*/
|
|
28
|
-
export declare function renderWithStore<R extends Reducer, Q extends Queries = typeof queries, Container extends RendererableContainer | HydrateableContainer = HTMLElement, BaseElement extends RendererableContainer | HydrateableContainer = Container>(ui: ReactElement, reducer: R, extendedRenderOptions?: RenderOptions<Q, Container, BaseElement> & {
|
|
29
|
-
/**
|
|
30
|
-
* The middlewares used to create the Redux store.
|
|
31
|
-
*/
|
|
32
|
-
middlewares?: Middleware[];
|
|
33
|
-
/**
|
|
34
|
-
* Defines a specific portion or the entire initial state for the Redux store.
|
|
35
|
-
* This is particularly useful for initializing the state in a
|
|
36
|
-
* controlled manner during testing, allowing components to be rendered
|
|
37
|
-
* with predetermined state conditions.
|
|
38
|
-
*/
|
|
39
|
-
preloadedState?: Partial<ReturnType<R>>;
|
|
40
|
-
/**
|
|
41
|
-
* Allows the use of a specific Redux store instance instead of a
|
|
42
|
-
* default or global store. This flexibility is beneficial when
|
|
43
|
-
* testing components with unique store requirements or when isolating
|
|
44
|
-
* tests from a global store state. The custom store should be configured
|
|
45
|
-
* to match the structure and middleware of the store used by the application.
|
|
46
|
-
*
|
|
47
|
-
* @default makeStore({reducer,middlewares,preloadedState})
|
|
48
|
-
*/
|
|
49
|
-
store?: Store;
|
|
50
|
-
}): RenderWithUserResult<Q, Container, BaseElement> & {
|
|
51
|
-
store: ReturnType<typeof makeStore<R>>;
|
|
52
|
-
};
|
|
53
|
-
export {};
|
|
1
|
+
export * from '../src/utils/test'
|
|
2
|
+
export {}
|
package/dist/utils/theme.d.ts
CHANGED
|
@@ -1,11 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { ReactElement } from 'react';
|
|
4
|
-
export declare function insertDividerBetweenElements({ elements, dividerProps, }: {
|
|
5
|
-
elements: ReactElement[];
|
|
6
|
-
dividerProps?: DividerProps;
|
|
7
|
-
}): ReactElement[];
|
|
8
|
-
export declare function getStyleOverrides(ownerState: CommonProps, componentKey: keyof NonNullable<ThemeOptions["components"]>, muiClassName?: string, components?: ThemeOptions["components"]): object;
|
|
9
|
-
export declare function getClassNames(props: CommonProps): string[];
|
|
10
|
-
export declare function includesClassNames(propsOrClassNames: CommonProps | string[], includes: string[]): boolean;
|
|
11
|
-
export declare function matchClassNames(propsOrClassNames: CommonProps | string[], pattern: string | RegExp): RegExpMatchArray[];
|
|
1
|
+
export * from '../src/utils/theme'
|
|
2
|
+
export {}
|
package/dist/utils/window.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export * from '../src/utils/window'
|
|
2
|
+
export {}
|
package/package.json
CHANGED
|
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
|
|
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
|
|
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
|