@swell/apps-sdk 1.0.62 → 1.0.63
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 +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/dist/types/swell.d.ts +2 -0
- package/package.json +1 -1
package/dist/types/swell.d.ts
CHANGED
|
@@ -145,6 +145,7 @@ export interface ThemeSettings {
|
|
|
145
145
|
export interface ThemeSettingsBlock {
|
|
146
146
|
type: string;
|
|
147
147
|
settings: ThemeSettings;
|
|
148
|
+
disabled?: boolean;
|
|
148
149
|
}
|
|
149
150
|
export interface ThemeSectionBase {
|
|
150
151
|
id: string;
|
|
@@ -153,6 +154,7 @@ export interface ThemeSectionBase {
|
|
|
153
154
|
blocks?: ThemeSettingsBlock[];
|
|
154
155
|
block_order?: string[];
|
|
155
156
|
custom_css?: string;
|
|
157
|
+
disabled?: boolean;
|
|
156
158
|
}
|
|
157
159
|
export interface ThemeSectionSettings extends ThemeSettings {
|
|
158
160
|
section: ThemeSectionBase;
|