@hero-design/rn 8.50.0 → 8.52.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.
Files changed (33) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/CHANGELOG.md +20 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +332 -307
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +332 -307
  7. package/package.json +1 -1
  8. package/src/components/Carousel/__tests__/index.spec.tsx +14 -0
  9. package/src/components/Carousel/index.tsx +15 -14
  10. package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +6 -3
  11. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +2 -1
  12. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +2 -1
  13. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +2 -1
  14. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  15. package/src/components/Icon/IconList.ts +5 -0
  16. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -2
  17. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +12 -6
  18. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +10 -5
  19. package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +90 -54
  20. package/src/components/Swipeable/index.tsx +31 -17
  21. package/src/components/TextInput/StyledTextInput.tsx +3 -4
  22. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +0 -10
  23. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +34 -25
  24. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +4 -2
  25. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +4 -2
  26. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +5 -2
  27. package/src/theme/components/swipeable.ts +6 -1
  28. package/src/theme/components/textInput.ts +1 -2
  29. package/types/components/Icon/IconList.d.ts +1 -1
  30. package/types/components/Icon/index.d.ts +1 -1
  31. package/types/components/Icon/utils.d.ts +1 -1
  32. package/types/theme/components/swipeable.d.ts +4 -0
  33. package/types/theme/components/textInput.d.ts +1 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.50.0",
3
+ "version": "8.52.0",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -159,4 +159,18 @@ describe('Carousel', () => {
159
159
  selected: true,
160
160
  });
161
161
  });
162
+ it('should not render page control when there is only one item', () => {
163
+ const onPress = jest.fn();
164
+ const { queryByTestId } = renderWithTheme(
165
+ <Carousel
166
+ testID="carousel"
167
+ items={[carouselData[0]]}
168
+ renderActions={(_) => {
169
+ return <Button text="Skip" onPress={onPress} />;
170
+ }}
171
+ />
172
+ );
173
+
174
+ expect(queryByTestId('page-control-indicator1')).toBeFalsy();
175
+ });
162
176
  });
@@ -106,6 +106,9 @@ const Carousel = ({
106
106
  const [currentSlideIndex, setCurrentSlideIndex] =
107
107
  useStateFromProp(selectedItemIndex);
108
108
 
109
+ const shouldRenderPagination =
110
+ items.length > 1 && shouldShowPagination(currentSlideIndex);
111
+
109
112
  const internalOnItemIndexChange = useCallback(
110
113
  (index: number) => {
111
114
  setCurrentSlideIndex(index);
@@ -155,13 +158,12 @@ const Carousel = ({
155
158
  />
156
159
 
157
160
  <StyledPageControlWrapper>
158
- {pageControlPosition === 'top' &&
159
- shouldShowPagination(currentSlideIndex) && (
160
- <StyledPageControl
161
- numberOfPages={items.length}
162
- currentPage={currentSlideIndex}
163
- />
164
- )}
161
+ {pageControlPosition === 'top' && shouldRenderPagination && (
162
+ <StyledPageControl
163
+ numberOfPages={items.length}
164
+ currentPage={currentSlideIndex}
165
+ />
166
+ )}
165
167
  </StyledPageControlWrapper>
166
168
 
167
169
  <StyledCarouselView>
@@ -198,13 +200,12 @@ const Carousel = ({
198
200
  />
199
201
  <StyledCarouselFooterWrapper>
200
202
  {renderActions && renderActions(currentSlideIndex)}
201
- {pageControlPosition === 'bottom' &&
202
- shouldShowPagination(currentSlideIndex) && (
203
- <StyledPageControl
204
- numberOfPages={items.length}
205
- currentPage={currentSlideIndex}
206
- />
207
- )}
203
+ {pageControlPosition === 'bottom' && shouldRenderPagination && (
204
+ <StyledPageControl
205
+ numberOfPages={items.length}
206
+ currentPage={currentSlideIndex}
207
+ />
208
+ )}
208
209
  </StyledCarouselFooterWrapper>
209
210
  </StyledCarouselView>
210
211
  </View>
@@ -235,7 +235,7 @@ exports[`DatePicker renders DatePickerAndroid when OS is android 1`] = `
235
235
  [
236
236
  {
237
237
  "minHeight": 16,
238
- "paddingLeft": 16,
238
+ "paddingHorizontal": 16,
239
239
  "paddingTop": 2,
240
240
  },
241
241
  undefined,
@@ -246,6 +246,7 @@ exports[`DatePicker renders DatePickerAndroid when OS is android 1`] = `
246
246
  style={
247
247
  [
248
248
  {
249
+ "alignItems": "flex-start",
249
250
  "flexDirection": "row",
250
251
  "justifyContent": "space-between",
251
252
  },
@@ -515,7 +516,7 @@ exports[`DatePicker renders DatePickerIOS when OS is iOS 1`] = `
515
516
  [
516
517
  {
517
518
  "minHeight": 16,
518
- "paddingLeft": 16,
519
+ "paddingHorizontal": 16,
519
520
  "paddingTop": 2,
520
521
  },
521
522
  undefined,
@@ -526,6 +527,7 @@ exports[`DatePicker renders DatePickerIOS when OS is iOS 1`] = `
526
527
  style={
527
528
  [
528
529
  {
530
+ "alignItems": "flex-start",
529
531
  "flexDirection": "row",
530
532
  "justifyContent": "space-between",
531
533
  },
@@ -801,7 +803,7 @@ exports[`DatePicker renders variant Calendar 1`] = `
801
803
  [
802
804
  {
803
805
  "minHeight": 16,
804
- "paddingLeft": 16,
806
+ "paddingHorizontal": 16,
805
807
  "paddingTop": 2,
806
808
  },
807
809
  undefined,
@@ -812,6 +814,7 @@ exports[`DatePicker renders variant Calendar 1`] = `
812
814
  style={
813
815
  [
814
816
  {
817
+ "alignItems": "flex-start",
815
818
  "flexDirection": "row",
816
819
  "justifyContent": "space-between",
817
820
  },
@@ -235,7 +235,7 @@ exports[`DatePickerAndroid renders correctly 1`] = `
235
235
  [
236
236
  {
237
237
  "minHeight": 16,
238
- "paddingLeft": 16,
238
+ "paddingHorizontal": 16,
239
239
  "paddingTop": 2,
240
240
  },
241
241
  undefined,
@@ -246,6 +246,7 @@ exports[`DatePickerAndroid renders correctly 1`] = `
246
246
  style={
247
247
  [
248
248
  {
249
+ "alignItems": "flex-start",
249
250
  "flexDirection": "row",
250
251
  "justifyContent": "space-between",
251
252
  },
@@ -235,7 +235,7 @@ exports[`DatePickerCalendar renders correctly 1`] = `
235
235
  [
236
236
  {
237
237
  "minHeight": 16,
238
- "paddingLeft": 16,
238
+ "paddingHorizontal": 16,
239
239
  "paddingTop": 2,
240
240
  },
241
241
  undefined,
@@ -246,6 +246,7 @@ exports[`DatePickerCalendar renders correctly 1`] = `
246
246
  style={
247
247
  [
248
248
  {
249
+ "alignItems": "flex-start",
249
250
  "flexDirection": "row",
250
251
  "justifyContent": "space-between",
251
252
  },
@@ -235,7 +235,7 @@ exports[`DatePickerIOS renders correctly 1`] = `
235
235
  [
236
236
  {
237
237
  "minHeight": 16,
238
- "paddingLeft": 16,
238
+ "paddingHorizontal": 16,
239
239
  "paddingTop": 2,
240
240
  },
241
241
  undefined,
@@ -246,6 +246,7 @@ exports[`DatePickerIOS renders correctly 1`] = `
246
246
  style={
247
247
  [
248
248
  {
249
+ "alignItems": "flex-start",
249
250
  "flexDirection": "row",
250
251
  "justifyContent": "space-between",
251
252
  },
@@ -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,"double-buildings":59057,"edit-template":59058,"envelope":59059,"exclude":59060,"expand-content":59061,"expense":59062,"eye-circle":59063,"eye-invisible":59064,"eye":59065,"face-meh":59066,"face-sad":59067,"face-smiley":59068,"feed":59069,"feedbacks":59070,"file-certified":59071,"file-clone":59072,"file-copy":59073,"file-csv":59074,"file-dispose":59075,"file-doc":59076,"file-excel":59077,"file-export":59078,"file-lock":59079,"file-pdf":59080,"file-powerpoint":59081,"file-search":59082,"file-secured":59083,"file-sheets":59084,"file-slide":59085,"file-verified":59086,"file-word":59087,"file":59088,"filter":59089,"folder-user":59090,"folder":59091,"format-bold":59092,"format-heading1":59093,"format-heading2":59094,"format-italic":59095,"format-list-bulleted":59096,"format-list-numbered":59097,"format-underlined":59098,"funnel-filter":59099,"global-dollar":59100,"globe":59101,"graduation-cap":59102,"graph":59103,"happy-sun":59104,"health-bag":59105,"heart":59106,"home":59107,"image":59108,"import":59109,"incident-siren":59110,"instapay":59111,"list":59112,"loading-2":59113,"loading":59114,"location":59115,"lock":59116,"looks-one":59117,"looks-two":59118,"media-content":59119,"menu":59120,"money-notes":59121,"moneybag":59122,"moon":59123,"multiple-stars":59124,"multiple-users":59125,"near-me":59126,"node":59127,"open-folder":59128,"paperclip":59129,"payment-summary":59130,"pencil":59131,"phone":59132,"piggy-bank":59133,"plane-up":59134,"plane":59135,"play-circle":59136,"print":59137,"raising-hands":59138,"reply-arrow":59139,"reply":59140,"reschedule":59141,"rostering":59142,"save":59143,"schedule-send":59144,"schedule":59145,"search-person":59146,"send":59147,"speaker-active":59148,"speaker":59149,"star-award":59150,"star-badge":59151,"star-circle":59152,"star-medal":59153,"star":59154,"steps-circle":59155,"stopwatch":59156,"suitcase":59157,"surfing":59158,"survey":59159,"swag-pillar-benefit":59160,"swag-pillar-career":59161,"swag-pillar-money":59162,"swag-pillar-work":59163,"swag":59164,"swipe-right":59165,"switch":59166,"tag":59167,"target":59168,"teams":59169,"timesheet":59170,"touch-id":59171,"trash-bin":59172,"unlock":59173,"user":59174,"video-1":59175,"video-2":59176,"wallet":59177,"warning":59178,"activate-outlined":59179,"add-credit-card-outlined":59180,"add-person-outlined":59181,"add-section-outlined":59182,"add-time-outlined":59183,"add":59184,"adjustment-outlined":59185,"ai-outlined":59186,"alignment-2-outlined":59187,"alignment-outlined":59188,"all-caps":59189,"arrow-down":59190,"arrow-downwards":59191,"arrow-left":59192,"arrow-leftwards":59193,"arrow-right":59194,"arrow-rightwards":59195,"arrow-up":59196,"arrow-upwards":59197,"article-outlined":59198,"at-sign":59199,"auto-graph-outlined":59200,"beer-outlined":59201,"bell-active-outlined":59202,"bell-outlined":59203,"bell-slash-outlined":59204,"billing-outlined":59205,"body-outlined":59206,"bold":59207,"bolt-outlined":59208,"book-outlined":59209,"bookmark-added-outlined":59210,"bookmark-outlined":59211,"box-check-outlined":59212,"box-outlined":59213,"bullet-points":59214,"cake-outlined":59215,"calendar-dates-outlined":59216,"calendar-star-outlined":59217,"call-outlined":59218,"call-split-outlined":59219,"camera-outlined":59220,"cancel":59221,"car-forward-outlined":59222,"charging-station-outlined":59223,"chat-bubble-outlined":59224,"chat-unread-outlined":59225,"checkmark":59226,"circle-add-outlined":59227,"circle-cancel-outlined":59228,"circle-down-outlined":59229,"circle-info-outlined":59230,"circle-left-outlined":59231,"circle-ok-outlined":59232,"circle-question-outlined":59233,"circle-remove-outlined":59234,"circle-right-outlined":59235,"circle-up-outlined":59236,"circle-warning-outlined":59237,"clock-2-outlined":59238,"clock-outlined":59239,"cog-outlined":59240,"coin-outlined":59241,"coin-super-outlined":59242,"comment-outlined":59243,"contacts-outlined":59244,"contacts-user-outlined":59245,"credit-card-outlined":59246,"cup-outlined":59247,"dentistry-outlined":59248,"direction-arrows-outlined":59249,"directory-outlined":59250,"document-outlined":59251,"dollar-box-outlined":59252,"dollar-card-outlined":59253,"dollar-coin-shine-outlined":59254,"dollar-credit-card-outlined":59255,"dollar-sign":59256,"double-buildings-outlined":59257,"double-left-arrows":59258,"double-right-arrows":59259,"download-box-outlined":59260,"download-outlined":59261,"edit-template-outlined":59262,"email-outlined":59263,"enter-arrow":59264,"envelope-outlined":59265,"expense-approval-outlined":59266,"expense-outlined":59267,"explore-outlined":59268,"extension-outlined":59269,"external-link":59270,"eye-invisible-outlined":59271,"eye-outlined":59272,"face-id":59273,"face-meh-outlined":59274,"face-open-smiley-outlined":59275,"face-sad-outlined":59276,"face-smiley-outlined":59277,"fastfood-outlined":59278,"feed-outlined":59279,"file-certified-outlined":59280,"file-clone-outlined":59281,"file-copy-outlined":59282,"file-dispose-outlined":59283,"file-dollar-certified-outlined":59284,"file-dollar-outlined":59285,"file-download-outlined":59286,"file-export-outlined":59287,"file-lock-outlined":59288,"file-outlined":59289,"file-search-outlined":59290,"file-secured-outlined":59291,"file-statutory-outlined":59292,"file-verified-outlined":59293,"filter-outlined":59294,"folder-outlined":59295,"folder-user-outlined":59296,"form-outlined":59297,"funnel-filter-outline":59298,"goal-outlined":59299,"graph-outlined":59300,"hand-holding-user-outlined":59301,"happy-sun-outlined":59302,"health-bag-outlined":59303,"heart-outlined":59304,"home-active-outlined":59305,"home-outlined":59306,"id-card-outlined":59307,"image-outlined":59308,"import-outlined":59309,"instapay-outlined":59310,"italic":59311,"leave-approval-outlined":59312,"link-1":59313,"link-2":59314,"list-outlined":59315,"live-help-outlined":59316,"location-on-outlined":59317,"location-outlined":59318,"lock-outlined":59319,"locked-file-outlined":59320,"log-out":59321,"mail-outlined":59322,"media-content-outlined":59323,"menu-close":59324,"menu-expand":59325,"menu-fold-outlined":59326,"menu-unfold-outlined":59327,"moneybag-outlined":59328,"moon-outlined":59329,"more-horizontal":59330,"more-vertical":59331,"multiple-folders-outlined":59332,"multiple-users-outlined":59333,"near-me-outlined":59334,"node-outlined":59335,"number-points":59336,"number":59337,"overview-outlined":59338,"payment-summary-outlined":59339,"payslip-outlined":59340,"pencil-outlined":59341,"percentage":59342,"phone-outlined":59343,"piggy-bank-outlined":59344,"plane-outlined":59345,"play-circle-outlined":59346,"print-outlined":59347,"propane-tank-outlined":59348,"qr-code-outlined":59349,"qualification-outlined":59350,"re-assign":59351,"redeem":59352,"refresh":59353,"remove":59354,"reply-outlined":59355,"restart":59356,"return-arrow":59357,"rostering-outlined":59358,"save-outlined":59359,"schedule-outlined":59360,"search-outlined":59361,"search-secured-outlined":59362,"send-outlined":59363,"share-1":59364,"share-2":59365,"share-outlined":59366,"show-chart-outlined":59367,"single-down-arrow":59368,"single-left-arrow":59369,"single-right-arrow":59370,"single-up-arrow":59371,"sparkle-outlined":59372,"speaker-active-outlined":59373,"speaker-outlined":59374,"star-circle-outlined":59375,"star-outlined":59376,"stopwatch-outlined":59377,"strikethrough":59378,"styler-outlined":59379,"suitcase-clock-outlined":59380,"suitcase-outlined":59381,"survey-outlined":59382,"switch-outlined":59383,"sync":59384,"tag-outlined":59385,"target-outlined":59386,"tennis-outlined":59387,"ticket-outlined":59388,"timesheet-outlined":59389,"timesheets-outlined":59390,"today-outlined":59391,"transfer":59392,"trash-bin-outlined":59393,"umbrela-outlined":59394,"unavailable":59395,"underline":59396,"union-outlined":59397,"unlock-outlined":59398,"upload-outlined":59399,"user-circle-outlined":59400,"user-gear-outlined":59401,"user-outlined":59402,"user-rectangle-outlined":59403,"video-1-outlined":59404,"video-2-outlined":59405,"volunteer-outlined":59406,"wallet-outlined":59407}
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,"double-buildings":59057,"edit-template":59058,"envelope":59059,"exclude":59060,"expand-content":59061,"expense":59062,"eye-circle":59063,"eye-invisible":59064,"eye":59065,"face-meh":59066,"face-sad":59067,"face-smiley":59068,"feed":59069,"feedbacks":59070,"file-certified":59071,"file-clone":59072,"file-copy":59073,"file-csv":59074,"file-dispose":59075,"file-doc":59076,"file-excel":59077,"file-export":59078,"file-lock":59079,"file-pdf":59080,"file-powerpoint":59081,"file-search":59082,"file-secured":59083,"file-sheets":59084,"file-slide":59085,"file-verified":59086,"file-word":59087,"file":59088,"filter":59089,"folder-user":59090,"folder":59091,"format-bold":59092,"format-heading1":59093,"format-heading2":59094,"format-italic":59095,"format-list-bulleted":59096,"format-list-numbered":59097,"format-underlined":59098,"funnel-filter":59099,"global-dollar":59100,"globe":59101,"graduation-cap":59102,"graph":59103,"happy-sun":59104,"health-bag":59105,"heart":59106,"home":59107,"image":59108,"import":59109,"incident-siren":59110,"instapay":59111,"list":59112,"loading-2":59113,"loading":59114,"location-on":59115,"location":59116,"lock":59117,"looks-one":59118,"looks-two":59119,"media-content":59120,"menu":59121,"money-notes":59122,"moneybag":59123,"moon":59124,"multiple-stars":59125,"multiple-users":59126,"near-me":59127,"node":59128,"open-folder":59129,"paperclip":59130,"payment-summary":59131,"pencil":59132,"phone":59133,"piggy-bank":59134,"plane-up":59135,"plane":59136,"play-circle":59137,"print":59138,"raising-hands":59139,"reply-arrow":59140,"reply":59141,"reschedule":59142,"rostering":59143,"save":59144,"schedule-send":59145,"schedule":59146,"search-person":59147,"send":59148,"speaker-active":59149,"speaker":59150,"star-award":59151,"star-badge":59152,"star-circle":59153,"star-medal":59154,"star":59155,"steps-circle":59156,"stopwatch":59157,"suitcase":59158,"surfing":59159,"survey":59160,"swag-pillar-benefit":59161,"swag-pillar-career":59162,"swag-pillar-money":59163,"swag-pillar-work":59164,"swag":59165,"swipe-right":59166,"switch":59167,"tag":59168,"target":59169,"teams":59170,"timesheet":59171,"touch-id":59172,"trash-bin":59173,"unlock":59174,"user":59175,"video-1":59176,"video-2":59177,"wallet":59178,"warning":59179,"activate-outlined":59180,"add-credit-card-outlined":59181,"add-person-outlined":59182,"add-section-outlined":59183,"add-time-outlined":59184,"add":59185,"adjustment-outlined":59186,"ai-outlined":59187,"alignment-2-outlined":59188,"alignment-outlined":59189,"all-caps":59190,"application-outlined":59191,"arrow-down":59192,"arrow-downwards":59193,"arrow-left":59194,"arrow-leftwards":59195,"arrow-right":59196,"arrow-rightwards":59197,"arrow-up":59198,"arrow-upwards":59199,"article-outlined":59200,"at-sign":59201,"auto-graph-outlined":59202,"beer-outlined":59203,"bell-active-outlined":59204,"bell-outlined":59205,"bell-slash-outlined":59206,"billing-outlined":59207,"body-outlined":59208,"bold":59209,"bolt-outlined":59210,"book-outlined":59211,"bookmark-added-outlined":59212,"bookmark-outlined":59213,"box-check-outlined":59214,"box-outlined":59215,"bullet-points":59216,"cake-outlined":59217,"calendar-dates-outlined":59218,"calendar-star-outlined":59219,"call-outlined":59220,"call-split-outlined":59221,"camera-outlined":59222,"cancel":59223,"car-forward-outlined":59224,"charging-station-outlined":59225,"chat-bubble-outlined":59226,"chat-unread-outlined":59227,"checkmark":59228,"circle-add-outlined":59229,"circle-cancel-outlined":59230,"circle-down-outlined":59231,"circle-info-outlined":59232,"circle-left-outlined":59233,"circle-ok-outlined":59234,"circle-question-outlined":59235,"circle-remove-outlined":59236,"circle-right-outlined":59237,"circle-up-outlined":59238,"circle-warning-outlined":59239,"clock-2-outlined":59240,"clock-outlined":59241,"cog-outlined":59242,"coin-outlined":59243,"coin-super-outlined":59244,"comment-outlined":59245,"contacts-outlined":59246,"contacts-user-outlined":59247,"credit-card-outlined":59248,"cup-outlined":59249,"dentistry-outlined":59250,"direction-arrows-outlined":59251,"directory-outlined":59252,"document-outlined":59253,"dollar-box-outlined":59254,"dollar-card-outlined":59255,"dollar-coin-shine-outlined":59256,"dollar-credit-card-outlined":59257,"dollar-sign":59258,"double-buildings-outlined":59259,"double-left-arrows":59260,"double-right-arrows":59261,"download-box-outlined":59262,"download-outlined":59263,"edit-template-outlined":59264,"email-outlined":59265,"enter-arrow":59266,"envelope-outlined":59267,"expense-approval-outlined":59268,"expense-outlined":59269,"explore-outlined":59270,"extension-outlined":59271,"external-link":59272,"eye-invisible-outlined":59273,"eye-outlined":59274,"face-id":59275,"face-meh-outlined":59276,"face-open-smiley-outlined":59277,"face-sad-outlined":59278,"face-smiley-outlined":59279,"fastfood-outlined":59280,"feed-outlined":59281,"file-certified-outlined":59282,"file-clone-outlined":59283,"file-copy-outlined":59284,"file-dispose-outlined":59285,"file-dollar-certified-outlined":59286,"file-dollar-outlined":59287,"file-download-outlined":59288,"file-export-outlined":59289,"file-lock-outlined":59290,"file-outlined":59291,"file-search-outlined":59292,"file-secured-outlined":59293,"file-statutory-outlined":59294,"file-verified-outlined":59295,"filter-outlined":59296,"folder-outlined":59297,"folder-user-outlined":59298,"form-outlined":59299,"funnel-filter-outline":59300,"goal-outlined":59301,"graph-outlined":59302,"hand-holding-user-outlined":59303,"happy-sun-outlined":59304,"health-bag-outlined":59305,"heart-outlined":59306,"home-active-outlined":59307,"home-outlined":59308,"id-card-outlined":59309,"image-outlined":59310,"import-outlined":59311,"instapay-outlined":59312,"italic":59313,"job-search-outlined":59314,"leave-approval-outlined":59315,"link-1":59316,"link-2":59317,"list-outlined":59318,"live-help-outlined":59319,"location-on-outlined":59320,"location-outlined":59321,"lock-outlined":59322,"locked-file-outlined":59323,"log-out":59324,"mail-outlined":59325,"media-content-outlined":59326,"menu-close":59327,"menu-expand":59328,"menu-fold-outlined":59329,"menu-unfold-outlined":59330,"moneybag-outlined":59331,"moon-outlined":59332,"more-horizontal":59333,"more-vertical":59334,"multiple-folders-outlined":59335,"multiple-users-outlined":59336,"near-me-outlined":59337,"node-outlined":59338,"number-points":59339,"number":59340,"overview-outlined":59341,"payment-summary-outlined":59342,"payslip-outlined":59343,"pencil-outlined":59344,"percentage":59345,"phone-outlined":59346,"piggy-bank-outlined":59347,"plane-outlined":59348,"play-circle-outlined":59349,"print-outlined":59350,"propane-tank-outlined":59351,"qr-code-outlined":59352,"qualification-outlined":59353,"re-assign":59354,"redeem":59355,"refresh":59356,"remove":59357,"reply-outlined":59358,"restart":59359,"resume-outlined":59360,"return-arrow":59361,"rostering-outlined":59362,"save-outlined":59363,"schedule-outlined":59364,"search-outlined":59365,"search-secured-outlined":59366,"send-outlined":59367,"share-1":59368,"share-2":59369,"share-outlined":59370,"show-chart-outlined":59371,"single-down-arrow":59372,"single-left-arrow":59373,"single-right-arrow":59374,"single-up-arrow":59375,"smart-match-outlined":59376,"sparkle-outlined":59377,"speaker-active-outlined":59378,"speaker-outlined":59379,"star-circle-outlined":59380,"star-outlined":59381,"stopwatch-outlined":59382,"strikethrough":59383,"styler-outlined":59384,"suitcase-clock-outlined":59385,"suitcase-outlined":59386,"survey-outlined":59387,"switch-outlined":59388,"sync":59389,"tag-outlined":59390,"target-outlined":59391,"tennis-outlined":59392,"ticket-outlined":59393,"timesheet-outlined":59394,"timesheets-outlined":59395,"today-outlined":59396,"transfer":59397,"trash-bin-outlined":59398,"umbrela-outlined":59399,"unavailable":59400,"underline":59401,"union-outlined":59402,"unlock-outlined":59403,"upload-outlined":59404,"user-circle-outlined":59405,"user-gear-outlined":59406,"user-outlined":59407,"user-rectangle-outlined":59408,"video-1-outlined":59409,"video-2-outlined":59410,"volunteer-outlined":59411,"wallet-outlined":59412}
@@ -115,6 +115,7 @@ const IconList = [
115
115
  'list',
116
116
  'loading-2',
117
117
  'loading',
118
+ 'location-on',
118
119
  'location',
119
120
  'lock',
120
121
  'looks-one',
@@ -190,6 +191,7 @@ const IconList = [
190
191
  'alignment-2-outlined',
191
192
  'alignment-outlined',
192
193
  'all-caps',
194
+ 'application-outlined',
193
195
  'arrow-down',
194
196
  'arrow-downwards',
195
197
  'arrow-left',
@@ -312,6 +314,7 @@ const IconList = [
312
314
  'import-outlined',
313
315
  'instapay-outlined',
314
316
  'italic',
317
+ 'job-search-outlined',
315
318
  'leave-approval-outlined',
316
319
  'link-1',
317
320
  'link-2',
@@ -357,6 +360,7 @@ const IconList = [
357
360
  'remove',
358
361
  'reply-outlined',
359
362
  'restart',
363
+ 'resume-outlined',
360
364
  'return-arrow',
361
365
  'rostering-outlined',
362
366
  'save-outlined',
@@ -372,6 +376,7 @@ const IconList = [
372
376
  'single-left-arrow',
373
377
  'single-right-arrow',
374
378
  'single-up-arrow',
379
+ 'smart-match-outlined',
375
380
  'sparkle-outlined',
376
381
  'speaker-active-outlined',
377
382
  'speaker-outlined',
@@ -218,7 +218,7 @@ exports[`RichTextEditor onMessage recevied event editor-layout should update hei
218
218
  [
219
219
  {
220
220
  "minHeight": 16,
221
- "paddingLeft": 16,
221
+ "paddingHorizontal": 16,
222
222
  "paddingTop": 2,
223
223
  },
224
224
  undefined,
@@ -229,6 +229,7 @@ exports[`RichTextEditor onMessage recevied event editor-layout should update hei
229
229
  style={
230
230
  [
231
231
  {
232
+ "alignItems": "flex-start",
232
233
  "flexDirection": "row",
233
234
  "justifyContent": "space-between",
234
235
  },
@@ -535,7 +536,7 @@ exports[`RichTextEditor should render correctly 1`] = `
535
536
  [
536
537
  {
537
538
  "minHeight": 16,
538
- "paddingLeft": 16,
539
+ "paddingHorizontal": 16,
539
540
  "paddingTop": 2,
540
541
  },
541
542
  undefined,
@@ -546,6 +547,7 @@ exports[`RichTextEditor should render correctly 1`] = `
546
547
  style={
547
548
  [
548
549
  {
550
+ "alignItems": "flex-start",
549
551
  "flexDirection": "row",
550
552
  "justifyContent": "space-between",
551
553
  },
@@ -239,7 +239,7 @@ exports[`rendering allows custom renderer 1`] = `
239
239
  [
240
240
  {
241
241
  "minHeight": 16,
242
- "paddingLeft": 16,
242
+ "paddingHorizontal": 16,
243
243
  "paddingTop": 2,
244
244
  },
245
245
  undefined,
@@ -250,6 +250,7 @@ exports[`rendering allows custom renderer 1`] = `
250
250
  style={
251
251
  [
252
252
  {
253
+ "alignItems": "flex-start",
253
254
  "flexDirection": "row",
254
255
  "justifyContent": "space-between",
255
256
  },
@@ -1770,7 +1771,7 @@ exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
1770
1771
  [
1771
1772
  {
1772
1773
  "minHeight": 16,
1773
- "paddingLeft": 16,
1774
+ "paddingHorizontal": 16,
1774
1775
  "paddingTop": 2,
1775
1776
  },
1776
1777
  undefined,
@@ -1781,6 +1782,7 @@ exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
1781
1782
  style={
1782
1783
  [
1783
1784
  {
1785
+ "alignItems": "flex-start",
1784
1786
  "flexDirection": "row",
1785
1787
  "justifyContent": "space-between",
1786
1788
  },
@@ -2061,7 +2063,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
2061
2063
  [
2062
2064
  {
2063
2065
  "minHeight": 16,
2064
- "paddingLeft": 16,
2066
+ "paddingHorizontal": 16,
2065
2067
  "paddingTop": 2,
2066
2068
  },
2067
2069
  undefined,
@@ -2072,6 +2074,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
2072
2074
  style={
2073
2075
  [
2074
2076
  {
2077
+ "alignItems": "flex-start",
2075
2078
  "flexDirection": "row",
2076
2079
  "justifyContent": "space-between",
2077
2080
  },
@@ -3811,7 +3814,7 @@ exports[`rendering renders correctly when input is loading 1`] = `
3811
3814
  [
3812
3815
  {
3813
3816
  "minHeight": 16,
3814
- "paddingLeft": 16,
3817
+ "paddingHorizontal": 16,
3815
3818
  "paddingTop": 2,
3816
3819
  },
3817
3820
  undefined,
@@ -3822,6 +3825,7 @@ exports[`rendering renders correctly when input is loading 1`] = `
3822
3825
  style={
3823
3826
  [
3824
3827
  {
3828
+ "alignItems": "flex-start",
3825
3829
  "flexDirection": "row",
3826
3830
  "justifyContent": "space-between",
3827
3831
  },
@@ -4102,7 +4106,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
4102
4106
  [
4103
4107
  {
4104
4108
  "minHeight": 16,
4105
- "paddingLeft": 16,
4109
+ "paddingHorizontal": 16,
4106
4110
  "paddingTop": 2,
4107
4111
  },
4108
4112
  undefined,
@@ -4113,6 +4117,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
4113
4117
  style={
4114
4118
  [
4115
4119
  {
4120
+ "alignItems": "flex-start",
4116
4121
  "flexDirection": "row",
4117
4122
  "justifyContent": "space-between",
4118
4123
  },
@@ -5419,7 +5424,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
5419
5424
  [
5420
5425
  {
5421
5426
  "minHeight": 16,
5422
- "paddingLeft": 16,
5427
+ "paddingHorizontal": 16,
5423
5428
  "paddingTop": 2,
5424
5429
  },
5425
5430
  undefined,
@@ -5430,6 +5435,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
5430
5435
  style={
5431
5436
  [
5432
5437
  {
5438
+ "alignItems": "flex-start",
5433
5439
  "flexDirection": "row",
5434
5440
  "justifyContent": "space-between",
5435
5441
  },
@@ -238,7 +238,7 @@ exports[`rendering allows custom renderer 1`] = `
238
238
  [
239
239
  {
240
240
  "minHeight": 16,
241
- "paddingLeft": 16,
241
+ "paddingHorizontal": 16,
242
242
  "paddingTop": 2,
243
243
  },
244
244
  undefined,
@@ -249,6 +249,7 @@ exports[`rendering allows custom renderer 1`] = `
249
249
  style={
250
250
  [
251
251
  {
252
+ "alignItems": "flex-start",
252
253
  "flexDirection": "row",
253
254
  "justifyContent": "space-between",
254
255
  },
@@ -1685,7 +1686,7 @@ exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
1685
1686
  [
1686
1687
  {
1687
1688
  "minHeight": 16,
1688
- "paddingLeft": 16,
1689
+ "paddingHorizontal": 16,
1689
1690
  "paddingTop": 2,
1690
1691
  },
1691
1692
  undefined,
@@ -1696,6 +1697,7 @@ exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
1696
1697
  style={
1697
1698
  [
1698
1699
  {
1700
+ "alignItems": "flex-start",
1699
1701
  "flexDirection": "row",
1700
1702
  "justifyContent": "space-between",
1701
1703
  },
@@ -1976,7 +1978,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
1976
1978
  [
1977
1979
  {
1978
1980
  "minHeight": 16,
1979
- "paddingLeft": 16,
1981
+ "paddingHorizontal": 16,
1980
1982
  "paddingTop": 2,
1981
1983
  },
1982
1984
  undefined,
@@ -1987,6 +1989,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
1987
1989
  style={
1988
1990
  [
1989
1991
  {
1992
+ "alignItems": "flex-start",
1990
1993
  "flexDirection": "row",
1991
1994
  "justifyContent": "space-between",
1992
1995
  },
@@ -3586,7 +3589,7 @@ exports[`rendering renders correctly when input is loading 1`] = `
3586
3589
  [
3587
3590
  {
3588
3591
  "minHeight": 16,
3589
- "paddingLeft": 16,
3592
+ "paddingHorizontal": 16,
3590
3593
  "paddingTop": 2,
3591
3594
  },
3592
3595
  undefined,
@@ -3597,6 +3600,7 @@ exports[`rendering renders correctly when input is loading 1`] = `
3597
3600
  style={
3598
3601
  [
3599
3602
  {
3603
+ "alignItems": "flex-start",
3600
3604
  "flexDirection": "row",
3601
3605
  "justifyContent": "space-between",
3602
3606
  },
@@ -3877,7 +3881,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
3877
3881
  [
3878
3882
  {
3879
3883
  "minHeight": 16,
3880
- "paddingLeft": 16,
3884
+ "paddingHorizontal": 16,
3881
3885
  "paddingTop": 2,
3882
3886
  },
3883
3887
  undefined,
@@ -3888,6 +3892,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
3888
3892
  style={
3889
3893
  [
3890
3894
  {
3895
+ "alignItems": "flex-start",
3891
3896
  "flexDirection": "row",
3892
3897
  "justifyContent": "space-between",
3893
3898
  },