sass-template-common 0.9.63-beta.6 → 0.9.63-beta.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.
@@ -670,6 +670,12 @@ export { Date_2 as Date }
670
670
 
671
671
  export declare const DEBUG_MainSlots: ({ mainBlock, StylesConfigMain, config, banners, }: Props_37) => JSX.Element | null;
672
672
 
673
+ declare type DebugCfg = {
674
+ enabled?: boolean;
675
+ showButton?: boolean;
676
+ buttonPosition?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
677
+ };
678
+
673
679
  export declare interface DebugFetchError {
674
680
  id: string;
675
681
  timestamp: string;
@@ -682,7 +688,9 @@ export declare interface DebugFetchError {
682
688
  layer: 'axios-service' | 'fetch-api' | 'captcha' | 'auth';
683
689
  }
684
690
 
685
- export declare function DebugPanel(): JSX.Element | null;
691
+ export declare function DebugPanel({ debugCfg }: {
692
+ debugCfg?: DebugCfg;
693
+ }): JSX.Element | null;
686
694
 
687
695
  export declare const DebugStore: {
688
696
  add(err: Omit<DebugFetchError, "id" | "timestamp">): void;