@swell/apps-sdk 1.0.55 → 1.0.57
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/index.cjs +3 -3
- package/dist/index.cjs.map +3 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +3 -3
- package/dist/src/theme/theme-loader.d.ts +1 -1
- package/dist/types/swell.d.ts +5 -0
- package/package.json +1 -1
package/dist/types/swell.d.ts
CHANGED
|
@@ -90,6 +90,9 @@ export interface SwellThemeConfig extends SwellRecord {
|
|
|
90
90
|
file_data: string;
|
|
91
91
|
file_path: string;
|
|
92
92
|
}
|
|
93
|
+
export interface SwellThemeManifest {
|
|
94
|
+
[key: string]: string;
|
|
95
|
+
}
|
|
93
96
|
export interface SwellMenu {
|
|
94
97
|
id: string;
|
|
95
98
|
name: string;
|
|
@@ -140,6 +143,7 @@ export interface ThemeSectionBase {
|
|
|
140
143
|
settings: ThemeSettings;
|
|
141
144
|
blocks?: ThemeSettingsBlock[];
|
|
142
145
|
block_order?: string[];
|
|
146
|
+
custom_css?: string;
|
|
143
147
|
}
|
|
144
148
|
export interface ThemeSectionSettings extends ThemeSettings {
|
|
145
149
|
section: ThemeSectionBase;
|
|
@@ -187,6 +191,7 @@ export interface ThemeSection {
|
|
|
187
191
|
settings: ThemeSettings;
|
|
188
192
|
blocks?: Record<string, ThemeSettingsBlock>;
|
|
189
193
|
block_order?: string[];
|
|
194
|
+
custom_css?: string;
|
|
190
195
|
}
|
|
191
196
|
interface ThemeSectionGroupBase {
|
|
192
197
|
id?: string;
|