amotify 0.0.62 → 0.0.64

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
@@ -1,4 +1,4 @@
1
- export default { }
1
+ export default {}
2
2
 
3
3
  import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome'
4
4
  import { IconDefinition } from "@fortawesome/fontawesome-common-types"
@@ -128,6 +128,9 @@ declare global {
128
128
  useStore: global.useStoreParams
129
129
  useRecycle: global.useRecycleParams
130
130
  LaunchReactApplication( params: global.LaunchReactApplicationInput ): void
131
+ LaunchSubApplication( params: global.LaunchReactApplicationInput & {
132
+ baseElement?: HTMLElement | string
133
+ } ): void
131
134
  }
132
135
  }
133
136
 
package/@types/fn.tsx CHANGED
@@ -1227,8 +1227,9 @@ declare global {
1227
1227
  }
1228
1228
  }
1229
1229
  namespace Cropper {
1230
+ type UseTypes = 'square' | 'wallpaper.horizontal' | 'wallpaper.vertical'
1230
1231
  type Params = {
1231
- use: 'profile' | 'header'
1232
+ use: UseTypes
1232
1233
  develops: DevelopParams[]
1233
1234
  onProcessFinished: {
1234
1235
  ( files: Input.Filer.CustomFile[] ): void