@draftbit/core 46.10.3-0bad1e.2 → 46.10.3-177666.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/Checkbox/CheckboxRow.js +6 -23
- package/lib/commonjs/components/FAB.js +4 -18
- 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/constants.js +1 -1
- package/lib/commonjs/index.js +19 -7
- package/lib/commonjs/mappings/NativeBase/Layout.js +25 -14
- package/lib/commonjs/mappings/Table.js +140 -0
- package/lib/module/components/Accordion/AccordionItem.js +25 -4
- 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 -1
- package/lib/module/mappings/NativeBase/Layout.js +26 -15
- 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/{DeprecatedCardWrapper.d.ts → Table/TableRow.d.ts} +7 -8
- 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 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +42 -16
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -1
- package/lib/typescript/src/mappings/{CardBlock.d.ts → Table.d.ts} +129 -81
- 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 -1
- package/src/index.tsx +2 -1
- package/src/mappings/NativeBase/Layout.js +34 -11
- package/src/mappings/NativeBase/Layout.ts +40 -11
- 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/DeprecatedCardWrapper.js +0 -40
- package/lib/commonjs/components/DeprecatedFAB.js +0 -157
- package/lib/commonjs/components/ProgressIndicator.js +0 -55
- package/lib/commonjs/components/ResizeMode.js +0 -5
- package/lib/commonjs/mappings/CardBlock.js +0 -126
- package/lib/commonjs/mappings/CardContainer.js +0 -108
- package/lib/commonjs/mappings/CardContainerRating.js +0 -130
- package/lib/commonjs/mappings/CardContainerShortImage.js +0 -124
- package/lib/commonjs/mappings/CardInline.js +0 -59
- package/lib/commonjs/mappings/Container.js +0 -37
- package/lib/commonjs/mappings/HeaderLarge.js +0 -34
- package/lib/commonjs/mappings/HeaderMedium.js +0 -60
- package/lib/commonjs/mappings/HeaderOverline.js +0 -60
- package/lib/commonjs/mappings/ProgressIndicator.js +0 -188
- package/lib/module/components/Container.js +0 -83
- package/lib/module/components/DeprecatedCardWrapper.js +0 -32
- package/lib/module/components/DeprecatedFAB.js +0 -147
- package/lib/module/components/ProgressIndicator.js +0 -45
- package/lib/module/components/ResizeMode.js +0 -1
- package/lib/module/mappings/CardBlock.js +0 -119
- package/lib/module/mappings/CardContainer.js +0 -101
- package/lib/module/mappings/CardContainerRating.js +0 -123
- package/lib/module/mappings/CardContainerShortImage.js +0 -117
- package/lib/module/mappings/CardInline.js +0 -52
- package/lib/module/mappings/Container.js +0 -30
- package/lib/module/mappings/HeaderLarge.js +0 -27
- package/lib/module/mappings/HeaderMedium.js +0 -53
- package/lib/module/mappings/HeaderOverline.js +0 -53
- package/lib/module/mappings/ProgressIndicator.js +0 -181
- 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/DeprecatedCardWrapper.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/ProgressIndicator.d.ts +0 -24
- package/lib/typescript/src/components/ProgressIndicator.d.ts.map +0 -1
- package/lib/typescript/src/components/ResizeMode.d.ts +0 -2
- package/lib/typescript/src/components/ResizeMode.d.ts.map +0 -1
- package/lib/typescript/src/mappings/CardBlock.d.ts.map +0 -1
- package/lib/typescript/src/mappings/CardContainer.d.ts +0 -102
- package/lib/typescript/src/mappings/CardContainer.d.ts.map +0 -1
- package/lib/typescript/src/mappings/CardContainerRating.d.ts +0 -108
- package/lib/typescript/src/mappings/CardContainerRating.d.ts.map +0 -1
- package/lib/typescript/src/mappings/CardContainerShortImage.d.ts +0 -139
- package/lib/typescript/src/mappings/CardContainerShortImage.d.ts.map +0 -1
- package/lib/typescript/src/mappings/CardInline.d.ts +0 -62
- package/lib/typescript/src/mappings/CardInline.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/lib/typescript/src/mappings/HeaderLarge.d.ts +0 -34
- package/lib/typescript/src/mappings/HeaderLarge.d.ts.map +0 -1
- package/lib/typescript/src/mappings/HeaderMedium.d.ts +0 -53
- package/lib/typescript/src/mappings/HeaderMedium.d.ts.map +0 -1
- package/lib/typescript/src/mappings/HeaderOverline.d.ts +0 -53
- package/lib/typescript/src/mappings/HeaderOverline.d.ts.map +0 -1
- package/lib/typescript/src/mappings/ProgressIndicator.d.ts +0 -181
- package/lib/typescript/src/mappings/ProgressIndicator.d.ts.map +0 -1
- package/src/components/Container.js +0 -43
- package/src/components/Container.tsx +0 -116
- package/src/components/DeprecatedCardWrapper.js +0 -18
- package/src/components/DeprecatedCardWrapper.tsx +0 -46
- package/src/components/DeprecatedFAB.js +0 -114
- package/src/components/DeprecatedFAB.tsx +0 -231
- package/src/components/ProgressIndicator.js +0 -27
- package/src/components/ProgressIndicator.tsx +0 -71
- package/src/components/ResizeMode.js +0 -1
- package/src/components/ResizeMode.ts +0 -7
- package/src/mappings/CardBlock.js +0 -123
- package/src/mappings/CardBlock.ts +0 -136
- package/src/mappings/CardContainer.js +0 -104
- package/src/mappings/CardContainer.ts +0 -116
- package/src/mappings/CardContainerRating.js +0 -126
- package/src/mappings/CardContainerRating.ts +0 -137
- package/src/mappings/CardContainerShortImage.js +0 -120
- package/src/mappings/CardContainerShortImage.ts +0 -130
- package/src/mappings/CardInline.js +0 -52
- package/src/mappings/CardInline.ts +0 -61
- package/src/mappings/Container.js +0 -30
- package/src/mappings/Container.ts +0 -41
- package/src/mappings/HeaderLarge.js +0 -29
- package/src/mappings/HeaderLarge.ts +0 -38
- package/src/mappings/HeaderMedium.js +0 -55
- package/src/mappings/HeaderMedium.ts +0 -63
- package/src/mappings/HeaderOverline.js +0 -55
- package/src/mappings/HeaderOverline.ts +0 -63
- package/src/mappings/ProgressIndicator.js +0 -181
- package/src/mappings/ProgressIndicator.ts +0 -190
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/Table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAEL,SAAS,EACT,SAAS,EAGT,eAAe,EAChB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAEL,UAAU,EAGX,MAAM,eAAe,CAAC;AAEvB,MAAM,WAAW,KAAK,CAAC,CAAC,CAAE,SAAQ,UAAU,EAAE,eAAe;IAC3D,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IAChB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IAClD,UAAU,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;QAAE,IAAI,EAAE,CAAC,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,KAAK,GAAG,CAAC,OAAO,CAAC;IAC1E,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd;;;;AAuJD,wBAAgC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { StyleProp, ViewStyle } from "react-native";
|
|
3
|
+
import { TableProps } from "./TableCommon";
|
|
4
|
+
export interface Props extends TableProps {
|
|
5
|
+
style?: StyleProp<ViewStyle>;
|
|
6
|
+
}
|
|
7
|
+
declare const TableCell: React.FC<React.PropsWithChildren<Props>>;
|
|
8
|
+
export default TableCell;
|
|
9
|
+
//# sourceMappingURL=TableCell.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableCell.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/TableCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAQ,SAAS,EAAE,SAAS,EAAc,MAAM,cAAc,CAAC;AACtE,OAAO,EAEL,UAAU,EAEX,MAAM,eAAe,CAAC;AAEvB,MAAM,WAAW,KAAM,SAAQ,UAAU;IACvC,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAyCvD,CAAC;AASF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ViewStyle } from "react-native";
|
|
3
|
+
declare type BorderStyle = "solid" | "dotted" | "dashed";
|
|
4
|
+
export declare const TableStyleContext: React.Context<TableStyleProps>;
|
|
5
|
+
export interface TableStyleProps {
|
|
6
|
+
borderWidth?: number;
|
|
7
|
+
borderColor?: string;
|
|
8
|
+
borderStyle?: BorderStyle;
|
|
9
|
+
cellVerticalPadding?: number;
|
|
10
|
+
cellHorizontalPadding?: number;
|
|
11
|
+
}
|
|
12
|
+
export interface TableProps extends TableStyleProps {
|
|
13
|
+
drawTopBorder?: boolean;
|
|
14
|
+
drawBottomBorder?: boolean;
|
|
15
|
+
drawStartBorder?: boolean;
|
|
16
|
+
drawEndBorder?: boolean;
|
|
17
|
+
}
|
|
18
|
+
export declare function generateBorderStyles({ borderColor, borderWidth, borderStyle, drawTopBorder, drawBottomBorder, drawStartBorder, drawEndBorder, }: TableProps): ViewStyle;
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=TableCommon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableCommon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/TableCommon.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,aAAK,WAAW,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEjD,eAAO,MAAM,iBAAiB,gCAA2C,CAAC;AAE1E,MAAM,WAAW,eAAe;IAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC;AAED,MAAM,WAAW,UAAW,SAAQ,eAAe;IACjD,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,wBAAgB,oBAAoB,CAAC,EACnC,WAAW,EACX,WAAW,EACX,WAAW,EACX,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,aAAa,GACd,EAAE,UAAU,GAAG,SAAS,CASxB"}
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { StyleProp, ViewStyle } from "react-native";
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
onPress?: () => void;
|
|
3
|
+
import { TableProps } from "./TableCommon";
|
|
4
|
+
import { Theme } from "../../styles/DefaultTheme";
|
|
5
|
+
export interface Props extends TableProps {
|
|
6
|
+
isTableHeader?: boolean;
|
|
8
7
|
style?: StyleProp<ViewStyle>;
|
|
9
|
-
theme:
|
|
10
|
-
}
|
|
8
|
+
theme: Theme;
|
|
9
|
+
}
|
|
11
10
|
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
|
|
12
11
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
13
12
|
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
|
|
14
13
|
export default _default;
|
|
15
|
-
//# sourceMappingURL=
|
|
14
|
+
//# sourceMappingURL=TableRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableRow.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/TableRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAQ,SAAS,EAAE,SAAS,EAAc,MAAM,cAAc,CAAC;AACtE,OAAO,EAEL,UAAU,EAGX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAGlD,MAAM,WAAW,KAAM,SAAQ,UAAU;IACvC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd;;;;AA6DD,wBAAmC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -10,7 +10,6 @@ export { default as AvatarEdit } from "./components/AvatarEdit";
|
|
|
10
10
|
export { default as Card } from "./components/Card";
|
|
11
11
|
export { Checkbox, CheckboxGroup, CheckboxRow } from "./components/Checkbox";
|
|
12
12
|
export { default as CircleImage } from "./components/CircleImage";
|
|
13
|
-
export { default as Container } from "./components/Container";
|
|
14
13
|
export { default as Divider } from "./components/Divider";
|
|
15
14
|
export { default as FAB } from "./components/FAB";
|
|
16
15
|
export { default as FieldSearchBarFull } from "./components/FieldSearchBarFull";
|
|
@@ -37,6 +36,7 @@ export { TabView, TabViewItem } from "./components/TabView";
|
|
|
37
36
|
export { default as Markdown } from "./components/Markdown";
|
|
38
37
|
export { BottomSheet } from "./components/BottomSheet";
|
|
39
38
|
export { YoutubePlayer } from "./components/YoutubePlayer";
|
|
39
|
+
export { Table, TableRow, TableCell } from "./components/Table";
|
|
40
40
|
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
41
41
|
export { default as Picker } from "./components/Picker/Picker";
|
|
42
42
|
export { default as ProgressBar } from "./components/ProgressBar";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAEhE,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"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"}
|
|
@@ -11,14 +11,14 @@ export declare const SEED_DATA: ({
|
|
|
11
11
|
required: boolean;
|
|
12
12
|
step: number;
|
|
13
13
|
};
|
|
14
|
-
|
|
15
|
-
reversed?: undefined;
|
|
14
|
+
centerContent?: undefined;
|
|
16
15
|
isDisabled?: undefined;
|
|
17
16
|
isInvalid?: undefined;
|
|
17
|
+
reversed?: undefined;
|
|
18
18
|
};
|
|
19
|
+
stylesPanelSections: string[];
|
|
19
20
|
category: string;
|
|
20
21
|
packageName: string;
|
|
21
|
-
stylesPanelSections: string[];
|
|
22
22
|
name: string;
|
|
23
23
|
tag: string;
|
|
24
24
|
description: string;
|
|
@@ -30,19 +30,14 @@ export declare const SEED_DATA: ({
|
|
|
30
30
|
tag: string;
|
|
31
31
|
description: string;
|
|
32
32
|
} | {
|
|
33
|
+
category: string;
|
|
34
|
+
packageName: string;
|
|
35
|
+
stylesPanelSections: string[];
|
|
36
|
+
name: string;
|
|
37
|
+
tag: string;
|
|
38
|
+
description: string;
|
|
33
39
|
props: {
|
|
34
|
-
|
|
35
|
-
group: string;
|
|
36
|
-
label: string;
|
|
37
|
-
description: string;
|
|
38
|
-
editable: boolean;
|
|
39
|
-
required: boolean;
|
|
40
|
-
formType: string;
|
|
41
|
-
propType: string;
|
|
42
|
-
defaultValue: null;
|
|
43
|
-
options: never[];
|
|
44
|
-
};
|
|
45
|
-
reversed: {
|
|
40
|
+
centerContent: {
|
|
46
41
|
label: string;
|
|
47
42
|
description: string;
|
|
48
43
|
formType: string;
|
|
@@ -52,6 +47,35 @@ export declare const SEED_DATA: ({
|
|
|
52
47
|
required: boolean;
|
|
53
48
|
group: string;
|
|
54
49
|
};
|
|
50
|
+
ratio?: undefined;
|
|
51
|
+
isDisabled?: undefined;
|
|
52
|
+
isInvalid?: undefined;
|
|
53
|
+
reversed?: undefined;
|
|
54
|
+
};
|
|
55
|
+
} | {
|
|
56
|
+
category: string;
|
|
57
|
+
packageName: string;
|
|
58
|
+
stylesPanelSections: string[];
|
|
59
|
+
name: string;
|
|
60
|
+
tag: string;
|
|
61
|
+
description: string;
|
|
62
|
+
layout: {
|
|
63
|
+
flexDirection: string;
|
|
64
|
+
flex?: undefined;
|
|
65
|
+
};
|
|
66
|
+
} | {
|
|
67
|
+
stylesPanelSections: string[];
|
|
68
|
+
category: string;
|
|
69
|
+
packageName: string;
|
|
70
|
+
name: string;
|
|
71
|
+
tag: string;
|
|
72
|
+
description: string;
|
|
73
|
+
layout: {
|
|
74
|
+
flex: number;
|
|
75
|
+
flexDirection?: undefined;
|
|
76
|
+
};
|
|
77
|
+
} | {
|
|
78
|
+
props: {
|
|
55
79
|
isDisabled: {
|
|
56
80
|
label: string;
|
|
57
81
|
description: string;
|
|
@@ -73,6 +97,8 @@ export declare const SEED_DATA: ({
|
|
|
73
97
|
group: string;
|
|
74
98
|
};
|
|
75
99
|
ratio?: undefined;
|
|
100
|
+
centerContent?: undefined;
|
|
101
|
+
reversed?: undefined;
|
|
76
102
|
};
|
|
77
103
|
category: string;
|
|
78
104
|
packageName: string;
|
|
@@ -93,7 +119,7 @@ export declare const SEED_DATA: ({
|
|
|
93
119
|
group: string;
|
|
94
120
|
};
|
|
95
121
|
ratio?: undefined;
|
|
96
|
-
|
|
122
|
+
centerContent?: undefined;
|
|
97
123
|
isDisabled?: undefined;
|
|
98
124
|
isInvalid?: undefined;
|
|
99
125
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Layout.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Layout.ts"],"names":[],"mappings":"AAsBA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0HrB,CAAC"}
|
|
@@ -3,69 +3,97 @@ export declare const SEED_DATA: ({
|
|
|
3
3
|
tag: string;
|
|
4
4
|
description: string;
|
|
5
5
|
category: string;
|
|
6
|
+
stylesPanelSections: string[];
|
|
7
|
+
layout: {
|
|
8
|
+
flex: number;
|
|
9
|
+
flexDirection?: undefined;
|
|
10
|
+
};
|
|
6
11
|
props: {
|
|
7
|
-
|
|
12
|
+
borderWidth: {
|
|
13
|
+
defaultValue: number;
|
|
8
14
|
label: string;
|
|
9
15
|
description: string;
|
|
10
|
-
group: string;
|
|
11
16
|
formType: string;
|
|
12
17
|
propType: string;
|
|
13
|
-
|
|
18
|
+
group: string;
|
|
14
19
|
editable: boolean;
|
|
15
20
|
required: boolean;
|
|
21
|
+
step: number;
|
|
16
22
|
};
|
|
17
|
-
|
|
23
|
+
borderColor: {
|
|
24
|
+
defaultValue: string;
|
|
18
25
|
group: string;
|
|
19
26
|
label: string;
|
|
20
27
|
description: string;
|
|
28
|
+
editable: boolean;
|
|
29
|
+
required: boolean;
|
|
21
30
|
formType: string;
|
|
22
31
|
propType: string;
|
|
23
|
-
|
|
32
|
+
};
|
|
33
|
+
borderStyle: {
|
|
34
|
+
defaultValue: string;
|
|
35
|
+
group: string;
|
|
36
|
+
label: string;
|
|
37
|
+
description: string;
|
|
24
38
|
editable: boolean;
|
|
25
39
|
required: boolean;
|
|
40
|
+
formType: string;
|
|
41
|
+
propType: string;
|
|
42
|
+
options: never[];
|
|
26
43
|
};
|
|
27
|
-
|
|
28
|
-
|
|
44
|
+
drawTopBorder: {
|
|
45
|
+
defaultValue: boolean;
|
|
29
46
|
label: string;
|
|
30
47
|
description: string;
|
|
31
48
|
formType: string;
|
|
32
49
|
propType: string;
|
|
33
|
-
defaultValue: string;
|
|
34
50
|
editable: boolean;
|
|
35
51
|
required: boolean;
|
|
36
|
-
};
|
|
37
|
-
leftDescription: {
|
|
38
52
|
group: string;
|
|
53
|
+
};
|
|
54
|
+
cellVerticalPadding: {
|
|
55
|
+
defaultValue: number;
|
|
39
56
|
label: string;
|
|
40
57
|
description: string;
|
|
41
58
|
formType: string;
|
|
42
59
|
propType: string;
|
|
43
|
-
|
|
60
|
+
group: string;
|
|
44
61
|
editable: boolean;
|
|
45
62
|
required: boolean;
|
|
63
|
+
step: number;
|
|
46
64
|
};
|
|
47
|
-
|
|
48
|
-
|
|
65
|
+
cellHorizontalPadding: {
|
|
66
|
+
defaultValue: number;
|
|
49
67
|
label: string;
|
|
50
68
|
description: string;
|
|
51
69
|
formType: string;
|
|
52
70
|
propType: string;
|
|
53
|
-
|
|
71
|
+
group: string;
|
|
54
72
|
editable: boolean;
|
|
55
73
|
required: boolean;
|
|
74
|
+
step: number;
|
|
56
75
|
};
|
|
57
|
-
|
|
58
|
-
group: string;
|
|
76
|
+
showsVerticalScrollIndicator: {
|
|
59
77
|
label: string;
|
|
60
78
|
description: string;
|
|
61
79
|
formType: string;
|
|
62
80
|
propType: string;
|
|
63
|
-
defaultValue:
|
|
81
|
+
defaultValue: boolean;
|
|
64
82
|
editable: boolean;
|
|
65
83
|
required: boolean;
|
|
84
|
+
group: string;
|
|
66
85
|
};
|
|
67
|
-
|
|
86
|
+
drawBottomBorder: {
|
|
87
|
+
label: string;
|
|
88
|
+
description: string;
|
|
89
|
+
formType: string;
|
|
90
|
+
propType: string;
|
|
91
|
+
defaultValue: boolean;
|
|
92
|
+
editable: boolean;
|
|
93
|
+
required: boolean;
|
|
68
94
|
group: string;
|
|
95
|
+
};
|
|
96
|
+
drawStartBorder: {
|
|
69
97
|
label: string;
|
|
70
98
|
description: string;
|
|
71
99
|
formType: string;
|
|
@@ -73,217 +101,237 @@ export declare const SEED_DATA: ({
|
|
|
73
101
|
defaultValue: boolean;
|
|
74
102
|
editable: boolean;
|
|
75
103
|
required: boolean;
|
|
104
|
+
group: string;
|
|
76
105
|
};
|
|
77
|
-
|
|
78
|
-
defaultValue: any;
|
|
106
|
+
drawEndBorder: {
|
|
79
107
|
label: string;
|
|
80
108
|
description: string;
|
|
81
109
|
formType: string;
|
|
82
110
|
propType: string;
|
|
83
|
-
|
|
111
|
+
defaultValue: boolean;
|
|
84
112
|
editable: boolean;
|
|
85
113
|
required: boolean;
|
|
86
114
|
group: string;
|
|
87
115
|
};
|
|
88
116
|
};
|
|
89
|
-
stylesPanelSections?: undefined;
|
|
90
117
|
} | {
|
|
91
118
|
name: string;
|
|
92
119
|
tag: string;
|
|
93
120
|
description: string;
|
|
94
121
|
category: string;
|
|
122
|
+
stylesPanelSections: string[];
|
|
95
123
|
props: {
|
|
96
|
-
|
|
97
|
-
|
|
124
|
+
drawStartBorder: {
|
|
125
|
+
defaultValue: boolean;
|
|
98
126
|
label: string;
|
|
99
127
|
description: string;
|
|
100
128
|
formType: string;
|
|
101
129
|
propType: string;
|
|
102
|
-
defaultValue: null;
|
|
103
130
|
editable: boolean;
|
|
104
131
|
required: boolean;
|
|
132
|
+
group: string;
|
|
105
133
|
};
|
|
106
|
-
|
|
134
|
+
drawBottomBorder: {
|
|
135
|
+
defaultValue: boolean;
|
|
107
136
|
label: string;
|
|
108
137
|
description: string;
|
|
109
|
-
group: string;
|
|
110
138
|
formType: string;
|
|
111
139
|
propType: string;
|
|
112
|
-
defaultValue: number;
|
|
113
140
|
editable: boolean;
|
|
114
141
|
required: boolean;
|
|
115
|
-
};
|
|
116
|
-
image: {
|
|
117
142
|
group: string;
|
|
143
|
+
};
|
|
144
|
+
isTableHeader: {
|
|
118
145
|
label: string;
|
|
119
146
|
description: string;
|
|
120
147
|
formType: string;
|
|
121
148
|
propType: string;
|
|
122
|
-
defaultValue:
|
|
149
|
+
defaultValue: boolean;
|
|
123
150
|
editable: boolean;
|
|
124
151
|
required: boolean;
|
|
125
|
-
};
|
|
126
|
-
title: {
|
|
127
152
|
group: string;
|
|
153
|
+
};
|
|
154
|
+
borderWidth: {
|
|
128
155
|
label: string;
|
|
129
156
|
description: string;
|
|
130
157
|
formType: string;
|
|
131
158
|
propType: string;
|
|
132
|
-
|
|
159
|
+
group: string;
|
|
160
|
+
defaultValue: null;
|
|
133
161
|
editable: boolean;
|
|
134
162
|
required: boolean;
|
|
163
|
+
step: number;
|
|
135
164
|
};
|
|
136
|
-
|
|
165
|
+
borderColor: {
|
|
137
166
|
group: string;
|
|
138
167
|
label: string;
|
|
139
168
|
description: string;
|
|
169
|
+
editable: boolean;
|
|
170
|
+
required: boolean;
|
|
171
|
+
defaultValue: null;
|
|
140
172
|
formType: string;
|
|
141
173
|
propType: string;
|
|
142
|
-
|
|
174
|
+
};
|
|
175
|
+
borderStyle: {
|
|
176
|
+
group: string;
|
|
177
|
+
label: string;
|
|
178
|
+
description: string;
|
|
143
179
|
editable: boolean;
|
|
144
180
|
required: boolean;
|
|
181
|
+
formType: string;
|
|
182
|
+
propType: string;
|
|
183
|
+
defaultValue: null;
|
|
184
|
+
options: never[];
|
|
145
185
|
};
|
|
146
|
-
|
|
147
|
-
group: string;
|
|
186
|
+
drawTopBorder: {
|
|
148
187
|
label: string;
|
|
149
188
|
description: string;
|
|
150
189
|
formType: string;
|
|
151
190
|
propType: string;
|
|
152
|
-
defaultValue:
|
|
191
|
+
defaultValue: boolean;
|
|
153
192
|
editable: boolean;
|
|
154
193
|
required: boolean;
|
|
155
|
-
};
|
|
156
|
-
aspectRatio: {
|
|
157
194
|
group: string;
|
|
195
|
+
};
|
|
196
|
+
drawEndBorder: {
|
|
158
197
|
label: string;
|
|
159
198
|
description: string;
|
|
160
199
|
formType: string;
|
|
161
200
|
propType: string;
|
|
162
|
-
defaultValue:
|
|
201
|
+
defaultValue: boolean;
|
|
163
202
|
editable: boolean;
|
|
164
203
|
required: boolean;
|
|
165
|
-
};
|
|
166
|
-
titleCentered: {
|
|
167
204
|
group: string;
|
|
205
|
+
};
|
|
206
|
+
cellVerticalPadding: {
|
|
168
207
|
label: string;
|
|
169
208
|
description: string;
|
|
170
209
|
formType: string;
|
|
171
210
|
propType: string;
|
|
172
|
-
|
|
211
|
+
group: string;
|
|
212
|
+
defaultValue: null;
|
|
173
213
|
editable: boolean;
|
|
174
214
|
required: boolean;
|
|
215
|
+
step: number;
|
|
175
216
|
};
|
|
176
|
-
|
|
177
|
-
defaultValue: any;
|
|
217
|
+
cellHorizontalPadding: {
|
|
178
218
|
label: string;
|
|
179
219
|
description: string;
|
|
180
220
|
formType: string;
|
|
181
221
|
propType: string;
|
|
182
|
-
|
|
222
|
+
group: string;
|
|
223
|
+
defaultValue: null;
|
|
183
224
|
editable: boolean;
|
|
184
225
|
required: boolean;
|
|
185
|
-
|
|
226
|
+
step: number;
|
|
186
227
|
};
|
|
187
228
|
};
|
|
188
|
-
|
|
229
|
+
layout?: undefined;
|
|
189
230
|
} | {
|
|
190
231
|
name: string;
|
|
191
232
|
tag: string;
|
|
192
233
|
description: string;
|
|
193
234
|
category: string;
|
|
194
235
|
stylesPanelSections: string[];
|
|
236
|
+
layout: {
|
|
237
|
+
flex: number;
|
|
238
|
+
flexDirection: string;
|
|
239
|
+
};
|
|
195
240
|
props: {
|
|
196
|
-
|
|
197
|
-
|
|
241
|
+
drawEndBorder: {
|
|
242
|
+
defaultValue: boolean;
|
|
198
243
|
label: string;
|
|
199
244
|
description: string;
|
|
200
245
|
formType: string;
|
|
201
246
|
propType: string;
|
|
202
|
-
defaultValue: null;
|
|
203
247
|
editable: boolean;
|
|
204
248
|
required: boolean;
|
|
249
|
+
group: string;
|
|
205
250
|
};
|
|
206
|
-
|
|
251
|
+
borderWidth: {
|
|
207
252
|
label: string;
|
|
208
253
|
description: string;
|
|
209
|
-
group: string;
|
|
210
254
|
formType: string;
|
|
211
255
|
propType: string;
|
|
212
|
-
|
|
256
|
+
group: string;
|
|
257
|
+
defaultValue: null;
|
|
213
258
|
editable: boolean;
|
|
214
259
|
required: boolean;
|
|
260
|
+
step: number;
|
|
215
261
|
};
|
|
216
|
-
|
|
262
|
+
borderColor: {
|
|
217
263
|
group: string;
|
|
218
264
|
label: string;
|
|
219
265
|
description: string;
|
|
220
|
-
formType: string;
|
|
221
|
-
propType: string;
|
|
222
|
-
defaultValue: null;
|
|
223
266
|
editable: boolean;
|
|
224
267
|
required: boolean;
|
|
268
|
+
defaultValue: null;
|
|
269
|
+
formType: string;
|
|
270
|
+
propType: string;
|
|
225
271
|
};
|
|
226
|
-
|
|
272
|
+
borderStyle: {
|
|
227
273
|
group: string;
|
|
228
274
|
label: string;
|
|
229
275
|
description: string;
|
|
230
|
-
formType: string;
|
|
231
|
-
propType: string;
|
|
232
|
-
defaultValue: string;
|
|
233
276
|
editable: boolean;
|
|
234
277
|
required: boolean;
|
|
278
|
+
formType: string;
|
|
279
|
+
propType: string;
|
|
280
|
+
defaultValue: null;
|
|
281
|
+
options: never[];
|
|
235
282
|
};
|
|
236
|
-
|
|
237
|
-
group: string;
|
|
283
|
+
drawTopBorder: {
|
|
238
284
|
label: string;
|
|
239
285
|
description: string;
|
|
240
286
|
formType: string;
|
|
241
287
|
propType: string;
|
|
242
|
-
defaultValue:
|
|
288
|
+
defaultValue: boolean;
|
|
243
289
|
editable: boolean;
|
|
244
290
|
required: boolean;
|
|
245
|
-
};
|
|
246
|
-
rightDescription: {
|
|
247
291
|
group: string;
|
|
292
|
+
};
|
|
293
|
+
drawBottomBorder: {
|
|
248
294
|
label: string;
|
|
249
295
|
description: string;
|
|
250
296
|
formType: string;
|
|
251
297
|
propType: string;
|
|
252
|
-
defaultValue:
|
|
298
|
+
defaultValue: boolean;
|
|
253
299
|
editable: boolean;
|
|
254
300
|
required: boolean;
|
|
255
|
-
};
|
|
256
|
-
aspectRatio: {
|
|
257
301
|
group: string;
|
|
302
|
+
};
|
|
303
|
+
drawStartBorder: {
|
|
258
304
|
label: string;
|
|
259
305
|
description: string;
|
|
260
306
|
formType: string;
|
|
261
307
|
propType: string;
|
|
262
|
-
defaultValue:
|
|
308
|
+
defaultValue: boolean;
|
|
263
309
|
editable: boolean;
|
|
264
310
|
required: boolean;
|
|
265
|
-
};
|
|
266
|
-
titleCentered: {
|
|
267
311
|
group: string;
|
|
312
|
+
};
|
|
313
|
+
cellVerticalPadding: {
|
|
268
314
|
label: string;
|
|
269
315
|
description: string;
|
|
270
316
|
formType: string;
|
|
271
317
|
propType: string;
|
|
272
|
-
|
|
318
|
+
group: string;
|
|
319
|
+
defaultValue: null;
|
|
273
320
|
editable: boolean;
|
|
274
321
|
required: boolean;
|
|
322
|
+
step: number;
|
|
275
323
|
};
|
|
276
|
-
|
|
277
|
-
defaultValue: any;
|
|
324
|
+
cellHorizontalPadding: {
|
|
278
325
|
label: string;
|
|
279
326
|
description: string;
|
|
280
327
|
formType: string;
|
|
281
328
|
propType: string;
|
|
282
|
-
|
|
329
|
+
group: string;
|
|
330
|
+
defaultValue: null;
|
|
283
331
|
editable: boolean;
|
|
284
332
|
required: boolean;
|
|
285
|
-
|
|
333
|
+
step: number;
|
|
286
334
|
};
|
|
287
335
|
};
|
|
288
336
|
})[];
|
|
289
|
-
//# sourceMappingURL=
|
|
337
|
+
//# sourceMappingURL=Table.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../../src/mappings/Table.ts"],"names":[],"mappings":"AAsEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmGrB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/core",
|
|
3
|
-
"version": "46.10.3-
|
|
3
|
+
"version": "46.10.3-177666.2+177666e",
|
|
4
4
|
"description": "Core (non-native) Components",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@date-io/date-fns": "^1.3.13",
|
|
43
43
|
"@draftbit/react-theme-provider": "^2.1.1",
|
|
44
|
-
"@draftbit/types": "^46.10.3-
|
|
44
|
+
"@draftbit/types": "^46.10.3-177666.2+177666e",
|
|
45
45
|
"@material-ui/core": "^4.11.0",
|
|
46
46
|
"@material-ui/pickers": "^3.2.10",
|
|
47
47
|
"@react-native-community/slider": "4.2.3",
|
|
@@ -100,5 +100,5 @@
|
|
|
100
100
|
]
|
|
101
101
|
]
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "177666ee8ef3cc890c08bb938748ee789b2fb194"
|
|
104
104
|
}
|