react-crud-mobile 1.1.2 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/dist/elements/UI.d.ts +47 -0
  2. package/dist/elements/UIChildren.d.ts +15 -0
  3. package/dist/elements/UIComplete.d.ts +3 -0
  4. package/dist/elements/UIElement.d.ts +3 -0
  5. package/dist/elements/UITag.d.ts +7 -0
  6. package/dist/elements/charts/ElChart.d.ts +3 -0
  7. package/dist/elements/core/SafeView.d.ts +9 -0
  8. package/dist/elements/core/UIAutoComplete.d.ts +2 -0
  9. package/dist/elements/core/UIButton.d.ts +3 -0
  10. package/dist/elements/core/UIIcon.d.ts +3 -0
  11. package/dist/elements/core/UIInclude.d.ts +3 -0
  12. package/dist/elements/core/UIInput.d.ts +3 -0
  13. package/dist/elements/core/UILink.d.ts +2 -0
  14. package/dist/elements/core/UIList.d.ts +3 -0
  15. package/dist/elements/core/UIListItem.d.ts +7 -0
  16. package/dist/elements/core/UIListRow.d.ts +8 -0
  17. package/dist/elements/core/UIModal.d.ts +3 -0
  18. package/dist/elements/core/UIOption.d.ts +2 -0
  19. package/dist/elements/core/UIQuantity.d.ts +3 -0
  20. package/dist/elements/core/UIRadio.d.ts +2 -0
  21. package/dist/elements/core/UISelect.d.ts +3 -0
  22. package/dist/elements/core/UISlider.d.ts +3 -0
  23. package/dist/elements/core/UISwitch.d.ts +3 -0
  24. package/dist/elements/core/UIToast.d.ts +2 -0
  25. package/dist/elements/core/UIToggle.d.ts +3 -0
  26. package/dist/elements/core/UIView.d.ts +3 -0
  27. package/dist/elements/index.d.ts +1 -0
  28. package/dist/elements/tabs/ElTabs.d.ts +3 -0
  29. package/dist/hooks/useIsVisible.d.ts +2 -0
  30. package/dist/index.d.ts +1 -2
  31. package/dist/react-crud-mobile.cjs.development.js +2364 -0
  32. package/dist/react-crud-mobile.cjs.development.js.map +1 -0
  33. package/dist/react-crud-mobile.cjs.production.min.js +2 -0
  34. package/dist/react-crud-mobile.cjs.production.min.js.map +1 -0
  35. package/dist/react-crud-mobile.esm.js +2356 -0
  36. package/dist/react-crud-mobile.esm.js.map +1 -0
  37. package/dist/utils/MobileUtils.d.ts +3 -0
  38. package/package.json +75 -50
  39. package/src/elements/UI.tsx +73 -57
  40. package/src/elements/UIChildren.tsx +139 -117
  41. package/src/elements/UIComplete.tsx +14 -15
  42. package/src/elements/UIElement.tsx +692 -379
  43. package/src/elements/UITag.tsx +13 -13
  44. package/src/elements/charts/ElChart.tsx +10 -10
  45. package/src/elements/core/SafeView.tsx +69 -0
  46. package/src/elements/core/{Link.tsx → UIAutoComplete.tsx} +1 -2
  47. package/src/elements/core/UIButton.tsx +139 -0
  48. package/src/elements/core/UIIcon.tsx +25 -0
  49. package/src/elements/{grid/ElInclude.tsx → core/UIInclude.tsx} +40 -40
  50. package/src/elements/core/UIInput.tsx +96 -0
  51. package/src/elements/core/{Icon.tsx → UILink.tsx} +1 -2
  52. package/src/elements/core/UIList.tsx +168 -0
  53. package/src/elements/core/UIListItem.tsx +32 -0
  54. package/src/elements/core/UIListRow.tsx +123 -0
  55. package/src/elements/core/UIModal.tsx +204 -0
  56. package/src/elements/core/{Input.tsx → UIOption.tsx} +1 -2
  57. package/src/elements/core/UIQuantity.tsx +98 -0
  58. package/src/elements/core/{Radio.tsx → UIRadio.tsx} +1 -2
  59. package/src/elements/core/UISelect.tsx +135 -0
  60. package/src/elements/core/UISlider.tsx +61 -0
  61. package/src/elements/core/UISwitch.tsx +27 -0
  62. package/src/elements/core/UIToast.tsx +44 -0
  63. package/src/elements/core/UIToggle.tsx +102 -0
  64. package/src/elements/core/UIView.tsx +94 -0
  65. package/src/elements/grid/ElInclude +0 -0
  66. package/src/elements/index.ts +1 -1
  67. package/src/elements/tabs/ElTabs.tsx +178 -178
  68. package/src/hooks/useIsVisible.ts +39 -0
  69. package/src/index.ts +1 -1
  70. package/src/utils/MobileUtils.ts +12 -0
  71. package/src/elements/card/ElCard.tsx +0 -26
  72. package/src/elements/core/AutoComplete.tsx +0 -18
  73. package/src/elements/core/Button.tsx +0 -18
  74. package/src/elements/core/Option.tsx +0 -18
  75. package/src/elements/core/Select.tsx +0 -18
  76. package/src/elements/core/Switch.tsx +0 -18
  77. package/src/elements/grid/ElGrid.tsx +0 -50
  78. package/src/elements/grid/ElGridBotom.tsx +0 -21
  79. package/src/elements/grid/ElGridCheck.tsx +0 -67
  80. package/src/elements/grid/ElGridColumn.tsx +0 -32
  81. package/src/elements/grid/ElGridFilter.tsx +0 -5
  82. package/src/elements/grid/ElGridPaginator.tsx +0 -82
  83. package/src/elements/grid/ElGridRow.tsx +0 -123
  84. package/src/elements/grid/ElGridTop.tsx +0 -45
  85. package/src/elements/grid/ElLabel.tsx +0 -50
  86. package/src/elements/grid/ElRepeat.tsx +0 -24
  87. package/src/elements/grid/ElRepeatRow.tsx +0 -40
@@ -0,0 +1,102 @@
1
+ import React, { useState } from 'react';
2
+ import { ChildType, Utils } from 'react-crud-utils';
3
+ import { StyleSheet, Text, TouchableHighlight, View } from 'react-native';
4
+ import UIListRow from './UIListRow';
5
+
6
+ export default function UIToggle(props: ChildType) {
7
+ const scope = props.scope;
8
+ const options = Utils.nvl(scope.getOptions(), []);
9
+ const value = scope.getInputValue();
10
+
11
+ let [index, setIndex] = useState(0);
12
+
13
+ const isSelected = (item: any) => {
14
+ return item?.value === value;
15
+ };
16
+
17
+ const onClick = (item: any) => {
18
+ scope.changeValue(item.object);
19
+ setIndex(++index);
20
+ };
21
+
22
+ const Item = ({ item, index }) => {
23
+ let selected = isSelected(item);
24
+ let style: any = { ...styles.text };
25
+
26
+ if (selected) style.color = '#ffffff';
27
+
28
+ if (Utils.isEmpty(props.children)) {
29
+ return <Text style={style}>{item.label}</Text>;
30
+ }
31
+
32
+ return (
33
+ <UIListRow scope={scope} item={item.object} index={index}>
34
+ {props.children}
35
+ </UIListRow>
36
+ );
37
+ };
38
+
39
+ const getItemStyle = (item: any) => {
40
+ let style = { ...styles.item, ...scope.getStyle('item') };
41
+
42
+ let wPart = 100 / options.length;
43
+ let width = Math.floor(wPart) + '%';
44
+
45
+ if (isSelected(item)) {
46
+ let selectedColor = scope.getPart('selectedColor', undefined, 'primary');
47
+ let st = scope.getStyle('selected', {
48
+ backgroundColor: selectedColor,
49
+ color: '#ffffff',
50
+ });
51
+
52
+ style = { ...style, ...st };
53
+
54
+ if (!style.color) {
55
+ style.color = '#ffffff';
56
+ }
57
+ }
58
+
59
+ style.width = width;
60
+
61
+ return style;
62
+ };
63
+
64
+ return (
65
+ <>
66
+ {options.map((item: any, i: number) => (
67
+ <TouchableHighlight
68
+ key={`k-${i}`}
69
+ style={getItemStyle(item)}
70
+ onPress={e => {
71
+ onClick(item);
72
+ }}
73
+ >
74
+ <Item item={item} index={i} />
75
+ </TouchableHighlight>
76
+ ))}
77
+ </>
78
+ );
79
+ }
80
+
81
+ const styles = StyleSheet.create({
82
+ container: {
83
+ flex: 1,
84
+ width: '100%',
85
+ gap: 10,
86
+ justifyContent: 'center',
87
+ flexDirection: 'row',
88
+ },
89
+ item: {
90
+ padding: 10,
91
+ marginVertical: 8,
92
+ backgroundColor: 'background',
93
+ borderRadius: 8,
94
+ justifyContent: 'center',
95
+ width: 'auto',
96
+ flexDirection: 'row',
97
+ },
98
+ text: {
99
+ fontSize: 15,
100
+ fontWeight: '500',
101
+ },
102
+ });
@@ -0,0 +1,94 @@
1
+ import { ScrollView, StyleSheet, Text, View } from 'react-native';
2
+
3
+ import UIChildren from '../UIChildren';
4
+ import {
5
+ ChildType,
6
+ ComponentUtils,
7
+ HtmlUtils,
8
+ Utils,
9
+ ViewUtils,
10
+ } from 'react-crud-utils';
11
+ import { useEffect, useRef } from 'react';
12
+ import UIToast from './UIToast';
13
+ import MobileUtils from '../../utils/MobileUtils';
14
+
15
+ export default function UIView({ scope, children }: ChildType) {
16
+ const theme = scope.getTheme();
17
+ const header = scope.getPart('header', null, []);
18
+ const headerStyle = Utils.nvl(theme.styles?.defaults?.header, {});
19
+ const headerTextStyle = Utils.nvl(theme.styles?.defaults?.headerText, {});
20
+ const scrollRef = useRef(null);
21
+
22
+ useEffect(() => {
23
+ MobileUtils.syncTheme();
24
+ }, []);
25
+
26
+ const onScroll = () => {
27
+ const crud = ViewUtils.getCrud();
28
+
29
+ Utils.each(crud.scroll, s => {
30
+ if (s.onScroll) {
31
+ s.onScroll.call(s);
32
+ }
33
+ });
34
+ };
35
+
36
+ let headerStyleFull = Utils.call(() => {
37
+ let css = scope.getStyle('header', headerStyle);
38
+ let bg = css.backgroundColor;
39
+
40
+ if (bg) {
41
+ css.color = HtmlUtils.getTextColor(bg);
42
+ }
43
+ return css;
44
+ });
45
+
46
+ let hasHeader = !Utils.isEmpty(header);
47
+ let AuxHeader = () => {
48
+ if (typeof header === 'string') {
49
+ return <Text style={headerTextStyle}>{header}</Text>;
50
+ }
51
+ return <>{header}</>;
52
+ };
53
+
54
+ scope.put('scrollRef', scrollRef);
55
+
56
+ ComponentUtils.setViewScope(scope);
57
+
58
+ return (
59
+ <>
60
+ {hasHeader && (
61
+ <View style={headerStyleFull}>
62
+ <AuxHeader />
63
+ </View>
64
+ )}
65
+ <View style={scope.getStyle('container', styles.container)}>
66
+ <ScrollView
67
+ onScroll={onScroll}
68
+ scrollEventThrottle={16}
69
+ ref={scrollRef}
70
+ nestedScrollEnabled={true}
71
+ keyboardShouldPersistTaps="handled"
72
+ contentContainerStyle={scope.getStyle('contentContainer', {
73
+ paddingBottom: 50,
74
+ })}
75
+ style={scope.getStyle('scroll', styles.scroll)}
76
+ >
77
+ <UIChildren scope={scope}>{children}</UIChildren>
78
+ </ScrollView>
79
+ </View>
80
+ <UIToast /> {/* <- este componente precisa estar aqui */}
81
+ </>
82
+ );
83
+ }
84
+
85
+ const styles = StyleSheet.create({
86
+ scroll: {
87
+ paddingTop: 10,
88
+ paddingBottom: 10,
89
+ paddingLeft: 15,
90
+ paddingRight: 15,
91
+ },
92
+ container: {},
93
+ view: {},
94
+ });
File without changes
@@ -1 +1 @@
1
- export { default as UI } from "./UI";
1
+ export { default as UI } from "./UI";
@@ -1,178 +1,178 @@
1
- import React, { useState, useEffect } from 'react';
2
- import UIChildren from '../UIChildren';
3
- import UI from '../UI';
4
-
5
- import Ionicons from '@expo/vector-icons/Ionicons';
6
- import { ChildType, CrudUtils, Utils } from 'react-crud-utils';
7
-
8
- export default function ElTabs(props: ChildType) {
9
- let scope = props.scope;
10
- let [selectedIndex, setSelectedIndex]: any = useState(0);
11
- let element = scope.original;
12
- let items = scope.getItems();
13
- let counter = 0;
14
-
15
- let tabs: any = [];
16
- let [selected, setSelected]: any = useState(null);
17
-
18
- const onChangeTab = (tab: any, validate = true) => {
19
- if (tab) {
20
- scope.execute({
21
- event: {
22
- validate,
23
- validateScope: element.validateScope,
24
- action: () => {
25
- scope.changeValue(tab.data);
26
-
27
- selected = tab;
28
- selectedIndex = tab.index;
29
-
30
- setSelectedIndex(selectedIndex);
31
- setSelected(tab);
32
- },
33
- },
34
- });
35
- }
36
- };
37
-
38
- const getStyleClass = (t: any) => {
39
- let s = 'ui-tabs-item ui-click';
40
-
41
- if (selected?.index === t.index) {
42
- s = s + ' ui-tab-selected';
43
- }
44
- return s;
45
- };
46
-
47
- const addTab = (child: any, item: any) => {
48
- let original = { ...child.props };
49
-
50
- if (!item) {
51
- item = scope.crud.data;
52
- }
53
-
54
- let crudTab = CrudUtils.create('tabs', {
55
- data: item,
56
- changed: item,
57
- parent: scope.crud,
58
- });
59
-
60
- let element = Utils.resolve(original, crudTab);
61
-
62
- if (element.rendered === false) {
63
- return;
64
- }
65
-
66
- tabs.push({
67
- ...element,
68
- child,
69
- element,
70
- original,
71
- index: counter++,
72
- data: item,
73
- });
74
- };
75
-
76
- React.Children.map(props.children, (child, index) => {
77
- if (Utils.isEmpty(items)) {
78
- addTab(child, {});
79
- } else {
80
- for (const i in items) {
81
- let o = items[i];
82
-
83
- addTab(child, o);
84
- }
85
- }
86
- });
87
-
88
- if (!selected) {
89
- onChangeTab(tabs[selectedIndex], false);
90
- }
91
-
92
- const nav = (i: any) => {
93
- let t = tabs[selectedIndex + i];
94
-
95
- onChangeTab(t);
96
- };
97
-
98
- const previous = () => {
99
- nav(-1);
100
- };
101
-
102
- const next = () => {
103
- nav(1);
104
- };
105
-
106
- let isStepper = element.layout === 'stepper';
107
-
108
- return (
109
- <div
110
- className={scope.getStyleClass('inner')}
111
- style={scope.getStyle('inner')}
112
- >
113
- <div className="ui-tabs-content">
114
- <div className="ui-tabs-items">
115
- {tabs.map((t: any, i: number) => (
116
- <div
117
- key={Utils.key(element.id, 'tab', i)}
118
- className={getStyleClass(t)}
119
- onClick={() => {
120
- onChangeTab(t);
121
- }}
122
- >
123
- {isStepper && <div className="ui-tab-item-divisor" />}
124
- <div className="ui-tab-item-inner">
125
- {isStepper && <div className="ui-step-line" />}
126
- <div className="ui-tab-item-label">
127
- {isStepper ? t.index + 1 : t.label}
128
- </div>
129
- </div>
130
- </div>
131
- ))}
132
- </div>
133
- {selected && (
134
- <>
135
- {isStepper && <div className="ui-tabs-label">{selected.label}</div>}
136
- <div className="ui-tabs-area">
137
- <UIChildren {...props} scope={scope}>
138
- {selected.child}
139
- </UIChildren>
140
- </div>
141
- {element.layout === 'stepper' && (
142
- <div className="ui-tabs-actions">
143
- <UI.Output space={6} layout="left">
144
- <UI.Include
145
- {...props}
146
- transient
147
- name="left"
148
- default={
149
- <UI.Button
150
- rendered={selectedIndex > 0}
151
- icon={<Ionicons />}
152
- click={previous}
153
- />
154
- }
155
- />
156
- </UI.Output>
157
- <UI.Output space={6} layout="right">
158
- <UI.Include
159
- {...props}
160
- transient
161
- name="right"
162
- default={
163
- <UI.Button
164
- rendered={selectedIndex < tabs.length - 1}
165
- icon={<Ionicons />}
166
- click={next}
167
- />
168
- }
169
- />
170
- </UI.Output>
171
- </div>
172
- )}
173
- </>
174
- )}
175
- </div>
176
- </div>
177
- );
178
- }
1
+ import React, { useState, useEffect } from 'react';
2
+ import UIChildren from '../UIChildren';
3
+ import UI from '../UI';
4
+
5
+ import Ionicons from '@expo/vector-icons/Ionicons';
6
+ import { ChildType, CrudUtils, Utils } from 'react-crud-utils';
7
+
8
+ export default function ElTabs(props: ChildType) {
9
+ let scope = props.scope;
10
+ let [selectedIndex, setSelectedIndex]: any = useState(0);
11
+ let element = scope.original;
12
+ let items = scope.getItems();
13
+ let counter = 0;
14
+
15
+ let tabs: any = [];
16
+ let [selected, setSelected]: any = useState(null);
17
+
18
+ const onChangeTab = (tab: any, validate = true) => {
19
+ if (tab) {
20
+ scope.execute({
21
+ event: {
22
+ validate,
23
+ validateScope: element.validateScope,
24
+ action: () => {
25
+ scope.changeValue(tab.data);
26
+
27
+ selected = tab;
28
+ selectedIndex = tab.index;
29
+
30
+ setSelectedIndex(selectedIndex);
31
+ setSelected(tab);
32
+ },
33
+ },
34
+ });
35
+ }
36
+ };
37
+
38
+ const getStyleClass = (t: any) => {
39
+ let s = 'ui-tabs-item ui-click';
40
+
41
+ if (selected?.index === t.index) {
42
+ s = s + ' ui-tab-selected';
43
+ }
44
+ return s;
45
+ };
46
+
47
+ const addTab = (child: any, item: any) => {
48
+ let original = { ...child.props };
49
+
50
+ if (!item) {
51
+ item = scope.crud.data;
52
+ }
53
+
54
+ let crudTab = CrudUtils.create('tabs', {
55
+ data: item,
56
+ changed: item,
57
+ parent: scope.crud,
58
+ });
59
+
60
+ let element = Utils.resolve(original, crudTab);
61
+
62
+ if (element.rendered === false) {
63
+ return;
64
+ }
65
+
66
+ tabs.push({
67
+ ...element,
68
+ child,
69
+ element,
70
+ original,
71
+ index: counter++,
72
+ data: item,
73
+ });
74
+ };
75
+
76
+ React.Children.map(props.children, (child, index) => {
77
+ if (Utils.isEmpty(items)) {
78
+ addTab(child, {});
79
+ } else {
80
+ for (const i in items) {
81
+ let o = items[i];
82
+
83
+ addTab(child, o);
84
+ }
85
+ }
86
+ });
87
+
88
+ if (!selected) {
89
+ onChangeTab(tabs[selectedIndex], false);
90
+ }
91
+
92
+ const nav = (i: any) => {
93
+ let t = tabs[selectedIndex + i];
94
+
95
+ onChangeTab(t);
96
+ };
97
+
98
+ const previous = () => {
99
+ nav(-1);
100
+ };
101
+
102
+ const next = () => {
103
+ nav(1);
104
+ };
105
+
106
+ let isStepper = element.layout === 'stepper';
107
+
108
+ return (
109
+ <div
110
+ className={scope.getStyleClass('inner')}
111
+ style={scope.getStyle('inner')}
112
+ >
113
+ <div className="ui-tabs-content">
114
+ <div className="ui-tabs-items">
115
+ {tabs.map((t: any, i: number) => (
116
+ <div
117
+ key={Utils.key(element.id, 'tab', i)}
118
+ className={getStyleClass(t)}
119
+ onClick={() => {
120
+ onChangeTab(t);
121
+ }}
122
+ >
123
+ {isStepper && <div className="ui-tab-item-divisor" />}
124
+ <div className="ui-tab-item-inner">
125
+ {isStepper && <div className="ui-step-line" />}
126
+ <div className="ui-tab-item-label">
127
+ {isStepper ? t.index + 1 : t.label}
128
+ </div>
129
+ </div>
130
+ </div>
131
+ ))}
132
+ </div>
133
+ {selected && (
134
+ <>
135
+ {isStepper && <div className="ui-tabs-label">{selected.label}</div>}
136
+ <div className="ui-tabs-area">
137
+ <UIChildren {...props} scope={scope}>
138
+ {selected.child}
139
+ </UIChildren>
140
+ </div>
141
+ {element.layout === 'stepper' && (
142
+ <div className="ui-tabs-actions">
143
+ <UI.Output space={6} layout="left">
144
+ <UI.Include
145
+ {...props}
146
+ transient
147
+ name="left"
148
+ default={
149
+ <UI.Button
150
+ rendered={selectedIndex > 0}
151
+ icon={<Ionicons />}
152
+ click={previous}
153
+ />
154
+ }
155
+ />
156
+ </UI.Output>
157
+ <UI.Output space={6} layout="right">
158
+ <UI.Include
159
+ {...props}
160
+ transient
161
+ name="right"
162
+ default={
163
+ <UI.Button
164
+ rendered={selectedIndex < tabs.length - 1}
165
+ icon={<Ionicons />}
166
+ click={next}
167
+ />
168
+ }
169
+ />
170
+ </UI.Output>
171
+ </div>
172
+ )}
173
+ </>
174
+ )}
175
+ </div>
176
+ </div>
177
+ );
178
+ }
@@ -0,0 +1,39 @@
1
+ import { useEffect, useState } from 'react';
2
+ import { Scope } from 'react-crud-utils';
3
+ import { Dimensions, Platform } from 'react-native';
4
+
5
+ export function useIsVisible(ref: any, scope: Scope) {
6
+ const [isVisible, setIsVisible] = useState(scope.visible === true);
7
+
8
+ useEffect(() => {
9
+ const checkVisibility = () => {
10
+ if (!ref.current || isVisible || !scope.original?.useIsInView) return;
11
+
12
+ if (Platform.OS === 'web') {
13
+ const rect = ref.current.getBoundingClientRect?.();
14
+
15
+ if (rect && typeof window !== 'undefined') {
16
+ const windowHeight = window.innerHeight;
17
+ const visible = rect.top < windowHeight && rect.bottom > 0;
18
+
19
+ if (visible) scope.visible = visible;
20
+
21
+ setIsVisible(visible);
22
+ }
23
+ } else {
24
+ ref.current.measureInWindow?.((x, y, width, height) => {
25
+ const windowHeight = Dimensions.get('window').height;
26
+ const visible = y < windowHeight && y + height > 0;
27
+
28
+ if (visible) scope.visible = visible;
29
+ setIsVisible(visible);
30
+ });
31
+ }
32
+ };
33
+
34
+ const interval = setInterval(checkVisibility, 300); // roda a cada 300ms
35
+ return () => clearInterval(interval);
36
+ }, [ref]);
37
+
38
+ return isVisible;
39
+ }
package/src/index.ts CHANGED
@@ -1 +1 @@
1
- export * from "./elements";
1
+ export * from './elements';
@@ -0,0 +1,12 @@
1
+ //import { ThemeUtils, Utils } from 'react-crud-utils';
2
+ //import { StatusBar } from 'react-native';
3
+
4
+ export default class MobileUtils {
5
+ static syncTheme() {
6
+ // let current = ThemeUtils.getCurrentTheme();
7
+ //let dec: any = { light: 'light-content', dark: 'dark-content' };
8
+ //let name = Utils.nvl(dec[current?.theme], dec.light);
9
+ //StatusBar.setBarStyle?.(name);
10
+ //StatusBar.setBackgroundColor?.(current?.colors?.theme);
11
+ }
12
+ }
@@ -1,26 +0,0 @@
1
- import React from 'react';
2
- import UIChildren from '../UIChildren';
3
- import ElLabel from '../grid/ElLabel';
4
- import ElInclude from '../grid/ElInclude';
5
- import { ChildType } from 'react-crud-utils';
6
-
7
- export default function ElCard(props: ChildType) {
8
- let scope = props.scope;
9
-
10
- return (
11
- <div
12
- className={scope.getStyleClass('inner')}
13
- style={scope.getStyle('inner')}
14
- >
15
- <ElLabel {...props} scope={scope}></ElLabel>
16
- <UIChildren {...props} scope={scope} />
17
-
18
- <div
19
- className={scope.getStyleClass('bottom')}
20
- style={scope.getStyle('bottom')}
21
- >
22
- <ElInclude {...props} scope={scope} name="bottom" />
23
- </div>
24
- </div>
25
- );
26
- }
@@ -1,18 +0,0 @@
1
- import React from 'react';
2
- import { Text, TouchableOpacity, Linking, StyleSheet } from 'react-native';
3
-
4
- export default function AutoComplete(props: any) {
5
- const handlePress = () => {
6
- Linking.openURL('https://reactnative.dev/');
7
- };
8
-
9
- return (
10
- <TouchableOpacity onPress={handlePress}>
11
- <Text style={styles.link}>Clique aqui para acessar o React Native</Text>
12
- </TouchableOpacity>
13
- );
14
- }
15
-
16
- const styles = {
17
- link: {},
18
- };
@@ -1,18 +0,0 @@
1
- import React from 'react';
2
- import { Text, TouchableOpacity, Linking, StyleSheet } from 'react-native';
3
-
4
- export default function Button(props: any) {
5
- const handlePress = () => {
6
- Linking.openURL('https://reactnative.dev/');
7
- };
8
-
9
- return (
10
- <TouchableOpacity onPress={handlePress}>
11
- <Text style={styles.link}>Clique aqui para acessar o React Native</Text>
12
- </TouchableOpacity>
13
- );
14
- }
15
-
16
- const styles = {
17
- link: {},
18
- };