@gridsheet/preact-core 2.0.0-rc.0
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 +9 -0
- package/dist/components/ContextMenu.d.ts +20 -0
- package/dist/components/Editor.d.ts +10 -0
- package/dist/components/Emitter.d.ts +9 -0
- package/dist/components/Fixed.d.ts +10 -0
- package/dist/components/FormulaBar.d.ts +2 -0
- package/dist/components/GridSheet.d.ts +3 -0
- package/dist/components/HeaderCellLeft.d.ts +7 -0
- package/dist/components/HeaderCellTop.d.ts +7 -0
- package/dist/components/PluginBase.d.ts +21 -0
- package/dist/components/Resizer.d.ts +2 -0
- package/dist/components/ScrollHandle.d.ts +9 -0
- package/dist/components/SearchBar.d.ts +2 -0
- package/dist/components/StoreObserver.d.ts +8 -0
- package/dist/components/Tabular.d.ts +8 -0
- package/dist/components/hooks.d.ts +10 -0
- package/dist/components/svg/AddIcon.d.ts +3 -0
- package/dist/components/svg/Base.d.ts +12 -0
- package/dist/components/svg/CloseIcon.d.ts +3 -0
- package/dist/components/svg/SearchIcon.d.ts +3 -0
- package/dist/constants.d.ts +21 -0
- package/dist/formula/evaluator.d.ts +120 -0
- package/dist/formula/functions/__base.d.ts +26 -0
- package/dist/formula/functions/__utils.d.ts +12 -0
- package/dist/formula/functions/abs.d.ts +12 -0
- package/dist/formula/functions/acos.d.ts +12 -0
- package/dist/formula/functions/add.d.ts +13 -0
- package/dist/formula/functions/and.d.ts +19 -0
- package/dist/formula/functions/asin.d.ts +12 -0
- package/dist/formula/functions/atan.d.ts +12 -0
- package/dist/formula/functions/atan2.d.ts +12 -0
- package/dist/formula/functions/average.d.ts +19 -0
- package/dist/formula/functions/col.d.ts +13 -0
- package/dist/formula/functions/concat.d.ts +12 -0
- package/dist/formula/functions/concatenate.d.ts +19 -0
- package/dist/formula/functions/cos.d.ts +12 -0
- package/dist/formula/functions/count.d.ts +19 -0
- package/dist/formula/functions/counta.d.ts +19 -0
- package/dist/formula/functions/countif.d.ts +13 -0
- package/dist/formula/functions/divide.d.ts +12 -0
- package/dist/formula/functions/eq.d.ts +12 -0
- package/dist/formula/functions/exp.d.ts +12 -0
- package/dist/formula/functions/gt.d.ts +12 -0
- package/dist/formula/functions/gte.d.ts +12 -0
- package/dist/formula/functions/hlookup.d.ts +18 -0
- package/dist/formula/functions/if.d.ts +17 -0
- package/dist/formula/functions/iferror.d.ts +20 -0
- package/dist/formula/functions/len.d.ts +12 -0
- package/dist/formula/functions/lenb.d.ts +12 -0
- package/dist/formula/functions/ln.d.ts +12 -0
- package/dist/formula/functions/log.d.ts +12 -0
- package/dist/formula/functions/log10.d.ts +12 -0
- package/dist/formula/functions/lt.d.ts +12 -0
- package/dist/formula/functions/lte.d.ts +12 -0
- package/dist/formula/functions/max.d.ts +19 -0
- package/dist/formula/functions/min.d.ts +19 -0
- package/dist/formula/functions/minus.d.ts +13 -0
- package/dist/formula/functions/mod.d.ts +12 -0
- package/dist/formula/functions/multiply.d.ts +12 -0
- package/dist/formula/functions/ne.d.ts +12 -0
- package/dist/formula/functions/not.d.ts +12 -0
- package/dist/formula/functions/now.d.ts +9 -0
- package/dist/formula/functions/or.d.ts +19 -0
- package/dist/formula/functions/pi.d.ts +9 -0
- package/dist/formula/functions/power.d.ts +12 -0
- package/dist/formula/functions/product.d.ts +19 -0
- package/dist/formula/functions/radians.d.ts +12 -0
- package/dist/formula/functions/rand.d.ts +9 -0
- package/dist/formula/functions/round.d.ts +17 -0
- package/dist/formula/functions/rounddown.d.ts +17 -0
- package/dist/formula/functions/roundup.d.ts +17 -0
- package/dist/formula/functions/row.d.ts +13 -0
- package/dist/formula/functions/sin.d.ts +12 -0
- package/dist/formula/functions/sqrt.d.ts +12 -0
- package/dist/formula/functions/sum.d.ts +19 -0
- package/dist/formula/functions/sumif.d.ts +18 -0
- package/dist/formula/functions/tan.d.ts +12 -0
- package/dist/formula/functions/uminus.d.ts +12 -0
- package/dist/formula/functions/vlookup.d.ts +18 -0
- package/dist/formula/mapping.d.ts +3 -0
- package/dist/formula/solver.d.ts +16 -0
- package/dist/index.d.ts +60 -0
- package/dist/index.js +7166 -0
- package/dist/lib/autofill.d.ts +17 -0
- package/dist/lib/clipboard.d.ts +3 -0
- package/dist/lib/converters.d.ts +10 -0
- package/dist/lib/events.d.ts +6 -0
- package/dist/lib/hub.d.ts +39 -0
- package/dist/lib/input.d.ts +15 -0
- package/dist/lib/operation.d.ts +27 -0
- package/dist/lib/palette.d.ts +2 -0
- package/dist/lib/paste.d.ts +4 -0
- package/dist/lib/sheet.d.ts +3 -0
- package/dist/lib/structs.d.ts +64 -0
- package/dist/lib/table.d.ts +388 -0
- package/dist/lib/time.d.ts +24 -0
- package/dist/lib/virtualization.d.ts +22 -0
- package/dist/parsers/core.d.ts +36 -0
- package/dist/policy/core.d.ts +47 -0
- package/dist/renderers/checkbox.d.ts +5 -0
- package/dist/renderers/core.d.ts +62 -0
- package/dist/renderers/thousand_separator.d.ts +4 -0
- package/dist/store/actions.d.ts +194 -0
- package/dist/store/dispatchers.d.ts +13 -0
- package/dist/store/helpers.d.ts +31 -0
- package/dist/store/index.d.ts +10 -0
- package/dist/styles/embedder.d.ts +2 -0
- package/dist/styles/minified.d.ts +3 -0
- package/dist/types.d.ts +310 -0
- package/dist/utils.d.ts +2 -0
- package/exports.ts +35 -0
- package/index.ts +3 -0
- package/package.json +28 -0
- package/tsconfig.json +25 -0
- package/vite.config.js +37 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export { GridSheet } from './components/GridSheet';
|
|
2
|
+
export { createTableRef } from './components/Tabular';
|
|
3
|
+
export { Renderer } from './renderers/core';
|
|
4
|
+
export type { RendererMixinType, RendererCallProps, RenderProps } from './renderers/core';
|
|
5
|
+
export { Parser } from './parsers/core';
|
|
6
|
+
export type { ParserMixinType } from './parsers/core';
|
|
7
|
+
export { oa2aa, aa2oa, buildInitialCells, buildInitialCellsOrigin, zoneToArea, areaToZone, areaToRange, } from './lib/structs';
|
|
8
|
+
export { TimeDelta } from './lib/time';
|
|
9
|
+
export { x2c, c2x, y2r, r2y, p2a, a2p } from './lib/converters';
|
|
10
|
+
export { updateTable } from './store/actions';
|
|
11
|
+
export { PluginBase, useInitialPluginContext, usePluginContext } from './components/PluginBase';
|
|
12
|
+
export type { MatrixType, CellType, FeedbackType, OptionsType, WriterType, CellsByAddressType, CellsByIdType, ModeType, HeadersType, HistoryType, StoreType, PointType, AreaType, ZoneType, Props, TableRef, HubPatchType, } from './types';
|
|
13
|
+
export type { HubReactiveType } from './lib/hub';
|
|
14
|
+
export { Hub, useHubReactive, createHubReactive } from './lib/hub';
|
|
15
|
+
export type { Dispatcher } from './store';
|
|
16
|
+
export { ThousandSeparatorRendererMixin } from './renderers/thousand_separator';
|
|
17
|
+
export { CheckboxRendererMixin } from './renderers/checkbox';
|
|
18
|
+
export { BaseFunction } from './formula/functions/__base';
|
|
19
|
+
export { Table } from './lib/table';
|
|
20
|
+
export { Policy } from './policy/core';
|
|
21
|
+
export type { PolicyType, PolicyOption, PolicyMixinType } from './policy/core';
|
|
22
|
+
export * as operations from './lib/operation';
|
|
23
|
+
export { DEFAULT_HISTORY_LIMIT } from './constants';
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
25
|
+
export { h, render } from "preact";
|
|
26
|
+
export {
|
|
27
|
+
useState,
|
|
28
|
+
useReducer,
|
|
29
|
+
useEffect,
|
|
30
|
+
useLayoutEffect,
|
|
31
|
+
useRef,
|
|
32
|
+
useImperativeHandle,
|
|
33
|
+
useMemo,
|
|
34
|
+
useCallback,
|
|
35
|
+
useContext,
|
|
36
|
+
useDebugValue,
|
|
37
|
+
createElement,
|
|
38
|
+
createContext,
|
|
39
|
+
createRef,
|
|
40
|
+
Fragment,
|
|
41
|
+
Component,
|
|
42
|
+
version,
|
|
43
|
+
Children,
|
|
44
|
+
render as compatRender,
|
|
45
|
+
hydrate,
|
|
46
|
+
unmountComponentAtNode,
|
|
47
|
+
createPortal,
|
|
48
|
+
createFactory,
|
|
49
|
+
cloneElement,
|
|
50
|
+
isValidElement,
|
|
51
|
+
findDOMNode,
|
|
52
|
+
PureComponent,
|
|
53
|
+
memo,
|
|
54
|
+
forwardRef,
|
|
55
|
+
unstable_batchedUpdates,
|
|
56
|
+
StrictMode,
|
|
57
|
+
Suspense,
|
|
58
|
+
SuspenseList,
|
|
59
|
+
lazy,
|
|
60
|
+
} from 'preact/compat';
|