@gridsheet/react-core 3.0.0-rc.1 → 3.0.0-rc.3
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/Cell.d.ts.map +1 -1
- package/dist/components/ColumnMenu.d.ts.map +1 -1
- package/dist/components/ColumnMenuFilterSection.d.ts +5 -0
- package/dist/components/ColumnMenuFilterSection.d.ts.map +1 -0
- package/dist/components/ColumnMenuLabelSection.d.ts +5 -0
- package/dist/components/ColumnMenuLabelSection.d.ts.map +1 -0
- package/dist/components/ColumnMenuSortSection.d.ts +5 -0
- package/dist/components/ColumnMenuSortSection.d.ts.map +1 -0
- package/dist/components/ContextMenu.d.ts +0 -19
- package/dist/components/ContextMenu.d.ts.map +1 -1
- package/dist/components/Editor.d.ts.map +1 -1
- package/dist/components/EditorOptions.d.ts.map +1 -1
- package/dist/components/FormulaBar.d.ts.map +1 -1
- package/dist/components/FunctionGuide.d.ts +3 -2
- package/dist/components/FunctionGuide.d.ts.map +1 -1
- package/dist/components/GridSheet.d.ts +6 -4
- package/dist/components/GridSheet.d.ts.map +1 -1
- package/dist/components/HeaderCellLeft.d.ts.map +1 -1
- package/dist/components/HeaderCellTop.d.ts.map +1 -1
- package/dist/components/MenuItem.d.ts +18 -0
- package/dist/components/MenuItem.d.ts.map +1 -0
- package/dist/components/PluginBase.d.ts +2 -2
- package/dist/components/PluginBase.d.ts.map +1 -1
- package/dist/components/Resizer.d.ts.map +1 -1
- package/dist/components/RowMenu.d.ts.map +1 -1
- package/dist/components/ScrollHandle.d.ts.map +1 -1
- package/dist/components/SearchBar.d.ts.map +1 -1
- package/dist/components/StoreObserver.d.ts +7 -4
- package/dist/components/StoreObserver.d.ts.map +1 -1
- package/dist/components/Tabular.d.ts.map +1 -1
- package/dist/components/useAutocomplete.d.ts.map +1 -1
- package/dist/constants.d.ts +4 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/formula/evaluator.d.ts +36 -40
- package/dist/formula/evaluator.d.ts.map +1 -1
- package/dist/formula/formula-error.d.ts +10 -0
- package/dist/formula/formula-error.d.ts.map +1 -0
- package/dist/formula/functions/__async.d.ts +17 -12
- package/dist/formula/functions/__async.d.ts.map +1 -1
- package/dist/formula/functions/__base.d.ts +82 -23
- package/dist/formula/functions/__base.d.ts.map +1 -1
- package/dist/formula/functions/__utils.d.ts +4 -0
- package/dist/formula/functions/__utils.d.ts.map +1 -1
- package/dist/formula/functions/abs.d.ts +5 -5
- package/dist/formula/functions/abs.d.ts.map +1 -1
- package/dist/formula/functions/add.d.ts +6 -6
- package/dist/formula/functions/add.d.ts.map +1 -1
- package/dist/formula/functions/and.d.ts +5 -5
- package/dist/formula/functions/and.d.ts.map +1 -1
- package/dist/formula/functions/arrayformula.d.ts +12 -0
- package/dist/formula/functions/arrayformula.d.ts.map +1 -0
- package/dist/formula/functions/average.d.ts +5 -5
- package/dist/formula/functions/average.d.ts.map +1 -1
- package/dist/formula/functions/concat.d.ts +5 -5
- package/dist/formula/functions/concat.d.ts.map +1 -1
- package/dist/formula/functions/count.d.ts +4 -4
- package/dist/formula/functions/count.d.ts.map +1 -1
- package/dist/formula/functions/counta.d.ts +4 -4
- package/dist/formula/functions/counta.d.ts.map +1 -1
- package/dist/formula/functions/divide.d.ts +5 -4
- package/dist/formula/functions/divide.d.ts.map +1 -1
- package/dist/formula/functions/eq.d.ts +4 -4
- package/dist/formula/functions/eq.d.ts.map +1 -1
- package/dist/formula/functions/gt.d.ts +5 -5
- package/dist/formula/functions/gt.d.ts.map +1 -1
- package/dist/formula/functions/gte.d.ts +5 -5
- package/dist/formula/functions/gte.d.ts.map +1 -1
- package/dist/formula/functions/if.d.ts +5 -5
- package/dist/formula/functions/if.d.ts.map +1 -1
- package/dist/formula/functions/iferror.d.ts +7 -9
- package/dist/formula/functions/iferror.d.ts.map +1 -1
- package/dist/formula/functions/len.d.ts +5 -5
- package/dist/formula/functions/len.d.ts.map +1 -1
- package/dist/formula/functions/lt.d.ts +5 -5
- package/dist/formula/functions/lt.d.ts.map +1 -1
- package/dist/formula/functions/lte.d.ts +5 -5
- package/dist/formula/functions/lte.d.ts.map +1 -1
- package/dist/formula/functions/max.d.ts +5 -5
- package/dist/formula/functions/max.d.ts.map +1 -1
- package/dist/formula/functions/min.d.ts +5 -5
- package/dist/formula/functions/min.d.ts.map +1 -1
- package/dist/formula/functions/minus.d.ts +6 -6
- package/dist/formula/functions/minus.d.ts.map +1 -1
- package/dist/formula/functions/multiply.d.ts +5 -5
- package/dist/formula/functions/multiply.d.ts.map +1 -1
- package/dist/formula/functions/ne.d.ts +4 -4
- package/dist/formula/functions/ne.d.ts.map +1 -1
- package/dist/formula/functions/not.d.ts +5 -5
- package/dist/formula/functions/not.d.ts.map +1 -1
- package/dist/formula/functions/now.d.ts +4 -4
- package/dist/formula/functions/now.d.ts.map +1 -1
- package/dist/formula/functions/or.d.ts +5 -5
- package/dist/formula/functions/or.d.ts.map +1 -1
- package/dist/formula/functions/power.d.ts +5 -5
- package/dist/formula/functions/power.d.ts.map +1 -1
- package/dist/formula/functions/sum.d.ts +5 -5
- package/dist/formula/functions/sum.d.ts.map +1 -1
- package/dist/formula/functions/uminus.d.ts +5 -5
- package/dist/formula/functions/uminus.d.ts.map +1 -1
- package/dist/formula/mapping.d.ts +4 -3
- package/dist/formula/mapping.d.ts.map +1 -1
- package/dist/formula/solver.d.ts +28 -15
- package/dist/formula/solver.d.ts.map +1 -1
- package/dist/index.d.ts +25 -23
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7875 -8226
- package/dist/index.js.map +1 -1
- package/dist/lib/autofill.d.ts +3 -3
- package/dist/lib/autofill.d.ts.map +1 -1
- package/dist/lib/{hub.d.ts → book.d.ts} +30 -45
- package/dist/lib/book.d.ts.map +1 -0
- package/dist/lib/cell.d.ts +6 -4
- package/dist/lib/cell.d.ts.map +1 -1
- package/dist/lib/clipboard.d.ts +16 -1
- package/dist/lib/clipboard.d.ts.map +1 -1
- package/dist/lib/coords.d.ts +13 -1
- package/dist/lib/coords.d.ts.map +1 -1
- package/dist/lib/dom.d.ts +7 -0
- package/dist/lib/dom.d.ts.map +1 -0
- package/dist/lib/input.d.ts +11 -2
- package/dist/lib/input.d.ts.map +1 -1
- package/dist/lib/label.d.ts +4 -0
- package/dist/lib/label.d.ts.map +1 -0
- package/dist/lib/menu.d.ts +99 -0
- package/dist/lib/menu.d.ts.map +1 -0
- package/dist/lib/operation.d.ts +0 -3
- package/dist/lib/operation.d.ts.map +1 -1
- package/dist/lib/popup.d.ts +24 -0
- package/dist/lib/popup.d.ts.map +1 -0
- package/dist/lib/reference.d.ts +10 -4
- package/dist/lib/reference.d.ts.map +1 -1
- package/dist/lib/sheet.d.ts +507 -2
- package/dist/lib/sheet.d.ts.map +1 -1
- package/dist/lib/sheet_utils.d.ts +55 -0
- package/dist/lib/sheet_utils.d.ts.map +1 -0
- package/dist/lib/spatial.d.ts +5 -20
- package/dist/lib/spatial.d.ts.map +1 -1
- package/dist/lib/time.d.ts +19 -15
- package/dist/lib/time.d.ts.map +1 -1
- package/dist/lib/virtualization.d.ts +4 -4
- package/dist/policy/checkbox.d.ts +3 -0
- package/dist/policy/checkbox.d.ts.map +1 -0
- package/dist/policy/core.d.ts +128 -18
- package/dist/policy/core.d.ts.map +1 -1
- package/dist/policy/thousand_separator.d.ts +4 -0
- package/dist/policy/thousand_separator.d.ts.map +1 -0
- package/dist/sentinels.d.ts +21 -4
- package/dist/sentinels.d.ts.map +1 -1
- package/dist/store/actions.d.ts +3 -3
- package/dist/store/actions.d.ts.map +1 -1
- package/dist/store/dispatchers.d.ts +38 -34
- package/dist/store/dispatchers.d.ts.map +1 -1
- package/dist/store/helpers.d.ts +13 -4
- package/dist/store/helpers.d.ts.map +1 -1
- package/dist/styles/minified.d.ts +2 -2
- package/dist/styles/minified.d.ts.map +1 -1
- package/dist/types.d.ts +59 -55
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/formula/functions/acos.d.ts +0 -9
- package/dist/formula/functions/acos.d.ts.map +0 -1
- package/dist/formula/functions/asin.d.ts +0 -9
- package/dist/formula/functions/asin.d.ts.map +0 -1
- package/dist/formula/functions/atan.d.ts +0 -9
- package/dist/formula/functions/atan.d.ts.map +0 -1
- package/dist/formula/functions/atan2.d.ts +0 -9
- package/dist/formula/functions/atan2.d.ts.map +0 -1
- package/dist/formula/functions/col.d.ts +0 -9
- package/dist/formula/functions/col.d.ts.map +0 -1
- package/dist/formula/functions/concatenate.d.ts +0 -9
- package/dist/formula/functions/concatenate.d.ts.map +0 -1
- package/dist/formula/functions/cos.d.ts +0 -9
- package/dist/formula/functions/cos.d.ts.map +0 -1
- package/dist/formula/functions/countif.d.ts +0 -10
- package/dist/formula/functions/countif.d.ts.map +0 -1
- package/dist/formula/functions/exp.d.ts +0 -9
- package/dist/formula/functions/exp.d.ts.map +0 -1
- package/dist/formula/functions/hlookup.d.ts +0 -10
- package/dist/formula/functions/hlookup.d.ts.map +0 -1
- package/dist/formula/functions/index.d.ts +0 -10
- package/dist/formula/functions/index.d.ts.map +0 -1
- package/dist/formula/functions/lenb.d.ts +0 -9
- package/dist/formula/functions/lenb.d.ts.map +0 -1
- package/dist/formula/functions/ln.d.ts +0 -9
- package/dist/formula/functions/ln.d.ts.map +0 -1
- package/dist/formula/functions/log.d.ts +0 -9
- package/dist/formula/functions/log.d.ts.map +0 -1
- package/dist/formula/functions/log10.d.ts +0 -9
- package/dist/formula/functions/log10.d.ts.map +0 -1
- package/dist/formula/functions/match.d.ts +0 -10
- package/dist/formula/functions/match.d.ts.map +0 -1
- package/dist/formula/functions/match.test.d.ts +0 -2
- package/dist/formula/functions/match.test.d.ts.map +0 -1
- package/dist/formula/functions/mod.d.ts +0 -9
- package/dist/formula/functions/mod.d.ts.map +0 -1
- package/dist/formula/functions/pi.d.ts +0 -9
- package/dist/formula/functions/pi.d.ts.map +0 -1
- package/dist/formula/functions/product.d.ts +0 -9
- package/dist/formula/functions/product.d.ts.map +0 -1
- package/dist/formula/functions/radians.d.ts +0 -9
- package/dist/formula/functions/radians.d.ts.map +0 -1
- package/dist/formula/functions/rand.d.ts +0 -9
- package/dist/formula/functions/rand.d.ts.map +0 -1
- package/dist/formula/functions/round.d.ts +0 -9
- package/dist/formula/functions/round.d.ts.map +0 -1
- package/dist/formula/functions/rounddown.d.ts +0 -9
- package/dist/formula/functions/rounddown.d.ts.map +0 -1
- package/dist/formula/functions/roundup.d.ts +0 -9
- package/dist/formula/functions/roundup.d.ts.map +0 -1
- package/dist/formula/functions/row.d.ts +0 -9
- package/dist/formula/functions/row.d.ts.map +0 -1
- package/dist/formula/functions/sin.d.ts +0 -9
- package/dist/formula/functions/sin.d.ts.map +0 -1
- package/dist/formula/functions/sqrt.d.ts +0 -9
- package/dist/formula/functions/sqrt.d.ts.map +0 -1
- package/dist/formula/functions/sumif.d.ts +0 -10
- package/dist/formula/functions/sumif.d.ts.map +0 -1
- package/dist/formula/functions/tan.d.ts +0 -9
- package/dist/formula/functions/tan.d.ts.map +0 -1
- package/dist/formula/functions/vlookup.d.ts +0 -10
- package/dist/formula/functions/vlookup.d.ts.map +0 -1
- package/dist/lib/hub.d.ts.map +0 -1
- package/dist/lib/table.d.ts +0 -463
- package/dist/lib/table.d.ts.map +0 -1
- package/dist/parsers/core.d.ts +0 -38
- package/dist/parsers/core.d.ts.map +0 -1
- package/dist/renderers/checkbox.d.ts +0 -5
- package/dist/renderers/checkbox.d.ts.map +0 -1
- package/dist/renderers/core.d.ts +0 -66
- package/dist/renderers/core.d.ts.map +0 -1
- package/dist/renderers/thousand_separator.d.ts +0 -3
- package/dist/renderers/thousand_separator.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Cell.d.ts","sourceRoot":"","sources":["../../src/components/Cell.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Cell.d.ts","sourceRoot":"","sources":["../../src/components/Cell.tsx"],"names":[],"mappings":"AAuBA,OAAO,KAAK,EAAE,EAAE,EAAa,MAAM,OAAO,CAAC;AAK3C,KAAK,KAAK,GAAG;IACX,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,EAAE,CAAC,KAAK,CAyWzB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ColumnMenu.d.ts","sourceRoot":"","sources":["../../src/components/ColumnMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"ColumnMenu.d.ts","sourceRoot":"","sources":["../../src/components/ColumnMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAqC,MAAM,OAAO,CAAC;AAWnE,OAAO,2BAA2B,CAAC;AACnC,OAAO,yBAAyB,CAAC;AACjC,OAAO,0BAA0B,CAAC;AAElC,eAAO,MAAM,UAAU,EAAE,EA0GxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnMenuFilterSection.d.ts","sourceRoot":"","sources":["../../src/components/ColumnMenuFilterSection.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAgD,MAAM,OAAO,CAAC;AAK9E,OAAO,EAAyB,KAAK,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAwB9E,QAAA,MAAM,aAAa,EAAE,EAAE,CAAC,mBAAmB,CA+O1C,CAAC;AAGF,OAAO,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnMenuLabelSection.d.ts","sourceRoot":"","sources":["../../src/components/ColumnMenuLabelSection.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAwD,MAAM,OAAO,CAAC;AAMtF,OAAO,EAAyB,KAAK,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAE9E,QAAA,MAAM,YAAY,EAAE,EAAE,CAAC,mBAAmB,CA6EzC,CAAC;AAGF,OAAO,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnMenuSortSection.d.ts","sourceRoot":"","sources":["../../src/components/ColumnMenuSortSection.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAgD,MAAM,OAAO,CAAC;AAI9E,OAAO,EAAyB,KAAK,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAO9E,QAAA,MAAM,WAAW,EAAE,EAAE,CAAC,mBAAmB,CA0FxC,CAAC;AAGF,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -1,21 +1,2 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
|
-
import { ContextMenuProps } from '../types';
|
|
3
1
|
export declare const ContextMenu: () => JSX.Element | null;
|
|
4
|
-
export declare const DividerItem: (props: ContextMenuProps) => JSX.Element;
|
|
5
|
-
export declare const CutItem: (props: ContextMenuProps) => JSX.Element;
|
|
6
|
-
export declare const SearchItem: (props: ContextMenuProps) => JSX.Element;
|
|
7
|
-
export declare const CopyItem: (props: ContextMenuProps) => JSX.Element;
|
|
8
|
-
export declare const PasteItem: (props: ContextMenuProps) => JSX.Element;
|
|
9
|
-
export declare const PasteOnlyValueItem: (props: ContextMenuProps) => JSX.Element;
|
|
10
|
-
export declare const RowsColsOperationDividerItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
11
|
-
export declare const InsertRowsAboveItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
12
|
-
export declare const InsertRowsBelowItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
13
|
-
export declare const InsertColsLeftItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
14
|
-
export declare const InsertColsRightItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
15
|
-
export declare const RemoveRowsItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
16
|
-
export declare const RemoveColsItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
17
|
-
export declare const HistoryDeviderItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
18
|
-
export declare const UndoItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
19
|
-
export declare const RedoItem: (props: ContextMenuProps) => JSX.Element | null;
|
|
20
|
-
export declare const defaultContextMenuItems: FC<ContextMenuProps>[];
|
|
21
2
|
//# sourceMappingURL=ContextMenu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContextMenu.d.ts","sourceRoot":"","sources":["../../src/components/ContextMenu.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ContextMenu.d.ts","sourceRoot":"","sources":["../../src/components/ContextMenu.tsx"],"names":[],"mappings":"AAWA,eAAO,MAAM,WAAW,0BAgEvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Editor.d.ts","sourceRoot":"","sources":["../../src/components/Editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Editor.d.ts","sourceRoot":"","sources":["../../src/components/Editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AA0ChC,OAAO,EAA4C,QAAQ,EAAE,MAAM,UAAU,CAAC;AAK9E,KAAK,KAAK,GAAG;IACX,IAAI,EAAE,QAAQ,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,EAAE,CAAC,KAAK,CAssB5B,CAAC;AA2BF,eAAO,MAAM,WAAW,GAAI,MAAM,MAAM,gBAgEvC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditorOptions.d.ts","sourceRoot":"","sources":["../../src/components/EditorOptions.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"EditorOptions.d.ts","sourceRoot":"","sources":["../../src/components/EditorOptions.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4C,MAAM,OAAO,CAAC;AAIjE,UAAU,kBAAkB;IAC1B,eAAe,EAAE,GAAG,EAAE,CAAC;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,iBAAiB,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,EAAE,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CAC5E;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAuCtD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormulaBar.d.ts","sourceRoot":"","sources":["../../src/components/FormulaBar.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FormulaBar.d.ts","sourceRoot":"","sources":["../../src/components/FormulaBar.tsx"],"names":[],"mappings":"AAeA,KAAK,eAAe,GAAG;IACrB,KAAK,EAAE,OAAO,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,WAAW,eAAe,gBA8XpD,CAAC"}
|
|
@@ -4,8 +4,9 @@ import { AutocompleteOption } from '../policy/core';
|
|
|
4
4
|
type OptionWithGuide = AutocompleteOption & {
|
|
5
5
|
isFunction?: boolean;
|
|
6
6
|
example?: string;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
category?: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
defs?: any[];
|
|
9
10
|
};
|
|
10
11
|
export interface FunctionGuideProps {
|
|
11
12
|
option?: OptionWithGuide;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FunctionGuide.d.ts","sourceRoot":"","sources":["../../src/components/FunctionGuide.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"FunctionGuide.d.ts","sourceRoot":"","sources":["../../src/components/FunctionGuide.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8C,MAAM,OAAO,CAAC;AACnE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAIzD,KAAK,eAAe,GAAG,kBAAkB,GAAG;IAC1C,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;CACd,CAAC;AAEF,MAAM,WAAW,kBAAkB;IAEjC,MAAM,CAAC,EAAE,eAAe,CAAC;IAGzB,mBAAmB,CAAC,EAAE,YAAY,CAAC;IACnC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA8JtD,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare
|
|
1
|
+
import { SheetHandle, StoreHandle, Props } from '../types';
|
|
2
|
+
export declare const createSheetRef: () => import('react').RefObject<SheetHandle | null>;
|
|
3
|
+
export declare const useSheetRef: () => import('react').MutableRefObject<SheetHandle | null>;
|
|
4
|
+
export declare const createStoreRef: () => import('react').RefObject<StoreHandle | null>;
|
|
5
|
+
export declare const useStoreRef: () => import('react').MutableRefObject<StoreHandle | null>;
|
|
6
|
+
export declare function GridSheet({ initialCells, sheetName, sheetRef: initialSheetRef, storeRef: initialStoreRef, options, className, style, book: initialBook, }: Props): JSX.Element;
|
|
5
7
|
//# sourceMappingURL=GridSheet.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GridSheet.d.ts","sourceRoot":"","sources":["../../src/components/GridSheet.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAsB,
|
|
1
|
+
{"version":3,"file":"GridSheet.d.ts","sourceRoot":"","sources":["../../src/components/GridSheet.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAsB,WAAW,EAAE,WAAW,EAAe,KAAK,EAAa,MAAM,UAAU,CAAC;AA+B5G,eAAO,MAAM,cAAc,qDAAwC,CAAC;AACpE,eAAO,MAAM,WAAW,4DAAyC,CAAC;AAClE,eAAO,MAAM,cAAc,qDAAwC,CAAC;AACpE,eAAO,MAAM,WAAW,4DAAyC,CAAC;AAElE,wBAAgB,SAAS,CAAC,EACxB,YAAY,EACZ,SAAc,EACd,QAAQ,EAAE,eAAe,EACzB,QAAQ,EAAE,eAAe,EACzB,OAAY,EACZ,SAAS,EACT,KAAK,EACL,IAAI,EAAE,WAAW,GAClB,EAAE,KAAK,eAsKP"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeaderCellLeft.d.ts","sourceRoot":"","sources":["../../src/components/HeaderCellLeft.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"HeaderCellLeft.d.ts","sourceRoot":"","sources":["../../src/components/HeaderCellLeft.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AA6BhC,KAAK,KAAK,GAAG;IACX,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,KAAK,CAkQnC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeaderCellTop.d.ts","sourceRoot":"","sources":["../../src/components/HeaderCellTop.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"HeaderCellTop.d.ts","sourceRoot":"","sources":["../../src/components/HeaderCellTop.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AA6BhC,KAAK,KAAK,GAAG;IACX,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,KAAK,CAmRlC,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
type MenuItemProps = {
|
|
3
|
+
label: string;
|
|
4
|
+
shortcuts?: string[];
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* undefined → no check column
|
|
8
|
+
* true/false → displayed as a toggle row with a checkmark
|
|
9
|
+
*/
|
|
10
|
+
checked?: boolean;
|
|
11
|
+
testId?: string;
|
|
12
|
+
onClick?: () => void;
|
|
13
|
+
className?: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const MenuItem: FC<MenuItemProps>;
|
|
16
|
+
export declare const MenuDivider: FC;
|
|
17
|
+
export {};
|
|
18
|
+
//# sourceMappingURL=MenuItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuItem.d.ts","sourceRoot":"","sources":["../../src/components/MenuItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,KAAK,aAAa,GAAG;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,aAAa,CA0CtC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,EAA6C,CAAC"}
|
|
@@ -4,9 +4,9 @@ import { Dispatcher } from '../store';
|
|
|
4
4
|
export type PluginContextType = {
|
|
5
5
|
provided: boolean;
|
|
6
6
|
store?: StoreType;
|
|
7
|
-
|
|
7
|
+
apply?: Dispatcher;
|
|
8
8
|
setStore: (store: StoreType) => void;
|
|
9
|
-
|
|
9
|
+
setApply: (apply: Dispatcher) => void;
|
|
10
10
|
};
|
|
11
11
|
export declare const PluginContext: import('react').Context<PluginContextType>;
|
|
12
12
|
export declare function useInitialPluginContext(): PluginContextType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PluginBase.d.ts","sourceRoot":"","sources":["../../src/components/PluginBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,MAAM,MAAM,iBAAiB,GAAG;IAC9B,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,
|
|
1
|
+
{"version":3,"file":"PluginBase.d.ts","sourceRoot":"","sources":["../../src/components/PluginBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,MAAM,MAAM,iBAAiB,GAAG;IAC9B,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,CAAC;IACrC,QAAQ,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;CACvC,CAAC;AAEF,eAAO,MAAM,aAAa,4CAAyC,CAAC;AAEpE,wBAAgB,uBAAuB,IAAI,iBAAiB,CAU3D;AAED,wBAAgB,gBAAgB,IAAI,CAAC,OAAO,EAAE,iBAAiB,CAAC,CAM/D;AAED,wBAAgB,iBAAiB,kCAMhC;AAED,KAAK,KAAK,GAAG;IACX,QAAQ,EAAE,SAAS,CAAC;IACpB,OAAO,EAAE,iBAAiB,CAAC;CAC5B,CAAC;AAEF,wBAAgB,UAAU,CAAC,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,KAAK,eAMtD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Resizer.d.ts","sourceRoot":"","sources":["../../src/components/Resizer.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Resizer.d.ts","sourceRoot":"","sources":["../../src/components/Resizer.tsx"],"names":[],"mappings":"AAYA,eAAO,MAAM,OAAO,mBAuGnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RowMenu.d.ts","sourceRoot":"","sources":["../../src/components/RowMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAc,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"RowMenu.d.ts","sourceRoot":"","sources":["../../src/components/RowMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAc,MAAM,OAAO,CAAC;AA8C5C,eAAO,MAAM,OAAO,EAAE,EAmCrB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScrollHandle.d.ts","sourceRoot":"","sources":["../../src/components/ScrollHandle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ScrollHandle.d.ts","sourceRoot":"","sources":["../../src/components/ScrollHandle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAU3C,KAAK,KAAK,GAAG;IACX,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,aAAa,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAQF,wBAAgB,YAAY,CAAC,EAAE,KAAK,EAAE,UAAc,EAAE,QAAY,EAAE,SAAc,EAAE,EAAE,KAAK,eAsL1F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchBar.d.ts","sourceRoot":"","sources":["../../src/components/SearchBar.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SearchBar.d.ts","sourceRoot":"","sources":["../../src/components/SearchBar.tsx"],"names":[],"mappings":"AAYA,eAAO,MAAM,SAAS,0BAuMrB,CAAC"}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { FC, MutableRefObject } from 'react';
|
|
2
|
-
import { OptionsType,
|
|
2
|
+
import { OptionsType, SheetHandle, StoreHandle } from '../types';
|
|
3
3
|
type StoreObserverProps = OptionsType & {
|
|
4
4
|
sheetName?: string;
|
|
5
|
-
|
|
5
|
+
sheetRef?: MutableRefObject<SheetHandle | null>;
|
|
6
|
+
storeRef?: MutableRefObject<StoreHandle | null>;
|
|
6
7
|
};
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const createSheetRef: () => import('react').RefObject<SheetHandle | null>;
|
|
9
|
+
export declare const useSheetRef: () => MutableRefObject<SheetHandle | null>;
|
|
10
|
+
export declare const createStoreRef: () => import('react').RefObject<StoreHandle | null>;
|
|
11
|
+
export declare const useStoreRef: () => MutableRefObject<StoreHandle | null>;
|
|
9
12
|
export declare const StoreObserver: FC<StoreObserverProps>;
|
|
10
13
|
export {};
|
|
11
14
|
//# sourceMappingURL=StoreObserver.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StoreObserver.d.ts","sourceRoot":"","sources":["../../src/components/StoreObserver.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAGlD,OAAO,KAAK,EAAE,WAAW,EAAS,
|
|
1
|
+
{"version":3,"file":"StoreObserver.d.ts","sourceRoot":"","sources":["../../src/components/StoreObserver.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAGlD,OAAO,KAAK,EAAE,WAAW,EAAS,WAAW,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAQ7E,KAAK,kBAAkB,GAAG,WAAW,GAAG;IACtC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IAChD,QAAQ,CAAC,EAAE,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CACjD,CAAC;AAEF,eAAO,MAAM,cAAc,qDAAwC,CAAC;AACpE,eAAO,MAAM,WAAW,4CAAyC,CAAC;AAClE,eAAO,MAAM,cAAc,qDAAwC,CAAC;AACpE,eAAO,MAAM,WAAW,4CAAyC,CAAC;AAClE,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,kBAAkB,CAqFhD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tabular.d.ts","sourceRoot":"","sources":["../../src/components/Tabular.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Tabular.d.ts","sourceRoot":"","sources":["../../src/components/Tabular.tsx"],"names":[],"mappings":"AAiBA,eAAO,MAAM,OAAO,0BAuOnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAutocomplete.d.ts","sourceRoot":"","sources":["../../src/components/useAutocomplete.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,KAAK,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACzE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAGzD,KAAK,oBAAoB,GAAG;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,kBAAkB,EAAE,CAAC;IACjC,SAAS,CAAC,EAAE,eAAe,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,sDAAsD,oBAAoB;;;;
|
|
1
|
+
{"version":3,"file":"useAutocomplete.d.ts","sourceRoot":"","sources":["../../src/components/useAutocomplete.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,KAAK,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACzE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAGzD,KAAK,oBAAoB,GAAG;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,kBAAkB,EAAE,CAAC;IACjC,SAAS,CAAC,EAAE,eAAe,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,sDAAsD,oBAAoB;;;;gCA6L7F,GAAG;;;;uBAkBR,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC;yBAYxC,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC;;;;CAsB/C,CAAC"}
|
package/dist/constants.d.ts
CHANGED
|
@@ -14,4 +14,8 @@ export declare const DEFAULT_ALPHABET_CACHE_SIZE = 1000;
|
|
|
14
14
|
export declare const SECONDS_IN_DAY = 86400;
|
|
15
15
|
export declare const FULLDATE_FORMAT_UTC = "YYYY-MM-DDTHH:mm:ss.SSSZ";
|
|
16
16
|
export declare const RESET_ZONE: ZoneType;
|
|
17
|
+
export declare const BASE_DATE: Date;
|
|
18
|
+
export declare const DEFAULT_KEY = "default";
|
|
19
|
+
export declare const DEFAULT_COL_KEY = "defaultCol";
|
|
20
|
+
export declare const DEFAULT_ROW_KEY = "defaultRow";
|
|
17
21
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,eAAO,MAAM,qBAAqB,KAAK,CAAC;AAExC,eAAO,MAAM,cAAc,KAAK,CAAC;AACjC,eAAO,MAAM,aAAa,KAAK,CAAC;AAEhC,eAAO,MAAM,YAAY,MAAM,CAAC;AAChC,eAAO,MAAM,WAAW,OAAO,CAAC;AAEhC,eAAO,MAAM,aAAa,KAAK,CAAC;AAChC,eAAO,MAAM,YAAY,KAAK,CAAC;AAE/B,eAAO,MAAM,SAAS,IAAI,CAAC;AAC3B,eAAO,MAAM,UAAU,IAAI,CAAC;AAE5B,eAAO,MAAM,UAAU,IAAI,CAAC;AAC5B,eAAO,MAAM,UAAU,KAAK,CAAC;AAE7B,eAAO,MAAM,2BAA2B,OAAO,CAAC;AAEhD,eAAO,MAAM,cAAc,QAAQ,CAAC;AACpC,eAAO,MAAM,mBAAmB,6BAA6B,CAAC;AAE9D,eAAO,MAAM,UAAU,EAAE,QAKxB,CAAC"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,eAAO,MAAM,qBAAqB,KAAK,CAAC;AAExC,eAAO,MAAM,cAAc,KAAK,CAAC;AACjC,eAAO,MAAM,aAAa,KAAK,CAAC;AAEhC,eAAO,MAAM,YAAY,MAAM,CAAC;AAChC,eAAO,MAAM,WAAW,OAAO,CAAC;AAEhC,eAAO,MAAM,aAAa,KAAK,CAAC;AAChC,eAAO,MAAM,YAAY,KAAK,CAAC;AAE/B,eAAO,MAAM,SAAS,IAAI,CAAC;AAC3B,eAAO,MAAM,UAAU,IAAI,CAAC;AAE5B,eAAO,MAAM,UAAU,IAAI,CAAC;AAC5B,eAAO,MAAM,UAAU,KAAK,CAAC;AAE7B,eAAO,MAAM,2BAA2B,OAAO,CAAC;AAEhD,eAAO,MAAM,cAAc,QAAQ,CAAC;AACpC,eAAO,MAAM,mBAAmB,6BAA6B,CAAC;AAE9D,eAAO,MAAM,UAAU,EAAE,QAKxB,CAAC;AAGF,eAAO,MAAM,SAAS,MAAuB,CAAC;AAE9C,eAAO,MAAM,WAAW,YAAY,CAAC;AACrC,eAAO,MAAM,eAAe,eAAe,CAAC;AAC5C,eAAO,MAAM,eAAe,eAAe,CAAC"}
|
|
@@ -1,33 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Id
|
|
1
|
+
import { Sheet } from '../lib/sheet';
|
|
2
|
+
import { Id } from '../types';
|
|
3
3
|
type EvaluateProps = {
|
|
4
|
-
|
|
4
|
+
sheet: Sheet;
|
|
5
5
|
};
|
|
6
|
-
|
|
7
|
-
table: Table;
|
|
6
|
+
type IdentityBaseProps = {
|
|
8
7
|
slideY?: number;
|
|
9
8
|
slideX?: number;
|
|
10
9
|
operation?: 'move' | 'removeRows' | 'removeCols';
|
|
11
|
-
dependency:
|
|
10
|
+
dependency: Id;
|
|
11
|
+
};
|
|
12
|
+
export type ProcessFormulaProps = IdentityBaseProps & {
|
|
12
13
|
idMap?: {
|
|
13
14
|
[id: string]: string;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
17
|
+
export type IdentifyProps = IdentityBaseProps & {
|
|
18
|
+
sheet: Sheet;
|
|
19
|
+
};
|
|
16
20
|
export type DisplayProps = {
|
|
17
|
-
|
|
21
|
+
sheet: Sheet;
|
|
18
22
|
slideY?: number;
|
|
19
23
|
slideX?: number;
|
|
20
24
|
};
|
|
21
|
-
export declare class FormulaError {
|
|
22
|
-
code: string;
|
|
23
|
-
message: string;
|
|
24
|
-
error?: Error;
|
|
25
|
-
__isFormulaError: boolean;
|
|
26
|
-
constructor(code: string, message: string, error?: Error);
|
|
27
|
-
static is(obj: any): boolean;
|
|
28
|
-
}
|
|
29
25
|
declare class Entity<T = any> {
|
|
30
26
|
value: T;
|
|
27
|
+
ids: string[];
|
|
31
28
|
constructor(value: T);
|
|
32
29
|
}
|
|
33
30
|
export declare class ValueEntity extends Entity {
|
|
@@ -42,33 +39,33 @@ export declare class InvalidRefEntity extends Entity<string> {
|
|
|
42
39
|
export declare class RefEntity extends Entity<string> {
|
|
43
40
|
constructor(value: string);
|
|
44
41
|
stringify(): string;
|
|
45
|
-
evaluate({
|
|
42
|
+
evaluate({ sheet }: EvaluateProps): Sheet;
|
|
46
43
|
identify(props: IdentifyProps): string;
|
|
47
44
|
}
|
|
48
45
|
export declare class RangeEntity extends Entity<string> {
|
|
49
46
|
stringify(): string;
|
|
50
|
-
evaluate({
|
|
47
|
+
evaluate({ sheet }: EvaluateProps): Sheet;
|
|
51
48
|
identify(props: IdentifyProps): string;
|
|
52
49
|
}
|
|
53
50
|
export declare class IdEntity extends Entity<string> {
|
|
54
51
|
private parse;
|
|
55
|
-
evaluate({
|
|
56
|
-
display({
|
|
52
|
+
evaluate({ sheet }: EvaluateProps): Sheet;
|
|
53
|
+
display({ sheet, slideY, slideX }: DisplayProps): string;
|
|
57
54
|
identify(props: IdentifyProps): string;
|
|
58
55
|
}
|
|
59
56
|
export declare class IdRangeEntity extends Entity<string> {
|
|
60
57
|
private parse;
|
|
61
|
-
evaluate({
|
|
62
|
-
display({
|
|
63
|
-
identify(props: IdentifyProps): string
|
|
58
|
+
evaluate({ sheet }: EvaluateProps): Sheet;
|
|
59
|
+
display({ sheet, slideY, slideX }: DisplayProps): string;
|
|
60
|
+
identify(props: IdentifyProps): string;
|
|
64
61
|
}
|
|
65
62
|
export declare class FunctionEntity {
|
|
66
63
|
args: Expression[];
|
|
67
64
|
name: string;
|
|
68
65
|
precedence: number;
|
|
69
|
-
private
|
|
70
|
-
constructor(name: string, precedence?: number, args?: Expression[],
|
|
71
|
-
evaluate({
|
|
66
|
+
private at?;
|
|
67
|
+
constructor(name: string, precedence?: number, args?: Expression[], at?: Id);
|
|
68
|
+
evaluate({ sheet }: EvaluateProps): any;
|
|
72
69
|
}
|
|
73
70
|
export type Expression = ValueEntity | RefEntity | RangeEntity | IdEntity | IdRangeEntity | FunctionEntity | UnreferencedEntity | InvalidRefEntity;
|
|
74
71
|
export type TokenType = 'VALUE' | 'REF' | 'RANGE' | 'ID' | 'ID_RANGE' | 'FUNCTION' | 'PREFIX_OPERATOR' | 'INFIX_OPERATOR' | 'POSTFIX_OPERATOR' | 'OPEN' | 'CLOSE' | 'COMMA' | 'SPACE' | 'UNREFERENCED' | 'INVALID_REF';
|
|
@@ -76,25 +73,24 @@ export declare class Token {
|
|
|
76
73
|
type: TokenType;
|
|
77
74
|
entity: any;
|
|
78
75
|
precedence: number;
|
|
79
|
-
|
|
80
|
-
|
|
76
|
+
closed: boolean;
|
|
77
|
+
private at?;
|
|
78
|
+
constructor(type: TokenType, entity: any, precedence?: number, at?: Id, closed?: boolean);
|
|
81
79
|
length(): number;
|
|
82
80
|
stringify(): string;
|
|
83
81
|
convert(): ValueEntity | UnreferencedEntity | InvalidRefEntity | RefEntity | RangeEntity | IdEntity | IdRangeEntity | FunctionEntity | undefined;
|
|
84
82
|
}
|
|
85
83
|
type LexerOption = {
|
|
86
|
-
|
|
87
|
-
idMap?: {
|
|
88
|
-
[id: Id]: Id;
|
|
89
|
-
};
|
|
84
|
+
at?: Id;
|
|
90
85
|
};
|
|
91
86
|
export declare class Lexer {
|
|
92
87
|
private index;
|
|
93
88
|
private formula;
|
|
94
89
|
tokens: Token[];
|
|
95
90
|
foreign: boolean;
|
|
96
|
-
|
|
97
|
-
|
|
91
|
+
identifiedFormula: string;
|
|
92
|
+
dependencyIds: string[];
|
|
93
|
+
private at?;
|
|
98
94
|
constructor(formula: string, options?: LexerOption);
|
|
99
95
|
private isWhiteSpace;
|
|
100
96
|
private next;
|
|
@@ -103,12 +99,13 @@ export declare class Lexer {
|
|
|
103
99
|
getTokenIndexByCharPosition(pos: number): [number, boolean];
|
|
104
100
|
getTokenPositionRange(index: number, slide?: number): [number, number];
|
|
105
101
|
stringify(): string;
|
|
106
|
-
identify(props: IdentifyProps):
|
|
107
|
-
display({
|
|
108
|
-
tokenize(
|
|
102
|
+
identify(props: IdentifyProps): void;
|
|
103
|
+
display({ sheet }: DisplayProps): string;
|
|
104
|
+
tokenize(idMap?: {
|
|
105
|
+
[id: Id]: Id;
|
|
106
|
+
}): void;
|
|
109
107
|
private skipSpaces;
|
|
110
108
|
private getString;
|
|
111
|
-
private resolveIdRange;
|
|
112
109
|
}
|
|
113
110
|
export declare class Parser {
|
|
114
111
|
index: number;
|
|
@@ -120,14 +117,13 @@ export declare class Parser {
|
|
|
120
117
|
}
|
|
121
118
|
/** Alias for Parser, exported for external tooling (e.g. Debugger). */
|
|
122
119
|
export declare const FormulaParser: typeof Parser;
|
|
123
|
-
export declare const identifyFormula: (value: any, { idMap, ...props }: IdentifyProps) => any;
|
|
124
120
|
export declare const stripSheetName: (sheetName: string) => string;
|
|
125
121
|
export declare function splitRef(ref: string): {
|
|
126
122
|
sheetName: string | undefined;
|
|
127
123
|
addresses: string[];
|
|
128
124
|
};
|
|
129
|
-
export declare const parseRef: (ref: string, {
|
|
130
|
-
|
|
125
|
+
export declare const parseRef: (ref: string, { sheet, operation, dependency }: IdentifyProps) => {
|
|
126
|
+
sheet: Sheet;
|
|
131
127
|
sheetId?: number;
|
|
132
128
|
formula?: string;
|
|
133
129
|
sheetName?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"evaluator.d.ts","sourceRoot":"","sources":["../../src/formula/evaluator.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AACrC,OAAO,EAAE,EAAE,
|
|
1
|
+
{"version":3,"file":"evaluator.d.ts","sourceRoot":"","sources":["../../src/formula/evaluator.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class FormulaError {
|
|
2
|
+
code: string;
|
|
3
|
+
message: string;
|
|
4
|
+
error?: Error;
|
|
5
|
+
readonly __gsType: "FormulaError";
|
|
6
|
+
constructor(code: string, message: string, error?: Error);
|
|
7
|
+
static is(obj: any): obj is FormulaError;
|
|
8
|
+
toString(): string;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=formula-error.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formula-error.d.ts","sourceRoot":"","sources":["../../src/formula/formula-error.ts"],"names":[],"mappings":"AAAA,qBAAa,YAAY;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC;IACrB,SAAgB,QAAQ,EAAG,cAAc,CAAU;gBACvC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;IAKxD,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,YAAY;IAGxC,QAAQ;CAGT"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Pending, Sentinel } from '../../sentinels';
|
|
2
|
-
import {
|
|
3
|
-
import { PointType } from '../../types';
|
|
2
|
+
import { Registry } from '../../lib/book';
|
|
3
|
+
import { Id, PointType } from '../../types';
|
|
4
4
|
/**
|
|
5
5
|
* Sentinel value to distinguish cache miss from user-returned undefined/null.
|
|
6
6
|
* Since user functions can return undefined or null, we need a special marker
|
|
@@ -9,6 +9,11 @@ import { PointType } from '../../types';
|
|
|
9
9
|
export declare const asyncCacheMiss: Sentinel;
|
|
10
10
|
/** Returns true if any element of `args` is a Pending sentinel. */
|
|
11
11
|
export declare const hasPendingArg: (args: any[]) => boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Recursively check whether any value in the structure is a Pending sentinel.
|
|
14
|
+
* Handles flat values, nested arrays, and Sheet objects (via getFieldMatrix).
|
|
15
|
+
*/
|
|
16
|
+
export declare const hasDeepPending: (values: any[], at: Id) => boolean;
|
|
12
17
|
/**
|
|
13
18
|
* Build a cache key from function name + hashed serialised arguments.
|
|
14
19
|
*
|
|
@@ -16,11 +21,11 @@ export declare const hasPendingArg: (args: any[]) => boolean;
|
|
|
16
21
|
* - length: byte length of the JSON-serialised args
|
|
17
22
|
* - hash: cyrb53 hash of the JSON string, repeated hashPrecision times with different seeds
|
|
18
23
|
*
|
|
19
|
-
* When a
|
|
24
|
+
* When a Sheet appears as an argument its trimmed area is converted to a
|
|
20
25
|
* value matrix (`any[][]`) via `getFieldMatrix()` so the key reflects the
|
|
21
26
|
* actual cell values the function will operate on.
|
|
22
27
|
*/
|
|
23
|
-
export declare const buildAsyncCacheKey: (funcName: string,
|
|
28
|
+
export declare const buildAsyncCacheKey: (funcName: string, args: any[], hashPrecision?: number) => string;
|
|
24
29
|
/**
|
|
25
30
|
* Try to retrieve a cached or pending async result for the given cache key.
|
|
26
31
|
*
|
|
@@ -29,16 +34,16 @@ export declare const buildAsyncCacheKey: (funcName: string, bareArgs: any[], has
|
|
|
29
34
|
* - Pending if there is an in-flight promise for this cell
|
|
30
35
|
* - asyncCacheMiss if no cache/pending exists (distinguishes from user-returned undefined/null)
|
|
31
36
|
*/
|
|
32
|
-
export declare const getAsyncCache: (
|
|
33
|
-
|
|
37
|
+
export declare const getAsyncCache: (sheet: {
|
|
38
|
+
registry: Registry;
|
|
34
39
|
getId: (p: PointType) => string;
|
|
35
|
-
},
|
|
40
|
+
}, id: Id, key: string, useInflight?: boolean) => any;
|
|
36
41
|
/**
|
|
37
42
|
* Handle an async (Promise) result returned by BaseFunction.main().
|
|
38
43
|
*
|
|
39
44
|
* Cache is stored per-cell in cell.asyncCache.
|
|
40
|
-
* In-flight tracking uses
|
|
41
|
-
* If useInflight is true, also tracks by cache key in
|
|
45
|
+
* In-flight tracking uses Binding.asyncPending (keyed by cell ID).
|
|
46
|
+
* If useInflight is true, also tracks by cache key in Binding.asyncInflight.
|
|
42
47
|
*
|
|
43
48
|
* Flow:
|
|
44
49
|
* 1. If cell has asyncCache and the key matches (inputs unchanged) and not expired → return cached value
|
|
@@ -50,10 +55,10 @@ export declare const getAsyncCache: (table: {
|
|
|
50
55
|
* @param ttlMilliseconds - Cache time-to-live in **milliseconds**. undefined = never expires.
|
|
51
56
|
* @param useInflight - If true, reuse the same promise for matching cache keys across different cells.
|
|
52
57
|
*/
|
|
53
|
-
export declare const awaitAndSave: (promise: Promise<any>,
|
|
54
|
-
|
|
58
|
+
export declare const awaitAndSave: (promise: Promise<any>, sheet: {
|
|
59
|
+
registry: Registry;
|
|
55
60
|
getId: (p: PointType) => string;
|
|
56
|
-
},
|
|
61
|
+
}, id: Id, key: string, ttlMilliseconds?: number, useInflight?: boolean) => Pending;
|
|
57
62
|
/**
|
|
58
63
|
* Create a Pending sentinel that resolves immediately.
|
|
59
64
|
* Used when an argument is already pending — the result is propagated.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"__async.d.ts","sourceRoot":"","sources":["../../../src/formula/functions/__async.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,
|
|
1
|
+
{"version":3,"file":"__async.d.ts","sourceRoot":"","sources":["../../../src/formula/functions/__async.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAY,MAAM,iBAAiB,CAAC;AAG9D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAY,EAAE,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAI3D;;;;GAIG;AACH,eAAO,MAAM,cAAc,UAAiC,CAAC;AAE7D,mEAAmE;AACnE,eAAO,MAAM,aAAa,GAAI,MAAM,GAAG,EAAE,KAAG,OAE3C,CAAC;AAMF;;;GAGG;AACH,eAAO,MAAM,cAAc,GAAI,QAAQ,GAAG,EAAE,EAAE,IAAI,EAAE,KAAG,OAsBtD,CAAC;AAqBF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,kBAAkB,GAAI,UAAU,MAAM,EAAE,MAAM,GAAG,EAAE,EAAE,gBAAe,MAAU,KAAG,MAY7F,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,GACxB,OAAO;IAAE,QAAQ,EAAE,QAAQ,CAAC;IAAC,KAAK,EAAE,CAAC,CAAC,EAAE,SAAS,KAAK,MAAM,CAAA;CAAE,EAC9D,IAAI,EAAE,EACN,KAAK,MAAM,EACX,cAAa,OAAe,KAC3B,GA6DF,CAAC;AAEF;;;;;;;;;;;;;;;;GAgBG;AACH,eAAO,MAAM,YAAY,GACvB,SAAS,OAAO,CAAC,GAAG,CAAC,EACrB,OAAO;IAAE,QAAQ,EAAE,QAAQ,CAAC;IAAC,KAAK,EAAE,CAAC,CAAC,EAAE,SAAS,KAAK,MAAM,CAAA;CAAE,EAC9D,IAAI,EAAE,EACN,KAAK,MAAM,EACX,kBAAkB,MAAM,EACxB,cAAa,OAAe,KAC3B,OAmDF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,QAAO,OAE1C,CAAC"}
|