@factorialco/f0-react-native 0.24.1 → 0.26.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/module/components/Activity/ActivityItem/index.js +1 -1
- package/lib/module/components/Avatars/BaseAvatar/index.js +1 -1
- package/lib/module/components/Avatars/DateAvatar/index.js +1 -1
- package/lib/module/components/Avatars/EmojiAvatar/index.js +1 -1
- package/lib/module/components/Avatars/FileAvatar/index.js +1 -1
- package/lib/module/components/Avatars/FileAvatar/utils.js +1 -1
- package/lib/module/components/Avatars/IconAvatar/index.js +1 -1
- package/lib/module/components/Avatars/ModuleAvatar/index.js +1 -1
- package/lib/module/components/Badge/index.js +1 -1
- package/lib/module/components/Button/index.js +1 -1
- package/lib/module/components/Counter/index.js +1 -1
- package/lib/module/components/ExampleComponent.js +1 -1
- package/lib/module/components/Icon/README.md +1 -1
- package/lib/module/components/Navigation/PageHeader/index.js +1 -1
- package/lib/module/components/OneChip/index.js +1 -1
- package/lib/module/components/OnePreset/index.js +1 -1
- package/lib/module/components/Tags/AlertTab/index.js +1 -1
- package/lib/module/components/Tags/BaseTag/index.js +1 -1
- package/lib/module/components/Tags/DotTag/index.js +1 -1
- package/lib/module/components/Tags/RawTag/index.js +1 -1
- package/lib/module/components/experimental/Lists/DataList/ItemContainer.js +1 -1
- package/lib/module/components/experimental/Lists/DataList/actions/CopyAction.js +1 -1
- package/lib/module/components/experimental/Lists/DataList/actions/GenericAction.js +1 -1
- package/lib/module/components/experimental/Lists/DataList/index.js +1 -1
- package/lib/module/components/experimental/Lists/DetailsItemsList/index.js +1 -1
- package/lib/module/icons/app/New.js +2 -0
- package/lib/module/icons/app/New.js.map +1 -0
- package/lib/module/icons/app/QuestionCircle.js +2 -0
- package/lib/module/icons/app/QuestionCircle.js.map +1 -0
- package/lib/module/icons/app/index.js +1 -1
- package/lib/module/icons/app/index.js.map +1 -1
- package/lib/module/icons/modules/Hub.js +1 -1
- package/lib/module/icons/modules/Hub.js.map +1 -1
- package/lib/module/styles/theme.css +308 -237
- package/lib/module/styles/tokens/colors.js +1 -1
- package/lib/module/styles/tokens/colors.js.map +1 -1
- package/lib/module/ui/avatar.js +1 -1
- package/lib/typescript/components/OneChip/index.d.ts +2 -2
- package/lib/typescript/icons/app/New.d.ts +5 -0
- package/lib/typescript/icons/app/New.d.ts.map +1 -0
- package/lib/typescript/icons/app/QuestionCircle.d.ts +5 -0
- package/lib/typescript/icons/app/QuestionCircle.d.ts.map +1 -0
- package/lib/typescript/icons/app/index.d.ts +2 -0
- package/lib/typescript/icons/app/index.d.ts.map +1 -1
- package/lib/typescript/icons/modules/Hub.d.ts.map +1 -1
- package/lib/typescript/styles/tokens/colors.d.ts +2 -2
- package/package.json +2 -2
- package/src/components/Activity/ActivityItem/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Activity/ActivityItem/index.tsx +10 -10
- package/src/components/Avatars/BaseAvatar/index.tsx +1 -1
- package/src/components/Avatars/CompanyAvatar/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Avatars/DateAvatar/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Avatars/DateAvatar/index.tsx +3 -3
- package/src/components/Avatars/EmojiAvatar/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Avatars/EmojiAvatar/index.tsx +1 -1
- package/src/components/Avatars/FileAvatar/__snapshots__/index.spec.tsx.snap +26 -26
- package/src/components/Avatars/FileAvatar/index.tsx +2 -2
- package/src/components/Avatars/FileAvatar/utils.ts +13 -13
- package/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap +6 -6
- package/src/components/Avatars/IconAvatar/index.tsx +2 -2
- package/src/components/Avatars/ModuleAvatar/index.tsx +1 -1
- package/src/components/Avatars/PersonAvatar/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Avatars/TeamAvatar/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Badge/index.tsx +5 -5
- package/src/components/Button/__snapshots__/index.spec.tsx.snap +22 -22
- package/src/components/Button/index.tsx +22 -22
- package/src/components/Counter/__snapshots__/index.spec.tsx.snap +14 -14
- package/src/components/Counter/index.tsx +6 -6
- package/src/components/ExampleComponent.tsx +2 -2
- package/src/components/Icon/README.md +1 -1
- package/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap +4 -4
- package/src/components/Navigation/PageHeader/index.tsx +1 -1
- package/src/components/OneChip/__snapshots__/index.spec.tsx.snap +11 -11
- package/src/components/OneChip/index.tsx +5 -5
- package/src/components/OnePreset/__snapshots__/index.spec.tsx.snap +8 -8
- package/src/components/OnePreset/index.tsx +3 -3
- package/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap +9 -9
- package/src/components/Tags/AlertTab/index.tsx +9 -9
- package/src/components/Tags/BaseTag/index.tsx +2 -2
- package/src/components/Tags/DotTag/__snapshots__/index.spec.tsx.snap +38 -38
- package/src/components/Tags/DotTag/index.tsx +1 -1
- package/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap +6 -6
- package/src/components/Tags/RawTag/index.tsx +3 -3
- package/src/components/experimental/Lists/DataList/ItemContainer.tsx +2 -2
- package/src/components/experimental/Lists/DataList/actions/CopyAction.tsx +4 -4
- package/src/components/experimental/Lists/DataList/actions/GenericAction.tsx +3 -3
- package/src/components/experimental/Lists/DataList/index.tsx +1 -1
- package/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap +26 -26
- package/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap +26 -26
- package/src/components/experimental/Lists/DetailsItemsList/index.tsx +3 -3
- package/src/icons/app/New.tsx +19 -0
- package/src/icons/app/QuestionCircle.tsx +21 -0
- package/src/icons/app/index.ts +2 -0
- package/src/icons/modules/Hub.tsx +2 -1
- package/src/styles/theme.css +308 -237
- package/src/styles/tokens/colors.ts +2 -2
- package/src/ui/avatar.tsx +1 -1
- package/lib/module/components/Activity/ActivityItem/__snapshots__/index.spec.tsx.snap +0 -62
- package/lib/module/components/Avatars/CompanyAvatar/__snapshots__/index.spec.tsx.snap +0 -25
- package/lib/module/components/Avatars/DateAvatar/__snapshots__/index.spec.tsx.snap +0 -18
- package/lib/module/components/Avatars/EmojiAvatar/__snapshots__/index.spec.tsx.snap +0 -37
- package/lib/module/components/Avatars/FileAvatar/__snapshots__/index.spec.tsx.snap +0 -261
- package/lib/module/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap +0 -265
- package/lib/module/components/Avatars/PersonAvatar/__snapshots__/index.spec.tsx.snap +0 -25
- package/lib/module/components/Avatars/TeamAvatar/__snapshots__/index.spec.tsx.snap +0 -25
- package/lib/module/components/Button/__snapshots__/index.spec.tsx.snap +0 -517
- package/lib/module/components/Counter/__snapshots__/index.spec.tsx.snap +0 -113
- package/lib/module/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap +0 -242
- package/lib/module/components/OneChip/__snapshots__/index.spec.tsx.snap +0 -480
- package/lib/module/components/OnePreset/__snapshots__/index.spec.tsx.snap +0 -227
- package/lib/module/components/PressableFeedback/__snapshots__/index.spec.tsx.snap +0 -597
- package/lib/module/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap +0 -337
- package/lib/module/components/Tags/DotTag/__snapshots__/index.spec.tsx.snap +0 -1255
- package/lib/module/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap +0 -252
- package/lib/module/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap +0 -783
- package/lib/module/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap +0 -695
|
@@ -8,7 +8,7 @@ exports[`DetailsItem Snapshot type company 1`] = `
|
|
|
8
8
|
className="max-w-72 min-w-32"
|
|
9
9
|
>
|
|
10
10
|
<Text
|
|
11
|
-
className="px-1.5 text-
|
|
11
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
12
12
|
>
|
|
13
13
|
Company
|
|
14
14
|
</Text>
|
|
@@ -16,7 +16,7 @@ exports[`DetailsItem Snapshot type company 1`] = `
|
|
|
16
16
|
className="flex flex-shrink justify-center gap-0.5"
|
|
17
17
|
>
|
|
18
18
|
<View
|
|
19
|
-
className="flex rounded font-medium text-
|
|
19
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
20
20
|
>
|
|
21
21
|
<View
|
|
22
22
|
accessibilityLabel="Copy factorial"
|
|
@@ -38,7 +38,7 @@ exports[`DetailsItem Snapshot type company 1`] = `
|
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
accessible={true}
|
|
41
|
-
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-
|
|
41
|
+
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-f0-background-secondary-hover"
|
|
42
42
|
collapsable={false}
|
|
43
43
|
focusable={true}
|
|
44
44
|
onBlur={[Function]}
|
|
@@ -62,7 +62,7 @@ exports[`DetailsItem Snapshot type company 1`] = `
|
|
|
62
62
|
>
|
|
63
63
|
<View
|
|
64
64
|
aria-hidden={true}
|
|
65
|
-
className="flex shrink-0 items-center justify-center overflow-hidden text-center font-semibold w-5 h-5 rounded-xs bg-
|
|
65
|
+
className="flex shrink-0 items-center justify-center overflow-hidden text-center font-semibold w-5 h-5 rounded-xs bg-f0-background dark:bg-f0-background-inverse-secondary"
|
|
66
66
|
data-a11y-color-contrast-ignore={true}
|
|
67
67
|
role="img"
|
|
68
68
|
>
|
|
@@ -88,7 +88,7 @@ exports[`DetailsItem Snapshot type company 1`] = `
|
|
|
88
88
|
</View>
|
|
89
89
|
</View>
|
|
90
90
|
<Text
|
|
91
|
-
className="line-clamp-5 text-left text-
|
|
91
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
92
92
|
>
|
|
93
93
|
factorial
|
|
94
94
|
</Text>
|
|
@@ -101,7 +101,7 @@ exports[`DetailsItem Snapshot type company 1`] = `
|
|
|
101
101
|
aria-hidden={true}
|
|
102
102
|
bbHeight="100%"
|
|
103
103
|
bbWidth="100%"
|
|
104
|
-
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-
|
|
104
|
+
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f0-icon-bold"
|
|
105
105
|
fill="none"
|
|
106
106
|
focusable={false}
|
|
107
107
|
meetOrSlice={0}
|
|
@@ -196,7 +196,7 @@ exports[`DetailsItem Snapshot type dot-tag 1`] = `
|
|
|
196
196
|
className="max-w-72 min-w-32"
|
|
197
197
|
>
|
|
198
198
|
<Text
|
|
199
|
-
className="px-1.5 text-
|
|
199
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
200
200
|
>
|
|
201
201
|
Dot Tag
|
|
202
202
|
</Text>
|
|
@@ -228,7 +228,7 @@ exports[`DetailsItem Snapshot type dot-tag 1`] = `
|
|
|
228
228
|
}
|
|
229
229
|
}
|
|
230
230
|
accessible={true}
|
|
231
|
-
className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-
|
|
231
|
+
className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
|
|
232
232
|
collapsable={false}
|
|
233
233
|
focusable={true}
|
|
234
234
|
onBlur={[Function]}
|
|
@@ -263,7 +263,7 @@ exports[`DetailsItem Snapshot type dot-tag 1`] = `
|
|
|
263
263
|
}
|
|
264
264
|
/>
|
|
265
265
|
<Text
|
|
266
|
-
className="line-clamp-1 text-base font-medium text-
|
|
266
|
+
className="line-clamp-1 text-base font-medium text-f0-foreground"
|
|
267
267
|
>
|
|
268
268
|
Activity
|
|
269
269
|
</Text>
|
|
@@ -283,7 +283,7 @@ exports[`DetailsItem Snapshot type item 1`] = `
|
|
|
283
283
|
className="max-w-72 min-w-32"
|
|
284
284
|
>
|
|
285
285
|
<Text
|
|
286
|
-
className="px-1.5 text-
|
|
286
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
287
287
|
>
|
|
288
288
|
Email
|
|
289
289
|
</Text>
|
|
@@ -291,7 +291,7 @@ exports[`DetailsItem Snapshot type item 1`] = `
|
|
|
291
291
|
className="flex flex-shrink justify-center gap-0.5"
|
|
292
292
|
>
|
|
293
293
|
<View
|
|
294
|
-
className="flex rounded font-medium text-
|
|
294
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
295
295
|
>
|
|
296
296
|
<View
|
|
297
297
|
accessibilityLabel="Copy alicia.keys@factorial.co"
|
|
@@ -313,7 +313,7 @@ exports[`DetailsItem Snapshot type item 1`] = `
|
|
|
313
313
|
}
|
|
314
314
|
}
|
|
315
315
|
accessible={true}
|
|
316
|
-
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-
|
|
316
|
+
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-f0-background-secondary-hover"
|
|
317
317
|
collapsable={false}
|
|
318
318
|
focusable={true}
|
|
319
319
|
onBlur={[Function]}
|
|
@@ -330,7 +330,7 @@ exports[`DetailsItem Snapshot type item 1`] = `
|
|
|
330
330
|
className="flex flex-row items-center gap-1.5"
|
|
331
331
|
>
|
|
332
332
|
<Text
|
|
333
|
-
className="line-clamp-5 text-left text-
|
|
333
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
334
334
|
>
|
|
335
335
|
alicia.keys@factorial.co
|
|
336
336
|
</Text>
|
|
@@ -343,7 +343,7 @@ exports[`DetailsItem Snapshot type item 1`] = `
|
|
|
343
343
|
aria-hidden={true}
|
|
344
344
|
bbHeight="100%"
|
|
345
345
|
bbWidth="100%"
|
|
346
|
-
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-
|
|
346
|
+
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f0-icon-bold"
|
|
347
347
|
fill="none"
|
|
348
348
|
focusable={false}
|
|
349
349
|
meetOrSlice={0}
|
|
@@ -438,7 +438,7 @@ exports[`DetailsItem Snapshot type person 1`] = `
|
|
|
438
438
|
className="max-w-72 min-w-32"
|
|
439
439
|
>
|
|
440
440
|
<Text
|
|
441
|
-
className="px-1.5 text-
|
|
441
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
442
442
|
>
|
|
443
443
|
Datos personales
|
|
444
444
|
</Text>
|
|
@@ -446,7 +446,7 @@ exports[`DetailsItem Snapshot type person 1`] = `
|
|
|
446
446
|
className="flex flex-shrink justify-center gap-0.5"
|
|
447
447
|
>
|
|
448
448
|
<View
|
|
449
|
-
className="flex rounded font-medium text-
|
|
449
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
450
450
|
>
|
|
451
451
|
<View
|
|
452
452
|
accessibilityLabel="Copy Daniel Maza"
|
|
@@ -468,7 +468,7 @@ exports[`DetailsItem Snapshot type person 1`] = `
|
|
|
468
468
|
}
|
|
469
469
|
}
|
|
470
470
|
accessible={true}
|
|
471
|
-
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-
|
|
471
|
+
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-f0-background-secondary-hover"
|
|
472
472
|
collapsable={false}
|
|
473
473
|
focusable={true}
|
|
474
474
|
onBlur={[Function]}
|
|
@@ -497,7 +497,7 @@ exports[`DetailsItem Snapshot type person 1`] = `
|
|
|
497
497
|
role="img"
|
|
498
498
|
>
|
|
499
499
|
<Text
|
|
500
|
-
className="text-
|
|
500
|
+
className="text-f0-foreground-inverse/90 text-sm"
|
|
501
501
|
data-a11y-color-contrast-ignore={true}
|
|
502
502
|
>
|
|
503
503
|
D
|
|
@@ -506,7 +506,7 @@ exports[`DetailsItem Snapshot type person 1`] = `
|
|
|
506
506
|
</View>
|
|
507
507
|
</View>
|
|
508
508
|
<Text
|
|
509
|
-
className="line-clamp-5 text-left text-
|
|
509
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
510
510
|
>
|
|
511
511
|
Daniel Maza
|
|
512
512
|
</Text>
|
|
@@ -519,7 +519,7 @@ exports[`DetailsItem Snapshot type person 1`] = `
|
|
|
519
519
|
aria-hidden={true}
|
|
520
520
|
bbHeight="100%"
|
|
521
521
|
bbWidth="100%"
|
|
522
|
-
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-
|
|
522
|
+
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f0-icon-bold"
|
|
523
523
|
fill="none"
|
|
524
524
|
focusable={false}
|
|
525
525
|
meetOrSlice={0}
|
|
@@ -614,7 +614,7 @@ exports[`DetailsItem Snapshot type team 1`] = `
|
|
|
614
614
|
className="max-w-72 min-w-32"
|
|
615
615
|
>
|
|
616
616
|
<Text
|
|
617
|
-
className="px-1.5 text-
|
|
617
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
618
618
|
>
|
|
619
619
|
Team
|
|
620
620
|
</Text>
|
|
@@ -622,7 +622,7 @@ exports[`DetailsItem Snapshot type team 1`] = `
|
|
|
622
622
|
className="flex flex-shrink justify-center gap-0.5"
|
|
623
623
|
>
|
|
624
624
|
<View
|
|
625
|
-
className="flex rounded font-medium text-
|
|
625
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
626
626
|
>
|
|
627
627
|
<View
|
|
628
628
|
accessibilityLabel="Copy factorial"
|
|
@@ -644,7 +644,7 @@ exports[`DetailsItem Snapshot type team 1`] = `
|
|
|
644
644
|
}
|
|
645
645
|
}
|
|
646
646
|
accessible={true}
|
|
647
|
-
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-
|
|
647
|
+
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-f0-background-secondary-hover"
|
|
648
648
|
collapsable={false}
|
|
649
649
|
focusable={true}
|
|
650
650
|
onBlur={[Function]}
|
|
@@ -673,7 +673,7 @@ exports[`DetailsItem Snapshot type team 1`] = `
|
|
|
673
673
|
role="img"
|
|
674
674
|
>
|
|
675
675
|
<Text
|
|
676
|
-
className="text-
|
|
676
|
+
className="text-f0-foreground-inverse/90 text-sm"
|
|
677
677
|
data-a11y-color-contrast-ignore={true}
|
|
678
678
|
>
|
|
679
679
|
F
|
|
@@ -682,7 +682,7 @@ exports[`DetailsItem Snapshot type team 1`] = `
|
|
|
682
682
|
</View>
|
|
683
683
|
</View>
|
|
684
684
|
<Text
|
|
685
|
-
className="line-clamp-5 text-left text-
|
|
685
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
686
686
|
>
|
|
687
687
|
factorial
|
|
688
688
|
</Text>
|
|
@@ -695,7 +695,7 @@ exports[`DetailsItem Snapshot type team 1`] = `
|
|
|
695
695
|
aria-hidden={true}
|
|
696
696
|
bbHeight="100%"
|
|
697
697
|
bbWidth="100%"
|
|
698
|
-
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-
|
|
698
|
+
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f0-icon-bold"
|
|
699
699
|
fill="none"
|
|
700
700
|
focusable={false}
|
|
701
701
|
meetOrSlice={0}
|
package/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap
CHANGED
|
@@ -5,7 +5,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
5
5
|
className="flex gap-4"
|
|
6
6
|
>
|
|
7
7
|
<Text
|
|
8
|
-
className="mb-1 pl-1.5 text-sm font-semibold text-
|
|
8
|
+
className="mb-1 pl-1.5 text-sm font-semibold text-f0-foreground-secondary"
|
|
9
9
|
>
|
|
10
10
|
DETAILS
|
|
11
11
|
</Text>
|
|
@@ -19,7 +19,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
19
19
|
className="max-w-72 min-w-32"
|
|
20
20
|
>
|
|
21
21
|
<Text
|
|
22
|
-
className="px-1.5 text-
|
|
22
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
23
23
|
>
|
|
24
24
|
Legal entity
|
|
25
25
|
</Text>
|
|
@@ -27,7 +27,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
27
27
|
className="flex flex-shrink justify-center gap-0.5"
|
|
28
28
|
>
|
|
29
29
|
<View
|
|
30
|
-
className="flex rounded font-medium text-
|
|
30
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
31
31
|
>
|
|
32
32
|
<View
|
|
33
33
|
accessibilityLabel="Copy Everyday Software SL"
|
|
@@ -49,7 +49,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
accessible={true}
|
|
52
|
-
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-
|
|
52
|
+
className="group flex flex-row justify-between gap-1.5 rounded p-1.5 transition-colors duration-300 active:bg-f0-background-secondary-hover"
|
|
53
53
|
collapsable={false}
|
|
54
54
|
focusable={true}
|
|
55
55
|
onBlur={[Function]}
|
|
@@ -66,7 +66,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
66
66
|
className="flex flex-row items-center gap-1.5"
|
|
67
67
|
>
|
|
68
68
|
<Text
|
|
69
|
-
className="line-clamp-5 text-left text-
|
|
69
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
70
70
|
>
|
|
71
71
|
Everyday Software SL
|
|
72
72
|
</Text>
|
|
@@ -79,7 +79,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
79
79
|
aria-hidden={true}
|
|
80
80
|
bbHeight="100%"
|
|
81
81
|
bbWidth="100%"
|
|
82
|
-
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-
|
|
82
|
+
className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f0-icon-bold"
|
|
83
83
|
fill="none"
|
|
84
84
|
focusable={false}
|
|
85
85
|
meetOrSlice={0}
|
|
@@ -171,7 +171,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
171
171
|
className="max-w-72 min-w-32"
|
|
172
172
|
>
|
|
173
173
|
<Text
|
|
174
|
-
className="px-1.5 text-
|
|
174
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
175
175
|
>
|
|
176
176
|
Manager
|
|
177
177
|
</Text>
|
|
@@ -179,7 +179,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
179
179
|
className="flex flex-shrink justify-center gap-0.5"
|
|
180
180
|
>
|
|
181
181
|
<View
|
|
182
|
-
className="flex rounded font-medium text-
|
|
182
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
183
183
|
>
|
|
184
184
|
<View
|
|
185
185
|
accessibilityState={
|
|
@@ -200,7 +200,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
202
|
accessible={true}
|
|
203
|
-
className="group justify-between rounded text-inherit no-underline hover:bg-
|
|
203
|
+
className="group justify-between rounded text-inherit no-underline hover:bg-f0-background-hover focus-visible:outline-2 focus-visible:outline-f0-border-selected-bold active:bg-f0-background-secondary-hover flex flex-row items-center gap-1.5 p-1.5"
|
|
204
204
|
collapsable={false}
|
|
205
205
|
focusable={true}
|
|
206
206
|
handlePress={[Function]}
|
|
@@ -226,7 +226,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
226
226
|
>
|
|
227
227
|
<View
|
|
228
228
|
aria-hidden={true}
|
|
229
|
-
className="flex shrink-0 items-center justify-center overflow-hidden text-center font-semibold w-5 h-5 rounded-full bg-
|
|
229
|
+
className="flex shrink-0 items-center justify-center overflow-hidden text-center font-semibold w-5 h-5 rounded-full bg-f0-background dark:bg-f0-background-inverse-secondary"
|
|
230
230
|
data-a11y-color-contrast-ignore={true}
|
|
231
231
|
role="img"
|
|
232
232
|
>
|
|
@@ -252,7 +252,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
252
252
|
</View>
|
|
253
253
|
</View>
|
|
254
254
|
<Text
|
|
255
|
-
className="line-clamp-5 text-left text-
|
|
255
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
256
256
|
>
|
|
257
257
|
Saul Dominguez
|
|
258
258
|
</Text>
|
|
@@ -262,7 +262,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
262
262
|
aria-hidden={true}
|
|
263
263
|
bbHeight="100%"
|
|
264
264
|
bbWidth="100%"
|
|
265
|
-
className="shrink-0 w-5 h-5 stroke-md text-
|
|
265
|
+
className="shrink-0 w-5 h-5 stroke-md text-f0-foreground"
|
|
266
266
|
fill="none"
|
|
267
267
|
focusable={false}
|
|
268
268
|
meetOrSlice={0}
|
|
@@ -332,7 +332,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
332
332
|
className="max-w-72 min-w-32"
|
|
333
333
|
>
|
|
334
334
|
<Text
|
|
335
|
-
className="px-1.5 text-
|
|
335
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
336
336
|
>
|
|
337
337
|
Teams
|
|
338
338
|
</Text>
|
|
@@ -340,7 +340,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
340
340
|
className="flex flex-shrink justify-center gap-0.5"
|
|
341
341
|
>
|
|
342
342
|
<View
|
|
343
|
-
className="flex rounded font-medium text-
|
|
343
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
344
344
|
>
|
|
345
345
|
<View
|
|
346
346
|
accessibilityState={
|
|
@@ -361,7 +361,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
361
361
|
}
|
|
362
362
|
}
|
|
363
363
|
accessible={true}
|
|
364
|
-
className="group justify-between rounded text-inherit no-underline hover:bg-
|
|
364
|
+
className="group justify-between rounded text-inherit no-underline hover:bg-f0-background-hover focus-visible:outline-2 focus-visible:outline-f0-border-selected-bold active:bg-f0-background-secondary-hover flex flex-row items-center gap-1.5 p-1.5"
|
|
365
365
|
collapsable={false}
|
|
366
366
|
focusable={true}
|
|
367
367
|
handlePress={[Function]}
|
|
@@ -392,7 +392,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
392
392
|
role="img"
|
|
393
393
|
>
|
|
394
394
|
<Text
|
|
395
|
-
className="text-
|
|
395
|
+
className="text-f0-foreground-inverse/90 text-sm"
|
|
396
396
|
data-a11y-color-contrast-ignore={true}
|
|
397
397
|
>
|
|
398
398
|
M
|
|
@@ -401,7 +401,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
401
401
|
</View>
|
|
402
402
|
</View>
|
|
403
403
|
<Text
|
|
404
|
-
className="line-clamp-5 text-left text-
|
|
404
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
405
405
|
>
|
|
406
406
|
Management
|
|
407
407
|
</Text>
|
|
@@ -411,7 +411,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
411
411
|
aria-hidden={true}
|
|
412
412
|
bbHeight="100%"
|
|
413
413
|
bbWidth="100%"
|
|
414
|
-
className="shrink-0 w-5 h-5 stroke-md text-
|
|
414
|
+
className="shrink-0 w-5 h-5 stroke-md text-f0-foreground"
|
|
415
415
|
fill="none"
|
|
416
416
|
focusable={false}
|
|
417
417
|
meetOrSlice={0}
|
|
@@ -472,7 +472,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
472
472
|
</View>
|
|
473
473
|
</View>
|
|
474
474
|
<View
|
|
475
|
-
className="flex rounded font-medium text-
|
|
475
|
+
className="flex rounded font-medium text-f0-foreground *:flex-1"
|
|
476
476
|
>
|
|
477
477
|
<View
|
|
478
478
|
accessibilityState={
|
|
@@ -493,7 +493,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
493
493
|
}
|
|
494
494
|
}
|
|
495
495
|
accessible={true}
|
|
496
|
-
className="group justify-between rounded text-inherit no-underline hover:bg-
|
|
496
|
+
className="group justify-between rounded text-inherit no-underline hover:bg-f0-background-hover focus-visible:outline-2 focus-visible:outline-f0-border-selected-bold active:bg-f0-background-secondary-hover flex flex-row items-center gap-1.5 p-1.5"
|
|
497
497
|
collapsable={false}
|
|
498
498
|
focusable={true}
|
|
499
499
|
handlePress={[Function]}
|
|
@@ -524,7 +524,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
524
524
|
role="img"
|
|
525
525
|
>
|
|
526
526
|
<Text
|
|
527
|
-
className="text-
|
|
527
|
+
className="text-f0-foreground-inverse/90 text-sm"
|
|
528
528
|
data-a11y-color-contrast-ignore={true}
|
|
529
529
|
>
|
|
530
530
|
E
|
|
@@ -533,7 +533,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
533
533
|
</View>
|
|
534
534
|
</View>
|
|
535
535
|
<Text
|
|
536
|
-
className="line-clamp-5 text-left text-
|
|
536
|
+
className="line-clamp-5 text-left text-f0-foreground"
|
|
537
537
|
>
|
|
538
538
|
Engineering
|
|
539
539
|
</Text>
|
|
@@ -543,7 +543,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
543
543
|
aria-hidden={true}
|
|
544
544
|
bbHeight="100%"
|
|
545
545
|
bbWidth="100%"
|
|
546
|
-
className="shrink-0 w-5 h-5 stroke-md text-
|
|
546
|
+
className="shrink-0 w-5 h-5 stroke-md text-f0-foreground"
|
|
547
547
|
fill="none"
|
|
548
548
|
focusable={false}
|
|
549
549
|
meetOrSlice={0}
|
|
@@ -613,7 +613,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
613
613
|
className="max-w-72 min-w-32"
|
|
614
614
|
>
|
|
615
615
|
<Text
|
|
616
|
-
className="px-1.5 text-
|
|
616
|
+
className="px-1.5 text-f0-foreground-secondary"
|
|
617
617
|
>
|
|
618
618
|
Type
|
|
619
619
|
</Text>
|
|
@@ -645,7 +645,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
645
645
|
}
|
|
646
646
|
}
|
|
647
647
|
accessible={true}
|
|
648
|
-
className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-
|
|
648
|
+
className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
|
|
649
649
|
collapsable={false}
|
|
650
650
|
focusable={true}
|
|
651
651
|
onBlur={[Function]}
|
|
@@ -680,7 +680,7 @@ exports[`DetailsItemsList Snapshot 1`] = `
|
|
|
680
680
|
}
|
|
681
681
|
/>
|
|
682
682
|
<Text
|
|
683
|
-
className="line-clamp-1 text-base font-medium text-
|
|
683
|
+
className="line-clamp-1 text-base font-medium text-f0-foreground"
|
|
684
684
|
>
|
|
685
685
|
Holidays
|
|
686
686
|
</Text>
|
|
@@ -20,7 +20,7 @@ export const DetailsItemsList = function DetailsItemList({
|
|
|
20
20
|
return (
|
|
21
21
|
<View className="flex gap-4">
|
|
22
22
|
{!!title && (
|
|
23
|
-
<Text className="mb-1 pl-1.5 text-sm font-semibold text-
|
|
23
|
+
<Text className="mb-1 pl-1.5 text-sm font-semibold text-f0-foreground-secondary">
|
|
24
24
|
{title.toLocaleUpperCase()}
|
|
25
25
|
</Text>
|
|
26
26
|
)}
|
|
@@ -28,7 +28,7 @@ export const DetailsItemsList = function DetailsItemList({
|
|
|
28
28
|
className={cn(
|
|
29
29
|
"flex",
|
|
30
30
|
tableView
|
|
31
|
-
? "rounded-[16px] border border-solid border-
|
|
31
|
+
? "rounded-[16px] border border-solid border-f0-border-secondary"
|
|
32
32
|
: "gap-3"
|
|
33
33
|
)}
|
|
34
34
|
>
|
|
@@ -43,7 +43,7 @@ export const DetailsItemsList = function DetailsItemList({
|
|
|
43
43
|
isHorizontalItem={isHorizontalItem}
|
|
44
44
|
/>
|
|
45
45
|
{tableView && index !== details.length - 1 && (
|
|
46
|
-
<View className="h-[1px] w-full bg-
|
|
46
|
+
<View className="h-[1px] w-full bg-f0-border-secondary" />
|
|
47
47
|
)}
|
|
48
48
|
</React.Fragment>
|
|
49
49
|
))}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Ref, forwardRef } from "react"
|
|
2
|
+
import Svg, { Path } from "react-native-svg"
|
|
3
|
+
import type { SvgProps } from "react-native-svg"
|
|
4
|
+
const SvgNew = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
d="M10 4.35a.651.651 0 0 1 0 1.3H8A2.35 2.35 0 0 0 5.65 8v8A2.35 2.35 0 0 0 8 18.35h8A2.35 2.35 0 0 0 18.35 16v-2.5a.65.65 0 0 1 1.3 0V16A3.65 3.65 0 0 1 16 19.65H8A3.65 3.65 0 0 1 4.35 16V8A3.65 3.65 0 0 1 8 4.35zm5.746.022a2.745 2.745 0 0 1 3.882 3.882l-5.555 5.557a.65.65 0 0 1-.29.167l-4.074 1.11a.65.65 0 0 1-.797-.797l1.11-4.075.028-.08a.7.7 0 0 1 .14-.208zm2.963.92a1.446 1.446 0 0 0-2.044 0l-5.434 5.433-.767 2.81 2.81-.766 5.435-5.434a1.446 1.446 0 0 0 0-2.044"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
const ForwardRef = forwardRef(SvgNew)
|
|
19
|
+
export default ForwardRef
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Ref, forwardRef } from "react"
|
|
2
|
+
import Svg, { Path } from "react-native-svg"
|
|
3
|
+
import type { SvgProps } from "react-native-svg"
|
|
4
|
+
const SvgQuestionCircle = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
d="M12 4.65a7.35 7.35 0 1 0 0 14.7 7.35 7.35 0 0 0 0-14.7M3.35 12a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0m7.9 3.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0m-.6-5.25a1.35 1.35 0 1 1 2.7 0v.065c0 .71-.575 1.285-1.285 1.285a.715.715 0 0 0-.715.715v.935a.65.65 0 1 0 1.3 0v-.417a2.586 2.586 0 0 0 2-2.518V10.5a2.65 2.65 0 1 0-5.3 0 .65.65 0 1 0 1.3 0"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
)
|
|
20
|
+
const ForwardRef = forwardRef(SvgQuestionCircle)
|
|
21
|
+
export default ForwardRef
|
package/src/icons/app/index.ts
CHANGED
|
@@ -34,6 +34,7 @@ export { default as PersonPlus } from "./PersonPlus"
|
|
|
34
34
|
export { default as Pig } from "./Pig"
|
|
35
35
|
export { default as PushPin } from "./PushPin"
|
|
36
36
|
export { default as PushPinSolid } from "./PushPinSolid"
|
|
37
|
+
export { default as QuestionCircle } from "./QuestionCircle"
|
|
37
38
|
export { default as Record } from "./Record"
|
|
38
39
|
export { default as Shield } from "./Shield"
|
|
39
40
|
export { default as SignPost } from "./SignPost"
|
|
@@ -175,6 +176,7 @@ export { default as Money } from "./Money"
|
|
|
175
176
|
export { default as MoveDown } from "./MoveDown"
|
|
176
177
|
export { default as MoveTop } from "./MoveTop"
|
|
177
178
|
export { default as MoveUp } from "./MoveUp"
|
|
179
|
+
export { default as New } from "./New"
|
|
178
180
|
export { default as Numbers } from "./Numbers"
|
|
179
181
|
export { default as Office } from "./Office"
|
|
180
182
|
export { default as OlList } from "./OlList"
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Ref, forwardRef } from "react"
|
|
2
2
|
import Svg, { G, Path, Defs } from "react-native-svg"
|
|
3
|
+
/* SVGR has dropped some elements not supported by react-native-svg: filter */
|
|
3
4
|
import type { SvgProps } from "react-native-svg"
|
|
4
5
|
const SvgHub = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
6
|
<Svg
|
|
@@ -9,7 +10,7 @@ const SvgHub = (props: SvgProps, ref: Ref<Svg>) => (
|
|
|
9
10
|
ref={ref}
|
|
10
11
|
{...props}
|
|
11
12
|
>
|
|
12
|
-
<G fill="currentColor">
|
|
13
|
+
<G fill="currentColor" filter="url(#Hub_svg__a)">
|
|
13
14
|
<Path d="M4.5 7.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0M4.5 15A1.5 1.5 0 0 1 6 13.5h3a1.5 1.5 0 0 1 1.5 1.5v3A1.5 1.5 0 0 1 9 19.5H6A1.5 1.5 0 0 1 4.5 18zM13.5 6A1.5 1.5 0 0 1 15 4.5h3A1.5 1.5 0 0 1 19.5 6v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 13.5 9zM13.5 15a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3a1.5 1.5 0 0 1-1.5-1.5z" />
|
|
14
15
|
</G>
|
|
15
16
|
<Defs></Defs>
|