@hamak/ui-store-api 0.10.1 → 0.12.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/package.json +2 -2
- package/dist/api/index.d.ts +0 -7
- package/dist/api/index.d.ts.map +0 -1
- package/dist/api/index.js +0 -6
- package/dist/api/middleware-registry.d.ts +0 -33
- package/dist/api/middleware-registry.d.ts.map +0 -1
- package/dist/api/middleware-registry.js +0 -5
- package/dist/api/reducer-registry.d.ts +0 -41
- package/dist/api/reducer-registry.d.ts.map +0 -1
- package/dist/api/reducer-registry.js +0 -5
- package/dist/api/store-manager.d.ts +0 -55
- package/dist/api/store-manager.d.ts.map +0 -1
- package/dist/api/store-manager.js +0 -5
- package/dist/autosave/autosave-action-factory.d.ts +0 -69
- package/dist/autosave/autosave-action-factory.d.ts.map +0 -1
- package/dist/autosave/autosave-action-factory.js +0 -135
- package/dist/autosave/autosave-action-types.d.ts +0 -134
- package/dist/autosave/autosave-action-types.d.ts.map +0 -1
- package/dist/autosave/autosave-action-types.js +0 -44
- package/dist/autosave/autosave-types.d.ts +0 -86
- package/dist/autosave/autosave-types.d.ts.map +0 -1
- package/dist/autosave/autosave-types.js +0 -35
- package/dist/autosave/index.d.ts +0 -9
- package/dist/autosave/index.d.ts.map +0 -1
- package/dist/autosave/index.js +0 -8
- package/dist/es2015/api/index.js +0 -22
- package/dist/es2015/api/middleware-registry.js +0 -6
- package/dist/es2015/api/reducer-registry.js +0 -6
- package/dist/es2015/api/store-manager.js +0 -6
- package/dist/es2015/autosave/autosave-action-factory.js +0 -139
- package/dist/es2015/autosave/autosave-action-types.js +0 -47
- package/dist/es2015/autosave/autosave-types.js +0 -40
- package/dist/es2015/autosave/index.js +0 -24
- package/dist/es2015/fs/contracts/filesystem-facade.contract.js +0 -2
- package/dist/es2015/fs/contracts/filesystem-manager.contract.js +0 -2
- package/dist/es2015/fs/index.js +0 -22
- package/dist/es2015/tokens/index.js +0 -20
- package/dist/es2015/tokens/service-tokens.js +0 -13
- package/dist/es2015/types/extension-types.js +0 -5
- package/dist/es2015/types/index.js +0 -23
- package/dist/es2015/types/middleware-types.js +0 -5
- package/dist/es2015/types/reducer-types.js +0 -5
- package/dist/es2015/types/store-types.js +0 -5
- package/dist/fs/contracts/filesystem-facade.contract.d.ts +0 -57
- package/dist/fs/contracts/filesystem-facade.contract.d.ts.map +0 -1
- package/dist/fs/contracts/filesystem-facade.contract.js +0 -1
- package/dist/fs/contracts/filesystem-manager.contract.d.ts +0 -42
- package/dist/fs/contracts/filesystem-manager.contract.d.ts.map +0 -1
- package/dist/fs/contracts/filesystem-manager.contract.js +0 -1
- package/dist/fs/index.d.ts +0 -5
- package/dist/fs/index.d.ts.map +0 -1
- package/dist/fs/index.js +0 -4
- package/dist/tokens/index.d.ts +0 -5
- package/dist/tokens/index.d.ts.map +0 -1
- package/dist/tokens/index.js +0 -4
- package/dist/tokens/service-tokens.d.ts +0 -10
- package/dist/tokens/service-tokens.d.ts.map +0 -1
- package/dist/tokens/service-tokens.js +0 -10
- package/dist/types/extension-types.d.ts +0 -32
- package/dist/types/extension-types.d.ts.map +0 -1
- package/dist/types/extension-types.js +0 -4
- package/dist/types/index.d.ts +0 -8
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/index.js +0 -7
- package/dist/types/middleware-types.d.ts +0 -31
- package/dist/types/middleware-types.d.ts.map +0 -1
- package/dist/types/middleware-types.js +0 -4
- package/dist/types/reducer-types.d.ts +0 -22
- package/dist/types/reducer-types.d.ts.map +0 -1
- package/dist/types/reducer-types.js +0 -4
- package/dist/types/store-types.d.ts +0 -49
- package/dist/types/store-types.d.ts.map +0 -1
- package/dist/types/store-types.js +0 -4
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { FileSystemNode, FileSystemState } from '@hamak/shared-utils';
|
|
2
|
-
import { Action } from 'redux';
|
|
3
|
-
/**
|
|
4
|
-
* Redux selector function type
|
|
5
|
-
*/
|
|
6
|
-
export type Selector<S, R> = (state: S) => R;
|
|
7
|
-
/**
|
|
8
|
-
* Actions for filesystem operations
|
|
9
|
-
*/
|
|
10
|
-
export interface FileSystemNodeAction extends Action {
|
|
11
|
-
command: any;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* Parameters for filesystem node actions
|
|
15
|
-
*/
|
|
16
|
-
export interface FileSystemNodeActionParams {
|
|
17
|
-
override?: boolean;
|
|
18
|
-
contentIsPresent?: boolean;
|
|
19
|
-
extensionStates?: Record<string, unknown>;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Filesystem manager interface - manages Redux state for virtual filesystem
|
|
23
|
-
*/
|
|
24
|
-
export interface IFileSystemManager {
|
|
25
|
-
/**
|
|
26
|
-
* Get the slice name for this filesystem
|
|
27
|
-
*/
|
|
28
|
-
readonly sliceName: string;
|
|
29
|
-
/**
|
|
30
|
-
* Get initial filesystem state
|
|
31
|
-
*/
|
|
32
|
-
getInitialState(): FileSystemState;
|
|
33
|
-
/**
|
|
34
|
-
* Get the reducer function for filesystem operations
|
|
35
|
-
*/
|
|
36
|
-
getReducer(): (state: FileSystemState, action: Action) => FileSystemState;
|
|
37
|
-
/**
|
|
38
|
-
* Create a selector for a specific path in the filesystem
|
|
39
|
-
*/
|
|
40
|
-
createSelector<S>(fileSystemSelector: Selector<S, FileSystemState | undefined>, path: string | string[]): Selector<S, FileSystemNode | undefined>;
|
|
41
|
-
}
|
|
42
|
-
//# sourceMappingURL=filesystem-manager.contract.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"filesystem-manager.contract.d.ts","sourceRoot":"","sources":["../../../src/fs/contracts/filesystem-manager.contract.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAA2B,eAAe,EAAQ,MAAM,qBAAqB,CAAC;AACrG,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAE/B;;GAEG;AACH,MAAM,MAAM,QAAQ,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AAE7C;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,MAAM;IAClD,OAAO,EAAE,GAAG,CAAA;CACb;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAC1C;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAE3B;;OAEG;IACH,eAAe,IAAI,eAAe,CAAC;IAEnC;;OAEG;IACH,UAAU,IAAI,CAAC,KAAK,EAAE,eAAe,EAAE,MAAM,EAAE,MAAM,KAAK,eAAe,CAAC;IAE1E;;OAEG;IACH,cAAc,CAAC,CAAC,EACd,kBAAkB,EAAE,QAAQ,CAAC,CAAC,EAAE,eAAe,GAAG,SAAS,CAAC,EAC5D,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,GACtB,QAAQ,CAAC,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC,CAAC;CAC5C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/fs/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export type { FileSystemNode, DirectoryNode, FileNode, FileSystemNodeBase, FileSystemNodeState, FileMemoState, FileSystemState, FileContentSchema } from '@hamak/shared-utils';
|
|
2
|
-
export { fileSystemNodeInitialState } from '@hamak/shared-utils';
|
|
3
|
-
export * from './contracts/filesystem-manager.contract.js';
|
|
4
|
-
export * from './contracts/filesystem-facade.contract.js';
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/fs/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/fs/index.ts"],"names":[],"mappings":"AACA,YAAY,EACV,cAAc,EACd,aAAa,EACb,QAAQ,EACR,kBAAkB,EAClB,mBAAmB,EACnB,aAAa,EACb,eAAe,EACf,iBAAiB,EAClB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,0BAA0B,EAAE,MAAM,qBAAqB,CAAC;AAGjE,cAAc,yCAAyC,CAAC;AACxD,cAAc,wCAAwC,CAAC"}
|
package/dist/fs/index.js
DELETED
package/dist/tokens/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tokens/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,kBAAkB,CAAC"}
|
package/dist/tokens/index.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Dependency Injection Tokens
|
|
3
|
-
* Used for service resolution in the microkernel
|
|
4
|
-
*/
|
|
5
|
-
export declare const STORE_MANAGER_TOKEN: unique symbol;
|
|
6
|
-
export declare const MIDDLEWARE_REGISTRY_TOKEN: unique symbol;
|
|
7
|
-
export declare const REDUCER_REGISTRY_TOKEN: unique symbol;
|
|
8
|
-
export declare const STORE_EXTENSIONS_TOKEN: unique symbol;
|
|
9
|
-
export declare const AUTOSAVE_REGISTRY_TOKEN: unique symbol;
|
|
10
|
-
//# sourceMappingURL=service-tokens.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service-tokens.d.ts","sourceRoot":"","sources":["../../src/tokens/service-tokens.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,mBAAmB,eAAyB,CAAC;AAC1D,eAAO,MAAM,yBAAyB,eAA+B,CAAC;AACtE,eAAO,MAAM,sBAAsB,eAA4B,CAAC;AAChE,eAAO,MAAM,sBAAsB,eAA4B,CAAC;AAGhE,eAAO,MAAM,uBAAuB,eAA6B,CAAC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Dependency Injection Tokens
|
|
3
|
-
* Used for service resolution in the microkernel
|
|
4
|
-
*/
|
|
5
|
-
export const STORE_MANAGER_TOKEN = Symbol('StoreManager');
|
|
6
|
-
export const MIDDLEWARE_REGISTRY_TOKEN = Symbol('MiddlewareRegistry');
|
|
7
|
-
export const REDUCER_REGISTRY_TOKEN = Symbol('ReducerRegistry');
|
|
8
|
-
export const STORE_EXTENSIONS_TOKEN = Symbol('StoreExtensions');
|
|
9
|
-
// Autosave tokens
|
|
10
|
-
export const AUTOSAVE_REGISTRY_TOKEN = Symbol('AutosaveRegistry');
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Store extension types
|
|
3
|
-
*/
|
|
4
|
-
import type { Reducer } from 'redux';
|
|
5
|
-
import type { MiddlewareRegistration } from './middleware-types.js';
|
|
6
|
-
/**
|
|
7
|
-
* Middleware contribution matches registry entries
|
|
8
|
-
*/
|
|
9
|
-
export type StoreMiddlewareExtension = MiddlewareRegistration;
|
|
10
|
-
/**
|
|
11
|
-
* Factory function for creating middleware with access to fileSystemAdapter
|
|
12
|
-
*/
|
|
13
|
-
export type MiddlewareFactory = (fileSystemAdapter: any) => StoreMiddlewareExtension[];
|
|
14
|
-
/**
|
|
15
|
-
* Extension payload that mirrors store plugin config
|
|
16
|
-
*/
|
|
17
|
-
export interface StorePluginExtensions {
|
|
18
|
-
middleware?: StoreMiddlewareExtension[];
|
|
19
|
-
/**
|
|
20
|
-
* Factory function for creating middleware that needs the fileSystemAdapter.
|
|
21
|
-
* Called during plugin initialization after the adapter is created.
|
|
22
|
-
*/
|
|
23
|
-
middlewareFactory?: MiddlewareFactory;
|
|
24
|
-
reducers?: Record<string, Reducer>;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* Registry exposed via STORE_EXTENSIONS_TOKEN
|
|
28
|
-
*/
|
|
29
|
-
export interface StoreExtensionsRegistry {
|
|
30
|
-
register(source: string, extensions: StorePluginExtensions): void;
|
|
31
|
-
}
|
|
32
|
-
//# sourceMappingURL=extension-types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"extension-types.d.ts","sourceRoot":"","sources":["../../src/types/extension-types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AACrC,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAEjE;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,sBAAsB,CAAC;AAE9D;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,iBAAiB,EAAE,GAAG,KAAK,wBAAwB,EAAE,CAAC;AAEvF;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,UAAU,CAAC,EAAE,wBAAwB,EAAE,CAAC;IACxC;;;OAGG;IACH,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,qBAAqB,GAAG,IAAI,CAAC;CACnE"}
|
package/dist/types/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC"}
|
package/dist/types/index.js
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Middleware Type Definitions
|
|
3
|
-
*/
|
|
4
|
-
import type { Middleware } from 'redux';
|
|
5
|
-
/**
|
|
6
|
-
* Middleware registration with metadata
|
|
7
|
-
*/
|
|
8
|
-
export interface MiddlewareRegistration {
|
|
9
|
-
/** Unique identifier for this middleware */
|
|
10
|
-
id: string;
|
|
11
|
-
/** The Redux middleware function */
|
|
12
|
-
middleware: Middleware;
|
|
13
|
-
/** Execution priority (higher = runs earlier). Default: 0 */
|
|
14
|
-
priority?: number;
|
|
15
|
-
/** Plugin that registered this middleware */
|
|
16
|
-
plugin?: string;
|
|
17
|
-
/** Optional description for debugging */
|
|
18
|
-
description?: string;
|
|
19
|
-
/** Whether this middleware can be disabled */
|
|
20
|
-
optional?: boolean;
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* Middleware configuration
|
|
24
|
-
*/
|
|
25
|
-
export interface MiddlewareConfig {
|
|
26
|
-
/** Middleware IDs to disable */
|
|
27
|
-
disabled?: string[];
|
|
28
|
-
/** Override priorities for specific middleware */
|
|
29
|
-
priorities?: Record<string, number>;
|
|
30
|
-
}
|
|
31
|
-
//# sourceMappingURL=middleware-types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"middleware-types.d.ts","sourceRoot":"","sources":["../../src/types/middleware-types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAExC;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,4CAA4C;IAC5C,EAAE,EAAE,MAAM,CAAC;IAEX,oCAAoC;IACpC,UAAU,EAAE,UAAU,CAAC;IAEvB,6DAA6D;IAC7D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB,6CAA6C;IAC7C,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,yCAAyC;IACzC,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,gCAAgC;IAChC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IAEpB,kDAAkD;IAClD,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACrC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Reducer Type Definitions
|
|
3
|
-
*/
|
|
4
|
-
import type { Reducer } from 'redux';
|
|
5
|
-
/**
|
|
6
|
-
* Reducer registration metadata
|
|
7
|
-
*/
|
|
8
|
-
export interface ReducerRegistration {
|
|
9
|
-
/** State slice key */
|
|
10
|
-
key: string;
|
|
11
|
-
/** The reducer function */
|
|
12
|
-
reducer: Reducer;
|
|
13
|
-
/** Plugin that registered this reducer */
|
|
14
|
-
plugin?: string;
|
|
15
|
-
/** Timestamp of registration */
|
|
16
|
-
registeredAt: Date;
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* Reducer map type
|
|
20
|
-
*/
|
|
21
|
-
export type ReducerMap = Record<string, Reducer>;
|
|
22
|
-
//# sourceMappingURL=reducer-types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"reducer-types.d.ts","sourceRoot":"","sources":["../../src/types/reducer-types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAErC;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,sBAAsB;IACtB,GAAG,EAAE,MAAM,CAAC;IAEZ,2BAA2B;IAC3B,OAAO,EAAE,OAAO,CAAC;IAEjB,0CAA0C;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,gCAAgC;IAChC,YAAY,EAAE,IAAI,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC"}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Store Type Definitions
|
|
3
|
-
*/
|
|
4
|
-
import type { Store, Action, StoreEnhancer } from 'redux';
|
|
5
|
-
/**
|
|
6
|
-
* Store configuration
|
|
7
|
-
*/
|
|
8
|
-
export interface StoreConfig {
|
|
9
|
-
/** Enable Redux DevTools integration */
|
|
10
|
-
devTools?: boolean;
|
|
11
|
-
/** Initial/preloaded state */
|
|
12
|
-
preloadedState?: any;
|
|
13
|
-
/** Additional store enhancers */
|
|
14
|
-
enhancers?: StoreEnhancer[];
|
|
15
|
-
/** Persistence configuration */
|
|
16
|
-
persistence?: {
|
|
17
|
-
/** Enable state persistence */
|
|
18
|
-
enabled: boolean;
|
|
19
|
-
/** Storage key prefix */
|
|
20
|
-
key?: string;
|
|
21
|
-
/** Storage type */
|
|
22
|
-
storage?: 'localStorage' | 'sessionStorage' | 'indexedDB';
|
|
23
|
-
/** Keys to persist (whitelist) */
|
|
24
|
-
whitelist?: string[];
|
|
25
|
-
/** Keys to ignore (blacklist) */
|
|
26
|
-
blacklist?: string[];
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Root state shape (can be extended by applications)
|
|
31
|
-
*/
|
|
32
|
-
export interface RootState {
|
|
33
|
-
[key: string]: any;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Standard action shape following FSA (Flux Standard Action)
|
|
37
|
-
*/
|
|
38
|
-
export interface AppAction<T = any> extends Action<string> {
|
|
39
|
-
type: string;
|
|
40
|
-
payload?: T;
|
|
41
|
-
error?: boolean;
|
|
42
|
-
meta?: any;
|
|
43
|
-
[key: string]: any;
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* Store instance type
|
|
47
|
-
*/
|
|
48
|
-
export type AppStore = Store<RootState, AppAction>;
|
|
49
|
-
//# sourceMappingURL=store-types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"store-types.d.ts","sourceRoot":"","sources":["../../src/types/store-types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,KAAK,EAAW,MAAM,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEnE;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,wCAAwC;IACxC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,8BAA8B;IAC9B,cAAc,CAAC,EAAE,GAAG,CAAC;IAErB,iCAAiC;IACjC,SAAS,CAAC,EAAE,aAAa,EAAE,CAAC;IAE5B,gCAAgC;IAChC,WAAW,CAAC,EAAE;QACZ,+BAA+B;QAC/B,OAAO,EAAE,OAAO,CAAC;QACjB,yBAAyB;QACzB,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,mBAAmB;QACnB,OAAO,CAAC,EAAE,cAAc,GAAG,gBAAgB,GAAG,WAAW,CAAC;QAC1D,kCAAkC;QAClC,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;QACrB,iCAAiC;QACjC,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;KACtB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,SAAS,CAAC,CAAC,GAAG,GAAG,CAAE,SAAQ,MAAM,CAAC,MAAM,CAAC;IACxD,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,CAAC,CAAC;IACZ,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,KAAK,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC"}
|