@fileverse-dev/dsheet 2.0.22 → 2.0.23-memory-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.
@@ -58,7 +58,7 @@ interface EditorProviderProps {
58
58
  onChange?: (data: SheetUpdateData, encodedUpdate?: string) => void;
59
59
  externalEditorRef?: React.MutableRefObject<WorkbookInstance | null>;
60
60
  isCollaborative?: boolean;
61
- commentData?: Object;
61
+ commentData?: object;
62
62
  editorStateRef?: React.MutableRefObject<{
63
63
  refreshIndexedDB: () => Promise<void>;
64
64
  } | null>;
@@ -28,6 +28,7 @@ export type PendingDuplicateRule = {
28
28
  ref: string;
29
29
  format: FortuneFormat;
30
30
  priority: number;
31
+ type: 'duplicateValues' | 'uniqueValues';
31
32
  };
32
33
  export type CfExportResult = {
33
34
  nextPriority: number;
@@ -8,7 +8,7 @@ export type SheetCfPatch = {
8
8
  * formatting issues that ExcelJS cannot handle natively:
9
9
  *
10
10
  * 1. Adds the `text` attribute to `containsText` cfRules (ExcelJS omits it).
11
- * 2. Injects `duplicateValues` cfRules that ExcelJS's renderer skips entirely,
11
+ * 2. Injects `duplicateValues` / `uniqueValues` cfRules that ExcelJS's renderer skips,
12
12
  * including their dxf style entries in xl/styles.xml.
13
13
  */
14
14
  export declare function patchXlsxCf(buffer: ArrayBuffer | Buffer, sheetPatches: SheetCfPatch[]): Promise<ArrayBuffer>;