fix(core): update
This commit is contained in:
		
							
								
								
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -20,7 +20,7 @@ | ||||
|         "@pushrocks/webrequest": "^3.0.3", | ||||
|         "@pushrocks/websetup": "^3.0.16", | ||||
|         "@pushrocks/webstore": "^1.0.18", | ||||
|         "lit": "^2.2.1", | ||||
|         "lit": "^2.2.2", | ||||
|         "sweet-scroll": "^4.0.0" | ||||
|       }, | ||||
|       "devDependencies": { | ||||
| @@ -7980,9 +7980,9 @@ | ||||
|       "license": "MIT" | ||||
|     }, | ||||
|     "node_modules/lit": { | ||||
|       "version": "2.2.1", | ||||
|       "resolved": "https://verdaccio.lossless.one/lit/-/lit-2.2.1.tgz", | ||||
|       "integrity": "sha512-dSe++R50JqrvNGXmI9OE13de1z5U/Y3J2dTm/9GC86vedI8ILoR8ZGnxfThFpvQ9m0lR0qRnIR4IiKj/jDCfYw==", | ||||
|       "version": "2.2.2", | ||||
|       "resolved": "https://verdaccio.lossless.one/lit/-/lit-2.2.2.tgz", | ||||
|       "integrity": "sha512-eN3+2QRHn/erxYB88AXiiRgQA6RltE9MhzySCwX+ACOxA/MLWN3VdXvcbZD9PN09zmUwlgzDvW3T84YWj2Sa0A==", | ||||
|       "license": "BSD-3-Clause", | ||||
|       "dependencies": { | ||||
|         "@lit/reactive-element": "^1.3.0", | ||||
| @@ -17035,9 +17035,9 @@ | ||||
|       "dev": true | ||||
|     }, | ||||
|     "lit": { | ||||
|       "version": "2.2.1", | ||||
|       "resolved": "https://verdaccio.lossless.one/lit/-/lit-2.2.1.tgz", | ||||
|       "integrity": "sha512-dSe++R50JqrvNGXmI9OE13de1z5U/Y3J2dTm/9GC86vedI8ILoR8ZGnxfThFpvQ9m0lR0qRnIR4IiKj/jDCfYw==", | ||||
|       "version": "2.2.2", | ||||
|       "resolved": "https://verdaccio.lossless.one/lit/-/lit-2.2.2.tgz", | ||||
|       "integrity": "sha512-eN3+2QRHn/erxYB88AXiiRgQA6RltE9MhzySCwX+ACOxA/MLWN3VdXvcbZD9PN09zmUwlgzDvW3T84YWj2Sa0A==", | ||||
|       "requires": { | ||||
|         "@lit/reactive-element": "^1.3.0", | ||||
|         "lit-element": "^3.2.0", | ||||
|   | ||||
| @@ -34,7 +34,7 @@ | ||||
|     "@pushrocks/webrequest": "^3.0.3", | ||||
|     "@pushrocks/websetup": "^3.0.16", | ||||
|     "@pushrocks/webstore": "^1.0.18", | ||||
|     "lit": "^2.2.1", | ||||
|     "lit": "^2.2.2", | ||||
|     "sweet-scroll": "^4.0.0" | ||||
|   }, | ||||
|   "files": [ | ||||
|   | ||||
| @@ -11,7 +11,7 @@ export type TViewport = 'native' | 'desktop' | 'tablet' | 'phablet' | 'phone'; | ||||
|  | ||||
| export const cssForTablet = (cssArg: CSSResult) => { | ||||
|   return unsafeCSS(` | ||||
|     @container wccToolsViewport size(max-width: ${tablet}px) { | ||||
|     @container wccToolsViewport (max-width: ${tablet}px) { | ||||
|       ${cssArg.cssText} | ||||
|     } | ||||
|     @media (max-width: ${tablet}px) { | ||||
| @@ -22,7 +22,7 @@ export const cssForTablet = (cssArg: CSSResult) => { | ||||
|  | ||||
| export const cssForPhablet = (cssArg: CSSResult) => { | ||||
|   return unsafeCSS(` | ||||
|     @container wccToolsViewport size(max-width: ${phablet}px) { | ||||
|     @container wccToolsViewport (max-width: ${phablet}px) { | ||||
|       ${cssArg.cssText} | ||||
|     } | ||||
|     @media (max-width: ${phablet}px) { | ||||
| @@ -33,7 +33,7 @@ export const cssForPhablet = (cssArg: CSSResult) => { | ||||
|  | ||||
| export const cssForPhone = (cssArg: CSSResult) => { | ||||
|   return unsafeCSS(` | ||||
|     @container wccToolsViewport size(max-width: ${phone}px) { | ||||
|     @container wccToolsViewport (max-width: ${phone}px) { | ||||
|       ${cssArg.cssText} | ||||
|     } | ||||
|     @media (max-width: ${phone}px) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user