@shortstravelmgmt/component-lib 0.1.7 → 0.1.9
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 +119 -17
- package/dist/index.esm.js +678 -398
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +688 -402
- 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
|
@@ -1854,6 +1854,104 @@ interface TeamScheduleEditorProps {
|
|
|
1854
1854
|
}
|
|
1855
1855
|
declare const TeamScheduleEditor: ({ rows, initialRows, opponentOptions, onChange, onSaveTrip, onDeleteTrip, onSaveEvent, onDeleteEvent, onOpenGroupTravelRequest, onSelectedTripsChange, onSelectedEventsChange, className, }: TeamScheduleEditorProps) => React.JSX.Element;
|
|
1856
1856
|
|
|
1857
|
+
type TeamTravelCalendarDuration = 'month' | 'week';
|
|
1858
|
+
type TeamTravelCalendarItemType = 'trips' | 'due_dates';
|
|
1859
|
+
interface TeamTravelCalendarDueDate {
|
|
1860
|
+
taskid: number | string;
|
|
1861
|
+
duedate: string;
|
|
1862
|
+
tasktitle: string;
|
|
1863
|
+
description?: string;
|
|
1864
|
+
status?: string;
|
|
1865
|
+
completeddatetime?: string;
|
|
1866
|
+
completedby?: string;
|
|
1867
|
+
servicetype?: string;
|
|
1868
|
+
sportCode?: string;
|
|
1869
|
+
tripId?: string;
|
|
1870
|
+
tripName?: string;
|
|
1871
|
+
tripStart?: string;
|
|
1872
|
+
masterTripGUID?: string;
|
|
1873
|
+
}
|
|
1874
|
+
interface TeamTravelCalendarEvent {
|
|
1875
|
+
id?: string | number;
|
|
1876
|
+
eventtitle?: string;
|
|
1877
|
+
opponentname?: string;
|
|
1878
|
+
venuename?: string;
|
|
1879
|
+
eventstartdate?: string;
|
|
1880
|
+
homeoraway?: string;
|
|
1881
|
+
}
|
|
1882
|
+
interface TeamTravelCalendarTrip {
|
|
1883
|
+
masterTripGUID: string;
|
|
1884
|
+
masterTripID?: number | string;
|
|
1885
|
+
sportCode: string;
|
|
1886
|
+
tripStart: string;
|
|
1887
|
+
tripEnd: string;
|
|
1888
|
+
tripName: string;
|
|
1889
|
+
air_status?: string;
|
|
1890
|
+
charter_status?: string;
|
|
1891
|
+
ground_status?: string;
|
|
1892
|
+
hotel_status?: string;
|
|
1893
|
+
duedates?: TeamTravelCalendarDueDate[];
|
|
1894
|
+
events?: TeamTravelCalendarEvent[];
|
|
1895
|
+
}
|
|
1896
|
+
interface TeamTravelCalendarSportGroup {
|
|
1897
|
+
sportCode: string;
|
|
1898
|
+
sportDescription: string;
|
|
1899
|
+
upcomingCount?: number;
|
|
1900
|
+
nextTripStartDate?: string;
|
|
1901
|
+
trips: TeamTravelCalendarTrip[];
|
|
1902
|
+
}
|
|
1903
|
+
interface TeamTravelCalendarToolbarProps {
|
|
1904
|
+
duration: TeamTravelCalendarDuration;
|
|
1905
|
+
label?: string;
|
|
1906
|
+
/** Optional app-owned date picker/navigation control. */
|
|
1907
|
+
navigation?: ReactNode;
|
|
1908
|
+
onDurationChange?: (duration: TeamTravelCalendarDuration) => void;
|
|
1909
|
+
onToday?: () => void;
|
|
1910
|
+
onPrevious?: () => void;
|
|
1911
|
+
onNext?: () => void;
|
|
1912
|
+
className?: string;
|
|
1913
|
+
}
|
|
1914
|
+
declare const TeamTravelCalendarToolbar: ({ duration, label, navigation, onDurationChange, onToday, onPrevious, onNext, className, }: TeamTravelCalendarToolbarProps) => React.JSX.Element;
|
|
1915
|
+
interface TeamTravelCalendarViewProps {
|
|
1916
|
+
activeDate: string;
|
|
1917
|
+
duration?: TeamTravelCalendarDuration;
|
|
1918
|
+
type?: TeamTravelCalendarItemType;
|
|
1919
|
+
trips?: TeamTravelCalendarTrip[];
|
|
1920
|
+
dueDates?: TeamTravelCalendarDueDate[];
|
|
1921
|
+
today?: string;
|
|
1922
|
+
toolbar?: ReactNode;
|
|
1923
|
+
onTripClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1924
|
+
onDueDateClick?: (date: string, dueDate?: TeamTravelCalendarDueDate) => void;
|
|
1925
|
+
onDueDateToggle?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1926
|
+
className?: string;
|
|
1927
|
+
}
|
|
1928
|
+
declare const TeamTravelCalendarView: ({ activeDate, duration, type, trips, dueDates, today, toolbar, onTripClick, onDueDateClick, onDueDateToggle, className, }: TeamTravelCalendarViewProps) => React.JSX.Element;
|
|
1929
|
+
interface TeamTravelCalendarCardViewProps {
|
|
1930
|
+
groups: TeamTravelCalendarSportGroup[];
|
|
1931
|
+
type?: TeamTravelCalendarItemType;
|
|
1932
|
+
toolbar?: ReactNode;
|
|
1933
|
+
onTripClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1934
|
+
onDueDateClick?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1935
|
+
onDueDateToggle?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1936
|
+
className?: string;
|
|
1937
|
+
}
|
|
1938
|
+
declare const TeamTravelCalendarCardView: ({ groups, type, toolbar, onTripClick, onDueDateClick, onDueDateToggle, className, }: TeamTravelCalendarCardViewProps) => React.JSX.Element;
|
|
1939
|
+
interface TeamTravelCalendarListViewProps {
|
|
1940
|
+
trips: TeamTravelCalendarTrip[];
|
|
1941
|
+
type?: TeamTravelCalendarItemType;
|
|
1942
|
+
toolbar?: ReactNode;
|
|
1943
|
+
periodLabel?: string;
|
|
1944
|
+
upcomingTrips?: number;
|
|
1945
|
+
onTripClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1946
|
+
onDueDatesClick?: (trip: TeamTravelCalendarTrip) => void;
|
|
1947
|
+
onDueDateClick?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1948
|
+
onDueDateToggle?: (dueDate: TeamTravelCalendarDueDate) => void;
|
|
1949
|
+
className?: string;
|
|
1950
|
+
}
|
|
1951
|
+
declare const TeamTravelCalendarListView: ({ trips, type, toolbar, periodLabel, upcomingTrips, onTripClick, onDueDatesClick, onDueDateClick, onDueDateToggle, className, }: TeamTravelCalendarListViewProps) => React.JSX.Element;
|
|
1952
|
+
declare const getTeamTravelCalendarPeriodLabel: (activeDate: string, duration: TeamTravelCalendarDuration) => string;
|
|
1953
|
+
declare const moveTeamTravelCalendarPeriod: (activeDate: string, duration: TeamTravelCalendarDuration, amount: number) => string;
|
|
1954
|
+
|
|
1857
1955
|
type TeamFormMode = 'Add' | 'Edit';
|
|
1858
1956
|
type TeamNumericValue = number | '';
|
|
1859
1957
|
interface ManagedFormProps<T> {
|
|
@@ -2227,29 +2325,33 @@ interface DashboardPageProps {
|
|
|
2227
2325
|
/** Exact, service-free rendering of Hub's personalized home page. */
|
|
2228
2326
|
declare const DashboardPage: ({ greeting, firstName, accountName, widgets, systemBanners, alertBanners, syncStatus, onRefresh, onRemove, onResize, onReorder, onReset, onAddWidget, onTravelerRangeChange, onNavigate, className }: DashboardPageProps) => React.JSX.Element;
|
|
2229
2327
|
|
|
2328
|
+
type GroupTravelRequestFieldValue = string | number | boolean | undefined;
|
|
2329
|
+
type GroupTravelRequestValues = Record<string, GroupTravelRequestFieldValue>;
|
|
2330
|
+
interface GroupTravelRequestContact {
|
|
2331
|
+
id: string | number;
|
|
2332
|
+
name: string;
|
|
2333
|
+
phone?: string;
|
|
2334
|
+
email?: string;
|
|
2335
|
+
}
|
|
2230
2336
|
interface GroupTravelRequestPageProps {
|
|
2231
|
-
/** Event name to display in header */
|
|
2232
2337
|
eventName?: string;
|
|
2233
|
-
/** Total pages for multi-page forms */
|
|
2234
2338
|
totalPages?: number;
|
|
2235
|
-
|
|
2236
|
-
onSubmit?: (data: any) => void;
|
|
2237
|
-
/** Callback when form is cancelled */
|
|
2339
|
+
onSubmit?: (data: GroupTravelRequestValues) => void;
|
|
2238
2340
|
onCancel?: () => void;
|
|
2239
|
-
|
|
2240
|
-
initialValues?:
|
|
2241
|
-
|
|
2341
|
+
onChange?: (data: GroupTravelRequestValues) => void;
|
|
2342
|
+
initialValues?: GroupTravelRequestValues;
|
|
2343
|
+
contacts?: GroupTravelRequestContact[];
|
|
2344
|
+
cateringOptions?: string[];
|
|
2345
|
+
schoolAddress?: string;
|
|
2242
2346
|
services?: ServiceConfig[];
|
|
2243
|
-
/**
|
|
2347
|
+
/** Retained for consumers that provide a custom summary configuration. */
|
|
2244
2348
|
summarySections?: SummarySectionConfig[];
|
|
2245
|
-
/** Additional CSS class */
|
|
2246
2349
|
className?: string;
|
|
2247
2350
|
}
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
declare const GroupTravelRequestPage: React__default.FC<GroupTravelRequestPageProps>;
|
|
2351
|
+
declare const GroupTravelRequestPage: {
|
|
2352
|
+
({ eventName, totalPages, onSubmit, onCancel, onChange, initialValues, contacts, cateringOptions, schoolAddress, services, summarySections, className, }: GroupTravelRequestPageProps): React.JSX.Element;
|
|
2353
|
+
displayName: string;
|
|
2354
|
+
};
|
|
2253
2355
|
|
|
2254
2356
|
type TabKey = 'requested' | 'current' | 'past';
|
|
2255
2357
|
interface IndividualTravelPageProps {
|
|
@@ -2545,5 +2647,5 @@ declare const TripDetailPage: {
|
|
|
2545
2647
|
displayName: string;
|
|
2546
2648
|
};
|
|
2547
2649
|
|
|
2548
|
-
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 };
|
|
2549
|
-
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, GroupTravelRequestPageProps, 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 };
|
|
2650
|
+
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, 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 };
|
|
2651
|
+
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, 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 };
|