@photoroom/ui 0.1.61 → 0.1.62
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/components/content/BatchTile/BatchCanvasMenuContent.d.ts +8 -1
- package/components/content/BatchTile/BatchCanvasMenuContent.d.ts.map +1 -1
- package/components/content/BatchTile/BatchItemMenuContent.d.ts +19 -2
- package/components/content/BatchTile/BatchItemMenuContent.d.ts.map +1 -1
- package/components/content/BatchTile/BatchTile.d.ts +3 -3
- package/components/content/BatchTile/BatchTile.d.ts.map +1 -1
- package/components/content/BatchTile/index.d.ts +2 -1
- package/components/content/BatchTile/index.d.ts.map +1 -1
- package/components/content/BoardSection/BatchSectionMenuContent.d.ts +8 -1
- package/components/content/BoardSection/BatchSectionMenuContent.d.ts.map +1 -1
- package/components/content/BoardSection/index.d.ts +1 -0
- package/components/content/BoardSection/index.d.ts.map +1 -1
- package/components/content/LightPromoBanner/LightPromoBanner.d.ts +3 -1
- package/components/content/LightPromoBanner/LightPromoBanner.d.ts.map +1 -1
- package/components/content/SectionSpace/SectionSpace.d.ts +2 -2
- package/components/content/SectionSpace/SectionSpace.d.ts.map +1 -1
- package/index.mjs +8381 -8385
- package/package.json +2 -6
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import type { ShortcutKey } from "./BatchItemMenuContent";
|
|
2
|
+
export type BatchCanvasMenuContentLabels = Readonly<{
|
|
3
|
+
paste: string;
|
|
4
|
+
selectAll: string;
|
|
5
|
+
zoomIn: string;
|
|
6
|
+
zoomOut: string;
|
|
7
|
+
}>;
|
|
2
8
|
type BatchCanvasMenuContentProps = Readonly<{
|
|
9
|
+
labels: BatchCanvasMenuContentLabels;
|
|
3
10
|
onPaste?: () => void;
|
|
4
11
|
onSelectAll?: () => void;
|
|
5
12
|
onZoomIn?: () => void;
|
|
@@ -9,6 +16,6 @@ type BatchCanvasMenuContentProps = Readonly<{
|
|
|
9
16
|
isZoomOutDisabled?: boolean;
|
|
10
17
|
formatShortcut?: (key: ShortcutKey) => string;
|
|
11
18
|
}>;
|
|
12
|
-
export declare const BatchCanvasMenuContent: ({ onPaste, onSelectAll, onZoomIn, onZoomOut, isSelectAllDisabled, isZoomInDisabled, isZoomOutDisabled, formatShortcut, }: BatchCanvasMenuContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare const BatchCanvasMenuContent: ({ labels, onPaste, onSelectAll, onZoomIn, onZoomOut, isSelectAllDisabled, isZoomInDisabled, isZoomOutDisabled, formatShortcut, }: BatchCanvasMenuContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
20
|
export {};
|
|
14
21
|
//# sourceMappingURL=BatchCanvasMenuContent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BatchCanvasMenuContent.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/BatchCanvasMenuContent.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BatchCanvasMenuContent.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/BatchCanvasMenuContent.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1D,MAAM,MAAM,4BAA4B,GAAG,QAAQ,CAAC;IAClD,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC,CAAC;AAEH,KAAK,2BAA2B,GAAG,QAAQ,CAAC;IAC1C,MAAM,EAAE,4BAA4B,CAAC;IACrC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,cAAc,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,MAAM,CAAC;CAC/C,CAAC,CAAC;AAEH,eAAO,MAAM,sBAAsB,GAAI,kIAUpC,2BAA2B,4CAuD7B,CAAC"}
|
|
@@ -1,8 +1,26 @@
|
|
|
1
1
|
import { BatchItemStatusView } from "@photoroom-engine/web";
|
|
2
2
|
export type ShortcutKey = "selectAll" | "duplicate" | "delete" | "copy" | "paste" | "copyEdits" | "pasteEdits" | "zoomIn" | "zoomOut" | "rename" | "sectionMoveUp" | "sectionMoveDown";
|
|
3
|
+
export type BatchItemMenuContentLabels = Readonly<{
|
|
4
|
+
edit: string;
|
|
5
|
+
copy: string;
|
|
6
|
+
paste: string;
|
|
7
|
+
duplicate: string;
|
|
8
|
+
delete: string;
|
|
9
|
+
download: string;
|
|
10
|
+
selectAll: string;
|
|
11
|
+
copyPasteEdits: string;
|
|
12
|
+
copyEdits: string;
|
|
13
|
+
pasteEdits: string;
|
|
14
|
+
saveAsTemplate: string;
|
|
15
|
+
createNewSection: string;
|
|
16
|
+
duplicateSelected: (count: number) => string;
|
|
17
|
+
deleteSelected: (count: number) => string;
|
|
18
|
+
downloadSelected: (count: number) => string;
|
|
19
|
+
}>;
|
|
3
20
|
type BatchItemMenuContentProps<TId extends string = string> = Readonly<{
|
|
4
21
|
as: "context-menu" | "dropdown-menu";
|
|
5
22
|
id: TId;
|
|
23
|
+
labels: BatchItemMenuContentLabels;
|
|
6
24
|
status?: BatchItemStatusView;
|
|
7
25
|
onEdit: (id: TId) => void;
|
|
8
26
|
onDelete: (id: TId) => void;
|
|
@@ -15,7 +33,6 @@ type BatchItemMenuContentProps<TId extends string = string> = Readonly<{
|
|
|
15
33
|
onDownload?: () => void;
|
|
16
34
|
isSelectAllDisabled?: boolean;
|
|
17
35
|
formatShortcut?: (key: ShortcutKey) => string;
|
|
18
|
-
downloadLabel?: string;
|
|
19
36
|
onCopy?: () => void;
|
|
20
37
|
onPaste?: () => void;
|
|
21
38
|
onCopyEdits?: (id: TId) => void;
|
|
@@ -23,6 +40,6 @@ type BatchItemMenuContentProps<TId extends string = string> = Readonly<{
|
|
|
23
40
|
isPasteEditsDisabled?: boolean;
|
|
24
41
|
onMoveToNewSection?: () => void;
|
|
25
42
|
}>;
|
|
26
|
-
export declare const BatchItemMenuContent: <TId extends string = string>({ as, id, status, onEdit, onDelete, onDeleteAll, onDuplicate, onDuplicateAll, onSaveAsTemplate, selectionCount, onSelectAll, onDownload, isSelectAllDisabled, formatShortcut,
|
|
43
|
+
export declare const BatchItemMenuContent: <TId extends string = string>({ as, id, labels, status, onEdit, onDelete, onDeleteAll, onDuplicate, onDuplicateAll, onSaveAsTemplate, selectionCount, onSelectAll, onDownload, isSelectAllDisabled, formatShortcut, onCopy, onPaste, onCopyEdits, onPasteEdits, isPasteEditsDisabled, onMoveToNewSection, }: BatchItemMenuContentProps<TId>) => import("react/jsx-runtime").JSX.Element;
|
|
27
44
|
export {};
|
|
28
45
|
//# sourceMappingURL=BatchItemMenuContent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BatchItemMenuContent.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/BatchItemMenuContent.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"BatchItemMenuContent.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/BatchItemMenuContent.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAc5D,MAAM,MAAM,WAAW,GACnB,WAAW,GACX,WAAW,GACX,QAAQ,GACR,MAAM,GACN,OAAO,GACP,WAAW,GACX,YAAY,GACZ,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,eAAe,GACf,iBAAiB,CAAC;AAEtB,MAAM,MAAM,0BAA0B,GAAG,QAAQ,CAAC;IAChD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IAC7C,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IAC1C,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;CAC7C,CAAC,CAAC;AAMH,KAAK,yBAAyB,CAAC,GAAG,SAAS,MAAM,GAAG,MAAM,IAAI,QAAQ,CAAC;IACrE,EAAE,EAAE,cAAc,GAAG,eAAe,CAAC;IACrC,EAAE,EAAE,GAAG,CAAC;IACR,MAAM,EAAE,0BAA0B,CAAC;IACnC,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,MAAM,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC1B,QAAQ,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC5B,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,WAAW,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/B,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,gBAAgB,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IACrC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,cAAc,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,MAAM,CAAC;IAC9C,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,WAAW,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAChC,YAAY,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAClC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAC;CACjC,CAAC,CAAC;AAEH,eAAO,MAAM,oBAAoB,GAAI,GAAG,SAAS,MAAM,GAAG,MAAM,EAAE,+QAsB/D,yBAAyB,CAAC,GAAG,CAAC,4CAgPhC,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BatchItemStatusView } from "@photoroom-engine/web";
|
|
2
2
|
import { type VariantProps } from "class-variance-authority";
|
|
3
|
-
import { type ShortcutKey } from "./BatchItemMenuContent";
|
|
3
|
+
import { type BatchItemMenuContentLabels, type ShortcutKey } from "./BatchItemMenuContent";
|
|
4
4
|
declare const containerCva: (props?: ({
|
|
5
5
|
isSelected?: boolean | null | undefined;
|
|
6
6
|
autoRatio?: boolean | null | undefined;
|
|
@@ -25,7 +25,7 @@ export type BatchTileProps<TId extends string = string> = ContainerVariants & {
|
|
|
25
25
|
onDownload?: () => void;
|
|
26
26
|
isSelectAllDisabled?: boolean;
|
|
27
27
|
formatShortcut?: (key: ShortcutKey) => string;
|
|
28
|
-
|
|
28
|
+
menuLabels: BatchItemMenuContentLabels;
|
|
29
29
|
onCopy?: () => void;
|
|
30
30
|
onPaste?: () => void;
|
|
31
31
|
onCopyEdits?: (id: TId) => void;
|
|
@@ -36,7 +36,7 @@ export type BatchTileProps<TId extends string = string> = ContainerVariants & {
|
|
|
36
36
|
visualRef?: React.Ref<HTMLDivElement>;
|
|
37
37
|
tileOverlay?: React.ReactElement;
|
|
38
38
|
} & Omit<React.ComponentPropsWithoutRef<"div">, "onClick" | "onSelect">;
|
|
39
|
-
declare const BatchTileInner: <TId extends string = string>({ id, fileName, name, status, isLoading, hasError, isSelected, autoRatio, isDragSelecting, onSelect, onClick, onDelete, onDuplicate, onRename, onSaveAsTemplate, onRefresh, onSelectAll, onDownload, isSelectAllDisabled, formatShortcut,
|
|
39
|
+
declare const BatchTileInner: <TId extends string = string>({ id, fileName, name, status, isLoading, hasError, isSelected, autoRatio, isDragSelecting, onSelect, onClick, onDelete, onDuplicate, onRename, onSaveAsTemplate, onRefresh, onSelectAll, onDownload, isSelectAllDisabled, formatShortcut, menuLabels, onCopy, onPaste, onCopyEdits, onPasteEdits, isPasteEditsDisabled, hideOverlayActions, children, visualRef, tileOverlay, className, style, ...restProps }: BatchTileProps<TId>, ref: React.ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
|
|
40
40
|
export declare const BatchTile: (<TId extends string = string>(props: BatchTileProps<TId> & {
|
|
41
41
|
ref?: React.ForwardedRef<HTMLDivElement>;
|
|
42
42
|
}) => ReturnType<typeof BatchTileInner>) & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BatchTile.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/BatchTile.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAOlE,OAAO,
|
|
1
|
+
{"version":3,"file":"BatchTile.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/BatchTile.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAOlE,OAAO,EAEL,KAAK,0BAA0B,EAC/B,KAAK,WAAW,EACjB,MAAM,wBAAwB,CAAC;AAEhC,QAAA,MAAM,YAAY;;;;8EA6BjB,CAAC;AAEF,KAAK,iBAAiB,GAAG,YAAY,CAAC,OAAO,YAAY,CAAC,CAAC;AAE3D,MAAM,MAAM,cAAc,CAAC,GAAG,SAAS,MAAM,GAAG,MAAM,IAAI,iBAAiB,GAAG;IAC5E,EAAE,EAAE,GAAG,CAAC;IACR,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAAC;IACjD,OAAO,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC3B,QAAQ,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC5B,WAAW,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/B,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,gBAAgB,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IACrC,SAAS,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,cAAc,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,MAAM,CAAC;IAC9C,UAAU,EAAE,0BAA0B,CAAC;IACvC,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,WAAW,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAChC,YAAY,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAClC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,QAAQ,EAAE,KAAK,CAAC,YAAY,CAAC;IAC7B,SAAS,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACtC,WAAW,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;CAClC,GAAG,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,SAAS,GAAG,UAAU,CAAC,CAAC;AAExE,QAAA,MAAM,cAAc,GAAI,GAAG,SAAS,MAAM,GAAG,MAAM,EACjD,gZAkCG,cAAc,CAAC,GAAG,CAAC,EACtB,KAAK,KAAK,CAAC,YAAY,CAAC,cAAc,CAAC,4CA8PxC,CAAC;AAGF,eAAO,MAAM,SAAS,EAAiC,CAAC,CAAC,GAAG,SAAS,MAAM,GAAG,MAAM,EAClF,KAAK,EAAE,cAAc,CAAC,GAAG,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,cAAc,CAAC,CAAA;CAAE,KACtE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC,GAAG;IAAE,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC"}
|
|
@@ -2,5 +2,6 @@ export { BatchTile } from "./BatchTile";
|
|
|
2
2
|
export type { BatchTileProps } from "./BatchTile";
|
|
3
3
|
export { BatchItemMenuContent } from "./BatchItemMenuContent";
|
|
4
4
|
export { BatchCanvasMenuContent } from "./BatchCanvasMenuContent";
|
|
5
|
-
export type { ShortcutKey } from "./BatchItemMenuContent";
|
|
5
|
+
export type { BatchItemMenuContentLabels, ShortcutKey } from "./BatchItemMenuContent";
|
|
6
|
+
export type { BatchCanvasMenuContentLabels } from "./BatchCanvasMenuContent";
|
|
6
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,YAAY,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BatchTile/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,YAAY,EAAE,0BAA0B,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACtF,YAAY,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { type ShortcutKey } from "../BatchTile/BatchItemMenuContent";
|
|
2
|
+
export type BatchSectionMenuContentLabels = Readonly<{
|
|
3
|
+
rename: string;
|
|
4
|
+
moveUp: string;
|
|
5
|
+
moveDown: string;
|
|
6
|
+
delete: string;
|
|
7
|
+
}>;
|
|
2
8
|
type BatchSectionMenuContentProps = Readonly<{
|
|
9
|
+
labels: BatchSectionMenuContentLabels;
|
|
3
10
|
onRename: () => void;
|
|
4
11
|
onMoveUp: () => void;
|
|
5
12
|
onMoveDown: () => void;
|
|
@@ -8,6 +15,6 @@ type BatchSectionMenuContentProps = Readonly<{
|
|
|
8
15
|
isMoveDownDisabled: boolean;
|
|
9
16
|
formatShortcut?: (key: ShortcutKey) => string;
|
|
10
17
|
}>;
|
|
11
|
-
export declare const BatchSectionMenuContent: ({ onRename, onMoveUp, onMoveDown, onDelete, isMoveUpDisabled, isMoveDownDisabled, formatShortcut, }: BatchSectionMenuContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare const BatchSectionMenuContent: ({ labels, onRename, onMoveUp, onMoveDown, onDelete, isMoveUpDisabled, isMoveDownDisabled, formatShortcut, }: BatchSectionMenuContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
19
|
export {};
|
|
13
20
|
//# sourceMappingURL=BatchSectionMenuContent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BatchSectionMenuContent.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BoardSection/BatchSectionMenuContent.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BatchSectionMenuContent.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BoardSection/BatchSectionMenuContent.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAErE,MAAM,MAAM,6BAA6B,GAAG,QAAQ,CAAC;IACnD,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC,CAAC;AAEH,KAAK,4BAA4B,GAAG,QAAQ,CAAC;IAC3C,MAAM,EAAE,6BAA6B,CAAC;IACtC,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,kBAAkB,EAAE,OAAO,CAAC;IAC5B,cAAc,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,MAAM,CAAC;CAC/C,CAAC,CAAC;AAEH,eAAO,MAAM,uBAAuB,GAAI,6GASrC,4BAA4B,4CA4C9B,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { BoardSection } from "./BoardSection";
|
|
2
2
|
export type { BoardSectionProps } from "./BoardSection";
|
|
3
3
|
export { BatchSectionMenuContent } from "./BatchSectionMenuContent";
|
|
4
|
+
export type { BatchSectionMenuContentLabels } from "./BatchSectionMenuContent";
|
|
4
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BoardSection/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/content/BoardSection/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,YAAY,EAAE,6BAA6B,EAAE,MAAM,2BAA2B,CAAC"}
|
|
@@ -7,9 +7,11 @@ export type LightPromoBannerProps = {
|
|
|
7
7
|
cta?: React.ReactNode;
|
|
8
8
|
onClick?: () => void;
|
|
9
9
|
onDismiss?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
10
|
+
/** Accessible label for the dismiss button. Consumer passes translated string. */
|
|
11
|
+
dismissLabel?: string;
|
|
10
12
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
11
13
|
export declare const LightPromoBanner: {
|
|
12
|
-
({ title, subtitle, image, cta, className, onClick, onDismiss, ...rest }: LightPromoBannerProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
({ title, subtitle, image, cta, className, onClick, onDismiss, dismissLabel, ...rest }: LightPromoBannerProps): import("react/jsx-runtime").JSX.Element;
|
|
13
15
|
displayName: string;
|
|
14
16
|
};
|
|
15
17
|
//# sourceMappingURL=LightPromoBanner.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LightPromoBanner.d.ts","sourceRoot":"","sources":["../../../../src/components/content/LightPromoBanner/LightPromoBanner.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"LightPromoBanner.d.ts","sourceRoot":"","sources":["../../../../src/components/content/LightPromoBanner/LightPromoBanner.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,MAAM,qBAAqB,GAAG;IAClC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IACjE,kFAAkF;IAClF,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;AAEzC,eAAO,MAAM,gBAAgB;4FAU1B,qBAAqB;;CAyCvB,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export type SectionSpaceProps = Readonly<{
|
|
2
|
+
/** Label shown in drop state. Consumer passes translated string. */
|
|
3
|
+
label: string;
|
|
2
4
|
/** Whether a drag is currently over this drop zone */
|
|
3
5
|
isOver?: boolean;
|
|
4
|
-
/** Label shown in drop state. Consumer passes translated string. */
|
|
5
|
-
label?: string;
|
|
6
6
|
/** Additional CSS classes for layout composition */
|
|
7
7
|
className?: string;
|
|
8
8
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SectionSpace.d.ts","sourceRoot":"","sources":["../../../../src/components/content/SectionSpace/SectionSpace.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SectionSpace.d.ts","sourceRoot":"","sources":["../../../../src/components/content/SectionSpace/SectionSpace.tsx"],"names":[],"mappings":"AAEA,MAAM,MAAM,iBAAiB,GAAG,QAAQ,CAAC;IACvC,oEAAoE;IACpE,KAAK,EAAE,MAAM,CAAC;IACd,sDAAsD;IACtD,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,oDAAoD;IACpD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC,CAAC;AAEH,eAAO,MAAM,YAAY,GAAI,8BAA8B,iBAAiB,4CAe3E,CAAC"}
|