@hero-design/rn 8.110.1 → 8.112.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursor/rules/performance-optimization.mdc +64 -0
- package/.cursor/rules/rn-rules.mdc +165 -0
- package/.cursor/rules/testing-rules.mdc +114 -0
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +26 -0
- package/assets/fonts/BeVietnamPro-BoldItalic.ttf +0 -0
- package/assets/fonts/BeVietnamPro-LightItalic.ttf +0 -0
- package/assets/fonts/BeVietnamPro-RegularItalic.ttf +0 -0
- package/assets/fonts/BeVietnamPro-SemiBoldItalic.ttf +0 -0
- package/assets/fonts/Saiga-LightItalic.otf +0 -0
- package/assets/fonts/Saiga-MediumItalic.otf +0 -0
- package/assets/fonts/Saiga-RegularItalic.otf +0 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +429 -389
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +429 -389
- package/package.json +6 -7
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +8 -0
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +12 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +13 -0
- package/src/components/Alert/index.tsx +10 -2
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +70 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +2 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +31 -0
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +1 -0
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +8 -0
- package/src/components/Badge/__tests__/__snapshots__/Status.spec.tsx.snap +1 -0
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Button/Button.tsx +10 -4
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +33 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +13 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRangeConnector.spec.tsx.snap +5 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +5 -0
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +16 -0
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +20 -0
- package/src/components/Chart/ColumnChart/__tests__/__snapshots__/index.spec.tsx.snap +49 -0
- package/src/components/Chart/Line/__tests__/__snapshots__/index.spec.tsx.snap +60 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/ChartFrame.spec.tsx.snap +62 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/ChartHeader.spec.tsx.snap +2 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/EmptyState.spec.tsx.snap +2 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/XAxis.spec.tsx.snap +12 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/YAxis.spec.tsx.snap +36 -0
- package/src/components/Checkbox/__tests__/__snapshots__/DefaultCheckBox.spec.tsx.snap +4 -0
- package/src/components/Checkbox/__tests__/__snapshots__/InlineCheckBox.spec.tsx.snap +6 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +19 -0
- package/src/components/Chip/index.tsx +9 -8
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +3 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +3 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +1 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +1 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +6 -0
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
- package/src/components/FAB/Pair/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +2 -0
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/FilterTrigger/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
- package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
- package/src/components/HeroDesignProvider/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +8 -0
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +13 -0
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +4 -0
- package/src/components/Modal/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +5 -0
- package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/Portal/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +3 -0
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +4 -0
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +10 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -0
- package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +2 -0
- package/src/components/Search/__tests__/__snapshots__/SearchSuffixIcon.spec.tsx.snap +1 -0
- package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +4 -0
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +7 -0
- package/src/components/SegmentedControl/__tests__/__snapshots__/SegmentedItem.spec.tsx.snap +1 -0
- package/src/components/SegmentedControl/__tests__/__snapshots__/index.spec.tsx.snap +3 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +20 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +24 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +39 -0
- package/src/components/Select/index.internal.tsx +13 -0
- package/src/components/StatusScreens/Empty/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
- package/src/components/StatusScreens/Error/__tests__/__snapshots__/index.spec.tsx.snap +13 -0
- package/src/components/StatusScreens/Success/__tests__/__snapshots__/index.spec.tsx.snap +16 -0
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +3 -0
- package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Tabs/__tests__/__snapshots__/SceneView.spec.tsx.snap +3 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +9 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +4 -0
- package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +1 -0
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +18 -0
- package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +10 -0
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +7 -0
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +40 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +3 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +5 -0
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +13 -0
- package/src/components/Toolbar/ToolbarGroup.tsx +10 -4
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +6 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +7 -0
- package/src/components/Typography/Body/StyledBody.tsx +24 -19
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +229 -0
- package/src/components/Typography/Body/__tests__/index.spec.tsx +19 -0
- package/src/components/Typography/Body/index.tsx +8 -2
- package/src/components/Typography/Caption/StyledCaption.tsx +15 -8
- package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +219 -0
- package/src/components/Typography/Caption/__tests__/index.spec.tsx +19 -0
- package/src/components/Typography/Caption/index.tsx +18 -10
- package/src/components/Typography/Label/StyledLabel.tsx +16 -6
- package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +8 -0
- package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +126 -0
- package/src/components/Typography/Label/__tests__/index.spec.tsx +12 -0
- package/src/components/Typography/Label/index.tsx +17 -9
- package/src/components/Typography/Title/StyledTitle.tsx +22 -8
- package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +441 -0
- package/src/components/Typography/Title/__tests__/index.spec.tsx +23 -0
- package/src/components/Typography/Title/index.tsx +8 -2
- package/src/index.internal.ts +14 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +24 -10
- package/src/theme/components/typography.ts +12 -10
- package/src/theme/global/typography.ts +9 -0
- package/src/types.internal.ts +14 -1
- package/stats/8.111.0/rn-stats.html +4842 -0
- package/types/components/Alert/index.d.ts +8 -2
- package/types/components/Button/Button.d.ts +8 -4
- package/types/components/Chip/index.d.ts +7 -2
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Select/index.internal.d.ts +13 -0
- package/types/components/TextInput/StyledTextInput.d.ts +1 -1
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/components/Toolbar/ToolbarGroup.d.ts +8 -4
- package/types/components/Typography/Body/StyledBody.d.ts +1 -0
- package/types/components/Typography/Body/index.d.ts +6 -2
- package/types/components/Typography/Caption/StyledCaption.d.ts +1 -0
- package/types/components/Typography/Caption/index.d.ts +5 -1
- package/types/components/Typography/Label/StyledLabel.d.ts +1 -0
- package/types/components/Typography/Label/index.d.ts +5 -1
- package/types/components/Typography/Title/StyledTitle.d.ts +1 -0
- package/types/components/Typography/Title/index.d.ts +6 -2
- package/types/index.internal.d.ts +13 -0
- package/types/theme/components/typography.d.ts +12 -10
- package/types/theme/global/typography.d.ts +3 -0
- package/types/types.internal.d.ts +13 -0
package/es/index.js
CHANGED
|
@@ -5171,13 +5171,19 @@ var getFonts = function getFonts(_ref) {
|
|
|
5171
5171
|
return {
|
|
5172
5172
|
neutral: {
|
|
5173
5173
|
light: "".concat(neutral, "-Light"),
|
|
5174
|
+
lightItalic: "".concat(neutral, "-LightItalic"),
|
|
5174
5175
|
regular: "".concat(neutral, "-Regular"),
|
|
5175
|
-
|
|
5176
|
+
regularItalic: "".concat(neutral, "-RegularItalic"),
|
|
5177
|
+
semiBold: "".concat(neutral, "-SemiBold"),
|
|
5178
|
+
semiBoldItalic: "".concat(neutral, "-SemiBoldItalic")
|
|
5176
5179
|
},
|
|
5177
5180
|
playful: {
|
|
5178
5181
|
light: "".concat(playful, "-Light"),
|
|
5182
|
+
lightItalic: "".concat(playful, "-LightItalic"),
|
|
5179
5183
|
regular: "".concat(playful, "-Regular"),
|
|
5180
|
-
|
|
5184
|
+
regularItalic: "".concat(playful, "-RegularItalic"),
|
|
5185
|
+
semiBold: "".concat(playful, "-Medium"),
|
|
5186
|
+
semiBoldItalic: "".concat(playful, "-MediumItalic")
|
|
5181
5187
|
}
|
|
5182
5188
|
};
|
|
5183
5189
|
};
|
|
@@ -7442,29 +7448,31 @@ var getTypographyTheme = function getTypographyTheme(theme) {
|
|
|
7442
7448
|
titles: {
|
|
7443
7449
|
neutral: {
|
|
7444
7450
|
h1: theme.fonts.neutral.regular,
|
|
7451
|
+
h1Italic: theme.fonts.neutral.regularItalic,
|
|
7445
7452
|
h2: theme.fonts.neutral.semiBold,
|
|
7453
|
+
h2Italic: theme.fonts.neutral.semiBoldItalic,
|
|
7446
7454
|
h3: theme.fonts.neutral.semiBold,
|
|
7455
|
+
h3Italic: theme.fonts.neutral.semiBoldItalic,
|
|
7447
7456
|
h4: theme.fonts.neutral.semiBold,
|
|
7457
|
+
h4Italic: theme.fonts.neutral.semiBoldItalic,
|
|
7448
7458
|
h5: theme.fonts.neutral.semiBold,
|
|
7449
|
-
|
|
7459
|
+
h5Italic: theme.fonts.neutral.semiBoldItalic,
|
|
7460
|
+
h6: theme.fonts.neutral.regular,
|
|
7461
|
+
h6Italic: theme.fonts.neutral.regularItalic
|
|
7450
7462
|
},
|
|
7451
7463
|
playful: {
|
|
7452
7464
|
h1: theme.fonts.playful.semiBold,
|
|
7465
|
+
h1Italic: theme.fonts.playful.semiBoldItalic,
|
|
7453
7466
|
h2: theme.fonts.playful.semiBold,
|
|
7467
|
+
h2Italic: theme.fonts.playful.semiBoldItalic,
|
|
7454
7468
|
h3: theme.fonts.playful.semiBold,
|
|
7469
|
+
h3Italic: theme.fonts.playful.semiBoldItalic,
|
|
7455
7470
|
h4: theme.fonts.playful.semiBold,
|
|
7471
|
+
h4Italic: theme.fonts.playful.semiBoldItalic,
|
|
7456
7472
|
h5: theme.fonts.playful.semiBold,
|
|
7457
|
-
|
|
7458
|
-
|
|
7459
|
-
|
|
7460
|
-
body: {
|
|
7461
|
-
neutral: {
|
|
7462
|
-
semiBold: theme.fonts.neutral.semiBold,
|
|
7463
|
-
regular: theme.fonts.neutral.regular
|
|
7464
|
-
},
|
|
7465
|
-
playful: {
|
|
7466
|
-
semiBold: theme.fonts.playful.semiBold,
|
|
7467
|
-
regular: theme.fonts.playful.regular
|
|
7473
|
+
h5Italic: theme.fonts.playful.semiBoldItalic,
|
|
7474
|
+
h6: theme.fonts.playful.regular,
|
|
7475
|
+
h6Italic: theme.fonts.playful.regularItalic
|
|
7468
7476
|
}
|
|
7469
7477
|
}
|
|
7470
7478
|
};
|
|
@@ -8060,17 +8068,20 @@ var FONTWEIGHT_MAP$1 = {
|
|
|
8060
8068
|
var StyledCaption = index$c(Text$1)(function (_ref) {
|
|
8061
8069
|
var themeFontWeight = _ref.themeFontWeight,
|
|
8062
8070
|
themeIntent = _ref.themeIntent,
|
|
8063
|
-
theme = _ref.theme
|
|
8071
|
+
theme = _ref.theme,
|
|
8072
|
+
themeIsItalic = _ref.themeIsItalic;
|
|
8073
|
+
var baseFontWeight = FONTWEIGHT_MAP$1[themeFontWeight];
|
|
8074
|
+
var fontFamily = themeIsItalic ? theme.__hd__.typography.fonts.neutral["".concat(baseFontWeight, "Italic")] : theme.__hd__.typography.fonts.neutral[baseFontWeight];
|
|
8064
8075
|
return {
|
|
8065
8076
|
fontSize: theme.__hd__.typography.fontSizes.caption,
|
|
8066
8077
|
lineHeight: theme.__hd__.typography.lineHeights.caption,
|
|
8067
8078
|
letterSpacing: themeFontWeight === 'regular' ? 0.36 : 0.24,
|
|
8068
8079
|
color: theme.__hd__.typography.colors[themeIntent],
|
|
8069
|
-
fontFamily:
|
|
8080
|
+
fontFamily: fontFamily
|
|
8070
8081
|
};
|
|
8071
8082
|
});
|
|
8072
8083
|
|
|
8073
|
-
var _excluded$N = ["children", "fontWeight", "intent", "allowFontScaling"];
|
|
8084
|
+
var _excluded$N = ["children", "fontWeight", "intent", "allowFontScaling", "fontStyle"];
|
|
8074
8085
|
var Caption = function Caption(_ref) {
|
|
8075
8086
|
var children = _ref.children,
|
|
8076
8087
|
_ref$fontWeight = _ref.fontWeight,
|
|
@@ -8079,35 +8090,46 @@ var Caption = function Caption(_ref) {
|
|
|
8079
8090
|
intent = _ref$intent === void 0 ? 'body' : _ref$intent,
|
|
8080
8091
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
8081
8092
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
8093
|
+
_ref$fontStyle = _ref.fontStyle,
|
|
8094
|
+
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8082
8095
|
nativeProps = _objectWithoutProperties(_ref, _excluded$N);
|
|
8083
8096
|
return /*#__PURE__*/React__default.createElement(StyledCaption, _extends$1({}, nativeProps, {
|
|
8084
8097
|
themeFontWeight: fontWeight,
|
|
8085
8098
|
themeIntent: intent,
|
|
8099
|
+
themeIsItalic: fontStyle === 'italic',
|
|
8086
8100
|
allowFontScaling: allowFontScaling
|
|
8087
8101
|
}), children);
|
|
8088
8102
|
};
|
|
8089
8103
|
|
|
8090
8104
|
var StyledLabel$1 = index$c(Text$1)(function (_ref) {
|
|
8091
8105
|
var themeIntent = _ref.themeIntent,
|
|
8092
|
-
theme = _ref.theme
|
|
8106
|
+
theme = _ref.theme,
|
|
8107
|
+
themeIsItalic = _ref.themeIsItalic;
|
|
8108
|
+
// For Label, we assume 'regular' weight for base font family
|
|
8109
|
+
var baseFontWeight = 'regular';
|
|
8110
|
+
var fontFamily = themeIsItalic ? theme.__hd__.typography.fonts.neutral["".concat(baseFontWeight, "Italic")] : theme.__hd__.typography.fonts.neutral[baseFontWeight];
|
|
8093
8111
|
return {
|
|
8094
8112
|
fontSize: theme.__hd__.typography.fontSizes.label,
|
|
8095
8113
|
lineHeight: theme.__hd__.typography.lineHeights.label,
|
|
8096
8114
|
letterSpacing: 0,
|
|
8097
|
-
color: theme.__hd__.typography.colors[themeIntent]
|
|
8115
|
+
color: theme.__hd__.typography.colors[themeIntent],
|
|
8116
|
+
fontFamily: fontFamily
|
|
8098
8117
|
};
|
|
8099
8118
|
});
|
|
8100
8119
|
|
|
8101
|
-
var _excluded$M = ["children", "intent", "allowFontScaling"];
|
|
8120
|
+
var _excluded$M = ["children", "intent", "allowFontScaling", "fontStyle"];
|
|
8102
8121
|
var Label = function Label(_ref) {
|
|
8103
8122
|
var children = _ref.children,
|
|
8104
8123
|
_ref$intent = _ref.intent,
|
|
8105
8124
|
intent = _ref$intent === void 0 ? 'body' : _ref$intent,
|
|
8106
8125
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
8107
8126
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
8127
|
+
_ref$fontStyle = _ref.fontStyle,
|
|
8128
|
+
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8108
8129
|
nativeProps = _objectWithoutProperties(_ref, _excluded$M);
|
|
8109
8130
|
return /*#__PURE__*/React__default.createElement(StyledLabel$1, _extends$1({}, nativeProps, {
|
|
8110
8131
|
themeIntent: intent,
|
|
8132
|
+
themeIsItalic: fontStyle === 'italic',
|
|
8111
8133
|
allowFontScaling: allowFontScaling
|
|
8112
8134
|
}), children);
|
|
8113
8135
|
};
|
|
@@ -8116,17 +8138,18 @@ var StyledTitle$1 = index$c(Text$1)(function (_ref) {
|
|
|
8116
8138
|
var themeIntent = _ref.themeIntent,
|
|
8117
8139
|
themeLevel = _ref.themeLevel,
|
|
8118
8140
|
theme = _ref.theme,
|
|
8119
|
-
typeface = _ref.themeTypeface
|
|
8141
|
+
typeface = _ref.themeTypeface,
|
|
8142
|
+
themeIsItalic = _ref.themeIsItalic;
|
|
8120
8143
|
return {
|
|
8121
8144
|
fontSize: theme.__hd__.typography.fontSizes.titles[typeface][themeLevel],
|
|
8122
8145
|
lineHeight: theme.__hd__.typography.lineHeights.titles[typeface][themeLevel],
|
|
8123
8146
|
letterSpacing: theme.__hd__.typography.letterSpacings.titles[typeface][themeLevel],
|
|
8124
|
-
|
|
8125
|
-
|
|
8147
|
+
color: theme.__hd__.typography.colors[themeIntent],
|
|
8148
|
+
fontFamily: themeIsItalic ? theme.__hd__.typography.fontWeights.titles[typeface]["".concat(themeLevel, "Italic")] : theme.__hd__.typography.fontWeights.titles[typeface][themeLevel]
|
|
8126
8149
|
};
|
|
8127
8150
|
});
|
|
8128
8151
|
|
|
8129
|
-
var _excluded$L = ["children", "intent", "allowFontScaling", "level", "typeface"];
|
|
8152
|
+
var _excluded$L = ["children", "intent", "allowFontScaling", "level", "typeface", "fontStyle"];
|
|
8130
8153
|
var Title = function Title(_ref) {
|
|
8131
8154
|
var children = _ref.children,
|
|
8132
8155
|
_ref$intent = _ref.intent,
|
|
@@ -8137,11 +8160,14 @@ var Title = function Title(_ref) {
|
|
|
8137
8160
|
level = _ref$level === void 0 ? 'h1' : _ref$level,
|
|
8138
8161
|
_ref$typeface = _ref.typeface,
|
|
8139
8162
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
8163
|
+
_ref$fontStyle = _ref.fontStyle,
|
|
8164
|
+
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8140
8165
|
nativeProps = _objectWithoutProperties(_ref, _excluded$L);
|
|
8141
8166
|
return /*#__PURE__*/React__default.createElement(StyledTitle$1, _extends$1({}, nativeProps, {
|
|
8142
8167
|
themeLevel: level,
|
|
8143
8168
|
themeTypeface: typeface,
|
|
8144
8169
|
themeIntent: intent,
|
|
8170
|
+
themeIsItalic: fontStyle === 'italic',
|
|
8145
8171
|
allowFontScaling: allowFontScaling
|
|
8146
8172
|
}), children);
|
|
8147
8173
|
};
|
|
@@ -8162,17 +8188,20 @@ var StyledBody$2 = index$c(Text$1)(function (_ref) {
|
|
|
8162
8188
|
var themeIntent = _ref.themeIntent,
|
|
8163
8189
|
theme = _ref.theme,
|
|
8164
8190
|
themeTypeface = _ref.themeTypeface,
|
|
8165
|
-
themeVariant = _ref.themeVariant
|
|
8191
|
+
themeVariant = _ref.themeVariant,
|
|
8192
|
+
themeIsItalic = _ref.themeIsItalic;
|
|
8193
|
+
var baseFontWeight = FONTWEIGHT_MAP[themeVariant];
|
|
8194
|
+
var fontFamily = themeIsItalic ? theme.__hd__.typography.fonts[themeTypeface]["".concat(baseFontWeight, "Italic")] : theme.__hd__.typography.fonts[themeTypeface][baseFontWeight];
|
|
8166
8195
|
return {
|
|
8167
8196
|
fontSize: theme.__hd__.typography.fontSizes.body[themeTypeface][FONTSIZE_MAP[themeVariant]],
|
|
8168
8197
|
lineHeight: theme.__hd__.typography.lineHeights.body[themeTypeface][FONTSIZE_MAP[themeVariant]],
|
|
8169
8198
|
letterSpacing: theme.__hd__.typography.letterSpacings.body[themeTypeface][FONTWEIGHT_MAP[themeVariant]],
|
|
8170
|
-
fontFamily:
|
|
8199
|
+
fontFamily: fontFamily,
|
|
8171
8200
|
color: theme.__hd__.typography.colors[themeIntent]
|
|
8172
8201
|
};
|
|
8173
8202
|
});
|
|
8174
8203
|
|
|
8175
|
-
var _excluded$K = ["children", "intent", "allowFontScaling", "typeface", "variant"];
|
|
8204
|
+
var _excluded$K = ["children", "intent", "allowFontScaling", "typeface", "variant", "fontStyle"];
|
|
8176
8205
|
var Body = function Body(_ref) {
|
|
8177
8206
|
var children = _ref.children,
|
|
8178
8207
|
_ref$intent = _ref.intent,
|
|
@@ -8183,11 +8212,14 @@ var Body = function Body(_ref) {
|
|
|
8183
8212
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
8184
8213
|
_ref$variant = _ref.variant,
|
|
8185
8214
|
variant = _ref$variant === void 0 ? 'regular' : _ref$variant,
|
|
8215
|
+
_ref$fontStyle = _ref.fontStyle,
|
|
8216
|
+
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8186
8217
|
nativeProps = _objectWithoutProperties(_ref, _excluded$K);
|
|
8187
8218
|
return /*#__PURE__*/React__default.createElement(StyledBody$2, _extends$1({}, nativeProps, {
|
|
8188
8219
|
themeTypeface: typeface,
|
|
8189
8220
|
themeIntent: intent,
|
|
8190
8221
|
themeVariant: variant,
|
|
8222
|
+
themeIsItalic: fontStyle === 'italic',
|
|
8191
8223
|
allowFontScaling: allowFontScaling
|
|
8192
8224
|
}), children);
|
|
8193
8225
|
};
|
|
@@ -8201,7 +8233,7 @@ var Typography = {
|
|
|
8201
8233
|
};
|
|
8202
8234
|
|
|
8203
8235
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
8204
|
-
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', 'thumb-up', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'academic-hat-outlined', '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', 'calculator-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', 'shield-check-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', 'thumb-up-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'];
|
|
8236
|
+
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', 'global-pound', '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', 'pound-coin-shine', 'pound-sign', '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', 'thumb-up', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'academic-hat-outlined', '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', 'calculator-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-pound-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', 'pound-box-outlined', 'pound-card-outlined', 'pound-coin-shine-outlined', 'pound-credit-card-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', 'shield-check-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', 'thumb-up-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'];
|
|
8205
8237
|
|
|
8206
8238
|
var activate = 59000;
|
|
8207
8239
|
var adjustment = 59003;
|
|
@@ -8236,65 +8268,65 @@ var feedbacks = 59073;
|
|
|
8236
8268
|
var file = 59091;
|
|
8237
8269
|
var filter$1 = 59092;
|
|
8238
8270
|
var folder = 59094;
|
|
8239
|
-
var globe =
|
|
8240
|
-
var graph =
|
|
8241
|
-
var heart =
|
|
8242
|
-
var home =
|
|
8243
|
-
var image =
|
|
8244
|
-
var instapay =
|
|
8245
|
-
var list =
|
|
8246
|
-
var loading =
|
|
8247
|
-
var location =
|
|
8248
|
-
var lock =
|
|
8249
|
-
var menu =
|
|
8250
|
-
var moneybag =
|
|
8251
|
-
var moon =
|
|
8252
|
-
var node =
|
|
8253
|
-
var paperclip =
|
|
8254
|
-
var pencil =
|
|
8255
|
-
var phone =
|
|
8256
|
-
var plane =
|
|
8257
|
-
var print =
|
|
8258
|
-
var reply =
|
|
8259
|
-
var reschedule =
|
|
8260
|
-
var rostering =
|
|
8261
|
-
var save =
|
|
8262
|
-
var schedule$1 =
|
|
8263
|
-
var search =
|
|
8264
|
-
var send =
|
|
8265
|
-
var speaker =
|
|
8266
|
-
var star =
|
|
8267
|
-
var stopwatch =
|
|
8268
|
-
var suitcase =
|
|
8269
|
-
var surfing =
|
|
8270
|
-
var survey =
|
|
8271
|
-
var swag =
|
|
8272
|
-
var tag =
|
|
8273
|
-
var target =
|
|
8274
|
-
var teams =
|
|
8275
|
-
var timesheet =
|
|
8276
|
-
var unlock =
|
|
8277
|
-
var user =
|
|
8278
|
-
var wallet =
|
|
8279
|
-
var warning =
|
|
8280
|
-
var add =
|
|
8281
|
-
var bold =
|
|
8282
|
-
var cancel =
|
|
8283
|
-
var checkmark =
|
|
8284
|
-
var italic =
|
|
8285
|
-
var local_mall_outlined =
|
|
8286
|
-
var number$2 =
|
|
8287
|
-
var percentage =
|
|
8288
|
-
var redeem =
|
|
8289
|
-
var refresh =
|
|
8290
|
-
var remove$1 =
|
|
8291
|
-
var restart =
|
|
8292
|
-
var shopping_basket_outlined =
|
|
8293
|
-
var strikethrough =
|
|
8294
|
-
var sync =
|
|
8295
|
-
var transfer =
|
|
8296
|
-
var unavailable =
|
|
8297
|
-
var underline =
|
|
8271
|
+
var globe = 59105;
|
|
8272
|
+
var graph = 59107;
|
|
8273
|
+
var heart = 59110;
|
|
8274
|
+
var home = 59112;
|
|
8275
|
+
var image = 59113;
|
|
8276
|
+
var instapay = 59118;
|
|
8277
|
+
var list = 59119;
|
|
8278
|
+
var loading = 59121;
|
|
8279
|
+
var location = 59123;
|
|
8280
|
+
var lock = 59124;
|
|
8281
|
+
var menu = 59128;
|
|
8282
|
+
var moneybag = 59130;
|
|
8283
|
+
var moon = 59131;
|
|
8284
|
+
var node = 59135;
|
|
8285
|
+
var paperclip = 59138;
|
|
8286
|
+
var pencil = 59140;
|
|
8287
|
+
var phone = 59141;
|
|
8288
|
+
var plane = 59144;
|
|
8289
|
+
var print = 59149;
|
|
8290
|
+
var reply = 59152;
|
|
8291
|
+
var reschedule = 59153;
|
|
8292
|
+
var rostering = 59154;
|
|
8293
|
+
var save = 59156;
|
|
8294
|
+
var schedule$1 = 59158;
|
|
8295
|
+
var search = 59160;
|
|
8296
|
+
var send = 59161;
|
|
8297
|
+
var speaker = 59163;
|
|
8298
|
+
var star = 59168;
|
|
8299
|
+
var stopwatch = 59170;
|
|
8300
|
+
var suitcase = 59171;
|
|
8301
|
+
var surfing = 59172;
|
|
8302
|
+
var survey = 59173;
|
|
8303
|
+
var swag = 59178;
|
|
8304
|
+
var tag = 59181;
|
|
8305
|
+
var target = 59182;
|
|
8306
|
+
var teams = 59183;
|
|
8307
|
+
var timesheet = 59186;
|
|
8308
|
+
var unlock = 59189;
|
|
8309
|
+
var user = 59190;
|
|
8310
|
+
var wallet = 59193;
|
|
8311
|
+
var warning = 59194;
|
|
8312
|
+
var add = 59202;
|
|
8313
|
+
var bold = 59232;
|
|
8314
|
+
var cancel = 59249;
|
|
8315
|
+
var checkmark = 59255;
|
|
8316
|
+
var italic = 59352;
|
|
8317
|
+
var local_mall_outlined = 59359;
|
|
8318
|
+
var number$2 = 59382;
|
|
8319
|
+
var percentage = 59388;
|
|
8320
|
+
var redeem = 59402;
|
|
8321
|
+
var refresh = 59403;
|
|
8322
|
+
var remove$1 = 59404;
|
|
8323
|
+
var restart = 59406;
|
|
8324
|
+
var shopping_basket_outlined = 59423;
|
|
8325
|
+
var strikethrough = 59438;
|
|
8326
|
+
var sync = 59444;
|
|
8327
|
+
var transfer = 59454;
|
|
8328
|
+
var unavailable = 59459;
|
|
8329
|
+
var underline = 59460;
|
|
8298
8330
|
var glyphMap = {
|
|
8299
8331
|
activate: activate,
|
|
8300
8332
|
"add-emoji": 59001,
|
|
@@ -8400,367 +8432,375 @@ var glyphMap = {
|
|
|
8400
8432
|
"format-underlined": 59101,
|
|
8401
8433
|
"funnel-filter": 59102,
|
|
8402
8434
|
"global-dollar": 59103,
|
|
8435
|
+
"global-pound": 59104,
|
|
8403
8436
|
globe: globe,
|
|
8404
|
-
"graduation-cap":
|
|
8437
|
+
"graduation-cap": 59106,
|
|
8405
8438
|
graph: graph,
|
|
8406
|
-
"happy-sun":
|
|
8407
|
-
"health-bag":
|
|
8439
|
+
"happy-sun": 59108,
|
|
8440
|
+
"health-bag": 59109,
|
|
8408
8441
|
heart: heart,
|
|
8409
|
-
"hero-points":
|
|
8442
|
+
"hero-points": 59111,
|
|
8410
8443
|
home: home,
|
|
8411
8444
|
image: image,
|
|
8412
|
-
"import":
|
|
8413
|
-
"incident-siren":
|
|
8414
|
-
"instapay-daily":
|
|
8415
|
-
"instapay-now":
|
|
8445
|
+
"import": 59114,
|
|
8446
|
+
"incident-siren": 59115,
|
|
8447
|
+
"instapay-daily": 59116,
|
|
8448
|
+
"instapay-now": 59117,
|
|
8416
8449
|
instapay: instapay,
|
|
8417
8450
|
list: list,
|
|
8418
|
-
"loading-2":
|
|
8451
|
+
"loading-2": 59120,
|
|
8419
8452
|
loading: loading,
|
|
8420
|
-
"location-on":
|
|
8453
|
+
"location-on": 59122,
|
|
8421
8454
|
location: location,
|
|
8422
8455
|
lock: lock,
|
|
8423
|
-
"looks-one":
|
|
8424
|
-
"looks-two":
|
|
8425
|
-
"media-content":
|
|
8456
|
+
"looks-one": 59125,
|
|
8457
|
+
"looks-two": 59126,
|
|
8458
|
+
"media-content": 59127,
|
|
8426
8459
|
menu: menu,
|
|
8427
|
-
"money-notes":
|
|
8460
|
+
"money-notes": 59129,
|
|
8428
8461
|
moneybag: moneybag,
|
|
8429
8462
|
moon: moon,
|
|
8430
|
-
"multiple-stars":
|
|
8431
|
-
"multiple-users":
|
|
8432
|
-
"near-me":
|
|
8463
|
+
"multiple-stars": 59132,
|
|
8464
|
+
"multiple-users": 59133,
|
|
8465
|
+
"near-me": 59134,
|
|
8433
8466
|
node: node,
|
|
8434
|
-
"open-folder":
|
|
8435
|
-
"paperclip-vertical":
|
|
8467
|
+
"open-folder": 59136,
|
|
8468
|
+
"paperclip-vertical": 59137,
|
|
8436
8469
|
paperclip: paperclip,
|
|
8437
|
-
"payment-summary":
|
|
8470
|
+
"payment-summary": 59139,
|
|
8438
8471
|
pencil: pencil,
|
|
8439
8472
|
phone: phone,
|
|
8440
|
-
"piggy-bank":
|
|
8441
|
-
"plane-up":
|
|
8473
|
+
"piggy-bank": 59142,
|
|
8474
|
+
"plane-up": 59143,
|
|
8442
8475
|
plane: plane,
|
|
8443
|
-
"play-arrow":
|
|
8444
|
-
"play-circle":
|
|
8476
|
+
"play-arrow": 59145,
|
|
8477
|
+
"play-circle": 59146,
|
|
8478
|
+
"pound-coin-shine": 59147,
|
|
8479
|
+
"pound-sign": 59148,
|
|
8445
8480
|
print: print,
|
|
8446
|
-
"raising-hands":
|
|
8447
|
-
"reply-arrow":
|
|
8481
|
+
"raising-hands": 59150,
|
|
8482
|
+
"reply-arrow": 59151,
|
|
8448
8483
|
reply: reply,
|
|
8449
8484
|
reschedule: reschedule,
|
|
8450
8485
|
rostering: rostering,
|
|
8451
|
-
"salary-sacrifice":
|
|
8486
|
+
"salary-sacrifice": 59155,
|
|
8452
8487
|
save: save,
|
|
8453
|
-
"schedule-send":
|
|
8488
|
+
"schedule-send": 59157,
|
|
8454
8489
|
schedule: schedule$1,
|
|
8455
|
-
"search-person":
|
|
8490
|
+
"search-person": 59159,
|
|
8456
8491
|
search: search,
|
|
8457
8492
|
send: send,
|
|
8458
|
-
"speaker-active":
|
|
8493
|
+
"speaker-active": 59162,
|
|
8459
8494
|
speaker: speaker,
|
|
8460
|
-
"star-award":
|
|
8461
|
-
"star-badge":
|
|
8462
|
-
"star-circle":
|
|
8463
|
-
"star-medal":
|
|
8495
|
+
"star-award": 59164,
|
|
8496
|
+
"star-badge": 59165,
|
|
8497
|
+
"star-circle": 59166,
|
|
8498
|
+
"star-medal": 59167,
|
|
8464
8499
|
star: star,
|
|
8465
|
-
"steps-circle":
|
|
8500
|
+
"steps-circle": 59169,
|
|
8466
8501
|
stopwatch: stopwatch,
|
|
8467
8502
|
suitcase: suitcase,
|
|
8468
8503
|
surfing: surfing,
|
|
8469
8504
|
survey: survey,
|
|
8470
|
-
"swag-pillar-benefit":
|
|
8471
|
-
"swag-pillar-career":
|
|
8472
|
-
"swag-pillar-money":
|
|
8473
|
-
"swag-pillar-work":
|
|
8505
|
+
"swag-pillar-benefit": 59174,
|
|
8506
|
+
"swag-pillar-career": 59175,
|
|
8507
|
+
"swag-pillar-money": 59176,
|
|
8508
|
+
"swag-pillar-work": 59177,
|
|
8474
8509
|
swag: swag,
|
|
8475
|
-
"swipe-right":
|
|
8476
|
-
"switch":
|
|
8510
|
+
"swipe-right": 59179,
|
|
8511
|
+
"switch": 59180,
|
|
8477
8512
|
tag: tag,
|
|
8478
8513
|
target: target,
|
|
8479
8514
|
teams: teams,
|
|
8480
|
-
"thumb-down":
|
|
8481
|
-
"thumb-up":
|
|
8515
|
+
"thumb-down": 59184,
|
|
8516
|
+
"thumb-up": 59185,
|
|
8482
8517
|
timesheet: timesheet,
|
|
8483
|
-
"touch-id":
|
|
8484
|
-
"trash-bin":
|
|
8518
|
+
"touch-id": 59187,
|
|
8519
|
+
"trash-bin": 59188,
|
|
8485
8520
|
unlock: unlock,
|
|
8486
8521
|
user: user,
|
|
8487
|
-
"video-1":
|
|
8488
|
-
"video-2":
|
|
8522
|
+
"video-1": 59191,
|
|
8523
|
+
"video-2": 59192,
|
|
8489
8524
|
wallet: wallet,
|
|
8490
8525
|
warning: warning,
|
|
8491
|
-
"academic-hat-outlined":
|
|
8492
|
-
"accommodation-outlined":
|
|
8493
|
-
"activate-outlined":
|
|
8494
|
-
"add-credit-card-outlined":
|
|
8495
|
-
"add-person-outlined":
|
|
8496
|
-
"add-section-outlined":
|
|
8497
|
-
"add-time-outlined":
|
|
8526
|
+
"academic-hat-outlined": 59195,
|
|
8527
|
+
"accommodation-outlined": 59196,
|
|
8528
|
+
"activate-outlined": 59197,
|
|
8529
|
+
"add-credit-card-outlined": 59198,
|
|
8530
|
+
"add-person-outlined": 59199,
|
|
8531
|
+
"add-section-outlined": 59200,
|
|
8532
|
+
"add-time-outlined": 59201,
|
|
8498
8533
|
add: add,
|
|
8499
|
-
"adjustment-outlined":
|
|
8500
|
-
"afternoon-outlined":
|
|
8501
|
-
"ai-outlined":
|
|
8502
|
-
"alignment-2-outlined":
|
|
8503
|
-
"alignment-outlined":
|
|
8504
|
-
"all-caps":
|
|
8505
|
-
"application-outlined":
|
|
8506
|
-
"arrow-down":
|
|
8507
|
-
"arrow-downwards":
|
|
8508
|
-
"arrow-left":
|
|
8509
|
-
"arrow-leftwards":
|
|
8510
|
-
"arrow-right":
|
|
8511
|
-
"arrow-rightwards":
|
|
8512
|
-
"arrow-up":
|
|
8513
|
-
"arrow-upwards":
|
|
8514
|
-
"article-outlined":
|
|
8515
|
-
"at-sign":
|
|
8516
|
-
"auto-graph-outlined":
|
|
8517
|
-
"automotive-outlined":
|
|
8518
|
-
"bakery-outlined":
|
|
8519
|
-
"bar-outlined":
|
|
8520
|
-
"beauty-outlined":
|
|
8521
|
-
"beer-outlined":
|
|
8522
|
-
"bell-active-outlined":
|
|
8523
|
-
"bell-outlined":
|
|
8524
|
-
"bell-slash-outlined":
|
|
8525
|
-
"bill-management-outlined":
|
|
8526
|
-
"billing-outlined":
|
|
8527
|
-
"body-outlined":
|
|
8534
|
+
"adjustment-outlined": 59203,
|
|
8535
|
+
"afternoon-outlined": 59204,
|
|
8536
|
+
"ai-outlined": 59205,
|
|
8537
|
+
"alignment-2-outlined": 59206,
|
|
8538
|
+
"alignment-outlined": 59207,
|
|
8539
|
+
"all-caps": 59208,
|
|
8540
|
+
"application-outlined": 59209,
|
|
8541
|
+
"arrow-down": 59210,
|
|
8542
|
+
"arrow-downwards": 59211,
|
|
8543
|
+
"arrow-left": 59212,
|
|
8544
|
+
"arrow-leftwards": 59213,
|
|
8545
|
+
"arrow-right": 59214,
|
|
8546
|
+
"arrow-rightwards": 59215,
|
|
8547
|
+
"arrow-up": 59216,
|
|
8548
|
+
"arrow-upwards": 59217,
|
|
8549
|
+
"article-outlined": 59218,
|
|
8550
|
+
"at-sign": 59219,
|
|
8551
|
+
"auto-graph-outlined": 59220,
|
|
8552
|
+
"automotive-outlined": 59221,
|
|
8553
|
+
"bakery-outlined": 59222,
|
|
8554
|
+
"bar-outlined": 59223,
|
|
8555
|
+
"beauty-outlined": 59224,
|
|
8556
|
+
"beer-outlined": 59225,
|
|
8557
|
+
"bell-active-outlined": 59226,
|
|
8558
|
+
"bell-outlined": 59227,
|
|
8559
|
+
"bell-slash-outlined": 59228,
|
|
8560
|
+
"bill-management-outlined": 59229,
|
|
8561
|
+
"billing-outlined": 59230,
|
|
8562
|
+
"body-outlined": 59231,
|
|
8528
8563
|
bold: bold,
|
|
8529
|
-
"bolt-outlined":
|
|
8530
|
-
"book-outlined":
|
|
8531
|
-
"bookmark-added-outlined":
|
|
8532
|
-
"bookmark-checked-outlined":
|
|
8533
|
-
"bookmark-outlined":
|
|
8534
|
-
"box-1-outlined":
|
|
8535
|
-
"box-check-outlined":
|
|
8536
|
-
"box-outlined":
|
|
8537
|
-
"bullet-points":
|
|
8538
|
-
"cake-outlined":
|
|
8539
|
-
"calculator-outlined":
|
|
8540
|
-
"calendar-dates-outlined":
|
|
8541
|
-
"calendar-star-outlined":
|
|
8542
|
-
"call-outlined":
|
|
8543
|
-
"call-split-outlined":
|
|
8544
|
-
"camera-outlined":
|
|
8564
|
+
"bolt-outlined": 59233,
|
|
8565
|
+
"book-outlined": 59234,
|
|
8566
|
+
"bookmark-added-outlined": 59235,
|
|
8567
|
+
"bookmark-checked-outlined": 59236,
|
|
8568
|
+
"bookmark-outlined": 59237,
|
|
8569
|
+
"box-1-outlined": 59238,
|
|
8570
|
+
"box-check-outlined": 59239,
|
|
8571
|
+
"box-outlined": 59240,
|
|
8572
|
+
"bullet-points": 59241,
|
|
8573
|
+
"cake-outlined": 59242,
|
|
8574
|
+
"calculator-outlined": 59243,
|
|
8575
|
+
"calendar-dates-outlined": 59244,
|
|
8576
|
+
"calendar-star-outlined": 59245,
|
|
8577
|
+
"call-outlined": 59246,
|
|
8578
|
+
"call-split-outlined": 59247,
|
|
8579
|
+
"camera-outlined": 59248,
|
|
8545
8580
|
cancel: cancel,
|
|
8546
|
-
"car-forward-outlined":
|
|
8547
|
-
"cashback-outlined":
|
|
8548
|
-
"charging-station-outlined":
|
|
8549
|
-
"chat-bubble-outlined":
|
|
8550
|
-
"chat-unread-outlined":
|
|
8581
|
+
"car-forward-outlined": 59250,
|
|
8582
|
+
"cashback-outlined": 59251,
|
|
8583
|
+
"charging-station-outlined": 59252,
|
|
8584
|
+
"chat-bubble-outlined": 59253,
|
|
8585
|
+
"chat-unread-outlined": 59254,
|
|
8551
8586
|
checkmark: checkmark,
|
|
8552
|
-
"circle-add-outlined":
|
|
8553
|
-
"circle-cancel-outlined":
|
|
8554
|
-
"circle-down-outlined":
|
|
8555
|
-
"circle-info-outlined":
|
|
8556
|
-
"circle-left-outlined":
|
|
8557
|
-
"circle-ok-outlined":
|
|
8558
|
-
"circle-question-outlined":
|
|
8559
|
-
"circle-remove-outlined":
|
|
8560
|
-
"circle-right-outlined":
|
|
8561
|
-
"circle-up-outlined":
|
|
8562
|
-
"circle-warning-outlined":
|
|
8563
|
-
"clock-2-outlined":
|
|
8564
|
-
"clock-in-outlined":
|
|
8565
|
-
"clock-out-outlined":
|
|
8566
|
-
"clock-outlined":
|
|
8567
|
-
"cog-outlined":
|
|
8568
|
-
"coin-outlined":
|
|
8569
|
-
"coin-super-outlined":
|
|
8570
|
-
"comment-outlined":
|
|
8571
|
-
"contacts-outlined":
|
|
8572
|
-
"contacts-user-outlined":
|
|
8573
|
-
"credit-card-outlined":
|
|
8574
|
-
"cultural-site-outlined":
|
|
8575
|
-
"cup-outlined":
|
|
8576
|
-
"dentistry-outlined":
|
|
8577
|
-
"direction-arrows-outlined":
|
|
8578
|
-
"directory-outlined":
|
|
8579
|
-
"document-outlined":
|
|
8580
|
-
"dollar-box-outlined":
|
|
8581
|
-
"dollar-card-outlined":
|
|
8582
|
-
"dollar-coin-shine-outlined":
|
|
8583
|
-
"dollar-credit-card-outlined":
|
|
8584
|
-
"dollar-sign":
|
|
8585
|
-
"double-buildings-outlined":
|
|
8586
|
-
"double-left-arrows":
|
|
8587
|
-
"double-right-arrows":
|
|
8588
|
-
"download-box-outlined":
|
|
8589
|
-
"download-outlined":
|
|
8590
|
-
"edit-template-outlined":
|
|
8591
|
-
"electronics-outlined":
|
|
8592
|
-
"email-outlined":
|
|
8593
|
-
"end-break-outlined":
|
|
8594
|
-
"enter-arrow":
|
|
8595
|
-
"entertainment-outlined":
|
|
8596
|
-
"envelope-outlined":
|
|
8597
|
-
"evening-outlined":
|
|
8598
|
-
"expense-approval-outlined":
|
|
8599
|
-
"expense-outlined":
|
|
8600
|
-
"explore-outlined":
|
|
8601
|
-
"extension-outlined":
|
|
8602
|
-
"external-link":
|
|
8603
|
-
"eye-invisible-outlined":
|
|
8604
|
-
"eye-outlined":
|
|
8605
|
-
"face-id":
|
|
8606
|
-
"face-meh-outlined":
|
|
8607
|
-
"face-open-smiley-outlined":
|
|
8608
|
-
"face-sad-outlined":
|
|
8609
|
-
"face-smiley-outlined":
|
|
8610
|
-
"fastfood-outlined":
|
|
8611
|
-
"feed-outlined":
|
|
8612
|
-
"file-certified-outlined":
|
|
8613
|
-
"file-clone-outlined":
|
|
8614
|
-
"file-copy-outlined":
|
|
8615
|
-
"file-dispose-outlined":
|
|
8616
|
-
"file-dollar-certified-outlined":
|
|
8617
|
-
"file-dollar-outlined":
|
|
8618
|
-
"file-download-outlined":
|
|
8619
|
-
"file-export-outlined":
|
|
8620
|
-
"file-lock-outlined":
|
|
8621
|
-
"file-outlined":
|
|
8622
|
-
"file-
|
|
8623
|
-
"file-
|
|
8624
|
-
"file-
|
|
8625
|
-
"file-
|
|
8626
|
-
"
|
|
8627
|
-
"
|
|
8628
|
-
"
|
|
8629
|
-
"folder-
|
|
8630
|
-
"folder-
|
|
8631
|
-
"
|
|
8632
|
-
"
|
|
8633
|
-
"
|
|
8634
|
-
"
|
|
8635
|
-
"
|
|
8636
|
-
"
|
|
8637
|
-
"
|
|
8638
|
-
"
|
|
8639
|
-
"
|
|
8640
|
-
"
|
|
8641
|
-
"
|
|
8642
|
-
"home-outlined":
|
|
8643
|
-
"
|
|
8644
|
-
"
|
|
8645
|
-
"
|
|
8646
|
-
"
|
|
8587
|
+
"circle-add-outlined": 59256,
|
|
8588
|
+
"circle-cancel-outlined": 59257,
|
|
8589
|
+
"circle-down-outlined": 59258,
|
|
8590
|
+
"circle-info-outlined": 59259,
|
|
8591
|
+
"circle-left-outlined": 59260,
|
|
8592
|
+
"circle-ok-outlined": 59261,
|
|
8593
|
+
"circle-question-outlined": 59262,
|
|
8594
|
+
"circle-remove-outlined": 59263,
|
|
8595
|
+
"circle-right-outlined": 59264,
|
|
8596
|
+
"circle-up-outlined": 59265,
|
|
8597
|
+
"circle-warning-outlined": 59266,
|
|
8598
|
+
"clock-2-outlined": 59267,
|
|
8599
|
+
"clock-in-outlined": 59268,
|
|
8600
|
+
"clock-out-outlined": 59269,
|
|
8601
|
+
"clock-outlined": 59270,
|
|
8602
|
+
"cog-outlined": 59271,
|
|
8603
|
+
"coin-outlined": 59272,
|
|
8604
|
+
"coin-super-outlined": 59273,
|
|
8605
|
+
"comment-outlined": 59274,
|
|
8606
|
+
"contacts-outlined": 59275,
|
|
8607
|
+
"contacts-user-outlined": 59276,
|
|
8608
|
+
"credit-card-outlined": 59277,
|
|
8609
|
+
"cultural-site-outlined": 59278,
|
|
8610
|
+
"cup-outlined": 59279,
|
|
8611
|
+
"dentistry-outlined": 59280,
|
|
8612
|
+
"direction-arrows-outlined": 59281,
|
|
8613
|
+
"directory-outlined": 59282,
|
|
8614
|
+
"document-outlined": 59283,
|
|
8615
|
+
"dollar-box-outlined": 59284,
|
|
8616
|
+
"dollar-card-outlined": 59285,
|
|
8617
|
+
"dollar-coin-shine-outlined": 59286,
|
|
8618
|
+
"dollar-credit-card-outlined": 59287,
|
|
8619
|
+
"dollar-sign": 59288,
|
|
8620
|
+
"double-buildings-outlined": 59289,
|
|
8621
|
+
"double-left-arrows": 59290,
|
|
8622
|
+
"double-right-arrows": 59291,
|
|
8623
|
+
"download-box-outlined": 59292,
|
|
8624
|
+
"download-outlined": 59293,
|
|
8625
|
+
"edit-template-outlined": 59294,
|
|
8626
|
+
"electronics-outlined": 59295,
|
|
8627
|
+
"email-outlined": 59296,
|
|
8628
|
+
"end-break-outlined": 59297,
|
|
8629
|
+
"enter-arrow": 59298,
|
|
8630
|
+
"entertainment-outlined": 59299,
|
|
8631
|
+
"envelope-outlined": 59300,
|
|
8632
|
+
"evening-outlined": 59301,
|
|
8633
|
+
"expense-approval-outlined": 59302,
|
|
8634
|
+
"expense-outlined": 59303,
|
|
8635
|
+
"explore-outlined": 59304,
|
|
8636
|
+
"extension-outlined": 59305,
|
|
8637
|
+
"external-link": 59306,
|
|
8638
|
+
"eye-invisible-outlined": 59307,
|
|
8639
|
+
"eye-outlined": 59308,
|
|
8640
|
+
"face-id": 59309,
|
|
8641
|
+
"face-meh-outlined": 59310,
|
|
8642
|
+
"face-open-smiley-outlined": 59311,
|
|
8643
|
+
"face-sad-outlined": 59312,
|
|
8644
|
+
"face-smiley-outlined": 59313,
|
|
8645
|
+
"fastfood-outlined": 59314,
|
|
8646
|
+
"feed-outlined": 59315,
|
|
8647
|
+
"file-certified-outlined": 59316,
|
|
8648
|
+
"file-clone-outlined": 59317,
|
|
8649
|
+
"file-copy-outlined": 59318,
|
|
8650
|
+
"file-dispose-outlined": 59319,
|
|
8651
|
+
"file-dollar-certified-outlined": 59320,
|
|
8652
|
+
"file-dollar-outlined": 59321,
|
|
8653
|
+
"file-download-outlined": 59322,
|
|
8654
|
+
"file-export-outlined": 59323,
|
|
8655
|
+
"file-lock-outlined": 59324,
|
|
8656
|
+
"file-outlined": 59325,
|
|
8657
|
+
"file-pound-outlined": 59326,
|
|
8658
|
+
"file-search-outlined": 59327,
|
|
8659
|
+
"file-secured-outlined": 59328,
|
|
8660
|
+
"file-statutory-outlined": 59329,
|
|
8661
|
+
"file-verified-outlined": 59330,
|
|
8662
|
+
"filter-outlined": 59331,
|
|
8663
|
+
"fitness-outlined": 59332,
|
|
8664
|
+
"folder-outlined": 59333,
|
|
8665
|
+
"folder-upload-outlined": 59334,
|
|
8666
|
+
"folder-user-outlined": 59335,
|
|
8667
|
+
"form-outlined": 59336,
|
|
8668
|
+
"funnel-filter-outline": 59337,
|
|
8669
|
+
"goal-outlined": 59338,
|
|
8670
|
+
"graph-outlined": 59339,
|
|
8671
|
+
"grocery-outlined": 59340,
|
|
8672
|
+
"hand-holding-user-outlined": 59341,
|
|
8673
|
+
"handshake-outlined": 59342,
|
|
8674
|
+
"happy-sun-outlined": 59343,
|
|
8675
|
+
"health-bag-outlined": 59344,
|
|
8676
|
+
"heart-outlined": 59345,
|
|
8677
|
+
"home-active-outlined": 59346,
|
|
8678
|
+
"home-outlined": 59347,
|
|
8679
|
+
"id-card-outlined": 59348,
|
|
8680
|
+
"image-outlined": 59349,
|
|
8681
|
+
"import-outlined": 59350,
|
|
8682
|
+
"instapay-outlined": 59351,
|
|
8647
8683
|
italic: italic,
|
|
8648
|
-
"job-search-outlined":
|
|
8649
|
-
"leave-approval-outlined":
|
|
8650
|
-
"link-1":
|
|
8651
|
-
"link-2":
|
|
8652
|
-
"list-outlined":
|
|
8653
|
-
"live-help-outlined":
|
|
8684
|
+
"job-search-outlined": 59353,
|
|
8685
|
+
"leave-approval-outlined": 59354,
|
|
8686
|
+
"link-1": 59355,
|
|
8687
|
+
"link-2": 59356,
|
|
8688
|
+
"list-outlined": 59357,
|
|
8689
|
+
"live-help-outlined": 59358,
|
|
8654
8690
|
local_mall_outlined: local_mall_outlined,
|
|
8655
|
-
"location-on-outlined":
|
|
8656
|
-
"location-outlined":
|
|
8657
|
-
"lock-outlined":
|
|
8658
|
-
"locked-file-outlined":
|
|
8659
|
-
"log-out":
|
|
8660
|
-
"mail-outlined":
|
|
8661
|
-
"map-outlined":
|
|
8662
|
-
"media-content-outlined":
|
|
8663
|
-
"menu-close":
|
|
8664
|
-
"menu-expand":
|
|
8665
|
-
"menu-fold-outlined":
|
|
8666
|
-
"menu-unfold-outlined":
|
|
8667
|
-
"moneybag-outlined":
|
|
8668
|
-
"moon-outlined":
|
|
8669
|
-
"more-horizontal":
|
|
8670
|
-
"more-vertical":
|
|
8671
|
-
"morning-outlined":
|
|
8672
|
-
"multiple-folders-outlined":
|
|
8673
|
-
"multiple-users-outlined":
|
|
8674
|
-
"near-me-outlined":
|
|
8675
|
-
"node-outlined":
|
|
8676
|
-
"number-points":
|
|
8691
|
+
"location-on-outlined": 59360,
|
|
8692
|
+
"location-outlined": 59361,
|
|
8693
|
+
"lock-outlined": 59362,
|
|
8694
|
+
"locked-file-outlined": 59363,
|
|
8695
|
+
"log-out": 59364,
|
|
8696
|
+
"mail-outlined": 59365,
|
|
8697
|
+
"map-outlined": 59366,
|
|
8698
|
+
"media-content-outlined": 59367,
|
|
8699
|
+
"menu-close": 59368,
|
|
8700
|
+
"menu-expand": 59369,
|
|
8701
|
+
"menu-fold-outlined": 59370,
|
|
8702
|
+
"menu-unfold-outlined": 59371,
|
|
8703
|
+
"moneybag-outlined": 59372,
|
|
8704
|
+
"moon-outlined": 59373,
|
|
8705
|
+
"more-horizontal": 59374,
|
|
8706
|
+
"more-vertical": 59375,
|
|
8707
|
+
"morning-outlined": 59376,
|
|
8708
|
+
"multiple-folders-outlined": 59377,
|
|
8709
|
+
"multiple-users-outlined": 59378,
|
|
8710
|
+
"near-me-outlined": 59379,
|
|
8711
|
+
"node-outlined": 59380,
|
|
8712
|
+
"number-points": 59381,
|
|
8677
8713
|
number: number$2,
|
|
8678
|
-
"overview-outlined":
|
|
8679
|
-
"park-outlined":
|
|
8680
|
-
"payment-summary-outlined":
|
|
8681
|
-
"payslip-outlined":
|
|
8682
|
-
"pencil-outlined":
|
|
8714
|
+
"overview-outlined": 59383,
|
|
8715
|
+
"park-outlined": 59384,
|
|
8716
|
+
"payment-summary-outlined": 59385,
|
|
8717
|
+
"payslip-outlined": 59386,
|
|
8718
|
+
"pencil-outlined": 59387,
|
|
8683
8719
|
percentage: percentage,
|
|
8684
|
-
"phone-outlined":
|
|
8685
|
-
"piggy-bank-outlined":
|
|
8686
|
-
"plane-outlined":
|
|
8687
|
-
"play-circle-outlined":
|
|
8688
|
-
"
|
|
8689
|
-
"
|
|
8690
|
-
"
|
|
8691
|
-
"
|
|
8692
|
-
"
|
|
8720
|
+
"phone-outlined": 59389,
|
|
8721
|
+
"piggy-bank-outlined": 59390,
|
|
8722
|
+
"plane-outlined": 59391,
|
|
8723
|
+
"play-circle-outlined": 59392,
|
|
8724
|
+
"pound-box-outlined": 59393,
|
|
8725
|
+
"pound-card-outlined": 59394,
|
|
8726
|
+
"pound-coin-shine-outlined": 59395,
|
|
8727
|
+
"pound-credit-card-outlined": 59396,
|
|
8728
|
+
"print-outlined": 59397,
|
|
8729
|
+
"propane-tank-outlined": 59398,
|
|
8730
|
+
"qr-code-outlined": 59399,
|
|
8731
|
+
"qualification-outlined": 59400,
|
|
8732
|
+
"re-assign": 59401,
|
|
8693
8733
|
redeem: redeem,
|
|
8694
8734
|
refresh: refresh,
|
|
8695
8735
|
remove: remove$1,
|
|
8696
|
-
"reply-outlined":
|
|
8736
|
+
"reply-outlined": 59405,
|
|
8697
8737
|
restart: restart,
|
|
8698
|
-
"restaurant-outlined":
|
|
8699
|
-
"resume-outlined":
|
|
8700
|
-
"return-arrow":
|
|
8701
|
-
"rostering-outlined":
|
|
8702
|
-
"safety-outlined":
|
|
8703
|
-
"save-outlined":
|
|
8704
|
-
"schedule-outlined":
|
|
8705
|
-
"search-outlined":
|
|
8706
|
-
"search-secured-outlined":
|
|
8707
|
-
"send-outlined":
|
|
8708
|
-
"share-1":
|
|
8709
|
-
"share-2":
|
|
8710
|
-
"share-outlined-2":
|
|
8711
|
-
"share-outlined":
|
|
8712
|
-
"shield-check-outlined":
|
|
8713
|
-
"shop-outlined":
|
|
8738
|
+
"restaurant-outlined": 59407,
|
|
8739
|
+
"resume-outlined": 59408,
|
|
8740
|
+
"return-arrow": 59409,
|
|
8741
|
+
"rostering-outlined": 59410,
|
|
8742
|
+
"safety-outlined": 59411,
|
|
8743
|
+
"save-outlined": 59412,
|
|
8744
|
+
"schedule-outlined": 59413,
|
|
8745
|
+
"search-outlined": 59414,
|
|
8746
|
+
"search-secured-outlined": 59415,
|
|
8747
|
+
"send-outlined": 59416,
|
|
8748
|
+
"share-1": 59417,
|
|
8749
|
+
"share-2": 59418,
|
|
8750
|
+
"share-outlined-2": 59419,
|
|
8751
|
+
"share-outlined": 59420,
|
|
8752
|
+
"shield-check-outlined": 59421,
|
|
8753
|
+
"shop-outlined": 59422,
|
|
8714
8754
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8715
|
-
"show-chart-outlined":
|
|
8716
|
-
"single-down-arrow":
|
|
8717
|
-
"single-left-arrow":
|
|
8718
|
-
"single-right-arrow":
|
|
8719
|
-
"single-up-arrow":
|
|
8720
|
-
"smart-match-outlined":
|
|
8721
|
-
"sparkle-outlined":
|
|
8722
|
-
"speaker-active-outlined":
|
|
8723
|
-
"speaker-outlined":
|
|
8724
|
-
"star-circle-outlined":
|
|
8725
|
-
"star-outlined":
|
|
8726
|
-
"start-break-outlined":
|
|
8727
|
-
"stash-outlined":
|
|
8728
|
-
"stopwatch-outlined":
|
|
8755
|
+
"show-chart-outlined": 59424,
|
|
8756
|
+
"single-down-arrow": 59425,
|
|
8757
|
+
"single-left-arrow": 59426,
|
|
8758
|
+
"single-right-arrow": 59427,
|
|
8759
|
+
"single-up-arrow": 59428,
|
|
8760
|
+
"smart-match-outlined": 59429,
|
|
8761
|
+
"sparkle-outlined": 59430,
|
|
8762
|
+
"speaker-active-outlined": 59431,
|
|
8763
|
+
"speaker-outlined": 59432,
|
|
8764
|
+
"star-circle-outlined": 59433,
|
|
8765
|
+
"star-outlined": 59434,
|
|
8766
|
+
"start-break-outlined": 59435,
|
|
8767
|
+
"stash-outlined": 59436,
|
|
8768
|
+
"stopwatch-outlined": 59437,
|
|
8729
8769
|
strikethrough: strikethrough,
|
|
8730
|
-
"styler-outlined":
|
|
8731
|
-
"suitcase-clock-outlined":
|
|
8732
|
-
"suitcase-outlined":
|
|
8733
|
-
"survey-outlined":
|
|
8734
|
-
"switch-outlined":
|
|
8770
|
+
"styler-outlined": 59439,
|
|
8771
|
+
"suitcase-clock-outlined": 59440,
|
|
8772
|
+
"suitcase-outlined": 59441,
|
|
8773
|
+
"survey-outlined": 59442,
|
|
8774
|
+
"switch-outlined": 59443,
|
|
8735
8775
|
sync: sync,
|
|
8736
|
-
"tag-outlined":
|
|
8737
|
-
"target-outlined":
|
|
8738
|
-
"tennis-outlined":
|
|
8739
|
-
"thumb-down-outlined":
|
|
8740
|
-
"thumb-up-outlined":
|
|
8741
|
-
"ticket-outlined":
|
|
8742
|
-
"timesheet-outlined":
|
|
8743
|
-
"timesheets-outlined":
|
|
8744
|
-
"today-outlined":
|
|
8776
|
+
"tag-outlined": 59445,
|
|
8777
|
+
"target-outlined": 59446,
|
|
8778
|
+
"tennis-outlined": 59447,
|
|
8779
|
+
"thumb-down-outlined": 59448,
|
|
8780
|
+
"thumb-up-outlined": 59449,
|
|
8781
|
+
"ticket-outlined": 59450,
|
|
8782
|
+
"timesheet-outlined": 59451,
|
|
8783
|
+
"timesheets-outlined": 59452,
|
|
8784
|
+
"today-outlined": 59453,
|
|
8745
8785
|
transfer: transfer,
|
|
8746
|
-
"transportation-outlined":
|
|
8747
|
-
"trash-bin-outlined":
|
|
8748
|
-
"umbrela-outlined":
|
|
8749
|
-
"unavailability-outlined":
|
|
8786
|
+
"transportation-outlined": 59455,
|
|
8787
|
+
"trash-bin-outlined": 59456,
|
|
8788
|
+
"umbrela-outlined": 59457,
|
|
8789
|
+
"unavailability-outlined": 59458,
|
|
8750
8790
|
unavailable: unavailable,
|
|
8751
8791
|
underline: underline,
|
|
8752
|
-
"union-outlined":
|
|
8753
|
-
"unlock-outlined":
|
|
8754
|
-
"upload-outlined":
|
|
8755
|
-
"user-circle-outlined":
|
|
8756
|
-
"user-gear-outlined":
|
|
8757
|
-
"user-outlined":
|
|
8758
|
-
"user-rectangle-outlined":
|
|
8759
|
-
"video-1-outlined":
|
|
8760
|
-
"video-2-outlined":
|
|
8761
|
-
"volunteer-outlined":
|
|
8762
|
-
"wallet-outlined":
|
|
8763
|
-
"wellness-outlined":
|
|
8792
|
+
"union-outlined": 59461,
|
|
8793
|
+
"unlock-outlined": 59462,
|
|
8794
|
+
"upload-outlined": 59463,
|
|
8795
|
+
"user-circle-outlined": 59464,
|
|
8796
|
+
"user-gear-outlined": 59465,
|
|
8797
|
+
"user-outlined": 59466,
|
|
8798
|
+
"user-rectangle-outlined": 59467,
|
|
8799
|
+
"video-1-outlined": 59468,
|
|
8800
|
+
"video-2-outlined": 59469,
|
|
8801
|
+
"volunteer-outlined": 59470,
|
|
8802
|
+
"wallet-outlined": 59471,
|
|
8803
|
+
"wellness-outlined": 59472
|
|
8764
8804
|
};
|
|
8765
8805
|
|
|
8766
8806
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|