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 +4 -2
- package/dist/amotify.js +1 -1
- package/dist/amotify.min.css +1 -1
- package/package.json +1 -1
- package/src/@molecules.tsx +4 -4
- package/src/@styles/UniStyling.scss +18 -3
- package/src/@styles/init.scss +12 -19
- package/src/functions/Button/_.tsx +2 -2
- package/src/functions/Cropper/parts.tsx +1 -1
- package/src/functions/Input/Chips/Selector.tsx +2 -2
- package/src/functions/Input/File/_.tsx +2 -2
- package/src/functions/Input/Segmented/_.tsx +1 -1
- package/src/functions/Input/Time/Picker.tsx +2 -2
- package/src/functions/Input/_.tsx +1 -1
- package/src/functions/Layout/PageNotFound.tsx +1 -1
- package/src/functions/Layout/RootViewController/parts.tsx +2 -2
- package/src/functions/Loader/corner.tsx +1 -1
- package/src/global/styleConverter.tsx +11 -1
- package/src/preload.tsx +0 -29
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.
|
|
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' |
|