@star-insure/sdk 4.1.4 → 4.3.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/dist/components/filter/PageHeader.d.ts +9 -3
- package/dist/sdk.cjs.development.js +21 -4
- package/dist/sdk.cjs.development.js.map +1 -1
- package/dist/sdk.cjs.production.min.js +1 -1
- package/dist/sdk.cjs.production.min.js.map +1 -1
- package/dist/sdk.esm.js +21 -4
- package/dist/sdk.esm.js.map +1 -1
- package/dist/types/models/claims/ClaimRequest.d.ts +3 -3
- package/package.json +1 -1
- package/src/components/filter/PageHeader.tsx +22 -1
- package/src/types/models/claims/ClaimRequest.ts +3 -3
|
@@ -89,7 +89,7 @@ export interface DamageClaimRequest extends ClaimRequest {
|
|
|
89
89
|
'additional_information_details'?: string;
|
|
90
90
|
'accident_location'?: string;
|
|
91
91
|
'accident_suburb'?: string;
|
|
92
|
-
'
|
|
92
|
+
'loss_happened_at'?: string;
|
|
93
93
|
'accident_speed'?: string;
|
|
94
94
|
'impact_speed'?: string;
|
|
95
95
|
'road_surface'?: string;
|
|
@@ -169,7 +169,7 @@ export interface GlassClaimRequest extends ClaimRequest {
|
|
|
169
169
|
'vehicle_model'?: string;
|
|
170
170
|
'vehicle_year'?: string | number;
|
|
171
171
|
'accident_location'?: string;
|
|
172
|
-
'
|
|
172
|
+
'loss_happened_at'?: string;
|
|
173
173
|
'accident_description'?: string;
|
|
174
174
|
'repairer_name'?: string;
|
|
175
175
|
'repairer_phone'?: string;
|
|
@@ -275,7 +275,7 @@ export interface TheftClaimRequest extends ClaimRequest {
|
|
|
275
275
|
'vehicle_ran_well'?: boolean;
|
|
276
276
|
'vehicle_ran_poorly_details'?: string;
|
|
277
277
|
'theft_details'?: string;
|
|
278
|
-
'
|
|
278
|
+
'loss_happened_at'?: string;
|
|
279
279
|
'theft_discovered_at'?: string;
|
|
280
280
|
'last_seen_at'?: string;
|
|
281
281
|
'vehicle_last_used_by'?: string;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@star-insure/sdk",
|
|
3
3
|
"description": "The SDK for Star Insure client apps with shared helper functions and TypeScript definitions.",
|
|
4
4
|
"author": "alexclark_nz",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.3.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -18,6 +18,7 @@ interface Props {
|
|
|
18
18
|
backText?: string;
|
|
19
19
|
filterOptions?: FilterOption[];
|
|
20
20
|
focusSearchShortcut?: boolean;
|
|
21
|
+
children?: React.ReactNode;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
export default function PageHeader({
|
|
@@ -29,12 +30,24 @@ export default function PageHeader({
|
|
|
29
30
|
actions = [],
|
|
30
31
|
filterOptions = [],
|
|
31
32
|
focusSearchShortcut = false,
|
|
33
|
+
children
|
|
32
34
|
}: Props) {
|
|
33
35
|
const [isSearchActive, setSearchActive] = React.useState<boolean>(false);
|
|
34
36
|
const scrollContainerRef = React.useRef<HTMLDivElement | null>(null);
|
|
35
37
|
|
|
36
38
|
const [overScroll, setOverScroll] = React.useState<boolean>(false);
|
|
37
39
|
|
|
40
|
+
const actionChildren: React.ReactNode[] = [];
|
|
41
|
+
|
|
42
|
+
// Categorize children based on their type
|
|
43
|
+
React.Children.forEach(children, (child) => {
|
|
44
|
+
if (React.isValidElement(child)) {
|
|
45
|
+
if (child.type === PageHeader.Action) {
|
|
46
|
+
actionChildren.push(child);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
|
|
38
51
|
React.useEffect(() => {
|
|
39
52
|
const current = scrollContainerRef.current;
|
|
40
53
|
if (!current) return;
|
|
@@ -145,7 +158,7 @@ export default function PageHeader({
|
|
|
145
158
|
<BackButton back={back} className="bg-gray-100 h-[60px] w-[60px] rounded" />
|
|
146
159
|
)}
|
|
147
160
|
|
|
148
|
-
<div className={cn('w-full grid grid-cols-[
|
|
161
|
+
<div className={cn('w-full grid grid-cols-[auto_1fr_auto_auto] h-[60px] rounded bg-gray-100 p-3 gap-4', innerClassName)}>
|
|
149
162
|
<button
|
|
150
163
|
type="button"
|
|
151
164
|
disabled={!search}
|
|
@@ -185,7 +198,15 @@ export default function PageHeader({
|
|
|
185
198
|
</nav>
|
|
186
199
|
</div>
|
|
187
200
|
)}
|
|
201
|
+
{actionChildren && (
|
|
202
|
+
<div className="flex items-center gap-3 bg-gray-100">
|
|
203
|
+
{actionChildren}
|
|
204
|
+
</div>
|
|
205
|
+
)}
|
|
188
206
|
</div>
|
|
189
207
|
</section>
|
|
190
208
|
);
|
|
191
209
|
}
|
|
210
|
+
|
|
211
|
+
// Subcomponents
|
|
212
|
+
PageHeader.Action = ({ children }: {children: React.ReactNode}) => <div>{children}</div>;
|
|
@@ -93,7 +93,7 @@ export interface DamageClaimRequest extends ClaimRequest {
|
|
|
93
93
|
'additional_information_details'?: string;
|
|
94
94
|
'accident_location'?: string;
|
|
95
95
|
'accident_suburb'?: string;
|
|
96
|
-
'
|
|
96
|
+
'loss_happened_at'?: string;
|
|
97
97
|
'accident_speed'?: string;
|
|
98
98
|
'impact_speed'?: string;
|
|
99
99
|
'road_surface'?: string;
|
|
@@ -178,7 +178,7 @@ export interface GlassClaimRequest extends ClaimRequest {
|
|
|
178
178
|
'vehicle_model'?: string;
|
|
179
179
|
'vehicle_year'?: string|number;
|
|
180
180
|
'accident_location'?: string;
|
|
181
|
-
'
|
|
181
|
+
'loss_happened_at'?: string;
|
|
182
182
|
'accident_description'?: string;
|
|
183
183
|
'repairer_name'?: string;
|
|
184
184
|
'repairer_phone'?: string;
|
|
@@ -290,7 +290,7 @@ export interface TheftClaimRequest extends ClaimRequest {
|
|
|
290
290
|
'vehicle_ran_poorly_details'?: string;
|
|
291
291
|
// Theft details
|
|
292
292
|
'theft_details'?: string;
|
|
293
|
-
'
|
|
293
|
+
'loss_happened_at'?: string;
|
|
294
294
|
'theft_discovered_at'?: string;
|
|
295
295
|
'last_seen_at'?: string;
|
|
296
296
|
'vehicle_last_used_by'?: string;
|