@admin-layout/gluestack-ui-mobile 9.0.4-alpha.62 → 9.0.4-alpha.65
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [9.0.4-alpha.65](https://github.com/CDEBase/admin-layout/compare/v9.0.4-alpha.64...v9.0.4-alpha.65) (2024-11-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @admin-layout/gluestack-ui-mobile
|
|
9
|
+
|
|
10
|
+
## [9.0.4-alpha.63](https://github.com/CDEBase/admin-layout/compare/v9.0.4-alpha.62...v9.0.4-alpha.63) (2024-11-18)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @admin-layout/gluestack-ui-mobile
|
|
13
|
+
|
|
6
14
|
## [9.0.4-alpha.62](https://github.com/CDEBase/admin-layout/compare/v9.0.4-alpha.61...v9.0.4-alpha.62) (2024-11-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @admin-layout/gluestack-ui-mobile
|
|
@@ -6,53 +6,53 @@ export declare const usePermissionAutoFetch: (options?: userPermissionAutoFetchP
|
|
|
6
6
|
preferencesInput?: import("@adminide-stack/core").IPreferencesInput;
|
|
7
7
|
updateConfiguration?: ({ updateKey, value, updateOverrides, target, }: {
|
|
8
8
|
updateKey?: string;
|
|
9
|
-
value: string |
|
|
9
|
+
value: string | number | boolean;
|
|
10
10
|
updateOverrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
11
11
|
target?: import("@adminide-stack/core").ConfigurationTarget;
|
|
12
|
-
}) => Promise<import("graphql").ExecutionResult<import("@adminide-stack/core").IUpdateConfigurationMutation
|
|
12
|
+
}) => Promise<import("graphql").ExecutionResult<import("@adminide-stack/core").IUpdateConfigurationMutation, import("graphql/jsutils/ObjMap").ObjMap<unknown>>>;
|
|
13
13
|
client: import("@apollo/client").ApolloClient<any>;
|
|
14
14
|
observable: import("@apollo/client").ObservableQuery<import("@adminide-stack/core").IResolveConfigurationQuery, import("@adminide-stack/core").Exact<{
|
|
15
15
|
input: import("@adminide-stack/core").IPreferencesInputInput;
|
|
16
|
-
key?:
|
|
17
|
-
overrides?: import("@adminide-stack/core").
|
|
16
|
+
key?: string;
|
|
17
|
+
overrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
18
18
|
}>>;
|
|
19
19
|
data: import("@adminide-stack/core").IResolveConfigurationQuery;
|
|
20
20
|
previousData?: import("@adminide-stack/core").IResolveConfigurationQuery;
|
|
21
21
|
error?: import("@apollo/client").ApolloError;
|
|
22
|
-
errors?:
|
|
22
|
+
errors?: readonly import("graphql").GraphQLFormattedError[];
|
|
23
23
|
networkStatus: import("@apollo/client").NetworkStatus;
|
|
24
24
|
called: boolean;
|
|
25
25
|
startPolling: (pollInterval: number) => void;
|
|
26
26
|
stopPolling: () => void;
|
|
27
27
|
subscribeToMore: <TSubscriptionData = import("@adminide-stack/core").IResolveConfigurationQuery, TSubscriptionVariables extends import("@apollo/client").OperationVariables = import("@adminide-stack/core").Exact<{
|
|
28
28
|
input: import("@adminide-stack/core").IPreferencesInputInput;
|
|
29
|
-
key?:
|
|
30
|
-
overrides?: import("@adminide-stack/core").
|
|
29
|
+
key?: string;
|
|
30
|
+
overrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
31
31
|
}>>(options: import("@apollo/client").SubscribeToMoreOptions<import("@adminide-stack/core").IResolveConfigurationQuery, TSubscriptionVariables, TSubscriptionData>) => () => void;
|
|
32
32
|
updateQuery: <TVars extends import("@apollo/client").OperationVariables = import("@adminide-stack/core").Exact<{
|
|
33
33
|
input: import("@adminide-stack/core").IPreferencesInputInput;
|
|
34
|
-
key?:
|
|
35
|
-
overrides?: import("@adminide-stack/core").
|
|
34
|
+
key?: string;
|
|
35
|
+
overrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
36
36
|
}>>(mapFn: (previousQueryResult: import("@adminide-stack/core").IResolveConfigurationQuery, options: Pick<import("@apollo/client").WatchQueryOptions<TVars, import("@adminide-stack/core").IResolveConfigurationQuery>, "variables">) => import("@adminide-stack/core").IResolveConfigurationQuery) => void;
|
|
37
37
|
refetch: (variables?: Partial<import("@adminide-stack/core").Exact<{
|
|
38
38
|
input: import("@adminide-stack/core").IPreferencesInputInput;
|
|
39
|
-
key?:
|
|
40
|
-
overrides?: import("@adminide-stack/core").
|
|
39
|
+
key?: string;
|
|
40
|
+
overrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
41
41
|
}>>) => Promise<import("@apollo/client").ApolloQueryResult<import("@adminide-stack/core").IResolveConfigurationQuery>>;
|
|
42
42
|
reobserve: (newOptions?: Partial<import("@apollo/client").WatchQueryOptions<import("@adminide-stack/core").Exact<{
|
|
43
43
|
input: import("@adminide-stack/core").IPreferencesInputInput;
|
|
44
|
-
key?:
|
|
45
|
-
overrides?: import("@adminide-stack/core").
|
|
44
|
+
key?: string;
|
|
45
|
+
overrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
46
46
|
}>, import("@adminide-stack/core").IResolveConfigurationQuery>>, newNetworkStatus?: import("@apollo/client").NetworkStatus) => Promise<import("@apollo/client").ApolloQueryResult<import("@adminide-stack/core").IResolveConfigurationQuery>>;
|
|
47
47
|
variables: import("@adminide-stack/core").Exact<{
|
|
48
48
|
input: import("@adminide-stack/core").IPreferencesInputInput;
|
|
49
|
-
key?:
|
|
50
|
-
overrides?: import("@adminide-stack/core").
|
|
49
|
+
key?: string;
|
|
50
|
+
overrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
51
51
|
}>;
|
|
52
52
|
fetchMore: <TFetchData = import("@adminide-stack/core").IResolveConfigurationQuery, TFetchVars extends import("@apollo/client").OperationVariables = import("@adminide-stack/core").Exact<{
|
|
53
53
|
input: import("@adminide-stack/core").IPreferencesInputInput;
|
|
54
|
-
key?:
|
|
55
|
-
overrides?: import("@adminide-stack/core").
|
|
54
|
+
key?: string;
|
|
55
|
+
overrides?: import("@adminide-stack/core").IConfigurationOverridesInput;
|
|
56
56
|
}>>(fetchMoreOptions: import("@apollo/client").FetchMoreQueryOptions<TFetchVars, TFetchData> & {
|
|
57
57
|
updateQuery?: (previousQueryResult: import("@adminide-stack/core").IResolveConfigurationQuery, options: {
|
|
58
58
|
fetchMoreResult: TFetchData;
|
|
@@ -8,11 +8,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FC<any>,
|
|
|
8
8
|
[x: number]: any;
|
|
9
9
|
[x: symbol]: any;
|
|
10
10
|
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>;
|
|
11
|
-
store?: import("redux").Store
|
|
11
|
+
store?: import("redux").Store<any, import("redux").UnknownAction, unknown>;
|
|
12
12
|
} | {
|
|
13
13
|
[x: string]: any;
|
|
14
14
|
[x: number]: any;
|
|
15
15
|
[x: symbol]: any;
|
|
16
|
-
store?: import("redux").Store
|
|
16
|
+
store?: import("redux").Store<any, import("redux").UnknownAction, unknown>;
|
|
17
17
|
}>;
|
|
18
18
|
export default _default;
|
package/lib/redux/settings.d.ts
CHANGED
|
@@ -50,14 +50,14 @@ declare const settingsReducer: (state: {
|
|
|
50
50
|
colorWeak: boolean;
|
|
51
51
|
splitMenus?: boolean;
|
|
52
52
|
siderMenuType?: string;
|
|
53
|
-
showHeader?:
|
|
54
|
-
headerRender?:
|
|
55
|
-
showFooter?:
|
|
56
|
-
footerRender?:
|
|
57
|
-
searchBarRender?:
|
|
58
|
-
showMenu?:
|
|
59
|
-
menuRender?:
|
|
60
|
-
menuHeaderRender?:
|
|
53
|
+
showHeader?: any;
|
|
54
|
+
headerRender?: any;
|
|
55
|
+
showFooter?: any;
|
|
56
|
+
footerRender?: any;
|
|
57
|
+
searchBarRender?: any;
|
|
58
|
+
showMenu?: any;
|
|
59
|
+
menuRender?: any;
|
|
60
|
+
menuHeaderRender?: any;
|
|
61
61
|
language: string;
|
|
62
62
|
logo: string;
|
|
63
63
|
topLeftToggle: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@admin-layout/gluestack-ui-mobile",
|
|
3
|
-
"version": "9.0.4-alpha.
|
|
3
|
+
"version": "9.0.4-alpha.65",
|
|
4
4
|
"description": "Glustack-ui for mobile component layout",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"watch": "npm run build:lib:watch"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@admin-layout/client": "9.0.4-alpha.
|
|
26
|
+
"@admin-layout/client": "9.0.4-alpha.65",
|
|
27
27
|
"@gluestack-style/react": "^1.0.53",
|
|
28
28
|
"@gluestack-ui/config": "^1.1.18",
|
|
29
29
|
"@gluestack-ui/themed": "^1.1.22",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"typescript": {
|
|
43
43
|
"definition": "lib/index.d.ts"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "b7609b708e8bca08df379703736c75aef9f7677b"
|
|
46
46
|
}
|