@pagopa/io-app-design-system 5.12.1 → 6.0.0-0
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/banner/__test__/__snapshots__/banner.test.tsx.snap +68 -2
- package/lib/commonjs/components/buttons/IOButton/__test__/__snapshots__/IOButton.test.tsx.snap +285 -9
- package/lib/commonjs/components/buttons/__test__/__snapshots__/button.test.tsx.snap +700 -33
- package/lib/commonjs/components/claimsSelector/ClaimsSelector.js +41 -23
- package/lib/commonjs/components/claimsSelector/ClaimsSelector.js.map +1 -1
- package/lib/commonjs/components/claimsSelector/__test__/__snapshots__/ClaimsSelector.test.tsx.snap +554 -188
- package/lib/commonjs/components/headers/HeaderFirstLevel.js +1 -1
- package/lib/commonjs/components/headers/HeaderFirstLevel.js.map +1 -1
- package/lib/commonjs/components/headers/HeaderSecondLevel.js +3 -2
- package/lib/commonjs/components/headers/HeaderSecondLevel.js.map +1 -1
- package/lib/commonjs/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +925 -41
- package/lib/commonjs/components/loadingSpinner/LoadingSpinner.js +14 -18
- package/lib/commonjs/components/loadingSpinner/LoadingSpinner.js.map +1 -1
- package/lib/commonjs/components/modules/__test__/__snapshots__/ModuleNavigationAlt.test.tsx.snap +304 -8
- package/lib/commonjs/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +430 -32
- package/lib/commonjs/components/templates/Dismissable.js +6 -1
- package/lib/commonjs/components/templates/Dismissable.js.map +1 -1
- package/lib/commonjs/components/templates/ForceScrollDownView.js +5 -4
- package/lib/commonjs/components/templates/ForceScrollDownView.js.map +1 -1
- package/lib/commonjs/hooks/useAccordionAnimation.js +9 -1
- package/lib/commonjs/hooks/useAccordionAnimation.js.map +1 -1
- package/lib/module/components/banner/__test__/__snapshots__/banner.test.tsx.snap +68 -2
- package/lib/module/components/buttons/IOButton/__test__/__snapshots__/IOButton.test.tsx.snap +285 -9
- package/lib/module/components/buttons/__test__/__snapshots__/button.test.tsx.snap +700 -33
- package/lib/module/components/claimsSelector/ClaimsSelector.js +42 -24
- package/lib/module/components/claimsSelector/ClaimsSelector.js.map +1 -1
- package/lib/module/components/claimsSelector/__test__/__snapshots__/ClaimsSelector.test.tsx.snap +554 -188
- package/lib/module/components/headers/HeaderFirstLevel.js +2 -2
- package/lib/module/components/headers/HeaderFirstLevel.js.map +1 -1
- package/lib/module/components/headers/HeaderSecondLevel.js +4 -3
- package/lib/module/components/headers/HeaderSecondLevel.js.map +1 -1
- package/lib/module/components/layout/FooterActions.js.map +1 -1
- package/lib/module/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +925 -41
- package/lib/module/components/loadingSpinner/LoadingSpinner.js +15 -19
- package/lib/module/components/loadingSpinner/LoadingSpinner.js.map +1 -1
- package/lib/module/components/modules/__test__/__snapshots__/ModuleNavigationAlt.test.tsx.snap +304 -8
- package/lib/module/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +430 -32
- package/lib/module/components/templates/Dismissable.js +7 -2
- package/lib/module/components/templates/Dismissable.js.map +1 -1
- package/lib/module/components/templates/ForceScrollDownView.js +6 -5
- package/lib/module/components/templates/ForceScrollDownView.js.map +1 -1
- package/lib/module/hooks/useAccordionAnimation.js +10 -2
- package/lib/module/hooks/useAccordionAnimation.js.map +1 -1
- package/lib/typescript/components/claimsSelector/ClaimsSelector.d.ts +7 -1
- package/lib/typescript/components/claimsSelector/ClaimsSelector.d.ts.map +1 -1
- package/lib/typescript/components/headers/HeaderSecondLevel.d.ts.map +1 -1
- package/lib/typescript/components/icons/Icon.d.ts +5 -1
- package/lib/typescript/components/icons/Icon.d.ts.map +1 -1
- package/lib/typescript/components/layout/FooterActions.d.ts +3 -3
- package/lib/typescript/components/layout/FooterActions.d.ts.map +1 -1
- package/lib/typescript/components/loadingSpinner/LoadingSpinner.d.ts.map +1 -1
- package/lib/typescript/components/templates/Dismissable.d.ts.map +1 -1
- package/lib/typescript/components/templates/ForceScrollDownView.d.ts +1 -1
- package/lib/typescript/components/templates/ForceScrollDownView.d.ts.map +1 -1
- package/lib/typescript/components/typography/IOText.d.ts +1 -1
- package/lib/typescript/components/typography/IOText.d.ts.map +1 -1
- package/lib/typescript/hooks/useAccordionAnimation.d.ts +4 -0
- package/lib/typescript/hooks/useAccordionAnimation.d.ts.map +1 -1
- package/package.json +7 -5
- package/src/components/banner/__test__/__snapshots__/banner.test.tsx.snap +68 -2
- package/src/components/buttons/IOButton/__test__/__snapshots__/IOButton.test.tsx.snap +285 -9
- package/src/components/buttons/__test__/__snapshots__/button.test.tsx.snap +700 -33
- package/src/components/claimsSelector/ClaimsSelector.tsx +56 -37
- package/src/components/claimsSelector/__test__/__snapshots__/ClaimsSelector.test.tsx.snap +554 -188
- package/src/components/headers/HeaderFirstLevel.tsx +2 -2
- package/src/components/headers/HeaderSecondLevel.tsx +4 -4
- package/src/components/layout/FooterActions.tsx +3 -3
- package/src/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +925 -41
- package/src/components/loadingSpinner/LoadingSpinner.tsx +20 -24
- package/src/components/modules/__test__/__snapshots__/ModuleNavigationAlt.test.tsx.snap +304 -8
- package/src/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +430 -32
- package/src/components/templates/Dismissable.tsx +5 -2
- package/src/components/templates/ForceScrollDownView.tsx +7 -8
- package/src/hooks/useAccordionAnimation.tsx +13 -1
|
@@ -8,7 +8,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
8
8
|
var _reactNative = require("react-native");
|
|
9
9
|
var _reactNativeGestureHandler = require("react-native-gesture-handler");
|
|
10
10
|
var _reactNativeLinearGradient = _interopRequireDefault(require("react-native-linear-gradient"));
|
|
11
|
-
var _reactNativeReanimated =
|
|
11
|
+
var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
|
|
12
12
|
var _context = require("../../context");
|
|
13
13
|
var _core = require("../../core");
|
|
14
14
|
var _useAccordionAnimation = require("../../hooks/useAccordionAnimation");
|
|
@@ -20,6 +20,12 @@ var _jsxRuntime = require("react/jsx-runtime");
|
|
|
20
20
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
21
21
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
22
22
|
const accordionBodySpacing = 16;
|
|
23
|
+
|
|
24
|
+
// Threshold to determine when the accordion is considered fully collapsed
|
|
25
|
+
const COLLAPSED_RADIUS_THRESHOLD = 0.001;
|
|
26
|
+
|
|
27
|
+
// Border width offset to ensure gradient fits within the border curves
|
|
28
|
+
const COLLAPSIBLE_BORDER = 1;
|
|
23
29
|
const ClaimsSelector = ({
|
|
24
30
|
title,
|
|
25
31
|
items,
|
|
@@ -28,7 +34,8 @@ const ClaimsSelector = ({
|
|
|
28
34
|
onToggle,
|
|
29
35
|
accessibilityLabel,
|
|
30
36
|
selectedItemIds,
|
|
31
|
-
selectionEnabled = true
|
|
37
|
+
selectionEnabled = true,
|
|
38
|
+
headerGradientColors
|
|
32
39
|
}) => {
|
|
33
40
|
const theme = (0, _context.useIOTheme)();
|
|
34
41
|
const {
|
|
@@ -37,22 +44,41 @@ const ClaimsSelector = ({
|
|
|
37
44
|
onBodyLayout,
|
|
38
45
|
iconAnimatedStyle,
|
|
39
46
|
bodyAnimatedStyle,
|
|
40
|
-
bodyInnerStyle
|
|
47
|
+
bodyInnerStyle,
|
|
48
|
+
progress
|
|
41
49
|
} = (0, _useAccordionAnimation.useAccordionAnimation)({
|
|
42
50
|
defaultExpanded
|
|
43
51
|
});
|
|
44
|
-
const accordionBackground = theme["appBackground-
|
|
52
|
+
const accordionBackground = theme["appBackground-primary"];
|
|
45
53
|
const accordionBorder = theme["cardBorder-default"];
|
|
46
54
|
const onItemPress = () => {
|
|
47
55
|
toggleAccordion();
|
|
48
56
|
onToggle?.(!expanded);
|
|
49
57
|
};
|
|
58
|
+
const hasHeaderGradient = headerGradientColors && headerGradientColors.length >= 2;
|
|
59
|
+
const headerForegroundColor = hasHeaderGradient ? "black" : theme["textBody-default"];
|
|
60
|
+
const headerRadiusAnimatedStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => {
|
|
61
|
+
/**
|
|
62
|
+
* Dynamically adjust bottom corner radius based on the expansion progress.
|
|
63
|
+
* Bottom corners are rounded only when the accordion is fully collapsed to
|
|
64
|
+
* ensure visual consistency with the outer container.
|
|
65
|
+
*/
|
|
66
|
+
const bottomRadius = progress.value < COLLAPSED_RADIUS_THRESHOLD ? _core.IOAccordionRadius : 0;
|
|
67
|
+
return {
|
|
68
|
+
borderTopLeftRadius: _core.IOAccordionRadius - COLLAPSIBLE_BORDER,
|
|
69
|
+
borderTopRightRadius: _core.IOAccordionRadius - COLLAPSIBLE_BORDER,
|
|
70
|
+
borderBottomLeftRadius: bottomRadius - COLLAPSIBLE_BORDER,
|
|
71
|
+
borderBottomRightRadius: bottomRadius - COLLAPSIBLE_BORDER,
|
|
72
|
+
overflow: "hidden"
|
|
73
|
+
};
|
|
74
|
+
});
|
|
50
75
|
const renderClaimItem = (item, index) => {
|
|
51
76
|
const {
|
|
52
77
|
id,
|
|
53
78
|
value,
|
|
54
79
|
description,
|
|
55
|
-
type = "text"
|
|
80
|
+
type = "text",
|
|
81
|
+
endElement
|
|
56
82
|
} = item;
|
|
57
83
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_react.Fragment, {
|
|
58
84
|
children: [index !== 0 && /*#__PURE__*/(0, _jsxRuntime.jsx)(_layout.Divider, {}),
|
|
@@ -73,7 +99,8 @@ const ClaimsSelector = ({
|
|
|
73
99
|
}) : value,
|
|
74
100
|
label: description,
|
|
75
101
|
accessibilityRole: type,
|
|
76
|
-
reversed: true
|
|
102
|
+
reversed: true,
|
|
103
|
+
endElement: endElement
|
|
77
104
|
})]
|
|
78
105
|
}, id);
|
|
79
106
|
};
|
|
@@ -90,16 +117,19 @@ const ClaimsSelector = ({
|
|
|
90
117
|
},
|
|
91
118
|
accessibilityLabel: accessibilityLabel ?? title,
|
|
92
119
|
onPress: onItemPress,
|
|
93
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(
|
|
94
|
-
style: styles.textContainer,
|
|
95
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
96
|
-
|
|
120
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeReanimated.default.View, {
|
|
121
|
+
style: [styles.textContainer, headerRadiusAnimatedStyle],
|
|
122
|
+
children: [hasHeaderGradient && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeLinearGradient.default, {
|
|
123
|
+
colors: headerGradientColors,
|
|
124
|
+
style: _reactNative.StyleSheet.absoluteFill
|
|
125
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.H6, {
|
|
126
|
+
color: headerForegroundColor,
|
|
97
127
|
children: title
|
|
98
128
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
|
|
99
129
|
style: iconAnimatedStyle,
|
|
100
130
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.Icon, {
|
|
101
131
|
name: "chevronBottom",
|
|
102
|
-
color:
|
|
132
|
+
color: headerForegroundColor
|
|
103
133
|
})
|
|
104
134
|
})]
|
|
105
135
|
})
|
|
@@ -110,9 +140,6 @@ const ClaimsSelector = ({
|
|
|
110
140
|
onLayout: onBodyLayout,
|
|
111
141
|
children: items.map(renderClaimItem)
|
|
112
142
|
})
|
|
113
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeLinearGradient.default, {
|
|
114
|
-
style: styles.linearGradient,
|
|
115
|
-
colors: [(0, _core.hexToRgba)(_core.IOColors[accordionBackground], 0), _core.IOColors[accordionBackground]]
|
|
116
143
|
})]
|
|
117
144
|
});
|
|
118
145
|
};
|
|
@@ -132,15 +159,6 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
132
159
|
bodyInnerContainer: {
|
|
133
160
|
width: "100%"
|
|
134
161
|
},
|
|
135
|
-
linearGradient: {
|
|
136
|
-
height: accordionBodySpacing,
|
|
137
|
-
position: "absolute",
|
|
138
|
-
// Place at the bottom
|
|
139
|
-
bottom: 0,
|
|
140
|
-
// Avoid gradient overlaps with border radius
|
|
141
|
-
left: accordionBodySpacing,
|
|
142
|
-
right: accordionBodySpacing
|
|
143
|
-
},
|
|
144
162
|
imageClaim: {
|
|
145
163
|
width: 160,
|
|
146
164
|
aspectRatio: 3 / 4
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeGestureHandler","_reactNativeLinearGradient","_interopRequireDefault","_reactNativeReanimated","_context","_core","_useAccordionAnimation","_icons","_layout","_listitems","_typography","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","accordionBodySpacing","ClaimsSelector","title","items","defaultExpanded","onItemSelected","onToggle","accessibilityLabel","selectedItemIds","selectionEnabled","theme","useIOTheme","expanded","toggleAccordion","onBodyLayout","iconAnimatedStyle","bodyAnimatedStyle","bodyInnerStyle","useAccordionAnimation","accordionBackground","accordionBorder","onItemPress","renderClaimItem","item","index","id","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeGestureHandler","_reactNativeLinearGradient","_interopRequireDefault","_reactNativeReanimated","_context","_core","_useAccordionAnimation","_icons","_layout","_listitems","_typography","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","accordionBodySpacing","COLLAPSED_RADIUS_THRESHOLD","COLLAPSIBLE_BORDER","ClaimsSelector","title","items","defaultExpanded","onItemSelected","onToggle","accessibilityLabel","selectedItemIds","selectionEnabled","headerGradientColors","theme","useIOTheme","expanded","toggleAccordion","onBodyLayout","iconAnimatedStyle","bodyAnimatedStyle","bodyInnerStyle","progress","useAccordionAnimation","accordionBackground","accordionBorder","onItemPress","hasHeaderGradient","length","headerForegroundColor","headerRadiusAnimatedStyle","useAnimatedStyle","bottomRadius","value","IOAccordionRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","overflow","renderClaimItem","item","index","id","description","type","endElement","jsxs","Fragment","children","jsx","Divider","ListItemCheckbox","selected","includes","onValueChange","undefined","ListItemInfo","Image","source","uri","style","styles","imageClaim","resizeMode","accessibilityIgnoresInvertColors","label","accessibilityRole","reversed","View","accordionWrapper","backgroundColor","IOColors","borderColor","TouchableWithoutFeedback","accessible","accessibilityState","onPress","textContainer","colors","StyleSheet","absoluteFill","H6","color","Icon","name","bodyInnerContainer","onLayout","map","exports","create","borderWidth","borderRadius","borderCurve","padding","flexDirection","alignItems","justifyContent","width","aspectRatio"],"sourceRoot":"../../../../src","sources":["components/claimsSelector/ClaimsSelector.tsx"],"mappings":"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","ignoreList":[]}
|