@hero-design/rn 8.91.4 → 8.91.5
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 +16 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +418 -408
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +418 -408
- package/package.json +1 -1
- package/src/components/Alert/StyledAlert.tsx +1 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +56 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +8 -10
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +116 -145
- package/src/components/Avatar/StyledAvatar.tsx +1 -1
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +4 -5
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +8 -10
- package/src/components/BottomNavigation/StyledBottomNavigation.tsx +3 -5
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +6 -4
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +28 -28
- package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +1 -0
- package/src/components/List/StyledListItem.tsx +1 -5
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +8 -10
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +6 -6
- package/src/components/MapPin/StyledMapPin.tsx +14 -3
- package/src/components/MapPin/__tests__/__snapshots__/index.spec.tsx.snap +58 -65
- package/src/components/MapPin/index.tsx +7 -8
- package/src/components/Search/StyledSearch.tsx +1 -4
- package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +3 -2
- package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +3 -2
- package/src/components/Toast/StyledToast.tsx +1 -5
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +21 -21
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +59 -32
- package/src/theme/components/alert.ts +5 -1
- package/src/theme/components/avatar.ts +1 -1
- package/src/theme/components/bottomNavigation.ts +7 -5
- package/src/theme/components/chip.ts +2 -2
- package/src/theme/components/floatingIsland.ts +1 -1
- package/src/theme/components/list.ts +1 -7
- package/src/theme/components/mapPin.ts +6 -2
- package/src/theme/components/search.ts +1 -5
- package/src/theme/components/toast.ts +1 -5
- package/src/theme/global/colors/eBens.ts +3 -0
- package/src/theme/global/colors/jobs.ts +3 -0
- package/src/theme/global/colors/swag.ts +3 -0
- package/src/theme/global/colors/swagDark.ts +3 -0
- package/src/theme/global/colors/wallet.ts +3 -0
- package/src/theme/global/colors/work.ts +3 -0
- package/stats/8.91.5/rn-stats.html +4842 -0
- package/types/components/Avatar/StyledAvatar.d.ts +2 -2
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/MapPin/StyledMapPin.d.ts +12 -2
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/theme/components/alert.d.ts +3 -0
- package/types/theme/components/avatar.d.ts +1 -1
- package/types/theme/components/bottomNavigation.d.ts +5 -7
- package/types/theme/components/chip.d.ts +1 -1
- package/types/theme/components/list.d.ts +1 -10
- package/types/theme/components/mapPin.d.ts +6 -2
- package/types/theme/components/search.d.ts +1 -8
- package/types/theme/components/toast.d.ts +1 -8
- package/types/theme/global/colors/eBens.d.ts +3 -0
- package/types/theme/global/colors/jobs.d.ts +3 -0
- package/types/theme/global/colors/swag.d.ts +3 -0
- package/types/theme/global/colors/swagDark.d.ts +3 -0
- package/types/theme/global/colors/wallet.d.ts +3 -0
- package/types/theme/global/colors/work.d.ts +3 -0
package/es/index.js
CHANGED
|
@@ -1927,6 +1927,9 @@ var swagBrandSystemPallete$1 = {
|
|
|
1927
1927
|
decorativePrimary: palette$4.white,
|
|
1928
1928
|
decorativePrimarySurface: palette$4.maasstrichtBlueLight80
|
|
1929
1929
|
};
|
|
1930
|
+
/**
|
|
1931
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
1932
|
+
*/
|
|
1930
1933
|
var swagSystemPalette$1 = _objectSpread2(_objectSpread2({}, globalPalette$1), swagBrandSystemPallete$1);
|
|
1931
1934
|
|
|
1932
1935
|
var globalPalette = {
|
|
@@ -1981,6 +1984,9 @@ var swagDarkBrandSystemPalette = {
|
|
|
1981
1984
|
decorativePrimary: palette$2.maasstrichtBlue,
|
|
1982
1985
|
decorativePrimarySurface: palette$2.maasstrichtBlueLight10
|
|
1983
1986
|
};
|
|
1987
|
+
/**
|
|
1988
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
1989
|
+
*/
|
|
1984
1990
|
var swagDarkSystemPalette = _objectSpread2(_objectSpread2(_objectSpread2({}, globalPalette), swagDarkBrandSystemPalette), {}, {
|
|
1985
1991
|
// Theme Mode
|
|
1986
1992
|
themeMode: 'dark'
|
|
@@ -2031,6 +2037,9 @@ var workBrandSystemPallete = {
|
|
|
2031
2037
|
decorativePrimary: palette.gold,
|
|
2032
2038
|
decorativePrimarySurface: palette.goldLight80
|
|
2033
2039
|
};
|
|
2040
|
+
/**
|
|
2041
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2042
|
+
*/
|
|
2034
2043
|
var workSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), workBrandSystemPallete);
|
|
2035
2044
|
|
|
2036
2045
|
var jobsBrandSystemPallete = {
|
|
@@ -2044,6 +2053,9 @@ var jobsBrandSystemPallete = {
|
|
|
2044
2053
|
decorativePrimary: palette$5.hitPink,
|
|
2045
2054
|
decorativePrimarySurface: palette$5.hitPinkLight80
|
|
2046
2055
|
};
|
|
2056
|
+
/**
|
|
2057
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2058
|
+
*/
|
|
2047
2059
|
var jobsSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), jobsBrandSystemPallete);
|
|
2048
2060
|
|
|
2049
2061
|
var walletBrandSystemPallete = {
|
|
@@ -2057,6 +2069,9 @@ var walletBrandSystemPallete = {
|
|
|
2057
2069
|
decorativePrimary: palette$1.frenchSky,
|
|
2058
2070
|
decorativePrimarySurface: palette$1.frenchSkyLight80
|
|
2059
2071
|
};
|
|
2072
|
+
/**
|
|
2073
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2074
|
+
*/
|
|
2060
2075
|
var walletSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), walletBrandSystemPallete);
|
|
2061
2076
|
|
|
2062
2077
|
var eBensBrandSystemPallete = {
|
|
@@ -2070,6 +2085,9 @@ var eBensBrandSystemPallete = {
|
|
|
2070
2085
|
decorativePrimary: palette$6.mauve,
|
|
2071
2086
|
decorativePrimarySurface: palette$6.mauveLight80
|
|
2072
2087
|
};
|
|
2088
|
+
/**
|
|
2089
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2090
|
+
*/
|
|
2073
2091
|
var eBensSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), eBensBrandSystemPallete);
|
|
2074
2092
|
|
|
2075
2093
|
var ehWorkDarkSystemPalette = {
|
|
@@ -2479,12 +2497,16 @@ var getAlertTheme = function getAlertTheme(theme) {
|
|
|
2479
2497
|
var borderWidths = {
|
|
2480
2498
|
base: theme.borderWidths.base
|
|
2481
2499
|
};
|
|
2500
|
+
var shadows = {
|
|
2501
|
+
wrapper: theme.shadows.cardDrawer
|
|
2502
|
+
};
|
|
2482
2503
|
return {
|
|
2483
2504
|
colors: colors,
|
|
2484
2505
|
radii: radii,
|
|
2485
2506
|
sizes: sizes,
|
|
2486
2507
|
space: space,
|
|
2487
|
-
borderWidths: borderWidths
|
|
2508
|
+
borderWidths: borderWidths,
|
|
2509
|
+
shadows: shadows
|
|
2488
2510
|
};
|
|
2489
2511
|
};
|
|
2490
2512
|
|
|
@@ -2521,7 +2543,7 @@ var getAvatarTheme = function getAvatarTheme(theme) {
|
|
|
2521
2543
|
danger: theme.colors.error,
|
|
2522
2544
|
success: theme.colors.success,
|
|
2523
2545
|
warning: theme.colors.warning,
|
|
2524
|
-
text: theme.colors.
|
|
2546
|
+
text: theme.colors.white
|
|
2525
2547
|
};
|
|
2526
2548
|
var sizes = {
|
|
2527
2549
|
small: theme.sizes.xlarge,
|
|
@@ -2637,25 +2659,24 @@ var getBadgeTheme = function getBadgeTheme(theme) {
|
|
|
2637
2659
|
var getBottomNavigationTheme = function getBottomNavigationTheme(theme) {
|
|
2638
2660
|
var colors = {
|
|
2639
2661
|
shadow: theme.colors.primary,
|
|
2640
|
-
background: theme.colors.defaultGlobalSurface
|
|
2662
|
+
background: theme.colors.defaultGlobalSurface,
|
|
2663
|
+
borderTop: theme.colors.secondaryOutline
|
|
2664
|
+
};
|
|
2665
|
+
var borderWidths = {
|
|
2666
|
+
borderTop: theme.borderWidths.base
|
|
2641
2667
|
};
|
|
2642
2668
|
var sizes = {
|
|
2643
2669
|
height: theme.sizes['6xlarge']
|
|
2644
2670
|
};
|
|
2645
2671
|
var shadows = {
|
|
2646
|
-
|
|
2647
|
-
width: 0,
|
|
2648
|
-
height: 3
|
|
2649
|
-
},
|
|
2650
|
-
opacity: 0.27,
|
|
2651
|
-
radius: 4.65,
|
|
2652
|
-
elevation: 10
|
|
2672
|
+
wrapper: theme.shadows.tabBar
|
|
2653
2673
|
};
|
|
2654
2674
|
var space = {
|
|
2655
2675
|
titleMarginTop: theme.space.xsmall
|
|
2656
2676
|
};
|
|
2657
2677
|
return {
|
|
2658
2678
|
colors: colors,
|
|
2679
|
+
borderWidths: borderWidths,
|
|
2659
2680
|
shadows: shadows,
|
|
2660
2681
|
sizes: sizes,
|
|
2661
2682
|
space: space
|
|
@@ -2939,7 +2960,7 @@ var getCheckboxTheme = function getCheckboxTheme(theme) {
|
|
|
2939
2960
|
|
|
2940
2961
|
var getChipTheme = function getChipTheme(theme) {
|
|
2941
2962
|
var colors = {
|
|
2942
|
-
secondaryBackground: theme.colors.
|
|
2963
|
+
secondaryBackground: theme.colors.decorativeSecondarySurface,
|
|
2943
2964
|
filledBackground: theme.colors.defaultGlobalSurface,
|
|
2944
2965
|
wrapperSelectedBorder: 'transparent',
|
|
2945
2966
|
outlinedDefaultBackground: theme.colors.defaultGlobalSurface,
|
|
@@ -2963,7 +2984,7 @@ var getChipTheme = function getChipTheme(theme) {
|
|
|
2963
2984
|
outlinedDefaultBorder: theme.borderWidths.base
|
|
2964
2985
|
};
|
|
2965
2986
|
var shadows = {
|
|
2966
|
-
filledWrapper: theme.shadows
|
|
2987
|
+
filledWrapper: theme.shadows.cardDrawer
|
|
2967
2988
|
};
|
|
2968
2989
|
var fontSizes = {
|
|
2969
2990
|
icon: theme.fontSizes.small
|
|
@@ -3252,13 +3273,7 @@ var getListTheme = function getListTheme(theme) {
|
|
|
3252
3273
|
leadingStatus: theme.radii.rounded
|
|
3253
3274
|
};
|
|
3254
3275
|
var shadows = {
|
|
3255
|
-
card:
|
|
3256
|
-
offset: theme.shadows["default"].shadowOffset,
|
|
3257
|
-
elevation: theme.shadows["default"].elevation,
|
|
3258
|
-
color: theme.shadows["default"].shadowColor,
|
|
3259
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3260
|
-
opacity: theme.shadows["default"].shadowOpacity
|
|
3261
|
-
}
|
|
3276
|
+
card: theme.shadows.cardDrawer
|
|
3262
3277
|
};
|
|
3263
3278
|
var widths = {
|
|
3264
3279
|
leadingStatus: 8
|
|
@@ -3945,11 +3960,7 @@ var getToastTheme = function getToastTheme(theme) {
|
|
|
3945
3960
|
base: theme.borderWidths.base
|
|
3946
3961
|
};
|
|
3947
3962
|
var shadows = {
|
|
3948
|
-
|
|
3949
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
3950
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3951
|
-
elevation: theme.shadows["default"].elevation,
|
|
3952
|
-
color: theme.shadows["default"].shadowColor
|
|
3963
|
+
wrapper: theme.shadows.cardDrawer
|
|
3953
3964
|
};
|
|
3954
3965
|
return {
|
|
3955
3966
|
colors: colors,
|
|
@@ -4203,11 +4214,7 @@ var getSearchTheme = function getSearchTheme(theme) {
|
|
|
4203
4214
|
shadow: theme.colors.primaryOutline
|
|
4204
4215
|
};
|
|
4205
4216
|
var shadows = {
|
|
4206
|
-
|
|
4207
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
4208
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
4209
|
-
elevation: theme.shadows["default"].elevation,
|
|
4210
|
-
color: theme.shadows["default"].shadowColor
|
|
4217
|
+
container: theme.shadows.cardDrawer
|
|
4211
4218
|
};
|
|
4212
4219
|
var space = {
|
|
4213
4220
|
containerHorizontalPadding: theme.space.small,
|
|
@@ -4258,7 +4265,8 @@ var getSearchTheme = function getSearchTheme(theme) {
|
|
|
4258
4265
|
|
|
4259
4266
|
var getMapPinTheme = function getMapPinTheme(theme) {
|
|
4260
4267
|
var sizes = {
|
|
4261
|
-
"default": 42
|
|
4268
|
+
"default": 42,
|
|
4269
|
+
badge: theme.sizes.large
|
|
4262
4270
|
};
|
|
4263
4271
|
var fontSizes = {
|
|
4264
4272
|
icon: 42
|
|
@@ -4268,15 +4276,18 @@ var getMapPinTheme = function getMapPinTheme(theme) {
|
|
|
4268
4276
|
};
|
|
4269
4277
|
var colors = {
|
|
4270
4278
|
border: {
|
|
4271
|
-
idle: theme.colors.
|
|
4279
|
+
idle: theme.colors.white,
|
|
4272
4280
|
selected: theme.colors.secondary,
|
|
4273
4281
|
applied: theme.colors.secondary
|
|
4274
4282
|
},
|
|
4283
|
+
icon: theme.colors.black,
|
|
4275
4284
|
badge: theme.colors.secondary,
|
|
4276
|
-
|
|
4285
|
+
badgeIcon: theme.colors.onSecondary,
|
|
4286
|
+
background: theme.colors.white
|
|
4277
4287
|
};
|
|
4278
4288
|
var radii = {
|
|
4279
|
-
"default": theme.radii.large
|
|
4289
|
+
"default": theme.radii.large,
|
|
4290
|
+
badge: theme.radii.rounded
|
|
4280
4291
|
};
|
|
4281
4292
|
var space = {
|
|
4282
4293
|
iconTop: -theme.space.small,
|
|
@@ -4308,7 +4319,7 @@ var getFloatingIslandTheme = function getFloatingIslandTheme(theme) {
|
|
|
4308
4319
|
wrapper: theme.radii.rounded
|
|
4309
4320
|
};
|
|
4310
4321
|
var shadows = {
|
|
4311
|
-
wrapper: theme.shadows
|
|
4322
|
+
wrapper: theme.shadows.cardDrawer
|
|
4312
4323
|
};
|
|
4313
4324
|
var space = {
|
|
4314
4325
|
wrapperPadding: theme.space.small,
|
|
@@ -7661,7 +7672,7 @@ var Typography = {
|
|
|
7661
7672
|
};
|
|
7662
7673
|
|
|
7663
7674
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
7664
|
-
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', 'bookmark', 'box-check', 'box', 'bpay', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'caret-down-small', 'caret-down', 'caret-left-small', 'caret-left', 'caret-right-small', 'caret-right', 'caret-up-small', 'caret-up', 'check-radio', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock-3', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'filter', 'folder-user', 'folder', 'format-bold', 'format-heading1', 'format-heading2', 'format-italic', 'format-list-bulleted', 'format-list-numbered', 'format-underlined', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'surfing', 'survey', 'swag-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', 'swag', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-outlined', 'charging-station-outlined', 'chat-bubble-outlined', 'chat-unread-outlined', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-box-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-credit-card-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-box-outlined', 'download-outlined', 'edit-template-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'fastfood-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-dollar-certified-outlined', 'file-dollar-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
7675
|
+
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', 'bookmark', 'box-check', 'box', 'bpay', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'caret-down-small', 'caret-down', 'caret-left-small', 'caret-left', 'caret-right-small', 'caret-right', 'caret-up-small', 'caret-up', 'check-radio', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock-3', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'filter', 'folder-user', 'folder', 'format-bold', 'format-heading1', 'format-heading2', 'format-italic', 'format-list-bulleted', 'format-list-numbered', 'format-underlined', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'surfing', 'survey', 'swag-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', 'swag', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-outlined', 'charging-station-outlined', 'chat-bubble-outlined', 'chat-unread-outlined', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-box-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-credit-card-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-box-outlined', 'download-outlined', 'edit-template-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'fastfood-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-dollar-certified-outlined', 'file-dollar-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
7665
7676
|
|
|
7666
7677
|
var activate = 59000;
|
|
7667
7678
|
var adjustment = 59003;
|
|
@@ -7710,51 +7721,51 @@ var menu = 59127;
|
|
|
7710
7721
|
var moneybag = 59129;
|
|
7711
7722
|
var moon = 59130;
|
|
7712
7723
|
var node = 59134;
|
|
7713
|
-
var paperclip =
|
|
7714
|
-
var pencil =
|
|
7715
|
-
var phone =
|
|
7716
|
-
var plane =
|
|
7717
|
-
var print =
|
|
7718
|
-
var reply =
|
|
7719
|
-
var reschedule =
|
|
7720
|
-
var rostering =
|
|
7721
|
-
var save =
|
|
7722
|
-
var schedule =
|
|
7723
|
-
var search =
|
|
7724
|
-
var send =
|
|
7725
|
-
var speaker =
|
|
7726
|
-
var star =
|
|
7727
|
-
var stopwatch =
|
|
7728
|
-
var suitcase =
|
|
7729
|
-
var surfing =
|
|
7730
|
-
var survey =
|
|
7731
|
-
var swag =
|
|
7732
|
-
var tag =
|
|
7733
|
-
var target =
|
|
7734
|
-
var teams =
|
|
7735
|
-
var timesheet =
|
|
7736
|
-
var unlock =
|
|
7737
|
-
var user =
|
|
7738
|
-
var wallet =
|
|
7739
|
-
var warning =
|
|
7740
|
-
var add =
|
|
7741
|
-
var bold =
|
|
7742
|
-
var cancel =
|
|
7743
|
-
var checkmark =
|
|
7744
|
-
var italic =
|
|
7745
|
-
var local_mall_outlined =
|
|
7746
|
-
var number =
|
|
7747
|
-
var percentage =
|
|
7748
|
-
var redeem =
|
|
7749
|
-
var refresh =
|
|
7750
|
-
var remove =
|
|
7751
|
-
var restart =
|
|
7752
|
-
var shopping_basket_outlined =
|
|
7753
|
-
var strikethrough =
|
|
7754
|
-
var sync =
|
|
7755
|
-
var transfer =
|
|
7756
|
-
var unavailable =
|
|
7757
|
-
var underline =
|
|
7724
|
+
var paperclip = 59137;
|
|
7725
|
+
var pencil = 59139;
|
|
7726
|
+
var phone = 59140;
|
|
7727
|
+
var plane = 59143;
|
|
7728
|
+
var print = 59146;
|
|
7729
|
+
var reply = 59149;
|
|
7730
|
+
var reschedule = 59150;
|
|
7731
|
+
var rostering = 59151;
|
|
7732
|
+
var save = 59153;
|
|
7733
|
+
var schedule = 59155;
|
|
7734
|
+
var search = 59157;
|
|
7735
|
+
var send = 59158;
|
|
7736
|
+
var speaker = 59160;
|
|
7737
|
+
var star = 59165;
|
|
7738
|
+
var stopwatch = 59167;
|
|
7739
|
+
var suitcase = 59168;
|
|
7740
|
+
var surfing = 59169;
|
|
7741
|
+
var survey = 59170;
|
|
7742
|
+
var swag = 59175;
|
|
7743
|
+
var tag = 59178;
|
|
7744
|
+
var target = 59179;
|
|
7745
|
+
var teams = 59180;
|
|
7746
|
+
var timesheet = 59182;
|
|
7747
|
+
var unlock = 59185;
|
|
7748
|
+
var user = 59186;
|
|
7749
|
+
var wallet = 59189;
|
|
7750
|
+
var warning = 59190;
|
|
7751
|
+
var add = 59197;
|
|
7752
|
+
var bold = 59227;
|
|
7753
|
+
var cancel = 59243;
|
|
7754
|
+
var checkmark = 59249;
|
|
7755
|
+
var italic = 59345;
|
|
7756
|
+
var local_mall_outlined = 59352;
|
|
7757
|
+
var number = 59375;
|
|
7758
|
+
var percentage = 59381;
|
|
7759
|
+
var redeem = 59391;
|
|
7760
|
+
var refresh = 59392;
|
|
7761
|
+
var remove = 59393;
|
|
7762
|
+
var restart = 59395;
|
|
7763
|
+
var shopping_basket_outlined = 59411;
|
|
7764
|
+
var strikethrough = 59426;
|
|
7765
|
+
var sync = 59432;
|
|
7766
|
+
var transfer = 59441;
|
|
7767
|
+
var unavailable = 59446;
|
|
7768
|
+
var underline = 59447;
|
|
7758
7769
|
var glyphMap = {
|
|
7759
7770
|
activate: activate,
|
|
7760
7771
|
"add-emoji": 59001,
|
|
@@ -7892,329 +7903,330 @@ var glyphMap = {
|
|
|
7892
7903
|
"near-me": 59133,
|
|
7893
7904
|
node: node,
|
|
7894
7905
|
"open-folder": 59135,
|
|
7906
|
+
"paperclip-vertical": 59136,
|
|
7895
7907
|
paperclip: paperclip,
|
|
7896
|
-
"payment-summary":
|
|
7908
|
+
"payment-summary": 59138,
|
|
7897
7909
|
pencil: pencil,
|
|
7898
7910
|
phone: phone,
|
|
7899
|
-
"piggy-bank":
|
|
7900
|
-
"plane-up":
|
|
7911
|
+
"piggy-bank": 59141,
|
|
7912
|
+
"plane-up": 59142,
|
|
7901
7913
|
plane: plane,
|
|
7902
|
-
"play-arrow":
|
|
7903
|
-
"play-circle":
|
|
7914
|
+
"play-arrow": 59144,
|
|
7915
|
+
"play-circle": 59145,
|
|
7904
7916
|
print: print,
|
|
7905
|
-
"raising-hands":
|
|
7906
|
-
"reply-arrow":
|
|
7917
|
+
"raising-hands": 59147,
|
|
7918
|
+
"reply-arrow": 59148,
|
|
7907
7919
|
reply: reply,
|
|
7908
7920
|
reschedule: reschedule,
|
|
7909
7921
|
rostering: rostering,
|
|
7910
|
-
"salary-sacrifice":
|
|
7922
|
+
"salary-sacrifice": 59152,
|
|
7911
7923
|
save: save,
|
|
7912
|
-
"schedule-send":
|
|
7924
|
+
"schedule-send": 59154,
|
|
7913
7925
|
schedule: schedule,
|
|
7914
|
-
"search-person":
|
|
7926
|
+
"search-person": 59156,
|
|
7915
7927
|
search: search,
|
|
7916
7928
|
send: send,
|
|
7917
|
-
"speaker-active":
|
|
7929
|
+
"speaker-active": 59159,
|
|
7918
7930
|
speaker: speaker,
|
|
7919
|
-
"star-award":
|
|
7920
|
-
"star-badge":
|
|
7921
|
-
"star-circle":
|
|
7922
|
-
"star-medal":
|
|
7931
|
+
"star-award": 59161,
|
|
7932
|
+
"star-badge": 59162,
|
|
7933
|
+
"star-circle": 59163,
|
|
7934
|
+
"star-medal": 59164,
|
|
7923
7935
|
star: star,
|
|
7924
|
-
"steps-circle":
|
|
7936
|
+
"steps-circle": 59166,
|
|
7925
7937
|
stopwatch: stopwatch,
|
|
7926
7938
|
suitcase: suitcase,
|
|
7927
7939
|
surfing: surfing,
|
|
7928
7940
|
survey: survey,
|
|
7929
|
-
"swag-pillar-benefit":
|
|
7930
|
-
"swag-pillar-career":
|
|
7931
|
-
"swag-pillar-money":
|
|
7932
|
-
"swag-pillar-work":
|
|
7941
|
+
"swag-pillar-benefit": 59171,
|
|
7942
|
+
"swag-pillar-career": 59172,
|
|
7943
|
+
"swag-pillar-money": 59173,
|
|
7944
|
+
"swag-pillar-work": 59174,
|
|
7933
7945
|
swag: swag,
|
|
7934
|
-
"swipe-right":
|
|
7935
|
-
"switch":
|
|
7946
|
+
"swipe-right": 59176,
|
|
7947
|
+
"switch": 59177,
|
|
7936
7948
|
tag: tag,
|
|
7937
7949
|
target: target,
|
|
7938
7950
|
teams: teams,
|
|
7939
|
-
"thumb-down":
|
|
7951
|
+
"thumb-down": 59181,
|
|
7940
7952
|
timesheet: timesheet,
|
|
7941
|
-
"touch-id":
|
|
7942
|
-
"trash-bin":
|
|
7953
|
+
"touch-id": 59183,
|
|
7954
|
+
"trash-bin": 59184,
|
|
7943
7955
|
unlock: unlock,
|
|
7944
7956
|
user: user,
|
|
7945
|
-
"video-1":
|
|
7946
|
-
"video-2":
|
|
7957
|
+
"video-1": 59187,
|
|
7958
|
+
"video-2": 59188,
|
|
7947
7959
|
wallet: wallet,
|
|
7948
7960
|
warning: warning,
|
|
7949
|
-
"accommodation-outlined":
|
|
7950
|
-
"activate-outlined":
|
|
7951
|
-
"add-credit-card-outlined":
|
|
7952
|
-
"add-person-outlined":
|
|
7953
|
-
"add-section-outlined":
|
|
7954
|
-
"add-time-outlined":
|
|
7961
|
+
"accommodation-outlined": 59191,
|
|
7962
|
+
"activate-outlined": 59192,
|
|
7963
|
+
"add-credit-card-outlined": 59193,
|
|
7964
|
+
"add-person-outlined": 59194,
|
|
7965
|
+
"add-section-outlined": 59195,
|
|
7966
|
+
"add-time-outlined": 59196,
|
|
7955
7967
|
add: add,
|
|
7956
|
-
"adjustment-outlined":
|
|
7957
|
-
"afternoon-outlined":
|
|
7958
|
-
"ai-outlined":
|
|
7959
|
-
"alignment-2-outlined":
|
|
7960
|
-
"alignment-outlined":
|
|
7961
|
-
"all-caps":
|
|
7962
|
-
"application-outlined":
|
|
7963
|
-
"arrow-down":
|
|
7964
|
-
"arrow-downwards":
|
|
7965
|
-
"arrow-left":
|
|
7966
|
-
"arrow-leftwards":
|
|
7967
|
-
"arrow-right":
|
|
7968
|
-
"arrow-rightwards":
|
|
7969
|
-
"arrow-up":
|
|
7970
|
-
"arrow-upwards":
|
|
7971
|
-
"article-outlined":
|
|
7972
|
-
"at-sign":
|
|
7973
|
-
"auto-graph-outlined":
|
|
7974
|
-
"automotive-outlined":
|
|
7975
|
-
"bakery-outlined":
|
|
7976
|
-
"bar-outlined":
|
|
7977
|
-
"beauty-outlined":
|
|
7978
|
-
"beer-outlined":
|
|
7979
|
-
"bell-active-outlined":
|
|
7980
|
-
"bell-outlined":
|
|
7981
|
-
"bell-slash-outlined":
|
|
7982
|
-
"bill-management-outlined":
|
|
7983
|
-
"billing-outlined":
|
|
7984
|
-
"body-outlined":
|
|
7968
|
+
"adjustment-outlined": 59198,
|
|
7969
|
+
"afternoon-outlined": 59199,
|
|
7970
|
+
"ai-outlined": 59200,
|
|
7971
|
+
"alignment-2-outlined": 59201,
|
|
7972
|
+
"alignment-outlined": 59202,
|
|
7973
|
+
"all-caps": 59203,
|
|
7974
|
+
"application-outlined": 59204,
|
|
7975
|
+
"arrow-down": 59205,
|
|
7976
|
+
"arrow-downwards": 59206,
|
|
7977
|
+
"arrow-left": 59207,
|
|
7978
|
+
"arrow-leftwards": 59208,
|
|
7979
|
+
"arrow-right": 59209,
|
|
7980
|
+
"arrow-rightwards": 59210,
|
|
7981
|
+
"arrow-up": 59211,
|
|
7982
|
+
"arrow-upwards": 59212,
|
|
7983
|
+
"article-outlined": 59213,
|
|
7984
|
+
"at-sign": 59214,
|
|
7985
|
+
"auto-graph-outlined": 59215,
|
|
7986
|
+
"automotive-outlined": 59216,
|
|
7987
|
+
"bakery-outlined": 59217,
|
|
7988
|
+
"bar-outlined": 59218,
|
|
7989
|
+
"beauty-outlined": 59219,
|
|
7990
|
+
"beer-outlined": 59220,
|
|
7991
|
+
"bell-active-outlined": 59221,
|
|
7992
|
+
"bell-outlined": 59222,
|
|
7993
|
+
"bell-slash-outlined": 59223,
|
|
7994
|
+
"bill-management-outlined": 59224,
|
|
7995
|
+
"billing-outlined": 59225,
|
|
7996
|
+
"body-outlined": 59226,
|
|
7985
7997
|
bold: bold,
|
|
7986
|
-
"bolt-outlined":
|
|
7987
|
-
"book-outlined":
|
|
7988
|
-
"bookmark-added-outlined":
|
|
7989
|
-
"bookmark-checked-outlined":
|
|
7990
|
-
"bookmark-outlined":
|
|
7991
|
-
"box-1-outlined":
|
|
7992
|
-
"box-check-outlined":
|
|
7993
|
-
"box-outlined":
|
|
7994
|
-
"bullet-points":
|
|
7995
|
-
"cake-outlined":
|
|
7996
|
-
"calendar-dates-outlined":
|
|
7997
|
-
"calendar-star-outlined":
|
|
7998
|
-
"call-outlined":
|
|
7999
|
-
"call-split-outlined":
|
|
8000
|
-
"camera-outlined":
|
|
7998
|
+
"bolt-outlined": 59228,
|
|
7999
|
+
"book-outlined": 59229,
|
|
8000
|
+
"bookmark-added-outlined": 59230,
|
|
8001
|
+
"bookmark-checked-outlined": 59231,
|
|
8002
|
+
"bookmark-outlined": 59232,
|
|
8003
|
+
"box-1-outlined": 59233,
|
|
8004
|
+
"box-check-outlined": 59234,
|
|
8005
|
+
"box-outlined": 59235,
|
|
8006
|
+
"bullet-points": 59236,
|
|
8007
|
+
"cake-outlined": 59237,
|
|
8008
|
+
"calendar-dates-outlined": 59238,
|
|
8009
|
+
"calendar-star-outlined": 59239,
|
|
8010
|
+
"call-outlined": 59240,
|
|
8011
|
+
"call-split-outlined": 59241,
|
|
8012
|
+
"camera-outlined": 59242,
|
|
8001
8013
|
cancel: cancel,
|
|
8002
|
-
"car-forward-outlined":
|
|
8003
|
-
"cashback-outlined":
|
|
8004
|
-
"charging-station-outlined":
|
|
8005
|
-
"chat-bubble-outlined":
|
|
8006
|
-
"chat-unread-outlined":
|
|
8014
|
+
"car-forward-outlined": 59244,
|
|
8015
|
+
"cashback-outlined": 59245,
|
|
8016
|
+
"charging-station-outlined": 59246,
|
|
8017
|
+
"chat-bubble-outlined": 59247,
|
|
8018
|
+
"chat-unread-outlined": 59248,
|
|
8007
8019
|
checkmark: checkmark,
|
|
8008
|
-
"circle-add-outlined":
|
|
8009
|
-
"circle-cancel-outlined":
|
|
8010
|
-
"circle-down-outlined":
|
|
8011
|
-
"circle-info-outlined":
|
|
8012
|
-
"circle-left-outlined":
|
|
8013
|
-
"circle-ok-outlined":
|
|
8014
|
-
"circle-question-outlined":
|
|
8015
|
-
"circle-remove-outlined":
|
|
8016
|
-
"circle-right-outlined":
|
|
8017
|
-
"circle-up-outlined":
|
|
8018
|
-
"circle-warning-outlined":
|
|
8019
|
-
"clock-2-outlined":
|
|
8020
|
-
"clock-in-outlined":
|
|
8021
|
-
"clock-out-outlined":
|
|
8022
|
-
"clock-outlined":
|
|
8023
|
-
"cog-outlined":
|
|
8024
|
-
"coin-outlined":
|
|
8025
|
-
"coin-super-outlined":
|
|
8026
|
-
"comment-outlined":
|
|
8027
|
-
"contacts-outlined":
|
|
8028
|
-
"contacts-user-outlined":
|
|
8029
|
-
"credit-card-outlined":
|
|
8030
|
-
"cultural-site-outlined":
|
|
8031
|
-
"cup-outlined":
|
|
8032
|
-
"dentistry-outlined":
|
|
8033
|
-
"direction-arrows-outlined":
|
|
8034
|
-
"directory-outlined":
|
|
8035
|
-
"document-outlined":
|
|
8036
|
-
"dollar-box-outlined":
|
|
8037
|
-
"dollar-card-outlined":
|
|
8038
|
-
"dollar-coin-shine-outlined":
|
|
8039
|
-
"dollar-credit-card-outlined":
|
|
8040
|
-
"dollar-sign":
|
|
8041
|
-
"double-buildings-outlined":
|
|
8042
|
-
"double-left-arrows":
|
|
8043
|
-
"double-right-arrows":
|
|
8044
|
-
"download-box-outlined":
|
|
8045
|
-
"download-outlined":
|
|
8046
|
-
"edit-template-outlined":
|
|
8047
|
-
"electronics-outlined":
|
|
8048
|
-
"email-outlined":
|
|
8049
|
-
"end-break-outlined":
|
|
8050
|
-
"enter-arrow":
|
|
8051
|
-
"entertainment-outlined":
|
|
8052
|
-
"envelope-outlined":
|
|
8053
|
-
"evening-outlined":
|
|
8054
|
-
"expense-approval-outlined":
|
|
8055
|
-
"expense-outlined":
|
|
8056
|
-
"explore-outlined":
|
|
8057
|
-
"extension-outlined":
|
|
8058
|
-
"external-link":
|
|
8059
|
-
"eye-invisible-outlined":
|
|
8060
|
-
"eye-outlined":
|
|
8061
|
-
"face-id":
|
|
8062
|
-
"face-meh-outlined":
|
|
8063
|
-
"face-open-smiley-outlined":
|
|
8064
|
-
"face-sad-outlined":
|
|
8065
|
-
"face-smiley-outlined":
|
|
8066
|
-
"fastfood-outlined":
|
|
8067
|
-
"feed-outlined":
|
|
8068
|
-
"file-certified-outlined":
|
|
8069
|
-
"file-clone-outlined":
|
|
8070
|
-
"file-copy-outlined":
|
|
8071
|
-
"file-dispose-outlined":
|
|
8072
|
-
"file-dollar-certified-outlined":
|
|
8073
|
-
"file-dollar-outlined":
|
|
8074
|
-
"file-download-outlined":
|
|
8075
|
-
"file-export-outlined":
|
|
8076
|
-
"file-lock-outlined":
|
|
8077
|
-
"file-outlined":
|
|
8078
|
-
"file-search-outlined":
|
|
8079
|
-
"file-secured-outlined":
|
|
8080
|
-
"file-statutory-outlined":
|
|
8081
|
-
"file-verified-outlined":
|
|
8082
|
-
"filter-outlined":
|
|
8083
|
-
"fitness-outlined":
|
|
8084
|
-
"folder-outlined":
|
|
8085
|
-
"folder-upload-outlined":
|
|
8086
|
-
"folder-user-outlined":
|
|
8087
|
-
"form-outlined":
|
|
8088
|
-
"funnel-filter-outline":
|
|
8089
|
-
"goal-outlined":
|
|
8090
|
-
"graph-outlined":
|
|
8091
|
-
"grocery-outlined":
|
|
8092
|
-
"hand-holding-user-outlined":
|
|
8093
|
-
"handshake-outlined":
|
|
8094
|
-
"happy-sun-outlined":
|
|
8095
|
-
"health-bag-outlined":
|
|
8096
|
-
"heart-outlined":
|
|
8097
|
-
"home-active-outlined":
|
|
8098
|
-
"home-outlined":
|
|
8099
|
-
"id-card-outlined":
|
|
8100
|
-
"image-outlined":
|
|
8101
|
-
"import-outlined":
|
|
8102
|
-
"instapay-outlined":
|
|
8020
|
+
"circle-add-outlined": 59250,
|
|
8021
|
+
"circle-cancel-outlined": 59251,
|
|
8022
|
+
"circle-down-outlined": 59252,
|
|
8023
|
+
"circle-info-outlined": 59253,
|
|
8024
|
+
"circle-left-outlined": 59254,
|
|
8025
|
+
"circle-ok-outlined": 59255,
|
|
8026
|
+
"circle-question-outlined": 59256,
|
|
8027
|
+
"circle-remove-outlined": 59257,
|
|
8028
|
+
"circle-right-outlined": 59258,
|
|
8029
|
+
"circle-up-outlined": 59259,
|
|
8030
|
+
"circle-warning-outlined": 59260,
|
|
8031
|
+
"clock-2-outlined": 59261,
|
|
8032
|
+
"clock-in-outlined": 59262,
|
|
8033
|
+
"clock-out-outlined": 59263,
|
|
8034
|
+
"clock-outlined": 59264,
|
|
8035
|
+
"cog-outlined": 59265,
|
|
8036
|
+
"coin-outlined": 59266,
|
|
8037
|
+
"coin-super-outlined": 59267,
|
|
8038
|
+
"comment-outlined": 59268,
|
|
8039
|
+
"contacts-outlined": 59269,
|
|
8040
|
+
"contacts-user-outlined": 59270,
|
|
8041
|
+
"credit-card-outlined": 59271,
|
|
8042
|
+
"cultural-site-outlined": 59272,
|
|
8043
|
+
"cup-outlined": 59273,
|
|
8044
|
+
"dentistry-outlined": 59274,
|
|
8045
|
+
"direction-arrows-outlined": 59275,
|
|
8046
|
+
"directory-outlined": 59276,
|
|
8047
|
+
"document-outlined": 59277,
|
|
8048
|
+
"dollar-box-outlined": 59278,
|
|
8049
|
+
"dollar-card-outlined": 59279,
|
|
8050
|
+
"dollar-coin-shine-outlined": 59280,
|
|
8051
|
+
"dollar-credit-card-outlined": 59281,
|
|
8052
|
+
"dollar-sign": 59282,
|
|
8053
|
+
"double-buildings-outlined": 59283,
|
|
8054
|
+
"double-left-arrows": 59284,
|
|
8055
|
+
"double-right-arrows": 59285,
|
|
8056
|
+
"download-box-outlined": 59286,
|
|
8057
|
+
"download-outlined": 59287,
|
|
8058
|
+
"edit-template-outlined": 59288,
|
|
8059
|
+
"electronics-outlined": 59289,
|
|
8060
|
+
"email-outlined": 59290,
|
|
8061
|
+
"end-break-outlined": 59291,
|
|
8062
|
+
"enter-arrow": 59292,
|
|
8063
|
+
"entertainment-outlined": 59293,
|
|
8064
|
+
"envelope-outlined": 59294,
|
|
8065
|
+
"evening-outlined": 59295,
|
|
8066
|
+
"expense-approval-outlined": 59296,
|
|
8067
|
+
"expense-outlined": 59297,
|
|
8068
|
+
"explore-outlined": 59298,
|
|
8069
|
+
"extension-outlined": 59299,
|
|
8070
|
+
"external-link": 59300,
|
|
8071
|
+
"eye-invisible-outlined": 59301,
|
|
8072
|
+
"eye-outlined": 59302,
|
|
8073
|
+
"face-id": 59303,
|
|
8074
|
+
"face-meh-outlined": 59304,
|
|
8075
|
+
"face-open-smiley-outlined": 59305,
|
|
8076
|
+
"face-sad-outlined": 59306,
|
|
8077
|
+
"face-smiley-outlined": 59307,
|
|
8078
|
+
"fastfood-outlined": 59308,
|
|
8079
|
+
"feed-outlined": 59309,
|
|
8080
|
+
"file-certified-outlined": 59310,
|
|
8081
|
+
"file-clone-outlined": 59311,
|
|
8082
|
+
"file-copy-outlined": 59312,
|
|
8083
|
+
"file-dispose-outlined": 59313,
|
|
8084
|
+
"file-dollar-certified-outlined": 59314,
|
|
8085
|
+
"file-dollar-outlined": 59315,
|
|
8086
|
+
"file-download-outlined": 59316,
|
|
8087
|
+
"file-export-outlined": 59317,
|
|
8088
|
+
"file-lock-outlined": 59318,
|
|
8089
|
+
"file-outlined": 59319,
|
|
8090
|
+
"file-search-outlined": 59320,
|
|
8091
|
+
"file-secured-outlined": 59321,
|
|
8092
|
+
"file-statutory-outlined": 59322,
|
|
8093
|
+
"file-verified-outlined": 59323,
|
|
8094
|
+
"filter-outlined": 59324,
|
|
8095
|
+
"fitness-outlined": 59325,
|
|
8096
|
+
"folder-outlined": 59326,
|
|
8097
|
+
"folder-upload-outlined": 59327,
|
|
8098
|
+
"folder-user-outlined": 59328,
|
|
8099
|
+
"form-outlined": 59329,
|
|
8100
|
+
"funnel-filter-outline": 59330,
|
|
8101
|
+
"goal-outlined": 59331,
|
|
8102
|
+
"graph-outlined": 59332,
|
|
8103
|
+
"grocery-outlined": 59333,
|
|
8104
|
+
"hand-holding-user-outlined": 59334,
|
|
8105
|
+
"handshake-outlined": 59335,
|
|
8106
|
+
"happy-sun-outlined": 59336,
|
|
8107
|
+
"health-bag-outlined": 59337,
|
|
8108
|
+
"heart-outlined": 59338,
|
|
8109
|
+
"home-active-outlined": 59339,
|
|
8110
|
+
"home-outlined": 59340,
|
|
8111
|
+
"id-card-outlined": 59341,
|
|
8112
|
+
"image-outlined": 59342,
|
|
8113
|
+
"import-outlined": 59343,
|
|
8114
|
+
"instapay-outlined": 59344,
|
|
8103
8115
|
italic: italic,
|
|
8104
|
-
"job-search-outlined":
|
|
8105
|
-
"leave-approval-outlined":
|
|
8106
|
-
"link-1":
|
|
8107
|
-
"link-2":
|
|
8108
|
-
"list-outlined":
|
|
8109
|
-
"live-help-outlined":
|
|
8116
|
+
"job-search-outlined": 59346,
|
|
8117
|
+
"leave-approval-outlined": 59347,
|
|
8118
|
+
"link-1": 59348,
|
|
8119
|
+
"link-2": 59349,
|
|
8120
|
+
"list-outlined": 59350,
|
|
8121
|
+
"live-help-outlined": 59351,
|
|
8110
8122
|
local_mall_outlined: local_mall_outlined,
|
|
8111
|
-
"location-on-outlined":
|
|
8112
|
-
"location-outlined":
|
|
8113
|
-
"lock-outlined":
|
|
8114
|
-
"locked-file-outlined":
|
|
8115
|
-
"log-out":
|
|
8116
|
-
"mail-outlined":
|
|
8117
|
-
"map-outlined":
|
|
8118
|
-
"media-content-outlined":
|
|
8119
|
-
"menu-close":
|
|
8120
|
-
"menu-expand":
|
|
8121
|
-
"menu-fold-outlined":
|
|
8122
|
-
"menu-unfold-outlined":
|
|
8123
|
-
"moneybag-outlined":
|
|
8124
|
-
"moon-outlined":
|
|
8125
|
-
"more-horizontal":
|
|
8126
|
-
"more-vertical":
|
|
8127
|
-
"morning-outlined":
|
|
8128
|
-
"multiple-folders-outlined":
|
|
8129
|
-
"multiple-users-outlined":
|
|
8130
|
-
"near-me-outlined":
|
|
8131
|
-
"node-outlined":
|
|
8132
|
-
"number-points":
|
|
8123
|
+
"location-on-outlined": 59353,
|
|
8124
|
+
"location-outlined": 59354,
|
|
8125
|
+
"lock-outlined": 59355,
|
|
8126
|
+
"locked-file-outlined": 59356,
|
|
8127
|
+
"log-out": 59357,
|
|
8128
|
+
"mail-outlined": 59358,
|
|
8129
|
+
"map-outlined": 59359,
|
|
8130
|
+
"media-content-outlined": 59360,
|
|
8131
|
+
"menu-close": 59361,
|
|
8132
|
+
"menu-expand": 59362,
|
|
8133
|
+
"menu-fold-outlined": 59363,
|
|
8134
|
+
"menu-unfold-outlined": 59364,
|
|
8135
|
+
"moneybag-outlined": 59365,
|
|
8136
|
+
"moon-outlined": 59366,
|
|
8137
|
+
"more-horizontal": 59367,
|
|
8138
|
+
"more-vertical": 59368,
|
|
8139
|
+
"morning-outlined": 59369,
|
|
8140
|
+
"multiple-folders-outlined": 59370,
|
|
8141
|
+
"multiple-users-outlined": 59371,
|
|
8142
|
+
"near-me-outlined": 59372,
|
|
8143
|
+
"node-outlined": 59373,
|
|
8144
|
+
"number-points": 59374,
|
|
8133
8145
|
number: number,
|
|
8134
|
-
"overview-outlined":
|
|
8135
|
-
"park-outlined":
|
|
8136
|
-
"payment-summary-outlined":
|
|
8137
|
-
"payslip-outlined":
|
|
8138
|
-
"pencil-outlined":
|
|
8146
|
+
"overview-outlined": 59376,
|
|
8147
|
+
"park-outlined": 59377,
|
|
8148
|
+
"payment-summary-outlined": 59378,
|
|
8149
|
+
"payslip-outlined": 59379,
|
|
8150
|
+
"pencil-outlined": 59380,
|
|
8139
8151
|
percentage: percentage,
|
|
8140
|
-
"phone-outlined":
|
|
8141
|
-
"piggy-bank-outlined":
|
|
8142
|
-
"plane-outlined":
|
|
8143
|
-
"play-circle-outlined":
|
|
8144
|
-
"print-outlined":
|
|
8145
|
-
"propane-tank-outlined":
|
|
8146
|
-
"qr-code-outlined":
|
|
8147
|
-
"qualification-outlined":
|
|
8148
|
-
"re-assign":
|
|
8152
|
+
"phone-outlined": 59382,
|
|
8153
|
+
"piggy-bank-outlined": 59383,
|
|
8154
|
+
"plane-outlined": 59384,
|
|
8155
|
+
"play-circle-outlined": 59385,
|
|
8156
|
+
"print-outlined": 59386,
|
|
8157
|
+
"propane-tank-outlined": 59387,
|
|
8158
|
+
"qr-code-outlined": 59388,
|
|
8159
|
+
"qualification-outlined": 59389,
|
|
8160
|
+
"re-assign": 59390,
|
|
8149
8161
|
redeem: redeem,
|
|
8150
8162
|
refresh: refresh,
|
|
8151
8163
|
remove: remove,
|
|
8152
|
-
"reply-outlined":
|
|
8164
|
+
"reply-outlined": 59394,
|
|
8153
8165
|
restart: restart,
|
|
8154
|
-
"restaurant-outlined":
|
|
8155
|
-
"resume-outlined":
|
|
8156
|
-
"return-arrow":
|
|
8157
|
-
"rostering-outlined":
|
|
8158
|
-
"safety-outlined":
|
|
8159
|
-
"save-outlined":
|
|
8160
|
-
"schedule-outlined":
|
|
8161
|
-
"search-outlined":
|
|
8162
|
-
"search-secured-outlined":
|
|
8163
|
-
"send-outlined":
|
|
8164
|
-
"share-1":
|
|
8165
|
-
"share-2":
|
|
8166
|
-
"share-outlined-2":
|
|
8167
|
-
"share-outlined":
|
|
8168
|
-
"shop-outlined":
|
|
8166
|
+
"restaurant-outlined": 59396,
|
|
8167
|
+
"resume-outlined": 59397,
|
|
8168
|
+
"return-arrow": 59398,
|
|
8169
|
+
"rostering-outlined": 59399,
|
|
8170
|
+
"safety-outlined": 59400,
|
|
8171
|
+
"save-outlined": 59401,
|
|
8172
|
+
"schedule-outlined": 59402,
|
|
8173
|
+
"search-outlined": 59403,
|
|
8174
|
+
"search-secured-outlined": 59404,
|
|
8175
|
+
"send-outlined": 59405,
|
|
8176
|
+
"share-1": 59406,
|
|
8177
|
+
"share-2": 59407,
|
|
8178
|
+
"share-outlined-2": 59408,
|
|
8179
|
+
"share-outlined": 59409,
|
|
8180
|
+
"shop-outlined": 59410,
|
|
8169
8181
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8170
|
-
"show-chart-outlined":
|
|
8171
|
-
"single-down-arrow":
|
|
8172
|
-
"single-left-arrow":
|
|
8173
|
-
"single-right-arrow":
|
|
8174
|
-
"single-up-arrow":
|
|
8175
|
-
"smart-match-outlined":
|
|
8176
|
-
"sparkle-outlined":
|
|
8177
|
-
"speaker-active-outlined":
|
|
8178
|
-
"speaker-outlined":
|
|
8179
|
-
"star-circle-outlined":
|
|
8180
|
-
"star-outlined":
|
|
8181
|
-
"start-break-outlined":
|
|
8182
|
-
"stash-outlined":
|
|
8183
|
-
"stopwatch-outlined":
|
|
8182
|
+
"show-chart-outlined": 59412,
|
|
8183
|
+
"single-down-arrow": 59413,
|
|
8184
|
+
"single-left-arrow": 59414,
|
|
8185
|
+
"single-right-arrow": 59415,
|
|
8186
|
+
"single-up-arrow": 59416,
|
|
8187
|
+
"smart-match-outlined": 59417,
|
|
8188
|
+
"sparkle-outlined": 59418,
|
|
8189
|
+
"speaker-active-outlined": 59419,
|
|
8190
|
+
"speaker-outlined": 59420,
|
|
8191
|
+
"star-circle-outlined": 59421,
|
|
8192
|
+
"star-outlined": 59422,
|
|
8193
|
+
"start-break-outlined": 59423,
|
|
8194
|
+
"stash-outlined": 59424,
|
|
8195
|
+
"stopwatch-outlined": 59425,
|
|
8184
8196
|
strikethrough: strikethrough,
|
|
8185
|
-
"styler-outlined":
|
|
8186
|
-
"suitcase-clock-outlined":
|
|
8187
|
-
"suitcase-outlined":
|
|
8188
|
-
"survey-outlined":
|
|
8189
|
-
"switch-outlined":
|
|
8197
|
+
"styler-outlined": 59427,
|
|
8198
|
+
"suitcase-clock-outlined": 59428,
|
|
8199
|
+
"suitcase-outlined": 59429,
|
|
8200
|
+
"survey-outlined": 59430,
|
|
8201
|
+
"switch-outlined": 59431,
|
|
8190
8202
|
sync: sync,
|
|
8191
|
-
"tag-outlined":
|
|
8192
|
-
"target-outlined":
|
|
8193
|
-
"tennis-outlined":
|
|
8194
|
-
"thumb-down-outlined":
|
|
8195
|
-
"ticket-outlined":
|
|
8196
|
-
"timesheet-outlined":
|
|
8197
|
-
"timesheets-outlined":
|
|
8198
|
-
"today-outlined":
|
|
8203
|
+
"tag-outlined": 59433,
|
|
8204
|
+
"target-outlined": 59434,
|
|
8205
|
+
"tennis-outlined": 59435,
|
|
8206
|
+
"thumb-down-outlined": 59436,
|
|
8207
|
+
"ticket-outlined": 59437,
|
|
8208
|
+
"timesheet-outlined": 59438,
|
|
8209
|
+
"timesheets-outlined": 59439,
|
|
8210
|
+
"today-outlined": 59440,
|
|
8199
8211
|
transfer: transfer,
|
|
8200
|
-
"transportation-outlined":
|
|
8201
|
-
"trash-bin-outlined":
|
|
8202
|
-
"umbrela-outlined":
|
|
8203
|
-
"unavailability-outlined":
|
|
8212
|
+
"transportation-outlined": 59442,
|
|
8213
|
+
"trash-bin-outlined": 59443,
|
|
8214
|
+
"umbrela-outlined": 59444,
|
|
8215
|
+
"unavailability-outlined": 59445,
|
|
8204
8216
|
unavailable: unavailable,
|
|
8205
8217
|
underline: underline,
|
|
8206
|
-
"union-outlined":
|
|
8207
|
-
"unlock-outlined":
|
|
8208
|
-
"upload-outlined":
|
|
8209
|
-
"user-circle-outlined":
|
|
8210
|
-
"user-gear-outlined":
|
|
8211
|
-
"user-outlined":
|
|
8212
|
-
"user-rectangle-outlined":
|
|
8213
|
-
"video-1-outlined":
|
|
8214
|
-
"video-2-outlined":
|
|
8215
|
-
"volunteer-outlined":
|
|
8216
|
-
"wallet-outlined":
|
|
8217
|
-
"wellness-outlined":
|
|
8218
|
+
"union-outlined": 59448,
|
|
8219
|
+
"unlock-outlined": 59449,
|
|
8220
|
+
"upload-outlined": 59450,
|
|
8221
|
+
"user-circle-outlined": 59451,
|
|
8222
|
+
"user-gear-outlined": 59452,
|
|
8223
|
+
"user-outlined": 59453,
|
|
8224
|
+
"user-rectangle-outlined": 59454,
|
|
8225
|
+
"video-1-outlined": 59455,
|
|
8226
|
+
"video-2-outlined": 59456,
|
|
8227
|
+
"volunteer-outlined": 59457,
|
|
8228
|
+
"wallet-outlined": 59458,
|
|
8229
|
+
"wellness-outlined": 59459
|
|
8218
8230
|
};
|
|
8219
8231
|
|
|
8220
8232
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -8390,12 +8402,12 @@ var Container$1 = index$a(View)(function (_ref) {
|
|
|
8390
8402
|
_ref$themeVariant = _ref.themeVariant,
|
|
8391
8403
|
themeVariant = _ref$themeVariant === void 0 ? 'rounded' : _ref$themeVariant,
|
|
8392
8404
|
themeIntent = _ref.themeIntent;
|
|
8393
|
-
return {
|
|
8405
|
+
return _objectSpread2({
|
|
8394
8406
|
borderRadius: themeVariant === 'rounded' ? theme.__hd__.alert.radii["default"] : 0,
|
|
8395
8407
|
backgroundColor: theme.__hd__.alert.colors.backgrounds[themeIntent],
|
|
8396
8408
|
minHeight: theme.__hd__.alert.sizes.height,
|
|
8397
8409
|
flexDirection: 'row'
|
|
8398
|
-
};
|
|
8410
|
+
}, theme.__hd__.alert.shadows.wrapper);
|
|
8399
8411
|
});
|
|
8400
8412
|
var IconContainer$1 = index$a(View)(function (_ref2) {
|
|
8401
8413
|
var theme = _ref2.theme;
|
|
@@ -8404,7 +8416,7 @@ var IconContainer$1 = index$a(View)(function (_ref2) {
|
|
|
8404
8416
|
paddingLeft: theme.__hd__.alert.space.iconLeftPadding
|
|
8405
8417
|
};
|
|
8406
8418
|
});
|
|
8407
|
-
var StyledIcon$
|
|
8419
|
+
var StyledIcon$5 = index$a(Icon)(function (_ref3) {
|
|
8408
8420
|
var theme = _ref3.theme,
|
|
8409
8421
|
themeIntent = _ref3.themeIntent;
|
|
8410
8422
|
return {
|
|
@@ -8463,7 +8475,7 @@ var AlertIcon = function AlertIcon(_ref) {
|
|
|
8463
8475
|
intent = _ref.intent;
|
|
8464
8476
|
return icon ? /*#__PURE__*/React__default.createElement(IconContainer$1, {
|
|
8465
8477
|
testID: "alert-left-icon"
|
|
8466
|
-
}, /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
8478
|
+
}, /*#__PURE__*/React__default.createElement(StyledIcon$5, {
|
|
8467
8479
|
icon: icon,
|
|
8468
8480
|
size: "small",
|
|
8469
8481
|
themeIntent: intent
|
|
@@ -8504,7 +8516,7 @@ var Alert = function Alert(_ref2) {
|
|
|
8504
8516
|
}, typeof actionLabel === 'string' ? /*#__PURE__*/React__default.createElement(StyledBody$1, {
|
|
8505
8517
|
variant: "small-bold",
|
|
8506
8518
|
themeIntent: intent
|
|
8507
|
-
}, actionLabel) : /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
8519
|
+
}, actionLabel) : /*#__PURE__*/React__default.createElement(StyledIcon$5, {
|
|
8508
8520
|
icon: "cancel",
|
|
8509
8521
|
size: "small",
|
|
8510
8522
|
themeIntent: intent
|
|
@@ -8955,7 +8967,7 @@ var StyledTextWrapper$1 = index$a(View)(function () {
|
|
|
8955
8967
|
height: '100%'
|
|
8956
8968
|
};
|
|
8957
8969
|
});
|
|
8958
|
-
var StyledText$2 = index$a(Typography.
|
|
8970
|
+
var StyledText$2 = index$a(Typography.Body)(function (_ref2) {
|
|
8959
8971
|
var themeSize = _ref2.themeSize,
|
|
8960
8972
|
theme = _ref2.theme;
|
|
8961
8973
|
return _objectSpread2({
|
|
@@ -9483,7 +9495,7 @@ var StyledStatus = index$a(Animated.View)(function (_ref3) {
|
|
|
9483
9495
|
borderRadius: theme.radii.rounded
|
|
9484
9496
|
};
|
|
9485
9497
|
});
|
|
9486
|
-
var StyledIcon$
|
|
9498
|
+
var StyledIcon$4 = index$a(Icon)(function (_ref4) {
|
|
9487
9499
|
var themeSize = _ref4.themeSize,
|
|
9488
9500
|
theme = _ref4.theme;
|
|
9489
9501
|
return {
|
|
@@ -9591,7 +9603,7 @@ var Badge = function Badge(_ref) {
|
|
|
9591
9603
|
}]
|
|
9592
9604
|
}, style],
|
|
9593
9605
|
testID: testID
|
|
9594
|
-
}), isIconBadge ? /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
9606
|
+
}), isIconBadge ? /*#__PURE__*/React__default.createElement(StyledIcon$4, {
|
|
9595
9607
|
icon: icon,
|
|
9596
9608
|
themeSize: size,
|
|
9597
9609
|
intent: "text-inverted"
|
|
@@ -9624,18 +9636,15 @@ var ContentWrapper = index$a(View)({
|
|
|
9624
9636
|
var BottomBarWrapper = index$a(View)(function (_ref2) {
|
|
9625
9637
|
var themeInsets = _ref2.themeInsets,
|
|
9626
9638
|
theme = _ref2.theme;
|
|
9627
|
-
return {
|
|
9639
|
+
return _objectSpread2({
|
|
9628
9640
|
height: theme.__hd__.bottomNavigation.sizes.height + themeInsets.bottom,
|
|
9629
9641
|
paddingBottom: themeInsets.bottom,
|
|
9630
9642
|
paddingLeft: Math.max(themeInsets.left, themeInsets.right),
|
|
9631
9643
|
paddingRight: Math.max(themeInsets.left, themeInsets.right),
|
|
9632
9644
|
backgroundColor: theme.__hd__.bottomNavigation.colors.background,
|
|
9633
|
-
|
|
9634
|
-
|
|
9635
|
-
|
|
9636
|
-
shadowRadius: theme.__hd__.bottomNavigation.shadows.radius,
|
|
9637
|
-
elevation: theme.__hd__.bottomNavigation.shadows.elevation
|
|
9638
|
-
};
|
|
9645
|
+
borderTopColor: theme.__hd__.bottomNavigation.colors.borderTop,
|
|
9646
|
+
borderTopWidth: theme.__hd__.bottomNavigation.borderWidths.borderTop
|
|
9647
|
+
}, theme.__hd__.bottomNavigation.shadows.wrapper);
|
|
9639
9648
|
});
|
|
9640
9649
|
var BottomBar = index$a(View)({
|
|
9641
9650
|
flex: 1,
|
|
@@ -16236,7 +16245,7 @@ var StyledActionItemText = index$a(Typography.Body)(function (_ref2) {
|
|
|
16236
16245
|
color: theme.__hd__.fab.colors.actionItemText
|
|
16237
16246
|
};
|
|
16238
16247
|
});
|
|
16239
|
-
var StyledIcon$
|
|
16248
|
+
var StyledIcon$3 = index$a(Icon)(function (_ref3) {
|
|
16240
16249
|
var theme = _ref3.theme;
|
|
16241
16250
|
return {
|
|
16242
16251
|
color: theme.__hd__.fab.colors.actionItemText
|
|
@@ -16320,7 +16329,7 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
16320
16329
|
style: style,
|
|
16321
16330
|
onPress: onPress,
|
|
16322
16331
|
testID: testID
|
|
16323
|
-
}, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(StyledIconContainer, null, /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
16332
|
+
}, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(StyledIconContainer, null, /*#__PURE__*/React__default.createElement(StyledIcon$3, {
|
|
16324
16333
|
size: "xsmall",
|
|
16325
16334
|
icon: icon
|
|
16326
16335
|
})), /*#__PURE__*/React__default.createElement(StyledActionItemText, null, title))));
|
|
@@ -16729,17 +16738,12 @@ var Container = index$a(Animated.View)(function (_ref2) {
|
|
|
16729
16738
|
var theme = _ref2.theme,
|
|
16730
16739
|
themeVariant = _ref2.themeVariant,
|
|
16731
16740
|
themeIntent = _ref2.themeIntent;
|
|
16732
|
-
return {
|
|
16741
|
+
return _objectSpread2({
|
|
16733
16742
|
borderRadius: themeVariant === 'round' ? theme.__hd__.toast.radii["default"] : 0,
|
|
16734
16743
|
backgroundColor: theme.__hd__.toast.colors.backgrounds[themeIntent],
|
|
16735
16744
|
minHeight: theme.__hd__.toast.sizes.height,
|
|
16736
|
-
flexDirection: 'row'
|
|
16737
|
-
|
|
16738
|
-
shadowOffset: theme.__hd__.toast.shadows.offset,
|
|
16739
|
-
shadowRadius: theme.__hd__.toast.shadows.radius,
|
|
16740
|
-
shadowOpacity: theme.__hd__.toast.shadows.opacity,
|
|
16741
|
-
elevation: theme.__hd__.toast.shadows.elevation
|
|
16742
|
-
};
|
|
16745
|
+
flexDirection: 'row'
|
|
16746
|
+
}, theme.__hd__.toast.shadows.wrapper);
|
|
16743
16747
|
});
|
|
16744
16748
|
var IconContainer = index$a(View)(function (_ref3) {
|
|
16745
16749
|
var theme = _ref3.theme;
|
|
@@ -16780,7 +16784,7 @@ var StyledBody = index$a(Typography.Body)(function (_ref7) {
|
|
|
16780
16784
|
color: theme.__hd__.toast.colors.texts[themeIntent]
|
|
16781
16785
|
};
|
|
16782
16786
|
});
|
|
16783
|
-
var StyledIcon$
|
|
16787
|
+
var StyledIcon$2 = index$a(Icon)(function (_ref8) {
|
|
16784
16788
|
var theme = _ref8.theme,
|
|
16785
16789
|
themeIntent = _ref8.themeIntent;
|
|
16786
16790
|
return {
|
|
@@ -16833,7 +16837,7 @@ var ToastIcon = function ToastIcon(_ref) {
|
|
|
16833
16837
|
icon = _ref.icon;
|
|
16834
16838
|
return icon ? /*#__PURE__*/React__default.createElement(IconContainer, {
|
|
16835
16839
|
testID: "toast-left-icon"
|
|
16836
|
-
}, /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
16840
|
+
}, /*#__PURE__*/React__default.createElement(StyledIcon$2, {
|
|
16837
16841
|
icon: icon,
|
|
16838
16842
|
size: "small",
|
|
16839
16843
|
themeIntent: themeIntent
|
|
@@ -17085,15 +17089,19 @@ var StyledContent = index$a(View)(function (_ref2) {
|
|
|
17085
17089
|
alignItems: 'center'
|
|
17086
17090
|
};
|
|
17087
17091
|
});
|
|
17088
|
-
var StyledBadge$1 = index$a(
|
|
17092
|
+
var StyledBadge$1 = index$a(View)(function (_ref3) {
|
|
17089
17093
|
var theme = _ref3.theme;
|
|
17090
17094
|
return {
|
|
17091
17095
|
right: theme.__hd__.mapPin.space.iconRight,
|
|
17092
17096
|
top: theme.__hd__.mapPin.space.iconTop,
|
|
17093
17097
|
position: 'absolute',
|
|
17094
17098
|
backgroundColor: theme.__hd__.mapPin.colors.badge,
|
|
17095
|
-
|
|
17096
|
-
zIndex: 2
|
|
17099
|
+
borderRadius: theme.__hd__.mapPin.radii.badge,
|
|
17100
|
+
zIndex: 2,
|
|
17101
|
+
alignItems: 'center',
|
|
17102
|
+
justifyContent: 'center',
|
|
17103
|
+
width: theme.__hd__.mapPin.sizes.badge,
|
|
17104
|
+
height: theme.__hd__.mapPin.sizes.badge
|
|
17097
17105
|
};
|
|
17098
17106
|
});
|
|
17099
17107
|
var StyledImage = index$a.Image(function (_ref4) {
|
|
@@ -17104,6 +17112,18 @@ var StyledImage = index$a.Image(function (_ref4) {
|
|
|
17104
17112
|
borderRadius: theme.__hd__.mapPin.radii["default"] - theme.__hd__.mapPin.borderWidths["default"]
|
|
17105
17113
|
};
|
|
17106
17114
|
});
|
|
17115
|
+
var StyledIcon$1 = index$a(Icon)(function (_ref5) {
|
|
17116
|
+
var theme = _ref5.theme;
|
|
17117
|
+
return {
|
|
17118
|
+
color: theme.__hd__.mapPin.colors.icon
|
|
17119
|
+
};
|
|
17120
|
+
});
|
|
17121
|
+
var StyledBadgeIcon = index$a(Icon)(function (_ref6) {
|
|
17122
|
+
var theme = _ref6.theme;
|
|
17123
|
+
return {
|
|
17124
|
+
color: theme.__hd__.mapPin.colors.badgeIcon
|
|
17125
|
+
};
|
|
17126
|
+
});
|
|
17107
17127
|
function hexToRgba(hex, a) {
|
|
17108
17128
|
var arrBuff = new ArrayBuffer(4);
|
|
17109
17129
|
var vw = new DataView(arrBuff);
|
|
@@ -17115,8 +17135,8 @@ function hexToRgba(hex, a) {
|
|
|
17115
17135
|
b = _arrByte[2];
|
|
17116
17136
|
return "rgba(".concat(r, ",").concat(g, ",").concat(b, ",").concat(a, ")");
|
|
17117
17137
|
}
|
|
17118
|
-
var StyledFocusIcon = index$a(Icon)(function (
|
|
17119
|
-
var theme =
|
|
17138
|
+
var StyledFocusIcon = index$a(Icon)(function (_ref7) {
|
|
17139
|
+
var theme = _ref7.theme;
|
|
17120
17140
|
return {
|
|
17121
17141
|
fontSize: theme.__hd__.mapPin.fontSizes.icon,
|
|
17122
17142
|
textShadowColor: hexToRgba(theme.__hd__.mapPin.shadows.color, theme.__hd__.mapPin.shadows.opacity),
|
|
@@ -17164,16 +17184,16 @@ var MapPin = function MapPin(_ref) {
|
|
|
17164
17184
|
themeState: state
|
|
17165
17185
|
}, image && /*#__PURE__*/React__default.createElement(StyledImage, _extends$1({
|
|
17166
17186
|
testID: testID ? "".concat(testID, "-image") : undefined
|
|
17167
|
-
}, image)), icon && /*#__PURE__*/React__default.createElement(
|
|
17187
|
+
}, image)), icon && /*#__PURE__*/React__default.createElement(StyledIcon$1, {
|
|
17168
17188
|
icon: icon,
|
|
17169
17189
|
size: "xsmall",
|
|
17170
|
-
intent: "text",
|
|
17171
17190
|
testID: testID ? "".concat(testID, "-icon") : undefined
|
|
17172
17191
|
})), badgeIcon && /*#__PURE__*/React__default.createElement(StyledBadge$1, {
|
|
17173
|
-
icon: badgeIcon,
|
|
17174
|
-
intent: "primary",
|
|
17175
17192
|
testID: testID ? "".concat(testID, "-badge") : undefined
|
|
17176
|
-
}
|
|
17193
|
+
}, /*#__PURE__*/React__default.createElement(StyledBadgeIcon, {
|
|
17194
|
+
icon: badgeIcon,
|
|
17195
|
+
size: "xxxsmall"
|
|
17196
|
+
})));
|
|
17177
17197
|
};
|
|
17178
17198
|
var index$6 = Object.assign(MapPin, {
|
|
17179
17199
|
Focussed: MapPinFocussed
|
|
@@ -17196,13 +17216,8 @@ var StyledListItemContainer$1 = index$a(TouchableHighlight)(function (_ref) {
|
|
|
17196
17216
|
return sharedStyles;
|
|
17197
17217
|
case 'card':
|
|
17198
17218
|
return _objectSpread2(_objectSpread2({}, sharedStyles), {}, {
|
|
17199
|
-
alignItems: 'center'
|
|
17200
|
-
|
|
17201
|
-
shadowRadius: theme.__hd__.list.shadows.card.radius,
|
|
17202
|
-
shadowOffset: theme.__hd__.list.shadows.card.offset,
|
|
17203
|
-
shadowOpacity: theme.__hd__.list.shadows.card.opacity,
|
|
17204
|
-
elevation: theme.__hd__.list.shadows.card.elevation
|
|
17205
|
-
});
|
|
17219
|
+
alignItems: 'center'
|
|
17220
|
+
}, theme.__hd__.list.shadows.card);
|
|
17206
17221
|
default:
|
|
17207
17222
|
return sharedStyles;
|
|
17208
17223
|
}
|
|
@@ -40146,12 +40161,7 @@ var StyledInputContainer = index$a(View)(function (_ref) {
|
|
|
40146
40161
|
borderRadius: theme.__hd__.search.radii.container,
|
|
40147
40162
|
borderWidth: borderWidth,
|
|
40148
40163
|
borderColor: themeFocused ? theme.__hd__.search.colors[themeVariant].focusedBorder : theme.__hd__.search.colors[themeVariant].border
|
|
40149
|
-
}, themeVariant === 'reversed' && {
|
|
40150
|
-
elevation: theme.__hd__.search.shadows.elevation,
|
|
40151
|
-
shadowOffset: theme.__hd__.search.shadows.offset,
|
|
40152
|
-
shadowOpacity: theme.__hd__.search.shadows.opacity,
|
|
40153
|
-
shadowRadius: theme.__hd__.search.shadows.radius
|
|
40154
|
-
});
|
|
40164
|
+
}, themeVariant === 'reversed' && _objectSpread2({}, theme.__hd__.search.shadows.container));
|
|
40155
40165
|
});
|
|
40156
40166
|
var StyledAffixContainer = index$a(View)(function (_ref2) {
|
|
40157
40167
|
var theme = _ref2.theme;
|