@hero-design/rn 8.88.0 → 8.89.0-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.88.0",
3
+ "version": "8.89.0-alpha.0",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -95,5 +95,6 @@
95
95
  "ts-jest": "^29.1.1",
96
96
  "typescript": "^5.7.3"
97
97
  },
98
- "prettier": "prettier-config-hd"
98
+ "prettier": "prettier-config-hd",
99
+ "react-native": "src/index.ts"
99
100
  }
package/src/index.ts CHANGED
@@ -10,6 +10,7 @@ import theme, {
10
10
  jobsSystemPalette,
11
11
  walletSystemPalette,
12
12
  eBensSystemPalette,
13
+ ehWorkDarkPalette,
13
14
  ThemeSwitcher,
14
15
  withTheme,
15
16
  } from './theme';
@@ -90,6 +91,7 @@ export {
90
91
  jobsSystemPalette,
91
92
  walletSystemPalette,
92
93
  eBensSystemPalette,
94
+ ehWorkDarkPalette,
93
95
  Accordion,
94
96
  Alert,
95
97
  AppCue,
@@ -0,0 +1,60 @@
1
+ import swagLightGlobalPalette from './swagLightGlobal';
2
+
3
+ const ehWorkDarkPalette = {
4
+ ...swagLightGlobalPalette,
5
+ // Surface
6
+ defaultGlobalSurface: '#27272A',
7
+ neutralGlobalSurface: '#121214',
8
+ darkGlobalSurface: '#fcfbff',
9
+ overlayGlobalSurface: '#ffffff',
10
+ // On Surface
11
+ onDefaultGlobalSurface: '#ffffff',
12
+ mutedOnDefaultGlobalSurface: '#a9a9b2',
13
+ inactiveOnDefaultGlobalSurface: '#71717a',
14
+ disabledOnDefaultGlobalSurface: '#52525b',
15
+ onOnDarkGlobalSurface: '#121214',
16
+ // Outline:
17
+ primaryOutline: '#a9a9b2',
18
+ secondaryOutline: '#3f3f46',
19
+ inactiveOutline: '#71717a',
20
+ disabledOutline: '#52525b',
21
+ // Archived:
22
+ archivedSurface: '#52525b',
23
+ mutedArchived: '#3f3f46',
24
+ archived: '#71717a',
25
+ onArchivedSurface: '#a9a9b2',
26
+ // Error:
27
+ errorSurface: '#7a1d06',
28
+ mutedError: '#9b2508',
29
+ error: '#bd2d09',
30
+ onErrorSurface: '#fecfca',
31
+ // Warming:
32
+ warningSurface: '#963e03',
33
+ mutedWarning: '#c35004',
34
+ warning: '#dc6204',
35
+ onWarningSurface: '#fff0d5',
36
+ // Success:
37
+ successSurface: '#00483e',
38
+ mutedSuccess: '#016256',
39
+ success: '#017d6d',
40
+ onSuccessSurface: '#a7f3e9',
41
+ // Info:
42
+ infoSurface: '#004a61',
43
+ mutedInfo: '#006585',
44
+ info: '#007da3',
45
+ onInfoSurface: '#a0e8ff',
46
+ // Brand:
47
+ primary: '#cdacfe',
48
+ onPrimary: '#fdfbff',
49
+ secondary: '#7622d7',
50
+ onSecondary: '#ffffff',
51
+ defaultSurface: '#fdfbff',
52
+ highlightedSurface: '#280541',
53
+ pressedSurface: '#9a58fc',
54
+ decorativePrimary: '#fdfbff',
55
+ decorativePrimarySurface: '#74409a',
56
+ decorativeSecondary: '#fdfbff',
57
+ decorativeSecondarySurface: '#f0e6ff',
58
+ };
59
+
60
+ export default ehWorkDarkPalette;
@@ -7,6 +7,7 @@ import workSystemPalette from './colors/work';
7
7
  import jobsSystemPalette from './colors/jobs';
8
8
  import walletSystemPalette from './colors/wallet';
9
9
  import eBensSystemPalette from './colors/eBens';
10
+ import ehWorkDarkPalette from './colors/ehWorkDark';
10
11
 
11
12
  import { getFonts, getFontSizes, getLineHeights } from './typography';
12
13
  import { getSpace } from './space';
@@ -56,4 +57,5 @@ export {
56
57
  jobsSystemPalette,
57
58
  walletSystemPalette,
58
59
  eBensSystemPalette,
60
+ ehWorkDarkPalette,
59
61
  };
@@ -10,6 +10,7 @@ import {
10
10
  jobsSystemPalette,
11
11
  walletSystemPalette,
12
12
  eBensSystemPalette,
13
+ ehWorkDarkPalette,
13
14
  } from './global';
14
15
 
15
16
  import type { Theme } from './getTheme';
@@ -32,6 +33,7 @@ export {
32
33
  jobsSystemPalette,
33
34
  walletSystemPalette,
34
35
  eBensSystemPalette,
36
+ ehWorkDarkPalette,
35
37
  };
36
38
 
37
39
  export default defaultTheme;
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ export type CalendarDateRange = {
3
+ startDate?: Date;
4
+ endDate?: Date;
5
+ };
6
+ export interface CalendarProps {
7
+ value?: CalendarDateRange;
8
+ visibleDate: Date;
9
+ minDate?: Date;
10
+ maxDate?: Date;
11
+ onChange?: (dateRange: CalendarDateRange) => void;
12
+ onPreviousPress?: () => void;
13
+ onNextPress?: () => void;
14
+ onTitlePress?: () => void;
15
+ markedDates?: Date[];
16
+ testID?: string;
17
+ onMonthChange?: (date: Date) => void;
18
+ onToggleMonthPicker?: (visible: boolean) => void;
19
+ monthPickerConfirmLabel?: string;
20
+ monthPickerCancelLabel?: string;
21
+ }
22
+ declare const CalendarRange: ({ value, visibleDate, onChange, onPreviousPress, onNextPress, onTitlePress, minDate, maxDate, markedDates, testID, onMonthChange, onToggleMonthPicker, monthPickerConfirmLabel, monthPickerCancelLabel, }: CalendarProps) => React.JSX.Element;
23
+ export default CalendarRange;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ interface SelectedDateProps {
3
+ date: Date;
4
+ onPress?: () => void;
5
+ marked?: boolean;
6
+ isStart?: boolean;
7
+ showConnector?: boolean;
8
+ itemWidth?: number;
9
+ }
10
+ declare const SelectedDate: ({ date, onPress, marked, isStart, showConnector, itemWidth, }: SelectedDateProps) => React.JSX.Element;
11
+ export default SelectedDate;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ interface SelectedDateProps {
3
+ date: Date;
4
+ onPress?: () => void;
5
+ marked?: boolean;
6
+ isStart?: boolean;
7
+ showConnector?: boolean;
8
+ itemWidth?: number;
9
+ }
10
+ declare const SelectedDate: ({ date, onPress, marked, isStart, showConnector, itemWidth, }: SelectedDateProps) => React.JSX.Element;
11
+ export default SelectedDate;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * A simple calculator class to demonstrate proper naming conventions
3
+ * and formatting.
4
+ */
5
+ declare class SimpleCalculator {
6
+ /**
7
+ * Adds two integers and returns the result.
8
+ * @param firstNumber - The first integer.
9
+ * @param secondNumber - The second integer.
10
+ * @returns The sum of the two integers.
11
+ */
12
+ addIntegers(firstNumber: number, secondNumber: number): number;
13
+ }
@@ -0,0 +1,7 @@
1
+ import { LayoutChangeEvent } from 'react-native';
2
+ export declare const useCalendarLayout: () => {
3
+ contentHeight: number;
4
+ contentWidth: number;
5
+ calendarItemWidth: number | undefined;
6
+ handleLayout: (e: LayoutChangeEvent) => void;
7
+ };
@@ -0,0 +1,31 @@
1
+ import React from 'react';
2
+ import { StyleProp, ViewStyle } from 'react-native';
3
+ import { IconName } from '../Icon';
4
+ interface CompoundSearchHandlerProps {
5
+ /**
6
+ * Name of Icon or ReactElement to render on the left side of the input, before the user's cursor.
7
+ */
8
+ prefix?: IconName | React.ReactElement;
9
+ /**
10
+ * Name of Icon or ReactElement to render on the right side of the input.
11
+ */
12
+ suffix?: IconName | React.ReactElement;
13
+ /**
14
+ * Additional wrapper style.
15
+ */
16
+ style?: StyleProp<ViewStyle>;
17
+ /**
18
+ * Label of the Input handler.
19
+ */
20
+ label: React.ReactNode;
21
+ /**
22
+ * Content of the Input handler.
23
+ */
24
+ content: React.ReactNode;
25
+ /**
26
+ * Testing id of the component.
27
+ */
28
+ testID?: string;
29
+ }
30
+ declare const CompoundSearchHandler: (props: CompoundSearchHandlerProps) => React.JSX.Element;
31
+ export default CompoundSearchHandler;
@@ -0,0 +1,60 @@
1
+ import React from 'react';
2
+ import type { TextInputProps as NativeTextInputProps, TextInput as RNTextInput, StyleProp, ViewStyle, TextStyle } from 'react-native';
3
+ import { State } from './StyledCompoundSearch';
4
+ import { IconName } from '../Icon';
5
+ export declare type CompoundSearchTextInputHandles = Pick<RNTextInput, 'focus' | 'clear' | 'blur' | 'isFocused' | 'setNativeProps'>;
6
+ interface CompoundSearchTextInputProps extends NativeTextInputProps {
7
+ /**
8
+ * Name of Icon or ReactElement to render on the left side of the input, before the user's cursor.
9
+ */
10
+ prefix?: IconName | React.ReactElement;
11
+ /**
12
+ * Name of Icon or ReactElement to render on the right side of the input.
13
+ */
14
+ suffix?: IconName | React.ReactElement;
15
+ /**
16
+ * Additional wrapper style.
17
+ */
18
+ style?: StyleProp<ViewStyle>;
19
+ /**
20
+ * Input text style.
21
+ */
22
+ textStyle?: StyleProp<TextStyle>;
23
+ /**
24
+ * Testing id of the component.
25
+ */
26
+ testID?: string;
27
+ /**
28
+ * Accessibility label for the input (Android).
29
+ */
30
+ accessibilityLabelledBy?: string;
31
+ /**
32
+ * Placeholder text to display.
33
+ * */
34
+ placeholder?: string;
35
+ /**
36
+ * Whether the input is editable.
37
+ * */
38
+ editable?: boolean;
39
+ /**
40
+ * Whether the input is disabled.
41
+ */
42
+ disabled?: boolean;
43
+ /**
44
+ * The max length of the input.
45
+ * If the max length is set, the input will display the current length and the max length.
46
+ * */
47
+ maxLength?: number;
48
+ /**
49
+ * Whether to hide the character count.
50
+ * */
51
+ renderInputValue?: (inputProps: NativeTextInputProps) => React.ReactNode;
52
+ }
53
+ export declare const getState: ({ disabled, editable, isEmptyValue, }: {
54
+ disabled?: boolean | undefined;
55
+ editable?: boolean | undefined;
56
+ isFocused?: boolean | undefined;
57
+ isEmptyValue?: boolean | undefined;
58
+ }) => State;
59
+ declare const CompoundSearchTextInput: React.ForwardRefExoticComponent<CompoundSearchTextInputProps & React.RefAttributes<CompoundSearchTextInputHandles>>;
60
+ export default CompoundSearchTextInput;
@@ -0,0 +1,40 @@
1
+ import { TextInput, View } from 'react-native';
2
+ export declare type State = 'default' | 'filled' | 'disabled' | 'readonly';
3
+ export declare const StyledContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
4
+ theme?: import("@emotion/react").Theme | undefined;
5
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
6
+ }, {}, {
7
+ ref?: import("react").Ref<View> | undefined;
8
+ }>;
9
+ export declare const StyledInputContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
10
+ theme?: import("@emotion/react").Theme | undefined;
11
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
12
+ } & {
13
+ themeFocused: boolean;
14
+ }, {}, {
15
+ ref?: import("react").Ref<View> | undefined;
16
+ }>;
17
+ export declare const StyledAffixContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
18
+ theme?: import("@emotion/react").Theme | undefined;
19
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
20
+ }, {}, {
21
+ ref?: import("react").Ref<View> | undefined;
22
+ }>;
23
+ export declare const StyledSuffixContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
24
+ theme?: import("@emotion/react").Theme | undefined;
25
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
26
+ }, {}, {
27
+ ref?: import("react").Ref<View> | undefined;
28
+ }>;
29
+ export declare const StyledInput: import("@emotion/native").StyledComponent<import("react-native").TextInputProps & {
30
+ theme?: import("@emotion/react").Theme | undefined;
31
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
32
+ }, {}, {
33
+ ref?: import("react").Ref<TextInput> | undefined;
34
+ }>;
35
+ export declare const StyledHandlerContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
36
+ theme?: import("@emotion/react").Theme | undefined;
37
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
38
+ }, {}, {
39
+ ref?: import("react").Ref<View> | undefined;
40
+ }>;
@@ -0,0 +1,8 @@
1
+ import CompoundSearchHandler from './CompoundSearchHandler';
2
+ import CompoundSearchTextInput from './CompoundSearchTextInput';
3
+ declare type CompoundSearchType = {
4
+ TextInput: typeof CompoundSearchTextInput;
5
+ Handler: typeof CompoundSearchHandler;
6
+ };
7
+ declare const CompoundSearch: CompoundSearchType;
8
+ export default CompoundSearch;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IconName } from '../Icon';
3
+ export declare const renderPrefix: ({ prefix, }: {
4
+ prefix?: "number" | React.ReactElement<any, string | React.JSXElementConstructor<any>> | "swag" | "wallet" | "bold" | "menu" | "filter" | "image" | "switch" | "target" | "restart" | "directory" | "document" | "feed" | "list" | "billing" | "home" | "user" | "send" | "file" | "loading" | "sync" | "warning" | "activate" | "add-emoji" | "add-person" | "adjustment" | "alignment" | "antenna" | "archive" | "assignment-warning" | "bank" | "bell" | "bolt" | "bookmark-added" | "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" | "dollar-coin-shine" | "double-buildings" | "edit-template" | "envelope" | "exclude" | "expand-content" | "expense" | "explore_nearby" | "eye-circle" | "eye-invisible" | "eye" | "face-meh" | "face-sad" | "face-smiley" | "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" | "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" | "import" | "incident-siren" | "instapay-daily" | "instapay-now" | "instapay" | "loading-2" | "location-on" | "location" | "lock" | "looks-one" | "looks-two" | "media-content" | "money-notes" | "moneybag" | "moon" | "multiple-stars" | "multiple-users" | "near-me" | "node" | "open-folder" | "paperclip" | "payment-summary" | "pencil" | "phone" | "piggy-bank" | "plane-up" | "plane" | "play-circle" | "print" | "raising-hands" | "reply-arrow" | "reply" | "reschedule" | "rostering" | "salary-sacrifice" | "save" | "schedule-send" | "schedule" | "search-person" | "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" | "swipe-right" | "tag" | "teams" | "timesheet" | "touch-id" | "trash-bin" | "unlock" | "video-1" | "video-2" | "activate-outlined" | "add-credit-card-outlined" | "add-person-outlined" | "add-section-outlined" | "add-time-outlined" | "add" | "adjustment-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" | "beer-outlined" | "bell-active-outlined" | "bell-outlined" | "bell-slash-outlined" | "bill-management-outlined" | "billing-outlined" | "body-outlined" | "bolt-outlined" | "book-outlined" | "bookmark-added-outlined" | "bookmark-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" | "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" | "email-outlined" | "end-break-outlined" | "enter-arrow" | "envelope-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" | "folder-outlined" | "folder-user-outlined" | "form-outlined" | "funnel-filter-outline" | "goal-outlined" | "graph-outlined" | "hand-holding-user-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" | "multiple-folders-outlined" | "multiple-users-outlined" | "near-me-outlined" | "node-outlined" | "number-points" | "overview-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" | "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" | "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" | "tag-outlined" | "target-outlined" | "tennis-outlined" | "ticket-outlined" | "timesheet-outlined" | "timesheets-outlined" | "today-outlined" | "transfer" | "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" | undefined;
5
+ }) => React.JSX.Element | undefined;
6
+ export declare const renderSuffix: ({ suffix, }: {
7
+ suffix?: "number" | React.ReactElement<any, string | React.JSXElementConstructor<any>> | "swag" | "wallet" | "bold" | "menu" | "filter" | "image" | "switch" | "target" | "restart" | "directory" | "document" | "feed" | "list" | "billing" | "home" | "user" | "send" | "file" | "loading" | "sync" | "warning" | "activate" | "add-emoji" | "add-person" | "adjustment" | "alignment" | "antenna" | "archive" | "assignment-warning" | "bank" | "bell" | "bolt" | "bookmark-added" | "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" | "dollar-coin-shine" | "double-buildings" | "edit-template" | "envelope" | "exclude" | "expand-content" | "expense" | "explore_nearby" | "eye-circle" | "eye-invisible" | "eye" | "face-meh" | "face-sad" | "face-smiley" | "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" | "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" | "import" | "incident-siren" | "instapay-daily" | "instapay-now" | "instapay" | "loading-2" | "location-on" | "location" | "lock" | "looks-one" | "looks-two" | "media-content" | "money-notes" | "moneybag" | "moon" | "multiple-stars" | "multiple-users" | "near-me" | "node" | "open-folder" | "paperclip" | "payment-summary" | "pencil" | "phone" | "piggy-bank" | "plane-up" | "plane" | "play-circle" | "print" | "raising-hands" | "reply-arrow" | "reply" | "reschedule" | "rostering" | "salary-sacrifice" | "save" | "schedule-send" | "schedule" | "search-person" | "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" | "swipe-right" | "tag" | "teams" | "timesheet" | "touch-id" | "trash-bin" | "unlock" | "video-1" | "video-2" | "activate-outlined" | "add-credit-card-outlined" | "add-person-outlined" | "add-section-outlined" | "add-time-outlined" | "add" | "adjustment-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" | "beer-outlined" | "bell-active-outlined" | "bell-outlined" | "bell-slash-outlined" | "bill-management-outlined" | "billing-outlined" | "body-outlined" | "bolt-outlined" | "book-outlined" | "bookmark-added-outlined" | "bookmark-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" | "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" | "email-outlined" | "end-break-outlined" | "enter-arrow" | "envelope-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" | "folder-outlined" | "folder-user-outlined" | "form-outlined" | "funnel-filter-outline" | "goal-outlined" | "graph-outlined" | "hand-holding-user-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" | "multiple-folders-outlined" | "multiple-users-outlined" | "near-me-outlined" | "node-outlined" | "number-points" | "overview-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" | "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" | "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" | "tag-outlined" | "target-outlined" | "tennis-outlined" | "ticket-outlined" | "timesheet-outlined" | "timesheets-outlined" | "today-outlined" | "transfer" | "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" | undefined;
8
+ }) => React.JSX.Element;
@@ -0,0 +1,15 @@
1
+ declare const StyledSingleLineWrapper: import("@emotion/native").StyledComponent<import("react-native").TouchableOpacityProps & {
2
+ theme?: import("@emotion/react").Theme | undefined;
3
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
4
+ }, {}, {
5
+ ref?: import("react").Ref<import("react-native").TouchableOpacity> | undefined;
6
+ }>;
7
+ declare const StyledIconWrapper: import("@emotion/native").StyledComponent<import("../../Box").BoxProps & {
8
+ theme?: import("@emotion/react").Theme | undefined;
9
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
10
+ }, {}, {}>;
11
+ declare const StyledIcon: import("@emotion/native").StyledComponent<import("../../Icon").IconProps & {
12
+ theme?: import("@emotion/react").Theme | undefined;
13
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
14
+ }, {}, {}>;
15
+ export { StyledIcon, StyledIconWrapper, StyledSingleLineWrapper };
@@ -0,0 +1,24 @@
1
+ import React, { ComponentProps, ReactNode } from 'react';
2
+ import { ViewProps } from 'react-native';
3
+ import { IconName } from '../../Icon';
4
+ import Tag from '../../Tag';
5
+ export interface SingleLineFloatingIslandProps extends ViewProps {
6
+ /**
7
+ * Text content of the floating island.
8
+ */
9
+ text: string;
10
+ /**
11
+ * Icon to display on the floating island.
12
+ */
13
+ icon?: IconName | ReactNode;
14
+ /**
15
+ * Callback that is called when the floating island is pressed.
16
+ */
17
+ onPress?: () => void;
18
+ /**
19
+ * Intent of the tag component.
20
+ */
21
+ intent?: ComponentProps<typeof Tag>['intent'];
22
+ }
23
+ declare const SingleLineFloatingIsland: ({ text, icon, onPress, intent, onLayout, style, ...props }: SingleLineFloatingIslandProps) => React.JSX.Element;
24
+ export default SingleLineFloatingIsland;
package/types/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import theme, { getTheme, ThemeProvider, useTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ThemeSwitcher, withTheme } from './theme';
1
+ import theme, { getTheme, ThemeProvider, useTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkPalette, ThemeSwitcher, withTheme } from './theme';
2
2
  import { scale } from './utils/scale';
3
3
  import Accordion from './components/Accordion';
4
4
  import Alert from './components/Alert';
@@ -54,5 +54,5 @@ import Portal from './components/Portal';
54
54
  import { ScrollViewWithFAB, SectionListWithFAB, FlatListWithFAB } from './components/AnimatedScroller';
55
55
  import Search from './components/Search';
56
56
  import FloatingIsland from './components/FloatingIsland';
57
- export { theme, getTheme, useTheme, scale, ThemeProvider, ThemeSwitcher, withTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, Accordion, Alert, AppCue, Attachment, Avatar, useAvatarColors, Badge, BottomNavigation, BottomSheet, Box, Button, Calendar, Card, Carousel, Chip, Collapse, Checkbox, ContentNavigator, DatePicker, Divider, Drawer, Empty, Error, FAB, FlatListWithFAB, Icon, Image, HeroDesignProvider, MapPin, List, PinInput, Progress, Portal, PageControl, Skeleton, Slider, Spinner, Swipeable, Radio, Search, ScrollViewWithFAB, SectionHeading, SectionListWithFAB, Select, Success, Switch, Tabs, Tag, TextInput, TimePicker, Toast, Toolbar, Typography, Rate, RefreshControl, RichTextEditor, FloatingIsland, };
57
+ export { theme, getTheme, useTheme, scale, ThemeProvider, ThemeSwitcher, withTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkPalette, Accordion, Alert, AppCue, Attachment, Avatar, useAvatarColors, Badge, BottomNavigation, BottomSheet, Box, Button, Calendar, Card, Carousel, Chip, Collapse, Checkbox, ContentNavigator, DatePicker, Divider, Drawer, Empty, Error, FAB, FlatListWithFAB, Icon, Image, HeroDesignProvider, MapPin, List, PinInput, Progress, Portal, PageControl, Skeleton, Slider, Spinner, Swipeable, Radio, Search, ScrollViewWithFAB, SectionHeading, SectionListWithFAB, Select, Success, Switch, Tabs, Tag, TextInput, TimePicker, Toast, Toolbar, Typography, Rate, RefreshControl, RichTextEditor, FloatingIsland, };
58
58
  export * from './types';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ declare function render(ui: React.ReactElement, options?: {}): import("@testing-library/react-native").RenderAPI;
3
+ export * from '@testing-library/react-native';
4
+ export { render };
@@ -0,0 +1,36 @@
1
+ import type { GlobalTheme } from '../global';
2
+ declare const getCompoundSearchTheme: (theme: GlobalTheme) => {
3
+ colors: {
4
+ containerBackground: string;
5
+ surfixBackground: string;
6
+ text: string;
7
+ borders: string;
8
+ };
9
+ space: {
10
+ containerHorizontalPadding: number;
11
+ containerVerticalPadding: number;
12
+ inputHorizontalMargin: number;
13
+ prefixHorizontalPadding: number;
14
+ surfixPadding: number;
15
+ };
16
+ fonts: {
17
+ text: string;
18
+ };
19
+ fontSizes: {
20
+ text: number;
21
+ };
22
+ borderWidths: {
23
+ container: {
24
+ normal: number;
25
+ focused: number;
26
+ };
27
+ };
28
+ radii: {
29
+ container: number;
30
+ surfix: number;
31
+ };
32
+ sizes: {
33
+ surfixSize: number;
34
+ };
35
+ };
36
+ export default getCompoundSearchTheme;
@@ -0,0 +1,48 @@
1
+ declare const ehWorkDarkPalette: {
2
+ defaultGlobalSurface: string;
3
+ neutralGlobalSurface: string;
4
+ darkGlobalSurface: string;
5
+ overlayGlobalSurface: string;
6
+ onDefaultGlobalSurface: string;
7
+ mutedOnDefaultGlobalSurface: string;
8
+ inactiveOnDefaultGlobalSurface: string;
9
+ disabledOnDefaultGlobalSurface: string;
10
+ onOnDarkGlobalSurface: string;
11
+ primaryOutline: string;
12
+ secondaryOutline: string;
13
+ inactiveOutline: string;
14
+ disabledOutline: string;
15
+ archivedSurface: string;
16
+ mutedArchived: string;
17
+ archived: string;
18
+ onArchivedSurface: string;
19
+ errorSurface: string;
20
+ mutedError: string;
21
+ error: string;
22
+ onErrorSurface: string;
23
+ warningSurface: string;
24
+ mutedWarning: string;
25
+ warning: string;
26
+ onWarningSurface: string;
27
+ successSurface: string;
28
+ mutedSuccess: string;
29
+ success: string;
30
+ onSuccessSurface: string;
31
+ infoSurface: string;
32
+ mutedInfo: string;
33
+ info: string;
34
+ onInfoSurface: string;
35
+ primary: string;
36
+ onPrimary: string;
37
+ secondary: string;
38
+ onSecondary: string;
39
+ defaultSurface: string;
40
+ highlightedSurface: string;
41
+ pressedSurface: string;
42
+ decorativePrimary: string;
43
+ decorativePrimarySurface: string;
44
+ decorativeSecondary: string;
45
+ decorativeSecondarySurface: string;
46
+ onDarkGlobalSurface: string;
47
+ };
48
+ export default ehWorkDarkPalette;
@@ -7,6 +7,7 @@ import workSystemPalette from './colors/work';
7
7
  import jobsSystemPalette from './colors/jobs';
8
8
  import walletSystemPalette from './colors/wallet';
9
9
  import eBensSystemPalette from './colors/eBens';
10
+ import ehWorkDarkPalette from './colors/ehWorkDark';
10
11
  import type { Scale } from './scale';
11
12
  import type { SystemPalette } from './colors/types';
12
13
  declare const getGlobalTheme: (scale: Scale, systemPalette: SystemPalette) => {
@@ -79,4 +80,4 @@ declare const getGlobalTheme: (scale: Scale, systemPalette: SystemPalette) => {
79
80
  };
80
81
  type GlobalTheme = ReturnType<typeof getGlobalTheme>;
81
82
  export type { GlobalTheme, Scale, SystemPalette };
82
- export { getGlobalTheme, defaultScale, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, };
83
+ export { getGlobalTheme, defaultScale, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkPalette, };
@@ -1,9 +1,9 @@
1
1
  import getTheme from './getTheme';
2
2
  import ThemeProvider, { useTheme } from './ThemeProvider';
3
3
  import ThemeSwitcher, { withTheme } from './ThemeSwitcher';
4
- import { swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette } from './global';
4
+ import { swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkPalette } from './global';
5
5
  import type { Theme } from './getTheme';
6
6
  declare const defaultTheme: Theme;
7
7
  export type { Theme };
8
- export { withTheme, getTheme, ThemeProvider, ThemeSwitcher, useTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, };
8
+ export { withTheme, getTheme, ThemeProvider, ThemeSwitcher, useTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkPalette, };
9
9
  export default defaultTheme;
@@ -1,13 +0,0 @@
1
- (node:3003) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
2
- (Use `node --trace-warnings ...` to show where the warning was created)
3
- 
4
- src/index.ts → lib/index.js, es/index.js...
5
- (!) [plugin replace] @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.
6
- (!) [plugin typescript] src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx (61:35): @rollup/plugin-typescript TS2307: Cannot find module '../../../../types' or its corresponding type declarations.
7
- /home/runner/work/hero-design/hero-design/packages/rn/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx:61:35
8
- 
9
- 61 import { RichTextEditorRef } from "../../../../types";
10
-    ~~~~~~~~~~~~~~~~~~~
11
- 
12
- (!) [plugin node-resolve] preferring built-in module 'events' over local alternative at '/home/runner/work/hero-design/hero-design/node_modules/events/events.js', pass 'preferBuiltins: false' to disable this behavior or 'preferBuiltins: true' to disable this warning.or passing a function to 'preferBuiltins' to provide more fine-grained control over which built-in modules to prefer.
13
- created lib/index.js, es/index.js in 52.4s