@adaptabletools/adaptable 11.0.7 → 11.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable",
3
- "version": "11.0.7",
3
+ "version": "11.0.8",
4
4
  "description": "Powerful data-agnostic HTML5 datagrid add-on that sits on top of an underlying grid component and provides all the rich functionality that advanced users expect from their DataGrids and Data Tables",
5
5
  "keywords": [
6
6
  "web-components",
@@ -1,2 +1,2 @@
1
- declare const _default: 1647406497522;
1
+ declare const _default: 1647511077741;
2
2
  export default _default;
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = 1647406497522;
3
+ exports.default = 1647511077741;
@@ -131,7 +131,7 @@ export interface AlertApi {
131
131
  */
132
132
  showAlertError(alertHeader: string, alertMessage: string): void;
133
133
  /**
134
- * Opens the Alert popup screen
134
+ * Opens Settings Panel with Alert section selected and visible
135
135
  */
136
136
  showAlertPopup(): void;
137
137
  /**
@@ -8,7 +8,7 @@ export interface BulkUpdateApi {
8
8
  */
9
9
  getBulkUpdateValue(): string;
10
10
  /**
11
- * Opens Bulk Update popup screen
11
+ * Opens Settings Panel with Bulk Update section selected and visible
12
12
  */
13
13
  showBulkUpdatePopup(): void;
14
14
  /**
@@ -48,7 +48,7 @@ export interface CalculatedColumnApi {
48
48
  */
49
49
  deleteCalculatedColumn(calcColumn: string): void;
50
50
  /**
51
- * Opens Calculated Column popup screen
51
+ * Opens Settings Panel with Calculated Column section selected and visible
52
52
  */
53
53
  showCalculatedColumnPopup(): void;
54
54
  /**
@@ -16,7 +16,7 @@ export interface CellSummaryApi {
16
16
  */
17
17
  getCellSummaryOperationDefinitions(): CellSummaryOperation[];
18
18
  /**
19
- * Opens Cell Summary popup screen
19
+ * Opens Settings Panel with Cell Summary section selected and visible
20
20
  */
21
21
  showCellSummaryPopup(): void;
22
22
  }
@@ -30,7 +30,7 @@ export interface ConditionalStyleApi {
30
30
  */
31
31
  getAllSuspendedConditionalStyle(): ConditionalStyle[];
32
32
  /**
33
- * Opens Conditional Style popup screen
33
+ * Opens Settings Panel with Conditional Style section selected and visible
34
34
  */
35
35
  showConditionalStylePopup(): void;
36
36
  /**
@@ -71,7 +71,7 @@ export interface CustomSortApi {
71
71
  */
72
72
  unSuspendCustomSort(customSort: CustomSort): CustomSort;
73
73
  /**
74
- * Opens Custom Sort popup screen
74
+ * Opens Settings Panel with Custom Sort section selected and visible
75
75
  */
76
76
  showCustomSortPopup(): void;
77
77
  }
@@ -119,7 +119,7 @@ export interface DashboardApi {
119
119
  */
120
120
  isToolbarVisible(toolbar: AdaptableDashboardToolbar | string): boolean;
121
121
  /**
122
- * Opens the Dashboard popup screen
122
+ * Opens Settings Panel with Dashboard section selected and visible
123
123
  */
124
124
  showDashboardPopup(): void;
125
125
  /**
@@ -52,7 +52,7 @@ export interface DataSourceApi {
52
52
  */
53
53
  clearDataSource(): void;
54
54
  /**
55
- * Opens Data Source popup screen
55
+ * Opens Settings Panel with Data Source section selected and visible
56
56
  */
57
57
  showDataSourcePopup(): void;
58
58
  }
@@ -77,7 +77,7 @@ export interface ExportApi {
77
77
  */
78
78
  exportDataToExcel(reportData: ReportData, fileName: string): void;
79
79
  /**
80
- * Opens Export popup screen
80
+ * Opens Settings Panel with Export section selected and visible
81
81
  */
82
82
  showExportPopup(): void;
83
83
  /**
@@ -121,5 +121,10 @@ export interface ExportApi {
121
121
  * Runs the report function of the CustomReport with the given reportName
122
122
  * @param reportName custom report name
123
123
  */
124
- runCustomReport(reportName: string): ReportData;
124
+ runCustomReport(reportName: string): ReportData | undefined;
125
+ /**
126
+ * Returns the ReportData for the Report with the given name
127
+ * @param reportName - the name of the report
128
+ */
129
+ getReportDataForReport(reportName: string): ReportData | undefined;
125
130
  }
@@ -99,7 +99,7 @@ export interface FormatColumnApi {
99
99
  */
100
100
  applyFormatColumnDisplayFormats(): void;
101
101
  /**
102
- * Opens the Format Column popup screen
102
+ * Opens Settings Panel with Format Column section selected and visible
103
103
  */
104
104
  showFormatColumnPopup(): void;
105
105
  /**
@@ -65,7 +65,7 @@ export interface FreeTextColumnApi {
65
65
  */
66
66
  checkFreeTextColumnForDataChange(dataChangedInfo: DataChangedInfo): void;
67
67
  /**
68
- * Opens FreeTextColumn popup screen
68
+ * Opens Settings Panel with Free Text Column section selected and visible
69
69
  */
70
70
  showFreeTextColumnPopup(): void;
71
71
  /**
@@ -433,7 +433,7 @@ export interface GridApi {
433
433
  */
434
434
  getGridContainerElement(): HTMLElement | null;
435
435
  /**
436
- * Opens Grid Info popup screen
436
+ * Opens Settings Panel with Grid Info section selected and visible
437
437
  */
438
438
  showGridInfoPopup(): void;
439
439
  }
@@ -27,5 +27,6 @@ export declare class ExportApiImpl extends ApiBase implements ExportApi {
27
27
  editReports(reports: Report[]): Report[];
28
28
  isDataChangeInReport(dataChangedInfo: DataChangedInfo, report: Report): boolean;
29
29
  exportVisualDataToExcel(): void;
30
- runCustomReport(customReportName: string): ReportData;
30
+ runCustomReport(customReportName: string): ReportData | undefined;
31
+ getReportDataForReport(reportName: string): ReportData | undefined;
31
32
  }
@@ -6,6 +6,7 @@ const ExportRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/Ex
6
6
  const ApiBase_1 = require("./ApiBase");
7
7
  const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
8
8
  const Enums_1 = require("../../PredefinedConfig/Common/Enums");
9
+ const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
9
10
  class ExportApiImpl extends ApiBase_1.ApiBase {
10
11
  getExportState() {
11
12
  return this.getAdaptableState().Export;
@@ -162,7 +163,19 @@ class ExportApiImpl extends ApiBase_1.ApiBase {
162
163
  runCustomReport(customReportName) {
163
164
  var _a;
164
165
  const customReport = (_a = this.getExportOptions().customReports) === null || _a === void 0 ? void 0 : _a.find((cr) => cr.name == customReportName);
165
- return customReport ? customReport.onRunReport() : undefined;
166
+ if (!customReport) {
167
+ LoggingHelper_1.LogAdaptableWarning(`Custom Report '${customReportName}' not found!`);
168
+ return undefined;
169
+ }
170
+ return customReport.onRunReport();
171
+ }
172
+ getReportDataForReport(reportName) {
173
+ const report = this.getReportByName(reportName);
174
+ if (!report) {
175
+ LoggingHelper_1.LogAdaptableWarning(`Report '${reportName}' not found!`);
176
+ return undefined;
177
+ }
178
+ return this.adaptable.api.internalApi.getReportService().getReportData(report);
166
179
  }
167
180
  }
168
181
  exports.ExportApiImpl = ExportApiImpl;
@@ -32,5 +32,6 @@ export declare class LayoutApiImpl extends ApiBase implements LayoutApi {
32
32
  createDefaultLayoutIfNeeded(): Layout | null;
33
33
  showChangeColumnCaption(column: AdaptableColumn): void;
34
34
  showLayoutPopup(): void;
35
+ showLayoutEditor(): void;
35
36
  isCurrentLayoutReadOnly(): boolean;
36
37
  }
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
5
5
  const LayoutRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/LayoutRedux"));
6
6
  const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
7
7
  const ApiBase_1 = require("./ApiBase");
8
+ const PopupRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/PopupRedux"));
8
9
  const StringExtensions_1 = tslib_1.__importDefault(require("../../Utilities/Extensions/StringExtensions"));
9
10
  const ObjectFactory_1 = tslib_1.__importDefault(require("../../Utilities/ObjectFactory"));
10
11
  const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
@@ -248,6 +249,12 @@ class LayoutApiImpl extends ApiBase_1.ApiBase {
248
249
  showLayoutPopup() {
249
250
  this.showModulePopup(ModuleConstants.LayoutModuleId);
250
251
  }
252
+ showLayoutEditor() {
253
+ this.dispatchAction(PopupRedux.PopupShowScreen(ModuleConstants.LayoutModuleId, 'LayoutPopup', {
254
+ action: 'Edit',
255
+ source: 'Other',
256
+ }));
257
+ }
251
258
  isCurrentLayoutReadOnly() {
252
259
  const currentLayout = this.getCurrentLayout();
253
260
  if (currentLayout) {
@@ -124,15 +124,22 @@ export interface LayoutApi {
124
124
  */
125
125
  createDefaultLayoutIfNeeded(): Layout | null;
126
126
  /**
127
- * Opens Layout popup screen
127
+ * Opens Settings Panel with Layout section selected and visible
128
128
  */
129
129
  showLayoutPopup(): void;
130
+ /**
131
+ * Opens the Layout Editor for the current Layout
132
+ */
133
+ showLayoutEditor(): void;
130
134
  /**
131
135
  * Sets a new Caption / Header for a Column (this Layout only)
132
136
  * @param columnId Column to Update
133
137
  * @param caption New Caption to display
134
138
  */
135
139
  setColumnCaption(columnId: string, caption: string): void;
140
+ /**
141
+ * Specifies where Current Layout is editable
142
+ */
136
143
  isCurrentLayoutReadOnly(): boolean;
137
144
  /**
138
145
  * Opens change column caption popup
@@ -42,7 +42,7 @@ export interface PlusMinusApi {
42
42
  */
43
43
  applyPlusMinus(cells: GridCell[]): void;
44
44
  /**
45
- * Opens Plus Minus popup screen
45
+ * Opens Settings Panel with Plus Minus section selected and visible
46
46
  */
47
47
  showPlusMinusPopup(): void;
48
48
  /**
@@ -36,7 +36,7 @@ export interface QueryApi {
36
36
  */
37
37
  getNamedQueryModuleReferences(namedQueryName: string): string[];
38
38
  /**
39
- * Opens Query Popup screen
39
+ * Opens Settings Panel with Query section selected and visible
40
40
  */
41
41
  showQueryPopup(): void;
42
42
  /**
@@ -31,7 +31,7 @@ export interface QuickSearchApi {
31
31
  */
32
32
  setQuickSearchStyle(style: AdaptableStyle): void;
33
33
  /**
34
- * Opens Quick Search popup screen
34
+ * Opens Settings Panel with Quick Search section selected and visible
35
35
  */
36
36
  showQuickSearchPopup(): void;
37
37
  }
@@ -247,7 +247,7 @@ export interface ScheduleApi {
247
247
  */
248
248
  applySchedule(schedule: BaseSchedule, scheduleType: 'Report' | 'ipushpull' | 'Glue42' | 'Reminder' | 'OpenFin'): void;
249
249
  /**
250
- * Opens Schedule popup screen
250
+ * Opens Settings Panel with Schedule section selected and visible
251
251
  */
252
252
  showSchedulePopup(): void;
253
253
  }
@@ -56,7 +56,7 @@ export interface ShortcutApi {
56
56
  */
57
57
  unSuspendShortcut(shortcut: Shortcut): Shortcut;
58
58
  /**
59
- * Opens Shortcut popup screen
59
+ * Opens Settings Panel with Shortcut section selected and visible
60
60
  */
61
61
  showShortcutPopup(): void;
62
62
  }
@@ -22,7 +22,7 @@ export interface SmartEditApi {
22
22
  */
23
23
  getSmartEditValue(): number;
24
24
  /**
25
- * Opens Smart Edit popup screen
25
+ * Opens Settings Panel with Smart Edit section selected and visible
26
26
  */
27
27
  showSmartEditPopup(): void;
28
28
  /**
@@ -20,7 +20,7 @@ export interface TeamSharingApi {
20
20
  */
21
21
  hasTeamSharingFullRights(): boolean;
22
22
  /**
23
- * Opens Team Sharing popup screen
23
+ * Opens Settings Panel with Team Sharing section selected and visible
24
24
  */
25
25
  showTeamSharingPopup(): void;
26
26
  /**
@@ -53,7 +53,7 @@ export interface ThemeApi {
53
53
  */
54
54
  getAllTheme(): AdaptableTheme[];
55
55
  /**
56
- * Opens Theme popup screen
56
+ * Opens Settings Panel with Theme section selected and visible
57
57
  */
58
58
  showThemePopup(): void;
59
59
  }
@@ -77,7 +77,8 @@ exports.getPercentBarRendererForColumn = (formatColumn, api) => {
77
77
  return this.eGui;
78
78
  }
79
79
  refresh(params) {
80
- return true;
80
+ // by returning FALSE we force a re-render every time the cell value changes
81
+ return false;
81
82
  }
82
83
  };
83
84
  };
@@ -1726,7 +1726,7 @@ exports.ADAPTABLE_METAMODEL = {
1726
1726
  {
1727
1727
  "name": "showAlertPopup",
1728
1728
  "kind": "function",
1729
- "description": "Opens the Alert popup screen",
1729
+ "description": "Opens Settings Panel with Alert section selected and visible",
1730
1730
  "uiLabel": "Show Alert Popup"
1731
1731
  },
1732
1732
  {
@@ -2145,7 +2145,7 @@ exports.ADAPTABLE_METAMODEL = {
2145
2145
  {
2146
2146
  "name": "showBulkUpdatePopup",
2147
2147
  "kind": "function",
2148
- "description": "Opens Bulk Update popup screen",
2148
+ "description": "Opens Settings Panel with Bulk Update section selected and visible",
2149
2149
  "uiLabel": "Show Bulk Update Popup"
2150
2150
  }
2151
2151
  ]
@@ -2301,7 +2301,7 @@ exports.ADAPTABLE_METAMODEL = {
2301
2301
  {
2302
2302
  "name": "showCalculatedColumnPopup",
2303
2303
  "kind": "function",
2304
- "description": "Opens Calculated Column popup screen",
2304
+ "description": "Opens Settings Panel with Calculated Column section selected and visible",
2305
2305
  "uiLabel": "Show Calculated Column Popup"
2306
2306
  }
2307
2307
  ]
@@ -2447,7 +2447,7 @@ exports.ADAPTABLE_METAMODEL = {
2447
2447
  {
2448
2448
  "name": "showCellSummaryPopup",
2449
2449
  "kind": "function",
2450
- "description": "Opens Cell Summary popup screen",
2450
+ "description": "Opens Settings Panel with Cell Summary section selected and visible",
2451
2451
  "uiLabel": "Show Cell Summary Popup"
2452
2452
  }
2453
2453
  ]
@@ -3163,7 +3163,7 @@ exports.ADAPTABLE_METAMODEL = {
3163
3163
  {
3164
3164
  "name": "showConditionalStylePopup",
3165
3165
  "kind": "function",
3166
- "description": "Opens Conditional Style popup screen",
3166
+ "description": "Opens Settings Panel with Conditional Style section selected and visible",
3167
3167
  "uiLabel": "Show Conditional Style Popup"
3168
3168
  },
3169
3169
  {
@@ -3740,7 +3740,7 @@ exports.ADAPTABLE_METAMODEL = {
3740
3740
  {
3741
3741
  "name": "showCustomSortPopup",
3742
3742
  "kind": "function",
3743
- "description": "Opens Custom Sort popup screen",
3743
+ "description": "Opens Settings Panel with Custom Sort section selected and visible",
3744
3744
  "uiLabel": "Show Custom Sort Popup"
3745
3745
  },
3746
3746
  {
@@ -4115,7 +4115,7 @@ exports.ADAPTABLE_METAMODEL = {
4115
4115
  {
4116
4116
  "name": "showDashboardPopup",
4117
4117
  "kind": "function",
4118
- "description": "Opens the Dashboard popup screen",
4118
+ "description": "Opens Settings Panel with Dashboard section selected and visible",
4119
4119
  "uiLabel": "Show Dashboard Popup"
4120
4120
  }
4121
4121
  ]
@@ -4528,7 +4528,7 @@ exports.ADAPTABLE_METAMODEL = {
4528
4528
  {
4529
4529
  "name": "showDataSourcePopup",
4530
4530
  "kind": "function",
4531
- "description": "Opens Data Source popup screen",
4531
+ "description": "Opens Settings Panel with Data Source section selected and visible",
4532
4532
  "uiLabel": "Show Data Source Popup"
4533
4533
  }
4534
4534
  ]
@@ -5010,6 +5010,12 @@ exports.ADAPTABLE_METAMODEL = {
5010
5010
  "description": "Retrieves Report with the given name",
5011
5011
  "uiLabel": "Get Report By Name"
5012
5012
  },
5013
+ {
5014
+ "name": "getReportDataForReport",
5015
+ "kind": "function",
5016
+ "description": "Returns the ReportData for the Report with the given name",
5017
+ "uiLabel": "Get Report Data For Report"
5018
+ },
5013
5019
  {
5014
5020
  "name": "getReportSchedules",
5015
5021
  "kind": "function",
@@ -5043,7 +5049,7 @@ exports.ADAPTABLE_METAMODEL = {
5043
5049
  {
5044
5050
  "name": "showExportPopup",
5045
5051
  "kind": "function",
5046
- "description": "Opens Export popup screen",
5052
+ "description": "Opens Settings Panel with Export section selected and visible",
5047
5053
  "uiLabel": "Show Export Popup"
5048
5054
  }
5049
5055
  ]
@@ -6311,7 +6317,7 @@ exports.ADAPTABLE_METAMODEL = {
6311
6317
  {
6312
6318
  "name": "showFormatColumnPopup",
6313
6319
  "kind": "function",
6314
- "description": "Opens the Format Column popup screen",
6320
+ "description": "Opens Settings Panel with Format Column section selected and visible",
6315
6321
  "uiLabel": "Show Format Column Popup"
6316
6322
  },
6317
6323
  {
@@ -6473,7 +6479,7 @@ exports.ADAPTABLE_METAMODEL = {
6473
6479
  {
6474
6480
  "name": "showFreeTextColumnPopup",
6475
6481
  "kind": "function",
6476
- "description": "Opens FreeTextColumn popup screen",
6482
+ "description": "Opens Settings Panel with Free Text Column section selected and visible",
6477
6483
  "uiLabel": "Show Free Text Column Popup"
6478
6484
  }
6479
6485
  ]
@@ -7343,7 +7349,7 @@ exports.ADAPTABLE_METAMODEL = {
7343
7349
  {
7344
7350
  "name": "showGridInfoPopup",
7345
7351
  "kind": "function",
7346
- "description": "Opens Grid Info popup screen",
7352
+ "description": "Opens Settings Panel with Grid Info section selected and visible",
7347
7353
  "uiLabel": "Show Grid Info Popup"
7348
7354
  },
7349
7355
  {
@@ -8102,6 +8108,12 @@ exports.ADAPTABLE_METAMODEL = {
8102
8108
  "description": "Retrieves Layout section from Adaptable State",
8103
8109
  "uiLabel": "Get Layout State"
8104
8110
  },
8111
+ {
8112
+ "name": "isCurrentLayoutReadOnly",
8113
+ "kind": "function",
8114
+ "description": "Specifies where Current Layout is editable",
8115
+ "uiLabel": "Is Current Layout Read Only"
8116
+ },
8105
8117
  {
8106
8118
  "name": "saveCurrentLayout",
8107
8119
  "kind": "function",
@@ -8138,10 +8150,16 @@ exports.ADAPTABLE_METAMODEL = {
8138
8150
  "description": "Opens change column caption popup",
8139
8151
  "uiLabel": "Show Change Column Caption"
8140
8152
  },
8153
+ {
8154
+ "name": "showLayoutEditor",
8155
+ "kind": "function",
8156
+ "description": "Opens the Layout Editor for the current Layout",
8157
+ "uiLabel": "Show Layout Editor"
8158
+ },
8141
8159
  {
8142
8160
  "name": "showLayoutPopup",
8143
8161
  "kind": "function",
8144
- "description": "Opens Layout popup screen",
8162
+ "description": "Opens Settings Panel with Layout section selected and visible",
8145
8163
  "uiLabel": "Show Layout Popup"
8146
8164
  }
8147
8165
  ]
@@ -8931,7 +8949,7 @@ exports.ADAPTABLE_METAMODEL = {
8931
8949
  {
8932
8950
  "name": "showPlusMinusPopup",
8933
8951
  "kind": "function",
8934
- "description": "Opens Plus Minus popup screen",
8952
+ "description": "Opens Settings Panel with Plus Minus section selected and visible",
8935
8953
  "uiLabel": "Show Plus Minus Popup"
8936
8954
  },
8937
8955
  {
@@ -9344,7 +9362,7 @@ exports.ADAPTABLE_METAMODEL = {
9344
9362
  {
9345
9363
  "name": "showQueryPopup",
9346
9364
  "kind": "function",
9347
- "description": "Opens Query Popup screen",
9365
+ "description": "Opens Settings Panel with Query section selected and visible",
9348
9366
  "uiLabel": "Show Query Popup"
9349
9367
  }
9350
9368
  ]
@@ -9475,7 +9493,7 @@ exports.ADAPTABLE_METAMODEL = {
9475
9493
  {
9476
9494
  "name": "showQuickSearchPopup",
9477
9495
  "kind": "function",
9478
- "description": "Opens Quick Search popup screen",
9496
+ "description": "Opens Settings Panel with Quick Search section selected and visible",
9479
9497
  "uiLabel": "Show Quick Search Popup"
9480
9498
  }
9481
9499
  ]
@@ -9874,7 +9892,7 @@ exports.ADAPTABLE_METAMODEL = {
9874
9892
  {
9875
9893
  "name": "showSchedulePopup",
9876
9894
  "kind": "function",
9877
- "description": "Opens Schedule popup screen",
9895
+ "description": "Opens Settings Panel with Schedule section selected and visible",
9878
9896
  "uiLabel": "Show Schedule Popup"
9879
9897
  },
9880
9898
  {
@@ -10412,7 +10430,7 @@ exports.ADAPTABLE_METAMODEL = {
10412
10430
  {
10413
10431
  "name": "showShortcutPopup",
10414
10432
  "kind": "function",
10415
- "description": "Opens Shortcut popup screen",
10433
+ "description": "Opens Settings Panel with Shortcut section selected and visible",
10416
10434
  "uiLabel": "Show Shortcut Popup"
10417
10435
  },
10418
10436
  {
@@ -10486,7 +10504,7 @@ exports.ADAPTABLE_METAMODEL = {
10486
10504
  {
10487
10505
  "name": "showSmartEditPopup",
10488
10506
  "kind": "function",
10489
- "description": "Opens Smart Edit popup screen",
10507
+ "description": "Opens Settings Panel with Smart Edit section selected and visible",
10490
10508
  "uiLabel": "Show Smart Edit Popup"
10491
10509
  }
10492
10510
  ]
@@ -10818,7 +10836,7 @@ exports.ADAPTABLE_METAMODEL = {
10818
10836
  {
10819
10837
  "name": "showTeamSharingPopup",
10820
10838
  "kind": "function",
10821
- "description": "Opens Team Sharing popup screen",
10839
+ "description": "Opens Settings Panel with Team Sharing section selected and visible",
10822
10840
  "uiLabel": "Show Team Sharing Popup"
10823
10841
  }
10824
10842
  ]
@@ -10983,7 +11001,7 @@ exports.ADAPTABLE_METAMODEL = {
10983
11001
  {
10984
11002
  "name": "showThemePopup",
10985
11003
  "kind": "function",
10986
- "description": "Opens Theme popup screen",
11004
+ "description": "Opens Settings Panel with Theme section selected and visible",
10987
11005
  "uiLabel": "Show Theme Popup"
10988
11006
  }
10989
11007
  ]
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "11.0.7";
1
+ declare const _default: "11.0.8";
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.7'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '11.0.8'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version