@scalably/ui 0.9.15 → 0.10.1
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.cts +68 -1
- package/dist/index.d.ts +68 -1
- package/dist/index.esm.js +18 -18
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1288,6 +1288,56 @@ interface ImageGalleryProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
|
|
|
1288
1288
|
}
|
|
1289
1289
|
declare const ImageGallery: react.ForwardRefExoticComponent<ImageGalleryProps & react.RefAttributes<HTMLDivElement>>;
|
|
1290
1290
|
|
|
1291
|
+
/**
|
|
1292
|
+
* Media gallery component supporting both images and videos.
|
|
1293
|
+
*
|
|
1294
|
+
* Based on ImageGallery but with video playback support and play indicators.
|
|
1295
|
+
*/
|
|
1296
|
+
declare const MediaGallery: react.ForwardRefExoticComponent<MediaGalleryProps & react.RefAttributes<HTMLDivElement>>;
|
|
1297
|
+
/**
|
|
1298
|
+
* Media item type for the gallery.
|
|
1299
|
+
*/
|
|
1300
|
+
type MediaItem = {
|
|
1301
|
+
type: "image";
|
|
1302
|
+
src: string;
|
|
1303
|
+
alt?: string;
|
|
1304
|
+
} | {
|
|
1305
|
+
type: "video";
|
|
1306
|
+
src: string;
|
|
1307
|
+
poster?: string;
|
|
1308
|
+
alt?: string;
|
|
1309
|
+
};
|
|
1310
|
+
/**
|
|
1311
|
+
* Media source can be a simple string (assumed image) or a MediaItem object.
|
|
1312
|
+
*/
|
|
1313
|
+
type MediaSource = string | MediaItem;
|
|
1314
|
+
interface MediaGalleryProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
1315
|
+
/**
|
|
1316
|
+
* Required list of media items (images or videos) to display.
|
|
1317
|
+
*/
|
|
1318
|
+
media: MediaSource[];
|
|
1319
|
+
/**
|
|
1320
|
+
* Optional thumbnail that will be merged with the media list at position 0.
|
|
1321
|
+
*/
|
|
1322
|
+
thumbnail?: MediaSource;
|
|
1323
|
+
/**
|
|
1324
|
+
* The default position to show (0-indexed).
|
|
1325
|
+
* @default 0
|
|
1326
|
+
*/
|
|
1327
|
+
defaultPosition?: number;
|
|
1328
|
+
/**
|
|
1329
|
+
* Callback fired when the current item changes.
|
|
1330
|
+
*/
|
|
1331
|
+
onMediaChange?: (index: number) => void;
|
|
1332
|
+
/**
|
|
1333
|
+
* The alignment of the gallery.
|
|
1334
|
+
* - 'horizontal': Thumbnails on the left (grid), preview on the right.
|
|
1335
|
+
* - 'vertical': Preview on top, thumbnails on the bottom (scrollable).
|
|
1336
|
+
* @default 'horizontal'
|
|
1337
|
+
*/
|
|
1338
|
+
align?: "horizontal" | "vertical";
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1291
1341
|
type FormBaseProps = Omit<React.FormHTMLAttributes<HTMLFormElement>, "onSubmit">;
|
|
1292
1342
|
interface FormProps extends FormBaseProps {
|
|
1293
1343
|
onSubmit?: (event: React.FormEvent<HTMLFormElement>) => void;
|
|
@@ -4750,4 +4800,21 @@ declare const WalletIcon: {
|
|
|
4750
4800
|
displayName: string;
|
|
4751
4801
|
};
|
|
4752
4802
|
|
|
4753
|
-
|
|
4803
|
+
interface PlayIconProps extends IconProps {
|
|
4804
|
+
}
|
|
4805
|
+
/**
|
|
4806
|
+
* Play icon component - displays a play triangle icon.
|
|
4807
|
+
*
|
|
4808
|
+
* This icon uses `currentColor`, so it can be styled with CSS classes.
|
|
4809
|
+
*
|
|
4810
|
+
* @example
|
|
4811
|
+
* ```tsx
|
|
4812
|
+
* <PlayIcon size={24} className="sui-text-white" />
|
|
4813
|
+
* ```
|
|
4814
|
+
*/
|
|
4815
|
+
declare const PlayIcon: {
|
|
4816
|
+
(props: PlayIconProps): react_jsx_runtime.JSX.Element;
|
|
4817
|
+
displayName: string;
|
|
4818
|
+
};
|
|
4819
|
+
|
|
4820
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, ShareIcon, type ShareIconProps, ShoppingBagFilledIcon, type ShoppingBagFilledIconProps, ShoppingBagIcon, type ShoppingBagIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, Slider, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, UserFilledIcon, type UserFilledIconProps, UserIcon, type UserIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WalletFilledIcon, type WalletFilledIconProps, WalletIcon, type WalletIconProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|
package/dist/index.d.ts
CHANGED
|
@@ -1288,6 +1288,56 @@ interface ImageGalleryProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
|
|
|
1288
1288
|
}
|
|
1289
1289
|
declare const ImageGallery: react.ForwardRefExoticComponent<ImageGalleryProps & react.RefAttributes<HTMLDivElement>>;
|
|
1290
1290
|
|
|
1291
|
+
/**
|
|
1292
|
+
* Media gallery component supporting both images and videos.
|
|
1293
|
+
*
|
|
1294
|
+
* Based on ImageGallery but with video playback support and play indicators.
|
|
1295
|
+
*/
|
|
1296
|
+
declare const MediaGallery: react.ForwardRefExoticComponent<MediaGalleryProps & react.RefAttributes<HTMLDivElement>>;
|
|
1297
|
+
/**
|
|
1298
|
+
* Media item type for the gallery.
|
|
1299
|
+
*/
|
|
1300
|
+
type MediaItem = {
|
|
1301
|
+
type: "image";
|
|
1302
|
+
src: string;
|
|
1303
|
+
alt?: string;
|
|
1304
|
+
} | {
|
|
1305
|
+
type: "video";
|
|
1306
|
+
src: string;
|
|
1307
|
+
poster?: string;
|
|
1308
|
+
alt?: string;
|
|
1309
|
+
};
|
|
1310
|
+
/**
|
|
1311
|
+
* Media source can be a simple string (assumed image) or a MediaItem object.
|
|
1312
|
+
*/
|
|
1313
|
+
type MediaSource = string | MediaItem;
|
|
1314
|
+
interface MediaGalleryProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
1315
|
+
/**
|
|
1316
|
+
* Required list of media items (images or videos) to display.
|
|
1317
|
+
*/
|
|
1318
|
+
media: MediaSource[];
|
|
1319
|
+
/**
|
|
1320
|
+
* Optional thumbnail that will be merged with the media list at position 0.
|
|
1321
|
+
*/
|
|
1322
|
+
thumbnail?: MediaSource;
|
|
1323
|
+
/**
|
|
1324
|
+
* The default position to show (0-indexed).
|
|
1325
|
+
* @default 0
|
|
1326
|
+
*/
|
|
1327
|
+
defaultPosition?: number;
|
|
1328
|
+
/**
|
|
1329
|
+
* Callback fired when the current item changes.
|
|
1330
|
+
*/
|
|
1331
|
+
onMediaChange?: (index: number) => void;
|
|
1332
|
+
/**
|
|
1333
|
+
* The alignment of the gallery.
|
|
1334
|
+
* - 'horizontal': Thumbnails on the left (grid), preview on the right.
|
|
1335
|
+
* - 'vertical': Preview on top, thumbnails on the bottom (scrollable).
|
|
1336
|
+
* @default 'horizontal'
|
|
1337
|
+
*/
|
|
1338
|
+
align?: "horizontal" | "vertical";
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1291
1341
|
type FormBaseProps = Omit<React.FormHTMLAttributes<HTMLFormElement>, "onSubmit">;
|
|
1292
1342
|
interface FormProps extends FormBaseProps {
|
|
1293
1343
|
onSubmit?: (event: React.FormEvent<HTMLFormElement>) => void;
|
|
@@ -4750,4 +4800,21 @@ declare const WalletIcon: {
|
|
|
4750
4800
|
displayName: string;
|
|
4751
4801
|
};
|
|
4752
4802
|
|
|
4753
|
-
|
|
4803
|
+
interface PlayIconProps extends IconProps {
|
|
4804
|
+
}
|
|
4805
|
+
/**
|
|
4806
|
+
* Play icon component - displays a play triangle icon.
|
|
4807
|
+
*
|
|
4808
|
+
* This icon uses `currentColor`, so it can be styled with CSS classes.
|
|
4809
|
+
*
|
|
4810
|
+
* @example
|
|
4811
|
+
* ```tsx
|
|
4812
|
+
* <PlayIcon size={24} className="sui-text-white" />
|
|
4813
|
+
* ```
|
|
4814
|
+
*/
|
|
4815
|
+
declare const PlayIcon: {
|
|
4816
|
+
(props: PlayIconProps): react_jsx_runtime.JSX.Element;
|
|
4817
|
+
displayName: string;
|
|
4818
|
+
};
|
|
4819
|
+
|
|
4820
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, ShareIcon, type ShareIconProps, ShoppingBagFilledIcon, type ShoppingBagFilledIconProps, ShoppingBagIcon, type ShoppingBagIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, Slider, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, UserFilledIcon, type UserFilledIconProps, UserIcon, type UserIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WalletFilledIcon, type WalletFilledIconProps, WalletIcon, type WalletIconProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|