@stackable-labs/embeddables 1.13.0 → 1.15.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/components.js +77 -77
- package/dist/{lib → embeddables/src/lib}/instanceRegistry.d.ts +0 -1
- package/dist/embeddables.css +1 -1
- package/dist/react.js +681 -664
- package/dist/stackable-widget.external.js +70 -70
- package/dist/stackable-widget.js +84 -84
- package/dist/{components/ui → ui/src/components}/avatar.d.ts +6 -6
- package/dist/{components/ui → ui/src/components}/badge.d.ts +3 -3
- package/dist/{components/ui → ui/src/components}/button.d.ts +3 -3
- package/dist/{components/ui → ui/src/components}/card.d.ts +8 -8
- package/dist/ui/src/components/input.d.ts +3 -0
- package/dist/{components/ui → ui/src/components}/scroll-area.d.ts +3 -3
- package/dist/{components/ui → ui/src/components}/separator.d.ts +2 -2
- package/dist/{components/ui → ui/src/components}/tabs.d.ts +3 -3
- package/package.json +1 -1
- package/dist/components/ui/input.d.ts +0 -3
- /package/dist/{WidgetApp.d.ts → embeddables/src/WidgetApp.d.ts} +0 -0
- /package/dist/{components → embeddables/src/components}/DevModeBadge.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/ExtensionSetup.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/FooterLink.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/StackableLogo.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/WidgetComponent.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/widget/WidgetBody.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/widget/WidgetLauncher.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/widget/index.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/zendesk/ConversationList.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/zendesk/CustomerProfile.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/zendesk/MessageLog.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/zendesk/ZendeskMessenger.d.ts +0 -0
- /package/dist/{components → embeddables/src/components}/zendesk/ZendeskScript.d.ts +0 -0
- /package/dist/{components.d.ts → embeddables/src/components.d.ts} +0 -0
- /package/dist/{hooks → embeddables/src/hooks}/useCustomer.d.ts +0 -0
- /package/dist/{hooks → embeddables/src/hooks}/useZendeskPortal.d.ts +0 -0
- /package/dist/{index.d.ts → embeddables/src/index.d.ts} +0 -0
- /package/dist/{lib → embeddables/src/lib}/apiRequest.d.ts +0 -0
- /package/dist/{lib → embeddables/src/lib}/devOverrides.d.ts +0 -0
- /package/dist/{lib → embeddables/src/lib}/extensionRegistry.d.ts +0 -0
- /package/dist/{lib → embeddables/src/lib}/hostComponents.d.ts +0 -0
- /package/dist/{lib → embeddables/src/lib}/loadZendeskSnippet.d.ts +0 -0
- /package/dist/{lib → embeddables/src/lib}/theme.d.ts +0 -0
- /package/dist/{react.d.ts → embeddables/src/react.d.ts} +0 -0
- /package/dist/{stackable-widget.d.ts → embeddables/src/stackable-widget.d.ts} +0 -0
- /package/dist/{styles-entry.d.ts → embeddables/src/styles-entry.d.ts} +0 -0
- /package/dist/{lib → ui/src/lib}/utils.d.ts +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import { Avatar as AvatarPrimitive } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { Avatar as AvatarPrimitive } from "radix-ui";
|
|
3
3
|
declare function Avatar({ className, size, ...props }: React.ComponentProps<typeof AvatarPrimitive.Root> & {
|
|
4
|
-
size?:
|
|
4
|
+
size?: "default" | "sm" | "lg";
|
|
5
5
|
}): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
declare function AvatarImage({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Image>): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
declare function AvatarFallback({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Fallback>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare function AvatarBadge({ className, ...props }: React.ComponentProps<
|
|
9
|
-
declare function AvatarGroup({ className, ...props }: React.ComponentProps<
|
|
10
|
-
declare function AvatarGroupCount({ className, ...props }: React.ComponentProps<
|
|
8
|
+
declare function AvatarBadge({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function AvatarGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function AvatarGroupCount({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export { Avatar, AvatarImage, AvatarFallback, AvatarBadge, AvatarGroup, AvatarGroupCount, };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import { type VariantProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
3
|
declare const badgeVariants: (props?: ({
|
|
4
4
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
5
5
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
-
declare function Badge({ className, variant, asChild, ...props }: React.ComponentProps<
|
|
6
|
+
declare function Badge({ className, variant, asChild, ...props }: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
7
7
|
asChild?: boolean;
|
|
8
8
|
}): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export { Badge, badgeVariants };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import { type VariantProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
3
|
declare const buttonVariants: (props?: ({
|
|
4
4
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
5
5
|
size?: "icon" | "default" | "xs" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
6
6
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
-
declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<
|
|
7
|
+
declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
8
8
|
asChild?: boolean;
|
|
9
9
|
}): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export { Button, buttonVariants };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
declare function Card({ className, ...props }: React.ComponentProps<
|
|
3
|
-
declare function CardHeader({ className, ...props }: React.ComponentProps<
|
|
4
|
-
declare function CardTitle({ className, ...props }: React.ComponentProps<
|
|
5
|
-
declare function CardDescription({ className, ...props }: React.ComponentProps<
|
|
6
|
-
declare function CardAction({ className, ...props }: React.ComponentProps<
|
|
7
|
-
declare function CardContent({ className, ...props }: React.ComponentProps<
|
|
8
|
-
declare function CardFooter({ className, ...props }: React.ComponentProps<
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
declare function Card({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function CardHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function CardTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function CardDescription({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function CardAction({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function CardContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function CardFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export { Card, CardHeader, CardFooter, CardTitle, CardAction, CardDescription, CardContent, };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import { ScrollArea as ScrollAreaPrimitive } from
|
|
3
|
-
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { ScrollArea as ScrollAreaPrimitive } from "radix-ui";
|
|
4
3
|
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export { ScrollArea, ScrollBar };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import { Separator as SeparatorPrimitive } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { Separator as SeparatorPrimitive } from "radix-ui";
|
|
3
3
|
declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof SeparatorPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export { Separator };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import { type VariantProps } from
|
|
3
|
-
import { Tabs as TabsPrimitive } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
import { Tabs as TabsPrimitive } from "radix-ui";
|
|
4
4
|
declare function Tabs({ className, orientation, ...props }: React.ComponentProps<typeof TabsPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
declare const tabsListVariants: (props?: ({
|
|
6
6
|
variant?: "line" | "default" | null | undefined;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|