amotify 0.0.45 → 0.0.47

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 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 {