bt-core-app 1.4.430 → 1.4.431
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/bt-core-app.js +1309 -1304
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -180,10 +180,12 @@ declare interface BTBlade<T extends GetOptions<any, any>> {
|
|
|
180
180
|
export declare interface BTCosmetics {
|
|
181
181
|
state: Ref<CosmeticData>;
|
|
182
182
|
resetCosmetics: (toDefault: boolean) => void;
|
|
183
|
+
saveState: () => void;
|
|
183
184
|
setTemporaryColor: (color: string) => void;
|
|
184
185
|
toggleDrawer: () => void;
|
|
185
186
|
toggleDrawerStick: () => void;
|
|
186
187
|
toggleLightDark: () => void;
|
|
188
|
+
updateDrawer: (isOpen: boolean) => void;
|
|
187
189
|
undoTemporaryColor: () => void;
|
|
188
190
|
}
|
|
189
191
|
|
package/package.json
CHANGED