fix(core): update
This commit is contained in:
		
							
								
								
									
										27
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										27
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -27,8 +27,7 @@ | |||||||
|     "@apiglobal/typedrequest-interfaces": { |     "@apiglobal/typedrequest-interfaces": { | ||||||
|       "version": "1.0.15", |       "version": "1.0.15", | ||||||
|       "resolved": "https://verdaccio.lossless.one/@apiglobal%2ftypedrequest-interfaces/-/typedrequest-interfaces-1.0.15.tgz", |       "resolved": "https://verdaccio.lossless.one/@apiglobal%2ftypedrequest-interfaces/-/typedrequest-interfaces-1.0.15.tgz", | ||||||
|       "integrity": "sha512-KncX168fUQJ73FeT22Cvls41mkJmtasP8dB2s9+9/OyWZpNsCzk9NEmtdRhulW2vLQwuAbQc1eoloe7ffCmhcA==", |       "integrity": "sha512-KncX168fUQJ73FeT22Cvls41mkJmtasP8dB2s9+9/OyWZpNsCzk9NEmtdRhulW2vLQwuAbQc1eoloe7ffCmhcA==" | ||||||
|       "dev": true |  | ||||||
|     }, |     }, | ||||||
|     "@babel/code-frame": { |     "@babel/code-frame": { | ||||||
|       "version": "7.10.4", |       "version": "7.10.4", | ||||||
| @@ -1132,6 +1131,30 @@ | |||||||
|         "to-fast-properties": "^2.0.0" |         "to-fast-properties": "^2.0.0" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "@designestate/dees-comms": { | ||||||
|  |       "version": "1.0.6", | ||||||
|  |       "resolved": "https://verdaccio.lossless.one/@designestate%2fdees-comms/-/dees-comms-1.0.6.tgz", | ||||||
|  |       "integrity": "sha512-l6J1E23jl2R/eUML0mhanIjfsGA38dDauBj1dZP8BCax1WKk5BSgs9mnPYg8Yja62v0jvEPTanDQxb9rar+Nvw==", | ||||||
|  |       "requires": { | ||||||
|  |         "@apiglobal/typedrequest": "^1.0.53", | ||||||
|  |         "@apiglobal/typedrequest-interfaces": "^1.0.15" | ||||||
|  |       }, | ||||||
|  |       "dependencies": { | ||||||
|  |         "@apiglobal/typedrequest": { | ||||||
|  |           "version": "1.0.53", | ||||||
|  |           "resolved": "https://verdaccio.lossless.one/@apiglobal%2ftypedrequest/-/typedrequest-1.0.53.tgz", | ||||||
|  |           "integrity": "sha512-9KfG+ZfhryepIY1Q++OIMSU6k3Qy1MGRPXPLXQyPua5uXgHTPgT59+pczwpTAo1Mru4o0H87Xtwt596HV7FGsg==", | ||||||
|  |           "requires": { | ||||||
|  |             "@apiglobal/typedrequest-interfaces": "^1.0.15", | ||||||
|  |             "@pushrocks/isounique": "^1.0.4", | ||||||
|  |             "@pushrocks/lik": "^4.0.17", | ||||||
|  |             "@pushrocks/smartdelay": "^2.0.10", | ||||||
|  |             "@pushrocks/smartpromise": "^3.0.6", | ||||||
|  |             "@pushrocks/webrequest": "^2.0.10" | ||||||
|  |           } | ||||||
|  |         } | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|     "@gitzone/tsbuild": { |     "@gitzone/tsbuild": { | ||||||
|       "version": "2.1.25", |       "version": "2.1.25", | ||||||
|       "resolved": "https://verdaccio.lossless.one/@gitzone%2ftsbuild/-/tsbuild-2.1.25.tgz", |       "resolved": "https://verdaccio.lossless.one/@gitzone%2ftsbuild/-/tsbuild-2.1.25.tgz", | ||||||
|   | |||||||
| @@ -23,6 +23,7 @@ | |||||||
|   }, |   }, | ||||||
|   "dependencies": { |   "dependencies": { | ||||||
|     "@apiglobal/typedrequest": "^1.0.43", |     "@apiglobal/typedrequest": "^1.0.43", | ||||||
|  |     "@designestate/dees-comms": "^1.0.6", | ||||||
|     "@pushrocks/lik": "^4.0.17", |     "@pushrocks/lik": "^4.0.17", | ||||||
|     "@pushrocks/smartdelay": "^2.0.10", |     "@pushrocks/smartdelay": "^2.0.10", | ||||||
|     "@pushrocks/smartpromise": "^3.0.6", |     "@pushrocks/smartpromise": "^3.0.6", | ||||||
|   | |||||||
| @@ -78,6 +78,8 @@ export class DomTools { | |||||||
|  |  | ||||||
|   public scroller: plugins.SweetScroll; |   public scroller: plugins.SweetScroll; | ||||||
|  |  | ||||||
|  |   public deesComms = new plugins.deesComms.DeesComms(); | ||||||
|  |  | ||||||
|   private actionSetVirtualViewport = this.domToolsStatePart.createAction<TViewport>( |   private actionSetVirtualViewport = this.domToolsStatePart.createAction<TViewport>( | ||||||
|     async (statePart, payload) => { |     async (statePart, payload) => { | ||||||
|       const currentState = statePart.getState(); |       const currentState = statePart.getState(); | ||||||
|   | |||||||
| @@ -1,4 +1,11 @@ | |||||||
| // api glbal scope | // designestate scope | ||||||
|  | import * as deesComms from '@designestate/dees-comms'; | ||||||
|  |  | ||||||
|  | export { | ||||||
|  |   deesComms | ||||||
|  | }; | ||||||
|  |  | ||||||
|  | // apiglobal scope | ||||||
| import * as typedrequest from '@apiglobal/typedrequest'; | import * as typedrequest from '@apiglobal/typedrequest'; | ||||||
|  |  | ||||||
| export { typedrequest }; | export { typedrequest }; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user