amotify 0.0.44 → 0.0.46
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 +7 -2
- 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/functions/Input/Time/Picker.tsx +428 -5
- package/src/functions/Input/Time/_.tsx +26 -12
- package/src/functions/Input/_.tsx +38 -25
- package/src/functions/Layout/RootViewController/parts.tsx +1 -0
- package/src/functions/Sheet/parts.tsx +1 -0
- package/src/functions/Table/Data/parts.tsx +7 -2
- package/src/functions/Tooltips/parts.tsx +2 -2
package/@types/fn.tsx
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export default {
|
|
1
|
+
export default {}
|
|
2
2
|
declare global {
|
|
3
3
|
namespace amotify {
|
|
4
4
|
namespace fn {
|
|
@@ -248,6 +248,10 @@ declare global {
|
|
|
248
248
|
defaultOrder?: OrderParams
|
|
249
249
|
pageRowLength: number
|
|
250
250
|
noRecords?: ReactElement
|
|
251
|
+
|
|
252
|
+
onOrderChanged?: {
|
|
253
|
+
( order: OrderParams ): void
|
|
254
|
+
}
|
|
251
255
|
}
|
|
252
256
|
|
|
253
257
|
type Methods = {
|
|
@@ -545,9 +549,10 @@ declare global {
|
|
|
545
549
|
tipsID?: string
|
|
546
550
|
restrict: RestrictTypes
|
|
547
551
|
defaultValue: string | string[]
|
|
552
|
+
era?: EraTypes
|
|
548
553
|
min?: string
|
|
549
554
|
max?: string
|
|
550
|
-
onValueUpdate( value: string | [ string,string ] ): void
|
|
555
|
+
onValueUpdate( value: string | [ string,string ],era: EraTypes ): void
|
|
551
556
|
}
|
|
552
557
|
}
|
|
553
558
|
namespace Select {
|