@stackable-labs/sdk-extension-react 2.7.0 → 2.8.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 CHANGED
@@ -407,6 +407,14 @@ declare const Video: (props: {
407
407
  title?: string;
408
408
  className?: string;
409
409
  }) => react_jsx_runtime.JSX.Element;
410
+ declare const Image: (props: {
411
+ src?: string;
412
+ alt?: string;
413
+ loading?: "lazy" | "eager";
414
+ width?: number | string;
415
+ height?: number | string;
416
+ className?: string;
417
+ }) => react_jsx_runtime.JSX.Element;
410
418
  declare const Link: (props: {
411
419
  href?: string;
412
420
  target?: string;
@@ -549,6 +557,13 @@ declare global {
549
557
  shape?: string;
550
558
  title?: string;
551
559
  }, HTMLElement>;
560
+ 'ui-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
561
+ src?: string;
562
+ alt?: string;
563
+ loading?: string;
564
+ width?: number | string;
565
+ height?: number | string;
566
+ }, HTMLElement>;
552
567
  'ui-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
553
568
  href?: string;
554
569
  target?: string;
@@ -599,6 +614,7 @@ declare const ui_CollapsibleTrigger: typeof CollapsibleTrigger;
599
614
  declare const ui_FooterLink: typeof FooterLink;
600
615
  declare const ui_Heading: typeof Heading;
601
616
  declare const ui_Icon: typeof Icon;
617
+ declare const ui_Image: typeof Image;
602
618
  declare const ui_Inline: typeof Inline;
603
619
  declare const ui_Input: typeof Input;
604
620
  declare const ui_Label: typeof Label;
@@ -625,7 +641,7 @@ declare const ui_Textarea: typeof Textarea;
625
641
  declare const ui_Tooltip: typeof Tooltip;
626
642
  declare const ui_Video: typeof Video;
627
643
  declare namespace ui {
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 };
644
+ 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_Image as Image, 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 };
629
645
  }
630
646
 
631
647
  /**
package/dist/index.js CHANGED
@@ -472,6 +472,7 @@ __export(ui_exports, {
472
472
  FooterLink: () => FooterLink,
473
473
  Heading: () => Heading,
474
474
  Icon: () => Icon,
475
+ Image: () => Image,
475
476
  Inline: () => Inline,
476
477
  Input: () => Input,
477
478
  Label: () => Label,
@@ -533,6 +534,7 @@ var Avatar = (props) => /* @__PURE__ */ jsx("ui-avatar", { ...props });
533
534
  var Icon = (props) => /* @__PURE__ */ jsx("ui-icon", { ...props });
534
535
  var QRCode = (props) => /* @__PURE__ */ jsx("ui-qr-code", { ...props });
535
536
  var Video = (props) => /* @__PURE__ */ jsx("ui-video", { ...props });
537
+ var Image = (props) => /* @__PURE__ */ jsx("ui-image", { ...props });
536
538
  var Link = (props) => /* @__PURE__ */ jsx("ui-link", { ...props, children: props.children });
537
539
  var FooterLink = (props) => /* @__PURE__ */ jsx(
538
540
  "ui-link",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackable-labs/sdk-extension-react",
3
- "version": "2.7.0",
3
+ "version": "2.8.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "sideEffects": false,