@wlloyalty/wll-react-sdk 1.0.28 → 1.0.29
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/index.d.ts +15 -7
- package/dist/index.js +167 -123
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,13 +4,21 @@ import { ViewStyle, ImageSourcePropType, StyleProp, View, TextProps as TextProps
|
|
|
4
4
|
import * as LucideIcons from 'lucide-react';
|
|
5
5
|
|
|
6
6
|
declare const sizes: {
|
|
7
|
-
borderRadiusSm:
|
|
8
|
-
borderRadiusLg:
|
|
9
|
-
borderRadiusButton:
|
|
10
|
-
borderRadiusRounded:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
readonly borderRadiusSm: 15;
|
|
8
|
+
readonly borderRadiusLg: 20;
|
|
9
|
+
readonly borderRadiusButton: 9;
|
|
10
|
+
readonly borderRadiusRounded: 9999;
|
|
11
|
+
readonly xxxs: 4;
|
|
12
|
+
readonly xxs: 8;
|
|
13
|
+
readonly xs: 10;
|
|
14
|
+
readonly sm: 12;
|
|
15
|
+
readonly md: 14;
|
|
16
|
+
readonly lg: 16;
|
|
17
|
+
readonly xl: 18;
|
|
18
|
+
readonly xxl: 24;
|
|
19
|
+
readonly xxxl: 32;
|
|
20
|
+
readonly xxxxl: 40;
|
|
21
|
+
readonly xxxxxl: 60;
|
|
14
22
|
};
|
|
15
23
|
|
|
16
24
|
type PercentageKey = 5 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 95;
|