amotify 0.0.31 → 0.0.33

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/@types/amot.tsx CHANGED
@@ -53,7 +53,9 @@ declare global {
53
53
  }
54
54
  themeColors: {
55
55
  [ key in amotify.ThemeColorTypes ]: {
56
- ( alfa?: number ): string
56
+ alfa( alfa?: number ): string
57
+ isBrand: boolean
58
+ isAvocado: boolean
57
59
  }
58
60
  }
59
61
  }
@@ -34,8 +34,7 @@ declare global {
34
34
  // SpreadSheet
35
35
  interface JsminExtension {
36
36
  spreadSheet: {
37
- readFromExcel( file: amotify.fn.Input.Filer.CustomFile ): Promise<JsminExtension.SpreadSheet.Method>
38
- readFromCsv( file: amotify.fn.Input.Filer.CustomFile ): Promise<JsminExtension.SpreadSheet.Method>
37
+ readFromFile( file: amotify.fn.Input.Filer.CustomFile ): Promise<JsminExtension.SpreadSheet.Method>
39
38
  readFromJson( v: JsminExtension.SpreadSheet.JsonTypes ): Promise<JsminExtension.SpreadSheet.Method>
40
39
  }
41
40
  }
@@ -48,6 +47,7 @@ declare global {
48
47
  ( v: any,a: string ): any
49
48
  }
50
49
  interface Method {
50
+ isValid(): boolean
51
51
  getWorkbook(): any
52
52
  updateFileName( fileName: string ): void
53
53
  updateMerges( merges: MergeTypes[][] ): void