@libxai/board 0.17.16 → 0.17.18
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.cjs +21 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +21 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1010,8 +1010,10 @@ interface CardDetailModalV2Props {
|
|
|
1010
1010
|
onUploadCoverImage?: (file: File) => Promise<string>;
|
|
1011
1011
|
/** Unsplash API key for cover images (optional) */
|
|
1012
1012
|
unsplashAccessKey?: string;
|
|
1013
|
+
/** Theme for the modal (dark, light, neutral). If not provided, uses KanbanThemeContext or defaults to 'dark' */
|
|
1014
|
+
theme?: 'dark' | 'light' | 'neutral';
|
|
1013
1015
|
}
|
|
1014
|
-
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, onUploadCoverImage, unsplashAccessKey, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1016
|
+
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, onUploadCoverImage, unsplashAccessKey, theme, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1015
1017
|
|
|
1016
1018
|
interface AttachmentUploaderProps {
|
|
1017
1019
|
/** Card ID for attachments */
|
package/dist/index.d.ts
CHANGED
|
@@ -1010,8 +1010,10 @@ interface CardDetailModalV2Props {
|
|
|
1010
1010
|
onUploadCoverImage?: (file: File) => Promise<string>;
|
|
1011
1011
|
/** Unsplash API key for cover images (optional) */
|
|
1012
1012
|
unsplashAccessKey?: string;
|
|
1013
|
+
/** Theme for the modal (dark, light, neutral). If not provided, uses KanbanThemeContext or defaults to 'dark' */
|
|
1014
|
+
theme?: 'dark' | 'light' | 'neutral';
|
|
1013
1015
|
}
|
|
1014
|
-
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, onUploadCoverImage, unsplashAccessKey, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1016
|
+
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, onUploadCoverImage, unsplashAccessKey, theme, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1015
1017
|
|
|
1016
1018
|
interface AttachmentUploaderProps {
|
|
1017
1019
|
/** Card ID for attachments */
|