amotify 0.0.43 → 0.0.45
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/fn.tsx +3 -0
- package/@types/jsminAmotifyExtension.tsx +1 -1
- package/dist/amotify.js +2 -2
- package/dist/amotify.min.css +1 -1
- package/dist/coreVender.js +2 -2
- package/package.json +1 -1
- package/src/@jsminAmotifyExtension/variables.tsx +7 -4
- package/src/functions/Input/RichSelect/_.tsx +3 -2
package/@types/fn.tsx
CHANGED
|
@@ -611,6 +611,8 @@ declare global {
|
|
|
611
611
|
|
|
612
612
|
cellStyles?: amotifyUniStyleParams
|
|
613
613
|
sheetStyles?: amotifyUniStyleParams
|
|
614
|
+
|
|
615
|
+
gravityPoint?: number
|
|
614
616
|
}
|
|
615
617
|
|
|
616
618
|
type ValueProps = string | number | boolean | plainObject | void | null
|
|
@@ -619,6 +621,7 @@ declare global {
|
|
|
619
621
|
type?: 'button' | 'label'
|
|
620
622
|
value: ValueProps
|
|
621
623
|
label: ReactElement
|
|
624
|
+
selectedLabel?: ReactElement
|
|
622
625
|
}
|
|
623
626
|
}
|
|
624
627
|
namespace List {
|