@flashist/appframework 0.0.73 → 0.0.75

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.
@@ -2,6 +2,6 @@ import { Command } from "@flashist/fcore";
2
2
  import { GlobalEventDispatcher } from "../../globaleventdispatcher/dispatcher/GlobalEventDispatcher";
3
3
  export declare abstract class BaseAppCommand<ResolveType = any> extends Command<ResolveType> {
4
4
  protected globalDispatcher: GlobalEventDispatcher;
5
- protected construction(...args: any[]): void;
5
+ construction(...args: any[]): void;
6
6
  dispatchEvent(event: string, ...args: any[]): void;
7
7
  }
@@ -1 +1 @@
1
- {"version":3,"file":"BaseAppCommand.js","sourceRoot":"","sources":["../../../src/base/commands/BaseAppCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAC,qBAAqB,EAAC,MAAM,8DAA8D,CAAC;AACnG,OAAO,EAAC,WAAW,EAAC,MAAM,iBAAiB,CAAC;AAE5C;IAAgE,kCAAoB;IAApF;;IAiBA,CAAC;IAba,qCAAY,GAAtB;QAAuB,cAAO;aAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;YAAP,yBAAO;;QAC1B,iBAAM,YAAY,aAAI,IAAI,EAAE;QAE5B,IAAI,CAAC,gBAAgB,GAAG,WAAW,CAAC,qBAAqB,CAAC,CAAC;IAC/D,CAAC;IAED,sCAAa,GAAb,UAAc,KAAa;;QAAE,cAAc;aAAd,UAAc,EAAd,qBAAc,EAAd,IAAc;YAAd,6BAAc;;QACvC,iBAAM,aAAa,4BAAC,KAAK,GAAK,IAAI,UAAE;QAEpC,uCAAuC;QACvC,CAAA,KAAA,IAAI,CAAC,gBAAgB,CAAA,CAAC,aAAa,0BAAC,KAAK,GAAK,IAAI,UAAE;IACxD,CAAC;IAEL,qBAAC;AAAD,CAAC,AAjBD,CAAgE,OAAO,GAiBtE"}
1
+ {"version":3,"file":"BaseAppCommand.js","sourceRoot":"","sources":["../../../src/base/commands/BaseAppCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,qBAAqB,EAAE,MAAM,8DAA8D,CAAC;AACrG,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C;IAAgE,kCAAoB;IAApF;;IAiBA,CAAC;IAbG,qCAAY,GAAZ;QAAa,cAAO;aAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;YAAP,yBAAO;;QAChB,iBAAM,YAAY,aAAI,IAAI,EAAE;QAE5B,IAAI,CAAC,gBAAgB,GAAG,WAAW,CAAC,qBAAqB,CAAC,CAAC;IAC/D,CAAC;IAED,sCAAa,GAAb,UAAc,KAAa;;QAAE,cAAc;aAAd,UAAc,EAAd,qBAAc,EAAd,IAAc;YAAd,6BAAc;;QACvC,iBAAM,aAAa,4BAAC,KAAK,GAAK,IAAI,UAAE;QAEpC,uCAAuC;QACvC,CAAA,KAAA,IAAI,CAAC,gBAAgB,CAAA,CAAC,aAAa,0BAAC,KAAK,GAAK,IAAI,UAAE;IACxD,CAAC;IAEL,qBAAC;AAAD,CAAC,AAjBD,CAAgE,OAAO,GAiBtE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashist/appframework",
3
- "version": "0.0.73",
3
+ "version": "0.0.75",
4
4
  "scripts": {
5
5
  "build": "gulp",
6
6
  "publish:patch": "npm version patch && npm run build && cd ./dist && npm publish",
@@ -1 +1,4 @@
1
- export {};
1
+ import { Flatten } from "./DeepKeyTypings";
2
+ export interface IChangeWrapper<WrapperStateType, WrapperDeepKeyType extends keyof Flatten<WrapperStateType, never> = keyof Flatten<WrapperStateType, never>> {
3
+ (wrapperKey: WrapperDeepKeyType, value: Partial<Flatten<WrapperStateType, never>[WrapperDeepKeyType]>): void;
4
+ }