@adaptabletools/adaptable 11.0.0-canary.7 → 11.0.2-canary.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.
Files changed (72) hide show
  1. package/README.md +4 -4
  2. package/base.css +1 -2
  3. package/bundle.cjs.js +75 -75
  4. package/index.css +1 -2
  5. package/package.json +1 -1
  6. package/publishTimestamp.d.ts +1 -1
  7. package/publishTimestamp.js +1 -1
  8. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -2
  9. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +3 -0
  10. package/src/AdaptableOptions/FilterOptions.d.ts +4 -0
  11. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +7 -6
  12. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  13. package/src/Api/GridApi.d.ts +1 -2
  14. package/src/Api/Implementation/AlertApiImpl.js +1 -2
  15. package/src/Api/Implementation/ColumnApiImpl.js +1 -1
  16. package/src/Api/Implementation/GridApiImpl.js +14 -17
  17. package/src/Api/Implementation/SettingsPanelApiImpl.js +1 -1
  18. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  19. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
  20. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
  21. package/src/PredefinedConfig/Common/Types.d.ts +4 -1
  22. package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
  23. package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
  24. package/src/PredefinedConfig/PlusMinusState.d.ts +1 -1
  25. package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
  26. package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
  27. package/src/Redux/ActionsReducers/AlertRedux.js +4 -4
  28. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
  29. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +4 -4
  30. package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
  31. package/src/Redux/ActionsReducers/CustomSortRedux.js +4 -4
  32. package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +12 -12
  33. package/src/Redux/ActionsReducers/FlashingCellRedux.js +33 -29
  34. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
  35. package/src/Redux/ActionsReducers/FormatColumnRedux.js +4 -4
  36. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
  37. package/src/Redux/ActionsReducers/PlusMinusRedux.js +4 -4
  38. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
  39. package/src/Redux/ActionsReducers/ScheduleRedux.js +16 -16
  40. package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
  41. package/src/Redux/ActionsReducers/ShortcutRedux.js +4 -4
  42. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  43. package/src/Redux/Store/AdaptableStore.js +20 -20
  44. package/src/Strategy/AlertModule.js +1 -1
  45. package/src/Strategy/FlashingCellModule.js +2 -2
  46. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -1
  47. package/src/Utilities/Constants/DocumentationLinkConstants.js +11 -10
  48. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -1
  49. package/src/Utilities/Services/ModuleService.js +33 -40
  50. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  51. package/src/View/Components/EntityRulesEditor/index.d.ts +1 -1
  52. package/src/View/Components/EntityRulesEditor/index.js +1 -1
  53. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
  54. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
  55. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  56. package/src/View/Dashboard/DashboardPopup.js +1 -1
  57. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
  58. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  59. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
  60. package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
  61. package/src/agGrid/Adaptable.d.ts +4 -2
  62. package/src/agGrid/Adaptable.js +83 -42
  63. package/src/agGrid/CheckboxRenderer.d.ts +8 -1
  64. package/src/agGrid/CheckboxRenderer.js +25 -4
  65. package/src/agGrid/agGridHelper.d.ts +1 -1
  66. package/src/agGrid/agGridHelper.js +7 -8
  67. package/src/components/ExpressionEditor/index.js +1 -1
  68. package/src/components/icons/calculated-column.js +2 -1
  69. package/src/metamodel/adaptable.metamodel.d.ts +194 -4
  70. package/src/metamodel/adaptable.metamodel.js +280 -17
  71. package/version.d.ts +1 -1
  72. package/version.js +1 -1
@@ -599,7 +599,7 @@ exports.ADAPTABLE_METAMODEL = {
599
599
  {
600
600
  "name": "readOnly",
601
601
  "kind": "boolean",
602
- "description": "Is column editable",
602
+ "description": "Is the column editable; returns FALSE if the column has conditional/dynamic editability, assuming some rows are editable",
603
603
  "uiLabel": "Read Only"
604
604
  },
605
605
  {
@@ -889,6 +889,11 @@ exports.ADAPTABLE_METAMODEL = {
889
889
  "kind": "TypeAlias",
890
890
  "description": "Defines a Message Types: 'Success', 'Info', 'Warning' or 'Error'"
891
891
  },
892
+ "AdaptableModule": {
893
+ "name": "AdaptableModule",
894
+ "kind": "TypeAlias",
895
+ "description": "Modules provided by AdapTable, subject to Entitlements and usually have Predefined Config"
896
+ },
892
897
  "AdaptableObject": {
893
898
  "name": "AdaptableObject",
894
899
  "kind": "Interface",
@@ -938,7 +943,7 @@ exports.ADAPTABLE_METAMODEL = {
938
943
  "description": "Options for managing AdapTableQL",
939
944
  "uiLabel": "Adaptable QL Options",
940
945
  "isOptional": true,
941
- "reference": "unknown"
946
+ "reference": "AdaptableQLOptions"
942
947
  },
943
948
  {
944
949
  "name": "adaptableStateKey",
@@ -1289,6 +1294,40 @@ exports.ADAPTABLE_METAMODEL = {
1289
1294
  }
1290
1295
  ]
1291
1296
  },
1297
+ "AdaptableQLOptions": {
1298
+ "name": "AdaptableQLOptions",
1299
+ "kind": "Interface",
1300
+ "description": "Options for managing AdaptableQL - the Adaptable Query Lanaguage which evaluates Predicates and Expressions",
1301
+ "properties": [
1302
+ {
1303
+ "name": "caseSensitiveTextComparisons",
1304
+ "kind": "boolean",
1305
+ "description": "Perform case-sensitive text comparisons in all search and filter operations: QuickSearch, Filters, Query, Predicates",
1306
+ "uiLabel": "Case Sensitive Text Comparisons",
1307
+ "isOptional": true,
1308
+ "gridInfo": "item",
1309
+ "defaultValue": "false"
1310
+ },
1311
+ {
1312
+ "name": "expressionOptions",
1313
+ "kind": "REFERENCE",
1314
+ "description": "Options for managing Expressions in AdapTableQL",
1315
+ "uiLabel": "Expression Options",
1316
+ "isOptional": true,
1317
+ "reference": "ExpressionOptions"
1318
+ },
1319
+ {
1320
+ "name": "externallyEvaluatedModules",
1321
+ "kind": "REFERENCE",
1322
+ "description": "Which searching and filtering options should take place on server",
1323
+ "uiLabel": "Externally Evaluated Modules",
1324
+ "isOptional": true,
1325
+ "gridInfo": "item",
1326
+ "defaultValue": "undefined",
1327
+ "reference": "unknown"
1328
+ }
1329
+ ]
1330
+ },
1292
1331
  "AdaptableReadyInfo": {
1293
1332
  "name": "AdaptableReadyInfo",
1294
1333
  "kind": "Interface",
@@ -1978,7 +2017,7 @@ exports.ADAPTABLE_METAMODEL = {
1978
2017
  "kind": "REFERENCE",
1979
2018
  "description": "Adaptable Module to rename",
1980
2019
  "uiLabel": "Adaptable Module",
1981
- "reference": "unknown"
2020
+ "reference": "AdaptableModule"
1982
2021
  },
1983
2022
  {
1984
2023
  "name": "newName",
@@ -2312,6 +2351,38 @@ exports.ADAPTABLE_METAMODEL = {
2312
2351
  }
2313
2352
  ]
2314
2353
  },
2354
+ "CellColorRange": {
2355
+ "name": "CellColorRange",
2356
+ "kind": "Interface",
2357
+ "description": "Defines which Colours to show in Gradient and Percent Bar Styles",
2358
+ "properties": [
2359
+ {
2360
+ "name": "Color",
2361
+ "kind": "string",
2362
+ "description": "Cell colour to use for values that fall inside Range",
2363
+ "uiLabel": "Color"
2364
+ },
2365
+ {
2366
+ "name": "Max",
2367
+ "kind": "number",
2368
+ "description": "End number of Range",
2369
+ "uiLabel": "Max"
2370
+ },
2371
+ {
2372
+ "name": "Min",
2373
+ "kind": "number",
2374
+ "description": "Start number of Range",
2375
+ "uiLabel": "Min"
2376
+ },
2377
+ {
2378
+ "name": "ReverseGradient",
2379
+ "kind": "boolean",
2380
+ "description": "Reverses the Gradient so the lower the cell value the darker the colour",
2381
+ "uiLabel": "Reverse Gradient",
2382
+ "isOptional": true
2383
+ }
2384
+ ]
2385
+ },
2315
2386
  "CellHighlightInfo": {
2316
2387
  "name": "CellHighlightInfo",
2317
2388
  "kind": "Interface",
@@ -2811,6 +2882,31 @@ exports.ADAPTABLE_METAMODEL = {
2811
2882
  }
2812
2883
  ]
2813
2884
  },
2885
+ "ColumnComparison": {
2886
+ "name": "ColumnComparison",
2887
+ "kind": "Interface",
2888
+ "description": "Enables a Percent Bar or Gradient Style to use another column in its calculations",
2889
+ "properties": [
2890
+ {
2891
+ "name": "Color",
2892
+ "kind": "string",
2893
+ "description": "Colour to use for the Percent bar",
2894
+ "uiLabel": "Color"
2895
+ },
2896
+ {
2897
+ "name": "MaxValue",
2898
+ "kind": "unknown",
2899
+ "description": "End value - either numeric or Column name",
2900
+ "uiLabel": "Max Value"
2901
+ },
2902
+ {
2903
+ "name": "MinValue",
2904
+ "kind": "unknown",
2905
+ "description": "Start value - either numeric or Column name",
2906
+ "uiLabel": "Min Value"
2907
+ }
2908
+ ]
2909
+ },
2814
2910
  "ColumnFilter": {
2815
2911
  "name": "ColumnFilter",
2816
2912
  "kind": "Interface",
@@ -2877,6 +2973,36 @@ exports.ADAPTABLE_METAMODEL = {
2877
2973
  }
2878
2974
  ]
2879
2975
  },
2976
+ "ColumnStyle": {
2977
+ "name": "ColumnStyle",
2978
+ "kind": "Interface",
2979
+ "description": "Special Style used when Formatting Columns: Gradient, PercentBar or CheckBox",
2980
+ "properties": [
2981
+ {
2982
+ "name": "CheckBoxStyle",
2983
+ "kind": "boolean",
2984
+ "description": "Style a boolean column so each cell displays a checkbox",
2985
+ "uiLabel": "Check Box Style",
2986
+ "isOptional": true
2987
+ },
2988
+ {
2989
+ "name": "GradientStyle",
2990
+ "kind": "REFERENCE",
2991
+ "description": "Style a numeric column so each cell value shows a gradient shade",
2992
+ "uiLabel": "Gradient Style",
2993
+ "isOptional": true,
2994
+ "reference": "GradientStyle"
2995
+ },
2996
+ {
2997
+ "name": "PercentBarStyle",
2998
+ "kind": "REFERENCE",
2999
+ "description": "Style a numeric column so each cell displays a 'bar'",
3000
+ "uiLabel": "Percent Bar Style",
3001
+ "isOptional": true,
3002
+ "reference": "PercentBarStyle"
3003
+ }
3004
+ ]
3005
+ },
2880
3006
  "ColumnValuesComparer": {
2881
3007
  "name": "ColumnValuesComparer",
2882
3008
  "kind": "Interface",
@@ -2906,7 +3032,7 @@ exports.ADAPTABLE_METAMODEL = {
2906
3032
  {
2907
3033
  "name": "IncludeGroupedRows",
2908
3034
  "kind": "boolean",
2909
- "description": "Whether to apply Style in Grouped Rows",
3035
+ "description": "Whether to apply Style in Grouped Rows and when Pivoting",
2910
3036
  "uiLabel": "Include Grouped Rows",
2911
3037
  "isOptional": true,
2912
3038
  "defaultValue": "false"
@@ -3056,7 +3182,7 @@ exports.ADAPTABLE_METAMODEL = {
3056
3182
  {
3057
3183
  "name": "ConditionalStyles",
3058
3184
  "kind": "unknown",
3059
- "description": "Array of Conditional Styles to ship with Adaptable",
3185
+ "description": "Array of Conditional Styles to ship with AdapTable",
3060
3186
  "uiLabel": "Conditional Styles",
3061
3187
  "isOptional": true
3062
3188
  }
@@ -3479,6 +3605,42 @@ exports.ADAPTABLE_METAMODEL = {
3479
3605
  }
3480
3606
  ]
3481
3607
  },
3608
+ "CustomSettingsPanel": {
3609
+ "name": "CustomSettingsPanel",
3610
+ "kind": "Interface",
3611
+ "description": "Definition of a Custom Panel to add to the Adaptable Settings Panel",
3612
+ "properties": [
3613
+ {
3614
+ "name": "frameworkComponent",
3615
+ "kind": "REFERENCE",
3616
+ "description": "Framework-specific (Angular or React) component to be rendered",
3617
+ "uiLabel": "Framework Component",
3618
+ "isOptional": true,
3619
+ "reference": "unknown"
3620
+ },
3621
+ {
3622
+ "name": "icon",
3623
+ "kind": "REFERENCE",
3624
+ "description": "Icon rendered inside settings-panel name, inside the navigation",
3625
+ "uiLabel": "Icon",
3626
+ "isOptional": true,
3627
+ "reference": "AdaptableIcon"
3628
+ },
3629
+ {
3630
+ "name": "name",
3631
+ "kind": "string",
3632
+ "description": "Appears in Settings Panel Navigation and must be included in settingsPanelOptions.navigation for it to be displayed (by default added to the end)",
3633
+ "uiLabel": "Name"
3634
+ },
3635
+ {
3636
+ "name": "render",
3637
+ "kind": "unknown",
3638
+ "description": "Function to provide bespoke content when NOT using a Framework wrapper",
3639
+ "uiLabel": "Render",
3640
+ "isOptional": true
3641
+ }
3642
+ ]
3643
+ },
3482
3644
  "CustomSort": {
3483
3645
  "name": "CustomSort",
3484
3646
  "kind": "Interface",
@@ -3699,6 +3861,13 @@ exports.ADAPTABLE_METAMODEL = {
3699
3861
  "kind": "Interface",
3700
3862
  "description": "Defines a Custom ToolPanel - provided by Users and contains custom content",
3701
3863
  "properties": [
3864
+ {
3865
+ "name": "buttons",
3866
+ "kind": "unknown",
3867
+ "description": "Optional set of buttons to show in the ToolPanel",
3868
+ "uiLabel": "Buttons",
3869
+ "isOptional": true
3870
+ },
3702
3871
  {
3703
3872
  "name": "frameworkComponent",
3704
3873
  "kind": "REFERENCE",
@@ -3726,13 +3895,6 @@ exports.ADAPTABLE_METAMODEL = {
3726
3895
  "description": "Title to display in Custom ToolPanel; if undefined, will default to `name` property",
3727
3896
  "uiLabel": "Title",
3728
3897
  "isOptional": true
3729
- },
3730
- {
3731
- "name": "toolPanelButtons",
3732
- "kind": "unknown",
3733
- "description": "Optional set of buttons to show in the ToolPanel",
3734
- "uiLabel": "Tool Panel Buttons",
3735
- "isOptional": true
3736
3898
  }
3737
3899
  ]
3738
3900
  },
@@ -5520,6 +5682,13 @@ exports.ADAPTABLE_METAMODEL = {
5520
5682
  "gridInfo": "item",
5521
5683
  "defaultValue": "2,000"
5522
5684
  },
5685
+ {
5686
+ "name": "quickFilterHeight",
5687
+ "kind": "number",
5688
+ "description": "TODO: add comment",
5689
+ "uiLabel": "Quick Filter Height",
5690
+ "isOptional": true
5691
+ },
5523
5692
  {
5524
5693
  "name": "quickFilterTrigger",
5525
5694
  "kind": "unknown",
@@ -5911,7 +6080,7 @@ exports.ADAPTABLE_METAMODEL = {
5911
6080
  "description": "Applies Gradient, Percent Bar or CheckBox style to a Column",
5912
6081
  "uiLabel": "Column Style",
5913
6082
  "isOptional": true,
5914
- "reference": "unknown"
6083
+ "reference": "ColumnStyle"
5915
6084
  },
5916
6085
  {
5917
6086
  "name": "DisplayFormat",
@@ -6657,6 +6826,28 @@ exports.ADAPTABLE_METAMODEL = {
6657
6826
  }
6658
6827
  ]
6659
6828
  },
6829
+ "GradientStyle": {
6830
+ "name": "GradientStyle",
6831
+ "kind": "Interface",
6832
+ "description": "Used to display Gradient Styles in Format Column",
6833
+ "properties": [
6834
+ {
6835
+ "name": "CellRanges",
6836
+ "kind": "unknown",
6837
+ "description": "Ranges (e.g. to allow a traffic light effect)",
6838
+ "uiLabel": "Cell Ranges",
6839
+ "isOptional": true
6840
+ },
6841
+ {
6842
+ "name": "ColumnComparison",
6843
+ "kind": "REFERENCE",
6844
+ "description": "Compares cell values to another Column",
6845
+ "uiLabel": "Column Comparison",
6846
+ "isOptional": true,
6847
+ "reference": "ColumnComparison"
6848
+ }
6849
+ ]
6850
+ },
6660
6851
  "GridApi": {
6661
6852
  "name": "GridApi",
6662
6853
  "kind": "Interface",
@@ -8538,6 +8729,52 @@ exports.ADAPTABLE_METAMODEL = {
8538
8729
  "kind": "Interface",
8539
8730
  "description": "Internal State used by AdapTable for managing the OpenFin plugin"
8540
8731
  },
8732
+ "PercentBarStyle": {
8733
+ "name": "PercentBarStyle",
8734
+ "kind": "Interface",
8735
+ "description": "Style used to display Percent Bars in Format Column",
8736
+ "properties": [
8737
+ {
8738
+ "name": "BackColor",
8739
+ "kind": "string",
8740
+ "description": "Back colour - only used for 'Percent Bar' Numeric style; leave unset if none required",
8741
+ "uiLabel": "Back Color",
8742
+ "isOptional": true,
8743
+ "defaultValue": "Gray"
8744
+ },
8745
+ {
8746
+ "name": "CellRanges",
8747
+ "kind": "unknown",
8748
+ "description": "Ranges (e.g. to allow a traffic light effect)",
8749
+ "uiLabel": "Cell Ranges",
8750
+ "isOptional": true
8751
+ },
8752
+ {
8753
+ "name": "CellText",
8754
+ "kind": "REFERENCE",
8755
+ "description": "Whether Cell shows Cell Value, Percent Value, both or none",
8756
+ "uiLabel": "Cell Text",
8757
+ "isOptional": true,
8758
+ "reference": "unknown"
8759
+ },
8760
+ {
8761
+ "name": "ColumnComparison",
8762
+ "kind": "REFERENCE",
8763
+ "description": "Compares cell values to another Column",
8764
+ "uiLabel": "Column Comparison",
8765
+ "isOptional": true,
8766
+ "reference": "ColumnComparison"
8767
+ },
8768
+ {
8769
+ "name": "ToolTipText",
8770
+ "kind": "REFERENCE",
8771
+ "description": "Whether Tooltip shows Cell Value, Percent Value, both or none",
8772
+ "uiLabel": "Tool Tip Text",
8773
+ "isOptional": true,
8774
+ "reference": "unknown"
8775
+ }
8776
+ ]
8777
+ },
8541
8778
  "PermittedValues": {
8542
8779
  "name": "PermittedValues",
8543
8780
  "kind": "Interface",
@@ -8700,7 +8937,7 @@ exports.ADAPTABLE_METAMODEL = {
8700
8937
  {
8701
8938
  "name": "Rule",
8702
8939
  "kind": "REFERENCE",
8703
- "description": "(Optional) Boolean Query to determine whether to apply the Nudge",
8940
+ "description": "(Optional) Boolean Expression to determine whether to apply the Nudge",
8704
8941
  "uiLabel": "Rule",
8705
8942
  "isOptional": true,
8706
8943
  "reference": "unknown"
@@ -10034,7 +10271,7 @@ exports.ADAPTABLE_METAMODEL = {
10034
10271
  "kind": "REFERENCE",
10035
10272
  "description": "Adaptable Module to which object belongs",
10036
10273
  "uiLabel": "Module",
10037
- "reference": "unknown"
10274
+ "reference": "AdaptableModule"
10038
10275
  },
10039
10276
  {
10040
10277
  "name": "Revision",
@@ -10368,6 +10605,27 @@ exports.ADAPTABLE_METAMODEL = {
10368
10605
  }
10369
10606
  ]
10370
10607
  },
10608
+ "StringFormatterOptions": {
10609
+ "name": "StringFormatterOptions",
10610
+ "kind": "Interface",
10611
+ "description": "Formatter Options for String Columns",
10612
+ "properties": [
10613
+ {
10614
+ "name": "Case",
10615
+ "kind": "unknown",
10616
+ "description": "Sets text to Upper or Lower case",
10617
+ "uiLabel": "Case",
10618
+ "isOptional": true
10619
+ },
10620
+ {
10621
+ "name": "Trim",
10622
+ "kind": "boolean",
10623
+ "description": "Trims text (both start and end)",
10624
+ "uiLabel": "Trim",
10625
+ "isOptional": true
10626
+ }
10627
+ ]
10628
+ },
10371
10629
  "SuspendableObject": {
10372
10630
  "name": "SuspendableObject",
10373
10631
  "kind": "Interface",
@@ -10836,10 +11094,10 @@ exports.ADAPTABLE_METAMODEL = {
10836
11094
  "defaultValue": "'AdapTable'"
10837
11095
  },
10838
11096
  {
10839
- "name": "customToolPanelButtons",
11097
+ "name": "customButtons",
10840
11098
  "kind": "unknown",
10841
11099
  "description": "ToolPanel Buttons provided by Users which perform custom behaviour",
10842
- "uiLabel": "Custom Tool Panel Buttons",
11100
+ "uiLabel": "Custom Buttons",
10843
11101
  "isOptional": true
10844
11102
  },
10845
11103
  {
@@ -10934,6 +11192,11 @@ exports.ADAPTABLE_METAMODEL = {
10934
11192
  }
10935
11193
  ]
10936
11194
  },
11195
+ "ToolPanelVisibilityMode": {
11196
+ "name": "ToolPanelVisibilityMode",
11197
+ "kind": "TypeAlias",
11198
+ "description": "Whether a ToolPanel displays as expanded or collapsed"
11199
+ },
10937
11200
  "UserInterfaceApi": {
10938
11201
  "name": "UserInterfaceApi",
10939
11202
  "kind": "Interface",
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "11.0.0-canary.7";
1
+ declare const _default: "11.0.2-canary.0";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '11.0.0-canary.7'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '11.0.2-canary.0'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version