@draftbit/ui 43.4.16 → 43.4.18-3cead7.1
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/lib/typescript/src/index.d.ts +16 -18
- package/package.json +4 -4
|
@@ -45527,9 +45527,15 @@ export declare const StarRating: (props: import("utility-types").Subtract<import
|
|
|
45527
45527
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
45528
45528
|
}, string | import("react").JSXElementConstructor<any>>;
|
|
45529
45529
|
export declare const Stepper: (props: import("utility-types").Subtract<import("@draftbit/react-theme-provider").$Without<{
|
|
45530
|
+
min: number;
|
|
45531
|
+
max: number;
|
|
45530
45532
|
value?: number | undefined;
|
|
45531
|
-
|
|
45532
|
-
|
|
45533
|
+
defaultValue?: number | undefined;
|
|
45534
|
+
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
45535
|
+
typeStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
|
|
45536
|
+
iconSize: number;
|
|
45537
|
+
iconColor?: string | undefined;
|
|
45538
|
+
onChange?: ((value: number) => void) | undefined;
|
|
45533
45539
|
theme: {
|
|
45534
45540
|
disabledOpacity: number;
|
|
45535
45541
|
roundness: number;
|
|
@@ -47035,19 +47041,18 @@ export declare const Stepper: (props: import("utility-types").Subtract<import("@
|
|
|
47035
47041
|
};
|
|
47036
47042
|
};
|
|
47037
47043
|
};
|
|
47038
|
-
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
47039
|
-
onChange?: ((value: number) => void) | undefined;
|
|
47040
|
-
defaultValue?: number | undefined;
|
|
47041
|
-
iconSize?: number | undefined;
|
|
47042
|
-
iconColor?: string | undefined;
|
|
47043
|
-
borderRadius?: number | undefined;
|
|
47044
|
-
typeStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
|
|
47045
47044
|
} & import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot, "theme"> & {
|
|
47046
47045
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
47047
47046
|
}, import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot>) => import("react").ReactElement<import("@draftbit/react-theme-provider").$Without<{
|
|
47047
|
+
min: number;
|
|
47048
|
+
max: number;
|
|
47048
47049
|
value?: number | undefined;
|
|
47049
|
-
|
|
47050
|
-
|
|
47050
|
+
defaultValue?: number | undefined;
|
|
47051
|
+
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
47052
|
+
typeStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
|
|
47053
|
+
iconSize: number;
|
|
47054
|
+
iconColor?: string | undefined;
|
|
47055
|
+
onChange?: ((value: number) => void) | undefined;
|
|
47051
47056
|
theme: {
|
|
47052
47057
|
disabledOpacity: number;
|
|
47053
47058
|
roundness: number;
|
|
@@ -48553,13 +48558,6 @@ export declare const Stepper: (props: import("utility-types").Subtract<import("@
|
|
|
48553
48558
|
};
|
|
48554
48559
|
};
|
|
48555
48560
|
};
|
|
48556
|
-
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
48557
|
-
onChange?: ((value: number) => void) | undefined;
|
|
48558
|
-
defaultValue?: number | undefined;
|
|
48559
|
-
iconSize?: number | undefined;
|
|
48560
|
-
iconColor?: string | undefined;
|
|
48561
|
-
borderRadius?: number | undefined;
|
|
48562
|
-
typeStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
|
|
48563
48561
|
} & import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot, "theme"> & {
|
|
48564
48562
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
48565
48563
|
}, string | import("react").JSXElementConstructor<any>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/ui",
|
|
3
|
-
"version": "43.4.
|
|
3
|
+
"version": "43.4.18-3cead7.1+3cead70e",
|
|
4
4
|
"description": "Draftbit UI Library",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/draftbit/react-native-jigsaw#readme",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@draftbit/core": "^43.4.
|
|
47
|
-
"@draftbit/native": "^43.4.
|
|
46
|
+
"@draftbit/core": "^43.4.18-3cead7.1+3cead70e",
|
|
47
|
+
"@draftbit/native": "^43.4.18-3cead7.1+3cead70e"
|
|
48
48
|
},
|
|
49
49
|
"react-native-builder-bob": {
|
|
50
50
|
"source": "src",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
]
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "3cead70ece00e57920ad4b7e7abfbe20b80a18b3"
|
|
65
65
|
}
|