@homefile/components-v2 2.8.54 → 2.8.55
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.
|
@@ -67,6 +67,18 @@ export const HomeBoardTour = ({ currentStep = 'homeboard', bubbleWidth = '300px'
|
|
|
67
67
|
topRef: getYPosition(height, height - 16),
|
|
68
68
|
component: (_jsx(BubbleText, { title: t('tour.steps.nameFolder.title'), description: t('tour.steps.nameFolder.description') })),
|
|
69
69
|
},
|
|
70
|
+
// Reference component id -> receipts/autofiler/AutofilerHeader
|
|
71
|
+
forwardReceipts: {
|
|
72
|
+
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
73
|
+
topRef: getMiddleAnchorPosition(height, 215),
|
|
74
|
+
component: (_jsx(BubbleText, { title: t('tour.steps.forwardReceipts.title'), description: t('tour.steps.forwardReceipts.description') })),
|
|
75
|
+
},
|
|
76
|
+
// Reference component id -> receipts/autofiler/ReceiptAutofiler
|
|
77
|
+
viewReceipts: {
|
|
78
|
+
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
79
|
+
topRef: getMiddleAnchorPosition(height, 215),
|
|
80
|
+
component: (_jsx(BubbleText, { title: t('tour.steps.viewReceipts.title'), description: t('tour.steps.viewReceipts.description') })),
|
|
81
|
+
},
|
|
70
82
|
addFiles: {
|
|
71
83
|
arrowRight: 'right-top',
|
|
72
84
|
leftRef: getXPosition(width, panelBubbleArrowSize),
|
|
@@ -114,18 +126,6 @@ export const HomeBoardTour = ({ currentStep = 'homeboard', bubbleWidth = '300px'
|
|
|
114
126
|
topRef: ((_q = coordinates.shareWithOthers) === null || _q === void 0 ? void 0 : _q.y) + appBarHeight,
|
|
115
127
|
component: (_jsx(BubbleText, { title: t('tour.steps.profile.title'), description: t('tour.steps.profile.description') })),
|
|
116
128
|
},
|
|
117
|
-
// Reference component id -> receipts/autofiler/AutofilerHeader
|
|
118
|
-
forwardReceipts: {
|
|
119
|
-
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
120
|
-
topRef: getMiddleAnchorPosition(height, 215),
|
|
121
|
-
component: (_jsx(BubbleText, { title: t('tour.steps.forwardReceipts.title'), description: t('tour.steps.forwardReceipts.description') })),
|
|
122
|
-
},
|
|
123
|
-
// Reference component id -> receipts/autofiler/ReceiptAutofiler
|
|
124
|
-
viewReceipts: {
|
|
125
|
-
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
126
|
-
topRef: getMiddleAnchorPosition(height, 215),
|
|
127
|
-
component: (_jsx(BubbleText, { title: t('tour.steps.viewReceipts.title'), description: t('tour.steps.viewReceipts.description') })),
|
|
128
|
-
},
|
|
129
129
|
// Reference component id -> appBar/ContactList
|
|
130
130
|
addCatalog: {
|
|
131
131
|
arrowRight: 'right-top',
|
package/package.json
CHANGED
|
@@ -131,6 +131,28 @@ export const HomeBoardTour = ({
|
|
|
131
131
|
/>
|
|
132
132
|
),
|
|
133
133
|
},
|
|
134
|
+
// Reference component id -> receipts/autofiler/AutofilerHeader
|
|
135
|
+
forwardReceipts: {
|
|
136
|
+
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
137
|
+
topRef: getMiddleAnchorPosition(height, 215),
|
|
138
|
+
component: (
|
|
139
|
+
<BubbleText
|
|
140
|
+
title={t('tour.steps.forwardReceipts.title')}
|
|
141
|
+
description={t('tour.steps.forwardReceipts.description')}
|
|
142
|
+
/>
|
|
143
|
+
),
|
|
144
|
+
},
|
|
145
|
+
// Reference component id -> receipts/autofiler/ReceiptAutofiler
|
|
146
|
+
viewReceipts: {
|
|
147
|
+
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
148
|
+
topRef: getMiddleAnchorPosition(height, 215),
|
|
149
|
+
component: (
|
|
150
|
+
<BubbleText
|
|
151
|
+
title={t('tour.steps.viewReceipts.title')}
|
|
152
|
+
description={t('tour.steps.viewReceipts.description')}
|
|
153
|
+
/>
|
|
154
|
+
),
|
|
155
|
+
},
|
|
134
156
|
addFiles: {
|
|
135
157
|
arrowRight: 'right-top',
|
|
136
158
|
leftRef: getXPosition(width, panelBubbleArrowSize),
|
|
@@ -217,28 +239,6 @@ export const HomeBoardTour = ({
|
|
|
217
239
|
/>
|
|
218
240
|
),
|
|
219
241
|
},
|
|
220
|
-
// Reference component id -> receipts/autofiler/AutofilerHeader
|
|
221
|
-
forwardReceipts: {
|
|
222
|
-
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
223
|
-
topRef: getMiddleAnchorPosition(height, 215),
|
|
224
|
-
component: (
|
|
225
|
-
<BubbleText
|
|
226
|
-
title={t('tour.steps.forwardReceipts.title')}
|
|
227
|
-
description={t('tour.steps.forwardReceipts.description')}
|
|
228
|
-
/>
|
|
229
|
-
),
|
|
230
|
-
},
|
|
231
|
-
// Reference component id -> receipts/autofiler/ReceiptAutofiler
|
|
232
|
-
viewReceipts: {
|
|
233
|
-
leftRef: getMiddleAnchorPosition(width, parsedBubbleWidth),
|
|
234
|
-
topRef: getMiddleAnchorPosition(height, 215),
|
|
235
|
-
component: (
|
|
236
|
-
<BubbleText
|
|
237
|
-
title={t('tour.steps.viewReceipts.title')}
|
|
238
|
-
description={t('tour.steps.viewReceipts.description')}
|
|
239
|
-
/>
|
|
240
|
-
),
|
|
241
|
-
},
|
|
242
242
|
// Reference component id -> appBar/ContactList
|
|
243
243
|
addCatalog: {
|
|
244
244
|
arrowRight: 'right-top',
|