@draftbit/core 46.10.2 → 46.10.3-1b8e7d.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/components/Accordion/AccordionItem.js +23 -4
- package/lib/commonjs/components/Checkbox/CheckboxGroupRow.js +23 -5
- package/lib/commonjs/components/Checkbox/CheckboxRow.js +23 -6
- package/lib/commonjs/components/Checkbox/context.js +1 -1
- package/lib/commonjs/components/Table/Table.js +123 -0
- package/lib/commonjs/components/Table/TableCell.js +49 -0
- package/lib/commonjs/components/Table/TableCommon.js +30 -0
- package/lib/commonjs/components/Table/TableRow.js +61 -0
- package/lib/commonjs/components/Table/index.js +27 -0
- package/lib/commonjs/index.js +19 -28
- package/lib/commonjs/mappings/NativeBase/Layout.js +108 -0
- package/lib/commonjs/mappings/Table.js +140 -0
- package/lib/module/components/Table/Table.js +114 -0
- package/lib/module/components/Table/TableCell.js +41 -0
- package/lib/module/components/Table/TableCommon.js +21 -0
- package/lib/module/components/Table/TableRow.js +53 -0
- package/lib/module/components/Table/index.js +3 -0
- package/lib/module/index.js +1 -4
- package/lib/module/mappings/NativeBase/Layout.js +101 -0
- package/lib/module/mappings/Table.js +133 -0
- package/lib/typescript/src/components/Table/Table.d.ts +19 -0
- package/lib/typescript/src/components/Table/Table.d.ts.map +1 -0
- package/lib/typescript/src/components/Table/TableCell.d.ts +9 -0
- package/lib/typescript/src/components/Table/TableCell.d.ts.map +1 -0
- package/lib/typescript/src/components/Table/TableCommon.d.ts +20 -0
- package/lib/typescript/src/components/Table/TableCommon.d.ts.map +1 -0
- package/lib/typescript/src/components/{RowBodyIcon.d.ts → Table/TableRow.d.ts} +7 -9
- package/lib/typescript/src/components/Table/TableRow.d.ts.map +1 -0
- package/lib/typescript/src/components/Table/index.d.ts +4 -0
- package/lib/typescript/src/components/Table/index.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +1 -4
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +133 -0
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Table.d.ts +337 -0
- package/lib/typescript/src/mappings/Table.d.ts.map +1 -0
- package/package.json +3 -3
- package/src/components/Table/Table.js +93 -0
- package/src/components/Table/Table.tsx +176 -0
- package/src/components/Table/TableCell.js +31 -0
- package/src/components/Table/TableCell.tsx +63 -0
- package/src/components/Table/TableCommon.js +12 -0
- package/src/components/Table/TableCommon.ts +40 -0
- package/src/components/Table/TableRow.js +37 -0
- package/src/components/Table/TableRow.tsx +77 -0
- package/src/components/Table/index.js +3 -0
- package/src/components/Table/index.tsx +3 -0
- package/src/index.js +1 -4
- package/src/index.tsx +2 -4
- package/src/mappings/NativeBase/Layout.js +124 -0
- package/src/mappings/NativeBase/Layout.ts +145 -0
- package/src/mappings/Table.js +150 -0
- package/src/mappings/Table.ts +170 -0
- package/lib/commonjs/components/Container.js +0 -93
- package/lib/commonjs/components/DeprecatedFAB.js +0 -157
- package/lib/commonjs/components/Row.js +0 -73
- package/lib/commonjs/components/RowBodyIcon.js +0 -45
- package/lib/commonjs/components/RowHeadlineImageCaption.js +0 -45
- package/lib/commonjs/components/RowHeadlineImageIcon.js +0 -51
- package/lib/commonjs/mappings/Container.js +0 -37
- package/lib/module/components/Container.js +0 -83
- package/lib/module/components/DeprecatedFAB.js +0 -147
- package/lib/module/components/Row.js +0 -63
- package/lib/module/components/RowBodyIcon.js +0 -35
- package/lib/module/components/RowHeadlineImageCaption.js +0 -35
- package/lib/module/components/RowHeadlineImageIcon.js +0 -41
- package/lib/module/mappings/Container.js +0 -30
- package/lib/typescript/src/components/Container.d.ts +0 -21
- package/lib/typescript/src/components/Container.d.ts.map +0 -1
- package/lib/typescript/src/components/DeprecatedFAB.d.ts +0 -56
- package/lib/typescript/src/components/DeprecatedFAB.d.ts.map +0 -1
- package/lib/typescript/src/components/Row.d.ts +0 -21
- package/lib/typescript/src/components/Row.d.ts.map +0 -1
- package/lib/typescript/src/components/RowBodyIcon.d.ts.map +0 -1
- package/lib/typescript/src/components/RowHeadlineImageCaption.d.ts +0 -16
- package/lib/typescript/src/components/RowHeadlineImageCaption.d.ts.map +0 -1
- package/lib/typescript/src/components/RowHeadlineImageIcon.d.ts +0 -18
- package/lib/typescript/src/components/RowHeadlineImageIcon.d.ts.map +0 -1
- package/lib/typescript/src/mappings/Container.d.ts +0 -55
- package/lib/typescript/src/mappings/Container.d.ts.map +0 -1
- package/src/components/Container.js +0 -43
- package/src/components/Container.tsx +0 -116
- package/src/components/DeprecatedFAB.js +0 -114
- package/src/components/DeprecatedFAB.tsx +0 -231
- package/src/components/Row.js +0 -48
- package/src/components/Row.tsx +0 -108
- package/src/components/RowBodyIcon.js +0 -8
- package/src/components/RowBodyIcon.tsx +0 -47
- package/src/components/RowHeadlineImageCaption.js +0 -12
- package/src/components/RowHeadlineImageCaption.tsx +0 -49
- package/src/components/RowHeadlineImageIcon.js +0 -14
- package/src/components/RowHeadlineImageIcon.tsx +0 -61
- package/src/mappings/Container.js +0 -30
- package/src/mappings/Container.ts +0 -41
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { View, Text, Image, StyleSheet } from "react-native";
|
|
3
|
-
import { withTheme } from "../theming";
|
|
4
|
-
import Config from "./Config";
|
|
5
|
-
const Row = _ref => {
|
|
6
|
-
let {
|
|
7
|
-
titleTypeStyle,
|
|
8
|
-
titleColor,
|
|
9
|
-
subtitleTypeStyle,
|
|
10
|
-
subtitleColor,
|
|
11
|
-
title,
|
|
12
|
-
subtitle,
|
|
13
|
-
multilineSubtitle,
|
|
14
|
-
image,
|
|
15
|
-
right,
|
|
16
|
-
style
|
|
17
|
-
} = _ref;
|
|
18
|
-
return /*#__PURE__*/React.createElement(View, {
|
|
19
|
-
style: [styles.container, {
|
|
20
|
-
padding: 16
|
|
21
|
-
}, style]
|
|
22
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
23
|
-
style: styles.leftContainer
|
|
24
|
-
}, image && /*#__PURE__*/React.createElement(Image, {
|
|
25
|
-
source: typeof image === "string" ? {
|
|
26
|
-
uri: image
|
|
27
|
-
} : image,
|
|
28
|
-
style: {
|
|
29
|
-
marginRight: 12,
|
|
30
|
-
width: subtitle ? Config.rowMultiLineImageSize : Config.rowSingleLineImageSize,
|
|
31
|
-
height: subtitle ? Config.rowMultiLineImageSize : Config.rowSingleLineImageSize
|
|
32
|
-
}
|
|
33
|
-
}), /*#__PURE__*/React.createElement(View, {
|
|
34
|
-
style: styles.textContainer
|
|
35
|
-
}, /*#__PURE__*/React.createElement(Text, {
|
|
36
|
-
style: [titleTypeStyle, {
|
|
37
|
-
color: titleColor
|
|
38
|
-
}],
|
|
39
|
-
numberOfLines: 1
|
|
40
|
-
}, title), subtitle ? /*#__PURE__*/React.createElement(Text, {
|
|
41
|
-
style: [subtitleTypeStyle, {
|
|
42
|
-
color: subtitleColor,
|
|
43
|
-
marginTop: 4
|
|
44
|
-
}],
|
|
45
|
-
numberOfLines: multilineSubtitle ? undefined : 1
|
|
46
|
-
}, subtitle) : null)), right && right());
|
|
47
|
-
};
|
|
48
|
-
const styles = StyleSheet.create({
|
|
49
|
-
leftContainer: {
|
|
50
|
-
flexDirection: "row",
|
|
51
|
-
flex: 1
|
|
52
|
-
},
|
|
53
|
-
container: {
|
|
54
|
-
flexDirection: "row",
|
|
55
|
-
justifyContent: "space-between",
|
|
56
|
-
alignItems: "center"
|
|
57
|
-
},
|
|
58
|
-
textContainer: {
|
|
59
|
-
flex: 1,
|
|
60
|
-
justifyContent: "center"
|
|
61
|
-
}
|
|
62
|
-
});
|
|
63
|
-
export default withTheme(Row);
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { withTheme } from "../theming";
|
|
3
|
-
import Row from "./Row";
|
|
4
|
-
import Config from "./Config";
|
|
5
|
-
const RowBodyIcon = _ref => {
|
|
6
|
-
let {
|
|
7
|
-
Icon,
|
|
8
|
-
title,
|
|
9
|
-
subtitle,
|
|
10
|
-
icon,
|
|
11
|
-
style,
|
|
12
|
-
theme: {
|
|
13
|
-
colors,
|
|
14
|
-
typography
|
|
15
|
-
}
|
|
16
|
-
} = _ref;
|
|
17
|
-
return /*#__PURE__*/React.createElement(Row, {
|
|
18
|
-
titleTypeStyle: typography.body1,
|
|
19
|
-
titleColor: colors.medium,
|
|
20
|
-
subtitleTypeStyle: typography.subtitle2,
|
|
21
|
-
subtitleColor: colors.light,
|
|
22
|
-
title: title,
|
|
23
|
-
subtitle: subtitle,
|
|
24
|
-
right: () => /*#__PURE__*/React.createElement(Icon, {
|
|
25
|
-
name: icon,
|
|
26
|
-
size: Config.rowSingleLineIconSize,
|
|
27
|
-
color: colors.light,
|
|
28
|
-
style: {
|
|
29
|
-
marginLeft: 16
|
|
30
|
-
}
|
|
31
|
-
}),
|
|
32
|
-
style: style
|
|
33
|
-
});
|
|
34
|
-
};
|
|
35
|
-
export default withTheme(RowBodyIcon);
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { Text } from "react-native";
|
|
3
|
-
import { withTheme } from "../theming";
|
|
4
|
-
import Row from "./Row";
|
|
5
|
-
const RowHeadlineImageCaption = _ref => {
|
|
6
|
-
let {
|
|
7
|
-
title,
|
|
8
|
-
subtitle,
|
|
9
|
-
caption,
|
|
10
|
-
image,
|
|
11
|
-
style,
|
|
12
|
-
theme: {
|
|
13
|
-
colors,
|
|
14
|
-
typography
|
|
15
|
-
}
|
|
16
|
-
} = _ref;
|
|
17
|
-
return /*#__PURE__*/React.createElement(Row, {
|
|
18
|
-
titleTypeStyle: typography.headline6,
|
|
19
|
-
titleColor: colors.strong,
|
|
20
|
-
subtitleTypeStyle: typography.body2,
|
|
21
|
-
subtitleColor: colors.medium,
|
|
22
|
-
title: title,
|
|
23
|
-
subtitle: subtitle,
|
|
24
|
-
image: image,
|
|
25
|
-
right: () => /*#__PURE__*/React.createElement(Text, {
|
|
26
|
-
style: {
|
|
27
|
-
...typography.caption,
|
|
28
|
-
color: colors.strong,
|
|
29
|
-
marginLeft: 16
|
|
30
|
-
}
|
|
31
|
-
}, caption),
|
|
32
|
-
style: style
|
|
33
|
-
});
|
|
34
|
-
};
|
|
35
|
-
export default withTheme(RowHeadlineImageCaption);
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { withTheme } from "../theming";
|
|
3
|
-
import Row from "./Row";
|
|
4
|
-
import Config from "./Config";
|
|
5
|
-
const RowHeadlineImageIcon = _ref => {
|
|
6
|
-
let {
|
|
7
|
-
Icon,
|
|
8
|
-
icon,
|
|
9
|
-
title,
|
|
10
|
-
image,
|
|
11
|
-
subtitle,
|
|
12
|
-
multilineSubtitle = false,
|
|
13
|
-
style,
|
|
14
|
-
theme: {
|
|
15
|
-
colors,
|
|
16
|
-
typography
|
|
17
|
-
}
|
|
18
|
-
} = _ref;
|
|
19
|
-
return /*#__PURE__*/React.createElement(Row, {
|
|
20
|
-
titleTypeStyle: typography.headline6,
|
|
21
|
-
titleColor: colors.strong,
|
|
22
|
-
subtitleTypeStyle: typography.body2,
|
|
23
|
-
subtitleColor: colors.medium,
|
|
24
|
-
title: title,
|
|
25
|
-
subtitle: subtitle,
|
|
26
|
-
multilineSubtitle: multilineSubtitle,
|
|
27
|
-
image: image,
|
|
28
|
-
right: () => /*#__PURE__*/React.createElement(Icon, {
|
|
29
|
-
name: icon,
|
|
30
|
-
size: multilineSubtitle ? Config.rowMultiLineIconSize : Config.rowSingleLineIconSize,
|
|
31
|
-
color: colors.light,
|
|
32
|
-
style: {
|
|
33
|
-
marginLeft: 16,
|
|
34
|
-
alignSelf: multilineSubtitle ? "flex-start" : "center",
|
|
35
|
-
marginTop: multilineSubtitle ? 4 : 0
|
|
36
|
-
}
|
|
37
|
-
}),
|
|
38
|
-
style: style
|
|
39
|
-
});
|
|
40
|
-
};
|
|
41
|
-
export default withTheme(RowHeadlineImageIcon);
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, createElevationType, createImageProp, createResizeModeProp, CONTAINER_COMPONENT_STYLES_SECTIONS } from "@draftbit/types";
|
|
2
|
-
export const SEED_DATA = {
|
|
3
|
-
name: "Container",
|
|
4
|
-
tag: "Container",
|
|
5
|
-
description: "A container component with gutter padding",
|
|
6
|
-
category: COMPONENT_TYPES.deprecated,
|
|
7
|
-
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
8
|
-
layout: {
|
|
9
|
-
height: 250
|
|
10
|
-
},
|
|
11
|
-
props: {
|
|
12
|
-
useThemeGutterPadding: {
|
|
13
|
-
group: GROUPS.basic,
|
|
14
|
-
label: "Use gutter padding",
|
|
15
|
-
description: "When true, uses the theme gutter spacing as the container's horizontal padding",
|
|
16
|
-
formType: FORM_TYPES.boolean,
|
|
17
|
-
propType: PROP_TYPES.BOOLEAN,
|
|
18
|
-
defaultValue: false,
|
|
19
|
-
editable: false,
|
|
20
|
-
required: true
|
|
21
|
-
},
|
|
22
|
-
backgroundImage: createImageProp({
|
|
23
|
-
label: "Background Image",
|
|
24
|
-
description: "Apply a custom background image",
|
|
25
|
-
defaultValue: null
|
|
26
|
-
}),
|
|
27
|
-
backgroundImageResizeMode: createResizeModeProp(),
|
|
28
|
-
elevation: createElevationType(0)
|
|
29
|
-
}
|
|
30
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { ImageSourcePropType, StyleProp, ViewStyle } from "react-native";
|
|
3
|
-
import type { Theme } from "../styles/DefaultTheme";
|
|
4
|
-
import { ResizeModeType } from "./ResizeMode";
|
|
5
|
-
declare type Props = {
|
|
6
|
-
theme: Theme;
|
|
7
|
-
useThemeGutterPadding: boolean;
|
|
8
|
-
borderColor: string;
|
|
9
|
-
borderWidth: number;
|
|
10
|
-
backgroundColor: string;
|
|
11
|
-
backgroundImage?: string | ImageSourcePropType;
|
|
12
|
-
backgroundImageResizeMode?: ResizeModeType;
|
|
13
|
-
elevation?: number;
|
|
14
|
-
style?: StyleProp<ViewStyle>;
|
|
15
|
-
children?: React.ReactNode;
|
|
16
|
-
};
|
|
17
|
-
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
|
|
18
|
-
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
19
|
-
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
|
|
20
|
-
export default _default;
|
|
21
|
-
//# sourceMappingURL=Container.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../src/components/Container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAGL,mBAAmB,EACnB,SAAS,EAET,SAAS,EACV,MAAM,cAAc,CAAC;AAItB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,aAAK,KAAK,GAAG;IACX,KAAK,EAAE,KAAK,CAAC;IACb,qBAAqB,EAAE,OAAO,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,CAAC,EAAE,MAAM,GAAG,mBAAmB,CAAC;IAC/C,yBAAyB,CAAC,EAAE,cAAc,CAAC;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;;;;AAyFF,wBAAoC"}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { StyleProp, ViewStyle, PressableProps } from "react-native";
|
|
3
|
-
import type { Theme } from "../styles/DefaultTheme";
|
|
4
|
-
import type { IconSlot } from "../interfaces/Icon";
|
|
5
|
-
/**
|
|
6
|
-
* A floating action button represents the primary action in an application.
|
|
7
|
-
*
|
|
8
|
-
* <div class="screenshots">
|
|
9
|
-
* <img src="screenshots/fab-1.png" />
|
|
10
|
-
* <img src="screenshots/fab-2.png" />
|
|
11
|
-
* </div>
|
|
12
|
-
*
|
|
13
|
-
* ## Usage
|
|
14
|
-
* ```js
|
|
15
|
-
* import * as React from 'react';
|
|
16
|
-
* import { StyleSheet } from 'react-native';
|
|
17
|
-
* import { FAB } from '@draftbit/ui';
|
|
18
|
-
*
|
|
19
|
-
* const MyComponent = () => (
|
|
20
|
-
* <FAB
|
|
21
|
-
* style={styles.fab}
|
|
22
|
-
* type="outline"
|
|
23
|
-
* icon="add"
|
|
24
|
-
* onPress={() => console.log('Pressed')}
|
|
25
|
-
* />
|
|
26
|
-
* );
|
|
27
|
-
*
|
|
28
|
-
* const styles = StyleSheet.create({
|
|
29
|
-
* fab: {
|
|
30
|
-
* position: 'absolute',
|
|
31
|
-
* margin: 16,
|
|
32
|
-
* right: 0,
|
|
33
|
-
* bottom: 0,
|
|
34
|
-
* },
|
|
35
|
-
* })
|
|
36
|
-
*
|
|
37
|
-
* export default MyComponent;
|
|
38
|
-
* ```
|
|
39
|
-
*/
|
|
40
|
-
declare type Props = {
|
|
41
|
-
disabled?: boolean;
|
|
42
|
-
type?: "solid" | "extended" | "outline" | "fixed" | "standard";
|
|
43
|
-
loading?: boolean;
|
|
44
|
-
icon?: string;
|
|
45
|
-
color?: string;
|
|
46
|
-
label?: string;
|
|
47
|
-
onPress: () => void;
|
|
48
|
-
elevation?: number;
|
|
49
|
-
theme: Theme;
|
|
50
|
-
style?: StyleProp<ViewStyle>;
|
|
51
|
-
} & PressableProps & IconSlot;
|
|
52
|
-
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
|
|
53
|
-
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
54
|
-
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
|
|
55
|
-
export default _default;
|
|
56
|
-
//# sourceMappingURL=DeprecatedFAB.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DeprecatedFAB.d.ts","sourceRoot":"","sources":["../../../../src/components/DeprecatedFAB.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAIL,SAAS,EACT,SAAS,EAGT,cAAc,EACf,MAAM,cAAc,CAAC;AAOtB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAEnD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH,aAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,OAAO,GAAG,UAAU,CAAC;IAC/D,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;IACb,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B,GAAG,cAAc,GAChB,QAAQ,CAAC;;;;AAkKX,wBAA8B"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { ImageSourcePropType, StyleProp, TextStyle, ViewStyle } from "react-native";
|
|
3
|
-
import theme from "../styles/DefaultTheme";
|
|
4
|
-
declare type Props = {
|
|
5
|
-
titleTypeStyle?: StyleProp<TextStyle>;
|
|
6
|
-
titleColor?: string;
|
|
7
|
-
subtitleTypeStyle?: StyleProp<TextStyle>;
|
|
8
|
-
subtitleColor?: string;
|
|
9
|
-
title?: string;
|
|
10
|
-
subtitle?: string;
|
|
11
|
-
multilineSubtitle?: boolean;
|
|
12
|
-
image?: string | ImageSourcePropType;
|
|
13
|
-
right?: () => React.ReactNode;
|
|
14
|
-
style?: StyleProp<ViewStyle>;
|
|
15
|
-
theme: typeof theme;
|
|
16
|
-
};
|
|
17
|
-
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
|
|
18
|
-
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
19
|
-
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
|
|
20
|
-
export default _default;
|
|
21
|
-
//# sourceMappingURL=Row.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Row.d.ts","sourceRoot":"","sources":["../../../../src/components/Row.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAIL,mBAAmB,EAEnB,SAAS,EACT,SAAS,EACT,SAAS,EACV,MAAM,cAAc,CAAC;AAGtB,OAAO,KAAK,MAAM,wBAAwB,CAAC;AAE3C,aAAK,KAAK,GAAG;IACX,cAAc,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IACtC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iBAAiB,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IACzC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,GAAG,mBAAmB,CAAC;IACrC,KAAK,CAAC,EAAE,MAAM,KAAK,CAAC,SAAS,CAAC;IAC9B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,OAAO,KAAK,CAAC;CACrB,CAAC;;;;AAgFF,wBAA8B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RowBodyIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/RowBodyIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAInD,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEpD,aAAK,KAAK,GAAG;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd,GAAG,QAAQ,CAAC;;;;AA+Bb,wBAAsC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { ImageSourcePropType, StyleProp, ViewStyle } from "react-native";
|
|
3
|
-
import theme from "../styles/DefaultTheme";
|
|
4
|
-
declare type Props = {
|
|
5
|
-
title?: string;
|
|
6
|
-
subtitle?: string;
|
|
7
|
-
caption?: string;
|
|
8
|
-
image: string | ImageSourcePropType;
|
|
9
|
-
style?: StyleProp<ViewStyle>;
|
|
10
|
-
theme: typeof theme;
|
|
11
|
-
};
|
|
12
|
-
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
|
|
13
|
-
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
14
|
-
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
|
|
15
|
-
export default _default;
|
|
16
|
-
//# sourceMappingURL=RowHeadlineImageCaption.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RowHeadlineImageCaption.d.ts","sourceRoot":"","sources":["../../../../src/components/RowHeadlineImageCaption.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAQ,mBAAmB,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAG/E,OAAO,KAAK,MAAM,wBAAwB,CAAC;AAE3C,aAAK,KAAK,GAAG;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,GAAG,mBAAmB,CAAC;IACpC,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,OAAO,KAAK,CAAC;CACrB,CAAC;;;;AAmCF,wBAAkD"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import type { Theme } from "../styles/DefaultTheme";
|
|
3
|
-
import type { IconSlot } from "../interfaces/Icon";
|
|
4
|
-
import { ImageSourcePropType, StyleProp, ViewStyle } from "react-native";
|
|
5
|
-
declare type Props = {
|
|
6
|
-
title?: string;
|
|
7
|
-
image: string | ImageSourcePropType;
|
|
8
|
-
subtitle?: string;
|
|
9
|
-
multilineSubtitle?: boolean;
|
|
10
|
-
icon: string;
|
|
11
|
-
style?: StyleProp<ViewStyle>;
|
|
12
|
-
theme: Theme;
|
|
13
|
-
} & IconSlot;
|
|
14
|
-
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
|
|
15
|
-
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
16
|
-
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
|
|
17
|
-
export default _default;
|
|
18
|
-
//# sourceMappingURL=RowHeadlineImageIcon.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RowHeadlineImageIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/RowHeadlineImageIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAInD,OAAO,EAAE,mBAAmB,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzE,aAAK,KAAK,GAAG;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,GAAG,mBAAmB,CAAC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd,GAAG,QAAQ,CAAC;;;;AA2Cb,wBAA+C"}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
export declare const SEED_DATA: {
|
|
2
|
-
name: string;
|
|
3
|
-
tag: string;
|
|
4
|
-
description: string;
|
|
5
|
-
category: string;
|
|
6
|
-
stylesPanelSections: string[];
|
|
7
|
-
layout: {
|
|
8
|
-
height: number;
|
|
9
|
-
};
|
|
10
|
-
props: {
|
|
11
|
-
useThemeGutterPadding: {
|
|
12
|
-
group: string;
|
|
13
|
-
label: string;
|
|
14
|
-
description: string;
|
|
15
|
-
formType: string;
|
|
16
|
-
propType: string;
|
|
17
|
-
defaultValue: boolean;
|
|
18
|
-
editable: boolean;
|
|
19
|
-
required: boolean;
|
|
20
|
-
};
|
|
21
|
-
backgroundImage: {
|
|
22
|
-
label: string;
|
|
23
|
-
description: string;
|
|
24
|
-
group: string;
|
|
25
|
-
formType: string;
|
|
26
|
-
propType: string;
|
|
27
|
-
defaultValue: string;
|
|
28
|
-
editable: boolean;
|
|
29
|
-
required: boolean;
|
|
30
|
-
};
|
|
31
|
-
backgroundImageResizeMode: {
|
|
32
|
-
group: string;
|
|
33
|
-
label: string;
|
|
34
|
-
description: string;
|
|
35
|
-
editable: boolean;
|
|
36
|
-
required: boolean;
|
|
37
|
-
defaultValue: string;
|
|
38
|
-
formType: string;
|
|
39
|
-
propType: string;
|
|
40
|
-
options: string[];
|
|
41
|
-
};
|
|
42
|
-
elevation: {
|
|
43
|
-
defaultValue: any;
|
|
44
|
-
label: string;
|
|
45
|
-
description: string;
|
|
46
|
-
formType: string;
|
|
47
|
-
propType: string;
|
|
48
|
-
options: number[];
|
|
49
|
-
editable: boolean;
|
|
50
|
-
required: boolean;
|
|
51
|
-
group: string;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
//# sourceMappingURL=Container.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../src/mappings/Container.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BrB,CAAC"}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { View, ImageBackground, StyleSheet, } from "react-native";
|
|
3
|
-
import { withTheme } from "../theming";
|
|
4
|
-
import Elevation from "./Elevation";
|
|
5
|
-
const Container = ({ useThemeGutterPadding, borderColor, borderWidth, backgroundColor, backgroundImage, backgroundImageResizeMode, elevation, style, children, theme, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
6
|
-
...rest }) => {
|
|
7
|
-
const { flex, flexGrow, flexWrap, flexBasis, flexShrink, flexDirection, alignContent, justifyContent, alignItems, padding, paddingTop, paddingBottom, paddingLeft, paddingRight, paddingVertical, paddingHorizontal, ...styleProp } = StyleSheet.flatten(style) || {};
|
|
8
|
-
const containerStyle = {
|
|
9
|
-
backgroundColor,
|
|
10
|
-
borderColor,
|
|
11
|
-
borderWidth,
|
|
12
|
-
width: "100%",
|
|
13
|
-
...styleProp,
|
|
14
|
-
};
|
|
15
|
-
const innerStyle = {
|
|
16
|
-
flex,
|
|
17
|
-
flexGrow,
|
|
18
|
-
flexWrap,
|
|
19
|
-
flexBasis,
|
|
20
|
-
flexShrink,
|
|
21
|
-
flexDirection,
|
|
22
|
-
alignContent,
|
|
23
|
-
justifyContent,
|
|
24
|
-
alignItems,
|
|
25
|
-
padding,
|
|
26
|
-
paddingTop,
|
|
27
|
-
paddingBottom,
|
|
28
|
-
paddingLeft,
|
|
29
|
-
paddingRight,
|
|
30
|
-
paddingVertical,
|
|
31
|
-
paddingHorizontal: paddingHorizontal || useThemeGutterPadding ? 16 : 0,
|
|
32
|
-
};
|
|
33
|
-
const Wrap = elevation ? Elevation : View;
|
|
34
|
-
if (elevation)
|
|
35
|
-
containerStyle.elevation = elevation;
|
|
36
|
-
return (React.createElement(Wrap, { style: [containerStyle, style], ...rest }, backgroundImage ? (React.createElement(ImageBackground, { source: typeof backgroundImage === "string"
|
|
37
|
-
? { uri: backgroundImage }
|
|
38
|
-
: backgroundImage, resizeMode: backgroundImageResizeMode, style: {
|
|
39
|
-
flex: 1,
|
|
40
|
-
} },
|
|
41
|
-
React.createElement(View, { style: innerStyle }, children))) : (React.createElement(View, { style: innerStyle }, children))));
|
|
42
|
-
};
|
|
43
|
-
export default withTheme(Container);
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
View,
|
|
4
|
-
ImageBackground,
|
|
5
|
-
ImageSourcePropType,
|
|
6
|
-
StyleProp,
|
|
7
|
-
StyleSheet,
|
|
8
|
-
ViewStyle,
|
|
9
|
-
} from "react-native";
|
|
10
|
-
import { withTheme } from "../theming";
|
|
11
|
-
|
|
12
|
-
import Elevation from "./Elevation";
|
|
13
|
-
import type { Theme } from "../styles/DefaultTheme";
|
|
14
|
-
import { ResizeModeType } from "./ResizeMode";
|
|
15
|
-
|
|
16
|
-
type Props = {
|
|
17
|
-
theme: Theme;
|
|
18
|
-
useThemeGutterPadding: boolean;
|
|
19
|
-
borderColor: string;
|
|
20
|
-
borderWidth: number;
|
|
21
|
-
backgroundColor: string;
|
|
22
|
-
backgroundImage?: string | ImageSourcePropType;
|
|
23
|
-
backgroundImageResizeMode?: ResizeModeType;
|
|
24
|
-
elevation?: number;
|
|
25
|
-
style?: StyleProp<ViewStyle>;
|
|
26
|
-
children?: React.ReactNode;
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
const Container: React.FC<React.PropsWithChildren<Props>> = ({
|
|
30
|
-
useThemeGutterPadding,
|
|
31
|
-
borderColor,
|
|
32
|
-
borderWidth,
|
|
33
|
-
backgroundColor,
|
|
34
|
-
backgroundImage,
|
|
35
|
-
backgroundImageResizeMode,
|
|
36
|
-
elevation,
|
|
37
|
-
style,
|
|
38
|
-
children,
|
|
39
|
-
theme, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
40
|
-
...rest
|
|
41
|
-
}) => {
|
|
42
|
-
const {
|
|
43
|
-
flex,
|
|
44
|
-
flexGrow,
|
|
45
|
-
flexWrap,
|
|
46
|
-
flexBasis,
|
|
47
|
-
flexShrink,
|
|
48
|
-
flexDirection,
|
|
49
|
-
alignContent,
|
|
50
|
-
justifyContent,
|
|
51
|
-
alignItems,
|
|
52
|
-
padding,
|
|
53
|
-
paddingTop,
|
|
54
|
-
paddingBottom,
|
|
55
|
-
paddingLeft,
|
|
56
|
-
paddingRight,
|
|
57
|
-
paddingVertical,
|
|
58
|
-
paddingHorizontal,
|
|
59
|
-
...styleProp
|
|
60
|
-
} = StyleSheet.flatten(style) || {};
|
|
61
|
-
|
|
62
|
-
const containerStyle: StyleProp<ViewStyle> = {
|
|
63
|
-
backgroundColor,
|
|
64
|
-
borderColor,
|
|
65
|
-
borderWidth,
|
|
66
|
-
width: "100%",
|
|
67
|
-
...styleProp,
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
const innerStyle: StyleProp<ViewStyle> = {
|
|
71
|
-
flex,
|
|
72
|
-
flexGrow,
|
|
73
|
-
flexWrap,
|
|
74
|
-
flexBasis,
|
|
75
|
-
flexShrink,
|
|
76
|
-
flexDirection,
|
|
77
|
-
alignContent,
|
|
78
|
-
justifyContent,
|
|
79
|
-
alignItems,
|
|
80
|
-
padding,
|
|
81
|
-
paddingTop,
|
|
82
|
-
paddingBottom,
|
|
83
|
-
paddingLeft,
|
|
84
|
-
paddingRight,
|
|
85
|
-
paddingVertical,
|
|
86
|
-
paddingHorizontal: paddingHorizontal || useThemeGutterPadding ? 16 : 0,
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
const Wrap = elevation ? Elevation : View;
|
|
90
|
-
|
|
91
|
-
if (elevation) containerStyle.elevation = elevation;
|
|
92
|
-
|
|
93
|
-
return (
|
|
94
|
-
<Wrap style={[containerStyle, style]} {...rest}>
|
|
95
|
-
{backgroundImage ? (
|
|
96
|
-
<ImageBackground
|
|
97
|
-
source={
|
|
98
|
-
typeof backgroundImage === "string"
|
|
99
|
-
? { uri: backgroundImage }
|
|
100
|
-
: backgroundImage
|
|
101
|
-
}
|
|
102
|
-
resizeMode={backgroundImageResizeMode}
|
|
103
|
-
style={{
|
|
104
|
-
flex: 1,
|
|
105
|
-
}}
|
|
106
|
-
>
|
|
107
|
-
<View style={innerStyle}>{children}</View>
|
|
108
|
-
</ImageBackground>
|
|
109
|
-
) : (
|
|
110
|
-
<View style={innerStyle}>{children}</View>
|
|
111
|
-
)}
|
|
112
|
-
</Wrap>
|
|
113
|
-
);
|
|
114
|
-
};
|
|
115
|
-
|
|
116
|
-
export default withTheme(Container);
|