@uob-web-and-digital/component-library 0.0.80 → 0.0.82
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.
|
@@ -4,7 +4,7 @@ export declare const ranking: import("./components/CourseTileRanking").CourseTil
|
|
|
4
4
|
theme: import("../../../themeProps").ThemeProps;
|
|
5
5
|
inverse?: boolean | undefined;
|
|
6
6
|
title: string;
|
|
7
|
-
titleTag?: "
|
|
7
|
+
titleTag?: "h1" | "h2" | "h3" | "h4" | undefined;
|
|
8
8
|
awardShort: string;
|
|
9
9
|
links?: Omit<import("../../atoms/TextButton/TextButton").TextButtonProps, "theme">[] | undefined;
|
|
10
10
|
heroType: "UG" | "UG Dubai" | "PGT Dubai" | "Other";
|
|
@@ -23,7 +23,7 @@ export declare const deliveryFormat: import("./components/CourseTile").CourseTil
|
|
|
23
23
|
theme: import("../../../themeProps").ThemeProps;
|
|
24
24
|
inverse?: boolean | undefined;
|
|
25
25
|
title: string;
|
|
26
|
-
titleTag?: "
|
|
26
|
+
titleTag?: "h1" | "h2" | "h3" | "h4" | undefined;
|
|
27
27
|
awardShort: string;
|
|
28
28
|
links?: Omit<import("../../atoms/TextButton/TextButton").TextButtonProps, "theme">[] | undefined;
|
|
29
29
|
heroType: "UG" | "UG Dubai" | "PGT Dubai" | "Other";
|
package/dist/index.d.ts
CHANGED
|
@@ -1554,4 +1554,14 @@ interface ResearchStoryCarouselProps {
|
|
|
1554
1554
|
}
|
|
1555
1555
|
declare function ResearchStoryCarousel({ theme, inverse, fullWidth, heading, description, cards, singleLink, titleTag, cardTitleTag }: ResearchStoryCarouselProps): ReactElement;
|
|
1556
1556
|
|
|
1557
|
-
|
|
1557
|
+
declare enum ScrollableTableCategory {
|
|
1558
|
+
NotSpecified = "NotSpecified",
|
|
1559
|
+
ColumnAndRowHeadings = "ColumnAndRowHeadings",
|
|
1560
|
+
ColumnHeadingsOnly = "ColumnHeadingsOnly"
|
|
1561
|
+
}
|
|
1562
|
+
interface ScrollableTableProps extends RichTextProps {
|
|
1563
|
+
tableCategory?: ScrollableTableCategory;
|
|
1564
|
+
}
|
|
1565
|
+
declare function ScrollableTable({ text, theme, inverse, fullWidth, removeBottomPadding, tableCategory }: ScrollableTableProps): ReactElement;
|
|
1566
|
+
|
|
1567
|
+
export { Accordion, type AccordionProps, type AccreditationPromotionProps, AcreditationPromotion, AlertBanner, type AlertBannerProps, AnchorTarget, type AnchorTargetProps, Breadcrumbs, type BreadcrumbsProps, CTAComponent, type CTAComponentProps, Carousel, type CarouselProps, type CenterWrapperProps, CenterWrapper as CentreWrapper, ClearingBanner, type ClearingBannerProps, CourseDeliveryPills, type CourseDeliveryPillsProps, EmbedWrapper, type EmbedWrapperProps, FactBoxes, type FactBoxesProps, FeaturedContent, type FeaturedContentProps, FeaturedSignpost, type FeaturedSignpostProps, FeaturedVideo, type FeaturedVideoProps, FiveArticlesGrid, type FiveArticlesGridProps, Footer, type FooterProps, GeneralSearchFilter, type GeneralSearchFilterProps, GenericDetailSection, type GenericDetailSectionProps, Header, type HeaderProps, Hero, HeroArticle, type HeroArticleProps, HeroCarousel, type HeroCarouselProps, HeroCourses, type HeroCoursesProps, type HeroProps, ImageBlock, type ImageBlockProps, ImageCarousel, type ImageCarouselProps, InPageNavigation, type InPageNavigationProps, IntroText, type IntroTextProps, LeadNewsArticles, type LeadNewsArticlesProps, ListingFilterWrapper, type ListingFilterWrapperProps, ListingResults, ListingResultsCount, type ListingResultsCountProps, type ListingResultsProps, LocationSelector, type LocationSelectorProps, MainWrapper, type MainWrapperProps, NewsArticlesPromoBlock, type NewsArticlesPromoBlockProps, Pagination, type PaginationProps, PromoBlock, PromoBlockGrid, type PromoBlockProps$1 as PromoBlockProps, QuoteBlock, type QuoteBlockProps, RelatedCourses, type RelatedCoursesProps, ResearchStoryCarousel, type ResearchStoryCarouselProps, RichText, type RichTextProps, ScrollableTable, ScrollableTableCategory, type ScrollableTableProps, SearchCourses, type SearchCoursesProps, SidebarWrapper, type SidebarWrapperProps, SignPost, type SignPostProps, SingleButton, type SingleButtonProps, SkipToContent, type SkipToContentProps, StaffListingCarousel, type StaffListingCarouselProps, StandardListingFilter, type StandardListingFilterProps, TabsBlock, type TabsBlockProps, TextWithBackground, type TextWithBackgroundProps, TopicSelector, type TopicSelectorProps, VideoCardComponent, type VideoCardComponentProps, VideoEmbed, type VideoEmbedProps };
|