@hero-design/rn 8.80.0 → 8.80.1
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +8 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +140 -140
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +140 -140
- package/package.json +2 -3
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +72 -6
- package/src/components/FAB/ActionGroup/ActionItem.tsx +1 -3
- package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +1 -1
- package/src/components/FAB/ActionGroup/StyledActionItem.tsx +2 -2
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +148 -75
- package/src/components/FAB/FAB.tsx +1 -1
- package/src/components/FAB/Pair/__tests__/__snapshots__/index.spec.tsx.snap +24 -2
- package/src/components/FAB/StyledFAB.tsx +2 -3
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +24 -2
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +33 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +1 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +6 -6
- package/src/theme/components/fab.ts +6 -6
- package/stats/8.80.0/rn-stats.html +2 -0
- package/stats/8.80.1/rn-stats.html +4842 -0
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +3 -3
- package/types/components/FAB/StyledFAB.d.ts +2 -3
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Search/utils.d.ts +2 -2
- package/types/components/TextInput/index.d.ts +3 -3
|
@@ -9,6 +9,15 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
|
|
|
9
9
|
}
|
|
10
10
|
>
|
|
11
11
|
<View
|
|
12
|
+
accessibilityState={
|
|
13
|
+
{
|
|
14
|
+
"busy": undefined,
|
|
15
|
+
"checked": undefined,
|
|
16
|
+
"disabled": undefined,
|
|
17
|
+
"expanded": undefined,
|
|
18
|
+
"selected": undefined,
|
|
19
|
+
}
|
|
20
|
+
}
|
|
12
21
|
accessibilityValue={
|
|
13
22
|
{
|
|
14
23
|
"max": undefined,
|
|
@@ -18,6 +27,7 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
|
|
|
18
27
|
}
|
|
19
28
|
}
|
|
20
29
|
accessible={true}
|
|
30
|
+
collapsable={false}
|
|
21
31
|
focusable={false}
|
|
22
32
|
onClick={[Function]}
|
|
23
33
|
onLayout={[Function]}
|
|
@@ -38,6 +48,7 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
|
|
|
38
48
|
"flexDirection": "row",
|
|
39
49
|
"height": 64,
|
|
40
50
|
"justifyContent": "center",
|
|
51
|
+
"opacity": 1,
|
|
41
52
|
"padding": 20,
|
|
42
53
|
"shadowColor": "#001f23",
|
|
43
54
|
"shadowOffset": {
|
|
@@ -137,6 +148,15 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
|
|
|
137
148
|
}
|
|
138
149
|
>
|
|
139
150
|
<View
|
|
151
|
+
accessibilityState={
|
|
152
|
+
{
|
|
153
|
+
"busy": undefined,
|
|
154
|
+
"checked": undefined,
|
|
155
|
+
"disabled": undefined,
|
|
156
|
+
"expanded": undefined,
|
|
157
|
+
"selected": undefined,
|
|
158
|
+
}
|
|
159
|
+
}
|
|
140
160
|
accessibilityValue={
|
|
141
161
|
{
|
|
142
162
|
"max": undefined,
|
|
@@ -146,6 +166,7 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
|
|
|
146
166
|
}
|
|
147
167
|
}
|
|
148
168
|
accessible={true}
|
|
169
|
+
collapsable={false}
|
|
149
170
|
focusable={false}
|
|
150
171
|
onClick={[Function]}
|
|
151
172
|
onLayout={[Function]}
|
|
@@ -166,6 +187,7 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
|
|
|
166
187
|
"flexDirection": "row",
|
|
167
188
|
"height": 64,
|
|
168
189
|
"justifyContent": "center",
|
|
190
|
+
"opacity": 1,
|
|
169
191
|
"padding": 20,
|
|
170
192
|
"shadowColor": "#001f23",
|
|
171
193
|
"shadowOffset": {
|
|
@@ -278,6 +300,15 @@ exports[`FAB when title has value renders correctly 1`] = `
|
|
|
278
300
|
}
|
|
279
301
|
>
|
|
280
302
|
<View
|
|
303
|
+
accessibilityState={
|
|
304
|
+
{
|
|
305
|
+
"busy": undefined,
|
|
306
|
+
"checked": undefined,
|
|
307
|
+
"disabled": undefined,
|
|
308
|
+
"expanded": undefined,
|
|
309
|
+
"selected": undefined,
|
|
310
|
+
}
|
|
311
|
+
}
|
|
281
312
|
accessibilityValue={
|
|
282
313
|
{
|
|
283
314
|
"max": undefined,
|
|
@@ -287,6 +318,7 @@ exports[`FAB when title has value renders correctly 1`] = `
|
|
|
287
318
|
}
|
|
288
319
|
}
|
|
289
320
|
accessible={true}
|
|
321
|
+
collapsable={false}
|
|
290
322
|
focusable={false}
|
|
291
323
|
onClick={[Function]}
|
|
292
324
|
onLayout={[Function]}
|
|
@@ -307,6 +339,7 @@ exports[`FAB when title has value renders correctly 1`] = `
|
|
|
307
339
|
"flexDirection": "row",
|
|
308
340
|
"height": 64,
|
|
309
341
|
"justifyContent": "center",
|
|
342
|
+
"opacity": 1,
|
|
310
343
|
"padding": 20,
|
|
311
344
|
"shadowColor": "#001f23",
|
|
312
345
|
"shadowOffset": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"activate":59000,"add-emoji":59001,"add-person":59002,"adjustment":59003,"alignment":59004,"antenna":59005,"archive":59006,"assignment-warning":59007,"bank":59008,"bell":59009,"billing":59010,"bolt":59011,"bookmark-added":59012,"bookmark":59013,"box-check":59014,"box":59015,"bpay":59016,"buildings":59017,"cake":59018,"calendar-clock":59019,"calendar":59020,"candy-box-menu":59021,"caret-down-small":59022,"caret-down":59023,"caret-left-small":59024,"caret-left":59025,"caret-right-small":59026,"caret-right":59027,"caret-up-small":59028,"caret-up":59029,"check-radio":59030,"circle-add":59031,"circle-cancel":59032,"circle-check":59033,"circle-down":59034,"circle-info":59035,"circle-left":59036,"circle-ok":59037,"circle-pencil":59038,"circle-question":59039,"circle-remove":59040,"circle-right":59041,"circle-up":59042,"circle-warning":59043,"clock-3":59044,"clock":59045,"cloud-download":59046,"cloud-upload":59047,"cog":59048,"coin":59049,"contacts":59050,"credit-card":59051,"diamond":59052,"direction-arrows":59053,"directory":59054,"document":59055,"dollar-coin-shine":59056,"dot":59057,"double-buildings":59058,"edit-template":59059,"envelope":59060,"exclude":59061,"expand-content":59062,"expense":59063,"explore_nearby":59064,"eye-circle":59065,"eye-invisible":59066,"eye":59067,"face-meh":59068,"face-sad":59069,"face-smiley":59070,"feed":59071,"feedbacks":59072,"file-certified":59073,"file-clone":59074,"file-copy":59075,"file-csv":59076,"file-dispose":59077,"file-doc":59078,"file-excel":59079,"file-export":59080,"file-lock":59081,"file-pdf":59082,"file-powerpoint":59083,"file-search":59084,"file-secured":59085,"file-sheets":59086,"file-slide":59087,"file-verified":59088,"file-word":59089,"file":59090,"filter":59091,"folder-user":59092,"folder":59093,"format-bold":59094,"format-heading1":59095,"format-heading2":59096,"format-italic":59097,"format-list-bulleted":59098,"format-list-numbered":59099,"format-underlined":59100,"funnel-filter":59101,"global-dollar":59102,"globe":59103,"graduation-cap":59104,"graph":59105,"happy-sun":59106,"health-bag":59107,"heart":59108,"hero-points":59109,"home":59110,"image":59111,"import":59112,"incident-siren":59113,"instapay-daily":59114,"instapay-now":59115,"instapay":59116,"list":59117,"loading-2":59118,"loading":59119,"location-on":59120,"location":59121,"lock":59122,"looks-one":59123,"looks-two":59124,"media-content":59125,"menu":59126,"money-notes":59127,"moneybag":59128,"moon":59129,"multiple-stars":59130,"multiple-users":59131,"near-me":59132,"node":59133,"open-folder":59134,"paperclip":59135,"payment-summary":59136,"pencil":59137,"phone":59138,"piggy-bank":59139,"plane-up":59140,"plane":59141,"play-arrow":59142,"play-circle":59143,"print":59144,"raising-hands":59145,"reply-arrow":59146,"reply":59147,"reschedule":59148,"rostering":59149,"salary-sacrifice":59150,"save":59151,"schedule-send":59152,"schedule":59153,"search-person":59154,"send":59155,"speaker-active":59156,"speaker":59157,"star-award":59158,"star-badge":59159,"star-circle":59160,"star-medal":59161,"star":59162,"steps-circle":59163,"stopwatch":59164,"suitcase":59165,"surfing":59166,"survey":59167,"swag-pillar-benefit":59168,"swag-pillar-career":59169,"swag-pillar-money":59170,"swag-pillar-work":59171,"swag":59172,"swipe-right":59173,"switch":59174,"tag":59175,"target":59176,"teams":59177,"thumb-down":59178,"timesheet":59179,"touch-id":59180,"trash-bin":59181,"unlock":59182,"user":59183,"video-1":59184,"video-2":59185,"wallet":59186,"warning":59187,"activate-outlined":59188,"add-credit-card-outlined":59189,"add-person-outlined":59190,"add-section-outlined":59191,"add-time-outlined":59192,"add":59193,"adjustment-outlined":59194,"afternoon-outlined":59195,"ai-outlined":59196,"alignment-2-outlined":59197,"alignment-outlined":59198,"all-caps":59199,"application-outlined":59200,"arrow-down":59201,"arrow-downwards":59202,"arrow-left":59203,"arrow-leftwards":59204,"arrow-right":59205,"arrow-rightwards":59206,"arrow-up":59207,"arrow-upwards":59208,"article-outlined":59209,"at-sign":59210,"auto-graph-outlined":59211,"beer-outlined":59212,"bell-active-outlined":59213,"bell-outlined":59214,"bell-slash-outlined":59215,"bill-management-outlined":59216,"billing-outlined":59217,"body-outlined":59218,"bold":59219,"bolt-outlined":59220,"book-outlined":59221,"bookmark-added-outlined":59222,"bookmark-outlined":59223,"box-1-outlined":59224,"box-check-outlined":59225,"box-outlined":59226,"bullet-points":59227,"cake-outlined":59228,"calendar-dates-outlined":59229,"calendar-star-outlined":59230,"call-outlined":59231,"call-split-outlined":59232,"camera-outlined":59233,"cancel":59234,"car-forward-outlined":59235,"cashback-outlined":59236,"charging-station-outlined":59237,"chat-bubble-outlined":59238,"chat-unread-outlined":59239,"checkmark":59240,"circle-add-outlined":59241,"circle-cancel-outlined":59242,"circle-down-outlined":59243,"circle-info-outlined":59244,"circle-left-outlined":59245,"circle-ok-outlined":59246,"circle-question-outlined":59247,"circle-remove-outlined":59248,"circle-right-outlined":59249,"circle-up-outlined":59250,"circle-warning-outlined":59251,"clock-2-outlined":59252,"clock-in-outlined":59253,"clock-out-outlined":59254,"clock-outlined":59255,"cog-outlined":59256,"coin-outlined":59257,"coin-super-outlined":59258,"comment-outlined":59259,"contacts-outlined":59260,"contacts-user-outlined":59261,"credit-card-outlined":59262,"cup-outlined":59263,"dentistry-outlined":59264,"direction-arrows-outlined":59265,"directory-outlined":59266,"document-outlined":59267,"dollar-box-outlined":59268,"dollar-card-outlined":59269,"dollar-coin-shine-outlined":59270,"dollar-credit-card-outlined":59271,"dollar-sign":59272,"double-buildings-outlined":59273,"double-left-arrows":59274,"double-right-arrows":59275,"download-box-outlined":59276,"download-outlined":59277,"edit-template-outlined":59278,"email-outlined":59279,"end-break-outlined":59280,"enter-arrow":59281,"envelope-outlined":59282,"evening-outlined":59283,"expense-approval-outlined":59284,"expense-outlined":59285,"explore-outlined":59286,"extension-outlined":59287,"external-link":59288,"eye-invisible-outlined":59289,"eye-outlined":59290,"face-id":59291,"face-meh-outlined":59292,"face-open-smiley-outlined":59293,"face-sad-outlined":59294,"face-smiley-outlined":59295,"fastfood-outlined":59296,"feed-outlined":59297,"file-certified-outlined":59298,"file-clone-outlined":59299,"file-copy-outlined":59300,"file-dispose-outlined":59301,"file-dollar-certified-outlined":59302,"file-dollar-outlined":59303,"file-download-outlined":59304,"file-export-outlined":59305,"file-lock-outlined":59306,"file-outlined":59307,"file-search-outlined":59308,"file-secured-outlined":59309,"file-statutory-outlined":59310,"file-verified-outlined":59311,"filter-outlined":59312,"folder-outlined":59313,"folder-
|
|
1
|
+
{"activate":59000,"add-emoji":59001,"add-person":59002,"adjustment":59003,"alignment":59004,"antenna":59005,"archive":59006,"assignment-warning":59007,"bank":59008,"bell":59009,"billing":59010,"bolt":59011,"bookmark-added":59012,"bookmark":59013,"box-check":59014,"box":59015,"bpay":59016,"buildings":59017,"cake":59018,"calendar-clock":59019,"calendar":59020,"candy-box-menu":59021,"caret-down-small":59022,"caret-down":59023,"caret-left-small":59024,"caret-left":59025,"caret-right-small":59026,"caret-right":59027,"caret-up-small":59028,"caret-up":59029,"check-radio":59030,"circle-add":59031,"circle-cancel":59032,"circle-check":59033,"circle-down":59034,"circle-info":59035,"circle-left":59036,"circle-ok":59037,"circle-pencil":59038,"circle-question":59039,"circle-remove":59040,"circle-right":59041,"circle-up":59042,"circle-warning":59043,"clock-3":59044,"clock":59045,"cloud-download":59046,"cloud-upload":59047,"cog":59048,"coin":59049,"contacts":59050,"credit-card":59051,"diamond":59052,"direction-arrows":59053,"directory":59054,"document":59055,"dollar-coin-shine":59056,"dot":59057,"double-buildings":59058,"edit-template":59059,"envelope":59060,"exclude":59061,"expand-content":59062,"expense":59063,"explore_nearby":59064,"eye-circle":59065,"eye-invisible":59066,"eye":59067,"face-meh":59068,"face-sad":59069,"face-smiley":59070,"feed":59071,"feedbacks":59072,"file-certified":59073,"file-clone":59074,"file-copy":59075,"file-csv":59076,"file-dispose":59077,"file-doc":59078,"file-excel":59079,"file-export":59080,"file-lock":59081,"file-pdf":59082,"file-powerpoint":59083,"file-search":59084,"file-secured":59085,"file-sheets":59086,"file-slide":59087,"file-verified":59088,"file-word":59089,"file":59090,"filter":59091,"folder-user":59092,"folder":59093,"format-bold":59094,"format-heading1":59095,"format-heading2":59096,"format-italic":59097,"format-list-bulleted":59098,"format-list-numbered":59099,"format-underlined":59100,"funnel-filter":59101,"global-dollar":59102,"globe":59103,"graduation-cap":59104,"graph":59105,"happy-sun":59106,"health-bag":59107,"heart":59108,"hero-points":59109,"home":59110,"image":59111,"import":59112,"incident-siren":59113,"instapay-daily":59114,"instapay-now":59115,"instapay":59116,"list":59117,"loading-2":59118,"loading":59119,"location-on":59120,"location":59121,"lock":59122,"looks-one":59123,"looks-two":59124,"media-content":59125,"menu":59126,"money-notes":59127,"moneybag":59128,"moon":59129,"multiple-stars":59130,"multiple-users":59131,"near-me":59132,"node":59133,"open-folder":59134,"paperclip":59135,"payment-summary":59136,"pencil":59137,"phone":59138,"piggy-bank":59139,"plane-up":59140,"plane":59141,"play-arrow":59142,"play-circle":59143,"print":59144,"raising-hands":59145,"reply-arrow":59146,"reply":59147,"reschedule":59148,"rostering":59149,"salary-sacrifice":59150,"save":59151,"schedule-send":59152,"schedule":59153,"search-person":59154,"send":59155,"speaker-active":59156,"speaker":59157,"star-award":59158,"star-badge":59159,"star-circle":59160,"star-medal":59161,"star":59162,"steps-circle":59163,"stopwatch":59164,"suitcase":59165,"surfing":59166,"survey":59167,"swag-pillar-benefit":59168,"swag-pillar-career":59169,"swag-pillar-money":59170,"swag-pillar-work":59171,"swag":59172,"swipe-right":59173,"switch":59174,"tag":59175,"target":59176,"teams":59177,"thumb-down":59178,"timesheet":59179,"touch-id":59180,"trash-bin":59181,"unlock":59182,"user":59183,"video-1":59184,"video-2":59185,"wallet":59186,"warning":59187,"activate-outlined":59188,"add-credit-card-outlined":59189,"add-person-outlined":59190,"add-section-outlined":59191,"add-time-outlined":59192,"add":59193,"adjustment-outlined":59194,"afternoon-outlined":59195,"ai-outlined":59196,"alignment-2-outlined":59197,"alignment-outlined":59198,"all-caps":59199,"application-outlined":59200,"arrow-down":59201,"arrow-downwards":59202,"arrow-left":59203,"arrow-leftwards":59204,"arrow-right":59205,"arrow-rightwards":59206,"arrow-up":59207,"arrow-upwards":59208,"article-outlined":59209,"at-sign":59210,"auto-graph-outlined":59211,"beer-outlined":59212,"bell-active-outlined":59213,"bell-outlined":59214,"bell-slash-outlined":59215,"bill-management-outlined":59216,"billing-outlined":59217,"body-outlined":59218,"bold":59219,"bolt-outlined":59220,"book-outlined":59221,"bookmark-added-outlined":59222,"bookmark-outlined":59223,"box-1-outlined":59224,"box-check-outlined":59225,"box-outlined":59226,"bullet-points":59227,"cake-outlined":59228,"calendar-dates-outlined":59229,"calendar-star-outlined":59230,"call-outlined":59231,"call-split-outlined":59232,"camera-outlined":59233,"cancel":59234,"car-forward-outlined":59235,"cashback-outlined":59236,"charging-station-outlined":59237,"chat-bubble-outlined":59238,"chat-unread-outlined":59239,"checkmark":59240,"circle-add-outlined":59241,"circle-cancel-outlined":59242,"circle-down-outlined":59243,"circle-info-outlined":59244,"circle-left-outlined":59245,"circle-ok-outlined":59246,"circle-question-outlined":59247,"circle-remove-outlined":59248,"circle-right-outlined":59249,"circle-up-outlined":59250,"circle-warning-outlined":59251,"clock-2-outlined":59252,"clock-in-outlined":59253,"clock-out-outlined":59254,"clock-outlined":59255,"cog-outlined":59256,"coin-outlined":59257,"coin-super-outlined":59258,"comment-outlined":59259,"contacts-outlined":59260,"contacts-user-outlined":59261,"credit-card-outlined":59262,"cup-outlined":59263,"dentistry-outlined":59264,"direction-arrows-outlined":59265,"directory-outlined":59266,"document-outlined":59267,"dollar-box-outlined":59268,"dollar-card-outlined":59269,"dollar-coin-shine-outlined":59270,"dollar-credit-card-outlined":59271,"dollar-sign":59272,"double-buildings-outlined":59273,"double-left-arrows":59274,"double-right-arrows":59275,"download-box-outlined":59276,"download-outlined":59277,"edit-template-outlined":59278,"email-outlined":59279,"end-break-outlined":59280,"enter-arrow":59281,"envelope-outlined":59282,"evening-outlined":59283,"expense-approval-outlined":59284,"expense-outlined":59285,"explore-outlined":59286,"extension-outlined":59287,"external-link":59288,"eye-invisible-outlined":59289,"eye-outlined":59290,"face-id":59291,"face-meh-outlined":59292,"face-open-smiley-outlined":59293,"face-sad-outlined":59294,"face-smiley-outlined":59295,"fastfood-outlined":59296,"feed-outlined":59297,"file-certified-outlined":59298,"file-clone-outlined":59299,"file-copy-outlined":59300,"file-dispose-outlined":59301,"file-dollar-certified-outlined":59302,"file-dollar-outlined":59303,"file-download-outlined":59304,"file-export-outlined":59305,"file-lock-outlined":59306,"file-outlined":59307,"file-search-outlined":59308,"file-secured-outlined":59309,"file-statutory-outlined":59310,"file-verified-outlined":59311,"filter-outlined":59312,"folder-outlined":59313,"folder-upload-outlined":59314,"folder-user-outlined":59315,"form-outlined":59316,"funnel-filter-outline":59317,"goal-outlined":59318,"graph-outlined":59319,"hand-holding-user-outlined":59320,"handshake-outlined":59321,"happy-sun-outlined":59322,"health-bag-outlined":59323,"heart-outlined":59324,"home-active-outlined":59325,"home-outlined":59326,"id-card-outlined":59327,"image-outlined":59328,"import-outlined":59329,"instapay-outlined":59330,"italic":59331,"job-search-outlined":59332,"leave-approval-outlined":59333,"link-1":59334,"link-2":59335,"list-outlined":59336,"live-help-outlined":59337,"local_mall_outlined":59338,"location-on-outlined":59339,"location-outlined":59340,"lock-outlined":59341,"locked-file-outlined":59342,"log-out":59343,"mail-outlined":59344,"map-outlined":59345,"media-content-outlined":59346,"menu-close":59347,"menu-expand":59348,"menu-fold-outlined":59349,"menu-unfold-outlined":59350,"moneybag-outlined":59351,"moon-outlined":59352,"more-horizontal":59353,"more-vertical":59354,"morning-outlined":59355,"multiple-folders-outlined":59356,"multiple-users-outlined":59357,"near-me-outlined":59358,"node-outlined":59359,"number-points":59360,"number":59361,"overview-outlined":59362,"payment-summary-outlined":59363,"payslip-outlined":59364,"pencil-outlined":59365,"percentage":59366,"phone-outlined":59367,"piggy-bank-outlined":59368,"plane-outlined":59369,"play-circle-outlined":59370,"print-outlined":59371,"propane-tank-outlined":59372,"qr-code-outlined":59373,"qualification-outlined":59374,"re-assign":59375,"redeem":59376,"refresh":59377,"remove":59378,"reply-outlined":59379,"restart":59380,"resume-outlined":59381,"return-arrow":59382,"rostering-outlined":59383,"safety-outlined":59384,"save-outlined":59385,"schedule-outlined":59386,"search-outlined":59387,"search-secured-outlined":59388,"send-outlined":59389,"share-1":59390,"share-2":59391,"share-outlined-2":59392,"share-outlined":59393,"shopping_basket_outlined":59394,"show-chart-outlined":59395,"single-down-arrow":59396,"single-left-arrow":59397,"single-right-arrow":59398,"single-up-arrow":59399,"smart-match-outlined":59400,"sparkle-outlined":59401,"speaker-active-outlined":59402,"speaker-outlined":59403,"star-circle-outlined":59404,"star-outlined":59405,"start-break-outlined":59406,"stash-outlined":59407,"stopwatch-outlined":59408,"strikethrough":59409,"styler-outlined":59410,"suitcase-clock-outlined":59411,"suitcase-outlined":59412,"survey-outlined":59413,"switch-outlined":59414,"sync":59415,"tag-outlined":59416,"target-outlined":59417,"tennis-outlined":59418,"thumb-down-outlined":59419,"ticket-outlined":59420,"timesheet-outlined":59421,"timesheets-outlined":59422,"today-outlined":59423,"transfer":59424,"trash-bin-outlined":59425,"umbrela-outlined":59426,"unavailability-outlined":59427,"unavailable":59428,"underline":59429,"union-outlined":59430,"unlock-outlined":59431,"upload-outlined":59432,"user-circle-outlined":59433,"user-gear-outlined":59434,"user-outlined":59435,"user-rectangle-outlined":59436,"video-1-outlined":59437,"video-2-outlined":59438,"volunteer-outlined":59439,"wallet-outlined":59440,"wellness-outlined":59441}
|
|
@@ -532,13 +532,13 @@ exports[`theme returns correct theme object 1`] = `
|
|
|
532
532
|
},
|
|
533
533
|
"fab": {
|
|
534
534
|
"colors": {
|
|
535
|
-
"actionItemBackground": "#
|
|
536
|
-
"actionItemPressedBackground": "#
|
|
535
|
+
"actionItemBackground": "#000000",
|
|
536
|
+
"actionItemPressedBackground": "#000000",
|
|
537
537
|
"actionItemText": "#ffffff",
|
|
538
|
-
"backdropBackground": "#
|
|
539
|
-
"buttonActiveBackground": "#
|
|
540
|
-
"buttonBackground": "#
|
|
541
|
-
"buttonPressedBackground": "#
|
|
538
|
+
"backdropBackground": "#f6f6f7",
|
|
539
|
+
"buttonActiveBackground": "#000000",
|
|
540
|
+
"buttonBackground": "#000000",
|
|
541
|
+
"buttonPressedBackground": "#000000",
|
|
542
542
|
"icon": "#ffffff",
|
|
543
543
|
"titleText": "#ffffff",
|
|
544
544
|
},
|
|
@@ -2,13 +2,13 @@ import type { GlobalTheme } from '../global';
|
|
|
2
2
|
|
|
3
3
|
const getFABTheme = (theme: GlobalTheme) => {
|
|
4
4
|
const colors = {
|
|
5
|
-
buttonBackground: theme.colors.
|
|
6
|
-
buttonPressedBackground: theme.colors.
|
|
7
|
-
buttonActiveBackground: theme.colors.
|
|
5
|
+
buttonBackground: theme.colors.overlayGlobalSurface,
|
|
6
|
+
buttonPressedBackground: theme.colors.overlayGlobalSurface,
|
|
7
|
+
buttonActiveBackground: theme.colors.overlayGlobalSurface,
|
|
8
8
|
icon: theme.colors.onPrimary,
|
|
9
|
-
actionItemBackground: theme.colors.
|
|
10
|
-
actionItemPressedBackground: theme.colors.
|
|
11
|
-
backdropBackground: theme.colors.
|
|
9
|
+
actionItemBackground: theme.colors.overlayGlobalSurface,
|
|
10
|
+
actionItemPressedBackground: theme.colors.overlayGlobalSurface,
|
|
11
|
+
backdropBackground: theme.colors.defaultSurface,
|
|
12
12
|
titleText: theme.colors.onPrimary,
|
|
13
13
|
actionItemText: theme.colors.onPrimary,
|
|
14
14
|
};
|