jabroni-outfit 1.4.4 → 1.4.6

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.d.ts CHANGED
@@ -23,7 +23,8 @@ export declare class JabroniOutfitStore {
23
23
  }
24
24
 
25
25
  export declare class JabroniOutfitUI {
26
- constructor({ state, stateLocale }: JabroniOutfitStore, scheme?: Scheme);
26
+ private getRoot;
27
+ constructor({ state, stateLocale }: JabroniOutfitStore, scheme?: Scheme, rootSelector?: string, position?: UIPosition);
27
28
  }
28
29
 
29
30
  declare type NotifyApply = (input: RecordV) => void;
@@ -59,4 +60,12 @@ declare interface StateOption {
59
60
 
60
61
  declare type StateOptions = Record<string, StateOption>;
61
62
 
63
+ declare interface UIPosition {
64
+ fixed: boolean;
65
+ left?: boolean;
66
+ right?: boolean;
67
+ top?: boolean;
68
+ bottom?: boolean;
69
+ }
70
+
62
71
  export { }