@stackable-labs/sdk-extension-react 2.5.0 → 2.7.0
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 +19 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -398,6 +398,15 @@ declare const QRCode: (props: {
|
|
|
398
398
|
alt?: string;
|
|
399
399
|
className?: string;
|
|
400
400
|
}) => react_jsx_runtime.JSX.Element;
|
|
401
|
+
declare const Video: (props: {
|
|
402
|
+
videoId?: string;
|
|
403
|
+
autoPlay?: boolean;
|
|
404
|
+
showControls?: boolean;
|
|
405
|
+
allowTracking?: boolean;
|
|
406
|
+
shape?: "horizontal" | "vertical" | "square" | "auto";
|
|
407
|
+
title?: string;
|
|
408
|
+
className?: string;
|
|
409
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
401
410
|
declare const Link: (props: {
|
|
402
411
|
href?: string;
|
|
403
412
|
target?: string;
|
|
@@ -532,6 +541,14 @@ declare global {
|
|
|
532
541
|
level?: string;
|
|
533
542
|
alt?: string;
|
|
534
543
|
}, HTMLElement>;
|
|
544
|
+
'ui-video': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
545
|
+
videoId?: string;
|
|
546
|
+
autoPlay?: boolean;
|
|
547
|
+
showControls?: boolean;
|
|
548
|
+
allowTracking?: boolean;
|
|
549
|
+
shape?: string;
|
|
550
|
+
title?: string;
|
|
551
|
+
}, HTMLElement>;
|
|
535
552
|
'ui-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
536
553
|
href?: string;
|
|
537
554
|
target?: string;
|
|
@@ -606,8 +623,9 @@ declare const ui_TabsTrigger: typeof TabsTrigger;
|
|
|
606
623
|
declare const ui_Text: typeof Text;
|
|
607
624
|
declare const ui_Textarea: typeof Textarea;
|
|
608
625
|
declare const ui_Tooltip: typeof Tooltip;
|
|
626
|
+
declare const ui_Video: typeof Video;
|
|
609
627
|
declare namespace ui {
|
|
610
|
-
export { ui_Alert as Alert, ui_Avatar as Avatar, ui_Badge as Badge, ui_Button as Button, ui_Card as Card, ui_CardContent as CardContent, ui_CardHeader as CardHeader, ui_Checkbox as Checkbox, ui_Collapsible as Collapsible, ui_CollapsibleContent as CollapsibleContent, ui_CollapsibleTrigger as CollapsibleTrigger, ui_FooterLink as FooterLink, ui_Heading as Heading, ui_Icon as Icon, ui_Inline as Inline, ui_Input as Input, ui_Label as Label, ui_Link as Link, ui_Menu as Menu, ui_MenuItem as MenuItem, ui_Progress as Progress, ui_QRCode as QRCode, ui_RadioGroup as RadioGroup, ui_RadioGroupItem as RadioGroupItem, ui_ScrollArea as ScrollArea, ui_Select as Select, ui_SelectOption as SelectOption, ui_Separator as Separator, ui_Skeleton as Skeleton, ui_Stack as Stack, ui_Switch as Switch, ui_Tabs as Tabs, ui_TabsContent as TabsContent, ui_TabsList as TabsList, ui_TabsTrigger as TabsTrigger, ui_Text as Text, ui_Textarea as Textarea, ui_Tooltip as Tooltip };
|
|
628
|
+
export { ui_Alert as Alert, ui_Avatar as Avatar, ui_Badge as Badge, ui_Button as Button, ui_Card as Card, ui_CardContent as CardContent, ui_CardHeader as CardHeader, ui_Checkbox as Checkbox, ui_Collapsible as Collapsible, ui_CollapsibleContent as CollapsibleContent, ui_CollapsibleTrigger as CollapsibleTrigger, ui_FooterLink as FooterLink, ui_Heading as Heading, ui_Icon as Icon, ui_Inline as Inline, ui_Input as Input, ui_Label as Label, ui_Link as Link, ui_Menu as Menu, ui_MenuItem as MenuItem, ui_Progress as Progress, ui_QRCode as QRCode, ui_RadioGroup as RadioGroup, ui_RadioGroupItem as RadioGroupItem, ui_ScrollArea as ScrollArea, ui_Select as Select, ui_SelectOption as SelectOption, ui_Separator as Separator, ui_Skeleton as Skeleton, ui_Stack as Stack, ui_Switch as Switch, ui_Tabs as Tabs, ui_TabsContent as TabsContent, ui_TabsList as TabsList, ui_TabsTrigger as TabsTrigger, ui_Text as Text, ui_Textarea as Textarea, ui_Tooltip as Tooltip, ui_Video as Video };
|
|
611
629
|
}
|
|
612
630
|
|
|
613
631
|
/**
|
package/dist/index.js
CHANGED
|
@@ -495,7 +495,8 @@ __export(ui_exports, {
|
|
|
495
495
|
TabsTrigger: () => TabsTrigger,
|
|
496
496
|
Text: () => Text,
|
|
497
497
|
Textarea: () => Textarea,
|
|
498
|
-
Tooltip: () => Tooltip
|
|
498
|
+
Tooltip: () => Tooltip,
|
|
499
|
+
Video: () => Video
|
|
499
500
|
});
|
|
500
501
|
var Card = (props) => /* @__PURE__ */ jsx("ui-card", { ...props, children: props.children });
|
|
501
502
|
var CardContent = (props) => /* @__PURE__ */ jsx("ui-card-content", { ...props, children: props.children });
|
|
@@ -531,6 +532,7 @@ var CollapsibleContent = (props) => /* @__PURE__ */ jsx("ui-collapsible-content"
|
|
|
531
532
|
var Avatar = (props) => /* @__PURE__ */ jsx("ui-avatar", { ...props });
|
|
532
533
|
var Icon = (props) => /* @__PURE__ */ jsx("ui-icon", { ...props });
|
|
533
534
|
var QRCode = (props) => /* @__PURE__ */ jsx("ui-qr-code", { ...props });
|
|
535
|
+
var Video = (props) => /* @__PURE__ */ jsx("ui-video", { ...props });
|
|
534
536
|
var Link = (props) => /* @__PURE__ */ jsx("ui-link", { ...props, children: props.children });
|
|
535
537
|
var FooterLink = (props) => /* @__PURE__ */ jsx(
|
|
536
538
|
"ui-link",
|