@deephaven/iris-grid 1.22.2-alpha-pivot-builder.0730ba6.0 → 1.23.1-legacy-table-plugin.bbf55c8.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/sidebar/OptionType.d.ts +11 -4
- package/dist/sidebar/OptionType.d.ts.map +1 -1
- package/dist/sidebar/OptionType.js +9 -3
- package/dist/sidebar/OptionType.js.map +1 -1
- package/dist/sidebar/index.d.ts +2 -2
- package/dist/sidebar/index.d.ts.map +1 -1
- package/dist/sidebar/index.js.map +1 -1
- package/package.json +16 -16
|
@@ -14,13 +14,20 @@ declare enum OptionType {
|
|
|
14
14
|
CONDITIONAL_FORMATTING_EDIT = "CONDITIONAL_FORMATTING_EDIT",
|
|
15
15
|
GOTO = "GOTO"
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* Key for a plugin-contributed sidebar entry, following the
|
|
19
|
+
* `plugin:<plugin-name>:<id>` convention. Modeling it as a
|
|
20
|
+
* template-literal type rather than a bare `string` keeps `OptionItemKey`
|
|
21
|
+
* from collapsing to `string`, so `OptionType` autocomplete survives and
|
|
22
|
+
* an un-namespaced key is rejected at compile time.
|
|
23
|
+
*/
|
|
24
|
+
export type PluginOptionKey = `plugin:${string}:${string}`;
|
|
17
25
|
/**
|
|
18
26
|
* Identifier for a sidebar entry. Built-in entries use the closed
|
|
19
|
-
* `OptionType` enum; plugin-supplied entries use a
|
|
20
|
-
*
|
|
21
|
-
* distinguishes the two by the presence of `configPage` on the
|
|
27
|
+
* `OptionType` enum; plugin-supplied entries use a `PluginOptionKey`. The
|
|
28
|
+
* page-switch distinguishes the two by the presence of `configPage` on the
|
|
22
29
|
* `OptionItem`, not by inspecting the key.
|
|
23
30
|
*/
|
|
24
|
-
export type OptionItemKey = OptionType |
|
|
31
|
+
export type OptionItemKey = OptionType | PluginOptionKey;
|
|
25
32
|
export default OptionType;
|
|
26
33
|
//# sourceMappingURL=OptionType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OptionType.d.ts","sourceRoot":"","sources":["../../src/sidebar/OptionType.ts"],"names":[],"mappings":"AAAA,aAAK,UAAU;IACb,iBAAiB,sBAAsB;IACvC,YAAY,iBAAiB;IAC7B,gBAAgB,sBAAsB;IACtC,aAAa,kBAAkB;IAC/B,qBAAqB,0BAA0B;IAC/C,aAAa,kBAAkB;IAC/B,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,eAAe,oBAAoB;IACnC,cAAc,mBAAmB;IACjC,2BAA2B,gCAAgC;IAC3D,sBAAsB,2BAA2B;IACjD,2BAA2B,gCAAgC;IAC3D,IAAI,SAAS;CACd;AAED;;;;;;GAMG;AACH,MAAM,MAAM,aAAa,GAAG,UAAU,GAAG,
|
|
1
|
+
{"version":3,"file":"OptionType.d.ts","sourceRoot":"","sources":["../../src/sidebar/OptionType.ts"],"names":[],"mappings":"AAAA,aAAK,UAAU;IACb,iBAAiB,sBAAsB;IACvC,YAAY,iBAAiB;IAC7B,gBAAgB,sBAAsB;IACtC,aAAa,kBAAkB;IAC/B,qBAAqB,0BAA0B;IAC/C,aAAa,kBAAkB;IAC/B,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,eAAe,oBAAoB;IACnC,cAAc,mBAAmB;IACjC,2BAA2B,gCAAgC;IAC3D,sBAAsB,2BAA2B;IACjD,2BAA2B,gCAAgC;IAC3D,IAAI,SAAS;CACd;AAED;;;;;;GAMG;AACH,MAAM,MAAM,eAAe,GAAG,UAAU,MAAM,IAAI,MAAM,EAAE,CAAC;AAE3D;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,UAAU,GAAG,eAAe,CAAC;AAEzD,eAAe,UAAU,CAAC"}
|
|
@@ -15,11 +15,17 @@ var OptionType = /*#__PURE__*/function (OptionType) {
|
|
|
15
15
|
OptionType["GOTO"] = "GOTO";
|
|
16
16
|
return OptionType;
|
|
17
17
|
}(OptionType || {});
|
|
18
|
+
/**
|
|
19
|
+
* Key for a plugin-contributed sidebar entry, following the
|
|
20
|
+
* `plugin:<plugin-name>:<id>` convention. Modeling it as a
|
|
21
|
+
* template-literal type rather than a bare `string` keeps `OptionItemKey`
|
|
22
|
+
* from collapsing to `string`, so `OptionType` autocomplete survives and
|
|
23
|
+
* an un-namespaced key is rejected at compile time.
|
|
24
|
+
*/
|
|
18
25
|
/**
|
|
19
26
|
* Identifier for a sidebar entry. Built-in entries use the closed
|
|
20
|
-
* `OptionType` enum; plugin-supplied entries use a
|
|
21
|
-
*
|
|
22
|
-
* distinguishes the two by the presence of `configPage` on the
|
|
27
|
+
* `OptionType` enum; plugin-supplied entries use a `PluginOptionKey`. The
|
|
28
|
+
* page-switch distinguishes the two by the presence of `configPage` on the
|
|
23
29
|
* `OptionItem`, not by inspecting the key.
|
|
24
30
|
*/
|
|
25
31
|
export default OptionType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OptionType.js","names":["OptionType"],"sources":["../../src/sidebar/OptionType.ts"],"sourcesContent":["enum OptionType {\n ADVANCED_SETTINGS = 'ADVANCED_SETTINGS',\n AGGREGATIONS = 'AGGREGATIONS',\n AGGREGATION_EDIT = 'AGGREGATIONS_EDIT',\n CHART_BUILDER = 'CHART_BUILDER',\n CUSTOM_COLUMN_BUILDER = 'CUSTOM_COLUMN_BUILDER',\n QUICK_FILTERS = 'QUICK_FILTERS',\n ROLLUP_ROWS = 'ROLLUP_ROWS',\n SEARCH_BAR = 'SEARCH_BAR',\n SELECT_DISTINCT = 'SELECT_DISTINCT',\n TABLE_EXPORTER = 'TABLE_EXPORTER',\n VISIBILITY_ORDERING_BUILDER = 'VISIBILITY_ORDERING_BUILDER',\n CONDITIONAL_FORMATTING = 'CONDITIONAL_FORMATTING',\n CONDITIONAL_FORMATTING_EDIT = 'CONDITIONAL_FORMATTING_EDIT',\n GOTO = 'GOTO',\n}\n\n/**\n * Identifier for a sidebar entry. Built-in entries use the closed\n * `OptionType` enum; plugin-supplied entries use a
|
|
1
|
+
{"version":3,"file":"OptionType.js","names":["OptionType"],"sources":["../../src/sidebar/OptionType.ts"],"sourcesContent":["enum OptionType {\n ADVANCED_SETTINGS = 'ADVANCED_SETTINGS',\n AGGREGATIONS = 'AGGREGATIONS',\n AGGREGATION_EDIT = 'AGGREGATIONS_EDIT',\n CHART_BUILDER = 'CHART_BUILDER',\n CUSTOM_COLUMN_BUILDER = 'CUSTOM_COLUMN_BUILDER',\n QUICK_FILTERS = 'QUICK_FILTERS',\n ROLLUP_ROWS = 'ROLLUP_ROWS',\n SEARCH_BAR = 'SEARCH_BAR',\n SELECT_DISTINCT = 'SELECT_DISTINCT',\n TABLE_EXPORTER = 'TABLE_EXPORTER',\n VISIBILITY_ORDERING_BUILDER = 'VISIBILITY_ORDERING_BUILDER',\n CONDITIONAL_FORMATTING = 'CONDITIONAL_FORMATTING',\n CONDITIONAL_FORMATTING_EDIT = 'CONDITIONAL_FORMATTING_EDIT',\n GOTO = 'GOTO',\n}\n\n/**\n * Key for a plugin-contributed sidebar entry, following the\n * `plugin:<plugin-name>:<id>` convention. Modeling it as a\n * template-literal type rather than a bare `string` keeps `OptionItemKey`\n * from collapsing to `string`, so `OptionType` autocomplete survives and\n * an un-namespaced key is rejected at compile time.\n */\nexport type PluginOptionKey = `plugin:${string}:${string}`;\n\n/**\n * Identifier for a sidebar entry. Built-in entries use the closed\n * `OptionType` enum; plugin-supplied entries use a `PluginOptionKey`. The\n * page-switch distinguishes the two by the presence of `configPage` on the\n * `OptionItem`, not by inspecting the key.\n */\nexport type OptionItemKey = OptionType | PluginOptionKey;\n\nexport default OptionType;\n"],"mappings":"IAAKA,UAAU,0BAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAA,OAAVA,UAAU;AAAA,EAAVA,UAAU;AAiBf;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AAGA,eAAeA,UAAU","ignoreList":[]}
|
package/dist/sidebar/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import AggregationEdit from './aggregations/AggregationEdit';
|
|
|
4
4
|
import AggregationUtils from './aggregations/AggregationUtils';
|
|
5
5
|
import ChartBuilder from './ChartBuilder';
|
|
6
6
|
import CustomColumnBuilder from './CustomColumnBuilder';
|
|
7
|
-
import OptionType, { type OptionItemKey } from './OptionType';
|
|
7
|
+
import OptionType, { type OptionItemKey, type PluginOptionKey } from './OptionType';
|
|
8
8
|
import RollupRows from './RollupRows';
|
|
9
9
|
import TableCsvExporter from './TableCsvExporter';
|
|
10
10
|
import TableSaver from './TableSaver';
|
|
@@ -13,7 +13,7 @@ import { type FormattingRule } from './conditional-formatting/ConditionalFormatt
|
|
|
13
13
|
import AdvancedSettingsType from './AdvancedSettingsType';
|
|
14
14
|
import DownloadServiceWorkerUtils from './DownloadServiceWorkerUtils';
|
|
15
15
|
import { type IrisGridTableOptionsWidgetProps, type TableOptionsTransform } from './IrisGridTableOptionsWidgetProps';
|
|
16
|
-
export { AdvancedSettings, Aggregations, AggregationEdit, AggregationUtils, ChartBuilder, CustomColumnBuilder, OptionType, type OptionItemKey, RollupRows, TableCsvExporter, TableSaver, VisibilityOrderingBuilder, AdvancedSettingsType, DownloadServiceWorkerUtils, type IrisGridTableOptionsWidgetProps, type TableOptionsTransform, };
|
|
16
|
+
export { AdvancedSettings, Aggregations, AggregationEdit, AggregationUtils, ChartBuilder, CustomColumnBuilder, OptionType, type OptionItemKey, type PluginOptionKey, RollupRows, TableCsvExporter, TableSaver, VisibilityOrderingBuilder, AdvancedSettingsType, DownloadServiceWorkerUtils, type IrisGridTableOptionsWidgetProps, type TableOptionsTransform, };
|
|
17
17
|
export type { FormattingRule as SidebarFormattingRule };
|
|
18
18
|
export * from './aggregations';
|
|
19
19
|
export * from './RollupRows';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sidebar/index.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,YAAY,MAAM,6BAA6B,CAAC;AACvD,OAAO,eAAe,MAAM,gCAAgC,CAAC;AAC7D,OAAO,gBAAgB,MAAM,iCAAiC,CAAC;AAC/D,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAC1C,OAAO,mBAAmB,MAAM,uBAAuB,CAAC;AACxD,OAAO,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sidebar/index.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,YAAY,MAAM,6BAA6B,CAAC;AACvD,OAAO,eAAe,MAAM,gCAAgC,CAAC;AAC7D,OAAO,gBAAgB,MAAM,iCAAiC,CAAC;AAC/D,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAC1C,OAAO,mBAAmB,MAAM,uBAAuB,CAAC;AACxD,OAAO,UAAU,EAAE,EACjB,KAAK,aAAa,EAClB,KAAK,eAAe,EACrB,MAAM,cAAc,CAAC;AACtB,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,yBAAyB,MAAM,yDAAyD,CAAC;AAChG,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,qDAAqD,CAAC;AAC1F,OAAO,oBAAoB,MAAM,wBAAwB,CAAC;AAC1D,OAAO,0BAA0B,MAAM,8BAA8B,CAAC;AACtE,OAAO,EACL,KAAK,+BAA+B,EACpC,KAAK,qBAAqB,EAC3B,MAAM,mCAAmC,CAAC;AAE3C,OAAO,EACL,gBAAgB,EAChB,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,YAAY,EACZ,mBAAmB,EACnB,UAAU,EACV,KAAK,aAAa,EAClB,KAAK,eAAe,EACpB,UAAU,EACV,gBAAgB,EAChB,UAAU,EACV,yBAAyB,EACzB,oBAAoB,EACpB,0BAA0B,EAC1B,KAAK,+BAA+B,EACpC,KAAK,qBAAqB,GAC3B,CAAC;AAEF,YAAY,EAAE,cAAc,IAAI,qBAAqB,EAAE,CAAC;AACxD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["AdvancedSettings","Aggregations","AggregationEdit","AggregationUtils","ChartBuilder","CustomColumnBuilder","OptionType","RollupRows","TableCsvExporter","TableSaver","VisibilityOrderingBuilder","AdvancedSettingsType","DownloadServiceWorkerUtils"],"sources":["../../src/sidebar/index.ts"],"sourcesContent":["import AdvancedSettings from './AdvancedSettings';\nimport Aggregations from './aggregations/Aggregations';\nimport AggregationEdit from './aggregations/AggregationEdit';\nimport AggregationUtils from './aggregations/AggregationUtils';\nimport ChartBuilder from './ChartBuilder';\nimport CustomColumnBuilder from './CustomColumnBuilder';\nimport OptionType, {
|
|
1
|
+
{"version":3,"file":"index.js","names":["AdvancedSettings","Aggregations","AggregationEdit","AggregationUtils","ChartBuilder","CustomColumnBuilder","OptionType","RollupRows","TableCsvExporter","TableSaver","VisibilityOrderingBuilder","AdvancedSettingsType","DownloadServiceWorkerUtils"],"sources":["../../src/sidebar/index.ts"],"sourcesContent":["import AdvancedSettings from './AdvancedSettings';\nimport Aggregations from './aggregations/Aggregations';\nimport AggregationEdit from './aggregations/AggregationEdit';\nimport AggregationUtils from './aggregations/AggregationUtils';\nimport ChartBuilder from './ChartBuilder';\nimport CustomColumnBuilder from './CustomColumnBuilder';\nimport OptionType, {\n type OptionItemKey,\n type PluginOptionKey,\n} from './OptionType';\nimport RollupRows from './RollupRows';\nimport TableCsvExporter from './TableCsvExporter';\nimport TableSaver from './TableSaver';\nimport VisibilityOrderingBuilder from './visibility-ordering-builder/VisibilityOrderingBuilder';\nimport { type FormattingRule } from './conditional-formatting/ConditionalFormattingUtils';\nimport AdvancedSettingsType from './AdvancedSettingsType';\nimport DownloadServiceWorkerUtils from './DownloadServiceWorkerUtils';\nimport {\n type IrisGridTableOptionsWidgetProps,\n type TableOptionsTransform,\n} from './IrisGridTableOptionsWidgetProps';\n\nexport {\n AdvancedSettings,\n Aggregations,\n AggregationEdit,\n AggregationUtils,\n ChartBuilder,\n CustomColumnBuilder,\n OptionType,\n type OptionItemKey,\n type PluginOptionKey,\n RollupRows,\n TableCsvExporter,\n TableSaver,\n VisibilityOrderingBuilder,\n AdvancedSettingsType,\n DownloadServiceWorkerUtils,\n type IrisGridTableOptionsWidgetProps,\n type TableOptionsTransform,\n};\n\nexport type { FormattingRule as SidebarFormattingRule };\nexport * from './aggregations';\nexport * from './RollupRows';\nexport * from './ChartBuilder';\nexport * from './InputEditor';\nexport * from './icons';\n"],"mappings":"OAAOA,gBAAgB;AAAA,OAChBC,YAAY;AAAA,OACZC,eAAe;AAAA,OACfC,gBAAgB;AAAA,OAChBC,YAAY;AAAA,OACZC,mBAAmB;AAAA,OACnBC,UAAU;AAAA,OAIVC,UAAU;AAAA,OACVC,gBAAgB;AAAA,OAChBC,UAAU;AAAA,OACVC,yBAAyB;AAAA,OAEzBC,oBAAoB;AAAA,OACpBC,0BAA0B;AAMjC,SACEZ,gBAAgB,EAChBC,YAAY,EACZC,eAAe,EACfC,gBAAgB,EAChBC,YAAY,EACZC,mBAAmB,EACnBC,UAAU,EAGVC,UAAU,EACVC,gBAAgB,EAChBC,UAAU,EACVC,yBAAyB,EACzBC,oBAAoB,EACpBC,0BAA0B;AAG1B;AAAA;AAAA;AAAA;AAAA","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/iris-grid",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
4
4
|
"description": "Deephaven Iris Grid",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"build:sass": "sass --embed-sources --load-path=../../node_modules ./src:./dist"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@deephaven/components": "^1.
|
|
35
|
-
"@deephaven/console": "^1.
|
|
36
|
-
"@deephaven/filters": "^1.
|
|
37
|
-
"@deephaven/grid": "^1.
|
|
38
|
-
"@deephaven/icons": "^1.
|
|
39
|
-
"@deephaven/jsapi-components": "^1.
|
|
34
|
+
"@deephaven/components": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
35
|
+
"@deephaven/console": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
36
|
+
"@deephaven/filters": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
37
|
+
"@deephaven/grid": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
38
|
+
"@deephaven/icons": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
39
|
+
"@deephaven/jsapi-components": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
40
40
|
"@deephaven/jsapi-types": "^1.0.0-dev0.40.4",
|
|
41
|
-
"@deephaven/jsapi-utils": "^1.
|
|
42
|
-
"@deephaven/log": "^1.
|
|
43
|
-
"@deephaven/react-hooks": "^1.
|
|
44
|
-
"@deephaven/storage": "^1.
|
|
45
|
-
"@deephaven/utils": "^1.
|
|
41
|
+
"@deephaven/jsapi-utils": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
42
|
+
"@deephaven/log": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
43
|
+
"@deephaven/react-hooks": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
44
|
+
"@deephaven/storage": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
45
|
+
"@deephaven/utils": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
46
46
|
"@dnd-kit/core": "^6.1.0",
|
|
47
47
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
48
48
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"react-dom": ">=18.0.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@deephaven/jsapi-shim": "^1.
|
|
70
|
-
"@deephaven/mocks": "^1.
|
|
71
|
-
"@deephaven/test-utils": "^1.
|
|
69
|
+
"@deephaven/jsapi-shim": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
70
|
+
"@deephaven/mocks": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
71
|
+
"@deephaven/test-utils": "^1.23.1-legacy-table-plugin.bbf55c8.0+bbf55c8",
|
|
72
72
|
"deep-equal": "2.2.3"
|
|
73
73
|
},
|
|
74
74
|
"files": [
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"publishConfig": {
|
|
82
82
|
"access": "public"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "bbf55c8e8e005d3d1aa6bc4800a64499a6ad7288"
|
|
85
85
|
}
|