@shortstravelmgmt/component-lib 0.1.8 → 0.1.10
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/dist/index.d.ts +127 -3
- package/dist/index.esm.js +496 -274
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +502 -273
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1454,7 +1454,7 @@ declare const ConfirmModal: React__default.FC<ConfirmModalProps>;
|
|
|
1454
1454
|
type ModuleSize = 'sm' | 'md' | 'lg';
|
|
1455
1455
|
interface ModuleProps {
|
|
1456
1456
|
/** Module title */
|
|
1457
|
-
title?:
|
|
1457
|
+
title?: ReactNode;
|
|
1458
1458
|
/** Icon element to display */
|
|
1459
1459
|
icon?: ReactNode;
|
|
1460
1460
|
/** Icon CSS class for color */
|
|
@@ -1750,6 +1750,32 @@ declare const TeamCard: {
|
|
|
1750
1750
|
displayName: string;
|
|
1751
1751
|
};
|
|
1752
1752
|
|
|
1753
|
+
type TeamContactId = string | number;
|
|
1754
|
+
interface TeamContactOption {
|
|
1755
|
+
id: TeamContactId;
|
|
1756
|
+
name: string;
|
|
1757
|
+
title?: string;
|
|
1758
|
+
email?: string;
|
|
1759
|
+
phone?: string;
|
|
1760
|
+
active?: boolean;
|
|
1761
|
+
}
|
|
1762
|
+
interface TeamContactsValue {
|
|
1763
|
+
primaryContactId?: TeamContactId;
|
|
1764
|
+
secondaryContactId?: TeamContactId;
|
|
1765
|
+
ccContactIds?: Array<TeamContactId | undefined>;
|
|
1766
|
+
}
|
|
1767
|
+
interface TeamContactsPanelProps {
|
|
1768
|
+
contacts: TeamContactOption[];
|
|
1769
|
+
value: TeamContactsValue;
|
|
1770
|
+
onChange?: (value: TeamContactsValue) => void;
|
|
1771
|
+
disabled?: boolean;
|
|
1772
|
+
className?: string;
|
|
1773
|
+
}
|
|
1774
|
+
declare const TeamContactsPanel: {
|
|
1775
|
+
({ contacts, value, onChange, disabled, className }: TeamContactsPanelProps): React.JSX.Element;
|
|
1776
|
+
displayName: string;
|
|
1777
|
+
};
|
|
1778
|
+
|
|
1753
1779
|
interface SeasonOption {
|
|
1754
1780
|
value: string;
|
|
1755
1781
|
label: string;
|
|
@@ -1854,6 +1880,104 @@ interface TeamScheduleEditorProps {
|
|
|
1854
1880
|
}
|
|
1855
1881
|
declare const TeamScheduleEditor: ({ rows, initialRows, opponentOptions, onChange, onSaveTrip, onDeleteTrip, onSaveEvent, onDeleteEvent, onOpenGroupTravelRequest, onSelectedTripsChange, onSelectedEventsChange, className, }: TeamScheduleEditorProps) => React.JSX.Element;
|
|
1856
1882
|
|
|
1883
|
+
type TeamTravelCalendarDuration = 'month' | 'week';
|
|
1884
|
+
type TeamTravelCalendarItemType = 'trips' | 'due_dates';
|
|
1885
|
+
interface TeamTravelCalendarDueDate {
|
|
1886
|
+
taskid: number | string;
|
|
1887
|
+
duedate: string;
|
|
1888
|
+
tasktitle: string;
|
|
1889
|
+
description?: string;
|
|
1890
|
+
status?: string;
|
|
1891
|
+
completeddatetime?: string;
|
|
1892
|
+
completedby?: string;
|
|
1893
|
+
servicetype?: string;
|
|
1894
|
+
sportCode?: string;
|
|
1895
|
+
tripId?: string;
|
|
1896
|
+
tripName?: string;
|
|
1897
|
+
tripStart?: string;
|
|
1898
|
+
masterTripGUID?: string;
|
|
1899
|
+
}
|
|
1900
|
+
interface TeamTravelCalendarEvent {
|
|
1901
|
+
id?: string | number;
|
|
1902
|
+
eventtitle?: string;
|
|
1903
|
+
opponentname?: string;
|
|
1904
|
+
venuename?: string;
|
|
1905
|
+
eventstartdate?: string;
|
|
1906
|
+
homeoraway?: string;
|
|
1907
|
+
}
|
|
1908
|
+
interface TeamTravelCalendarTrip {
|
|
1909
|
+
masterTripGUID: string;
|
|
1910
|
+
masterTripID?: number | string;
|
|
1911
|
+
sportCode: string;
|
|
1912
|
+
tripStart: string;
|
|
1913
|
+
tripEnd: string;
|
|
1914
|
+
tripName: string;
|
|
1915
|
+
air_status?: string;
|
|
1916
|
+
charter_status?: string;
|
|
1917
|
+
ground_status?: string;
|
|
1918
|
+
hotel_status?: string;
|
|
1919
|
+
duedates?: TeamTravelCalendarDueDate[];
|
|
1920
|
+
events?: TeamTravelCalendarEvent[];
|
|
1921
|
+
}
|
|
1922
|
+
interface TeamTravelCalendarSportGroup {
|
|
1923
|
+
sportCode: string;
|
|
1924
|
+
sportDescription: string;
|
|
1925
|
+
upcomingCount?: number;
|
|
1926
|
+
nextTripStartDate?: string;
|
|
1927
|
+
trips: TeamTravelCalendarTrip[];
|
|
1928
|
+
}
|
|
1929
|
+
interface TeamTravelCalendarToolbarProps {
|
|
1930
|
+
duration: TeamTravelCalendarDuration;
|
|
1931
|
+
label?: string;
|
|
1932
|
+
/** Optional app-owned date picker/navigation control. */
|
|
1933
|
+
navigation?: ReactNode;
|
|
1934
|
+
onDurationChange?: (duration: TeamTravelCalendarDuration) => void;
|
|
1935
|
+
onToday?: () => void;
|
|
1936
|
+
onPrevious?: () => void;
|
|
1937
|
+
onNext?: () => void;
|
|
1938
|
+
className?: string;
|
|
1939
|
+
}
|
|
1940
|
+
declare const TeamTravelCalendarToolbar: ({ duration, label, navigation, onDurationChange, onToday, onPrevious, onNext, className, }: TeamTravelCalendarToolbarProps) => React.JSX.Element;
|
|
1941
|
+
interface TeamTravelCalendarViewProps {
|
|
1942
|
+
activeDate: string;
|
|
1943
|
+
duration?: TeamTravelCalendarDuration;
|
|
1944
|
+
type?: TeamTravelCalendarItemType;
|
|
1945
|
+
trips?: TeamTravelCalendarTrip[];
|
|
1946
|
+
dueDates?: TeamTravelCalendarDueDate[];
|
|
1947
|
+
today?: string;
|
|
1948
|
+
toolbar?: ReactNode;
|
|
1949
|
+
onTripClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1950
|
+
onDueDateClick?: (date: string, dueDate?: TeamTravelCalendarDueDate) => void;
|
|
1951
|
+
onDueDateToggle?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1952
|
+
className?: string;
|
|
1953
|
+
}
|
|
1954
|
+
declare const TeamTravelCalendarView: ({ activeDate, duration, type, trips, dueDates, today, toolbar, onTripClick, onDueDateClick, onDueDateToggle, className, }: TeamTravelCalendarViewProps) => React.JSX.Element;
|
|
1955
|
+
interface TeamTravelCalendarCardViewProps {
|
|
1956
|
+
groups: TeamTravelCalendarSportGroup[];
|
|
1957
|
+
type?: TeamTravelCalendarItemType;
|
|
1958
|
+
toolbar?: ReactNode;
|
|
1959
|
+
onTripClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1960
|
+
onDueDateClick?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1961
|
+
onDueDateToggle?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1962
|
+
className?: string;
|
|
1963
|
+
}
|
|
1964
|
+
declare const TeamTravelCalendarCardView: ({ groups, type, toolbar, onTripClick, onDueDateClick, onDueDateToggle, className, }: TeamTravelCalendarCardViewProps) => React.JSX.Element;
|
|
1965
|
+
interface TeamTravelCalendarListViewProps {
|
|
1966
|
+
trips: TeamTravelCalendarTrip[];
|
|
1967
|
+
type?: TeamTravelCalendarItemType;
|
|
1968
|
+
toolbar?: ReactNode;
|
|
1969
|
+
periodLabel?: string;
|
|
1970
|
+
upcomingTrips?: number;
|
|
1971
|
+
onTripClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1972
|
+
onDueDatesClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1973
|
+
onDueDateClick?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1974
|
+
onDueDateToggle?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1975
|
+
className?: string;
|
|
1976
|
+
}
|
|
1977
|
+
declare const TeamTravelCalendarListView: ({ trips, type, toolbar, periodLabel, upcomingTrips, onTripClick, onDueDatesClick, onDueDateClick, onDueDateToggle, className, }: TeamTravelCalendarListViewProps) => React.JSX.Element;
|
|
1978
|
+
declare const getTeamTravelCalendarPeriodLabel: (activeDate: string, duration: TeamTravelCalendarDuration) => string;
|
|
1979
|
+
declare const moveTeamTravelCalendarPeriod: (activeDate: string, duration: TeamTravelCalendarDuration, amount: number) => string;
|
|
1980
|
+
|
|
1857
1981
|
type TeamFormMode = 'Add' | 'Edit';
|
|
1858
1982
|
type TeamNumericValue = number | '';
|
|
1859
1983
|
interface ManagedFormProps<T> {
|
|
@@ -2549,5 +2673,5 @@ declare const TripDetailPage: {
|
|
|
2549
2673
|
displayName: string;
|
|
2550
2674
|
};
|
|
2551
2675
|
|
|
2552
|
-
export { Accordion, AdministrationPage, AirSegment, Alert, AppLayout, ArrowDownLeftIcon, ArrowUpRightIcon, Avatar, AvatarGroup, Badge, BuildingIcon, BusIcon, Button, CalendarIcon, CalendarTypeSelector, CalendarViewSelector, CarIcon, Card, CardBody, CardFooter, CardHeader, CharterManifestPage, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, ConfirmModal, ContactList, ContactUsPage, CubeIcon, DashboardIcon, DashboardPage, Datepicker, DocumentIcon, DownloadIcon, Drawer, DrawerBody, DrawerFooter, DrawerHeader, Dropdown, DueDatesDrawer, EditIcon, EyeIcon, FilterChip, FilterIcon, FormField, FormRow, FormSection, FormStack, GridIcon, GroundSegment, GroupTravelRequestPage, HUB_ADMIN_ITEM, HUB_INDIVIDUAL_TRAVEL_ITEM, HUB_NAV_ITEMS, HomeIcon, HotelIcon, HotelSegment, HubAppShell, Icons, IndividualTravelPage, InfoCenterPage, InfoIcon, Input, LightbulbIcon, LimoIcon, LockIcon, LogoIcon, MailIcon, ManifestCapacityStats, ManifestViewToggle, MegaphoneIcon, MembershipPrograms, MenuIcon, Metric, MinusIcon, Modal, ModalFooter, Module, ModuleDivider, ModuleVerticalDivider, NavItem, NotFoundPage, PageBanners, PhoneIcon, PlaneIcon, PlusIcon, PreferencesPanel, PrinterIcon, Progress, ProgressBar, ProgressCircle, RailIcon, RefreshIcon, ReportIcon, RequestFormFooter, RequestFormHeader, RequestFormLayout, RequestSummary, RosterToolbar, SUPPLIER_TYPE_OPTIONS, SchoolContactForm, SearchField, SearchIcon, Segment, SegmentedSelector, Select, SelectFilter, ServiceToggle, ServiceToggleList, SettingsIcon, Sidenav, Spinner, StatusBadge, SummarySection, SupplierTypeToggle, Table, Tag, TeamCard, TeamEquipmentForm, TeamHeader, TeamImportForm, TeamManagementPage, TeamProgramForm, TeamRosterMemberForm, TeamScheduleActions, TeamScheduleCompactTable, TeamScheduleEditor, TeamScheduleExpandedTable, TeamSchedulePage, TeamSubMenu, TeamTravelCalendarPage, TeamUserAccessForm, Textarea, Timepicker, Title, Toggle, Tooltip, Topbar, TrashIcon, TravelServiceIcon, TravelSummaryMetrics, TravelerForm, TrendDownIcon, TrendUpIcon, TripDetailPage, TripSegment, TripTable, TypeIcon, UploadIcon, UserIcon, UsersIcon, WarningIcon, XIcon, formatCompactTripCost, formatTeamScheduleTravelDates, isTravelDueDateCompleted };
|
|
2553
|
-
export type { AccordionProps, AccountInfo, AdministrationCard, AdministrationPageProps, AdministrationTab, AirSegmentProps, AlertProps, AlertVariant, AppLayoutProps, AvatarGroupProps, AvatarProps, AvatarSize, BadgeProps, BadgeSize, BadgeVariant, ButtonProps, ButtonSize, ButtonVariant, CalendarMetric, CalendarTypeSelectorProps, CalendarTypeValue, CalendarView, CalendarViewSelectorProps, CalendarViewValue, CardBodyProps, CardFooterProps, CardHeaderProps, CardPadding, CardProps, CardVariant, CharterManifestEquipment, CharterManifestPageProps, CharterManifestPassenger, CharterManifestSegment, CheckboxProps, ConfirmModalProps, Contact, ContactCardData, ContactInfo, ContactListProps, ContactPair, ContactUsData, ContactUsPageProps, DashboardPageProps, DatepickerProps, DatepickerSize, DrawerBodyProps, DrawerFooterProps, DrawerHeaderProps, DrawerPosition, DrawerProps, DrawerSize, DropdownAlignment, DropdownItemProps, DropdownProps, DueDatesDrawerProps, FilterChipProps, FilterOption, FlightData, FormFieldProps, FormRowProps, FormSectionProps, FormStackProps, GroundData, GroundSegmentProps, GroupTravelRequestContact, GroupTravelRequestFieldValue, GroupTravelRequestPageProps, GroupTravelRequestValues, GroupedTravelDueDates, HotelData, HotelSegmentProps, HubAppShellActions, HubAppShellProps, HubNavigationItem, IconName, IconProps, IndividualTravelPageProps, InfoCenterArticle, InfoCenterPageProps, InfoCenterPageState, InputProps, InputSize, ManifestCapacityStatsProps, ManifestSendState, ManifestView, ManifestViewToggleProps, MembershipProgram, MembershipProgramsProps, MetricProps, ModalFooterProps, ModalProps, ModalSize, ModuleProps, ModuleSize, NavItemProps, NavItemSize, NavItemVariant, NotFoundPageProps, PageBannersProps, PreferenceField, PreferenceSection, PreferencesPanelProps, ProgressBarProps, ProgressCircleProps, ProgressSize, ProgressVariant, RequestFormFooterProps, RequestFormHeaderProps, RequestFormLayoutProps, RequestSummaryProps, RosterToolbarProps, ScheduleFilterOption, ScheduleMetric, SchoolContactFormProps, SearchFieldProps, SeasonOption, SegmentOption, SegmentProps, SegmentVariant, SegmentedSelectorOption, SegmentedSelectorProps, SelectFilterOption, SelectFilterProps, SelectOption, SelectOptionGroup, SelectProps, SelectSize, ServiceConfig, ServiceToggleListProps, ServiceToggleProps, SidenavItem, SidenavProps, SpinnerProps, SpinnerSize, StatusBadgeProps, StatusBadgeVariant, SummaryItem, SummarySectionConfig, SummarySegment, SupplierTypeToggleProps, SupplierTypeValue, SystemBanner, TabKey, TableColumn, TableProps, TagProps, TagSize, TagVariant, TeamCardProps, TeamEquipmentFormProps, TeamEquipmentValues, TeamFormMode, TeamHeaderProps, TeamImportFormProps, TeamImportKind, TeamManagementPageProps, TeamManagementTab, TeamNumericValue, TeamOption, TeamPortalUserOption, TeamProgramFormProps, TeamProgramType, TeamProgramValues, TeamRosterMemberFormProps, TeamRosterMemberValues, TeamScheduleActionsProps, TeamScheduleCompactRow, TeamScheduleCompactTableProps, TeamScheduleEditorEvent, TeamScheduleEditorProps, TeamScheduleEditorTrip, TeamScheduleExpandedRow, TeamScheduleExpandedTableProps, TeamScheduleHomeAway, TeamSchedulePageProps, TeamSubMenuProps, TeamSubMenuTab, TeamTravelCalendarPageProps, TeamUserAccessFormProps, TeamUserAccessValues, TextareaProps, TimepickerProps, TimepickerSize, TitleProps, TitleWeight, ToggleProps, ToggleSize, ToolbarAction, TooltipPosition, TooltipProps, TooltipVariant, TopbarProps, TravelAlertBanner, TravelDueDateItem, TravelServiceIconProps, TravelSummaryMetricsProps, TravelType, TravelerFormData, TravelerFormProps, TripData, TripDetailPageProps, TripSegmentProps, TripTableProps, TypeIconProps, VendorCode };
|
|
2676
|
+
export { Accordion, AdministrationPage, AirSegment, Alert, AppLayout, ArrowDownLeftIcon, ArrowUpRightIcon, Avatar, AvatarGroup, Badge, BuildingIcon, BusIcon, Button, CalendarIcon, CalendarTypeSelector, CalendarViewSelector, CarIcon, Card, CardBody, CardFooter, CardHeader, CharterManifestPage, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, ConfirmModal, ContactList, ContactUsPage, CubeIcon, DashboardIcon, DashboardPage, Datepicker, DocumentIcon, DownloadIcon, Drawer, DrawerBody, DrawerFooter, DrawerHeader, Dropdown, DueDatesDrawer, EditIcon, EyeIcon, FilterChip, FilterIcon, FormField, FormRow, FormSection, FormStack, GridIcon, GroundSegment, GroupTravelRequestPage, HUB_ADMIN_ITEM, HUB_INDIVIDUAL_TRAVEL_ITEM, HUB_NAV_ITEMS, HomeIcon, HotelIcon, HotelSegment, HubAppShell, Icons, IndividualTravelPage, InfoCenterPage, InfoIcon, Input, LightbulbIcon, LimoIcon, LockIcon, LogoIcon, MailIcon, ManifestCapacityStats, ManifestViewToggle, MegaphoneIcon, MembershipPrograms, MenuIcon, Metric, MinusIcon, Modal, ModalFooter, Module, ModuleDivider, ModuleVerticalDivider, NavItem, NotFoundPage, PageBanners, PhoneIcon, PlaneIcon, PlusIcon, PreferencesPanel, PrinterIcon, Progress, ProgressBar, ProgressCircle, RailIcon, RefreshIcon, ReportIcon, RequestFormFooter, RequestFormHeader, RequestFormLayout, RequestSummary, RosterToolbar, SUPPLIER_TYPE_OPTIONS, SchoolContactForm, SearchField, SearchIcon, Segment, SegmentedSelector, Select, SelectFilter, ServiceToggle, ServiceToggleList, SettingsIcon, Sidenav, Spinner, StatusBadge, SummarySection, SupplierTypeToggle, Table, Tag, TeamCard, TeamContactsPanel, TeamEquipmentForm, TeamHeader, TeamImportForm, TeamManagementPage, TeamProgramForm, TeamRosterMemberForm, TeamScheduleActions, TeamScheduleCompactTable, TeamScheduleEditor, TeamScheduleExpandedTable, TeamSchedulePage, TeamSubMenu, TeamTravelCalendarCardView, TeamTravelCalendarListView, TeamTravelCalendarPage, TeamTravelCalendarToolbar, TeamTravelCalendarView, TeamUserAccessForm, Textarea, Timepicker, Title, Toggle, Tooltip, Topbar, TrashIcon, TravelServiceIcon, TravelSummaryMetrics, TravelerForm, TrendDownIcon, TrendUpIcon, TripDetailPage, TripSegment, TripTable, TypeIcon, UploadIcon, UserIcon, UsersIcon, WarningIcon, XIcon, formatCompactTripCost, formatTeamScheduleTravelDates, getTeamTravelCalendarPeriodLabel, isTravelDueDateCompleted, moveTeamTravelCalendarPeriod };
|
|
2677
|
+
export type { AccordionProps, AccountInfo, AdministrationCard, AdministrationPageProps, AdministrationTab, AirSegmentProps, AlertProps, AlertVariant, AppLayoutProps, AvatarGroupProps, AvatarProps, AvatarSize, BadgeProps, BadgeSize, BadgeVariant, ButtonProps, ButtonSize, ButtonVariant, CalendarMetric, CalendarTypeSelectorProps, CalendarTypeValue, CalendarView, CalendarViewSelectorProps, CalendarViewValue, CardBodyProps, CardFooterProps, CardHeaderProps, CardPadding, CardProps, CardVariant, CharterManifestEquipment, CharterManifestPageProps, CharterManifestPassenger, CharterManifestSegment, CheckboxProps, ConfirmModalProps, Contact, ContactCardData, ContactInfo, ContactListProps, ContactPair, ContactUsData, ContactUsPageProps, DashboardPageProps, DatepickerProps, DatepickerSize, DrawerBodyProps, DrawerFooterProps, DrawerHeaderProps, DrawerPosition, DrawerProps, DrawerSize, DropdownAlignment, DropdownItemProps, DropdownProps, DueDatesDrawerProps, FilterChipProps, FilterOption, FlightData, FormFieldProps, FormRowProps, FormSectionProps, FormStackProps, GroundData, GroundSegmentProps, GroupTravelRequestContact, GroupTravelRequestFieldValue, GroupTravelRequestPageProps, GroupTravelRequestValues, GroupedTravelDueDates, HotelData, HotelSegmentProps, HubAppShellActions, HubAppShellProps, HubNavigationItem, IconName, IconProps, IndividualTravelPageProps, InfoCenterArticle, InfoCenterPageProps, InfoCenterPageState, InputProps, InputSize, ManifestCapacityStatsProps, ManifestSendState, ManifestView, ManifestViewToggleProps, MembershipProgram, MembershipProgramsProps, MetricProps, ModalFooterProps, ModalProps, ModalSize, ModuleProps, ModuleSize, NavItemProps, NavItemSize, NavItemVariant, NotFoundPageProps, PageBannersProps, PreferenceField, PreferenceSection, PreferencesPanelProps, ProgressBarProps, ProgressCircleProps, ProgressSize, ProgressVariant, RequestFormFooterProps, RequestFormHeaderProps, RequestFormLayoutProps, RequestSummaryProps, RosterToolbarProps, ScheduleFilterOption, ScheduleMetric, SchoolContactFormProps, SearchFieldProps, SeasonOption, SegmentOption, SegmentProps, SegmentVariant, SegmentedSelectorOption, SegmentedSelectorProps, SelectFilterOption, SelectFilterProps, SelectOption, SelectOptionGroup, SelectProps, SelectSize, ServiceConfig, ServiceToggleListProps, ServiceToggleProps, SidenavItem, SidenavProps, SpinnerProps, SpinnerSize, StatusBadgeProps, StatusBadgeVariant, SummaryItem, SummarySectionConfig, SummarySegment, SupplierTypeToggleProps, SupplierTypeValue, SystemBanner, TabKey, TableColumn, TableProps, TagProps, TagSize, TagVariant, TeamCardProps, TeamContactId, TeamContactOption, TeamContactsPanelProps, TeamContactsValue, TeamEquipmentFormProps, TeamEquipmentValues, TeamFormMode, TeamHeaderProps, TeamImportFormProps, TeamImportKind, TeamManagementPageProps, TeamManagementTab, TeamNumericValue, TeamOption, TeamPortalUserOption, TeamProgramFormProps, TeamProgramType, TeamProgramValues, TeamRosterMemberFormProps, TeamRosterMemberValues, TeamScheduleActionsProps, TeamScheduleCompactRow, TeamScheduleCompactTableProps, TeamScheduleEditorEvent, TeamScheduleEditorProps, TeamScheduleEditorTrip, TeamScheduleExpandedRow, TeamScheduleExpandedTableProps, TeamScheduleHomeAway, TeamSchedulePageProps, TeamSubMenuProps, TeamSubMenuTab, TeamTravelCalendarCardViewProps, TeamTravelCalendarDueDate, TeamTravelCalendarDuration, TeamTravelCalendarEvent, TeamTravelCalendarItemType, TeamTravelCalendarListViewProps, TeamTravelCalendarPageProps, TeamTravelCalendarSportGroup, TeamTravelCalendarToolbarProps, TeamTravelCalendarTrip, TeamTravelCalendarViewProps, TeamUserAccessFormProps, TeamUserAccessValues, TextareaProps, TimepickerProps, TimepickerSize, TitleProps, TitleWeight, ToggleProps, ToggleSize, ToolbarAction, TooltipPosition, TooltipProps, TooltipVariant, TopbarProps, TravelAlertBanner, TravelDueDateItem, TravelServiceIconProps, TravelSummaryMetricsProps, TravelType, TravelerFormData, TravelerFormProps, TripData, TripDetailPageProps, TripSegmentProps, TripTableProps, TypeIconProps, VendorCode };
|