buckaroo-js-core 0.8.4 → 0.11.7
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/LICENSE +24 -12
- package/README.md +55 -51
- package/dist/index.cjs.js +114 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.es.js +60790 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.esm.js +60790 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/jest.setup.d.ts +0 -0
- package/dist/src/SampleComponent.d.ts +10 -0
- package/{buckaroo_js → dist/src}/baked_data/colorMap.d.ts +0 -1
- package/dist/src/baked_data/olympic-winners.d.ts +12 -0
- package/dist/src/components/BuckarooInfiniteWidget.flash.test.d.ts +1 -0
- package/dist/src/components/BuckarooStaticTable.d.ts +26 -0
- package/dist/src/components/BuckarooWidgetInfinite.d.ts +38 -0
- package/{buckaroo_js → dist/src}/components/ColumnsEditor.d.ts +5 -8
- package/{buckaroo_js → dist/src}/components/CommandUtils.d.ts +8 -5
- package/dist/src/components/DCFCell.d.ts +19 -0
- package/dist/src/components/DFViewerParts/ChartCell.d.ts +43 -0
- package/dist/src/components/DFViewerParts/DFViewerConfigs.d.ts +5 -0
- package/dist/src/components/DFViewerParts/DFViewerDataHelper.d.ts +20 -0
- package/dist/src/components/DFViewerParts/DFViewerInfinite.d.ts +43 -0
- package/dist/src/components/DFViewerParts/DFViewerInfinite.flash.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/DFViewerInfinite.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/DFWhole.d.ts +173 -0
- package/{buckaroo_js → dist/src}/components/DFViewerParts/Displayer.d.ts +20 -6
- package/dist/src/components/DFViewerParts/HistogramCell.d.ts +29 -0
- package/dist/src/components/DFViewerParts/HistogramCell.hooks.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/OtherRenderers.d.ts +5 -0
- package/dist/src/components/DFViewerParts/RowCache.d.ts +61 -0
- package/dist/src/components/DFViewerParts/RowCache.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/RowStore.d.ts +22 -0
- package/dist/src/components/DFViewerParts/RowStore.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/RowStoreGc.d.ts +22 -0
- package/dist/src/components/DFViewerParts/RowStoreGc.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/SeriesSummaryTooltip.d.ts +13 -0
- package/dist/src/components/DFViewerParts/SmartRowCache.d.ts +83 -0
- package/dist/src/components/DFViewerParts/SmartRowCache.test.d.ts +23 -0
- package/dist/src/components/DFViewerParts/Styler.d.ts +33 -0
- package/dist/src/components/DFViewerParts/TableInfinite.d.ts +10 -0
- package/dist/src/components/DFViewerParts/ViewRegistry.d.ts +21 -0
- package/dist/src/components/DFViewerParts/ViewRegistry.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/Views.d.ts +53 -0
- package/dist/src/components/DFViewerParts/Views.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/autocleaning.toggle.integration.test.d.ts +27 -0
- package/dist/src/components/DFViewerParts/gridUtils.d.ts +81 -0
- package/dist/src/components/DFViewerParts/gridUtils.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/resolveDFData.d.ts +29 -0
- package/dist/src/components/DFViewerParts/resolveDFData.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/xorqWindow.dom.test.d.ts +1 -0
- package/dist/src/components/DFViewerParts/xorqWindow.test.d.ts +1 -0
- package/{buckaroo_js → dist/src}/components/DependentTabs.d.ts +8 -13
- package/dist/src/components/MessageBox.d.ts +8 -0
- package/{buckaroo_js → dist/src}/components/OperationDetail.d.ts +4 -6
- package/dist/src/components/OperationExamples.d.ts +8 -0
- package/{buckaroo_js → dist/src}/components/OperationUtils.d.ts +1 -1
- package/dist/src/components/Operations.d.ts +14 -0
- package/dist/src/components/Operations.test.d.ts +4 -0
- package/dist/src/components/OperationsList.d.ts +9 -0
- package/dist/src/components/OperationsList.test.d.ts +0 -0
- package/dist/src/components/StatusBar.d.ts +15 -0
- package/{buckaroo_js → dist/src}/components/WidgetTypes.d.ts +3 -4
- package/dist/src/components/useColorScheme.d.ts +7 -0
- package/dist/src/components/utils.d.ts +299 -0
- package/dist/src/index.d.ts +59 -0
- package/dist/src/stories/BuckarooWidgetTest.stories.d.ts +12 -0
- package/dist/src/stories/ChartCell.stories.d.ts +20 -0
- package/dist/src/stories/ColumnsEditor.stories.d.ts +17 -0
- package/dist/src/stories/DFViewer.stories.d.ts +26 -0
- package/dist/src/stories/DFViewerInfiniteRaw.stories.d.ts +24 -0
- package/dist/src/stories/DFViewerInfiniteShadow.stories.d.ts +31 -0
- package/dist/src/stories/HistogramCell.stories.d.ts +18 -0
- package/dist/src/stories/InheritEdgeCases.stories.d.ts +12 -0
- package/dist/src/stories/InheritPinnedRows.stories.d.ts +13 -0
- package/dist/src/stories/MessageBox.stories.d.ts +26 -0
- package/dist/src/stories/OperationViewer.stories.d.ts +24 -0
- package/dist/src/stories/OperationsList.stories.d.ts +19 -0
- package/dist/src/stories/OutsideParamsInconsistency.stories.d.ts +16 -0
- package/dist/src/stories/PinnedRowsDynamic.stories.d.ts +12 -0
- package/dist/src/stories/PinnedRowsRace.stories.d.ts +12 -0
- package/dist/src/stories/PinnedRowsTranscriptReplayer.stories.d.ts +13 -0
- package/dist/src/stories/RawAGGrid.stories.d.ts +17 -0
- package/dist/src/stories/SmallDFScroll.stories.d.ts +11 -0
- package/dist/src/stories/StatusBar.stories.d.ts +19 -0
- package/dist/src/stories/StoryUtils.d.ts +13 -0
- package/dist/src/stories/Styling.stories.d.ts +15 -0
- package/dist/src/stories/StylingIssues.stories.d.ts +54 -0
- package/dist/src/stories/ThemeCustomization.stories.d.ts +22 -0
- package/dist/src/stories/UseMemoExamples.stories.d.ts +12 -0
- package/dist/src/stories/WeirdTypes.stories.d.ts +17 -0
- package/dist/src/test-utils/agGridSpy.d.ts +50 -0
- package/dist/src/widgetUtils.d.ts +1 -0
- package/dist/style.css +1 -0
- package/package.json +109 -101
- package/.prettierrc +0 -16
- package/CHANGELOG.md +0 -23
- package/buckaroo_js/baked_data/colorMap.d.ts.map +0 -1
- package/buckaroo_js/baked_data/colorMap.js +0 -520
- package/buckaroo_js/baked_data/colorMap.js.map +0 -1
- package/buckaroo_js/baked_data/staticData.d.ts +0 -124
- package/buckaroo_js/baked_data/staticData.d.ts.map +0 -1
- package/buckaroo_js/baked_data/staticData.js +0 -459
- package/buckaroo_js/baked_data/staticData.js.map +0 -1
- package/buckaroo_js/components/ColumnsEditor.d.ts.map +0 -1
- package/buckaroo_js/components/ColumnsEditor.js +0 -68
- package/buckaroo_js/components/ColumnsEditor.js.map +0 -1
- package/buckaroo_js/components/CommandUtils.d.ts.map +0 -1
- package/buckaroo_js/components/CommandUtils.js +0 -17
- package/buckaroo_js/components/CommandUtils.js.map +0 -1
- package/buckaroo_js/components/DCFCell.d.ts +0 -28
- package/buckaroo_js/components/DCFCell.d.ts.map +0 -1
- package/buckaroo_js/components/DCFCell.js +0 -120
- package/buckaroo_js/components/DCFCell.js.map +0 -1
- package/buckaroo_js/components/DFViewerParts/DFViewer.d.ts +0 -29
- package/buckaroo_js/components/DFViewerParts/DFViewer.d.ts.map +0 -1
- package/buckaroo_js/components/DFViewerParts/DFViewer.js +0 -163
- package/buckaroo_js/components/DFViewerParts/DFViewer.js.map +0 -1
- package/buckaroo_js/components/DFViewerParts/DFWhole.d.ts +0 -111
- package/buckaroo_js/components/DFViewerParts/DFWhole.d.ts.map +0 -1
- package/buckaroo_js/components/DFViewerParts/DFWhole.js +0 -17
- package/buckaroo_js/components/DFViewerParts/DFWhole.js.map +0 -1
- package/buckaroo_js/components/DFViewerParts/Displayer.d.ts.map +0 -1
- package/buckaroo_js/components/DFViewerParts/Displayer.js +0 -221
- package/buckaroo_js/components/DFViewerParts/Displayer.js.map +0 -1
- package/buckaroo_js/components/DFViewerParts/HistogramCell.d.ts +0 -20
- package/buckaroo_js/components/DFViewerParts/HistogramCell.d.ts.map +0 -1
- package/buckaroo_js/components/DFViewerParts/HistogramCell.js +0 -184
- package/buckaroo_js/components/DFViewerParts/HistogramCell.js.map +0 -1
- package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.d.ts +0 -5
- package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.d.ts.map +0 -1
- package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.js +0 -18
- package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.js.map +0 -1
- package/buckaroo_js/components/DFViewerParts/gridUtils.d.ts +0 -24
- package/buckaroo_js/components/DFViewerParts/gridUtils.d.ts.map +0 -1
- package/buckaroo_js/components/DFViewerParts/gridUtils.js +0 -230
- package/buckaroo_js/components/DFViewerParts/gridUtils.js.map +0 -1
- package/buckaroo_js/components/DependentTabs.d.ts.map +0 -1
- package/buckaroo_js/components/DependentTabs.js +0 -108
- package/buckaroo_js/components/DependentTabs.js.map +0 -1
- package/buckaroo_js/components/OperationDetail.d.ts.map +0 -1
- package/buckaroo_js/components/OperationDetail.js +0 -144
- package/buckaroo_js/components/OperationDetail.js.map +0 -1
- package/buckaroo_js/components/OperationUtils.d.ts.map +0 -1
- package/buckaroo_js/components/OperationUtils.js +0 -14
- package/buckaroo_js/components/OperationUtils.js.map +0 -1
- package/buckaroo_js/components/Operations.d.ts +0 -24
- package/buckaroo_js/components/Operations.d.ts.map +0 -1
- package/buckaroo_js/components/Operations.js +0 -209
- package/buckaroo_js/components/Operations.js.map +0 -1
- package/buckaroo_js/components/StatusBar.d.ts +0 -12
- package/buckaroo_js/components/StatusBar.d.ts.map +0 -1
- package/buckaroo_js/components/StatusBar.js +0 -155
- package/buckaroo_js/components/StatusBar.js.map +0 -1
- package/buckaroo_js/components/WidgetTypes.d.ts.map +0 -1
- package/buckaroo_js/components/WidgetTypes.js +0 -3
- package/buckaroo_js/components/WidgetTypes.js.map +0 -1
- package/buckaroo_js/components/bakedOperationDefaults.d.ts +0 -5
- package/buckaroo_js/components/bakedOperationDefaults.d.ts.map +0 -1
- package/buckaroo_js/components/bakedOperationDefaults.js +0 -15
- package/buckaroo_js/components/bakedOperationDefaults.js.map +0 -1
- package/buckaroo_js/components/utils.d.ts +0 -294
- package/buckaroo_js/components/utils.d.ts.map +0 -1
- package/buckaroo_js/components/utils.js +0 -143
- package/buckaroo_js/components/utils.js.map +0 -1
- package/buckaroo_js/extension.d.ts +0 -2
- package/buckaroo_js/extension.d.ts.map +0 -1
- package/buckaroo_js/extension.js +0 -20
- package/buckaroo_js/extension.js.map +0 -1
- package/buckaroo_js/index.d.ts +0 -25
- package/buckaroo_js/index.d.ts.map +0 -1
- package/buckaroo_js/index.js +0 -46
- package/buckaroo_js/index.js.map +0 -1
- package/buckaroo_js/vendor/RechartExtra.d.ts +0 -38
- package/buckaroo_js/vendor/RechartExtra.d.ts.map +0 -1
- package/buckaroo_js/vendor/RechartExtra.js +0 -17
- package/buckaroo_js/vendor/RechartExtra.js.map +0 -1
- package/buckaroo_js/vendor/RechartTooltip.d.ts +0 -82
- package/buckaroo_js/vendor/RechartTooltip.d.ts.map +0 -1
- package/buckaroo_js/vendor/RechartTooltip.js +0 -231
- package/buckaroo_js/vendor/RechartTooltip.js.map +0 -1
- package/codecov.yml +0 -16
- package/eslint.config.mjs +0 -88
- package/examples/App.tsx +0 -160
- package/examples/CodeBlock.tsx +0 -27
- package/examples/CodePenButton.tsx +0 -72
- package/examples/ReadmeBlock.tsx +0 -11
- package/examples/app.css +0 -29
- package/examples/ex/ColumnsEditorEx.tsx +0 -5
- package/examples/ex/CommandViewerEx.tsx +0 -18
- package/examples/ex/DFViewerEx.tsx +0 -3
- package/examples/ex/DFViewerEx_large.tsx +0 -266
- package/examples/ex/DFViewerEx_real_summary.tsx +0 -18
- package/examples/ex/DFViewerEx_short_data.tsx +0 -22
- package/examples/ex/DFViewerEx_string_index.tsx +0 -1012
- package/examples/ex/HistogramEx.tsx +0 -66
- package/examples/ex/StatusBarEx.tsx +0 -46
- package/examples/ex/WidgetDCFCellEx.tsx +0 -6
- package/examples/example.css +0 -20
- package/examples/index-iframe.hnottml +0 -24
- package/examples/index-react18.tsx +0 -8
- package/examples/index.html +0 -20
- package/examples/jsx-loader.ts +0 -16
- package/examples/tsconfig.json +0 -31
- package/index.d.ts +0 -2
- package/index.d.ts.map +0 -1
- package/index.js +0 -7
- package/index.js.map +0 -1
- package/jest.config.js +0 -24
- package/screen-animation.gif +0 -0
- package/src/buckaroo_js/baked_data/colorMap.ts +0 -523
- package/src/buckaroo_js/baked_data/staticData.ts +0 -503
- package/src/buckaroo_js/components/ColumnsEditor.tsx +0 -66
- package/src/buckaroo_js/components/CommandUtils.ts +0 -40
- package/src/buckaroo_js/components/DCFCell.tsx +0 -175
- package/src/buckaroo_js/components/DFViewerParts/DFViewer.tsx +0 -215
- package/src/buckaroo_js/components/DFViewerParts/DFWhole.ts +0 -190
- package/src/buckaroo_js/components/DFViewerParts/Displayer.ts +0 -215
- package/src/buckaroo_js/components/DFViewerParts/HistogramCell.tsx +0 -251
- package/src/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.tsx +0 -20
- package/src/buckaroo_js/components/DFViewerParts/gridUtils.ts +0 -290
- package/src/buckaroo_js/components/DependentTabs.tsx +0 -134
- package/src/buckaroo_js/components/OperationDetail.tsx +0 -203
- package/src/buckaroo_js/components/OperationUtils.ts +0 -33
- package/src/buckaroo_js/components/Operations.tsx +0 -243
- package/src/buckaroo_js/components/StatusBar.tsx +0 -190
- package/src/buckaroo_js/components/WidgetTypes.tsx +0 -42
- package/src/buckaroo_js/components/bakedOperationDefaults.ts +0 -14
- package/src/buckaroo_js/components/utils.ts +0 -60
- package/src/buckaroo_js/extension.ts +0 -15
- package/src/buckaroo_js/index.ts +0 -34
- package/src/buckaroo_js/style/dcf-npm.css +0 -244
- package/src/buckaroo_js/style/icons/arrow-down-short-dark.svg +0 -4
- package/src/buckaroo_js/style/icons/arrow-down-short.svg +0 -4
- package/src/buckaroo_js/style/icons/arrow-up-short-dark.svg +0 -4
- package/src/buckaroo_js/style/icons/arrow-up-short.svg +0 -4
- package/src/buckaroo_js/style/icons/filter-dark.svg +0 -3
- package/src/buckaroo_js/style/icons/filter.svg +0 -3
- package/src/buckaroo_js/vendor/RechartExtra.ts +0 -60
- package/src/buckaroo_js/vendor/RechartTooltip.tsx +0 -356
- package/src/index.tsx +0 -3
- package/tsconfig.json +0 -41
- package/webpack.config.ts +0 -98
|
@@ -1,294 +0,0 @@
|
|
|
1
|
-
import { DFWhole } from './DFViewerParts/DFWhole';
|
|
2
|
-
import { ColDef } from 'ag-grid-community';
|
|
3
|
-
export type setDFFunc = (newDf: DFWhole) => void;
|
|
4
|
-
export declare const requestDf: (url: string, setCallBack: setDFFunc) => Promise<void>;
|
|
5
|
-
export declare const sym: (symbolName: string) => {
|
|
6
|
-
symbol: string;
|
|
7
|
-
};
|
|
8
|
-
export declare function replaceInArr<T>(arr: T[], old: T, subst: T): T[];
|
|
9
|
-
export declare function replaceAtIdx<T>(arr: T[], idx: number, subst: T): T[];
|
|
10
|
-
export declare function replaceAtKey<T>(obj: Record<string, T>, key: string, subst: T): Record<string, T>;
|
|
11
|
-
export declare const objWithoutNull: (obj: Record<string, string>, extraStrips?: string[]) => any;
|
|
12
|
-
export declare const updateAtMatch: (cols: ColDef[], key: string, subst: Partial<ColDef>, negative: Partial<ColDef>) => {
|
|
13
|
-
colId?: string | undefined;
|
|
14
|
-
field?: string | undefined;
|
|
15
|
-
type?: string | string[] | undefined;
|
|
16
|
-
cellDataType?: string | boolean | undefined;
|
|
17
|
-
valueGetter?: string | import("ag-grid-community").ValueGetterFunc<any, any> | undefined;
|
|
18
|
-
valueFormatter?: string | import("ag-grid-community").ValueFormatterFunc<any, any> | undefined;
|
|
19
|
-
refData?: {
|
|
20
|
-
[key: string]: string;
|
|
21
|
-
} | undefined;
|
|
22
|
-
keyCreator?: ((params: import("ag-grid-community").KeyCreatorParams<any, any>) => string) | undefined;
|
|
23
|
-
equals?: ((valueA: any, valueB: any) => boolean) | undefined;
|
|
24
|
-
tooltipField?: string | undefined;
|
|
25
|
-
tooltipValueGetter?: ((params: import("ag-grid-community").ITooltipParams<any, any, any>) => any) | undefined;
|
|
26
|
-
checkboxSelection?: boolean | import("ag-grid-community").CheckboxSelectionCallback<any, any> | undefined;
|
|
27
|
-
showDisabledCheckboxes?: boolean | undefined;
|
|
28
|
-
icons?: {
|
|
29
|
-
[key: string]: string | Function;
|
|
30
|
-
} | undefined;
|
|
31
|
-
suppressNavigable?: boolean | import("ag-grid-community").SuppressNavigableCallback<any, any> | undefined;
|
|
32
|
-
suppressKeyboardEvent?: ((params: import("ag-grid-community").SuppressKeyboardEventParams<any, any>) => boolean) | undefined;
|
|
33
|
-
suppressPaste?: boolean | import("ag-grid-community").SuppressPasteCallback<any, any> | undefined;
|
|
34
|
-
suppressFillHandle?: boolean | undefined;
|
|
35
|
-
hide?: boolean | undefined;
|
|
36
|
-
initialHide?: boolean | undefined;
|
|
37
|
-
lockVisible?: boolean | undefined;
|
|
38
|
-
lockPosition?: boolean | "left" | "right" | undefined;
|
|
39
|
-
suppressMovable?: boolean | undefined;
|
|
40
|
-
useValueFormatterForExport?: boolean | undefined;
|
|
41
|
-
editable?: boolean | import("ag-grid-community").EditableCallback<any, any> | undefined;
|
|
42
|
-
valueSetter?: string | import("ag-grid-community").ValueSetterFunc<any, any> | undefined;
|
|
43
|
-
valueParser?: string | import("ag-grid-community").ValueParserFunc<any, any> | undefined;
|
|
44
|
-
cellEditor?: any;
|
|
45
|
-
cellEditorParams?: any;
|
|
46
|
-
cellEditorSelector?: import("ag-grid-community").CellEditorSelectorFunc<any, any> | undefined;
|
|
47
|
-
singleClickEdit?: boolean | undefined;
|
|
48
|
-
cellEditorPopup?: boolean | undefined;
|
|
49
|
-
cellEditorPopupPosition?: "over" | "under" | undefined;
|
|
50
|
-
useValueParserForImport?: boolean | undefined;
|
|
51
|
-
onCellValueChanged?: ((event: import("ag-grid-community").NewValueParams<any, any>) => void) | undefined;
|
|
52
|
-
onCellClicked?: ((event: import("ag-grid-community").CellClickedEvent<any, any>) => void) | undefined;
|
|
53
|
-
onCellDoubleClicked?: ((event: import("ag-grid-community").CellDoubleClickedEvent<any, any>) => void) | undefined;
|
|
54
|
-
onCellContextMenu?: ((event: import("ag-grid-community").CellContextMenuEvent<any, any>) => void) | undefined;
|
|
55
|
-
getQuickFilterText?: ((params: import("ag-grid-community").GetQuickFilterTextParams<any, any>) => string) | undefined;
|
|
56
|
-
filterValueGetter?: string | import("ag-grid-community").ValueGetterFunc<any, any> | undefined;
|
|
57
|
-
floatingFilter?: boolean | undefined;
|
|
58
|
-
suppressFloatingFilterButton?: boolean | undefined;
|
|
59
|
-
wrapHeaderText?: boolean | undefined;
|
|
60
|
-
autoHeaderHeight?: boolean | undefined;
|
|
61
|
-
headerComponent?: any;
|
|
62
|
-
headerComponentParams?: any;
|
|
63
|
-
menuTabs?: import("ag-grid-community").ColumnMenuTab[] | undefined;
|
|
64
|
-
columnChooserParams?: import("ag-grid-community").ColumnChooserParams | undefined;
|
|
65
|
-
columnsMenuParams?: import("ag-grid-community").ColumnsMenuParams | undefined;
|
|
66
|
-
suppressMenu?: boolean | undefined;
|
|
67
|
-
suppressHeaderMenuButton?: boolean | undefined;
|
|
68
|
-
suppressHeaderFilterButton?: boolean | undefined;
|
|
69
|
-
suppressHeaderContextMenu?: boolean | undefined;
|
|
70
|
-
mainMenuItems?: (string | import("ag-grid-community").MenuItemDef<any, any>)[] | import("ag-grid-community").GetMainMenuItems<any, any> | undefined;
|
|
71
|
-
contextMenuItems?: (string | import("ag-grid-community").MenuItemDef<any, any>)[] | import("ag-grid-community").GetContextMenuItems<any, any> | undefined;
|
|
72
|
-
headerCheckboxSelection?: boolean | import("ag-grid-community").HeaderCheckboxSelectionCallback<any, any> | undefined;
|
|
73
|
-
headerCheckboxSelectionFilteredOnly?: boolean | undefined;
|
|
74
|
-
headerCheckboxSelectionCurrentPageOnly?: boolean | undefined;
|
|
75
|
-
chartDataType?: "category" | "series" | "time" | "excluded" | undefined;
|
|
76
|
-
pinned?: boolean | "left" | "right" | null | undefined;
|
|
77
|
-
initialPinned?: boolean | "left" | "right" | undefined;
|
|
78
|
-
lockPinned?: boolean | undefined;
|
|
79
|
-
pivot?: boolean | undefined;
|
|
80
|
-
initialPivot?: boolean | undefined;
|
|
81
|
-
pivotIndex?: number | null | undefined;
|
|
82
|
-
initialPivotIndex?: number | undefined;
|
|
83
|
-
pivotComparator?: ((valueA: string, valueB: string) => number) | undefined;
|
|
84
|
-
enablePivot?: boolean | undefined;
|
|
85
|
-
cellStyle?: import("ag-grid-community").CellStyle | import("ag-grid-community").CellStyleFunc<any, any> | undefined;
|
|
86
|
-
cellClass?: string | string[] | import("ag-grid-community").CellClassFunc<any, any> | undefined;
|
|
87
|
-
cellClassRules?: import("ag-grid-community").CellClassRules<any, any> | undefined;
|
|
88
|
-
cellRenderer?: any;
|
|
89
|
-
cellRendererParams?: any;
|
|
90
|
-
cellRendererSelector?: import("ag-grid-community").CellRendererSelectorFunc<any, any> | undefined;
|
|
91
|
-
loadingCellRenderer?: any;
|
|
92
|
-
loadingCellRendererParams?: any;
|
|
93
|
-
loadingCellRendererSelector?: import("ag-grid-community").CellRendererSelectorFunc<any, any> | undefined;
|
|
94
|
-
autoHeight?: boolean | undefined;
|
|
95
|
-
wrapText?: boolean | undefined;
|
|
96
|
-
enableCellChangeFlash?: boolean | undefined;
|
|
97
|
-
suppressCellFlash?: boolean | undefined;
|
|
98
|
-
rowDrag?: boolean | import("ag-grid-community").RowDragCallback<any, any> | undefined;
|
|
99
|
-
rowDragText?: ((params: import("ag-grid-community").IRowDragItem, dragItemCount: number) => string) | undefined;
|
|
100
|
-
dndSource?: boolean | import("ag-grid-community").DndSourceCallback<any, any> | undefined;
|
|
101
|
-
dndSourceOnRowDrag?: ((params: import("ag-grid-community").DndSourceOnRowDragParams<any>) => void) | undefined;
|
|
102
|
-
rowGroup?: boolean | undefined;
|
|
103
|
-
initialRowGroup?: boolean | undefined;
|
|
104
|
-
rowGroupIndex?: number | null | undefined;
|
|
105
|
-
initialRowGroupIndex?: number | undefined;
|
|
106
|
-
enableRowGroup?: boolean | undefined;
|
|
107
|
-
enableValue?: boolean | undefined;
|
|
108
|
-
aggFunc?: string | import("ag-grid-community").IAggFunc<any, any> | null | undefined;
|
|
109
|
-
initialAggFunc?: string | import("ag-grid-community").IAggFunc<any, any> | undefined;
|
|
110
|
-
defaultAggFunc?: string | undefined;
|
|
111
|
-
allowedAggFuncs?: string[] | undefined;
|
|
112
|
-
showRowGroup?: string | boolean | undefined;
|
|
113
|
-
sortable?: boolean | undefined;
|
|
114
|
-
sort?: import("ag-grid-community").SortDirection | undefined;
|
|
115
|
-
initialSort?: import("ag-grid-community").SortDirection | undefined;
|
|
116
|
-
sortIndex?: number | null | undefined;
|
|
117
|
-
initialSortIndex?: number | undefined;
|
|
118
|
-
sortingOrder?: import("ag-grid-community").SortDirection[] | undefined;
|
|
119
|
-
comparator?: ((valueA: any, valueB: any, nodeA: import("ag-grid-community").IRowNode<any>, nodeB: import("ag-grid-community").IRowNode<any>, isDescending: boolean) => number) | undefined;
|
|
120
|
-
unSortIcon?: boolean | undefined;
|
|
121
|
-
colSpan?: ((params: import("ag-grid-community").ColSpanParams<any, any>) => number) | undefined;
|
|
122
|
-
rowSpan?: ((params: import("ag-grid-community").RowSpanParams<any, any>) => number) | undefined;
|
|
123
|
-
width?: number | undefined;
|
|
124
|
-
initialWidth?: number | undefined;
|
|
125
|
-
minWidth?: number | undefined;
|
|
126
|
-
maxWidth?: number | undefined;
|
|
127
|
-
flex?: number | undefined;
|
|
128
|
-
initialFlex?: number | undefined;
|
|
129
|
-
resizable?: boolean | undefined;
|
|
130
|
-
suppressSizeToFit?: boolean | undefined;
|
|
131
|
-
suppressAutoSize?: boolean | undefined;
|
|
132
|
-
pivotValueColumn?: import("ag-grid-community").Column<any> | null | undefined;
|
|
133
|
-
pivotTotalColumnIds?: string[] | undefined;
|
|
134
|
-
suppressSpanHeaderHeight?: boolean | undefined;
|
|
135
|
-
headerName?: string | undefined;
|
|
136
|
-
headerValueGetter?: string | import("ag-grid-community").HeaderValueGetterFunc<any, any> | undefined;
|
|
137
|
-
headerTooltip?: string | undefined;
|
|
138
|
-
headerClass?: import("ag-grid-community").HeaderClass<any, any> | undefined;
|
|
139
|
-
suppressHeaderKeyboardEvent?: ((params: import("ag-grid-community").SuppressHeaderKeyboardEventParams<any, any>) => boolean) | undefined;
|
|
140
|
-
columnGroupShow?: import("ag-grid-community").ColumnGroupShowType | undefined;
|
|
141
|
-
toolPanelClass?: import("ag-grid-community").ToolPanelClass<any, any> | undefined;
|
|
142
|
-
suppressColumnsToolPanel?: boolean | undefined;
|
|
143
|
-
suppressFiltersToolPanel?: boolean | undefined;
|
|
144
|
-
tooltipComponent?: any;
|
|
145
|
-
tooltipComponentParams?: any;
|
|
146
|
-
pivotKeys?: string[] | undefined;
|
|
147
|
-
cellAriaRole?: string | undefined;
|
|
148
|
-
filter?: any;
|
|
149
|
-
filterParams?: any;
|
|
150
|
-
floatingFilterComponent?: any;
|
|
151
|
-
floatingFilterComponentParams?: any;
|
|
152
|
-
}[];
|
|
153
|
-
export declare const replaceAtMatch: (cols: ColDef[], key: string, subst: Partial<ColDef>) => {
|
|
154
|
-
colId?: string | undefined;
|
|
155
|
-
field?: string | undefined;
|
|
156
|
-
type?: string | string[] | undefined;
|
|
157
|
-
cellDataType?: string | boolean | undefined;
|
|
158
|
-
valueGetter?: string | import("ag-grid-community").ValueGetterFunc<any, any> | undefined;
|
|
159
|
-
valueFormatter?: string | import("ag-grid-community").ValueFormatterFunc<any, any> | undefined;
|
|
160
|
-
refData?: {
|
|
161
|
-
[key: string]: string;
|
|
162
|
-
} | undefined;
|
|
163
|
-
keyCreator?: ((params: import("ag-grid-community").KeyCreatorParams<any, any>) => string) | undefined;
|
|
164
|
-
equals?: ((valueA: any, valueB: any) => boolean) | undefined;
|
|
165
|
-
tooltipField?: string | undefined;
|
|
166
|
-
tooltipValueGetter?: ((params: import("ag-grid-community").ITooltipParams<any, any, any>) => any) | undefined;
|
|
167
|
-
checkboxSelection?: boolean | import("ag-grid-community").CheckboxSelectionCallback<any, any> | undefined;
|
|
168
|
-
showDisabledCheckboxes?: boolean | undefined;
|
|
169
|
-
icons?: {
|
|
170
|
-
[key: string]: string | Function;
|
|
171
|
-
} | undefined;
|
|
172
|
-
suppressNavigable?: boolean | import("ag-grid-community").SuppressNavigableCallback<any, any> | undefined;
|
|
173
|
-
suppressKeyboardEvent?: ((params: import("ag-grid-community").SuppressKeyboardEventParams<any, any>) => boolean) | undefined;
|
|
174
|
-
suppressPaste?: boolean | import("ag-grid-community").SuppressPasteCallback<any, any> | undefined;
|
|
175
|
-
suppressFillHandle?: boolean | undefined;
|
|
176
|
-
hide?: boolean | undefined;
|
|
177
|
-
initialHide?: boolean | undefined;
|
|
178
|
-
lockVisible?: boolean | undefined;
|
|
179
|
-
lockPosition?: boolean | "left" | "right" | undefined;
|
|
180
|
-
suppressMovable?: boolean | undefined;
|
|
181
|
-
useValueFormatterForExport?: boolean | undefined;
|
|
182
|
-
editable?: boolean | import("ag-grid-community").EditableCallback<any, any> | undefined;
|
|
183
|
-
valueSetter?: string | import("ag-grid-community").ValueSetterFunc<any, any> | undefined;
|
|
184
|
-
valueParser?: string | import("ag-grid-community").ValueParserFunc<any, any> | undefined;
|
|
185
|
-
cellEditor?: any;
|
|
186
|
-
cellEditorParams?: any;
|
|
187
|
-
cellEditorSelector?: import("ag-grid-community").CellEditorSelectorFunc<any, any> | undefined;
|
|
188
|
-
singleClickEdit?: boolean | undefined;
|
|
189
|
-
cellEditorPopup?: boolean | undefined;
|
|
190
|
-
cellEditorPopupPosition?: "over" | "under" | undefined;
|
|
191
|
-
useValueParserForImport?: boolean | undefined;
|
|
192
|
-
onCellValueChanged?: ((event: import("ag-grid-community").NewValueParams<any, any>) => void) | undefined;
|
|
193
|
-
onCellClicked?: ((event: import("ag-grid-community").CellClickedEvent<any, any>) => void) | undefined;
|
|
194
|
-
onCellDoubleClicked?: ((event: import("ag-grid-community").CellDoubleClickedEvent<any, any>) => void) | undefined;
|
|
195
|
-
onCellContextMenu?: ((event: import("ag-grid-community").CellContextMenuEvent<any, any>) => void) | undefined;
|
|
196
|
-
getQuickFilterText?: ((params: import("ag-grid-community").GetQuickFilterTextParams<any, any>) => string) | undefined;
|
|
197
|
-
filterValueGetter?: string | import("ag-grid-community").ValueGetterFunc<any, any> | undefined;
|
|
198
|
-
floatingFilter?: boolean | undefined;
|
|
199
|
-
suppressFloatingFilterButton?: boolean | undefined;
|
|
200
|
-
wrapHeaderText?: boolean | undefined;
|
|
201
|
-
autoHeaderHeight?: boolean | undefined;
|
|
202
|
-
headerComponent?: any;
|
|
203
|
-
headerComponentParams?: any;
|
|
204
|
-
menuTabs?: import("ag-grid-community").ColumnMenuTab[] | undefined;
|
|
205
|
-
columnChooserParams?: import("ag-grid-community").ColumnChooserParams | undefined;
|
|
206
|
-
columnsMenuParams?: import("ag-grid-community").ColumnsMenuParams | undefined;
|
|
207
|
-
suppressMenu?: boolean | undefined;
|
|
208
|
-
suppressHeaderMenuButton?: boolean | undefined;
|
|
209
|
-
suppressHeaderFilterButton?: boolean | undefined;
|
|
210
|
-
suppressHeaderContextMenu?: boolean | undefined;
|
|
211
|
-
mainMenuItems?: (string | import("ag-grid-community").MenuItemDef<any, any>)[] | import("ag-grid-community").GetMainMenuItems<any, any> | undefined;
|
|
212
|
-
contextMenuItems?: (string | import("ag-grid-community").MenuItemDef<any, any>)[] | import("ag-grid-community").GetContextMenuItems<any, any> | undefined;
|
|
213
|
-
headerCheckboxSelection?: boolean | import("ag-grid-community").HeaderCheckboxSelectionCallback<any, any> | undefined;
|
|
214
|
-
headerCheckboxSelectionFilteredOnly?: boolean | undefined;
|
|
215
|
-
headerCheckboxSelectionCurrentPageOnly?: boolean | undefined;
|
|
216
|
-
chartDataType?: "category" | "series" | "time" | "excluded" | undefined;
|
|
217
|
-
pinned?: boolean | "left" | "right" | null | undefined;
|
|
218
|
-
initialPinned?: boolean | "left" | "right" | undefined;
|
|
219
|
-
lockPinned?: boolean | undefined;
|
|
220
|
-
pivot?: boolean | undefined;
|
|
221
|
-
initialPivot?: boolean | undefined;
|
|
222
|
-
pivotIndex?: number | null | undefined;
|
|
223
|
-
initialPivotIndex?: number | undefined;
|
|
224
|
-
pivotComparator?: ((valueA: string, valueB: string) => number) | undefined;
|
|
225
|
-
enablePivot?: boolean | undefined;
|
|
226
|
-
cellStyle?: import("ag-grid-community").CellStyle | import("ag-grid-community").CellStyleFunc<any, any> | undefined;
|
|
227
|
-
cellClass?: string | string[] | import("ag-grid-community").CellClassFunc<any, any> | undefined;
|
|
228
|
-
cellClassRules?: import("ag-grid-community").CellClassRules<any, any> | undefined;
|
|
229
|
-
cellRenderer?: any;
|
|
230
|
-
cellRendererParams?: any;
|
|
231
|
-
cellRendererSelector?: import("ag-grid-community").CellRendererSelectorFunc<any, any> | undefined;
|
|
232
|
-
loadingCellRenderer?: any;
|
|
233
|
-
loadingCellRendererParams?: any;
|
|
234
|
-
loadingCellRendererSelector?: import("ag-grid-community").CellRendererSelectorFunc<any, any> | undefined;
|
|
235
|
-
autoHeight?: boolean | undefined;
|
|
236
|
-
wrapText?: boolean | undefined;
|
|
237
|
-
enableCellChangeFlash?: boolean | undefined;
|
|
238
|
-
suppressCellFlash?: boolean | undefined;
|
|
239
|
-
rowDrag?: boolean | import("ag-grid-community").RowDragCallback<any, any> | undefined;
|
|
240
|
-
rowDragText?: ((params: import("ag-grid-community").IRowDragItem, dragItemCount: number) => string) | undefined;
|
|
241
|
-
dndSource?: boolean | import("ag-grid-community").DndSourceCallback<any, any> | undefined;
|
|
242
|
-
dndSourceOnRowDrag?: ((params: import("ag-grid-community").DndSourceOnRowDragParams<any>) => void) | undefined;
|
|
243
|
-
rowGroup?: boolean | undefined;
|
|
244
|
-
initialRowGroup?: boolean | undefined;
|
|
245
|
-
rowGroupIndex?: number | null | undefined;
|
|
246
|
-
initialRowGroupIndex?: number | undefined;
|
|
247
|
-
enableRowGroup?: boolean | undefined;
|
|
248
|
-
enableValue?: boolean | undefined;
|
|
249
|
-
aggFunc?: string | import("ag-grid-community").IAggFunc<any, any> | null | undefined;
|
|
250
|
-
initialAggFunc?: string | import("ag-grid-community").IAggFunc<any, any> | undefined;
|
|
251
|
-
defaultAggFunc?: string | undefined;
|
|
252
|
-
allowedAggFuncs?: string[] | undefined;
|
|
253
|
-
showRowGroup?: string | boolean | undefined;
|
|
254
|
-
sortable?: boolean | undefined;
|
|
255
|
-
sort?: import("ag-grid-community").SortDirection | undefined;
|
|
256
|
-
initialSort?: import("ag-grid-community").SortDirection | undefined;
|
|
257
|
-
sortIndex?: number | null | undefined;
|
|
258
|
-
initialSortIndex?: number | undefined;
|
|
259
|
-
sortingOrder?: import("ag-grid-community").SortDirection[] | undefined;
|
|
260
|
-
comparator?: ((valueA: any, valueB: any, nodeA: import("ag-grid-community").IRowNode<any>, nodeB: import("ag-grid-community").IRowNode<any>, isDescending: boolean) => number) | undefined;
|
|
261
|
-
unSortIcon?: boolean | undefined;
|
|
262
|
-
colSpan?: ((params: import("ag-grid-community").ColSpanParams<any, any>) => number) | undefined;
|
|
263
|
-
rowSpan?: ((params: import("ag-grid-community").RowSpanParams<any, any>) => number) | undefined;
|
|
264
|
-
width?: number | undefined;
|
|
265
|
-
initialWidth?: number | undefined;
|
|
266
|
-
minWidth?: number | undefined;
|
|
267
|
-
maxWidth?: number | undefined;
|
|
268
|
-
flex?: number | undefined;
|
|
269
|
-
initialFlex?: number | undefined;
|
|
270
|
-
resizable?: boolean | undefined;
|
|
271
|
-
suppressSizeToFit?: boolean | undefined;
|
|
272
|
-
suppressAutoSize?: boolean | undefined;
|
|
273
|
-
pivotValueColumn?: import("ag-grid-community").Column<any> | null | undefined;
|
|
274
|
-
pivotTotalColumnIds?: string[] | undefined;
|
|
275
|
-
suppressSpanHeaderHeight?: boolean | undefined;
|
|
276
|
-
headerName?: string | undefined;
|
|
277
|
-
headerValueGetter?: string | import("ag-grid-community").HeaderValueGetterFunc<any, any> | undefined;
|
|
278
|
-
headerTooltip?: string | undefined;
|
|
279
|
-
headerClass?: import("ag-grid-community").HeaderClass<any, any> | undefined;
|
|
280
|
-
suppressHeaderKeyboardEvent?: ((params: import("ag-grid-community").SuppressHeaderKeyboardEventParams<any, any>) => boolean) | undefined;
|
|
281
|
-
columnGroupShow?: import("ag-grid-community").ColumnGroupShowType | undefined;
|
|
282
|
-
toolPanelClass?: import("ag-grid-community").ToolPanelClass<any, any> | undefined;
|
|
283
|
-
suppressColumnsToolPanel?: boolean | undefined;
|
|
284
|
-
suppressFiltersToolPanel?: boolean | undefined;
|
|
285
|
-
tooltipComponent?: any;
|
|
286
|
-
tooltipComponentParams?: any;
|
|
287
|
-
pivotKeys?: string[] | undefined;
|
|
288
|
-
cellAriaRole?: string | undefined;
|
|
289
|
-
filter?: any;
|
|
290
|
-
filterParams?: any;
|
|
291
|
-
floatingFilterComponent?: any;
|
|
292
|
-
floatingFilterComponentParams?: any;
|
|
293
|
-
}[];
|
|
294
|
-
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/buckaroo_js/components/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,OAAO,EAAC,MAAM,yBAAyB,CAAC;AAChD,OAAO,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAEzC,MAAM,MAAM,SAAS,GAAG,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;AAEjD,eAAO,MAAM,SAAS,QAAS,MAAM,eAAe,SAAS,kBAM5D,CAAC;AAEF,eAAO,MAAM,GAAG,eAAgB,MAAM;;CAErC,CAAC;AAEF,wBAAgB,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC,EAAE,CAE/D;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC,EAAE,CAEpE;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAIhG;AAED,eAAO,MAAM,cAAc,QAAS,OAAO,MAAM,EAAE,MAAM,CAAC,gBAAe,MAAM,EAAE,QACT,CAAC;AACzE,eAAO,MAAM,aAAa,SAChB,MAAM,EAAE,OACT,MAAM,SACJ,QAAQ,MAAM,CAAC,YACZ,QAAQ,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAU5B,CAAC;AAEF,eAAO,MAAM,cAAc,SAAU,MAAM,EAAE,OAAO,MAAM,SAAS,QAAQ,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GASjF,CAAC"}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
14
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
15
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
16
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
17
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
19
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
20
|
-
});
|
|
21
|
-
};
|
|
22
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
23
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
25
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
26
|
-
function step(op) {
|
|
27
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
28
|
-
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
29
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
30
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
31
|
-
switch (op[0]) {
|
|
32
|
-
case 0: case 1: t = op; break;
|
|
33
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
34
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
35
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
36
|
-
default:
|
|
37
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
38
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
39
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
40
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
41
|
-
if (t[2]) _.ops.pop();
|
|
42
|
-
_.trys.pop(); continue;
|
|
43
|
-
}
|
|
44
|
-
op = body.call(thisArg, _);
|
|
45
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
46
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
var __read = (this && this.__read) || function (o, n) {
|
|
50
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
51
|
-
if (!m) return o;
|
|
52
|
-
var i = m.call(o), r, ar = [], e;
|
|
53
|
-
try {
|
|
54
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
55
|
-
}
|
|
56
|
-
catch (error) { e = { error: error }; }
|
|
57
|
-
finally {
|
|
58
|
-
try {
|
|
59
|
-
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
60
|
-
}
|
|
61
|
-
finally { if (e) throw e.error; }
|
|
62
|
-
}
|
|
63
|
-
return ar;
|
|
64
|
-
};
|
|
65
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
66
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
67
|
-
if (ar || !(i in from)) {
|
|
68
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
69
|
-
ar[i] = from[i];
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
73
|
-
};
|
|
74
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
75
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
76
|
-
};
|
|
77
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78
|
-
exports.replaceAtMatch = exports.updateAtMatch = exports.objWithoutNull = exports.replaceAtKey = exports.replaceAtIdx = exports.replaceInArr = exports.sym = exports.requestDf = void 0;
|
|
79
|
-
var lodash_1 = __importDefault(require("lodash"));
|
|
80
|
-
var requestDf = function (url, setCallBack) {
|
|
81
|
-
var retPromise = fetch(url).then(function (response) { return __awaiter(void 0, void 0, void 0, function () {
|
|
82
|
-
var tableDf;
|
|
83
|
-
return __generator(this, function (_a) {
|
|
84
|
-
switch (_a.label) {
|
|
85
|
-
case 0: return [4, response.json()];
|
|
86
|
-
case 1:
|
|
87
|
-
tableDf = _a.sent();
|
|
88
|
-
setCallBack(tableDf);
|
|
89
|
-
return [2];
|
|
90
|
-
}
|
|
91
|
-
});
|
|
92
|
-
}); });
|
|
93
|
-
return retPromise;
|
|
94
|
-
};
|
|
95
|
-
exports.requestDf = requestDf;
|
|
96
|
-
var sym = function (symbolName) {
|
|
97
|
-
return { symbol: symbolName };
|
|
98
|
-
};
|
|
99
|
-
exports.sym = sym;
|
|
100
|
-
function replaceInArr(arr, old, subst) {
|
|
101
|
-
return arr.map(function (item) { return (item === old ? subst : item); });
|
|
102
|
-
}
|
|
103
|
-
exports.replaceInArr = replaceInArr;
|
|
104
|
-
function replaceAtIdx(arr, idx, subst) {
|
|
105
|
-
return arr.map(function (item, innerIdx) { return (innerIdx === idx ? subst : item); });
|
|
106
|
-
}
|
|
107
|
-
exports.replaceAtIdx = replaceAtIdx;
|
|
108
|
-
function replaceAtKey(obj, key, subst) {
|
|
109
|
-
var objCopy = lodash_1.default.clone(obj);
|
|
110
|
-
objCopy[key] = subst;
|
|
111
|
-
return objCopy;
|
|
112
|
-
}
|
|
113
|
-
exports.replaceAtKey = replaceAtKey;
|
|
114
|
-
var objWithoutNull = function (obj, extraStrips) {
|
|
115
|
-
if (extraStrips === void 0) { extraStrips = []; }
|
|
116
|
-
return lodash_1.default.pickBy(obj, function (x) { return !__spreadArray([null, undefined], __read(extraStrips), false).includes(x); });
|
|
117
|
-
};
|
|
118
|
-
exports.objWithoutNull = objWithoutNull;
|
|
119
|
-
var updateAtMatch = function (cols, key, subst, negative) {
|
|
120
|
-
var retColumns = cols.map(function (x) {
|
|
121
|
-
if (x.field === key) {
|
|
122
|
-
return __assign(__assign({}, x), subst);
|
|
123
|
-
}
|
|
124
|
-
else {
|
|
125
|
-
return __assign(__assign({}, x), negative);
|
|
126
|
-
}
|
|
127
|
-
});
|
|
128
|
-
return retColumns;
|
|
129
|
-
};
|
|
130
|
-
exports.updateAtMatch = updateAtMatch;
|
|
131
|
-
var replaceAtMatch = function (cols, key, subst) {
|
|
132
|
-
var retColumns = cols.map(function (x) {
|
|
133
|
-
if (x.field === key) {
|
|
134
|
-
return __assign(__assign({}, x), subst);
|
|
135
|
-
}
|
|
136
|
-
else {
|
|
137
|
-
return __assign({}, x);
|
|
138
|
-
}
|
|
139
|
-
});
|
|
140
|
-
return retColumns;
|
|
141
|
-
};
|
|
142
|
-
exports.replaceAtMatch = replaceAtMatch;
|
|
143
|
-
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/buckaroo_js/components/utils.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAuB;AAMhB,IAAM,SAAS,GAAG,UAAC,GAAW,EAAE,WAAsB;IACzD,IAAM,UAAU,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,UAAO,QAAQ;;;;wBAC9B,WAAM,QAAQ,CAAC,IAAI,EAAE,EAAA;;oBAA/B,OAAO,GAAG,SAAqB;oBACrC,WAAW,CAAC,OAAO,CAAC,CAAC;;;;SACxB,CAAC,CAAC;IACH,OAAO,UAAU,CAAC;AACtB,CAAC,CAAC;AANW,QAAA,SAAS,aAMpB;AAEK,IAAM,GAAG,GAAG,UAAC,UAAkB;IAClC,OAAO,EAAC,MAAM,EAAE,UAAU,EAAC,CAAC;AAChC,CAAC,CAAC;AAFW,QAAA,GAAG,OAEd;AAEF,SAAgB,YAAY,CAAI,GAAQ,EAAE,GAAM,EAAE,KAAQ;IACtD,OAAO,GAAG,CAAC,GAAG,CAAC,UAAC,IAAO,IAAK,OAAA,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,EAA7B,CAA6B,CAAC,CAAC;AAC/D,CAAC;AAFD,oCAEC;AAED,SAAgB,YAAY,CAAI,GAAQ,EAAE,GAAW,EAAE,KAAQ;IAC3D,OAAO,GAAG,CAAC,GAAG,CAAC,UAAC,IAAO,EAAE,QAAgB,IAAK,OAAA,CAAC,QAAQ,KAAK,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,EAAjC,CAAiC,CAAC,CAAC;AACrF,CAAC;AAFD,oCAEC;AAED,SAAgB,YAAY,CAAI,GAAsB,EAAE,GAAW,EAAE,KAAQ;IACzE,IAAM,OAAO,GAAG,gBAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAC7B,OAAO,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;IACrB,OAAO,OAAO,CAAC;AACnB,CAAC;AAJD,oCAIC;AAEM,IAAM,cAAc,GAAG,UAAC,GAA2B,EAAE,WAA0B;IAA1B,4BAAA,EAAA,gBAA0B;IAClF,OAAA,gBAAC,CAAC,MAAM,CAAC,GAAG,EAAE,UAAC,CAAC,IAAK,OAAA,CAAC,eAAC,IAAI,EAAE,SAAS,UAAK,WAAW,UAAE,QAAQ,CAAC,CAAC,CAAC,EAA9C,CAA8C,CAAC;AAApE,CAAoE,CAAC;AAD5D,QAAA,cAAc,kBAC8C;AAClE,IAAM,aAAa,GAAG,UACzB,IAAc,EACd,GAAW,EACX,KAAsB,EACtB,QAAyB;IAEzB,IAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,UAAC,CAAC;QAC1B,IAAI,CAAC,CAAC,KAAK,KAAK,GAAG,EAAE;YACjB,6BAAW,CAAC,GAAK,KAAK,EAAE;SAC3B;aAAM;YACH,6BAAW,CAAC,GAAK,QAAQ,EAAE;SAC9B;IACL,CAAC,CAAC,CAAC;IACH,OAAO,UAAU,CAAC;AACtB,CAAC,CAAC;AAdW,QAAA,aAAa,iBAcxB;AAEK,IAAM,cAAc,GAAG,UAAC,IAAc,EAAE,GAAW,EAAE,KAAsB;IAC9E,IAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,UAAC,CAAC;QAC1B,IAAI,CAAC,CAAC,KAAK,KAAK,GAAG,EAAE;YACjB,6BAAW,CAAC,GAAK,KAAK,EAAE;SAC3B;aAAM;YACH,oBAAW,CAAC,EAAE;SACjB;IACL,CAAC,CAAC,CAAC;IACH,OAAO,UAAU,CAAC;AACtB,CAAC,CAAC;AATW,QAAA,cAAc,kBASzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../src/buckaroo_js/extension.ts"],"names":[],"mappings":"AAcA,cAAc,SAAS,CAAC"}
|
package/buckaroo_js/extension.js
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
window.__webpack_public_path__ =
|
|
18
|
-
document.querySelector('body').getAttribute('data-base-url') + 'nbextensions/buckaroo';
|
|
19
|
-
__exportStar(require("./index"), exports);
|
|
20
|
-
//# sourceMappingURL=extension.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"extension.js","sourceRoot":"","sources":["../src/buckaroo_js/extension.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAWC,MAAc,CAAC,uBAAuB;IACnC,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAE,CAAC,YAAY,CAAC,eAAe,CAAC,GAAG,uBAAuB,CAAC;AAE5F,0CAAwB"}
|
package/buckaroo_js/index.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { ColumnsEditor, ColumnsEditorEx } from './components/ColumnsEditor';
|
|
3
|
-
import { WidgetDCFCellExample } from './components/DCFCell';
|
|
4
|
-
import { DFViewer, DFViewerEx } from './components/DFViewerParts/DFViewer';
|
|
5
|
-
import { DependentTabs } from './components/DependentTabs';
|
|
6
|
-
import { StatusBar } from './components/StatusBar';
|
|
7
|
-
export * as bakedData from './baked_data/staticData';
|
|
8
|
-
export declare const extraComponents: {
|
|
9
|
-
ColumnsEditor: typeof ColumnsEditor;
|
|
10
|
-
DependentTabs: typeof DependentTabs;
|
|
11
|
-
OperationViewer: ({ operations, setOperations, activeColumn, allColumns, commandConfig }: {
|
|
12
|
-
operations: import("./components/OperationUtils").Operation[];
|
|
13
|
-
setOperations: import("./components/OperationUtils").SetOperationsFunc;
|
|
14
|
-
activeColumn: string;
|
|
15
|
-
allColumns: string[];
|
|
16
|
-
commandConfig: import("./components/CommandUtils").CommandConfigT;
|
|
17
|
-
}) => import("react").JSX.Element;
|
|
18
|
-
WidgetDCFCellExample: typeof WidgetDCFCellExample;
|
|
19
|
-
ColumnsEditorEx: typeof ColumnsEditorEx;
|
|
20
|
-
DFViewer: typeof DFViewer;
|
|
21
|
-
DFViewerEx: typeof DFViewerEx;
|
|
22
|
-
StatusBar: typeof StatusBar;
|
|
23
|
-
HistogramCell: (props: any) => import("react").JSX.Element;
|
|
24
|
-
};
|
|
25
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/buckaroo_js/index.ts"],"names":[],"mappings":";AAGA,OAAO,EAAC,aAAa,EAAE,eAAe,EAAC,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAC,oBAAoB,EAAC,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAC,QAAQ,EAAE,UAAU,EAAC,MAAM,qCAAqC,CAAC;AAEzE,OAAO,EAAC,aAAa,EAAC,MAAM,4BAA4B,CAAC;AAGzD,OAAO,EAAC,SAAS,EAAC,MAAM,wBAAwB,CAAC;AAIjD,OAAO,KAAK,SAAS,MAAM,yBAAyB,CAAC;AAErD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;CAU3B,CAAC"}
|
package/buckaroo_js/index.js
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.extraComponents = exports.bakedData = void 0;
|
|
27
|
-
var ColumnsEditor_1 = require("./components/ColumnsEditor");
|
|
28
|
-
var DCFCell_1 = require("./components/DCFCell");
|
|
29
|
-
var DFViewer_1 = require("./components/DFViewerParts/DFViewer");
|
|
30
|
-
var HistogramCell_1 = require("./components/DFViewerParts/HistogramCell");
|
|
31
|
-
var DependentTabs_1 = require("./components/DependentTabs");
|
|
32
|
-
var Operations_1 = require("./components/Operations");
|
|
33
|
-
var StatusBar_1 = require("./components/StatusBar");
|
|
34
|
-
exports.bakedData = __importStar(require("./baked_data/staticData"));
|
|
35
|
-
exports.extraComponents = {
|
|
36
|
-
ColumnsEditor: ColumnsEditor_1.ColumnsEditor,
|
|
37
|
-
DependentTabs: DependentTabs_1.DependentTabs,
|
|
38
|
-
OperationViewer: Operations_1.OperationViewer,
|
|
39
|
-
WidgetDCFCellExample: DCFCell_1.WidgetDCFCellExample,
|
|
40
|
-
ColumnsEditorEx: ColumnsEditor_1.ColumnsEditorEx,
|
|
41
|
-
DFViewer: DFViewer_1.DFViewer,
|
|
42
|
-
DFViewerEx: DFViewer_1.DFViewerEx,
|
|
43
|
-
StatusBar: StatusBar_1.StatusBar,
|
|
44
|
-
HistogramCell: HistogramCell_1.HistogramCell
|
|
45
|
-
};
|
|
46
|
-
//# sourceMappingURL=index.js.map
|
package/buckaroo_js/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/buckaroo_js/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,4DAA0E;AAC1E,gDAA0D;AAC1D,gEAAyE;AACzE,0EAAuE;AACvE,4DAAyD;AACzD,sDAAwD;AAExD,oDAAiD;AAIjD,qEAAqD;AAExC,QAAA,eAAe,GAAG;IAC3B,aAAa,+BAAA;IACb,aAAa,+BAAA;IACb,eAAe,8BAAA;IACf,oBAAoB,gCAAA;IACpB,eAAe,iCAAA;IACf,QAAQ,qBAAA;IACR,UAAU,uBAAA;IACV,SAAS,uBAAA;IACT,aAAa,+BAAA;CAChB,CAAC"}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { CSSProperties, ReactNode } from 'react';
|
|
2
|
-
export { Global, DefaultTooltipContent } from 'recharts';
|
|
3
|
-
export type AnimationTiming = 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'linear';
|
|
4
|
-
export type AnimationDuration = number;
|
|
5
|
-
export type TooltipType = 'none';
|
|
6
|
-
export type ValueType = number | string | Array<number | string>;
|
|
7
|
-
export type NameType = number | string;
|
|
8
|
-
export type Formatter<TValue extends ValueType, TName extends NameType> = (value: TValue, name: TName, item: Payload<TValue, TName>, index: number, payload: Array<Payload<TValue, TName>>) => [React.ReactNode, TName] | React.ReactNode;
|
|
9
|
-
export interface Payload<TValue extends ValueType, TName extends NameType> {
|
|
10
|
-
type?: TooltipType;
|
|
11
|
-
color?: string;
|
|
12
|
-
formatter?: Formatter<TValue, TName>;
|
|
13
|
-
name?: TName;
|
|
14
|
-
value?: TValue;
|
|
15
|
-
unit?: ReactNode;
|
|
16
|
-
dataKey?: string | number;
|
|
17
|
-
payload?: any;
|
|
18
|
-
chartType?: string;
|
|
19
|
-
stroke?: string;
|
|
20
|
-
strokeDasharray?: string | number;
|
|
21
|
-
strokeWidth?: number | string;
|
|
22
|
-
}
|
|
23
|
-
export interface DefaultProps<TValue extends ValueType, TName extends NameType> {
|
|
24
|
-
separator?: string;
|
|
25
|
-
wrapperClassName?: string;
|
|
26
|
-
labelClassName?: string;
|
|
27
|
-
formatter?: Formatter<TValue, TName>;
|
|
28
|
-
contentStyle?: CSSProperties;
|
|
29
|
-
itemStyle?: CSSProperties;
|
|
30
|
-
labelStyle?: CSSProperties;
|
|
31
|
-
labelFormatter?: (label: any, payload: Array<Payload<TValue, TName>>) => ReactNode;
|
|
32
|
-
label?: any;
|
|
33
|
-
payload?: Array<Payload<TValue, TName>>;
|
|
34
|
-
itemSorter?: (item: Payload<TValue, TName>) => number | string;
|
|
35
|
-
}
|
|
36
|
-
export declare const isNumber: (value: unknown) => value is number;
|
|
37
|
-
export declare const isNumOrStr: (value: unknown) => value is string | number;
|
|
38
|
-
//# sourceMappingURL=RechartExtra.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RechartExtra.d.ts","sourceRoot":"","sources":["../../src/buckaroo_js/vendor/RechartExtra.ts"],"names":[],"mappings":"AAKA,OAAO,EAAC,aAAa,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;AAC/C,OAAO,EAAC,MAAM,EAAE,qBAAqB,EAAC,MAAM,UAAU,CAAC;AAMvD,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,SAAS,GAAG,UAAU,GAAG,aAAa,GAAG,QAAQ,CAAC;AAEzF,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC;AAEvC,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AACjC,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;AACjE,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAC;AAEvC,MAAM,MAAM,SAAS,CAAC,MAAM,SAAS,SAAS,EAAE,KAAK,SAAS,QAAQ,IAAI,CACtE,KAAK,EAAE,MAAM,EACb,IAAI,EAAE,KAAK,EACX,IAAI,EAAE,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,EAC5B,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,KACrC,CAAC,KAAK,CAAC,SAAS,EAAE,KAAK,CAAC,GAAG,KAAK,CAAC,SAAS,CAAC;AAEhD,MAAM,WAAW,OAAO,CAAC,MAAM,SAAS,SAAS,EAAE,KAAK,SAAS,QAAQ;IACrE,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IACrC,IAAI,CAAC,EAAE,KAAK,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1B,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACjC;AAED,MAAM,WAAW,YAAY,CAAC,MAAM,SAAS,SAAS,EAAE,KAAK,SAAS,QAAQ;IAC1E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IACrC,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,SAAS,CAAC,EAAE,aAAa,CAAC;IAC1B,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,KAAK,SAAS,CAAC;IACnF,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,OAAO,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC;IACxC,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,MAAM,GAAG,MAAM,CAAC;CAClE;AAED,eAAO,MAAM,QAAQ,UAAW,OAAO,oBAA0D,CAAC;AAClG,eAAO,MAAM,UAAU,UAAW,OAAO,6BACS,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.isNumOrStr = exports.isNumber = exports.DefaultTooltipContent = exports.Global = void 0;
|
|
7
|
-
var lodash_1 = __importDefault(require("lodash"));
|
|
8
|
-
var recharts_1 = require("recharts");
|
|
9
|
-
Object.defineProperty(exports, "Global", { enumerable: true, get: function () { return recharts_1.Global; } });
|
|
10
|
-
Object.defineProperty(exports, "DefaultTooltipContent", { enumerable: true, get: function () { return recharts_1.DefaultTooltipContent; } });
|
|
11
|
-
var isNumber = function (value) { return lodash_1.default.isNumber(value) && !lodash_1.default.isNaN(value); };
|
|
12
|
-
exports.isNumber = isNumber;
|
|
13
|
-
var isNumOrStr = function (value) {
|
|
14
|
-
return (0, exports.isNumber)(value) || lodash_1.default.isString(value);
|
|
15
|
-
};
|
|
16
|
-
exports.isNumOrStr = isNumOrStr;
|
|
17
|
-
//# sourceMappingURL=RechartExtra.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RechartExtra.js","sourceRoot":"","sources":["../../src/buckaroo_js/vendor/RechartExtra.ts"],"names":[],"mappings":";;;;;;AAIA,kDAAuB;AAEvB,qCAAuD;AAA/C,kGAAA,MAAM,OAAA;AAAE,iHAAA,qBAAqB,OAAA;AAmD9B,IAAM,QAAQ,GAAG,UAAC,KAAc,IAAsB,OAAA,gBAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,gBAAC,CAAC,KAAK,CAAC,KAAK,CAAC,EAApC,CAAoC,CAAC;AAArF,QAAA,QAAQ,YAA6E;AAC3F,IAAM,UAAU,GAAG,UAAC,KAAc;IACrC,OAAA,IAAA,gBAAQ,EAAC,KAAe,CAAC,IAAI,gBAAC,CAAC,QAAQ,CAAC,KAAK,CAAC;AAA9C,CAA8C,CAAC;AADtC,QAAA,UAAU,cAC4B"}
|