@shoppexio/builder-contracts 0.1.6 → 0.1.7
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const PUBLIC_BUILDER_THEME_SCHEMES: readonly ["default", "classic", "nebula", "pulse", "phantom", "starlight", "apex", "vault", "clean-minimal"];
|
|
2
2
|
export type PublicBuilderThemeScheme = (typeof PUBLIC_BUILDER_THEME_SCHEMES)[number];
|
|
3
3
|
export declare const STARTER_BUILDER_THEME_SCHEMES: readonly ["blank"];
|
|
4
|
-
export declare const THEME_STORE_DISABLED_SCHEMES: readonly ["classic", "vault", "nebula", "
|
|
5
|
-
export declare const THEME_STORE_INSTALLABLE_SCHEMES: readonly ["default", "starlight"];
|
|
4
|
+
export declare const THEME_STORE_DISABLED_SCHEMES: readonly ["classic", "vault", "nebula", "phantom", "apex", "clean-minimal"];
|
|
5
|
+
export declare const THEME_STORE_INSTALLABLE_SCHEMES: readonly ["default", "starlight", "pulse"];
|
|
6
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];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme-schemes.d.ts","sourceRoot":"","sources":["../src/theme-schemes.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,8GAU/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,
|
|
1
|
+
{"version":3,"file":"theme-schemes.d.ts","sourceRoot":"","sources":["../src/theme-schemes.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,8GAU/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,6EAOe,CAAC;AAIzD,eAAO,MAAM,+BAA+B,4CAIY,CAAC;AAEzD,eAAO,MAAM,2BAA2B,uHAG9B,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
|
@@ -14,7 +14,6 @@ export const THEME_STORE_DISABLED_SCHEMES = [
|
|
|
14
14
|
'classic',
|
|
15
15
|
'vault',
|
|
16
16
|
'nebula',
|
|
17
|
-
'pulse',
|
|
18
17
|
'phantom',
|
|
19
18
|
'apex',
|
|
20
19
|
'clean-minimal',
|
|
@@ -23,6 +22,7 @@ const THEME_STORE_DISABLED_SCHEME_SET = new Set(THEME_STORE_DISABLED_SCHEMES);
|
|
|
23
22
|
export const THEME_STORE_INSTALLABLE_SCHEMES = [
|
|
24
23
|
'default',
|
|
25
24
|
'starlight',
|
|
25
|
+
'pulse',
|
|
26
26
|
];
|
|
27
27
|
export const BUILDER_READY_THEME_SCHEMES = [
|
|
28
28
|
...STARTER_BUILDER_THEME_SCHEMES,
|
package/package.json
CHANGED
package/src/theme-schemes.ts
CHANGED
|
@@ -18,7 +18,6 @@ export const THEME_STORE_DISABLED_SCHEMES = [
|
|
|
18
18
|
'classic',
|
|
19
19
|
'vault',
|
|
20
20
|
'nebula',
|
|
21
|
-
'pulse',
|
|
22
21
|
'phantom',
|
|
23
22
|
'apex',
|
|
24
23
|
'clean-minimal',
|
|
@@ -29,6 +28,7 @@ const THEME_STORE_DISABLED_SCHEME_SET = new Set<string>(THEME_STORE_DISABLED_SCH
|
|
|
29
28
|
export const THEME_STORE_INSTALLABLE_SCHEMES = [
|
|
30
29
|
'default',
|
|
31
30
|
'starlight',
|
|
31
|
+
'pulse',
|
|
32
32
|
] as const satisfies readonly PublicBuilderThemeScheme[];
|
|
33
33
|
|
|
34
34
|
export const BUILDER_READY_THEME_SCHEMES = [
|