fix(core): update
This commit is contained in:
		
							
								
								
									
										2620
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2620
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										12
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								package.json
									
									
									
									
									
								
							| @@ -14,16 +14,16 @@ | |||||||
|   }, |   }, | ||||||
|   "devDependencies": { |   "devDependencies": { | ||||||
|     "@gitzone/tsbuild": "^2.1.25", |     "@gitzone/tsbuild": "^2.1.25", | ||||||
|     "@gitzone/tsbundle": "^1.0.78", |     "@gitzone/tsbundle": "^1.0.80", | ||||||
|     "@gitzone/tstest": "^1.0.52", |     "@gitzone/tstest": "^1.0.52", | ||||||
|     "@pushrocks/tapbundle": "^3.2.9", |     "@pushrocks/tapbundle": "^3.2.14", | ||||||
|     "@types/node": "^14.14.10", |     "@types/node": "^14.14.33", | ||||||
|     "tslint": "^6.1.3", |     "tslint": "^6.1.3", | ||||||
|     "tslint-config-prettier": "^1.15.0" |     "tslint-config-prettier": "^1.15.0" | ||||||
|   }, |   }, | ||||||
|   "dependencies": { |   "dependencies": { | ||||||
|     "@apiglobal/typedrequest": "^1.0.54", |     "@apiglobal/typedrequest": "^1.0.56", | ||||||
|     "@designestate/dees-comms": "^1.0.7", |     "@designestate/dees-comms": "^1.0.9", | ||||||
|     "@pushrocks/lik": "^4.0.20", |     "@pushrocks/lik": "^4.0.20", | ||||||
|     "@pushrocks/smartdelay": "^2.0.10", |     "@pushrocks/smartdelay": "^2.0.10", | ||||||
|     "@pushrocks/smartpromise": "^3.1.3", |     "@pushrocks/smartpromise": "^3.1.3", | ||||||
| @@ -31,7 +31,7 @@ | |||||||
|     "@pushrocks/smartrx": "^2.0.19", |     "@pushrocks/smartrx": "^2.0.19", | ||||||
|     "@pushrocks/smartstate": "^1.0.21", |     "@pushrocks/smartstate": "^1.0.21", | ||||||
|     "@pushrocks/webrequest": "^2.0.13", |     "@pushrocks/webrequest": "^2.0.13", | ||||||
|     "@pushrocks/websetup": "^3.0.13", |     "@pushrocks/websetup": "^3.0.15", | ||||||
|     "@pushrocks/webstore": "^1.0.16", |     "@pushrocks/webstore": "^1.0.16", | ||||||
|     "lit-element": "^2.4.0", |     "lit-element": "^2.4.0", | ||||||
|     "sweet-scroll": "^4.0.0" |     "sweet-scroll": "^4.0.0" | ||||||
|   | |||||||
| @@ -4,7 +4,9 @@ import { DomTools } from './domtools.classes.domtools'; | |||||||
|  * changes scrollbar styles to be consistent across OS borders |  * changes scrollbar styles to be consistent across OS borders | ||||||
|  */ |  */ | ||||||
| export const scrollBarStyles = (() => { | export const scrollBarStyles = (() => { | ||||||
|   const returnStyles = navigator.userAgent.indexOf("Windows") !== -1 ? ` |   const returnStyles = | ||||||
|  |     navigator.userAgent.indexOf('Windows') !== -1 | ||||||
|  |       ? ` | ||||||
|   /* width */ |   /* width */ | ||||||
|   ::-webkit-scrollbar { |   ::-webkit-scrollbar { | ||||||
|     width: 8px; |     width: 8px; | ||||||
| @@ -24,5 +26,6 @@ export const scrollBarStyles = (() => { | |||||||
|   ::-webkit-scrollbar-thumb:hover { |   ::-webkit-scrollbar-thumb:hover { | ||||||
|     background: #777;  |     background: #777;  | ||||||
|   } |   } | ||||||
| ` : ``; | ` | ||||||
|  |       : ``; | ||||||
| })(); | })(); | ||||||
|   | |||||||
| @@ -1,9 +1,7 @@ | |||||||
| // designestate scope | // designestate scope | ||||||
| import * as deesComms from '@designestate/dees-comms'; | import * as deesComms from '@designestate/dees-comms'; | ||||||
|  |  | ||||||
| export { | export { deesComms }; | ||||||
|   deesComms |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| // apiglobal scope | // apiglobal scope | ||||||
| import * as typedrequest from '@apiglobal/typedrequest'; | import * as typedrequest from '@apiglobal/typedrequest'; | ||||||
| @@ -21,12 +19,22 @@ import * as websetup from '@pushrocks/websetup'; | |||||||
| import * as webstore from '@pushrocks/webstore'; | import * as webstore from '@pushrocks/webstore'; | ||||||
|  |  | ||||||
| // subscope lik | // subscope lik | ||||||
| import { ObjectMap } from '@pushrocks/lik/dist_ts/lik.objectmap';   | import { ObjectMap } from '@pushrocks/lik/dist_ts/lik.objectmap'; | ||||||
| const lik = { | const lik = { | ||||||
|   ObjectMap |   ObjectMap, | ||||||
| }; | }; | ||||||
|  |  | ||||||
| export { lik, smartdelay, smartpromise, smartrouter, smartrx, smartstate, webrequest, websetup, webstore }; | export { | ||||||
|  |   lik, | ||||||
|  |   smartdelay, | ||||||
|  |   smartpromise, | ||||||
|  |   smartrouter, | ||||||
|  |   smartrx, | ||||||
|  |   smartstate, | ||||||
|  |   webrequest, | ||||||
|  |   websetup, | ||||||
|  |   webstore, | ||||||
|  | }; | ||||||
|  |  | ||||||
| // third party scope | // third party scope | ||||||
| import SweetScroll from 'sweet-scroll'; | import SweetScroll from 'sweet-scroll'; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user