@santi020k/theme 1.0.1 → 1.0.2

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.
package/index.d.ts CHANGED
@@ -21,9 +21,15 @@ export declare const chromeThemeVariantManifests: Record<
21
21
  export declare const chromeThemeImageRequirements: Record<
22
22
  string,
23
23
  {
24
+ bitDepth: 8
25
+ colorType: 2
24
26
  format: 'png'
27
+ height: number
28
+ maxHeight: number
29
+ maxWidth: number
25
30
  minWidth: number
26
31
  minHeight: number
32
+ width: number
27
33
  }
28
34
  >
29
35
  export declare const chromeThemeSourceTokenRoles: {
package/index.js CHANGED
@@ -21,9 +21,15 @@ export const chromeThemeVariantManifests = {
21
21
 
22
22
  export const chromeThemeImageRequirements = {
23
23
  theme_ntp_background: {
24
+ bitDepth: 8,
25
+ colorType: 2,
24
26
  format: 'png',
25
- minWidth: 3840,
26
- minHeight: 2160
27
+ height: 1080,
28
+ maxHeight: 1080,
29
+ maxWidth: 1920,
30
+ minHeight: 1080,
31
+ minWidth: 1920,
32
+ width: 1920
27
33
  }
28
34
  }
29
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@santi020k/theme",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Santi020k design tokens and shared brand assets for websites, apps, and theme surfaces.",
5
5
  "type": "module",
6
6
  "main": "./index.js",