@draftbit/core 46.8.2-af4b7d.2 → 46.8.2-e0b610.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "46.8.2-af4b7d.2+af4b7d0",
3
+ "version": "46.8.2-e0b610.2+e0b6100",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",
@@ -41,8 +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.8.2-af4b7d.2+af4b7d0",
45
- "@expo/html-elements": "^0.3.1",
44
+ "@draftbit/types": "^46.8.2-e0b610.2+e0b6100",
46
45
  "@material-ui/core": "^4.11.0",
47
46
  "@material-ui/pickers": "^3.2.10",
48
47
  "@react-native-community/slider": "4.2.3",
@@ -56,6 +55,7 @@
56
55
  "lodash.tonumber": "^4.0.3",
57
56
  "react-native-deck-swiper": "^2.0.12",
58
57
  "react-native-modal-datetime-picker": "^13.0.0",
58
+ "react-native-shadow-2": "^7.0.6",
59
59
  "react-native-svg": "12.3.0",
60
60
  "react-native-typography": "^1.4.1",
61
61
  "react-native-web-swiper": "^2.2.3"
@@ -93,5 +93,5 @@
93
93
  ]
94
94
  ]
95
95
  },
96
- "gitHead": "af4b7d05423db7dbcc8d6ad29c655abae47ca702"
96
+ "gitHead": "e0b61000d1889f05058ae29887cfb22e6cf0e3bd"
97
97
  }
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ import { Shadow as ShadowComponent } from "react-native-shadow-2";
3
+ const Shadow = ({ offsetX = 0, offsetY = 0, showShadowSideStart = true, showShadowSideEnd = true, showShadowSideTop = true, showShadowSideBottom = true, showShadowCornerTopStart = true, showShadowCornerTopEnd = true, showShadowCornerBottomStart = true, showShadowCornerBottomEnd = true, paintInside = false, style, ...rest }) => {
4
+ return (React.createElement(ShadowComponent, { offset: [offsetX, offsetY], sides: {
5
+ start: showShadowSideStart,
6
+ end: showShadowSideEnd,
7
+ top: showShadowSideTop,
8
+ bottom: showShadowSideBottom,
9
+ }, corners: {
10
+ topStart: showShadowCornerTopStart,
11
+ topEnd: showShadowCornerTopEnd,
12
+ bottomStart: showShadowCornerBottomStart,
13
+ bottomEnd: showShadowCornerBottomEnd,
14
+ }, containerStyle: style, paintInside: paintInside, ...rest }));
15
+ };
16
+ export default Shadow;
@@ -0,0 +1,62 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ import { Shadow as ShadowComponent } from "react-native-shadow-2";
4
+
5
+ interface ShadowProps {
6
+ disabled?: boolean;
7
+ startColor?: string;
8
+ endColor?: string;
9
+ distance?: number;
10
+ paintInside?: boolean;
11
+ stretch?: boolean;
12
+ offsetX?: number;
13
+ offsetY?: number;
14
+ showShadowSideStart?: boolean;
15
+ showShadowSideEnd?: boolean;
16
+ showShadowSideTop?: boolean;
17
+ showShadowSideBottom?: boolean;
18
+ showShadowCornerTopStart?: boolean;
19
+ showShadowCornerTopEnd?: boolean;
20
+ showShadowCornerBottomStart?: boolean;
21
+ showShadowCornerBottomEnd?: boolean;
22
+ style?: StyleProp<ViewStyle>;
23
+ }
24
+
25
+ const Shadow: React.FC<React.PropsWithChildren<ShadowProps>> = ({
26
+ offsetX = 0,
27
+ offsetY = 0,
28
+ showShadowSideStart = true,
29
+ showShadowSideEnd = true,
30
+ showShadowSideTop = true,
31
+ showShadowSideBottom = true,
32
+ showShadowCornerTopStart = true,
33
+ showShadowCornerTopEnd = true,
34
+ showShadowCornerBottomStart = true,
35
+ showShadowCornerBottomEnd = true,
36
+ paintInside = false,
37
+ style,
38
+ ...rest
39
+ }) => {
40
+ return (
41
+ <ShadowComponent
42
+ offset={[offsetX, offsetY]}
43
+ sides={{
44
+ start: showShadowSideStart,
45
+ end: showShadowSideEnd,
46
+ top: showShadowSideTop,
47
+ bottom: showShadowSideBottom,
48
+ }}
49
+ corners={{
50
+ topStart: showShadowCornerTopStart,
51
+ topEnd: showShadowCornerTopEnd,
52
+ bottomStart: showShadowCornerBottomStart,
53
+ bottomEnd: showShadowCornerBottomEnd,
54
+ }}
55
+ containerStyle={style}
56
+ paintInside={paintInside}
57
+ {...rest}
58
+ />
59
+ );
60
+ };
61
+
62
+ export default Shadow;
package/src/index.js CHANGED
@@ -31,6 +31,7 @@ export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/A
31
31
  export { Swiper, SwiperItem } from "./components/Swiper";
32
32
  export { Center, Circle, Square, Row, Stack, Spacer, } from "./components/Layout";
33
33
  export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
34
+ export { default as Shadow } from "./components/Shadow";
34
35
  export { DeckSwiper, DeckSwiperCard } from "./components/DeckSwiper";
35
36
  /* Deprecated: Fix or Delete! */
36
37
  export { default as DatePicker } from "./components/DatePicker/DatePicker";
package/src/index.tsx CHANGED
@@ -51,6 +51,8 @@ export {
51
51
  RadioButtonFieldGroup,
52
52
  } from "./components/RadioButton/index";
53
53
 
54
+ export { default as Shadow } from "./components/Shadow";
55
+
54
56
  export { DeckSwiper, DeckSwiperCard } from "./components/DeckSwiper";
55
57
 
56
58
  /* Deprecated: Fix or Delete! */
@@ -0,0 +1,87 @@
1
+ import { COMPONENT_TYPES, CONTAINER_COMPONENT_STYLES_SECTIONS, createColorProp, createStaticNumberProp, createStaticBoolProp, createDisabledProp, } from "@draftbit/types";
2
+ export const SEED_DATA = {
3
+ name: "Shadow",
4
+ tag: "Shadow",
5
+ description: "A cross-platform, universal shadow.",
6
+ category: COMPONENT_TYPES.view,
7
+ stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
8
+ props: {
9
+ disabled: createDisabledProp({
10
+ description: "Disables the shadow.",
11
+ }),
12
+ startColor: createColorProp({
13
+ label: "Start Color",
14
+ description: "The initial gradient color of the shadow.",
15
+ defaultValue: null,
16
+ }),
17
+ endColor: createColorProp({
18
+ label: "End Color",
19
+ description: "The final gradient color of the shadow.",
20
+ defaultValue: null,
21
+ }),
22
+ distance: createStaticNumberProp({
23
+ label: "Distance",
24
+ description: "The distance of the shadow.",
25
+ }),
26
+ paintInside: createStaticBoolProp({
27
+ label: "Paint Inside",
28
+ description: "Apply the shadow below/inside the content.",
29
+ defaultValue: false,
30
+ }),
31
+ stretch: createStaticBoolProp({
32
+ label: "Stretch",
33
+ description: "Force children to occupy all available horizontal space.",
34
+ defaultValue: null,
35
+ }),
36
+ offsetX: createStaticNumberProp({
37
+ label: "Offset X",
38
+ description: "Moves the shadow in the x direction",
39
+ defeaultValue: 0,
40
+ }),
41
+ offsetY: createStaticNumberProp({
42
+ label: "Offset Y",
43
+ description: "Moves the shadow in the y direction",
44
+ defeaultValue: 0,
45
+ }),
46
+ showShadowSideStart: createStaticBoolProp({
47
+ label: "Show Shadow Start",
48
+ description: "Whether to show shadow on the start side or not",
49
+ defaultValue: true,
50
+ }),
51
+ showShadowSideEnd: createStaticBoolProp({
52
+ label: "Show Shadow End",
53
+ description: "Whether to show shadow on the end side or not",
54
+ defaultValue: true,
55
+ }),
56
+ showShadowSideTop: createStaticBoolProp({
57
+ label: "Show Shadow Top",
58
+ description: "Whether to show shadow on the top side or not",
59
+ defaultValue: true,
60
+ }),
61
+ showShadowSideBottom: createStaticBoolProp({
62
+ label: "Show Shadow Bottom",
63
+ description: "Whether to show shadow on the bottom side or not",
64
+ defaultValue: true,
65
+ }),
66
+ showShadowCornerTopStart: createStaticBoolProp({
67
+ label: "Show Shadow Top Start Corner",
68
+ description: "Whether to show shadow on the top start corner or not",
69
+ defaultValue: true,
70
+ }),
71
+ showShadowCornerTopEnd: createStaticBoolProp({
72
+ label: "Show Shadow Top End Corner",
73
+ description: "Whether to show shadow on the top end corner or not",
74
+ defaultValue: true,
75
+ }),
76
+ showShadowCornerBottomStart: createStaticBoolProp({
77
+ label: "Show Shadow Bottom Start Corner",
78
+ description: "Whether to show shadow on the bottom start corner or not",
79
+ defaultValue: true,
80
+ }),
81
+ showShadowCornerBottomEnd: createStaticBoolProp({
82
+ label: "Show Shadow Bottom End Corner",
83
+ description: "Whether to show shadow on the bottom end corner or not",
84
+ defaultValue: true,
85
+ }),
86
+ },
87
+ };
@@ -0,0 +1,95 @@
1
+ import {
2
+ COMPONENT_TYPES,
3
+ CONTAINER_COMPONENT_STYLES_SECTIONS,
4
+ createColorProp,
5
+ createStaticNumberProp,
6
+ createStaticBoolProp,
7
+ createDisabledProp,
8
+ } from "@draftbit/types";
9
+
10
+ export const SEED_DATA = {
11
+ name: "Shadow",
12
+ tag: "Shadow",
13
+ description: "A cross-platform, universal shadow.",
14
+ category: COMPONENT_TYPES.view,
15
+ stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
16
+ props: {
17
+ disabled: createDisabledProp({
18
+ description: "Disables the shadow.",
19
+ }),
20
+ startColor: createColorProp({
21
+ label: "Start Color",
22
+ description: "The initial gradient color of the shadow.",
23
+ defaultValue: null,
24
+ }),
25
+ endColor: createColorProp({
26
+ label: "End Color",
27
+ description: "The final gradient color of the shadow.",
28
+ defaultValue: null,
29
+ }),
30
+ distance: createStaticNumberProp({
31
+ label: "Distance",
32
+ description: "The distance of the shadow.",
33
+ }),
34
+ paintInside: createStaticBoolProp({
35
+ label: "Paint Inside",
36
+ description: "Apply the shadow below/inside the content.",
37
+ defaultValue: false,
38
+ }),
39
+ stretch: createStaticBoolProp({
40
+ label: "Stretch",
41
+ description: "Force children to occupy all available horizontal space.",
42
+ defaultValue: null,
43
+ }),
44
+ offsetX: createStaticNumberProp({
45
+ label: "Offset X",
46
+ description: "Moves the shadow in the x direction",
47
+ defeaultValue: 0,
48
+ }),
49
+ offsetY: createStaticNumberProp({
50
+ label: "Offset Y",
51
+ description: "Moves the shadow in the y direction",
52
+ defeaultValue: 0,
53
+ }),
54
+ showShadowSideStart: createStaticBoolProp({
55
+ label: "Show Shadow Start",
56
+ description: "Whether to show shadow on the start side or not",
57
+ defaultValue: true,
58
+ }),
59
+ showShadowSideEnd: createStaticBoolProp({
60
+ label: "Show Shadow End",
61
+ description: "Whether to show shadow on the end side or not",
62
+ defaultValue: true,
63
+ }),
64
+ showShadowSideTop: createStaticBoolProp({
65
+ label: "Show Shadow Top",
66
+ description: "Whether to show shadow on the top side or not",
67
+ defaultValue: true,
68
+ }),
69
+ showShadowSideBottom: createStaticBoolProp({
70
+ label: "Show Shadow Bottom",
71
+ description: "Whether to show shadow on the bottom side or not",
72
+ defaultValue: true,
73
+ }),
74
+ showShadowCornerTopStart: createStaticBoolProp({
75
+ label: "Show Shadow Top Start Corner",
76
+ description: "Whether to show shadow on the top start corner or not",
77
+ defaultValue: true,
78
+ }),
79
+ showShadowCornerTopEnd: createStaticBoolProp({
80
+ label: "Show Shadow Top End Corner",
81
+ description: "Whether to show shadow on the top end corner or not",
82
+ defaultValue: true,
83
+ }),
84
+ showShadowCornerBottomStart: createStaticBoolProp({
85
+ label: "Show Shadow Bottom Start Corner",
86
+ description: "Whether to show shadow on the bottom start corner or not",
87
+ defaultValue: true,
88
+ }),
89
+ showShadowCornerBottomEnd: createStaticBoolProp({
90
+ label: "Show Shadow Bottom End Corner",
91
+ description: "Whether to show shadow on the bottom end corner or not",
92
+ defaultValue: true,
93
+ }),
94
+ },
95
+ };
@@ -1,160 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.SEED_DATA = void 0;
7
- var _types = require("@draftbit/types");
8
- const ELEMENT_SEED_DATA = {
9
- doc_link: "https://www.npmjs.com/package/@expo/html-elements",
10
- code_link: "https://github.com/expo/expo/tree/master/packages/html-elements",
11
- packageName: "@expo/html-elements",
12
- stylesPanelSections: _types.BLOCK_STYLES_SECTIONS,
13
- category: _types.COMPONENT_TYPES.webelement
14
- };
15
- const TEXT_SEED_DATA = {
16
- ...ELEMENT_SEED_DATA,
17
- category: _types.COMPONENT_TYPES.text,
18
- stylesPanelSections: [_types.StylesPanelSections.Typography, _types.StylesPanelSections.LayoutSelectedItem, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Effects],
19
- layout: {
20
- color: "strong"
21
- },
22
- props: {
23
- children: {
24
- group: _types.GROUPS.data,
25
- label: "Text",
26
- description: "Text",
27
- defaultValue: "Double click me to edit 👀",
28
- editable: true,
29
- required: true,
30
- formType: _types.FORM_TYPES.string,
31
- propType: _types.PROP_TYPES.STRING
32
- },
33
- accessibilityLabel: {
34
- group: _types.GROUPS.accessibility,
35
- name: "accessibilityLabel",
36
- label: "accessibilityLabel",
37
- description: "Overrides the text that's read by the screen reader when the user interacts with the element. By default, the label is constructed by traversing all the children and accumulating all the Text nodes separated by space.",
38
- editable: true,
39
- required: false,
40
- formType: _types.FORM_TYPES.string,
41
- propType: _types.PROP_TYPES.STRING,
42
- defaultValue: null
43
- },
44
- selectable: {
45
- group: _types.GROUPS.advanced,
46
- name: "selectable",
47
- label: "selectable",
48
- description: "Lets the user select text, to use the native copy and paste functionality.",
49
- editable: true,
50
- required: false,
51
- formType: _types.FORM_TYPES.boolean,
52
- propType: _types.PROP_TYPES.BOOLEAN,
53
- defaultValue: true
54
- }
55
- }
56
- };
57
- const SEED_DATA = [{
58
- name: "Heading 1",
59
- tag: "H1",
60
- ...TEXT_SEED_DATA
61
- }, {
62
- name: "Heading 2",
63
- tag: "H2",
64
- ...TEXT_SEED_DATA
65
- }, {
66
- name: "Heading 3",
67
- tag: "H3",
68
- ...TEXT_SEED_DATA
69
- }, {
70
- name: "Heading 4",
71
- tag: "H4",
72
- ...TEXT_SEED_DATA
73
- }, {
74
- name: "Heading 5",
75
- tag: "H5",
76
- ...TEXT_SEED_DATA
77
- }, {
78
- name: "Heading 6",
79
- tag: "H6",
80
- ...TEXT_SEED_DATA
81
- }, {
82
- name: "Paragraph",
83
- tag: "P",
84
- ...TEXT_SEED_DATA
85
- }, {
86
- name: "Bold",
87
- tag: "B",
88
- ...TEXT_SEED_DATA
89
- }, {
90
- name: "Strikethrough",
91
- tag: "S",
92
- ...TEXT_SEED_DATA
93
- }, {
94
- name: "Italic",
95
- tag: "I",
96
- ...TEXT_SEED_DATA
97
- }, {
98
- name: "Code",
99
- tag: "Code",
100
- ...TEXT_SEED_DATA
101
- }, {
102
- name: "Preformatted",
103
- tag: "Pre",
104
- ...TEXT_SEED_DATA
105
- }, {
106
- name: "Mark",
107
- tag: "Mark",
108
- ...TEXT_SEED_DATA
109
- }, {
110
- name: "Block Quote",
111
- tag: "BlockQuote",
112
- ...TEXT_SEED_DATA
113
- }, {
114
- name: "Quoted",
115
- tag: "Q",
116
- ...TEXT_SEED_DATA
117
- }, {
118
- name: "Time",
119
- tag: "Time",
120
- ...TEXT_SEED_DATA
121
- }, {
122
- name: "Unordered List",
123
- tag: "UL",
124
- ...ELEMENT_SEED_DATA
125
- }, {
126
- name: "List Item",
127
- tag: "LI",
128
- ...TEXT_SEED_DATA,
129
- category: _types.COMPONENT_TYPES.webelement
130
- }, {
131
- name: "Line Break",
132
- tag: "BR",
133
- ...ELEMENT_SEED_DATA
134
- }, {
135
- name: "Horizontal Rule",
136
- tag: "HR",
137
- ...ELEMENT_SEED_DATA
138
- }, {
139
- name: "Anchor",
140
- tag: "A",
141
- ...TEXT_SEED_DATA,
142
- props: {
143
- ...TEXT_SEED_DATA.props,
144
- href: (0, _types.createTextProp)({
145
- label: "href",
146
- description: "Specify the URL",
147
- defaultValue: ""
148
- }),
149
- target: {
150
- group: _types.GROUPS.basic,
151
- label: "target",
152
- description: "decide where link should open",
153
- formType: _types.FORM_TYPES.flatArray,
154
- defaultValue: "_blank",
155
- options: ["_blank", "_self", "_parent", "_top"]
156
- }
157
- },
158
- category: _types.COMPONENT_TYPES.webelement
159
- }];
160
- exports.SEED_DATA = SEED_DATA;
@@ -1,153 +0,0 @@
1
- import { COMPONENT_TYPES, createTextProp, FORM_TYPES, PROP_TYPES, GROUPS, StylesPanelSections, BLOCK_STYLES_SECTIONS } from "@draftbit/types";
2
- const ELEMENT_SEED_DATA = {
3
- doc_link: "https://www.npmjs.com/package/@expo/html-elements",
4
- code_link: "https://github.com/expo/expo/tree/master/packages/html-elements",
5
- packageName: "@expo/html-elements",
6
- stylesPanelSections: BLOCK_STYLES_SECTIONS,
7
- category: COMPONENT_TYPES.webelement
8
- };
9
- const TEXT_SEED_DATA = {
10
- ...ELEMENT_SEED_DATA,
11
- category: COMPONENT_TYPES.text,
12
- stylesPanelSections: [StylesPanelSections.Typography, StylesPanelSections.LayoutSelectedItem, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Effects],
13
- layout: {
14
- color: "strong"
15
- },
16
- props: {
17
- children: {
18
- group: GROUPS.data,
19
- label: "Text",
20
- description: "Text",
21
- defaultValue: "Double click me to edit 👀",
22
- editable: true,
23
- required: true,
24
- formType: FORM_TYPES.string,
25
- propType: PROP_TYPES.STRING
26
- },
27
- accessibilityLabel: {
28
- group: GROUPS.accessibility,
29
- name: "accessibilityLabel",
30
- label: "accessibilityLabel",
31
- description: "Overrides the text that's read by the screen reader when the user interacts with the element. By default, the label is constructed by traversing all the children and accumulating all the Text nodes separated by space.",
32
- editable: true,
33
- required: false,
34
- formType: FORM_TYPES.string,
35
- propType: PROP_TYPES.STRING,
36
- defaultValue: null
37
- },
38
- selectable: {
39
- group: GROUPS.advanced,
40
- name: "selectable",
41
- label: "selectable",
42
- description: "Lets the user select text, to use the native copy and paste functionality.",
43
- editable: true,
44
- required: false,
45
- formType: FORM_TYPES.boolean,
46
- propType: PROP_TYPES.BOOLEAN,
47
- defaultValue: true
48
- }
49
- }
50
- };
51
- export const SEED_DATA = [{
52
- name: "Heading 1",
53
- tag: "H1",
54
- ...TEXT_SEED_DATA
55
- }, {
56
- name: "Heading 2",
57
- tag: "H2",
58
- ...TEXT_SEED_DATA
59
- }, {
60
- name: "Heading 3",
61
- tag: "H3",
62
- ...TEXT_SEED_DATA
63
- }, {
64
- name: "Heading 4",
65
- tag: "H4",
66
- ...TEXT_SEED_DATA
67
- }, {
68
- name: "Heading 5",
69
- tag: "H5",
70
- ...TEXT_SEED_DATA
71
- }, {
72
- name: "Heading 6",
73
- tag: "H6",
74
- ...TEXT_SEED_DATA
75
- }, {
76
- name: "Paragraph",
77
- tag: "P",
78
- ...TEXT_SEED_DATA
79
- }, {
80
- name: "Bold",
81
- tag: "B",
82
- ...TEXT_SEED_DATA
83
- }, {
84
- name: "Strikethrough",
85
- tag: "S",
86
- ...TEXT_SEED_DATA
87
- }, {
88
- name: "Italic",
89
- tag: "I",
90
- ...TEXT_SEED_DATA
91
- }, {
92
- name: "Code",
93
- tag: "Code",
94
- ...TEXT_SEED_DATA
95
- }, {
96
- name: "Preformatted",
97
- tag: "Pre",
98
- ...TEXT_SEED_DATA
99
- }, {
100
- name: "Mark",
101
- tag: "Mark",
102
- ...TEXT_SEED_DATA
103
- }, {
104
- name: "Block Quote",
105
- tag: "BlockQuote",
106
- ...TEXT_SEED_DATA
107
- }, {
108
- name: "Quoted",
109
- tag: "Q",
110
- ...TEXT_SEED_DATA
111
- }, {
112
- name: "Time",
113
- tag: "Time",
114
- ...TEXT_SEED_DATA
115
- }, {
116
- name: "Unordered List",
117
- tag: "UL",
118
- ...ELEMENT_SEED_DATA
119
- }, {
120
- name: "List Item",
121
- tag: "LI",
122
- ...TEXT_SEED_DATA,
123
- category: COMPONENT_TYPES.webelement
124
- }, {
125
- name: "Line Break",
126
- tag: "BR",
127
- ...ELEMENT_SEED_DATA
128
- }, {
129
- name: "Horizontal Rule",
130
- tag: "HR",
131
- ...ELEMENT_SEED_DATA
132
- }, {
133
- name: "Anchor",
134
- tag: "A",
135
- ...TEXT_SEED_DATA,
136
- props: {
137
- ...TEXT_SEED_DATA.props,
138
- href: createTextProp({
139
- label: "href",
140
- description: "Specify the URL",
141
- defaultValue: ""
142
- }),
143
- target: {
144
- group: GROUPS.basic,
145
- label: "target",
146
- description: "decide where link should open",
147
- formType: FORM_TYPES.flatArray,
148
- defaultValue: "_blank",
149
- options: ["_blank", "_self", "_parent", "_top"]
150
- }
151
- },
152
- category: COMPONENT_TYPES.webelement
153
- }];