@dust-tt/sparkle 0.6.0 → 0.7.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/cjs/index.js +11 -10
- package/dist/cjs/index.js.map +4 -4
- package/dist/esm/components/Citation.d.ts +7 -1
- package/dist/esm/components/Citation.d.ts.map +1 -1
- package/dist/esm/components/Citation.js +24 -13
- package/dist/esm/components/Citation.js.map +1 -1
- package/dist/esm/components/ConversationListItem.d.ts +38 -0
- package/dist/esm/components/ConversationListItem.d.ts.map +1 -0
- package/dist/esm/components/ConversationListItem.js +37 -0
- package/dist/esm/components/ConversationListItem.js.map +1 -0
- package/dist/esm/components/ConversationMessage.js +1 -1
- package/dist/esm/components/ImagePreview.d.ts +27 -0
- package/dist/esm/components/ImagePreview.d.ts.map +1 -0
- package/dist/esm/components/ImagePreview.js +87 -0
- package/dist/esm/components/ImagePreview.js.map +1 -0
- package/dist/esm/components/ImageZoomDialog.d.ts +26 -0
- package/dist/esm/components/ImageZoomDialog.d.ts.map +1 -0
- package/dist/esm/components/ImageZoomDialog.js +46 -0
- package/dist/esm/components/ImageZoomDialog.js.map +1 -0
- package/dist/esm/components/InteractiveImageGrid.d.ts.map +1 -1
- package/dist/esm/components/InteractiveImageGrid.js +25 -67
- package/dist/esm/components/InteractiveImageGrid.js.map +1 -1
- package/dist/esm/components/ListItem.d.ts +4 -1
- package/dist/esm/components/ListItem.d.ts.map +1 -1
- package/dist/esm/components/ListItem.js +42 -2
- package/dist/esm/components/ListItem.js.map +1 -1
- package/dist/esm/components/NavigationList.d.ts.map +1 -1
- package/dist/esm/components/NavigationList.js +22 -14
- package/dist/esm/components/NavigationList.js.map +1 -1
- package/dist/esm/components/Sheet.js +1 -1
- package/dist/esm/components/Sheet.js.map +1 -1
- package/dist/esm/components/SidebarLayout.d.ts +1 -0
- package/dist/esm/components/SidebarLayout.d.ts.map +1 -1
- package/dist/esm/components/SidebarLayout.js +18 -36
- package/dist/esm/components/SidebarLayout.js.map +1 -1
- package/dist/esm/components/index.d.ts +6 -0
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/index.js +3 -0
- package/dist/esm/components/index.js.map +1 -1
- package/dist/esm/lottie/collapseBar.d.ts +21 -21
- package/dist/esm/lottie/spinnerColorLG.d.ts +125 -125
- package/dist/esm/lottie/spinnerColorXS.d.ts +11 -11
- package/dist/esm/lottie/spinnerDarkXS.d.ts +38 -38
- package/dist/esm/lottie/spinnerLight.d.ts +66 -66
- package/dist/esm/stories/Citation.stories.d.ts.map +1 -1
- package/dist/esm/stories/Citation.stories.js +7 -15
- package/dist/esm/stories/Citation.stories.js.map +1 -1
- package/dist/esm/stories/ConversationListItem.stories.d.ts +12 -0
- package/dist/esm/stories/ConversationListItem.stories.d.ts.map +1 -0
- package/dist/esm/stories/ConversationListItem.stories.js +60 -0
- package/dist/esm/stories/ConversationListItem.stories.js.map +1 -0
- package/dist/esm/stories/ImagePreview.stories.d.ts +47 -0
- package/dist/esm/stories/ImagePreview.stories.d.ts.map +1 -0
- package/dist/esm/stories/ImagePreview.stories.js +107 -0
- package/dist/esm/stories/ImagePreview.stories.js.map +1 -0
- package/dist/esm/styles/allotment.css +14 -36
- package/dist/sparkle.css +53 -44
- package/package.json +1 -1
- package/src/components/Citation.tsx +52 -41
- package/src/components/ConversationListItem.tsx +125 -0
- package/src/components/ConversationMessage.tsx +1 -1
- package/src/components/ImagePreview.tsx +228 -0
- package/src/components/ImageZoomDialog.tsx +151 -0
- package/src/components/InteractiveImageGrid.tsx +60 -267
- package/src/components/ListItem.tsx +73 -5
- package/src/components/NavigationList.tsx +38 -27
- package/src/components/Sheet.tsx +1 -1
- package/src/components/SidebarLayout.tsx +23 -43
- package/src/components/index.ts +17 -0
- package/src/styles/allotment.css +14 -36
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ConversationListItem, ListGroup, ReplySection, } from "../index_with_tw_base";
|
|
3
|
+
const meta = {
|
|
4
|
+
title: "Components/ConversationListItem",
|
|
5
|
+
component: ConversationListItem,
|
|
6
|
+
tags: ["autodocs"],
|
|
7
|
+
};
|
|
8
|
+
export default meta;
|
|
9
|
+
const mockConversation = {
|
|
10
|
+
id: "conv-1",
|
|
11
|
+
title: "Project planning discussion",
|
|
12
|
+
description: "Let's discuss the roadmap for Q1 and align on priorities for the upcoming sprint.",
|
|
13
|
+
updatedAt: new Date(),
|
|
14
|
+
};
|
|
15
|
+
export const OneOnOneWithReply = {
|
|
16
|
+
args: {
|
|
17
|
+
conversation: mockConversation,
|
|
18
|
+
time: "14:30",
|
|
19
|
+
},
|
|
20
|
+
render: () => (React.createElement(ListGroup, null,
|
|
21
|
+
React.createElement(ConversationListItem, { conversation: mockConversation, avatar: {
|
|
22
|
+
name: "Alice",
|
|
23
|
+
visual: "https://i.pravatar.cc/150?img=1",
|
|
24
|
+
isRounded: true,
|
|
25
|
+
}, time: "14:30", replySection: React.createElement(ReplySection, { totalMessages: 3, newMessages: 1, avatars: [
|
|
26
|
+
{
|
|
27
|
+
name: "Alice",
|
|
28
|
+
visual: "https://i.pravatar.cc/150?img=1",
|
|
29
|
+
isRounded: true,
|
|
30
|
+
},
|
|
31
|
+
], lastMessageBy: "Alice" }), onClick: () => console.log("Clicked") }))),
|
|
32
|
+
};
|
|
33
|
+
export const GroupConversationWithReply = {
|
|
34
|
+
args: {
|
|
35
|
+
conversation: mockConversation,
|
|
36
|
+
time: "14:30",
|
|
37
|
+
},
|
|
38
|
+
render: () => (React.createElement(ListGroup, null,
|
|
39
|
+
React.createElement(ConversationListItem, { conversation: mockConversation, creator: {
|
|
40
|
+
fullName: "Bob",
|
|
41
|
+
portrait: "https://i.pravatar.cc/150?img=2",
|
|
42
|
+
}, time: "14:30", replySection: React.createElement(ReplySection, { totalMessages: 5, newMessages: 0, avatars: [
|
|
43
|
+
{
|
|
44
|
+
name: "Alice",
|
|
45
|
+
visual: "https://i.pravatar.cc/150?img=1",
|
|
46
|
+
isRounded: true,
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: "Charlie",
|
|
50
|
+
visual: "https://i.pravatar.cc/150?img=3",
|
|
51
|
+
isRounded: true,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: "Diana",
|
|
55
|
+
visual: "https://i.pravatar.cc/150?img=4",
|
|
56
|
+
isRounded: true,
|
|
57
|
+
},
|
|
58
|
+
], lastMessageBy: "seb" }), onClick: () => console.log("Clicked") }))),
|
|
59
|
+
};
|
|
60
|
+
//# sourceMappingURL=ConversationListItem.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConversationListItem.stories.js","sourceRoot":"","sources":["../../../src/stories/ConversationListItem.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EACL,oBAAoB,EACpB,SAAS,EACT,YAAY,GACb,MAAM,uBAAuB,CAAC;AAE/B,MAAM,IAAI,GAAG;IACX,KAAK,EAAE,iCAAiC;IACxC,SAAS,EAAE,oBAAoB;IAC/B,IAAI,EAAE,CAAC,UAAU,CAAC;CACyB,CAAC;AAE9C,eAAe,IAAI,CAAC;AAGpB,MAAM,gBAAgB,GAAG;IACvB,EAAE,EAAE,QAAQ;IACZ,KAAK,EAAE,6BAA6B;IACpC,WAAW,EACT,mFAAmF;IACrF,SAAS,EAAE,IAAI,IAAI,EAAE;CACtB,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAU;IACtC,IAAI,EAAE;QACJ,YAAY,EAAE,gBAAgB;QAC9B,IAAI,EAAE,OAAO;KACd;IACD,MAAM,EAAE,GAAG,EAAE,CAAC,CACZ,oBAAC,SAAS;QACR,oBAAC,oBAAoB,IACnB,YAAY,EAAE,gBAAgB,EAC9B,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,MAAM,EAAE,iCAAiC;gBACzC,SAAS,EAAE,IAAI;aAChB,EACD,IAAI,EAAC,OAAO,EACZ,YAAY,EACV,oBAAC,YAAY,IACX,aAAa,EAAE,CAAC,EAChB,WAAW,EAAE,CAAC,EACd,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,OAAO;wBACb,MAAM,EAAE,iCAAiC;wBACzC,SAAS,EAAE,IAAI;qBAChB;iBACF,EACD,aAAa,EAAC,OAAO,GACrB,EAEJ,OAAO,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,GACrC,CACQ,CACb;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAU;IAC/C,IAAI,EAAE;QACJ,YAAY,EAAE,gBAAgB;QAC9B,IAAI,EAAE,OAAO;KACd;IACD,MAAM,EAAE,GAAG,EAAE,CAAC,CACZ,oBAAC,SAAS;QACR,oBAAC,oBAAoB,IACnB,YAAY,EAAE,gBAAgB,EAC9B,OAAO,EAAE;gBACP,QAAQ,EAAE,KAAK;gBACf,QAAQ,EAAE,iCAAiC;aAC5C,EACD,IAAI,EAAC,OAAO,EACZ,YAAY,EACV,oBAAC,YAAY,IACX,aAAa,EAAE,CAAC,EAChB,WAAW,EAAE,CAAC,EACd,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,OAAO;wBACb,MAAM,EAAE,iCAAiC;wBACzC,SAAS,EAAE,IAAI;qBAChB;oBACD;wBACE,IAAI,EAAE,SAAS;wBACf,MAAM,EAAE,iCAAiC;wBACzC,SAAS,EAAE,IAAI;qBAChB;oBACD;wBACE,IAAI,EAAE,OAAO;wBACb,MAAM,EAAE,iCAAiC;wBACzC,SAAS,EAAE,IAAI;qBAChB;iBACF,EACD,aAAa,EAAC,KAAK,GACnB,EAEJ,OAAO,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,GACrC,CACQ,CACb;CACF,CAAC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { StoryObj } from "@storybook/react";
|
|
2
|
+
import React from "react";
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: React.ForwardRefExoticComponent<import("../components").ImagePreviewProps & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
tags: string[];
|
|
7
|
+
argTypes: {
|
|
8
|
+
variant: {
|
|
9
|
+
description: string;
|
|
10
|
+
options: readonly ["absolute", "square"];
|
|
11
|
+
control: {
|
|
12
|
+
type: "select";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
titlePosition: {
|
|
16
|
+
description: string;
|
|
17
|
+
options: readonly ["bottom", "center"];
|
|
18
|
+
control: {
|
|
19
|
+
type: "select";
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
isLoading: {
|
|
23
|
+
description: string;
|
|
24
|
+
control: "boolean";
|
|
25
|
+
};
|
|
26
|
+
manageZoomDialog: {
|
|
27
|
+
description: string;
|
|
28
|
+
control: "boolean";
|
|
29
|
+
};
|
|
30
|
+
title: {
|
|
31
|
+
description: string;
|
|
32
|
+
control: "text";
|
|
33
|
+
};
|
|
34
|
+
alt: {
|
|
35
|
+
description: string;
|
|
36
|
+
control: "text";
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
render: (args: import("../components").ImagePreviewProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element;
|
|
40
|
+
};
|
|
41
|
+
export default meta;
|
|
42
|
+
type Story = StoryObj<typeof meta>;
|
|
43
|
+
export declare const ExampleImagePreview: Story;
|
|
44
|
+
export declare const WithClose: Story;
|
|
45
|
+
export declare const WithDownload: Story;
|
|
46
|
+
export declare const Gallery: Story;
|
|
47
|
+
//# sourceMappingURL=ImagePreview.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImagePreview.stories.d.ts","sourceRoot":"","sources":["../../../src/stories/ImagePreview.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8C2B,CAAC;AAEtC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,mBAAmB,EAAE,KAUjC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAYvB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAa1B,CAAC;AAqFF,eAAO,MAAM,OAAO,EAAE,KAUrB,CAAC"}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IMAGE_PREVIEW_TITLE_POSITIONS, IMAGE_PREVIEW_VARIANTS, } from "../components/ImagePreview";
|
|
3
|
+
import { ImagePreview, Separator } from "../index_with_tw_base";
|
|
4
|
+
const SAMPLE_IMAGE = "https://dust.tt/static/droidavatar/Droid_Lime_3.jpg";
|
|
5
|
+
const meta = {
|
|
6
|
+
title: "Components/ImagePreview",
|
|
7
|
+
component: ImagePreview,
|
|
8
|
+
tags: ["autodocs"],
|
|
9
|
+
argTypes: {
|
|
10
|
+
variant: {
|
|
11
|
+
description: "Layout variant of the image preview",
|
|
12
|
+
options: IMAGE_PREVIEW_VARIANTS,
|
|
13
|
+
control: { type: "select" },
|
|
14
|
+
},
|
|
15
|
+
titlePosition: {
|
|
16
|
+
description: "Position of the title overlay on hover",
|
|
17
|
+
options: IMAGE_PREVIEW_TITLE_POSITIONS,
|
|
18
|
+
control: { type: "select" },
|
|
19
|
+
},
|
|
20
|
+
isLoading: {
|
|
21
|
+
description: "Whether the image is in a loading state",
|
|
22
|
+
control: "boolean",
|
|
23
|
+
},
|
|
24
|
+
manageZoomDialog: {
|
|
25
|
+
description: "Whether clicking opens a zoom dialog",
|
|
26
|
+
control: "boolean",
|
|
27
|
+
},
|
|
28
|
+
title: {
|
|
29
|
+
description: "Title displayed on hover",
|
|
30
|
+
control: "text",
|
|
31
|
+
},
|
|
32
|
+
alt: {
|
|
33
|
+
description: "Alt text for the image",
|
|
34
|
+
control: "text",
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
render: (args) => {
|
|
38
|
+
if (args.variant === "absolute") {
|
|
39
|
+
return (React.createElement("div", { className: "s-relative s-h-48 s-w-48" },
|
|
40
|
+
React.createElement(ImagePreview, Object.assign({}, args))));
|
|
41
|
+
}
|
|
42
|
+
return (React.createElement("div", { className: "s-w-48" },
|
|
43
|
+
React.createElement(ImagePreview, Object.assign({}, args))));
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
export default meta;
|
|
47
|
+
export const ExampleImagePreview = {
|
|
48
|
+
args: {
|
|
49
|
+
imgSrc: SAMPLE_IMAGE,
|
|
50
|
+
title: "Sample Image",
|
|
51
|
+
alt: "A sample droid avatar",
|
|
52
|
+
variant: "square",
|
|
53
|
+
titlePosition: "bottom",
|
|
54
|
+
isLoading: false,
|
|
55
|
+
manageZoomDialog: true,
|
|
56
|
+
},
|
|
57
|
+
};
|
|
58
|
+
export const WithClose = {
|
|
59
|
+
args: {
|
|
60
|
+
imgSrc: SAMPLE_IMAGE,
|
|
61
|
+
title: "Closeable Image",
|
|
62
|
+
variant: "square",
|
|
63
|
+
titlePosition: "bottom",
|
|
64
|
+
},
|
|
65
|
+
render: (args) => (React.createElement("div", { className: "s-w-48" },
|
|
66
|
+
React.createElement(ImagePreview, Object.assign({}, args, { onClose: () => alert("Close clicked") })))),
|
|
67
|
+
};
|
|
68
|
+
export const WithDownload = {
|
|
69
|
+
args: {
|
|
70
|
+
imgSrc: SAMPLE_IMAGE,
|
|
71
|
+
title: "Downloadable Image",
|
|
72
|
+
downloadUrl: SAMPLE_IMAGE,
|
|
73
|
+
variant: "square",
|
|
74
|
+
titlePosition: "bottom",
|
|
75
|
+
},
|
|
76
|
+
render: (args) => (React.createElement("div", { className: "s-w-48" },
|
|
77
|
+
React.createElement(ImagePreview, Object.assign({}, args)))),
|
|
78
|
+
};
|
|
79
|
+
const ImagePreviewByVariant = ({ variant, }) => (React.createElement(React.Fragment, null,
|
|
80
|
+
React.createElement(Separator, null),
|
|
81
|
+
React.createElement("h3", { className: "s-text-primary dark:s-text-primary-50" }, variant === null || variant === void 0 ? void 0 : variant.toUpperCase()),
|
|
82
|
+
React.createElement("div", { className: "s-flex s-flex-col s-gap-4" }, IMAGE_PREVIEW_TITLE_POSITIONS.map((titlePosition) => (React.createElement("div", { key: titlePosition, className: "s-flex s-flex-col s-gap-2" },
|
|
83
|
+
React.createElement("div", { className: "s-text-sm s-font-medium s-text-primary dark:s-text-primary-night" },
|
|
84
|
+
"titlePosition: ",
|
|
85
|
+
titlePosition),
|
|
86
|
+
React.createElement("div", { className: "s-flex s-items-center s-gap-4" }, variant === "absolute" ? (React.createElement(React.Fragment, null,
|
|
87
|
+
React.createElement("div", { className: "s-relative s-h-32 s-w-32" },
|
|
88
|
+
React.createElement(ImagePreview, { imgSrc: SAMPLE_IMAGE, title: "Normal", variant: variant, titlePosition: titlePosition })),
|
|
89
|
+
React.createElement("div", { className: "s-relative s-h-32 s-w-32" },
|
|
90
|
+
React.createElement(ImagePreview, { imgSrc: SAMPLE_IMAGE, title: "Loading", variant: variant, titlePosition: titlePosition, isLoading: true })),
|
|
91
|
+
React.createElement("div", { className: "s-relative s-h-32 s-w-32" },
|
|
92
|
+
React.createElement(ImagePreview, { imgSrc: SAMPLE_IMAGE, title: "With Close", variant: variant, titlePosition: titlePosition, onClose: () => { } })))) : (React.createElement(React.Fragment, null,
|
|
93
|
+
React.createElement("div", { className: "s-w-32" },
|
|
94
|
+
React.createElement(ImagePreview, { imgSrc: SAMPLE_IMAGE, title: "Normal", variant: variant, titlePosition: titlePosition })),
|
|
95
|
+
React.createElement("div", { className: "s-w-32" },
|
|
96
|
+
React.createElement(ImagePreview, { imgSrc: SAMPLE_IMAGE, title: "Loading", variant: variant, titlePosition: titlePosition, isLoading: true })),
|
|
97
|
+
React.createElement("div", { className: "s-w-32" },
|
|
98
|
+
React.createElement(ImagePreview, { imgSrc: SAMPLE_IMAGE, title: "With Close", variant: variant, titlePosition: titlePosition, onClose: () => { } })))))))))));
|
|
99
|
+
export const Gallery = {
|
|
100
|
+
args: {
|
|
101
|
+
imgSrc: SAMPLE_IMAGE,
|
|
102
|
+
},
|
|
103
|
+
render: () => (React.createElement("div", { className: "s-flex s-flex-col s-gap-4" },
|
|
104
|
+
React.createElement(ImagePreviewByVariant, { variant: "square" }),
|
|
105
|
+
React.createElement(ImagePreviewByVariant, { variant: "absolute" }))),
|
|
106
|
+
};
|
|
107
|
+
//# sourceMappingURL=ImagePreview.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImagePreview.stories.js","sourceRoot":"","sources":["../../../src/stories/ImagePreview.stories.tsx"],"names":[],"mappings":"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"}
|
|
@@ -17,37 +17,28 @@
|
|
|
17
17
|
width: 100%;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
.allotment-module_splitView__L-yRc
|
|
21
|
-
> .allotment-module_sashContainer__fzwJF
|
|
22
|
-
> .allotment-module_sash__QA-2t {
|
|
20
|
+
.allotment-module_splitView__L-yRc > .allotment-module_sashContainer__fzwJF > .allotment-module_sash__QA-2t {
|
|
23
21
|
pointer-events: auto;
|
|
24
22
|
}
|
|
25
23
|
|
|
26
|
-
.allotment-module_splitView__L-yRc
|
|
27
|
-
> .allotment-module_splitViewContainer__rQnVa {
|
|
24
|
+
.allotment-module_splitView__L-yRc > .allotment-module_splitViewContainer__rQnVa {
|
|
28
25
|
height: 100%;
|
|
29
26
|
position: relative;
|
|
30
27
|
white-space: nowrap;
|
|
31
28
|
width: 100%;
|
|
32
29
|
}
|
|
33
30
|
|
|
34
|
-
.allotment-module_splitView__L-yRc
|
|
35
|
-
> .allotment-module_splitViewContainer__rQnVa
|
|
36
|
-
> .allotment-module_splitViewView__MGZ6O {
|
|
31
|
+
.allotment-module_splitView__L-yRc > .allotment-module_splitViewContainer__rQnVa > .allotment-module_splitViewView__MGZ6O {
|
|
37
32
|
overflow: hidden;
|
|
38
33
|
position: absolute;
|
|
39
34
|
white-space: initial;
|
|
40
35
|
}
|
|
41
36
|
|
|
42
|
-
.allotment-module_splitView__L-yRc.allotment-module_vertical__WSwwa
|
|
43
|
-
> .allotment-module_splitViewContainer__rQnVa
|
|
44
|
-
> .allotment-module_splitViewView__MGZ6O {
|
|
37
|
+
.allotment-module_splitView__L-yRc.allotment-module_vertical__WSwwa > .allotment-module_splitViewContainer__rQnVa > .allotment-module_splitViewView__MGZ6O {
|
|
45
38
|
width: 100%;
|
|
46
39
|
}
|
|
47
40
|
|
|
48
|
-
.allotment-module_splitView__L-yRc.allotment-module_horizontal__7doS8
|
|
49
|
-
> .allotment-module_splitViewContainer__rQnVa
|
|
50
|
-
> .allotment-module_splitViewView__MGZ6O {
|
|
41
|
+
.allotment-module_splitView__L-yRc.allotment-module_horizontal__7doS8 > .allotment-module_splitViewContainer__rQnVa > .allotment-module_splitViewView__MGZ6O {
|
|
51
42
|
height: 100%;
|
|
52
43
|
}
|
|
53
44
|
|
|
@@ -138,8 +129,7 @@
|
|
|
138
129
|
height: var(--sash-size);
|
|
139
130
|
}
|
|
140
131
|
|
|
141
|
-
.sash-module_sash__K-9lB:not(.sash-module_disabled__Hm-wx)
|
|
142
|
-
> .sash-module_orthogonal-drag-handle__Yii2- {
|
|
132
|
+
.sash-module_sash__K-9lB:not(.sash-module_disabled__Hm-wx) > .sash-module_orthogonal-drag-handle__Yii2- {
|
|
143
133
|
content: " ";
|
|
144
134
|
height: calc(var(--sash-size) * 2);
|
|
145
135
|
width: calc(var(--sash-size) * 2);
|
|
@@ -149,48 +139,36 @@
|
|
|
149
139
|
position: absolute;
|
|
150
140
|
}
|
|
151
141
|
|
|
152
|
-
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-north__f7Noe:not(
|
|
153
|
-
.sash-module_disabled__Hm-wx
|
|
154
|
-
)
|
|
142
|
+
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-north__f7Noe:not(.sash-module_disabled__Hm-wx)
|
|
155
143
|
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_start__uZEDk,
|
|
156
|
-
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-south__6ZrFC:not(
|
|
157
|
-
.sash-module_disabled__Hm-wx
|
|
158
|
-
)
|
|
144
|
+
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-south__6ZrFC:not(.sash-module_disabled__Hm-wx)
|
|
159
145
|
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_end__0TP-R {
|
|
160
146
|
cursor: nwse-resize;
|
|
161
147
|
}
|
|
162
148
|
|
|
163
|
-
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-north__f7Noe:not(
|
|
164
|
-
.sash-module_disabled__Hm-wx
|
|
165
|
-
)
|
|
149
|
+
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-north__f7Noe:not(.sash-module_disabled__Hm-wx)
|
|
166
150
|
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_end__0TP-R,
|
|
167
|
-
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-south__6ZrFC:not(
|
|
168
|
-
.sash-module_disabled__Hm-wx
|
|
169
|
-
)
|
|
151
|
+
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw.sash-module_orthogonal-edge-south__6ZrFC:not(.sash-module_disabled__Hm-wx)
|
|
170
152
|
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_start__uZEDk {
|
|
171
153
|
cursor: nesw-resize;
|
|
172
154
|
}
|
|
173
155
|
|
|
174
|
-
.sash-module_sash__K-9lB.sash-module_vertical__pB-rs
|
|
175
|
-
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_start__uZEDk {
|
|
156
|
+
.sash-module_sash__K-9lB.sash-module_vertical__pB-rs > .sash-module_orthogonal-drag-handle__Yii2-.sash-module_start__uZEDk {
|
|
176
157
|
left: calc(var(--sash-size) * -0.5);
|
|
177
158
|
top: calc(var(--sash-size) * -1);
|
|
178
159
|
}
|
|
179
160
|
|
|
180
|
-
.sash-module_sash__K-9lB.sash-module_vertical__pB-rs
|
|
181
|
-
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_end__0TP-R {
|
|
161
|
+
.sash-module_sash__K-9lB.sash-module_vertical__pB-rs > .sash-module_orthogonal-drag-handle__Yii2-.sash-module_end__0TP-R {
|
|
182
162
|
left: calc(var(--sash-size) * -0.5);
|
|
183
163
|
bottom: calc(var(--sash-size) * -1);
|
|
184
164
|
}
|
|
185
165
|
|
|
186
|
-
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw
|
|
187
|
-
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_start__uZEDk {
|
|
166
|
+
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw > .sash-module_orthogonal-drag-handle__Yii2-.sash-module_start__uZEDk {
|
|
188
167
|
top: calc(var(--sash-size) * -0.5);
|
|
189
168
|
left: calc(var(--sash-size) * -1);
|
|
190
169
|
}
|
|
191
170
|
|
|
192
|
-
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw
|
|
193
|
-
> .sash-module_orthogonal-drag-handle__Yii2-.sash-module_end__0TP-R {
|
|
171
|
+
.sash-module_sash__K-9lB.sash-module_horizontal__kFbiw > .sash-module_orthogonal-drag-handle__Yii2-.sash-module_end__0TP-R {
|
|
194
172
|
top: calc(var(--sash-size) * -0.5);
|
|
195
173
|
right: calc(var(--sash-size) * -1);
|
|
196
174
|
}
|
package/dist/sparkle.css
CHANGED
|
@@ -1085,6 +1085,10 @@ select {
|
|
|
1085
1085
|
top: 0.75rem;
|
|
1086
1086
|
}
|
|
1087
1087
|
|
|
1088
|
+
.s-top-4 {
|
|
1089
|
+
top: 1rem;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1088
1092
|
.s-top-\[50\%\] {
|
|
1089
1093
|
top: 50%;
|
|
1090
1094
|
}
|
|
@@ -1402,6 +1406,10 @@ select {
|
|
|
1402
1406
|
height: 0.875rem;
|
|
1403
1407
|
}
|
|
1404
1408
|
|
|
1409
|
+
.s-h-32 {
|
|
1410
|
+
height: 8rem;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1405
1413
|
.s-h-36 {
|
|
1406
1414
|
height: 9rem;
|
|
1407
1415
|
}
|
|
@@ -1889,10 +1897,6 @@ select {
|
|
|
1889
1897
|
max-width: 42rem;
|
|
1890
1898
|
}
|
|
1891
1899
|
|
|
1892
|
-
.s-max-w-3xl {
|
|
1893
|
-
max-width: 48rem;
|
|
1894
|
-
}
|
|
1895
|
-
|
|
1896
1900
|
.s-max-w-44 {
|
|
1897
1901
|
max-width: 11rem;
|
|
1898
1902
|
}
|
|
@@ -2614,6 +2618,10 @@ select {
|
|
|
2614
2618
|
border-width: 1px;
|
|
2615
2619
|
}
|
|
2616
2620
|
|
|
2621
|
+
.s-border-0 {
|
|
2622
|
+
border-width: 0px;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2617
2625
|
.s-border-2 {
|
|
2618
2626
|
border-width: 2px;
|
|
2619
2627
|
}
|
|
@@ -3623,6 +3631,10 @@ select {
|
|
|
3623
3631
|
background-color: rgb(238 238 239 / 0);
|
|
3624
3632
|
}
|
|
3625
3633
|
|
|
3634
|
+
.s-bg-primary-100\/60 {
|
|
3635
|
+
background-color: rgb(238 238 239 / 0.6);
|
|
3636
|
+
}
|
|
3637
|
+
|
|
3626
3638
|
.s-bg-primary-100\/80 {
|
|
3627
3639
|
background-color: rgb(238 238 239 / 0.8);
|
|
3628
3640
|
}
|
|
@@ -4436,6 +4448,10 @@ select {
|
|
|
4436
4448
|
padding-bottom: 1rem;
|
|
4437
4449
|
}
|
|
4438
4450
|
|
|
4451
|
+
.s-pb-7 {
|
|
4452
|
+
padding-bottom: 1.75rem;
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4439
4455
|
.s-pb-8 {
|
|
4440
4456
|
padding-bottom: 2rem;
|
|
4441
4457
|
}
|
|
@@ -4544,10 +4560,6 @@ select {
|
|
|
4544
4560
|
padding-top: 1rem;
|
|
4545
4561
|
}
|
|
4546
4562
|
|
|
4547
|
-
.s-pt-6 {
|
|
4548
|
-
padding-top: 1.5rem;
|
|
4549
|
-
}
|
|
4550
|
-
|
|
4551
4563
|
.s-pt-7 {
|
|
4552
4564
|
padding-top: 1.75rem;
|
|
4553
4565
|
}
|
|
@@ -4710,10 +4722,6 @@ select {
|
|
|
4710
4722
|
line-height: 1.25;
|
|
4711
4723
|
}
|
|
4712
4724
|
|
|
4713
|
-
.s-tracking-wide {
|
|
4714
|
-
letter-spacing: 0.025em;
|
|
4715
|
-
}
|
|
4716
|
-
|
|
4717
4725
|
.s-tracking-widest {
|
|
4718
4726
|
letter-spacing: 0.1em;
|
|
4719
4727
|
}
|
|
@@ -5558,11 +5566,6 @@ select {
|
|
|
5558
5566
|
filter: blur(calc(2rem));
|
|
5559
5567
|
}
|
|
5560
5568
|
|
|
5561
|
-
.\[mask-image\:radial-gradient\(white\2c black\)\] {
|
|
5562
|
-
-webkit-mask-image: radial-gradient(white,black);
|
|
5563
|
-
mask-image: radial-gradient(white,black);
|
|
5564
|
-
}
|
|
5565
|
-
|
|
5566
5569
|
@keyframes bgblink {
|
|
5567
5570
|
0%,
|
|
5568
5571
|
100% {
|
|
@@ -6266,6 +6269,14 @@ select {
|
|
|
6266
6269
|
}
|
|
6267
6270
|
}
|
|
6268
6271
|
|
|
6272
|
+
.s-group\/menu-item:focus-within .group-focus-within\/menu-item\:s-hidden {
|
|
6273
|
+
display: none;
|
|
6274
|
+
}
|
|
6275
|
+
|
|
6276
|
+
.s-group\/menu-item:focus-within .group-focus-within\/menu-item\:s-pr-8 {
|
|
6277
|
+
padding-right: 2rem;
|
|
6278
|
+
}
|
|
6279
|
+
|
|
6269
6280
|
.s-group\/card:focus-within .group-focus-within\/card\:s-opacity-100 {
|
|
6270
6281
|
opacity: 1;
|
|
6271
6282
|
}
|
|
@@ -6283,10 +6294,6 @@ select {
|
|
|
6283
6294
|
display: none;
|
|
6284
6295
|
}
|
|
6285
6296
|
|
|
6286
|
-
.s-group:hover .group-hover\:s-bg-primary-200\/70 {
|
|
6287
|
-
background-color: rgb(211 213 217 / 0.7);
|
|
6288
|
-
}
|
|
6289
|
-
|
|
6290
6297
|
.s-group\/menu-item:hover .group-hover\/menu-item\:s-pr-8 {
|
|
6291
6298
|
padding-right: 2rem;
|
|
6292
6299
|
}
|
|
@@ -6304,11 +6311,11 @@ select {
|
|
|
6304
6311
|
opacity: 1;
|
|
6305
6312
|
}
|
|
6306
6313
|
|
|
6307
|
-
.s-group\/
|
|
6314
|
+
.s-group\/grid-image:hover .group-hover\/grid-image\:s-opacity-100 {
|
|
6308
6315
|
opacity: 1;
|
|
6309
6316
|
}
|
|
6310
6317
|
|
|
6311
|
-
.s-group\/
|
|
6318
|
+
.s-group\/menu-item:hover .group-hover\/menu-item\:s-opacity-100 {
|
|
6312
6319
|
opacity: 1;
|
|
6313
6320
|
}
|
|
6314
6321
|
|
|
@@ -6320,6 +6327,11 @@ select {
|
|
|
6320
6327
|
opacity: 1;
|
|
6321
6328
|
}
|
|
6322
6329
|
|
|
6330
|
+
.s-group\/grid-image:hover .group-hover\/grid-image\:s-blur-sm {
|
|
6331
|
+
--tw-blur: blur(4px);
|
|
6332
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
6333
|
+
}
|
|
6334
|
+
|
|
6323
6335
|
.s-group:hover .group-hover\:s-brightness-110 {
|
|
6324
6336
|
--tw-brightness: brightness(1.1);
|
|
6325
6337
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
@@ -6328,15 +6340,6 @@ select {
|
|
|
6328
6340
|
.s-group:hover .group-hover\:s-filter {
|
|
6329
6341
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
6330
6342
|
}
|
|
6331
|
-
|
|
6332
|
-
.s-group:hover .group-hover\:s-backdrop-blur-none {
|
|
6333
|
-
--tw-backdrop-blur: ;
|
|
6334
|
-
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
6335
|
-
}
|
|
6336
|
-
}
|
|
6337
|
-
|
|
6338
|
-
.s-group:active .group-active\:s-bg-primary-100\/60 {
|
|
6339
|
-
background-color: rgb(238 238 239 / 0.6);
|
|
6340
6343
|
}
|
|
6341
6344
|
|
|
6342
6345
|
.s-group:active .group-active\:s-brightness-90 {
|
|
@@ -6622,10 +6625,6 @@ select {
|
|
|
6622
6625
|
padding-right: 2rem;
|
|
6623
6626
|
}
|
|
6624
6627
|
|
|
6625
|
-
.s-group\/menu-item[data-selected="true"] .group-data-\[selected\=true\]\/menu-item\:s-opacity-100 {
|
|
6626
|
-
opacity: 1;
|
|
6627
|
-
}
|
|
6628
|
-
|
|
6629
6628
|
@container (min-width: 24rem) {
|
|
6630
6629
|
.\@xxs\:s-grid-cols-2 {
|
|
6631
6630
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -7501,6 +7500,10 @@ select {
|
|
|
7501
7500
|
background-color: rgb(28 34 45 / var(--tw-bg-opacity, 1));
|
|
7502
7501
|
}
|
|
7503
7502
|
|
|
7503
|
+
.dark\:s-bg-muted-background-night\/50:is(.s-dark *) {
|
|
7504
|
+
background-color: rgb(28 34 45 / 0.5);
|
|
7505
|
+
}
|
|
7506
|
+
|
|
7504
7507
|
.dark\:s-bg-muted-background-night\/75:is(.s-dark *) {
|
|
7505
7508
|
background-color: rgb(28 34 45 / 0.75);
|
|
7506
7509
|
}
|
|
@@ -7649,6 +7652,10 @@ select {
|
|
|
7649
7652
|
background-color: rgb(28 34 45 / 0);
|
|
7650
7653
|
}
|
|
7651
7654
|
|
|
7655
|
+
.dark\:s-bg-primary-100-night\/60:is(.s-dark *) {
|
|
7656
|
+
background-color: rgb(28 34 45 / 0.6);
|
|
7657
|
+
}
|
|
7658
|
+
|
|
7652
7659
|
.dark\:s-bg-primary-100-night\/80:is(.s-dark *) {
|
|
7653
7660
|
background-color: rgb(28 34 45 / 0.8);
|
|
7654
7661
|
}
|
|
@@ -8751,6 +8758,11 @@ select {
|
|
|
8751
8758
|
background-color: rgb(8 80 146 / var(--tw-bg-opacity, 1));
|
|
8752
8759
|
}
|
|
8753
8760
|
|
|
8761
|
+
.hover\:dark\:s-bg-primary-100-night:is(.s-dark *):hover {
|
|
8762
|
+
--tw-bg-opacity: 1;
|
|
8763
|
+
background-color: rgb(28 34 45 / var(--tw-bg-opacity, 1));
|
|
8764
|
+
}
|
|
8765
|
+
|
|
8754
8766
|
.dark\:hover\:s-text-blue-700-night:hover:is(.s-dark *) {
|
|
8755
8767
|
--tw-text-opacity: 1;
|
|
8756
8768
|
color: rgb(122 198 255 / var(--tw-text-opacity, 1));
|
|
@@ -8900,6 +8912,11 @@ select {
|
|
|
8900
8912
|
--tw-ring-offset-width: 1px;
|
|
8901
8913
|
}
|
|
8902
8914
|
|
|
8915
|
+
.active\:dark\:s-bg-primary-150-night:is(.s-dark *):active {
|
|
8916
|
+
--tw-bg-opacity: 1;
|
|
8917
|
+
background-color: rgb(28 34 45 / var(--tw-bg-opacity, 1));
|
|
8918
|
+
}
|
|
8919
|
+
|
|
8903
8920
|
.dark\:active\:s-bg-primary-100-night:active:is(.s-dark *) {
|
|
8904
8921
|
--tw-bg-opacity: 1;
|
|
8905
8922
|
background-color: rgb(28 34 45 / var(--tw-bg-opacity, 1));
|
|
@@ -9079,20 +9096,12 @@ select {
|
|
|
9079
9096
|
color: rgb(123 129 141 / var(--tw-text-opacity, 1));
|
|
9080
9097
|
}
|
|
9081
9098
|
|
|
9082
|
-
.s-group:hover .dark\:group-hover\:s-bg-primary-200-night\/70:is(.s-dark *) {
|
|
9083
|
-
background-color: rgb(42 50 65 / 0.7);
|
|
9084
|
-
}
|
|
9085
|
-
|
|
9086
9099
|
.s-group\/col:hover .dark\:group-hover\/col\:s-text-highlight-500-night:is(.s-dark *) {
|
|
9087
9100
|
--tw-text-opacity: 1;
|
|
9088
9101
|
color: rgb(28 145 255 / var(--tw-text-opacity, 1));
|
|
9089
9102
|
}
|
|
9090
9103
|
}
|
|
9091
9104
|
|
|
9092
|
-
.s-group:active .dark\:group-active\:s-bg-primary-100-night\/60:is(.s-dark *) {
|
|
9093
|
-
background-color: rgb(28 34 45 / 0.6);
|
|
9094
|
-
}
|
|
9095
|
-
|
|
9096
9105
|
.dark\:data-\[state\=checked\]\:s-bg-primary-night[data-state="checked"]:is(.s-dark *) {
|
|
9097
9106
|
--tw-bg-opacity: 1;
|
|
9098
9107
|
background-color: rgb(211 213 217 / var(--tw-bg-opacity, 1));
|
package/package.json
CHANGED