@ds-autonomie/react-native 0.1.0 → 0.3.0
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/CHANGELOG.md +23 -0
- package/dist/chunks/chunk.3QXPJAHY.js +22 -0
- package/dist/chunks/chunk.4MPJJ7EN.js +65 -0
- package/dist/chunks/chunk.4SSEOHVB.js +41 -0
- package/dist/chunks/chunk.4ZX27FCY.js +21 -0
- package/dist/chunks/chunk.6DY4BFMZ.js +22 -0
- package/dist/chunks/chunk.73S52VD6.js +94 -0
- package/dist/chunks/chunk.7H4YRP4X.js +70 -0
- package/dist/chunks/{chunk.NNC6C337.js → chunk.B2JV2E47.js} +3 -3
- package/dist/chunks/chunk.CIHQLL6Y.js +93 -0
- package/dist/chunks/chunk.DMHRBYRF.js +69 -0
- package/dist/chunks/chunk.H2AL2E3A.js +47 -0
- package/dist/chunks/chunk.INEDXDER.js +51 -0
- package/dist/chunks/chunk.KVGKM2JI.js +73 -0
- package/dist/chunks/chunk.KVXJ2L2C.js +22 -0
- package/dist/chunks/chunk.LN5IVTGU.js +60 -0
- package/dist/chunks/{chunk.4EJ4MEUR.js → chunk.OQSCGAEY.js} +4 -2
- package/dist/chunks/chunk.RNOZ5AW4.js +71 -0
- package/dist/chunks/chunk.SZJKAIPC.js +20 -0
- package/dist/chunks/chunk.XCMNSIIN.js +72 -0
- package/dist/chunks/chunk.YWEWQ2LT.js +39 -0
- package/dist/components/button/Button.d.ts +65 -0
- package/dist/components/button/Button.js +8 -0
- package/dist/components/button/Button.styles.d.ts +38 -0
- package/dist/components/button/Button.styles.js +14 -0
- package/dist/components/checkbox/Checkbox.d.ts +55 -0
- package/dist/components/checkbox/Checkbox.js +8 -0
- package/dist/components/checkbox/Checkbox.styles.d.ts +38 -0
- package/dist/components/checkbox/Checkbox.styles.js +8 -0
- package/dist/components/divider/Divider.d.ts +7 -0
- package/dist/components/divider/Divider.js +24 -0
- package/dist/components/divider/Divider.styles.d.ts +13 -0
- package/dist/components/divider/Divider.styles.js +6 -0
- package/dist/components/icon/Icon.d.ts +10 -4
- package/dist/components/icon/Icon.js +1 -1
- package/dist/components/listCaption/ListCaption.d.ts +7 -0
- package/dist/components/listCaption/ListCaption.js +8 -0
- package/dist/components/listCaption/ListCaption.styles.d.ts +14 -0
- package/dist/components/listCaption/ListCaption.styles.js +7 -0
- package/dist/components/listItem/ListItem.d.ts +34 -0
- package/dist/components/listItem/ListItem.js +9 -0
- package/dist/components/listItem/ListItem.styles.d.ts +48 -0
- package/dist/components/listItem/ListItem.styles.js +7 -0
- package/dist/components/listTitle/ListTitle.d.ts +7 -0
- package/dist/components/listTitle/ListTitle.js +8 -0
- package/dist/components/listTitle/ListTitle.styles.d.ts +15 -0
- package/dist/components/listTitle/ListTitle.styles.js +7 -0
- package/dist/components/radio/Radio.d.ts +55 -0
- package/dist/components/radio/Radio.js +7 -0
- package/dist/components/radio/Radio.styles.d.ts +30 -0
- package/dist/components/radio/Radio.styles.js +8 -0
- package/dist/components/searchField/SearchField.d.ts +14 -0
- package/dist/components/searchField/SearchField.js +7 -0
- package/dist/components/searchField/SearchField.styles.d.ts +42 -0
- package/dist/components/searchField/SearchField.styles.js +10 -0
- package/dist/components/textInput/TextInput.d.ts +54 -0
- package/dist/components/textInput/TextInput.js +9 -0
- package/dist/components/textInput/TextInput.styles.d.ts +94 -0
- package/dist/components/textInput/TextInput.styles.js +11 -0
- package/dist/components/toggle/Toggle.js +2 -2
- package/dist/index.d.ts +10 -1
- package/dist/index.js +46 -2
- package/dist/styles/fonts.d.ts +35 -0
- package/dist/utils/device.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare const fonts: {
|
|
2
|
+
bodyLarge: {
|
|
3
|
+
fontSize: number;
|
|
4
|
+
fontFamily: string;
|
|
5
|
+
fontWeight: "400";
|
|
6
|
+
lineHeight: number;
|
|
7
|
+
letterSpacing: number;
|
|
8
|
+
};
|
|
9
|
+
bodyMedium: {
|
|
10
|
+
fontSize: number;
|
|
11
|
+
fontWeight: "400";
|
|
12
|
+
lineHeight: number;
|
|
13
|
+
fontFamily: string;
|
|
14
|
+
letterSpacing: number;
|
|
15
|
+
};
|
|
16
|
+
bodySmall: {
|
|
17
|
+
fontSize: number;
|
|
18
|
+
fontFamily: string;
|
|
19
|
+
letterSpacing: number;
|
|
20
|
+
};
|
|
21
|
+
titleSmall: {
|
|
22
|
+
fontSize: number;
|
|
23
|
+
fontWeight: "500";
|
|
24
|
+
lineHeight: number;
|
|
25
|
+
fontFamily: string;
|
|
26
|
+
letterSpacing: number;
|
|
27
|
+
};
|
|
28
|
+
labelMedium: {
|
|
29
|
+
fontSize: number;
|
|
30
|
+
fontWeight: "500";
|
|
31
|
+
lineHeight: number;
|
|
32
|
+
fontFamily: string;
|
|
33
|
+
letterSpacing: number;
|
|
34
|
+
};
|
|
35
|
+
};
|