sapo-components-ui-rn 1.0.41 → 1.0.43
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/dist/components/View/index.d.ts +5 -1
- package/dist/index.esm.js +55 -33
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +55 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Checkbox/index.tsx +1 -1
- package/src/components/Tag/index.tsx +57 -55
- package/src/components/TextInput/TextInputDefault.tsx +20 -6
- package/src/components/View/index.tsx +24 -0
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/TextInput/.DS_Store +0 -0
|
@@ -23,6 +23,10 @@ interface ViewProps {
|
|
|
23
23
|
paddingLeft?: number;
|
|
24
24
|
paddingRight?: number;
|
|
25
25
|
paddingTop?: number;
|
|
26
|
+
marginTop?: number;
|
|
27
|
+
marginBottom?: number;
|
|
28
|
+
marginLeft?: number;
|
|
29
|
+
marginRight?: number;
|
|
26
30
|
style?: StyleProp<ViewStyle>;
|
|
27
31
|
children?: React.ReactNode;
|
|
28
32
|
alignEnd?: boolean;
|
|
@@ -33,5 +37,5 @@ interface ViewProps {
|
|
|
33
37
|
borderWidth?: number;
|
|
34
38
|
borderColor?: string;
|
|
35
39
|
}
|
|
36
|
-
declare const _default: React.MemoExoticComponent<({ row, full, justifyCenter, justifyBetween, alignCenter, center, color, backgroundColor, width, height, padding, paddingHorizontal, paddingVertical, marginHorizontal, marginVertical, paddingLeft, paddingRight, paddingTop, alignEnd, wrap, borderBottomWidth, borderBottomColor, borderRadius, borderWidth, borderColor, style, onPress, activeOpacity, children, disabled, }: ViewProps) => React.JSX.Element>;
|
|
40
|
+
declare const _default: React.MemoExoticComponent<({ row, full, justifyCenter, justifyBetween, alignCenter, center, color, backgroundColor, width, height, padding, paddingHorizontal, paddingVertical, marginHorizontal, marginVertical, paddingLeft, paddingRight, paddingTop, alignEnd, wrap, borderBottomWidth, borderBottomColor, borderRadius, borderWidth, borderColor, style, onPress, activeOpacity, children, disabled, paddingBottom, marginTop, marginBottom, marginLeft, marginRight, }: ViewProps) => React.JSX.Element>;
|
|
37
41
|
export default _default;
|
package/dist/index.esm.js
CHANGED
|
@@ -1920,7 +1920,7 @@ var styles$h = StyleSheet.create({
|
|
|
1920
1920
|
});
|
|
1921
1921
|
|
|
1922
1922
|
var ViewCustom = function (_a) {
|
|
1923
|
-
var row = _a.row, full = _a.full, justifyCenter = _a.justifyCenter, justifyBetween = _a.justifyBetween, alignCenter = _a.alignCenter, center = _a.center, color = _a.color, backgroundColor = _a.backgroundColor, width = _a.width, height = _a.height, padding = _a.padding, paddingHorizontal = _a.paddingHorizontal, paddingVertical = _a.paddingVertical, marginHorizontal = _a.marginHorizontal, marginVertical = _a.marginVertical, paddingLeft = _a.paddingLeft, paddingRight = _a.paddingRight, paddingTop = _a.paddingTop, alignEnd = _a.alignEnd, wrap = _a.wrap, borderBottomWidth = _a.borderBottomWidth, borderBottomColor = _a.borderBottomColor, borderRadius = _a.borderRadius, borderWidth = _a.borderWidth, borderColor = _a.borderColor, style = _a.style, onPress = _a.onPress, _b = _a.activeOpacity, activeOpacity = _b === void 0 ? 0.8 : _b, children = _a.children, disabled = _a.disabled;
|
|
1923
|
+
var row = _a.row, full = _a.full, justifyCenter = _a.justifyCenter, justifyBetween = _a.justifyBetween, alignCenter = _a.alignCenter, center = _a.center, color = _a.color, backgroundColor = _a.backgroundColor, width = _a.width, height = _a.height, padding = _a.padding, paddingHorizontal = _a.paddingHorizontal, paddingVertical = _a.paddingVertical, marginHorizontal = _a.marginHorizontal, marginVertical = _a.marginVertical, paddingLeft = _a.paddingLeft, paddingRight = _a.paddingRight, paddingTop = _a.paddingTop, alignEnd = _a.alignEnd, wrap = _a.wrap, borderBottomWidth = _a.borderBottomWidth, borderBottomColor = _a.borderBottomColor, borderRadius = _a.borderRadius, borderWidth = _a.borderWidth, borderColor = _a.borderColor, style = _a.style, onPress = _a.onPress, _b = _a.activeOpacity, activeOpacity = _b === void 0 ? 0.8 : _b, children = _a.children, disabled = _a.disabled, paddingBottom = _a.paddingBottom, marginTop = _a.marginTop, marginBottom = _a.marginBottom, marginLeft = _a.marginLeft, marginRight = _a.marginRight;
|
|
1924
1924
|
var getStyle = function () {
|
|
1925
1925
|
var styleCustom = {};
|
|
1926
1926
|
if (row) {
|
|
@@ -1975,6 +1975,21 @@ var ViewCustom = function (_a) {
|
|
|
1975
1975
|
if (paddingTop) {
|
|
1976
1976
|
styleCustom.paddingTop = paddingTop;
|
|
1977
1977
|
}
|
|
1978
|
+
if (paddingBottom) {
|
|
1979
|
+
styleCustom.paddingBottom = paddingBottom;
|
|
1980
|
+
}
|
|
1981
|
+
if (marginLeft) {
|
|
1982
|
+
styleCustom.marginLeft = marginLeft;
|
|
1983
|
+
}
|
|
1984
|
+
if (marginRight) {
|
|
1985
|
+
styleCustom.marginRight = marginRight;
|
|
1986
|
+
}
|
|
1987
|
+
if (marginTop) {
|
|
1988
|
+
styleCustom.marginTop = marginTop;
|
|
1989
|
+
}
|
|
1990
|
+
if (marginBottom) {
|
|
1991
|
+
styleCustom.marginBottom = marginBottom;
|
|
1992
|
+
}
|
|
1978
1993
|
if (paddingRight) {
|
|
1979
1994
|
styleCustom.paddingRight = paddingRight;
|
|
1980
1995
|
}
|
|
@@ -5551,7 +5566,7 @@ var TextInputDefault = function (_a) {
|
|
|
5551
5566
|
var _c = _a.disabled, disabled = _c === void 0 ? false : _c, _d = _a.editable, editable = _d === void 0 ? true : _d, label = _a.label, _e = _a.error, error = _e === void 0 ? false : _e, customSelectionColor = _a.selectionColor, cursorColor = _a.cursorColor, customOutlineColor = _a.outlineColor, activeOutlineColor = _a.activeOutlineColor; _a.outlineStyle; var textColor = _a.textColor; _a.dense; var style = _a.style, theme = _a.theme, _f = _a.render, render = _f === void 0 ? function (props) { return React$3.createElement(TextInput$1, __assign({}, props)); } : _f, _g = _a.multiline, multiline = _g === void 0 ? false : _g, parentState = _a.parentState, innerRef = _a.innerRef, onFocus = _a.onFocus; _a.forceFocus; var onBlur = _a.onBlur, onChangeText = _a.onChangeText; _a.onLayout; var left = _a.left, right = _a.right, placeholderTextColor = _a.placeholderTextColor, _h = _a.clearButton, clearButton = _h === void 0 ? false : _h, contentStyle = _a.contentStyle, _j = _a.value, value = _j === void 0 ? "" : _j, rest = __rest(_a, ["disabled", "editable", "label", "error", "selectionColor", "cursorColor", "outlineColor", "activeOutlineColor", "outlineStyle", "textColor", "dense", "style", "theme", "render", "multiline", "parentState", "innerRef", "onFocus", "forceFocus", "onBlur", "onChangeText", "onLayout", "left", "right", "placeholderTextColor", "clearButton", "contentStyle", "value"]);
|
|
5552
5567
|
var colors = theme.colors;
|
|
5553
5568
|
var font = theme.fonts.bodyLarge;
|
|
5554
|
-
var _k = (StyleSheet.flatten(style) || {}), fontSizeStyle = _k.fontSize, fontWeight = _k.fontWeight, lineHeightStyle = _k.lineHeight, height = _k.height, _l = _k.backgroundColor; _l === void 0 ? colors === null || colors === void 0 ? void 0 : colors.backgroundPrimary : _l; var textAlign = _k.textAlign
|
|
5569
|
+
var _k = (StyleSheet.flatten(style) || {}), fontSizeStyle = _k.fontSize, fontWeight = _k.fontWeight, lineHeightStyle = _k.lineHeight, height = _k.height, _l = _k.backgroundColor; _l === void 0 ? colors === null || colors === void 0 ? void 0 : colors.backgroundPrimary : _l; var textAlign = _k.textAlign; _k.minHeight; var viewStyle = __rest(_k, ["fontSize", "fontWeight", "lineHeight", "height", "backgroundColor", "textAlign", "minHeight"]);
|
|
5555
5570
|
var fontSize = fontSizeStyle || MAXIMIZED_LABEL_FONT_SIZE;
|
|
5556
5571
|
var lineHeight = lineHeightStyle || (Platform.OS === "web" ? fontSize * 1.2 : undefined);
|
|
5557
5572
|
var _m = getOutlinedInputColors({
|
|
@@ -5611,7 +5626,10 @@ var TextInputDefault = function (_a) {
|
|
|
5611
5626
|
return React$3.createElement(View, null);
|
|
5612
5627
|
};
|
|
5613
5628
|
return (React$3.createElement(View, { style: viewStyle },
|
|
5614
|
-
React$3.createElement(View, { row: true,
|
|
5629
|
+
React$3.createElement(View, { row: true,
|
|
5630
|
+
// full
|
|
5631
|
+
// alignCenter
|
|
5632
|
+
justifyCenter: true, style: [
|
|
5615
5633
|
{
|
|
5616
5634
|
borderRadius: CONSTANTS.BORDER_RADIUS_6,
|
|
5617
5635
|
borderWidth: 1,
|
|
@@ -5623,11 +5641,14 @@ var TextInputDefault = function (_a) {
|
|
|
5623
5641
|
},
|
|
5624
5642
|
contentStyle,
|
|
5625
5643
|
] },
|
|
5626
|
-
React$3.createElement(View, { paddingLeft: CONSTANTS.SPACE_12 }, left),
|
|
5644
|
+
React$3.createElement(View, { center: true, paddingLeft: CONSTANTS.SPACE_12 }, left),
|
|
5627
5645
|
left && React$3.createElement(Spacer, { width: CONSTANTS.SPACE_8 }),
|
|
5628
|
-
React$3.createElement(View, { full: true, style:
|
|
5629
|
-
|
|
5630
|
-
|
|
5646
|
+
React$3.createElement(View, { full: true, style: [
|
|
5647
|
+
{
|
|
5648
|
+
height: height || 48,
|
|
5649
|
+
minHeight: height || 48,
|
|
5650
|
+
},
|
|
5651
|
+
] },
|
|
5631
5652
|
multiline && renderLabel(), render === null || render === void 0 ? void 0 :
|
|
5632
5653
|
render(__assign(__assign({}, rest), { ref: innerRef, onChangeText: handleChangeText, value: inputValue, placeholder: ((_b = parentState.value) === null || _b === void 0 ? void 0 : _b.toString()) == ""
|
|
5633
5654
|
? parentState.focused
|
|
@@ -5643,13 +5664,13 @@ var TextInputDefault = function (_a) {
|
|
|
5643
5664
|
? multiline
|
|
5644
5665
|
? CONSTANTS.SPACE_2
|
|
5645
5666
|
: CONSTANTS.SPACE_8
|
|
5646
|
-
: CONSTANTS.SPACE_4 }),
|
|
5667
|
+
: CONSTANTS.SPACE_4, paddingBottom: multiline ? CONSTANTS.SPACE_4 : 0 }),
|
|
5647
5668
|
contentStyle,
|
|
5648
5669
|
] }))),
|
|
5649
5670
|
!disabled && clearButton && inputValue ? (React$3.createElement(TouchableOpacity, { onPress: handleClear, style: multiline ? styles$b.clearButtonMultiline : styles$b.clearButton },
|
|
5650
5671
|
React$3.createElement(Icon$1, { name: "IconClearText", type: "Svg", size: 24 }))) : (React$3.createElement(Spacer, { width: CONSTANTS.SPACE_12 })),
|
|
5651
5672
|
right && React$3.createElement(Spacer, { width: CONSTANTS.SPACE_8 }),
|
|
5652
|
-
right && React$3.createElement(View, { paddingRight: CONSTANTS.SPACE_12 }, right))));
|
|
5673
|
+
right && (React$3.createElement(View, { center: true, paddingRight: CONSTANTS.SPACE_12 }, right)))));
|
|
5653
5674
|
};
|
|
5654
5675
|
var styles$b = StyleSheet.create({
|
|
5655
5676
|
input: {
|
|
@@ -6642,7 +6663,7 @@ var Checkbox = function (_a) {
|
|
|
6642
6663
|
var _f = useState(checked), isActive = _f[0], setActive = _f[1];
|
|
6643
6664
|
var checkboxColor = useCheckboxColor(isActive, disabled);
|
|
6644
6665
|
var handlePressChipBar = useCallback(function () {
|
|
6645
|
-
setActive(!isActive);
|
|
6666
|
+
// setActive(!isActive);
|
|
6646
6667
|
onPress === null || onPress === void 0 ? void 0 : onPress();
|
|
6647
6668
|
}, [isActive, onPress]);
|
|
6648
6669
|
useEffect(function () {
|
|
@@ -6846,29 +6867,30 @@ var Tag = function (_a) {
|
|
|
6846
6867
|
useEffect(function () {
|
|
6847
6868
|
setActive(isActive);
|
|
6848
6869
|
}, [isActive]);
|
|
6849
|
-
return (React__default.createElement(View, { row: true
|
|
6850
|
-
|
|
6851
|
-
|
|
6852
|
-
|
|
6853
|
-
|
|
6854
|
-
|
|
6855
|
-
|
|
6856
|
-
|
|
6857
|
-
|
|
6858
|
-
|
|
6859
|
-
|
|
6860
|
-
React__default.createElement(
|
|
6861
|
-
|
|
6862
|
-
|
|
6863
|
-
|
|
6864
|
-
|
|
6865
|
-
|
|
6866
|
-
|
|
6867
|
-
|
|
6868
|
-
|
|
6869
|
-
|
|
6870
|
-
|
|
6871
|
-
React__default.createElement(
|
|
6870
|
+
return (React__default.createElement(View, { row: true },
|
|
6871
|
+
React__default.createElement(View, { row: true, height: height, disabled: disabled, paddingHorizontal: CONSTANTS.SPACE_12, paddingVertical: CONSTANTS.SPACE_8, borderRadius: borderRadius, center: true, style: [
|
|
6872
|
+
disabled && {
|
|
6873
|
+
backgroundColor: colors.surfaceSecondaryDefault,
|
|
6874
|
+
borderColor: colors.surfaceSecondaryDefault,
|
|
6875
|
+
},
|
|
6876
|
+
style,
|
|
6877
|
+
], onPress: handlePressTag, backgroundColor: active
|
|
6878
|
+
? colors.surfaceBrandInversePressed
|
|
6879
|
+
: colors.surfaceBrandInverseDefault },
|
|
6880
|
+
leftIcon && React__default.createElement(View, { paddingRight: CONSTANTS.SPACE_4 }, leftIcon),
|
|
6881
|
+
React__default.createElement(View, null,
|
|
6882
|
+
React__default.createElement(Text$1, { size: 14, numberOfLines: numberOfLines, ellipsizeMode: ellipsizeMode, style: [
|
|
6883
|
+
styles.textMedium,
|
|
6884
|
+
{
|
|
6885
|
+
lineHeight: 16,
|
|
6886
|
+
},
|
|
6887
|
+
disabled && {
|
|
6888
|
+
color: colors.textSecondary,
|
|
6889
|
+
},
|
|
6890
|
+
textStyle,
|
|
6891
|
+
] }, title)),
|
|
6892
|
+
rightIcon ? (React__default.createElement(View, { paddingLeft: CONSTANTS.SPACE_4 }, rightIcon)) : hideRightIcon ? (React__default.createElement(View, null)) : (React__default.createElement(View, { paddingLeft: CONSTANTS.SPACE_4 },
|
|
6893
|
+
React__default.createElement(Icon$1, { name: "IconClose", type: "Svg", size: 20, color: colors.iconBrandDefault }))))));
|
|
6872
6894
|
};
|
|
6873
6895
|
var styles = StyleSheet.create(__assign({}, containerStyles));
|
|
6874
6896
|
|