amotify 0.0.47 → 0.0.48

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/state.tsx CHANGED
@@ -1,4 +1,4 @@
1
- export default { }
1
+ export default {}
2
2
 
3
3
  declare global {
4
4
  type amotifyBasicElement = amotify.UniStyles.BasicTagParams & amotifyUniStyleParams
@@ -121,12 +121,14 @@ declare global {
121
121
  fontSize?: SizeParams
122
122
  fontWeight?: WeightParams
123
123
 
124
+ isLightFont?: boolean
124
125
  isBoldFont?: boolean
126
+ isSemiBoldFont?: boolean
125
127
  isRounded?: boolean
126
128
 
127
129
  textAlign?: 'left' | 'center' | 'right'
128
130
  }
129
- type WeightParams = '1.lighter' | '2.normal' | '3.bold' | 'inherit'
131
+ type WeightParams = '0.thin' | '1.light' | '2.normal' | '3.semiBold' | '4.bold' | '5.extraBold' | 'inherit' | 'lighter' | 'bolder'
130
132
  type ColorParams =
131
133
  Others.UniColors |
132
134
  '1.clear' | '2.normal' | '3.blur' | '4.thin' | '5.translucent' | '6.clear' |