@stackable-labs/sdk-extension-react 1.99.0 → 1.100.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.ts +17 -1
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -357,6 +357,14 @@ declare const Icon: (props: {
|
|
|
357
357
|
size?: string;
|
|
358
358
|
className?: string;
|
|
359
359
|
}) => react_jsx_runtime.JSX.Element;
|
|
360
|
+
declare const QRCode: (props: {
|
|
361
|
+
value: string;
|
|
362
|
+
size?: "sm" | "md" | "lg";
|
|
363
|
+
variant?: "default" | "inverted";
|
|
364
|
+
level?: "low" | "medium" | "quartile" | "high";
|
|
365
|
+
alt?: string;
|
|
366
|
+
className?: string;
|
|
367
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
360
368
|
declare const Link: (props: {
|
|
361
369
|
href?: string;
|
|
362
370
|
target?: string;
|
|
@@ -484,6 +492,13 @@ declare global {
|
|
|
484
492
|
name?: string;
|
|
485
493
|
size?: string;
|
|
486
494
|
}, HTMLElement>;
|
|
495
|
+
'ui-qr-code': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
496
|
+
value?: string;
|
|
497
|
+
size?: string;
|
|
498
|
+
variant?: string;
|
|
499
|
+
level?: string;
|
|
500
|
+
alt?: string;
|
|
501
|
+
}, HTMLElement>;
|
|
487
502
|
'ui-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
488
503
|
href?: string;
|
|
489
504
|
target?: string;
|
|
@@ -541,6 +556,7 @@ declare const ui_Link: typeof Link;
|
|
|
541
556
|
declare const ui_Menu: typeof Menu;
|
|
542
557
|
declare const ui_MenuItem: typeof MenuItem;
|
|
543
558
|
declare const ui_Progress: typeof Progress;
|
|
559
|
+
declare const ui_QRCode: typeof QRCode;
|
|
544
560
|
declare const ui_RadioGroup: typeof RadioGroup;
|
|
545
561
|
declare const ui_RadioGroupItem: typeof RadioGroupItem;
|
|
546
562
|
declare const ui_ScrollArea: typeof ScrollArea;
|
|
@@ -558,7 +574,7 @@ declare const ui_Text: typeof Text;
|
|
|
558
574
|
declare const ui_Textarea: typeof Textarea;
|
|
559
575
|
declare const ui_Tooltip: typeof Tooltip;
|
|
560
576
|
declare namespace ui {
|
|
561
|
-
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_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 };
|
|
577
|
+
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 };
|
|
562
578
|
}
|
|
563
579
|
|
|
564
580
|
/**
|
package/dist/index.js
CHANGED
|
@@ -483,6 +483,7 @@ __export(ui_exports, {
|
|
|
483
483
|
Menu: () => Menu,
|
|
484
484
|
MenuItem: () => MenuItem,
|
|
485
485
|
Progress: () => Progress,
|
|
486
|
+
QRCode: () => QRCode,
|
|
486
487
|
RadioGroup: () => RadioGroup,
|
|
487
488
|
RadioGroupItem: () => RadioGroupItem,
|
|
488
489
|
ScrollArea: () => ScrollArea,
|
|
@@ -533,6 +534,7 @@ var CollapsibleTrigger = (props) => /* @__PURE__ */ jsx("ui-collapsible-trigger"
|
|
|
533
534
|
var CollapsibleContent = (props) => /* @__PURE__ */ jsx("ui-collapsible-content", { ...props, children: props.children });
|
|
534
535
|
var Avatar = (props) => /* @__PURE__ */ jsx("ui-avatar", { ...props });
|
|
535
536
|
var Icon = (props) => /* @__PURE__ */ jsx("ui-icon", { ...props });
|
|
537
|
+
var QRCode = (props) => /* @__PURE__ */ jsx("ui-qr-code", { ...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",
|