easy-soft-utility 2.4.30 → 2.4.31

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.
@@ -3,19 +3,25 @@
3
3
  * @param {Number} config application initial config
4
4
  */
5
5
  export function setApplicationInitialConfig(config: number): void;
6
+ /**
7
+ * Set application external config list
8
+ * @param {Array} configs application initial config list
9
+ */
10
+ export function setApplicationExternalConfigList(...configs: any[]): void;
6
11
  /**
7
12
  * Get application initial config
8
13
  * @returns
9
14
  */
10
15
  export function getApplicationInitialConfig(): any;
11
16
  /**
12
- * Set the application merge handler
13
- * @param {Function} handler handle authentication merge
17
+ * Get application external config list, its will be merged
18
+ */
19
+ export function getApplicationExternalConfigList(): any;
20
+ /**
21
+ * Get application merged config
14
22
  */
15
- export function setConfigurationMergeHandler(handler: Function): void;
16
23
  export function getApplicationMergeConfig(): any;
17
24
  export namespace applicationConfiguration {
25
+ const externalConfigListSetComplete: boolean;
18
26
  const initialConfigSetComplete: boolean;
19
- function handleMergeConfiguration(config: any): any;
20
- const handleMergeConfigurationSetComplete: boolean;
21
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-utility",
3
- "version": "2.4.30",
3
+ "version": "2.4.31",
4
4
  "private": false,
5
5
  "description": "easy-soft-utility",
6
6
  "keywords": [
@@ -136,5 +136,5 @@
136
136
  "stylelint-declaration-block-no-ignored-properties": "^2.6.0",
137
137
  "webpack": "^5.75.0"
138
138
  },
139
- "gitHead": "6a5477cc596ab93999869870fe8314e122a62ed9"
139
+ "gitHead": "7ec808af24e6905790a6ce03253ec30a3129efad"
140
140
  }