@shoppexio/builder-contracts 0.1.12 → 0.1.13
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/dist/theme-schemes.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export type PublicBuilderThemeScheme = (typeof PUBLIC_BUILDER_THEME_SCHEMES)[num
|
|
|
3
3
|
export declare const STARTER_BUILDER_THEME_SCHEMES: readonly ["blank"];
|
|
4
4
|
export declare const THEME_STORE_DISABLED_SCHEMES: readonly [];
|
|
5
5
|
export declare const THEME_STORE_INSTALLABLE_SCHEMES: readonly ["default", "starlight", "pulse", "vault", "clean-minimal", "classic", "phantom", "nebula", "apex", "shadow"];
|
|
6
|
-
export declare const BUILDER_READY_THEME_SCHEMES: readonly ["blank", "default", "classic", "nebula", "pulse", "phantom", "starlight", "apex", "vault", "clean-minimal"
|
|
6
|
+
export declare const BUILDER_READY_THEME_SCHEMES: readonly ["blank", "default", "classic", "nebula", "pulse", "phantom", "starlight", "apex", "vault", "clean-minimal"];
|
|
7
7
|
export type ThemeStoreInstallableScheme = (typeof THEME_STORE_INSTALLABLE_SCHEMES)[number];
|
|
8
8
|
export type StarterBuilderThemeScheme = (typeof STARTER_BUILDER_THEME_SCHEMES)[number];
|
|
9
9
|
export type BuilderReadyThemeScheme = (typeof BUILDER_READY_THEME_SCHEMES)[number];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme-schemes.d.ts","sourceRoot":"","sources":["../src/theme-schemes.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,wHAW/B,CAAC;AAEX,MAAM,MAAM,wBAAwB,GAAG,CAAC,OAAO,4BAA4B,CAAC,CAAC,MAAM,CAAC,CAAC;AAErF,eAAO,MAAM,6BAA6B,oBAAqB,CAAC;AAEhE,eAAO,MAAM,4BAA4B,aAA4D,CAAC;AAItG,eAAO,MAAM,+BAA+B,wHAWY,CAAC;AAEzD,eAAO,MAAM,2BAA2B,
|
|
1
|
+
{"version":3,"file":"theme-schemes.d.ts","sourceRoot":"","sources":["../src/theme-schemes.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,wHAW/B,CAAC;AAEX,MAAM,MAAM,wBAAwB,GAAG,CAAC,OAAO,4BAA4B,CAAC,CAAC,MAAM,CAAC,CAAC;AAErF,eAAO,MAAM,6BAA6B,oBAAqB,CAAC;AAEhE,eAAO,MAAM,4BAA4B,aAA4D,CAAC;AAItG,eAAO,MAAM,+BAA+B,wHAWY,CAAC;AAEzD,eAAO,MAAM,2BAA2B,uHAW9B,CAAC;AAEX,MAAM,MAAM,2BAA2B,GAAG,CAAC,OAAO,+BAA+B,CAAC,CAAC,MAAM,CAAC,CAAC;AAC3F,MAAM,MAAM,yBAAyB,GAAG,CAAC,OAAO,6BAA6B,CAAC,CAAC,MAAM,CAAC,CAAC;AACvF,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,2BAA2B,CAAC,CAAC,MAAM,CAAC,CAAC;AAEnF,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,wBAAwB,CAE3F;AAED,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAEjE;AAED,wBAAgB,6BAA6B,CAC3C,KAAK,EAAE,MAAM,GACZ,KAAK,IAAI,2BAA2B,CAEtC;AAED,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,yBAAyB,CAE7F;AAED,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,uBAAuB,CAEzF"}
|
package/dist/theme-schemes.js
CHANGED
|
@@ -27,7 +27,15 @@ export const THEME_STORE_INSTALLABLE_SCHEMES = [
|
|
|
27
27
|
];
|
|
28
28
|
export const BUILDER_READY_THEME_SCHEMES = [
|
|
29
29
|
...STARTER_BUILDER_THEME_SCHEMES,
|
|
30
|
-
|
|
30
|
+
'default',
|
|
31
|
+
'classic',
|
|
32
|
+
'nebula',
|
|
33
|
+
'pulse',
|
|
34
|
+
'phantom',
|
|
35
|
+
'starlight',
|
|
36
|
+
'apex',
|
|
37
|
+
'vault',
|
|
38
|
+
'clean-minimal',
|
|
31
39
|
];
|
|
32
40
|
export function isPublicBuilderThemeScheme(value) {
|
|
33
41
|
return PUBLIC_BUILDER_THEME_SCHEMES.includes(value);
|
package/package.json
CHANGED
package/src/theme-schemes.ts
CHANGED
|
@@ -34,7 +34,15 @@ export const THEME_STORE_INSTALLABLE_SCHEMES = [
|
|
|
34
34
|
|
|
35
35
|
export const BUILDER_READY_THEME_SCHEMES = [
|
|
36
36
|
...STARTER_BUILDER_THEME_SCHEMES,
|
|
37
|
-
|
|
37
|
+
'default',
|
|
38
|
+
'classic',
|
|
39
|
+
'nebula',
|
|
40
|
+
'pulse',
|
|
41
|
+
'phantom',
|
|
42
|
+
'starlight',
|
|
43
|
+
'apex',
|
|
44
|
+
'vault',
|
|
45
|
+
'clean-minimal',
|
|
38
46
|
] as const;
|
|
39
47
|
|
|
40
48
|
export type ThemeStoreInstallableScheme = (typeof THEME_STORE_INSTALLABLE_SCHEMES)[number];
|