sapo-components-ui-rn 1.1.36 → 1.1.38
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/dist/components/TextInput/constants.d.ts +1 -1
- package/dist/components/TextInput/types.d.ts +1 -0
- package/dist/index.esm.js +440 -51
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +440 -51
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Button/index.tsx +1 -1
- package/src/components/NumberKeyboard/index.tsx +216 -24
- package/src/components/TextInput/Label/InputLabel.tsx +2 -1
- package/src/components/TextInput/TextInputDefault.tsx +20 -2
- package/src/components/TextInput/TextInputFlat.tsx +3 -2
- package/src/components/TextInput/TextInputNumber.tsx +242 -37
- package/src/components/TextInput/constants.tsx +1 -1
- package/src/components/TextInput/types.tsx +1 -0
- package/src/.DS_Store +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const MAXIMIZED_LABEL_FONT_SIZE = 15;
|
|
2
|
-
export declare const MINIMIZED_LABEL_FONT_SIZE =
|
|
2
|
+
export declare const MINIMIZED_LABEL_FONT_SIZE = 13;
|
|
3
3
|
export declare const LABEL_WIGGLE_X_OFFSET = 4;
|
|
4
4
|
export declare const ADORNMENT_SIZE = 24;
|
|
5
5
|
export declare const MIN_WIDTH = 100;
|