@draftbit/ui 46.4.4-11985a.2 → 46.4.4-1a94b9.2
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/commonjs/index.js +0 -36
- package/lib/module/index.js +1 -1
- package/lib/typescript/src/index.d.ts +11 -5
- package/package.json +4 -4
- package/src/index.js +1 -1
- package/src/index.tsx +0 -6
package/lib/commonjs/index.js
CHANGED
|
@@ -229,42 +229,6 @@ Object.defineProperty(exports, "SwitchRow", {
|
|
|
229
229
|
return _core.SwitchRow;
|
|
230
230
|
}
|
|
231
231
|
});
|
|
232
|
-
Object.defineProperty(exports, "Table", {
|
|
233
|
-
enumerable: true,
|
|
234
|
-
get: function () {
|
|
235
|
-
return _core.Table;
|
|
236
|
-
}
|
|
237
|
-
});
|
|
238
|
-
Object.defineProperty(exports, "TableCell", {
|
|
239
|
-
enumerable: true,
|
|
240
|
-
get: function () {
|
|
241
|
-
return _core.TableCell;
|
|
242
|
-
}
|
|
243
|
-
});
|
|
244
|
-
Object.defineProperty(exports, "TableHeader", {
|
|
245
|
-
enumerable: true,
|
|
246
|
-
get: function () {
|
|
247
|
-
return _core.TableHeader;
|
|
248
|
-
}
|
|
249
|
-
});
|
|
250
|
-
Object.defineProperty(exports, "TablePaginator", {
|
|
251
|
-
enumerable: true,
|
|
252
|
-
get: function () {
|
|
253
|
-
return _core.TablePaginator;
|
|
254
|
-
}
|
|
255
|
-
});
|
|
256
|
-
Object.defineProperty(exports, "TableRow", {
|
|
257
|
-
enumerable: true,
|
|
258
|
-
get: function () {
|
|
259
|
-
return _core.TableRow;
|
|
260
|
-
}
|
|
261
|
-
});
|
|
262
|
-
Object.defineProperty(exports, "TableTitle", {
|
|
263
|
-
enumerable: true,
|
|
264
|
-
get: function () {
|
|
265
|
-
return _core.TableTitle;
|
|
266
|
-
}
|
|
267
|
-
});
|
|
268
232
|
exports.TextField = void 0;
|
|
269
233
|
Object.defineProperty(exports, "ThemeProvider", {
|
|
270
234
|
enumerable: true,
|
package/lib/module/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { Icon } from "@draftbit/native";
|
|
|
2
2
|
export { AudioPlayer, Icon, LinearGradient, WebView } from "@draftbit/native";
|
|
3
3
|
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState,
|
|
4
4
|
/* Deprecated, needs fixing */
|
|
5
|
-
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem
|
|
5
|
+
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem } from "@draftbit/core";
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export { AudioPlayer, Icon, LinearGradient, WebView } from "@draftbit/native";
|
|
3
|
-
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState, CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem,
|
|
3
|
+
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState, CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, } from "@draftbit/core";
|
|
4
4
|
export declare const AvatarEdit: (props: import("utility-types").Subtract<import("@draftbit/react-theme-provider").$Without<import("react").PropsWithChildren<{
|
|
5
5
|
image: string | import("react-native").ImageSourcePropType;
|
|
6
6
|
size?: number | undefined;
|
|
@@ -16644,10 +16644,14 @@ export declare const DatePicker: (props: import("utility-types").Subtract<import
|
|
|
16644
16644
|
mode?: "time" | "date" | "datetime" | undefined;
|
|
16645
16645
|
type?: "underline" | "solid" | undefined;
|
|
16646
16646
|
label?: string | undefined;
|
|
16647
|
+
labelSize?: number | undefined;
|
|
16648
|
+
labelColor: string;
|
|
16647
16649
|
placeholder?: string | undefined;
|
|
16648
16650
|
leftIconName?: string | undefined;
|
|
16649
16651
|
leftIconMode?: "outset" | "inset" | undefined;
|
|
16650
16652
|
rightIconName?: string | undefined;
|
|
16653
|
+
borderColor?: string | undefined;
|
|
16654
|
+
borderColorActive?: string | undefined;
|
|
16651
16655
|
} & import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot & import("react-native").TextInputProps>, "theme"> & {
|
|
16652
16656
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
16653
16657
|
}, import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot>) => import("react").ReactElement<import("@draftbit/react-theme-provider").$Without<import("react").PropsWithChildren<{
|
|
@@ -18161,10 +18165,14 @@ export declare const DatePicker: (props: import("utility-types").Subtract<import
|
|
|
18161
18165
|
mode?: "time" | "date" | "datetime" | undefined;
|
|
18162
18166
|
type?: "underline" | "solid" | undefined;
|
|
18163
18167
|
label?: string | undefined;
|
|
18168
|
+
labelSize?: number | undefined;
|
|
18169
|
+
labelColor: string;
|
|
18164
18170
|
placeholder?: string | undefined;
|
|
18165
18171
|
leftIconName?: string | undefined;
|
|
18166
18172
|
leftIconMode?: "outset" | "inset" | undefined;
|
|
18167
18173
|
rightIconName?: string | undefined;
|
|
18174
|
+
borderColor?: string | undefined;
|
|
18175
|
+
borderColorActive?: string | undefined;
|
|
18168
18176
|
} & import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot & import("react-native").TextInputProps>, "theme"> & {
|
|
18169
18177
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
18170
18178
|
}, string | import("react").JSXElementConstructor<any>>;
|
|
@@ -45340,8 +45348,7 @@ export declare const Stepper: (props: import("utility-types").Subtract<import("@
|
|
|
45340
45348
|
max: number;
|
|
45341
45349
|
value?: number | undefined;
|
|
45342
45350
|
defaultValue?: number | undefined;
|
|
45343
|
-
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
45344
|
-
typeStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
|
|
45351
|
+
style?: import("react-native").StyleProp<import("react-native").ViewStyle | import("react-native").TextStyle>;
|
|
45345
45352
|
iconSize: number;
|
|
45346
45353
|
iconColor?: string | undefined;
|
|
45347
45354
|
onChange?: ((value: number) => void) | undefined;
|
|
@@ -46851,8 +46858,7 @@ export declare const Stepper: (props: import("utility-types").Subtract<import("@
|
|
|
46851
46858
|
max: number;
|
|
46852
46859
|
value?: number | undefined;
|
|
46853
46860
|
defaultValue?: number | undefined;
|
|
46854
|
-
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
46855
|
-
typeStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
|
|
46861
|
+
style?: import("react-native").StyleProp<import("react-native").ViewStyle | import("react-native").TextStyle>;
|
|
46856
46862
|
iconSize: number;
|
|
46857
46863
|
iconColor?: string | undefined;
|
|
46858
46864
|
onChange?: ((value: number) => void) | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/ui",
|
|
3
|
-
"version": "46.4.4-
|
|
3
|
+
"version": "46.4.4-1a94b9.2+1a94b98",
|
|
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": "^46.4.4-
|
|
47
|
-
"@draftbit/native": "^46.4.4-
|
|
46
|
+
"@draftbit/core": "^46.4.4-1a94b9.2+1a94b98",
|
|
47
|
+
"@draftbit/native": "^46.4.4-1a94b9.2+1a94b98"
|
|
48
48
|
},
|
|
49
49
|
"react-native-builder-bob": {
|
|
50
50
|
"declarationMap": false,
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
]
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "1a94b98f4a05267640e0d5c28bcff83686d98626"
|
|
66
66
|
}
|
package/src/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { Icon } from "@draftbit/native";
|
|
|
2
2
|
export { AudioPlayer, Icon, LinearGradient, WebView } from "@draftbit/native";
|
|
3
3
|
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState,
|
|
4
4
|
/* Deprecated, needs fixing */
|
|
5
|
-
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem,
|
|
5
|
+
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, } from "@draftbit/core";
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|