@deephaven/iris-grid 0.20.1-beta.0 → 0.20.1-beta.14

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.
@@ -1 +1 @@
1
- {"version":3,"file":"DecimalFormatContextMenu.d.ts","sourceRoot":"","sources":["../../src/format-context-menus/DecimalFormatContextMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EAEpB,MAAM,wBAAwB,CAAC;AAChC,OAA+B,EAC7B,uBAAuB,EACxB,MAAM,0BAA0B,CAAC;AAElC,cAAM,wBAAwB;IAC5B,MAAM,CAAC,YAAY,SAAM;IAEzB,MAAM,CAAC,WAAW,SAAM;IAExB,MAAM,CAAC,gBAAgB,SAAM;IAE7B,MAAM,CAAC,WAAW,SAAM;IAExB;;;;;OAKG;IACH,MAAM,CAAC,UAAU,CACf,cAAc,EAAE,mBAAmB,EACnC,oBAAoB,EAAE,CAAC,KAAK,EAAE,mBAAmB,GAAG,IAAI,KAAK,IAAI,GAChE,uBAAuB,EAAE;CAyE7B;AAED,eAAe,wBAAwB,CAAC"}
1
+ {"version":3,"file":"DecimalFormatContextMenu.d.ts","sourceRoot":"","sources":["../../src/format-context-menus/DecimalFormatContextMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EAEpB,MAAM,wBAAwB,CAAC;AAChC,OAA+B,EAC7B,uBAAuB,EACxB,MAAM,0BAA0B,CAAC;AAElC,cAAM,wBAAwB;IAC5B,MAAM,CAAC,YAAY,SAAM;IAEzB,MAAM,CAAC,WAAW,SAAM;IAExB,MAAM,CAAC,gBAAgB,SAAM;IAE7B,MAAM,CAAC,WAAW,SAAM;IAExB;;;;;OAKG;IACH,MAAM,CAAC,UAAU,CACf,cAAc,EAAE,mBAAmB,EACnC,oBAAoB,EAAE,CAAC,KAAK,EAAE,mBAAmB,GAAG,IAAI,KAAK,IAAI,GAChE,uBAAuB,EAAE;CA6E7B;AAED,eAAe,wBAAwB,CAAC"}
@@ -20,6 +20,9 @@ class DecimalFormatContextMenu {
20
20
  }, {
21
21
  format: DecimalColumnFormatter.FORMAT_MILLIONS,
22
22
  group: DecimalFormatContextMenu.presetGroup
23
+ }, {
24
+ format: DecimalColumnFormatter.FORMAT_SCIENTIFIC_NOTATION,
25
+ group: DecimalFormatContextMenu.presetGroup
23
26
  }, {
24
27
  format: DecimalColumnFormatter.FORMAT_ROUND,
25
28
  group: DecimalFormatContextMenu.presetRoundGroup
@@ -1 +1 @@
1
- {"version":3,"file":"DecimalFormatContextMenu.js","names":["DecimalColumnFormatter","FormatContextMenuUtils","DecimalFormatContextMenu","getOptions","selectedFormat","onCustomFormatChange","formatItems","format","FORMAT_PERCENT","group","presetGroup","FORMAT_BASIS_POINTS","FORMAT_MILLIONS","FORMAT_ROUND","presetRoundGroup","FORMAT_ROUND_TWO_DECIMALS","FORMAT_ROUND_FOUR_DECIMALS","defaultFormatOption","makeOption","defaultGroup","isDefaultSelected","presetFormatOptions","map","item","label","isSameFormat","isCustomSelected","customFormat","makeCustomFormat","customFormatOption","makeCustomFormatOption","customGroup","DEFAULT_FORMAT_STRING","formatString","newCustomFormat","isValid"],"sources":["../../src/format-context-menus/DecimalFormatContextMenu.ts"],"sourcesContent":["import {\n DecimalColumnFormat,\n DecimalColumnFormatter,\n} from '@deephaven/jsapi-utils';\nimport FormatContextMenuUtils, {\n FormatContextMenuOption,\n} from './FormatContextMenuUtils';\n\nclass DecimalFormatContextMenu {\n static defaultGroup = 10;\n\n static presetGroup = 20;\n\n static presetRoundGroup = 30;\n\n static customGroup = 40;\n\n /**\n * Creates list of formatting options for Decimal context menu\n * @param selectedFormat Selected format object, null for no selected format\n * @param onCustomFormatChange Callback to call when the custom format is changed\n * @returns Array of formatting options for the context menu\n */\n static getOptions(\n selectedFormat: DecimalColumnFormat,\n onCustomFormatChange: (value: DecimalColumnFormat | null) => void\n ): FormatContextMenuOption[] {\n const formatItems = [\n {\n format: DecimalColumnFormatter.FORMAT_PERCENT,\n group: DecimalFormatContextMenu.presetGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_BASIS_POINTS,\n group: DecimalFormatContextMenu.presetGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_MILLIONS,\n group: DecimalFormatContextMenu.presetGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_ROUND,\n group: DecimalFormatContextMenu.presetRoundGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_ROUND_TWO_DECIMALS,\n group: DecimalFormatContextMenu.presetRoundGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_ROUND_FOUR_DECIMALS,\n group: DecimalFormatContextMenu.presetRoundGroup,\n },\n ];\n\n const defaultFormatOption = FormatContextMenuUtils.makeOption(\n 'Default',\n null,\n DecimalFormatContextMenu.defaultGroup,\n FormatContextMenuUtils.isDefaultSelected(selectedFormat)\n );\n\n const presetFormatOptions = formatItems.map(item =>\n FormatContextMenuUtils.makeOption(\n item.format.label,\n item.format,\n item.group,\n DecimalColumnFormatter.isSameFormat(item.format, selectedFormat)\n )\n );\n\n const isCustomSelected = FormatContextMenuUtils.isCustomSelected(\n selectedFormat\n );\n\n const customFormat = isCustomSelected\n ? selectedFormat\n : DecimalColumnFormatter.makeCustomFormat();\n\n const customFormatOption = FormatContextMenuUtils.makeCustomFormatOption(\n customFormat,\n DecimalFormatContextMenu.customGroup,\n DecimalColumnFormatter.DEFAULT_FORMAT_STRING,\n isCustomSelected,\n formatString => {\n if (formatString != null) {\n const newCustomFormat = DecimalColumnFormatter.makeCustomFormat(\n formatString\n );\n if (DecimalColumnFormatter.isValid(newCustomFormat)) {\n onCustomFormatChange(newCustomFormat);\n }\n } else {\n onCustomFormatChange(null);\n }\n }\n );\n\n return [defaultFormatOption, ...presetFormatOptions, customFormatOption];\n }\n}\n\nexport default DecimalFormatContextMenu;\n"],"mappings":";;AAAA,SAEEA,sBAFF,QAGO,wBAHP;OAIOC,sB;;AAIP,MAAMC,wBAAN,CAA+B;EAS7B;AACF;AACA;AACA;AACA;AACA;EACmB,OAAVC,UAAU,CACfC,cADe,EAEfC,oBAFe,EAGY;IAC3B,IAAMC,WAAW,GAAG,CAClB;MACEC,MAAM,EAAEP,sBAAsB,CAACQ,cADjC;MAEEC,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CADkB,EAKlB;MACEH,MAAM,EAAEP,sBAAsB,CAACW,mBADjC;MAEEF,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CALkB,EASlB;MACEH,MAAM,EAAEP,sBAAsB,CAACY,eADjC;MAEEH,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CATkB,EAalB;MACEH,MAAM,EAAEP,sBAAsB,CAACa,YADjC;MAEEJ,KAAK,EAAEP,wBAAwB,CAACY;IAFlC,CAbkB,EAiBlB;MACEP,MAAM,EAAEP,sBAAsB,CAACe,yBADjC;MAEEN,KAAK,EAAEP,wBAAwB,CAACY;IAFlC,CAjBkB,EAqBlB;MACEP,MAAM,EAAEP,sBAAsB,CAACgB,0BADjC;MAEEP,KAAK,EAAEP,wBAAwB,CAACY;IAFlC,CArBkB,CAApB;IA2BA,IAAMG,mBAAmB,GAAGhB,sBAAsB,CAACiB,UAAvB,CAC1B,SAD0B,EAE1B,IAF0B,EAG1BhB,wBAAwB,CAACiB,YAHC,EAI1BlB,sBAAsB,CAACmB,iBAAvB,CAAyChB,cAAzC,CAJ0B,CAA5B;IAOA,IAAMiB,mBAAmB,GAAGf,WAAW,CAACgB,GAAZ,CAAgBC,IAAI,IAC9CtB,sBAAsB,CAACiB,UAAvB,CACEK,IAAI,CAAChB,MAAL,CAAYiB,KADd,EAEED,IAAI,CAAChB,MAFP,EAGEgB,IAAI,CAACd,KAHP,EAIET,sBAAsB,CAACyB,YAAvB,CAAoCF,IAAI,CAAChB,MAAzC,EAAiDH,cAAjD,CAJF,CAD0B,CAA5B;IASA,IAAMsB,gBAAgB,GAAGzB,sBAAsB,CAACyB,gBAAvB,CACvBtB,cADuB,CAAzB;IAIA,IAAMuB,YAAY,GAAGD,gBAAgB,GACjCtB,cADiC,GAEjCJ,sBAAsB,CAAC4B,gBAAvB,EAFJ;IAIA,IAAMC,kBAAkB,GAAG5B,sBAAsB,CAAC6B,sBAAvB,CACzBH,YADyB,EAEzBzB,wBAAwB,CAAC6B,WAFA,EAGzB/B,sBAAsB,CAACgC,qBAHE,EAIzBN,gBAJyB,EAKzBO,YAAY,IAAI;MACd,IAAIA,YAAY,IAAI,IAApB,EAA0B;QACxB,IAAMC,eAAe,GAAGlC,sBAAsB,CAAC4B,gBAAvB,CACtBK,YADsB,CAAxB;;QAGA,IAAIjC,sBAAsB,CAACmC,OAAvB,CAA+BD,eAA/B,CAAJ,EAAqD;UACnD7B,oBAAoB,CAAC6B,eAAD,CAApB;QACD;MACF,CAPD,MAOO;QACL7B,oBAAoB,CAAC,IAAD,CAApB;MACD;IACF,CAhBwB,CAA3B;IAmBA,OAAO,CAACY,mBAAD,EAAsB,GAAGI,mBAAzB,EAA8CQ,kBAA9C,CAAP;EACD;;AA1F4B;;gBAAzB3B,wB,kBACkB,E;;gBADlBA,wB,iBAGiB,E;;gBAHjBA,wB,sBAKsB,E;;gBALtBA,wB,iBAOiB,E;;AAsFvB,eAAeA,wBAAf"}
1
+ {"version":3,"file":"DecimalFormatContextMenu.js","names":["DecimalColumnFormatter","FormatContextMenuUtils","DecimalFormatContextMenu","getOptions","selectedFormat","onCustomFormatChange","formatItems","format","FORMAT_PERCENT","group","presetGroup","FORMAT_BASIS_POINTS","FORMAT_MILLIONS","FORMAT_SCIENTIFIC_NOTATION","FORMAT_ROUND","presetRoundGroup","FORMAT_ROUND_TWO_DECIMALS","FORMAT_ROUND_FOUR_DECIMALS","defaultFormatOption","makeOption","defaultGroup","isDefaultSelected","presetFormatOptions","map","item","label","isSameFormat","isCustomSelected","customFormat","makeCustomFormat","customFormatOption","makeCustomFormatOption","customGroup","DEFAULT_FORMAT_STRING","formatString","newCustomFormat","isValid"],"sources":["../../src/format-context-menus/DecimalFormatContextMenu.ts"],"sourcesContent":["import {\n DecimalColumnFormat,\n DecimalColumnFormatter,\n} from '@deephaven/jsapi-utils';\nimport FormatContextMenuUtils, {\n FormatContextMenuOption,\n} from './FormatContextMenuUtils';\n\nclass DecimalFormatContextMenu {\n static defaultGroup = 10;\n\n static presetGroup = 20;\n\n static presetRoundGroup = 30;\n\n static customGroup = 40;\n\n /**\n * Creates list of formatting options for Decimal context menu\n * @param selectedFormat Selected format object, null for no selected format\n * @param onCustomFormatChange Callback to call when the custom format is changed\n * @returns Array of formatting options for the context menu\n */\n static getOptions(\n selectedFormat: DecimalColumnFormat,\n onCustomFormatChange: (value: DecimalColumnFormat | null) => void\n ): FormatContextMenuOption[] {\n const formatItems = [\n {\n format: DecimalColumnFormatter.FORMAT_PERCENT,\n group: DecimalFormatContextMenu.presetGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_BASIS_POINTS,\n group: DecimalFormatContextMenu.presetGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_MILLIONS,\n group: DecimalFormatContextMenu.presetGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_SCIENTIFIC_NOTATION,\n group: DecimalFormatContextMenu.presetGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_ROUND,\n group: DecimalFormatContextMenu.presetRoundGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_ROUND_TWO_DECIMALS,\n group: DecimalFormatContextMenu.presetRoundGroup,\n },\n {\n format: DecimalColumnFormatter.FORMAT_ROUND_FOUR_DECIMALS,\n group: DecimalFormatContextMenu.presetRoundGroup,\n },\n ];\n\n const defaultFormatOption = FormatContextMenuUtils.makeOption(\n 'Default',\n null,\n DecimalFormatContextMenu.defaultGroup,\n FormatContextMenuUtils.isDefaultSelected(selectedFormat)\n );\n\n const presetFormatOptions = formatItems.map(item =>\n FormatContextMenuUtils.makeOption(\n item.format.label,\n item.format,\n item.group,\n DecimalColumnFormatter.isSameFormat(item.format, selectedFormat)\n )\n );\n\n const isCustomSelected = FormatContextMenuUtils.isCustomSelected(\n selectedFormat\n );\n\n const customFormat = isCustomSelected\n ? selectedFormat\n : DecimalColumnFormatter.makeCustomFormat();\n\n const customFormatOption = FormatContextMenuUtils.makeCustomFormatOption(\n customFormat,\n DecimalFormatContextMenu.customGroup,\n DecimalColumnFormatter.DEFAULT_FORMAT_STRING,\n isCustomSelected,\n formatString => {\n if (formatString != null) {\n const newCustomFormat = DecimalColumnFormatter.makeCustomFormat(\n formatString\n );\n if (DecimalColumnFormatter.isValid(newCustomFormat)) {\n onCustomFormatChange(newCustomFormat);\n }\n } else {\n onCustomFormatChange(null);\n }\n }\n );\n\n return [defaultFormatOption, ...presetFormatOptions, customFormatOption];\n }\n}\n\nexport default DecimalFormatContextMenu;\n"],"mappings":";;AAAA,SAEEA,sBAFF,QAGO,wBAHP;OAIOC,sB;;AAIP,MAAMC,wBAAN,CAA+B;EAS7B;AACF;AACA;AACA;AACA;AACA;EACmB,OAAVC,UAAU,CACfC,cADe,EAEfC,oBAFe,EAGY;IAC3B,IAAMC,WAAW,GAAG,CAClB;MACEC,MAAM,EAAEP,sBAAsB,CAACQ,cADjC;MAEEC,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CADkB,EAKlB;MACEH,MAAM,EAAEP,sBAAsB,CAACW,mBADjC;MAEEF,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CALkB,EASlB;MACEH,MAAM,EAAEP,sBAAsB,CAACY,eADjC;MAEEH,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CATkB,EAalB;MACEH,MAAM,EAAEP,sBAAsB,CAACa,0BADjC;MAEEJ,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CAbkB,EAiBlB;MACEH,MAAM,EAAEP,sBAAsB,CAACc,YADjC;MAEEL,KAAK,EAAEP,wBAAwB,CAACa;IAFlC,CAjBkB,EAqBlB;MACER,MAAM,EAAEP,sBAAsB,CAACgB,yBADjC;MAEEP,KAAK,EAAEP,wBAAwB,CAACa;IAFlC,CArBkB,EAyBlB;MACER,MAAM,EAAEP,sBAAsB,CAACiB,0BADjC;MAEER,KAAK,EAAEP,wBAAwB,CAACa;IAFlC,CAzBkB,CAApB;IA+BA,IAAMG,mBAAmB,GAAGjB,sBAAsB,CAACkB,UAAvB,CAC1B,SAD0B,EAE1B,IAF0B,EAG1BjB,wBAAwB,CAACkB,YAHC,EAI1BnB,sBAAsB,CAACoB,iBAAvB,CAAyCjB,cAAzC,CAJ0B,CAA5B;IAOA,IAAMkB,mBAAmB,GAAGhB,WAAW,CAACiB,GAAZ,CAAgBC,IAAI,IAC9CvB,sBAAsB,CAACkB,UAAvB,CACEK,IAAI,CAACjB,MAAL,CAAYkB,KADd,EAEED,IAAI,CAACjB,MAFP,EAGEiB,IAAI,CAACf,KAHP,EAIET,sBAAsB,CAAC0B,YAAvB,CAAoCF,IAAI,CAACjB,MAAzC,EAAiDH,cAAjD,CAJF,CAD0B,CAA5B;IASA,IAAMuB,gBAAgB,GAAG1B,sBAAsB,CAAC0B,gBAAvB,CACvBvB,cADuB,CAAzB;IAIA,IAAMwB,YAAY,GAAGD,gBAAgB,GACjCvB,cADiC,GAEjCJ,sBAAsB,CAAC6B,gBAAvB,EAFJ;IAIA,IAAMC,kBAAkB,GAAG7B,sBAAsB,CAAC8B,sBAAvB,CACzBH,YADyB,EAEzB1B,wBAAwB,CAAC8B,WAFA,EAGzBhC,sBAAsB,CAACiC,qBAHE,EAIzBN,gBAJyB,EAKzBO,YAAY,IAAI;MACd,IAAIA,YAAY,IAAI,IAApB,EAA0B;QACxB,IAAMC,eAAe,GAAGnC,sBAAsB,CAAC6B,gBAAvB,CACtBK,YADsB,CAAxB;;QAGA,IAAIlC,sBAAsB,CAACoC,OAAvB,CAA+BD,eAA/B,CAAJ,EAAqD;UACnD9B,oBAAoB,CAAC8B,eAAD,CAApB;QACD;MACF,CAPD,MAOO;QACL9B,oBAAoB,CAAC,IAAD,CAApB;MACD;IACF,CAhBwB,CAA3B;IAmBA,OAAO,CAACa,mBAAD,EAAsB,GAAGI,mBAAzB,EAA8CQ,kBAA9C,CAAP;EACD;;AA9F4B;;gBAAzB5B,wB,kBACkB,E;;gBADlBA,wB,iBAGiB,E;;gBAHjBA,wB,sBAKsB,E;;gBALtBA,wB,iBAOiB,E;;AA0FvB,eAAeA,wBAAf"}
@@ -1 +1 @@
1
- {"version":3,"file":"IntegerFormatContextMenu.d.ts","sourceRoot":"","sources":["../../src/format-context-menus/IntegerFormatContextMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EAEpB,MAAM,wBAAwB,CAAC;AAChC,OAA+B,EAC7B,uBAAuB,EACxB,MAAM,0BAA0B,CAAC;AAElC,cAAM,wBAAwB;IAC5B,MAAM,CAAC,YAAY,SAAM;IAEzB,MAAM,CAAC,WAAW,SAAM;IAExB,MAAM,CAAC,WAAW,SAAM;IAExB;;;;;OAKG;IACH,MAAM,CAAC,UAAU,CACf,cAAc,EAAE,mBAAmB,EACnC,oBAAoB,EAAE,CAAC,KAAK,EAAE,mBAAmB,GAAG,IAAI,KAAK,IAAI,GAChE,uBAAuB,EAAE;CAqD7B;AAED,eAAe,wBAAwB,CAAC"}
1
+ {"version":3,"file":"IntegerFormatContextMenu.d.ts","sourceRoot":"","sources":["../../src/format-context-menus/IntegerFormatContextMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EAEpB,MAAM,wBAAwB,CAAC;AAChC,OAA+B,EAC7B,uBAAuB,EACxB,MAAM,0BAA0B,CAAC;AAElC,cAAM,wBAAwB;IAC5B,MAAM,CAAC,YAAY,SAAM;IAEzB,MAAM,CAAC,WAAW,SAAM;IAExB,MAAM,CAAC,WAAW,SAAM;IAExB;;;;;OAKG;IACH,MAAM,CAAC,UAAU,CACf,cAAc,EAAE,mBAAmB,EACnC,oBAAoB,EAAE,CAAC,KAAK,EAAE,mBAAmB,GAAG,IAAI,KAAK,IAAI,GAChE,uBAAuB,EAAE;CAyD7B;AAED,eAAe,wBAAwB,CAAC"}
@@ -14,6 +14,9 @@ class IntegerFormatContextMenu {
14
14
  var formatItems = [{
15
15
  format: IntegerColumnFormatter.FORMAT_MILLIONS,
16
16
  group: IntegerFormatContextMenu.presetGroup
17
+ }, {
18
+ format: IntegerColumnFormatter.FORMAT_SCIENTIFIC_NOTATION,
19
+ group: IntegerFormatContextMenu.presetGroup
17
20
  }];
18
21
  var defaultFormatOption = FormatContextMenuUtils.makeOption('Default', null, IntegerFormatContextMenu.defaultGroup, FormatContextMenuUtils.isDefaultSelected(selectedFormat));
19
22
  var presetFormatOptions = formatItems.map(item => FormatContextMenuUtils.makeOption(item.format.label, item.format, item.group, IntegerColumnFormatter.isSameFormat(item.format, selectedFormat)));
@@ -1 +1 @@
1
- {"version":3,"file":"IntegerFormatContextMenu.js","names":["IntegerColumnFormatter","FormatContextMenuUtils","IntegerFormatContextMenu","getOptions","selectedFormat","onCustomFormatChange","formatItems","format","FORMAT_MILLIONS","group","presetGroup","defaultFormatOption","makeOption","defaultGroup","isDefaultSelected","presetFormatOptions","map","item","label","isSameFormat","isCustomSelected","customFormat","makeCustomFormat","customFormatOption","makeCustomFormatOption","customGroup","DEFAULT_FORMAT_STRING","formatString","newCustomFormat","isValid"],"sources":["../../src/format-context-menus/IntegerFormatContextMenu.ts"],"sourcesContent":["import {\n IntegerColumnFormat,\n IntegerColumnFormatter,\n} from '@deephaven/jsapi-utils';\nimport FormatContextMenuUtils, {\n FormatContextMenuOption,\n} from './FormatContextMenuUtils';\n\nclass IntegerFormatContextMenu {\n static defaultGroup = 10;\n\n static presetGroup = 20;\n\n static customGroup = 30;\n\n /**\n * Creates list of formatting options for Integer context menu\n * @param selectedFormat Selected format object, null for no selected format\n * @param onCustomFormatChange Callback to call when the custom format is changed\n * @returns Array of formatting options for the context menu\n */\n static getOptions(\n selectedFormat: IntegerColumnFormat,\n onCustomFormatChange: (value: IntegerColumnFormat | null) => void\n ): FormatContextMenuOption[] {\n const formatItems = [\n {\n format: IntegerColumnFormatter.FORMAT_MILLIONS,\n group: IntegerFormatContextMenu.presetGroup,\n },\n ];\n\n const defaultFormatOption = FormatContextMenuUtils.makeOption(\n 'Default',\n null,\n IntegerFormatContextMenu.defaultGroup,\n FormatContextMenuUtils.isDefaultSelected(selectedFormat)\n );\n\n const presetFormatOptions = formatItems.map(item =>\n FormatContextMenuUtils.makeOption(\n item.format.label,\n item.format,\n item.group,\n IntegerColumnFormatter.isSameFormat(item.format, selectedFormat)\n )\n );\n\n const isCustomSelected = FormatContextMenuUtils.isCustomSelected(\n selectedFormat\n );\n\n const customFormat = isCustomSelected\n ? selectedFormat\n : IntegerColumnFormatter.makeCustomFormat();\n\n const customFormatOption = FormatContextMenuUtils.makeCustomFormatOption(\n customFormat,\n IntegerFormatContextMenu.customGroup,\n IntegerColumnFormatter.DEFAULT_FORMAT_STRING,\n isCustomSelected,\n formatString => {\n if (formatString != null) {\n const newCustomFormat = IntegerColumnFormatter.makeCustomFormat(\n formatString\n );\n if (IntegerColumnFormatter.isValid(newCustomFormat)) {\n onCustomFormatChange(newCustomFormat);\n }\n } else {\n onCustomFormatChange(null);\n }\n }\n );\n\n return [defaultFormatOption, ...presetFormatOptions, customFormatOption];\n }\n}\n\nexport default IntegerFormatContextMenu;\n"],"mappings":";;AAAA,SAEEA,sBAFF,QAGO,wBAHP;OAIOC,sB;;AAIP,MAAMC,wBAAN,CAA+B;EAO7B;AACF;AACA;AACA;AACA;AACA;EACmB,OAAVC,UAAU,CACfC,cADe,EAEfC,oBAFe,EAGY;IAC3B,IAAMC,WAAW,GAAG,CAClB;MACEC,MAAM,EAAEP,sBAAsB,CAACQ,eADjC;MAEEC,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CADkB,CAApB;IAOA,IAAMC,mBAAmB,GAAGV,sBAAsB,CAACW,UAAvB,CAC1B,SAD0B,EAE1B,IAF0B,EAG1BV,wBAAwB,CAACW,YAHC,EAI1BZ,sBAAsB,CAACa,iBAAvB,CAAyCV,cAAzC,CAJ0B,CAA5B;IAOA,IAAMW,mBAAmB,GAAGT,WAAW,CAACU,GAAZ,CAAgBC,IAAI,IAC9ChB,sBAAsB,CAACW,UAAvB,CACEK,IAAI,CAACV,MAAL,CAAYW,KADd,EAEED,IAAI,CAACV,MAFP,EAGEU,IAAI,CAACR,KAHP,EAIET,sBAAsB,CAACmB,YAAvB,CAAoCF,IAAI,CAACV,MAAzC,EAAiDH,cAAjD,CAJF,CAD0B,CAA5B;IASA,IAAMgB,gBAAgB,GAAGnB,sBAAsB,CAACmB,gBAAvB,CACvBhB,cADuB,CAAzB;IAIA,IAAMiB,YAAY,GAAGD,gBAAgB,GACjChB,cADiC,GAEjCJ,sBAAsB,CAACsB,gBAAvB,EAFJ;IAIA,IAAMC,kBAAkB,GAAGtB,sBAAsB,CAACuB,sBAAvB,CACzBH,YADyB,EAEzBnB,wBAAwB,CAACuB,WAFA,EAGzBzB,sBAAsB,CAAC0B,qBAHE,EAIzBN,gBAJyB,EAKzBO,YAAY,IAAI;MACd,IAAIA,YAAY,IAAI,IAApB,EAA0B;QACxB,IAAMC,eAAe,GAAG5B,sBAAsB,CAACsB,gBAAvB,CACtBK,YADsB,CAAxB;;QAGA,IAAI3B,sBAAsB,CAAC6B,OAAvB,CAA+BD,eAA/B,CAAJ,EAAqD;UACnDvB,oBAAoB,CAACuB,eAAD,CAApB;QACD;MACF,CAPD,MAOO;QACLvB,oBAAoB,CAAC,IAAD,CAApB;MACD;IACF,CAhBwB,CAA3B;IAmBA,OAAO,CAACM,mBAAD,EAAsB,GAAGI,mBAAzB,EAA8CQ,kBAA9C,CAAP;EACD;;AApE4B;;gBAAzBrB,wB,kBACkB,E;;gBADlBA,wB,iBAGiB,E;;gBAHjBA,wB,iBAKiB,E;;AAkEvB,eAAeA,wBAAf"}
1
+ {"version":3,"file":"IntegerFormatContextMenu.js","names":["IntegerColumnFormatter","FormatContextMenuUtils","IntegerFormatContextMenu","getOptions","selectedFormat","onCustomFormatChange","formatItems","format","FORMAT_MILLIONS","group","presetGroup","FORMAT_SCIENTIFIC_NOTATION","defaultFormatOption","makeOption","defaultGroup","isDefaultSelected","presetFormatOptions","map","item","label","isSameFormat","isCustomSelected","customFormat","makeCustomFormat","customFormatOption","makeCustomFormatOption","customGroup","DEFAULT_FORMAT_STRING","formatString","newCustomFormat","isValid"],"sources":["../../src/format-context-menus/IntegerFormatContextMenu.ts"],"sourcesContent":["import {\n IntegerColumnFormat,\n IntegerColumnFormatter,\n} from '@deephaven/jsapi-utils';\nimport FormatContextMenuUtils, {\n FormatContextMenuOption,\n} from './FormatContextMenuUtils';\n\nclass IntegerFormatContextMenu {\n static defaultGroup = 10;\n\n static presetGroup = 20;\n\n static customGroup = 30;\n\n /**\n * Creates list of formatting options for Integer context menu\n * @param selectedFormat Selected format object, null for no selected format\n * @param onCustomFormatChange Callback to call when the custom format is changed\n * @returns Array of formatting options for the context menu\n */\n static getOptions(\n selectedFormat: IntegerColumnFormat,\n onCustomFormatChange: (value: IntegerColumnFormat | null) => void\n ): FormatContextMenuOption[] {\n const formatItems = [\n {\n format: IntegerColumnFormatter.FORMAT_MILLIONS,\n group: IntegerFormatContextMenu.presetGroup,\n },\n {\n format: IntegerColumnFormatter.FORMAT_SCIENTIFIC_NOTATION,\n group: IntegerFormatContextMenu.presetGroup,\n },\n ];\n\n const defaultFormatOption = FormatContextMenuUtils.makeOption(\n 'Default',\n null,\n IntegerFormatContextMenu.defaultGroup,\n FormatContextMenuUtils.isDefaultSelected(selectedFormat)\n );\n\n const presetFormatOptions = formatItems.map(item =>\n FormatContextMenuUtils.makeOption(\n item.format.label,\n item.format,\n item.group,\n IntegerColumnFormatter.isSameFormat(item.format, selectedFormat)\n )\n );\n\n const isCustomSelected = FormatContextMenuUtils.isCustomSelected(\n selectedFormat\n );\n\n const customFormat = isCustomSelected\n ? selectedFormat\n : IntegerColumnFormatter.makeCustomFormat();\n\n const customFormatOption = FormatContextMenuUtils.makeCustomFormatOption(\n customFormat,\n IntegerFormatContextMenu.customGroup,\n IntegerColumnFormatter.DEFAULT_FORMAT_STRING,\n isCustomSelected,\n formatString => {\n if (formatString != null) {\n const newCustomFormat = IntegerColumnFormatter.makeCustomFormat(\n formatString\n );\n if (IntegerColumnFormatter.isValid(newCustomFormat)) {\n onCustomFormatChange(newCustomFormat);\n }\n } else {\n onCustomFormatChange(null);\n }\n }\n );\n\n return [defaultFormatOption, ...presetFormatOptions, customFormatOption];\n }\n}\n\nexport default IntegerFormatContextMenu;\n"],"mappings":";;AAAA,SAEEA,sBAFF,QAGO,wBAHP;OAIOC,sB;;AAIP,MAAMC,wBAAN,CAA+B;EAO7B;AACF;AACA;AACA;AACA;AACA;EACmB,OAAVC,UAAU,CACfC,cADe,EAEfC,oBAFe,EAGY;IAC3B,IAAMC,WAAW,GAAG,CAClB;MACEC,MAAM,EAAEP,sBAAsB,CAACQ,eADjC;MAEEC,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CADkB,EAKlB;MACEH,MAAM,EAAEP,sBAAsB,CAACW,0BADjC;MAEEF,KAAK,EAAEP,wBAAwB,CAACQ;IAFlC,CALkB,CAApB;IAWA,IAAME,mBAAmB,GAAGX,sBAAsB,CAACY,UAAvB,CAC1B,SAD0B,EAE1B,IAF0B,EAG1BX,wBAAwB,CAACY,YAHC,EAI1Bb,sBAAsB,CAACc,iBAAvB,CAAyCX,cAAzC,CAJ0B,CAA5B;IAOA,IAAMY,mBAAmB,GAAGV,WAAW,CAACW,GAAZ,CAAgBC,IAAI,IAC9CjB,sBAAsB,CAACY,UAAvB,CACEK,IAAI,CAACX,MAAL,CAAYY,KADd,EAEED,IAAI,CAACX,MAFP,EAGEW,IAAI,CAACT,KAHP,EAIET,sBAAsB,CAACoB,YAAvB,CAAoCF,IAAI,CAACX,MAAzC,EAAiDH,cAAjD,CAJF,CAD0B,CAA5B;IASA,IAAMiB,gBAAgB,GAAGpB,sBAAsB,CAACoB,gBAAvB,CACvBjB,cADuB,CAAzB;IAIA,IAAMkB,YAAY,GAAGD,gBAAgB,GACjCjB,cADiC,GAEjCJ,sBAAsB,CAACuB,gBAAvB,EAFJ;IAIA,IAAMC,kBAAkB,GAAGvB,sBAAsB,CAACwB,sBAAvB,CACzBH,YADyB,EAEzBpB,wBAAwB,CAACwB,WAFA,EAGzB1B,sBAAsB,CAAC2B,qBAHE,EAIzBN,gBAJyB,EAKzBO,YAAY,IAAI;MACd,IAAIA,YAAY,IAAI,IAApB,EAA0B;QACxB,IAAMC,eAAe,GAAG7B,sBAAsB,CAACuB,gBAAvB,CACtBK,YADsB,CAAxB;;QAGA,IAAI5B,sBAAsB,CAAC8B,OAAvB,CAA+BD,eAA/B,CAAJ,EAAqD;UACnDxB,oBAAoB,CAACwB,eAAD,CAApB;QACD;MACF,CAPD,MAOO;QACLxB,oBAAoB,CAAC,IAAD,CAApB;MACD;IACF,CAhBwB,CAA3B;IAmBA,OAAO,CAACO,mBAAD,EAAsB,GAAGI,mBAAzB,EAA8CQ,kBAA9C,CAAP;EACD;;AAxE4B;;gBAAzBtB,wB,kBACkB,E;;gBADlBA,wB,iBAGiB,E;;gBAHjBA,wB,iBAKiB,E;;AAsEvB,eAAeA,wBAAf"}
package/dist/index.d.ts CHANGED
@@ -19,4 +19,6 @@ export { default as IrisGridUtils } from './IrisGridUtils';
19
19
  export * from './IrisGridUtils';
20
20
  export { default } from './IrisGrid';
21
21
  export * from './IrisGrid';
22
+ export { default as TableViewportUpdater } from './TableViewportUpdater';
23
+ export { default as TreeTableViewportUpdater } from './TreeTableViewportUpdater';
22
24
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACrE,cAAc,sBAAsB,CAAC;AACrC,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AACrF,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,YAAY,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACrC,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACrE,cAAc,sBAAsB,CAAC;AACrC,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AACrF,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,YAAY,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,4BAA4B,CAAC"}
package/dist/index.js CHANGED
@@ -18,4 +18,6 @@ export { default as IrisGridUtils } from "./IrisGridUtils.js";
18
18
  export * from "./IrisGridUtils.js";
19
19
  export { default } from "./IrisGrid.js";
20
20
  export * from "./IrisGrid.js";
21
+ export { default as TableViewportUpdater } from "./TableViewportUpdater.js";
22
+ export { default as TreeTableViewportUpdater } from "./TreeTableViewportUpdater.js";
21
23
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["default","IrisGrid","SHORTCUTS","IrisGridModel","IrisGridTableModel","IrisGridTreeTableModel","IrisGridTableModelTemplate","IrisGridModelFactory","IrisGridTheme","IrisGridTestUtils","IrisGridUtils"],"sources":["../src/index.ts"],"sourcesContent":["export * from './sidebar';\nexport * from './AdvancedFilterCreator';\nexport * from './CommonTypes';\nexport { default as IrisGrid } from './IrisGrid';\nexport * from './IrisGrid';\nexport { default as SHORTCUTS } from './IrisGridShortcuts';\nexport { default as IrisGridModel } from './IrisGridModel';\nexport { default as IrisGridTableModel } from './IrisGridTableModel';\nexport * from './IrisGridTableModel';\nexport { default as IrisGridTreeTableModel } from './IrisGridTreeTableModel';\nexport { default as IrisGridTableModelTemplate } from './IrisGridTableModelTemplate';\nexport * from './IrisGridTableModelTemplate';\nexport * from './IrisGridTreeTableModel';\nexport { default as IrisGridModelFactory } from './IrisGridModelFactory';\nexport { default as IrisGridTheme } from './IrisGridTheme';\nexport type { IrisGridThemeType } from './IrisGridTheme';\nexport { default as IrisGridTestUtils } from './IrisGridTestUtils';\nexport { default as IrisGridUtils } from './IrisGridUtils';\nexport * from './IrisGridUtils';\nexport { default } from './IrisGrid';\nexport * from './IrisGrid';\n"],"mappings":";;;SAGSA,OAAO,IAAIC,Q;;SAEXD,OAAO,IAAIE,S;SACXF,OAAO,IAAIG,a;SACXH,OAAO,IAAII,kB;;SAEXJ,OAAO,IAAIK,sB;SACXL,OAAO,IAAIM,0B;;;SAGXN,OAAO,IAAIO,oB;SACXP,OAAO,IAAIQ,a;SAEXR,OAAO,IAAIS,iB;SACXT,OAAO,IAAIU,a;;SAEXV,O"}
1
+ {"version":3,"file":"index.js","names":["default","IrisGrid","SHORTCUTS","IrisGridModel","IrisGridTableModel","IrisGridTreeTableModel","IrisGridTableModelTemplate","IrisGridModelFactory","IrisGridTheme","IrisGridTestUtils","IrisGridUtils","TableViewportUpdater","TreeTableViewportUpdater"],"sources":["../src/index.ts"],"sourcesContent":["export * from './sidebar';\nexport * from './AdvancedFilterCreator';\nexport * from './CommonTypes';\nexport { default as IrisGrid } from './IrisGrid';\nexport * from './IrisGrid';\nexport { default as SHORTCUTS } from './IrisGridShortcuts';\nexport { default as IrisGridModel } from './IrisGridModel';\nexport { default as IrisGridTableModel } from './IrisGridTableModel';\nexport * from './IrisGridTableModel';\nexport { default as IrisGridTreeTableModel } from './IrisGridTreeTableModel';\nexport { default as IrisGridTableModelTemplate } from './IrisGridTableModelTemplate';\nexport * from './IrisGridTableModelTemplate';\nexport * from './IrisGridTreeTableModel';\nexport { default as IrisGridModelFactory } from './IrisGridModelFactory';\nexport { default as IrisGridTheme } from './IrisGridTheme';\nexport type { IrisGridThemeType } from './IrisGridTheme';\nexport { default as IrisGridTestUtils } from './IrisGridTestUtils';\nexport { default as IrisGridUtils } from './IrisGridUtils';\nexport * from './IrisGridUtils';\nexport { default } from './IrisGrid';\nexport * from './IrisGrid';\nexport { default as TableViewportUpdater } from './TableViewportUpdater';\nexport { default as TreeTableViewportUpdater } from './TreeTableViewportUpdater';\n"],"mappings":";;;SAGSA,OAAO,IAAIC,Q;;SAEXD,OAAO,IAAIE,S;SACXF,OAAO,IAAIG,a;SACXH,OAAO,IAAII,kB;;SAEXJ,OAAO,IAAIK,sB;SACXL,OAAO,IAAIM,0B;;;SAGXN,OAAO,IAAIO,oB;SACXP,OAAO,IAAIQ,a;SAEXR,OAAO,IAAIS,iB;SACXT,OAAO,IAAIU,a;;SAEXV,O;;SAEAA,OAAO,IAAIW,oB;SACXX,OAAO,IAAIY,wB"}
@@ -16,4 +16,5 @@ export type { FormattingRule as SidebarFormattingRule };
16
16
  export * from './aggregations';
17
17
  export * from './RollupRows';
18
18
  export * from './ChartBuilder';
19
+ export * from './icons';
19
20
  //# sourceMappingURL=index.d.ts.map
@@ -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,MAAM,cAAc,CAAC;AACtC,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,yBAAyB,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,qDAAqD,CAAC;AACrF,OAAO,oBAAoB,MAAM,wBAAwB,CAAC;AAE1D,OAAO,EACL,gBAAgB,EAChB,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,YAAY,EACZ,mBAAmB,EACnB,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,UAAU,EACV,yBAAyB,EACzB,oBAAoB,GACrB,CAAC;AAEF,YAAY,EAAE,cAAc,IAAI,qBAAqB,EAAE,CAAC;AACxD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC"}
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,MAAM,cAAc,CAAC;AACtC,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,yBAAyB,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,qDAAqD,CAAC;AACrF,OAAO,oBAAoB,MAAM,wBAAwB,CAAC;AAE1D,OAAO,EACL,gBAAgB,EAChB,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,YAAY,EACZ,mBAAmB,EACnB,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,UAAU,EACV,yBAAyB,EACzB,oBAAoB,GACrB,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,SAAS,CAAC"}
@@ -14,4 +14,5 @@ export { AdvancedSettings, Aggregations, AggregationEdit, AggregationUtils, Char
14
14
  export * from "./aggregations/index.js";
15
15
  export * from "./RollupRows.js";
16
16
  export * from "./ChartBuilder.js";
17
+ export * from "./icons/index.js";
17
18
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["AdvancedSettings","Aggregations","AggregationEdit","AggregationUtils","ChartBuilder","CustomColumnBuilder","OptionType","RollupRows","TableCsvExporter","TableSaver","VisibilityOrderingBuilder","AdvancedSettingsType"],"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 from './OptionType';\nimport RollupRows from './RollupRows';\nimport TableCsvExporter from './TableCsvExporter';\nimport TableSaver from './TableSaver';\nimport VisibilityOrderingBuilder from './VisibilityOrderingBuilder';\nimport { FormattingRule } from './conditional-formatting/ConditionalFormattingUtils';\nimport AdvancedSettingsType from './AdvancedSettingsType';\n\nexport {\n AdvancedSettings,\n Aggregations,\n AggregationEdit,\n AggregationUtils,\n ChartBuilder,\n CustomColumnBuilder,\n OptionType,\n RollupRows,\n TableCsvExporter,\n TableSaver,\n VisibilityOrderingBuilder,\n AdvancedSettingsType,\n};\n\nexport type { FormattingRule as SidebarFormattingRule };\nexport * from './aggregations';\nexport * from './RollupRows';\nexport * from './ChartBuilder';\n"],"mappings":"OAAOA,gB;OACAC,Y;OACAC,e;OACAC,gB;OACAC,Y;OACAC,mB;OACAC,U;OACAC,U;OACAC,gB;OACAC,U;OACAC,yB;OAEAC,oB;AAEP,SACEX,gBADF,EAEEC,YAFF,EAGEC,eAHF,EAIEC,gBAJF,EAKEC,YALF,EAMEC,mBANF,EAOEC,UAPF,EAQEC,UARF,EASEC,gBATF,EAUEC,UAVF,EAWEC,yBAXF,EAYEC,oBAZF"}
1
+ {"version":3,"file":"index.js","names":["AdvancedSettings","Aggregations","AggregationEdit","AggregationUtils","ChartBuilder","CustomColumnBuilder","OptionType","RollupRows","TableCsvExporter","TableSaver","VisibilityOrderingBuilder","AdvancedSettingsType"],"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 from './OptionType';\nimport RollupRows from './RollupRows';\nimport TableCsvExporter from './TableCsvExporter';\nimport TableSaver from './TableSaver';\nimport VisibilityOrderingBuilder from './VisibilityOrderingBuilder';\nimport { FormattingRule } from './conditional-formatting/ConditionalFormattingUtils';\nimport AdvancedSettingsType from './AdvancedSettingsType';\n\nexport {\n AdvancedSettings,\n Aggregations,\n AggregationEdit,\n AggregationUtils,\n ChartBuilder,\n CustomColumnBuilder,\n OptionType,\n RollupRows,\n TableCsvExporter,\n TableSaver,\n VisibilityOrderingBuilder,\n AdvancedSettingsType,\n};\n\nexport type { FormattingRule as SidebarFormattingRule };\nexport * from './aggregations';\nexport * from './RollupRows';\nexport * from './ChartBuilder';\nexport * from './icons';\n"],"mappings":"OAAOA,gB;OACAC,Y;OACAC,e;OACAC,gB;OACAC,Y;OACAC,mB;OACAC,U;OACAC,U;OACAC,gB;OACAC,U;OACAC,yB;OAEAC,oB;AAEP,SACEX,gBADF,EAEEC,YAFF,EAGEC,eAHF,EAIEC,gBAJF,EAKEC,YALF,EAMEC,mBANF,EAOEC,UAPF,EAQEC,UARF,EASEC,gBATF,EAUEC,UAVF,EAWEC,yBAXF,EAYEC,oBAZF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/iris-grid",
3
- "version": "0.20.1-beta.0+d483569",
3
+ "version": "0.20.1-beta.14+1ff8b4f",
4
4
  "description": "Deephaven Iris Grid",
5
5
  "author": "Deephaven Data Labs LLC",
6
6
  "license": "Apache-2.0",
@@ -31,17 +31,17 @@
31
31
  "start": "cross-env NODE_ENV=development npm run watch"
32
32
  },
33
33
  "dependencies": {
34
- "@deephaven/components": "^0.20.1-beta.0+d483569",
35
- "@deephaven/console": "^0.20.1-beta.0+d483569",
36
- "@deephaven/filters": "^0.20.1-beta.0+d483569",
37
- "@deephaven/grid": "^0.20.1-beta.0+d483569",
38
- "@deephaven/icons": "^0.20.1-beta.0+d483569",
39
- "@deephaven/jsapi-shim": "^0.20.1-beta.0+d483569",
40
- "@deephaven/jsapi-utils": "^0.20.1-beta.0+d483569",
41
- "@deephaven/log": "^0.20.1-beta.0+d483569",
42
- "@deephaven/react-hooks": "^0.20.1-beta.0+d483569",
43
- "@deephaven/storage": "^0.20.1-beta.0+d483569",
44
- "@deephaven/utils": "^0.20.1-beta.0+d483569",
34
+ "@deephaven/components": "^0.20.1-beta.14+1ff8b4f",
35
+ "@deephaven/console": "^0.20.1-beta.14+1ff8b4f",
36
+ "@deephaven/filters": "^0.20.1-beta.14+1ff8b4f",
37
+ "@deephaven/grid": "^0.20.1-beta.14+1ff8b4f",
38
+ "@deephaven/icons": "^0.20.1-beta.14+1ff8b4f",
39
+ "@deephaven/jsapi-shim": "^0.20.1-beta.14+1ff8b4f",
40
+ "@deephaven/jsapi-utils": "^0.20.1-beta.14+1ff8b4f",
41
+ "@deephaven/log": "^0.20.1-beta.14+1ff8b4f",
42
+ "@deephaven/react-hooks": "^0.20.1-beta.14+1ff8b4f",
43
+ "@deephaven/storage": "^0.20.1-beta.14+1ff8b4f",
44
+ "@deephaven/utils": "^0.20.1-beta.14+1ff8b4f",
45
45
  "@fortawesome/react-fontawesome": "^0.1.18",
46
46
  "classnames": "^2.3.1",
47
47
  "deep-equal": "^2.0.5",
@@ -61,8 +61,8 @@
61
61
  "react": "^17.x"
62
62
  },
63
63
  "devDependencies": {
64
- "@deephaven/mocks": "^0.20.1-beta.0+d483569",
65
- "@deephaven/tsconfig": "^0.20.1-beta.0+d483569"
64
+ "@deephaven/mocks": "^0.20.1-beta.14+1ff8b4f",
65
+ "@deephaven/tsconfig": "^0.20.1-beta.14+1ff8b4f"
66
66
  },
67
67
  "files": [
68
68
  "dist"
@@ -73,5 +73,5 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "d483569ffe9aadc229d8869aee1e4f38ca6b3c4a"
76
+ "gitHead": "1ff8b4f30b532dd39c7b920bed56117688c9f037"
77
77
  }