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 +4 -1
- package/@types/fn.tsx +2 -1
- package/dist/amotify.js +2 -2
- package/dist/amotify.min.css +3 -3
- package/dist/coreVender.js +1 -1
- package/package.json +1 -1
- package/src/functions/Cropper/parts.tsx +37 -16
- package/src/functions/Cropper/style.module.scss +1 -0
- package/src/functions/Input/Slider/_.tsx +17 -9
- package/src/functions/Input/Slider/style.module.scss +2 -2
- package/src/global/LaunchReactApplication.tsx +1 -0
- package/src/launch.tsx +8 -2
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:
|
|
1232
|
+
use: UseTypes
|
|
1232
1233
|
develops: DevelopParams[]
|
|
1233
1234
|
onProcessFinished: {
|
|
1234
1235
|
( files: Input.Filer.CustomFile[] ): void
|