@local-civics/hub-ui 0.1.144 → 0.1.146
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 +45 -1
- package/dist/index.js +300 -235
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +300 -236
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1025,6 +1025,50 @@ type WidgetProps = {
|
|
|
1025
1025
|
*/
|
|
1026
1026
|
declare const Widget: (props: WidgetProps) => JSX.Element;
|
|
1027
1027
|
|
|
1028
|
+
/**
|
|
1029
|
+
* BadgeItem
|
|
1030
|
+
*/
|
|
1031
|
+
type BadgeItem = {
|
|
1032
|
+
badgeId: string;
|
|
1033
|
+
displayName: string;
|
|
1034
|
+
categories: string[];
|
|
1035
|
+
completedAt?: string | null;
|
|
1036
|
+
weight: number;
|
|
1037
|
+
onClick?: () => void;
|
|
1038
|
+
};
|
|
1039
|
+
/**
|
|
1040
|
+
* PathwayCardProps
|
|
1041
|
+
*/
|
|
1042
|
+
type PathwayCardProps = {
|
|
1043
|
+
imageURL?: string;
|
|
1044
|
+
title?: string;
|
|
1045
|
+
description?: string;
|
|
1046
|
+
badges?: BadgeItem[];
|
|
1047
|
+
progress?: number;
|
|
1048
|
+
target?: number;
|
|
1049
|
+
displayTags?: string[];
|
|
1050
|
+
onClose?: () => void;
|
|
1051
|
+
onSubmit?: () => void;
|
|
1052
|
+
};
|
|
1053
|
+
|
|
1054
|
+
/**
|
|
1055
|
+
* PathwayProps
|
|
1056
|
+
*/
|
|
1057
|
+
type PathwayProps = PathwayCardProps & {
|
|
1058
|
+
pathwayId?: string;
|
|
1059
|
+
title?: string;
|
|
1060
|
+
description?: string;
|
|
1061
|
+
imageURL?: string;
|
|
1062
|
+
displayTags?: string[];
|
|
1063
|
+
onClose?: () => void;
|
|
1064
|
+
};
|
|
1065
|
+
/**
|
|
1066
|
+
* Pathway
|
|
1067
|
+
* @param props
|
|
1068
|
+
* @constructor
|
|
1069
|
+
*/
|
|
1070
|
+
declare const Pathway: (props: PathwayProps) => JSX.Element;
|
|
1071
|
+
|
|
1028
1072
|
/**
|
|
1029
1073
|
* AuthLayoutProps
|
|
1030
1074
|
*/
|
|
@@ -1076,4 +1120,4 @@ type HomeLayoutProps = {
|
|
|
1076
1120
|
*/
|
|
1077
1121
|
declare const HomeLayout: (props: HomeLayoutProps) => JSX.Element;
|
|
1078
1122
|
|
|
1079
|
-
export { AboutWidget, AboutWidgetProps, AchievementWidget, AchievementWidgetProps, ActivityCard, ActivityCardProps, ActivityItem, ActivityItemProps, ActivityList, ActivityListProps, ActivityReflection, ActivityReflectionProps, AuthLayout, AuthLayoutProps, Badge, BadgeActivityMenu, BadgeActivityMenuProps, BadgeFilterOption, BadgeProps, BadgeSection, BadgeSectionProps, BadgeSuccessDialog, BadgeSuccessDialogProps, Board, BoardProps, Button, ButtonBorder, ButtonColor, ButtonFilter, ButtonJustify, ButtonProps, ButtonSize, ButtonSpacing, ButtonTheme, Card, CardProps, CtaListProps, DateSelection, DateSelectionProps, DaySelectionOptionProps, EventItem, EventItemProps, EventList, EventListProps, Home, HomeLayout, HomeLayoutProps, Icon, IconName, IconProps, ImpactWidget, ImpactWidgetProps, LearningForm, LearningFormProps, Loader, LoaderProps, LogServiceButton, LogServiceButtonProps, Logo, Modal, ModalProps, NavBar, NavBarProps, NavLink, NavLinkName, NavLinkProps, NotFound, NotFoundProps, Onboarding, OnboardingProps, Overlay, OverlayProps, PathwayButton, PathwayButtonProps, PathwayFilter, PathwayFilterProps, PathwayProgress, PathwayProgressHeight, PathwayProgressProps, PathwayWidget, PathwayWidgetProps, ProfileWidget, Progress, ProgressProps, ResidentWidgetProps, Search, SearchButton, SearchButtonProps, SearchProps, SearchResult, SearchResultProps, SettingsCard, SettingsCardProps, Stopwatch, StopwatchProps, Tab, TabProps, TagFilter, TagFilterProps, TaskItem, TaskItemProps, TaskList, TaskListProps, Widget, WidgetBody, WidgetBodyProps, WidgetHeader, WidgetHeaderLink, WidgetHeaderLinkProps, WidgetHeaderProps, WidgetProps, WidgetTitle, WidgetTitleProps };
|
|
1123
|
+
export { AboutWidget, AboutWidgetProps, AchievementWidget, AchievementWidgetProps, ActivityCard, ActivityCardProps, ActivityItem, ActivityItemProps, ActivityList, ActivityListProps, ActivityReflection, ActivityReflectionProps, AuthLayout, AuthLayoutProps, Badge, BadgeActivityMenu, BadgeActivityMenuProps, BadgeFilterOption, BadgeProps, BadgeSection, BadgeSectionProps, BadgeSuccessDialog, BadgeSuccessDialogProps, Board, BoardProps, Button, ButtonBorder, ButtonColor, ButtonFilter, ButtonJustify, ButtonProps, ButtonSize, ButtonSpacing, ButtonTheme, Card, CardProps, CtaListProps, DateSelection, DateSelectionProps, DaySelectionOptionProps, EventItem, EventItemProps, EventList, EventListProps, Home, HomeLayout, HomeLayoutProps, Icon, IconName, IconProps, ImpactWidget, ImpactWidgetProps, LearningForm, LearningFormProps, Loader, LoaderProps, LogServiceButton, LogServiceButtonProps, Logo, Modal, ModalProps, NavBar, NavBarProps, NavLink, NavLinkName, NavLinkProps, NotFound, NotFoundProps, Onboarding, OnboardingProps, Overlay, OverlayProps, Pathway, PathwayButton, PathwayButtonProps, PathwayFilter, PathwayFilterProps, PathwayProgress, PathwayProgressHeight, PathwayProgressProps, PathwayProps, PathwayWidget, PathwayWidgetProps, ProfileWidget, Progress, ProgressProps, ResidentWidgetProps, Search, SearchButton, SearchButtonProps, SearchProps, SearchResult, SearchResultProps, SettingsCard, SettingsCardProps, Stopwatch, StopwatchProps, Tab, TabProps, TagFilter, TagFilterProps, TaskItem, TaskItemProps, TaskList, TaskListProps, Widget, WidgetBody, WidgetBodyProps, WidgetHeader, WidgetHeaderLink, WidgetHeaderLinkProps, WidgetHeaderProps, WidgetProps, WidgetTitle, WidgetTitleProps };
|