@airtable/blocks 1.7.0 → 1.9.0-experimental

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 (98) hide show
  1. package/CHANGELOG.md +29 -3
  2. package/dist/cjs/error_utils.js +17 -0
  3. package/dist/cjs/models/base.js +16 -11
  4. package/dist/cjs/models/cursor.js +2 -0
  5. package/dist/cjs/models/field.js +157 -36
  6. package/dist/cjs/models/grouped_record_query_result.js +5 -14
  7. package/dist/cjs/models/linked_records_query_result.js +75 -27
  8. package/dist/cjs/models/mutation_constants.js +3 -1
  9. package/dist/cjs/models/mutations.js +70 -178
  10. package/dist/cjs/models/query_manager.js +327 -0
  11. package/dist/cjs/models/record.js +308 -55
  12. package/dist/cjs/models/record_query_result.js +4 -1
  13. package/dist/cjs/models/record_store.js +554 -765
  14. package/dist/cjs/models/table.js +22 -19
  15. package/dist/cjs/models/table_or_view_query_result.js +480 -414
  16. package/dist/cjs/models/view_data_store.js +243 -269
  17. package/dist/cjs/private_utils.js +50 -0
  18. package/dist/cjs/sdk.js +12 -2
  19. package/dist/cjs/testing/{mock_airtable_interface.js → abstract_mock_airtable_interface.js} +71 -22
  20. package/dist/cjs/types/block_query_spec.js +85 -0
  21. package/dist/cjs/types/field.js +1 -0
  22. package/dist/cjs/types/mutations.js +1 -0
  23. package/dist/cjs/ui/icon_config.js +6 -2
  24. package/dist/cjs/ui/use_global_config.js +1 -1
  25. package/dist/cjs/ui/use_records.js +5 -1
  26. package/dist/cjs/unstable_testing_utils.js +2 -2
  27. package/dist/cjs/watchable.js +123 -71
  28. package/dist/types/src/models/base.d.ts +10 -9
  29. package/dist/types/src/models/base.d.ts.map +1 -1
  30. package/dist/types/src/models/cursor.d.ts +2 -0
  31. package/dist/types/src/models/cursor.d.ts.map +1 -1
  32. package/dist/types/src/models/field.d.ts +71 -9
  33. package/dist/types/src/models/field.d.ts.map +1 -1
  34. package/dist/types/src/models/grouped_record_query_result.d.ts +3 -3
  35. package/dist/types/src/models/grouped_record_query_result.d.ts.map +1 -1
  36. package/dist/types/src/models/linked_records_query_result.d.ts.map +1 -1
  37. package/dist/types/src/models/mutation_constants.d.ts +1 -0
  38. package/dist/types/src/models/mutation_constants.d.ts.map +1 -1
  39. package/dist/types/src/models/mutations.d.ts.map +1 -1
  40. package/dist/types/src/models/query_manager.d.ts +2 -0
  41. package/dist/types/src/models/query_manager.d.ts.map +1 -0
  42. package/dist/types/src/models/record.d.ts +12 -3
  43. package/dist/types/src/models/record.d.ts.map +1 -1
  44. package/dist/types/src/models/record_query_result.d.ts +3 -2
  45. package/dist/types/src/models/record_query_result.d.ts.map +1 -1
  46. package/dist/types/src/models/record_store.d.ts.map +1 -1
  47. package/dist/types/src/models/table.d.ts +8 -10
  48. package/dist/types/src/models/table.d.ts.map +1 -1
  49. package/dist/types/src/models/table_or_view_query_result.d.ts +3 -5
  50. package/dist/types/src/models/table_or_view_query_result.d.ts.map +1 -1
  51. package/dist/types/src/models/view_data_store.d.ts +0 -1
  52. package/dist/types/src/models/view_data_store.d.ts.map +1 -1
  53. package/dist/types/src/models/view_metadata_query_result.d.ts +1 -1
  54. package/dist/types/src/models/view_metadata_query_result.d.ts.map +1 -1
  55. package/dist/types/src/private_utils.d.ts +30 -1
  56. package/dist/types/src/private_utils.d.ts.map +1 -1
  57. package/dist/types/src/sdk.d.ts.map +1 -1
  58. package/dist/types/src/testing/{mock_airtable_interface.d.ts → abstract_mock_airtable_interface.d.ts} +20 -15
  59. package/dist/types/src/testing/abstract_mock_airtable_interface.d.ts.map +1 -0
  60. package/dist/types/src/types/airtable_interface.d.ts +45 -21
  61. package/dist/types/src/types/airtable_interface.d.ts.map +1 -1
  62. package/dist/types/src/types/block_query_spec.d.ts +139 -0
  63. package/dist/types/src/types/block_query_spec.d.ts.map +1 -0
  64. package/dist/types/src/types/field.d.ts +167 -51
  65. package/dist/types/src/types/field.d.ts.map +1 -1
  66. package/dist/types/src/types/mutations.d.ts +46 -3
  67. package/dist/types/src/types/mutations.d.ts.map +1 -1
  68. package/dist/types/src/types/table.d.ts +0 -2
  69. package/dist/types/src/types/table.d.ts.map +1 -1
  70. package/dist/types/src/types/view.d.ts +3 -8
  71. package/dist/types/src/types/view.d.ts.map +1 -1
  72. package/dist/types/src/ui/icon_config.d.ts +7 -3
  73. package/dist/types/src/ui/icon_config.d.ts.map +1 -1
  74. package/dist/types/src/ui/link.d.ts +1 -1
  75. package/dist/types/src/ui/link.d.ts.map +1 -1
  76. package/dist/types/src/ui/use_global_config.d.ts +1 -1
  77. package/dist/types/src/unstable_testing_utils.d.ts +1 -1
  78. package/dist/types/src/unstable_testing_utils.d.ts.map +1 -1
  79. package/dist/types/src/watchable.d.ts.map +1 -1
  80. package/dist/types/stories/helpers/fake_cell_renderer.d.ts.map +1 -1
  81. package/dist/types/stories/helpers/field_type.d.ts.map +1 -1
  82. package/dist/types/stories/helpers/sync_source_options.d.ts +7 -0
  83. package/dist/types/stories/helpers/sync_source_options.d.ts.map +1 -0
  84. package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts +121 -0
  85. package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts.map +1 -0
  86. package/dist/types/test/airtable_interface_mocks/linked_records.d.ts +2 -2
  87. package/dist/types/test/airtable_interface_mocks/linked_records.d.ts.map +1 -1
  88. package/dist/types/test/airtable_interface_mocks/{mock_airtable_interface_internal.d.ts → mock_airtable_interface.d.ts} +26 -18
  89. package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts.map +1 -0
  90. package/dist/types/test/airtable_interface_mocks/mock_base_data_stores.d.ts +51 -0
  91. package/dist/types/test/airtable_interface_mocks/mock_base_data_stores.d.ts.map +1 -0
  92. package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts +2 -2
  93. package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts.map +1 -1
  94. package/dist/types/test/test_helpers.d.ts +2 -0
  95. package/dist/types/test/test_helpers.d.ts.map +1 -1
  96. package/package.json +3 -1
  97. package/dist/types/src/testing/mock_airtable_interface.d.ts.map +0 -1
  98. package/dist/types/test/airtable_interface_mocks/mock_airtable_interface_internal.d.ts.map +0 -1
@@ -22,6 +22,10 @@ require("core-js/modules/es.object.to-string");
22
22
 
23
23
  require("core-js/modules/es.object.values");
24
24
 
25
+ require("core-js/modules/es.regexp.constructor");
26
+
27
+ require("core-js/modules/es.regexp.to-string");
28
+
25
29
  require("core-js/modules/es.set");
26
30
 
27
31
  require("core-js/modules/es.weak-map");
@@ -50,12 +54,14 @@ exports.compact = compact;
50
54
  exports.clamp = clamp;
51
55
  exports.flattenDeep = flattenDeep;
52
56
  exports.keyBy = keyBy;
57
+ exports.getId = getId;
53
58
  exports.uniqBy = uniqBy;
54
59
  exports.getLocallyUniqueId = getLocallyUniqueId;
55
60
  exports.getValueAtOwnPath = getValueAtOwnPath;
56
61
  exports.arrayDifference = arrayDifference;
57
62
  exports.debounce = debounce;
58
63
  exports.isBlockDevelopmentRestrictionEnabled = isBlockDevelopmentRestrictionEnabled;
64
+ exports.isFieldId = isFieldId;
59
65
  Object.defineProperty(exports, "isDeepEqual", {
60
66
  enumerable: true,
61
67
  get: function get() {
@@ -139,10 +145,16 @@ function cast(x) {
139
145
  return x;
140
146
  }
141
147
  /**
148
+ * Used to turn a readonly type into a mutable copy: https://stackoverflow.com/a/50769802
149
+ * (used in the cloneDeep function)
150
+ *
142
151
  * @hidden
143
152
  */
144
153
 
145
154
 
155
+ /**
156
+ * @hidden
157
+ */
146
158
  function cloneDeep(obj) {
147
159
  var jsonString = JSON.stringify(obj);
148
160
 
@@ -411,6 +423,15 @@ function keyBy(array, getKey) {
411
423
  */
412
424
 
413
425
 
426
+ function getId(_ref) {
427
+ var id = _ref.id;
428
+ return id;
429
+ }
430
+ /**
431
+ * @hidden
432
+ */
433
+
434
+
414
435
  function uniqBy(array, getKey) {
415
436
  var usedKeys = new Set();
416
437
  var result = [];
@@ -543,4 +564,33 @@ function debounce(fn, timeoutMs) {
543
564
 
544
565
  function isBlockDevelopmentRestrictionEnabled() {
545
566
  return (0, _airtable_interface.default)().sdkInitData.baseData.isBlockDevelopmentRestrictionEnabled;
567
+ } // This is copied from hyper_id_generator in hyperbase
568
+
569
+ /**
570
+ * Airtable id format. All object ids to have this format:
571
+ * <3 char prefix (lower-case)> + <14 random chars (upper/lower-case & numbers)>
572
+ * e.g. app4iu8QmuwcCbWCE
573
+ *
574
+ * We call it an "objectId" rather than "modelId" because not everything with an id is a model,
575
+ * e.g. worker access tokens.
576
+ */
577
+
578
+
579
+ var ALPHA_NUMERIC_CHAR_PATTERN = '[A-Za-z0-9]';
580
+ var OBJECT_ID_PREFIX_LENGTH = 3; // We allow shorter objectIds because our tests use non-standard AirtableIds
581
+
582
+ var OBJECT_ID_MIN_SUFFIX_LENGTH = 1;
583
+ var OBJECT_ID_SUFFIX_LENGTH = 14;
584
+ var OBJECT_ID_SUFFIX_PATTERN = ALPHA_NUMERIC_CHAR_PATTERN + '{' + OBJECT_ID_MIN_SUFFIX_LENGTH + ',' + OBJECT_ID_SUFFIX_LENGTH + '}';
585
+ var OBJECT_ID_PATTERN = '[a-z]{' + OBJECT_ID_PREFIX_LENGTH + '}' + OBJECT_ID_SUFFIX_PATTERN;
586
+ var OBJECT_ID_REGEX = new RegExp('^' + OBJECT_ID_PATTERN + '$');
587
+
588
+ function _isStringAnObjectId(str) {
589
+ return OBJECT_ID_REGEX.test(str);
590
+ }
591
+ /** @internal */
592
+
593
+
594
+ function isFieldId(str) {
595
+ return typeof str === 'string' && _isStringAnObjectId(str) && str.substr(0, 3) === 'fld';
546
596
  }
package/dist/cjs/sdk.js CHANGED
@@ -45,6 +45,8 @@ var _undo_redo = _interopRequireDefault(require("./undo_redo"));
45
45
 
46
46
  var _perform_record_action = require("./perform_record_action");
47
47
 
48
+ var _query_manager = require("./models/query_manager");
49
+
48
50
  /** @hidden */
49
51
 
50
52
  /** */
@@ -101,6 +103,12 @@ function () {
101
103
 
102
104
  /** Represents the current Airtable {@link Base}. */
103
105
 
106
+ /**
107
+ * Represents active queries and their state
108
+ *
109
+ * @internal
110
+ */
111
+
104
112
  /** Contains information about the current session. */
105
113
 
106
114
  /** @internal */
@@ -152,6 +160,7 @@ function () {
152
160
  (0, _defineProperty2.default)(this, "__airtableInterface", void 0);
153
161
  (0, _defineProperty2.default)(this, "globalConfig", void 0);
154
162
  (0, _defineProperty2.default)(this, "base", void 0);
163
+ (0, _defineProperty2.default)(this, "_queryManager", void 0);
155
164
  (0, _defineProperty2.default)(this, "session", void 0);
156
165
  (0, _defineProperty2.default)(this, "__mutations", void 0);
157
166
  (0, _defineProperty2.default)(this, "installationId", void 0);
@@ -167,6 +176,7 @@ function () {
167
176
  var sdkInitData = airtableInterface.sdkInitData;
168
177
  this.globalConfig = new _global_config.default(sdkInitData.initialKvValuesByKey, this);
169
178
  this.base = new _base.default(this);
179
+ this._queryManager = new _query_manager.QueryManager(this);
170
180
  this.installationId = sdkInitData.blockInstallationId; // Bind the public methods on this class so users can import
171
181
  // just the method, e.g.
172
182
  // import {reload} from '@airtable/blocks';
@@ -176,7 +186,7 @@ function () {
176
186
  this.viewport = new _viewport.default(sdkInitData.isFullscreen, airtableInterface);
177
187
  this.cursor = new _cursor.default(this);
178
188
  this.session = new _session.default(this);
179
- this.__mutations = new _mutations.default(this, this.session, this.base, changes => this.__applyModelChanges(changes), updates => this.__applyGlobalConfigUpdates(updates));
189
+ this.__mutations = new _mutations.default(this, this.session, this.base, updates => this.__applyGlobalConfigUpdates(updates));
180
190
  this.settingsButton = new _settings_button.default(airtableInterface);
181
191
  this.undoRedo = new _undo_redo.default(airtableInterface);
182
192
  this.performRecordAction = new _perform_record_action.PerformRecordAction(this, airtableInterface);
@@ -330,4 +340,4 @@ function () {
330
340
  }();
331
341
 
332
342
  exports.default = BlockSdk;
333
- (0, _defineProperty2.default)(BlockSdk, "VERSION", "1.7.0");
343
+ (0, _defineProperty2.default)(BlockSdk, "VERSION", "1.9.0-experimental");
@@ -4,16 +4,22 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
 
5
5
  require("core-js/modules/es.array.concat");
6
6
 
7
- require("core-js/modules/es.array.map");
7
+ require("core-js/modules/es.array.iterator");
8
8
 
9
9
  require("core-js/modules/es.object.to-string");
10
10
 
11
11
  require("core-js/modules/es.promise");
12
12
 
13
+ require("core-js/modules/web.dom-collections.iterator");
14
+
13
15
  Object.defineProperty(exports, "__esModule", {
14
16
  value: true
15
17
  });
16
- exports.default = void 0;
18
+ exports.AbstractMockAirtableInterface = void 0;
19
+
20
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
21
+
22
+ require("regenerator-runtime/runtime");
17
23
 
18
24
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
19
25
 
@@ -157,18 +163,23 @@ var idGenerator = {
157
163
  generateFieldId: () => 'fldGeneratedMockId',
158
164
  generateTableId: () => 'tblGeneratedMockId'
159
165
  };
160
- /** @hidden */
161
-
162
- var MockAirtableInterface =
166
+ /**
167
+ * An abstract base class with a common interface exposed to both Blocks SDK's
168
+ * internal automated test suite and the blocks-testing public repo.
169
+ *
170
+ * @hidden
171
+ */
172
+
173
+ var AbstractMockAirtableInterface =
163
174
  /*#__PURE__*/
164
175
  function (_EventEmitter) {
165
- (0, _inherits2.default)(MockAirtableInterface, _EventEmitter);
176
+ (0, _inherits2.default)(AbstractMockAirtableInterface, _EventEmitter);
166
177
 
167
- function MockAirtableInterface(initData) {
178
+ function AbstractMockAirtableInterface(initData) {
168
179
  var _this;
169
180
 
170
- (0, _classCallCheck2.default)(this, MockAirtableInterface);
171
- _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(MockAirtableInterface).call(this));
181
+ (0, _classCallCheck2.default)(this, AbstractMockAirtableInterface);
182
+ _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(AbstractMockAirtableInterface).call(this));
172
183
  (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "sdkInitData", void 0);
173
184
  (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "_initData", void 0);
174
185
  _this._initData = (0, _private_utils.cloneDeep)(initData);
@@ -185,7 +196,7 @@ function (_EventEmitter) {
185
196
  */
186
197
 
187
198
 
188
- (0, _createClass2.default)(MockAirtableInterface, [{
199
+ (0, _createClass2.default)(AbstractMockAirtableInterface, [{
189
200
  key: "reset",
190
201
  value: function reset() {
191
202
  this.removeAllListeners();
@@ -209,18 +220,15 @@ function (_EventEmitter) {
209
220
  };
210
221
  }
211
222
  }, {
212
- key: "createVisList",
213
- value: function createVisList(appInterface, recordDatas, fieldDatas, sorts) {
223
+ key: "createVisListWithRecordIds",
224
+ value: function createVisListWithRecordIds(recordIds, fieldDatas, sorts, tableId) {
214
225
  return {
215
- removeRecordIds(recordIds) {},
226
+ removeRecordIds(removedRecordIds) {},
216
227
 
217
- addRecordData(recordData) {},
228
+ addRecordIds(addedRecordIds) {},
218
229
 
219
230
  getOrderedRecordIds() {
220
- return recordDatas.map((_ref) => {
221
- var id = _ref.id;
222
- return id;
223
- });
231
+ return [...recordIds];
224
232
  }
225
233
 
226
234
  };
@@ -232,7 +240,49 @@ function (_EventEmitter) {
232
240
  }
233
241
  }, {
234
242
  key: "setActiveViewOrTable",
235
- value: function setActiveViewOrTable(tableId, viewId) {} // TODO(jugglinmike): Implement
243
+ value: function setActiveViewOrTable(tableId, viewId) {}
244
+ }, {
245
+ key: "subscribeToQueryAndPopulateStoresAsync",
246
+ value: function subscribeToQueryAndPopulateStoresAsync(query, options) {
247
+ return _regenerator.default.async(function subscribeToQueryAndPopulateStoresAsync$(_context) {
248
+ while (1) {
249
+ switch (_context.prev = _context.next) {
250
+ case 0:
251
+ throw (0, _error_utils.spawnError)('subscribeToQueryAndPopulateStoresAsync unimplemented');
252
+
253
+ case 1:
254
+ case "end":
255
+ return _context.stop();
256
+ }
257
+ }
258
+ });
259
+ }
260
+ }, {
261
+ key: "unsubscribeFromQueryIdsAsync",
262
+ value: function unsubscribeFromQueryIdsAsync(querySpecIds) {
263
+ return _regenerator.default.async(function unsubscribeFromQueryIdsAsync$(_context2) {
264
+ while (1) {
265
+ switch (_context2.prev = _context2.next) {
266
+ case 0:
267
+ throw (0, _error_utils.spawnError)('unsubscribeFromQueryIdsAsync unimplemented');
268
+
269
+ case 1:
270
+ case "end":
271
+ return _context2.stop();
272
+ }
273
+ }
274
+ });
275
+ }
276
+ }, {
277
+ key: "getTableRecordStoreIfExists",
278
+ value: function getTableRecordStoreIfExists(tableId) {
279
+ throw (0, _error_utils.spawnError)('getTableRecordStoreIfExists unimplemented');
280
+ }
281
+ }, {
282
+ key: "getViewMetadataStoreIfExists",
283
+ value: function getViewMetadataStoreIfExists(tableId, viewId) {
284
+ throw (0, _error_utils.spawnError)('getViewMetadataStoreIfExists unimplemented');
285
+ } // TODO(jugglinmike): Implement
236
286
 
237
287
  }, {
238
288
  key: "subscribeToGlobalConfigUpdates",
@@ -310,8 +360,7 @@ function (_EventEmitter) {
310
360
  return idGenerator;
311
361
  }
312
362
  }]);
313
- return MockAirtableInterface;
363
+ return AbstractMockAirtableInterface;
314
364
  }(EventEmitter);
315
365
 
316
- var _default = MockAirtableInterface;
317
- exports.default = _default;
366
+ exports.AbstractMockAirtableInterface = AbstractMockAirtableInterface;
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.BlockQuerySubscriptionChangeType = exports.BlockFieldSelectionSpecType = exports.BlockQuerySourceType = void 0;
7
+
8
+ /**
9
+ * Specification for data needed by both the Blocks SDK and the blocks iframe
10
+ * that spans across a few repos and run environments:
11
+ * +--------------------+--------------------+--------------------+
12
+ * | airtable.com | blocks iframe | blocks sdk |
13
+ * +--------------------+--------------------+--------------------+
14
+ * | repo: hyperbase | repo: hyperbase | repo: blocks-sdk |
15
+ * | run: airtable.com | run: iframe | run: iframe |
16
+ * +--------------------+--------------------+--------------------+
17
+ *
18
+ * A BlockQuerySpec has a required `source` and one or more `selection`s.
19
+ * The `source` is a top-level concept that defines where the data comes
20
+ * from, while the `selection`s define desired properties from the data.
21
+ * In other words, think of the data as a tree, the `source` defines the
22
+ * root, and the `selection`s define the branches and leaves.
23
+ *
24
+ * Note that instead of a sub-object `source`, we use `source`-prefixed
25
+ * properties for the same effect. This works around a TypeScript limitation
26
+ * of not being able to discriminate between the unions for BlockQuerySpec.
27
+ *
28
+ * The specification will be used for two parts of the data lifecycle:
29
+ * 1. An initial response, via BlockQuerySpecResponseForAirtableInterface
30
+ * 2. Subsequent updates to keep the date updated, via BlockQueryUpdate
31
+ *
32
+ * NOTE: Keep this in sync with the hyperbase repo's block_query_spec.tsx file!
33
+ *
34
+ * @hidden
35
+ */
36
+
37
+ /** @hidden */
38
+
39
+ /** @hidden */
40
+
41
+ /** @hidden */
42
+ var BlockQuerySourceType;
43
+ /** @hidden */
44
+
45
+ exports.BlockQuerySourceType = BlockQuerySourceType;
46
+
47
+ (function (BlockQuerySourceType) {
48
+ BlockQuerySourceType["TABLE"] = "table";
49
+ BlockQuerySourceType["VIEW"] = "view";
50
+ })(BlockQuerySourceType || (exports.BlockQuerySourceType = BlockQuerySourceType = {}));
51
+
52
+ /**
53
+ * The different ways fields can be queried
54
+ *
55
+ * @hidden
56
+ */
57
+ var BlockFieldSelectionSpecType;
58
+ /**
59
+ * Allows querying for all fields, or a specified set of fields. In the latter
60
+ * case, we also allow specifying properties of a record like commentCount and
61
+ * recordCreatedTime that don't have fieldIds (ALL_FIELDS implies including all
62
+ * of these properties).
63
+ *
64
+ * @hidden
65
+ */
66
+
67
+ exports.BlockFieldSelectionSpecType = BlockFieldSelectionSpecType;
68
+
69
+ (function (BlockFieldSelectionSpecType) {
70
+ BlockFieldSelectionSpecType["SPECIFIED_FIELDS"] = "specifiedFields";
71
+ BlockFieldSelectionSpecType["ALL_FIELDS_FROM_TABLE"] = "allFieldsFromTable";
72
+ })(BlockFieldSelectionSpecType || (exports.BlockFieldSelectionSpecType = BlockFieldSelectionSpecType = {}));
73
+
74
+ /** @hidden */
75
+ var BlockQuerySubscriptionChangeType;
76
+ /** @hidden */
77
+
78
+ exports.BlockQuerySubscriptionChangeType = BlockQuerySubscriptionChangeType;
79
+
80
+ (function (BlockQuerySubscriptionChangeType) {
81
+ BlockQuerySubscriptionChangeType["ADDED_RECORD_IDS"] = "addedRecordIds";
82
+ BlockQuerySubscriptionChangeType["REMOVED_RECORD_IDS"] = "removedRecordIds";
83
+ BlockQuerySubscriptionChangeType["MODIFIED_CELL_VALUES_FOR_TABLE"] = "modifiedCellValuesForTable";
84
+ BlockQuerySubscriptionChangeType["CHANGED_COLORS_BY_RECORD_ID_FOR_VIEW"] = "changedColorsByRecordIdForView";
85
+ })(BlockQuerySubscriptionChangeType || (exports.BlockQuerySubscriptionChangeType = BlockQuerySubscriptionChangeType = {}));
@@ -61,4 +61,5 @@ exports.FieldType = FieldType;
61
61
  FieldType["CREATED_BY"] = "createdBy";
62
62
  FieldType["LAST_MODIFIED_BY"] = "lastModifiedBy";
63
63
  FieldType["BUTTON"] = "button";
64
+ FieldType["EXTERNAL_SYNC_SOURCE"] = "externalSyncSource";
64
65
  })(FieldType || (exports.FieldType = FieldType = {}));
@@ -17,6 +17,7 @@ var MutationTypes = Object.freeze({
17
17
  SET_MULTIPLE_GLOBAL_CONFIG_PATHS: 'setMultipleGlobalConfigPaths',
18
18
  CREATE_SINGLE_FIELD: 'createSingleField',
19
19
  UPDATE_SINGLE_FIELD_CONFIG: 'updateSingleFieldConfig',
20
+ UPDATE_SINGLE_FIELD_DESCRIPTION: 'updateSingleFieldDescription',
20
21
  CREATE_SINGLE_TABLE: 'createSingleTable',
21
22
  UPDATE_VIEW_METADATA: 'updateViewMetadata'
22
23
  });
@@ -39,7 +39,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
39
39
  // In the UI kit we need more specific types to allow proper autocomplete and prop types.
40
40
  // To achieve this we run the original `iconConfig` object from Hyperbase through an utility.
41
41
  // You can find the utility here: https://codesandbox.io/s/winter-sound-f4p2l?fontsize=14
42
- var iconNamesArray = ['android', 'apple', 'apps', 'ascending', 'attachment', 'automations', 'autonumber', 'barcode', 'bell', 'blocks', 'bold', 'bolt', 'boltList', 'book', 'calendar', 'caret', 'chart', 'chat', 'check', 'checkbox', 'checkboxChecked', 'checkboxUnchecked', 'checklist', 'chevronDown', 'chevronLeft', 'chevronRight', 'chevronUp', 'clipboard', 'code', 'cog', 'collapse', 'collapseSidebar', 'contacts', 'count', 'count1', 'cube', 'cursor', 'day', 'dayAuto', 'dedent', 'descending', 'dollar', 'down', 'download', 'dragHandle', 'drive', 'duplicate', 'edit', 'envelope', 'envelope1', 'expand', 'expand1', 'expandSidebar', 'feed', 'file', 'filter', 'flag', 'form', 'formula', 'fullscreen', 'gallery', 'gantt', 'gift', 'grid', 'grid1', 'group', 'heart', 'help', 'hide', 'hide1', 'history', 'home', 'hyperlink', 'hyperlinkCancel', 'indent', 'info', 'italic', 'kanban', 'laptop', 'left', 'lightbulb', 'link', 'link1', 'lock', 'logout', 'lookup', 'mapPin', 'markdown', 'megaphone', 'menu', 'minus', 'mobile', 'multicollaborator', 'multiselect', 'number', 'ol', 'overflow', 'paint', 'paragraph', 'paragraph1', 'pause', 'percent', 'personal', 'personalAuto', 'phone', 'pivot', 'play', 'plus', 'plusFilled', 'premium', 'print', 'public', 'publish', 'quote', 'quote1', 'radio', 'radioSelected', 'redo', 'redo1', 'richText', 'right', 'rollup', 'rollup1', 'rowHeightSmall', 'rowHeightMedium', 'rowHeightLarge', 'rowHeightExtraLarge', 'search', 'select', 'selectCaret', 'settings', 'shapes', 'share', 'share1', 'shareWithBolt', 'show', 'show1', 'slack', 'smiley', 'sort', 'stack', 'star', 'strikethrough', 'switcher', 'tabs', 'team', 'teamLocked', 'text', 'thumbsUp', 'time', 'toggle', 'trash', 'twitter', 'ul', 'underline', 'undo', 'up', 'upload', 'video', 'view', 'warning', 'windows', 'x'];
42
+ var iconNamesArray = ['android', 'apple', 'apps', 'ascending', 'attachment', 'automations', 'autonumber', 'barcode', 'bell', 'blocks', 'bold', 'bolt', 'boltList', 'book', 'calendar', 'calendarDay', 'caret', 'chart', 'chat', 'check', 'checkbox', 'checkboxChecked', 'checkboxUnchecked', 'checklist', 'chevronDown', 'chevronLeft', 'chevronRight', 'chevronUp', 'clipboard', 'code', 'cog', 'collapse', 'collapseSidebar', 'contacts', 'count', 'count1', 'cube', 'cursor', 'day', 'dayAuto', 'dedent', 'descending', 'dollar', 'down', 'download', 'dragHandle', 'drive', 'duplicate', 'edit', 'envelope', 'envelope1', 'expand', 'expand1', 'expandSidebar', 'feed', 'file', 'filter', 'flag', 'form', 'formula', 'fullscreen', 'gallery', 'gantt', 'gift', 'grid', 'grid1', 'group', 'heart', 'help', 'hide', 'hide1', 'history', 'home', 'hyperlink', 'hyperlinkCancel', 'indent', 'info', 'italic', 'kanban', 'laptop', 'left', 'lightbulb', 'link', 'link1', 'lock', 'logout', 'lookup', 'mapPin', 'markdown', 'megaphone', 'menu', 'minus', 'mobile', 'multicollaborator', 'multiselect', 'number', 'ol', 'overflow', 'paint', 'paragraph', 'paragraph1', 'pause', 'percent', 'personal', 'personalAuto', 'phone', 'pivot', 'play', 'plus', 'plusFilled', 'premium', 'print', 'public', 'publish', 'quote', 'quote1', 'radio', 'radioSelected', 'redo', 'redo1', 'richText', 'right', 'rollup', 'rollup1', 'rowHeightSmall', 'rowHeightMedium', 'rowHeightLarge', 'rowHeightExtraLarge', 'search', 'select', 'selectCaret', 'settings', 'shapes', 'share', 'share1', 'shareWithBolt', 'show', 'show1', 'slack', 'smiley', 'sort', 'stack', 'star', 'strikethrough', 'switcher', 'tabs', 'team', 'teamLocked', 'text', 'thumbsUp', 'time', 'timeline', 'toggle', 'trash', 'twitter', 'ul', 'underline', 'undo', 'up', 'upload', 'video', 'view', 'warning', 'windows', 'x'];
43
43
  exports.iconNamesArray = iconNamesArray;
44
44
  var iconNames = (0, _private_utils.createEnum)(...iconNamesArray);
45
45
  exports.iconNames = iconNames;
@@ -53,7 +53,7 @@ var deprecatedIconNameToReplacementName = new Map([['blocks', 'apps']]);
53
53
  exports.deprecatedIconNameToReplacementName = deprecatedIconNameToReplacementName;
54
54
  var iconNamePropType = (0, _private_utils.createPropTypeFromEnum)(iconNames);
55
55
  exports.iconNamePropType = iconNamePropType;
56
- var microIconNamesArray = ['androidMicro', 'appleMicro', 'appsMicro', 'ascendingMicro', 'attachmentMicro', 'automationsMicro', 'autonumberMicro', 'barcodeMicro', 'bellMicro', 'blocksMicro', 'boldMicro', 'boltMicro', 'boltListMicro', 'bookMicro', 'calendarMicro', 'caretMicro', 'chartMicro', 'chatMicro', 'checkMicro', 'checkboxCheckedMicro', 'checkboxMicro', 'checkboxUncheckedMicro', 'checklistMicro', 'chevronDownMicro', 'chevronLeftMicro', 'chevronRightMicro', 'chevronUpMicro', 'clipboardMicro', 'codeMicro', 'cogMicro', 'collapseMicro', 'collapseSidebarMicro', 'contactsMicro', 'countMicro', 'count1Micro', 'cubeMicro', 'cursorMicro', 'dayMicro', 'dayAutoMicro', 'dedentMicro', 'descendingMicro', 'dollarMicro', 'downMicro', 'downloadMicro', 'dragHandleMicro', 'driveMicro', 'duplicateMicro', 'editMicro', 'envelopeMicro', 'envelope1Micro', 'expandMicro', 'expand1Micro', 'expandSidebarMicro', 'feedMicro', 'fileMicro', 'filterMicro', 'flagMicro', 'formMicro', 'formulaMicro', 'fullscreenMicro', 'galleryMicro', 'ganttMicro', 'giftMicro', 'gridMicro', 'grid1Micro', 'groupMicro', 'heartMicro', 'helpMicro', 'hideMicro', 'hide1Micro', 'historyMicro', 'homeMicro', 'hyperlinkMicro', 'hyperlinkCancelMicro', 'indentMicro', 'infoMicro', 'italicMicro', 'kanbanMicro', 'laptopMicro', 'leftMicro', 'lightbulbMicro', 'link1Micro', 'linkMicro', 'lockMicro', 'logoutMicro', 'lookupMicro', 'mapPinMicro', 'markdownMicro', 'megaphoneMicro', 'menuMicro', 'minusMicro', 'mobileMicro', 'multicollaboratorMicro', 'multiselectMicro', 'numberMicro', 'olMicro', 'overflowMicro', 'paintMicro', 'paragraphMicro', 'paragraph1Micro', 'pauseMicro', 'percentMicro', 'personalMicro', 'personalAutoMicro', 'phoneMicro', 'pivotMicro', 'playMicro', 'plusFilledMicro', 'plusMicro', 'premiumMicro', 'printMicro', 'publicMicro', 'publishMicro', 'quoteMicro', 'quote1Micro', 'radioMicro', 'radioSelectedMicro', 'redoMicro', 'redo1Micro', 'richTextMicro', 'rightMicro', 'rollupMicro', 'rollup1Micro', 'rowHeightSmallMicro', 'rowHeightMediumMicro', 'rowHeightLargeMicro', 'rowHeightExtraLargeMicro', 'searchMicro', 'selectMicro', 'selectCaretMicro', 'settingsMicro', 'shapesMicro', 'share1Micro', 'shareMicro', 'showMicro', 'show1Micro', 'slackMicro', 'smileyMicro', 'sortMicro', 'stackMicro', 'starMicro', 'strikethroughMicro', 'switcherMicro', 'tabsMicro', 'teamMicro', 'teamLockedMicro', 'textMicro', 'thumbsUpMicro', 'timeMicro', 'toggleMicro', 'trashMicro', 'twitterMicro', 'ulMicro', 'underlineMicro', 'undoMicro', 'upMicro', 'uploadMicro', 'videoMicro', 'viewMicro', 'warningMicro', 'windowsMicro', 'xMicro'];
56
+ var microIconNamesArray = ['androidMicro', 'appleMicro', 'appsMicro', 'ascendingMicro', 'attachmentMicro', 'automationsMicro', 'autonumberMicro', 'barcodeMicro', 'bellMicro', 'blocksMicro', 'boldMicro', 'boltMicro', 'boltListMicro', 'bookMicro', 'calendarMicro', 'calendarDayMicro', 'caretMicro', 'chartMicro', 'chatMicro', 'checkMicro', 'checkboxCheckedMicro', 'checkboxMicro', 'checkboxUncheckedMicro', 'checklistMicro', 'chevronDownMicro', 'chevronLeftMicro', 'chevronRightMicro', 'chevronUpMicro', 'clipboardMicro', 'codeMicro', 'cogMicro', 'collapseMicro', 'collapseSidebarMicro', 'contactsMicro', 'countMicro', 'count1Micro', 'cubeMicro', 'cursorMicro', 'dayMicro', 'dayAutoMicro', 'dedentMicro', 'descendingMicro', 'dollarMicro', 'downMicro', 'downloadMicro', 'dragHandleMicro', 'driveMicro', 'duplicateMicro', 'editMicro', 'envelopeMicro', 'envelope1Micro', 'expandMicro', 'expand1Micro', 'expandSidebarMicro', 'feedMicro', 'fileMicro', 'filterMicro', 'flagMicro', 'formMicro', 'formulaMicro', 'fullscreenMicro', 'galleryMicro', 'ganttMicro', 'giftMicro', 'gridMicro', 'grid1Micro', 'groupMicro', 'heartMicro', 'helpMicro', 'hideMicro', 'hide1Micro', 'historyMicro', 'homeMicro', 'hyperlinkMicro', 'hyperlinkCancelMicro', 'indentMicro', 'infoMicro', 'italicMicro', 'kanbanMicro', 'laptopMicro', 'leftMicro', 'lightbulbMicro', 'link1Micro', 'linkMicro', 'lockMicro', 'logoutMicro', 'lookupMicro', 'mapPinMicro', 'markdownMicro', 'megaphoneMicro', 'menuMicro', 'minusMicro', 'mobileMicro', 'multicollaboratorMicro', 'multiselectMicro', 'numberMicro', 'olMicro', 'overflowMicro', 'paintMicro', 'paragraphMicro', 'paragraph1Micro', 'pauseMicro', 'percentMicro', 'personalMicro', 'personalAutoMicro', 'phoneMicro', 'pivotMicro', 'playMicro', 'plusFilledMicro', 'plusMicro', 'premiumMicro', 'printMicro', 'publicMicro', 'publishMicro', 'quoteMicro', 'quote1Micro', 'radioMicro', 'radioSelectedMicro', 'redoMicro', 'redo1Micro', 'richTextMicro', 'rightMicro', 'rollupMicro', 'rollup1Micro', 'rowHeightSmallMicro', 'rowHeightMediumMicro', 'rowHeightLargeMicro', 'rowHeightExtraLargeMicro', 'searchMicro', 'selectMicro', 'selectCaretMicro', 'settingsMicro', 'shapesMicro', 'share1Micro', 'shareMicro', 'showMicro', 'show1Micro', 'slackMicro', 'smileyMicro', 'sortMicro', 'stackMicro', 'starMicro', 'strikethroughMicro', 'switcherMicro', 'tabsMicro', 'teamMicro', 'teamLockedMicro', 'textMicro', 'thumbsUpMicro', 'timeMicro', 'timelineMicro', 'toggleMicro', 'trashMicro', 'twitterMicro', 'ulMicro', 'underlineMicro', 'undoMicro', 'upMicro', 'uploadMicro', 'videoMicro', 'viewMicro', 'warningMicro', 'windowsMicro', 'xMicro'];
57
57
  var microIconNames = (0, _private_utils.createEnum)(...microIconNamesArray);
58
58
  /** @hidden */
59
59
 
@@ -76,6 +76,7 @@ var iconPaths = Object.freeze({
76
76
  [iconNames.boltList]: 'M5.24609 2.52356C5.24609 1.91879 4.967 1.81926 4.60718 2.323L0.0879582 8.64991C-0.0877211 8.89586 0.00616482 9.09525 0.312436 9.09525H2.51303C2.81268 9.09525 3.0556 9.33055 3.0556 9.64035V13.4764C3.0556 14.0812 3.3347 14.1807 3.69451 13.677L8.21374 7.35009C8.38942 7.10414 8.29553 6.90475 7.98926 6.90475H5.78867C5.48901 6.90475 5.24609 6.66945 5.24609 6.35965V2.52356Z M9.99993 7.99708C9.99993 7.44533 10.4378 6.99805 11.0029 6.99805H13.997C14.5509 6.99805 14.9999 7.44149 14.9999 7.99708C14.9999 8.54883 14.5621 8.99611 13.997 8.99611H11.0029C10.449 8.99611 9.99993 8.55267 9.99993 7.99708ZM6.50146 12.999C6.50146 12.4473 6.94895 12 7.49997 12H14.0014C14.5529 12 14.9999 12.4434 14.9999 12.999C14.9999 13.5508 14.5524 13.9981 14.0014 13.9981H7.49997C6.94851 13.9981 6.50146 13.5546 6.50146 12.999ZM7.49997 2.99903C7.49997 2.44728 7.94746 2 8.49847 2H14.0014C14.5529 2 14.9999 2.44343 14.9999 2.99903C14.9999 3.55077 14.5524 3.99805 14.0014 3.99805H8.49847C7.94701 3.99805 7.49997 3.55462 7.49997 2.99903 Z',
77
77
  [iconNames.book]: 'M4.80174958,2.56642553 L6.86021296,1.19411658 C6.96034005,1.12736519 7.17754804,1.10399495 7.28797443,1.14646664 L12.8530465,3.28687901 C12.9135034,3.31013166 13,3.43615143 13,3.50643687 L13,13.5 C13,13.7761424 13.2238576,14 13.5,14 C13.7761424,14 14,13.7761424 14,13.5 L14,3.50643687 C14,3.02249465 13.6587819,2.52536277 13.2120256,2.35353341 L7.64695351,0.213121038 C7.23469471,0.0545599575 6.67672037,0.114594545 6.30551275,0.362066294 L3.7226499,2.0839749 L3.3887068,2.30660363 L3.39124028,2.31313598 C3.15415362,2.42018545 3,2.66652877 3,2.99998686 L3,12.0487316 C3,12.6010091 3.41815763,13.2032369 3.93181341,13.3930439 L10.0549429,15.6556745 C10.5695692,15.8458402 10.9867563,15.5496113 10.9867563,15.0005108 L10.9867563,5.51032795 C10.9867563,4.95832531 10.5573536,4.37584515 10.039207,4.21295267 L4.80174958,2.56642553 Z',
78
78
  [iconNames.calendar]: 'M12 2c0-.556-.448-1-1-1-.556 0-1 .448-1 1H6c0-.556-.448-1-1-1-.556 0-1 .448-1 1h-.998C2.456 2 2 2.449 2 3.002v9.996C2 13.544 2.449 14 3.002 14h9.996c.546 0 1.002-.449 1.002-1.002V3.002C14 2.456 13.551 2 12.998 2H12zm2.006-2C15.107 0 16 .895 16 1.994v12.012A1.995 1.995 0 0 1 14.006 16H1.994A1.995 1.995 0 0 1 0 14.006V1.994C0 .893.895 0 1.994 0h12.012zM7.505 4h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 8.495 6h-.99A.497.497 0 0 1 7 5.495v-.99C7 4.226 7.214 4 7.505 4zm3 0h.99c.279 0 .505.214.505.505v.99a.497.497 0 0 1-.505.505h-.99A.497.497 0 0 1 10 5.495v-.99c0-.279.214-.505.505-.505zm-6 3h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 5.495 9h-.99A.497.497 0 0 1 4 8.495v-.99C4 7.226 4.214 7 4.505 7zm3 0h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 8.495 9h-.99A.497.497 0 0 1 7 8.495v-.99C7 7.226 7.214 7 7.505 7zm3 0h.99c.279 0 .505.214.505.505v.99a.497.497 0 0 1-.505.505h-.99A.497.497 0 0 1 10 8.495v-.99c0-.279.214-.505.505-.505zm-6 3h.99c.279 0 .505.214.505.505v.99a.497.497 0 0 1-.505.505h-.99A.497.497 0 0 1 4 11.495v-.99c0-.279.214-.505.505-.505zm3 0h.99c.279 0 .505.214.505.505v.99a.497.497 0 0 1-.505.505h-.99A.497.497 0 0 1 7 11.495v-.99c0-.279.214-.505.505-.505z',
79
+ [iconNames.calendarDay]: 'M12 2C12 1.444 11.552 1 11 1C10.444 1 10 1.448 10 2H6C6 1.444 5.552 1 5 1C4.444 1 4 1.448 4 2H3.002C2.456 2 2 2.449 2 3.002V12.998C2 13.544 2.449 14 3.002 14H12.998C13.544 14 14 13.551 14 12.998V3.002C14 2.456 13.551 2 12.998 2H12ZM14.006 0C15.107 0 16 0.895 16 1.994V14.006C15.9997 14.5348 15.7896 15.0418 15.4157 15.4157C15.0418 15.7896 14.5348 15.9997 14.006 16H1.994C1.46524 15.9997 0.958212 15.7896 0.584322 15.4157C0.210432 15.0418 0.000264976 14.5348 0 14.006L0 1.994C0 0.893 0.895 0 1.994 0H14.006ZM10.505 7H11.495C11.774 7 12 7.214 12 7.505V8.495C12.0011 8.56162 11.9888 8.62777 11.9638 8.68953C11.9388 8.75128 11.9016 8.80739 11.8545 8.8545C11.8074 8.90161 11.7513 8.93877 11.6895 8.96376C11.6278 8.98876 11.5616 9.00108 11.495 9H10.505C10.4384 9.00108 10.3722 8.98876 10.3105 8.96376C10.2487 8.93877 10.1926 8.90161 10.1455 8.8545C10.0984 8.80739 10.0612 8.75128 10.0362 8.68953C10.0112 8.62777 9.99892 8.56162 10 8.495V7.505C10 7.226 10.214 7 10.505 7Z',
79
80
  [iconNames.caret]: 'M4.80153237,6.00002 L11.1984676,6.00002 C11.8579881,6.00002 12.2338734,6.76912179 11.8387119,7.30861993 L8.64024427,11.6724979 C8.3194337,12.1091674 7.6805663,12.1091674 7.3611326,11.6724979 L4.1612881,7.30861993 C3.76612658,6.76912179 4.14201193,6.00002 4.80153237,6.00002',
80
81
  [iconNames.chart]: 'M2.5 12v-1a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0zm4 0V8.5a1.5 1.5 0 0 1 3 0V12a1.5 1.5 0 0 1-3 0zm4 0V4a1.5 1.5 0 0 1 3 0v8a1.5 1.5 0 0 1-3 0z',
81
82
  [iconNames.chat]: 'M8.33409987,12 L11.9914698,12 C13.0980496,12 14,11.1057373 14,10.0026083 L14,4.9973917 C14,3.89585781 13.1007504,3 11.9914698,3 L4.0085302,3 C2.90195036,3 2,3.89426273 2,4.9973917 L2,10.0026083 C2,11.1013173 2.89464321,11.9954037 4,11.9999823 L4,13.9906311 C4,14.5566468 4.37069082,14.7434133 4.82796112,14.4268975 L8.33409987,12 Z',
@@ -211,6 +212,7 @@ var iconPaths = Object.freeze({
211
212
  [iconNames.text]: 'M2.554 12.615L6.628 2.429C6.834 1.916 7.448 1.5 8 1.5c.556 0 1.166.416 1.372.93l4.074 10.185c.306.765-.116 1.385-.944 1.385h-.252a1.1 1.1 0 0 1-.987-.711l-.526-1.578c-.13-.39-.577-.711-.996-.711H6.259c-.43 0-.865.318-.996.711l-.526 1.578c-.13.39-.573.711-.987.711h-.252c-.828 0-1.25-.62-.944-1.385zM6.371 8.07c-.205.513.072.929.638.929h1.982c.557 0 .845-.41.637-.929L8.556 5.393c-.308-.77-.806-.77-1.114 0L6.372 8.07z',
212
213
  [iconNames.thumbsUp]: 'M14.82 7.365c.072-.806-.479-1.043-.742-1.043h-3.691l-.05.003c-.217.002-.362-.202-.312-.445.054-.525.312-2.066.312-2.38 0-.352-.054-.708-.116-1.057-.06-.34-.187-.66-.425-.919-.256-.278-.572-.376-.932-.256-.354.117-.589.356-.607.753-.026.54-.035 1.082-.057 1.624a.5.5 0 0 1-.055.213c-.533.958-1.1 1.774-1.624 2.736-.123.227-.261.288-.527.35-.25.03-1.013.273-1.013.273a.715.715 0 0 0-.481.64v4.15c0 .273.206.572.46.67 0 0 .928.355 1.034.417.61.364 1.05.464 1.665.82a.393.393 0 0 0 .186.055c1.505.003 2.785 0 4.29 0 .218 0 .934-.095 1.117-.875.185-.785-.565-1.027-.565-1.027s.929.113 1.082-.754c.144-.814-.562-1.058-.593-1.07.287-.05.94-.189 1.077-.793.14-.616-.29-1.01-.522-1.168.35-.008 1.027-.224 1.089-.917zM2 12.59a.49.49 0 0 0 .505.491h.99a.503.503 0 0 0 .505-.49V7.571a.49.49 0 0 0-.505-.49h-.99a.503.503 0 0 0-.505.49v5.018z',
213
214
  [iconNames.time]: 'M8,0 C12.418,0 16,3.582 16,8 C16,12.418 12.418,16 8,16 C3.582,16 0,12.418 0,8 C0,3.582 3.582,0 8,0 Z M8,2 C4.692,2 2,4.692 2,8 C2,11.308 4.692,14 8,14 C11.308,14 14,11.308 14,8 C14,4.692 11.308,2 8,2 Z M11.0093722,6.81393832 C11.1869056,6.80171574 11.3902483,6.8209993 11.5909071,6.89932646 C11.9980469,7.0582535 12.25,7.41593872 12.25,7.9707 C12.25,8.71905692 11.9405369,9.10504068 11.4133258,9.19533412 C11.2968713,9.21527884 11.206245,9.21916031 11.03169,9.21875075 C11.0154321,9.21871244 11.0154321,9.21871244 11,9.2187 L8.0298,9.2187 C7.3406155,9.2187 6.7808,8.65965826 6.78080752,7.97263915 L6.75,4 C6.75,3.19576788 7.03110947,2.75 8.0298,2.75 C8.77892842,2.75 9.15546292,3.06066987 9.23324737,3.59140329 C9.24887805,3.69805344 9.25158437,3.78155321 9.25031295,3.94283886 C9.25007528,3.97279143 9.25007528,3.97279143 9.25,4 L9.25,6.8157 L10.9877173,6.8157 C10.9925047,6.81529591 10.9991438,6.81476155 11.0093722,6.81393832 Z',
215
+ [iconNames.timeline]: 'M2 0C0.895431 0 0 0.895431 0 2V14C0 15.1046 0.895431 16 2 16H14C15.1046 16 16 15.1046 16 14V2C16 0.895431 15.1046 0 14 0H2ZM3.16667 2.66667C2.89052 2.66667 2.66667 2.89052 2.66667 3.16667V4.83333C2.66667 5.10948 2.89053 5.33333 3.16667 5.33333H7.5C7.77614 5.33333 8 5.10948 8 4.83333V3.16667C8 2.89052 7.77614 2.66667 7.5 2.66667H3.16667ZM2.66667 11.1667C2.66667 10.8905 2.89053 10.6667 3.16667 10.6667H12.8333C13.1095 10.6667 13.3333 10.8905 13.3333 11.1667V12.8333C13.3333 13.1095 13.1095 13.3333 12.8333 13.3333H3.16667C2.89053 13.3333 2.66667 13.1095 2.66667 12.8333V11.1667ZM4.5 6.66667C4.22386 6.66667 4 6.89052 4 7.16667V8.83333C4 9.10948 4.22386 9.33333 4.5 9.33333H6.16667C6.44281 9.33333 6.66667 9.10948 6.66667 8.83333V7.16667C6.66667 6.89052 6.44281 6.66667 6.16667 6.66667H4.5ZM9.33333 3.16667C9.33333 2.89052 9.55719 2.66667 9.83333 2.66667H11.5C11.7761 2.66667 12 2.89052 12 3.16667V4.83333C12 5.10948 11.7761 5.33333 11.5 5.33333H9.83333C9.55719 5.33333 9.33333 5.10948 9.33333 4.83333V3.16667ZM8.5 6.66667C8.22386 6.66667 8 6.89052 8 7.16667V8.83333C8 9.10948 8.22386 9.33333 8.5 9.33333H14.1667C14.4428 9.33333 14.6667 9.10948 14.6667 8.83333V7.16667C14.6667 6.89052 14.4428 6.66667 14.1667 6.66667H8.5Z',
214
216
  [iconNames.toggle]: 'M12,10.667 C10.527,10.667 9.333,9.473 9.333,8 C9.333,6.528 10.527,5.334 12,5.334 C13.473,5.334 14.667,6.528 14.667,8 C14.667,9.473 13.473,10.667 12,10.667 M12,4 L4,4 C1.8,4 0,5.8 0,8 C0,10.2 1.8,12 4,12 L12,12 C14.2,12 16,10.2 16,8 C16,5.8 14.2,4 12,4',
215
217
  [iconNames.trash]: 'M4,7.50639765 C4,6.6744372 4.66831553,6 5.50473881,6 L10.4952612,6 C11.3263055,6 12,6.67646277 12,7.50639765 L12,13.0026083 C12,14.1057373 11.1132936,15 10.0018986,15 L5.99810135,15 C4.89458045,15 4,14.1041422 4,13.0026083 L4,7.50639765 Z M11,3 L5,3 L5,1.5 C5,1.225 5.225,1 5.5,1 L10.5,1 C10.775,1 11,1.225 11,1.5 L11,3 Z M3,4 C3,3.44771525 3.4556644,3 3.99539757,3 L12.0046024,3 C12.5543453,3 13,3.44386482 13,4 C13,4.55228475 12.5443356,5 12.0046024,5 L3.99539757,5 C3.44565467,5 3,4.55613518 3,4 Z M6,3 L10,3 L10,2 L6,2 L6,3 Z',
216
218
  [iconNames.twitter]: 'M13.2998018,4.32976877 C13.8902861,3.97262684 14.343681,3.40737926 14.5572713,2.73398009 C14.0046293,3.06465754 13.3926228,3.3045144 12.7407338,3.4338026 C12.2192022,2.87334804 11.4757162,2.52302537 10.6529754,2.52302537 C9.0730805,2.52302537 7.79255878,3.81436451 7.79255878,5.40737611 C7.79255878,5.63353274 7.81762045,5.85374438 7.86659117,6.06471968 C5.4891497,5.94458554 3.38139912,4.79590569 1.97052,3.05097788 C1.72427916,3.47679581 1.58323205,3.97221542 1.58323205,4.50091878 C1.58323205,5.50177604 2.08802526,6.38449454 2.85579768,6.90195589 C2.38690886,6.88717569 1.94576433,6.75736293 1.5600778,6.54116262 C1.5596392,6.55329946 1.5596392,6.56531288 1.5596392,6.57736743 C1.5596392,7.97516106 2.54578576,9.14070906 3.85425578,9.40586815 C3.61443081,9.47179793 3.36178431,9.50666563 3.10087571,9.50666563 C2.91636593,9.50666563 2.73746622,9.48906721 2.56250374,9.45523834 C2.92675984,10.6011411 3.98297096,11.4351888 5.23493238,11.4585368 C4.25513028,12.2323118 3.02191666,12.6932031 1.6816223,12.6932031 C1.45088563,12.6932031 1.22301519,12.6795029 0.99905139,12.652987 C2.26549696,13.4713802 3.76889107,13.9487489 5.38448638,13.9487489 C10.6459068,13.9487489 13.5227456,9.55367017 13.5227456,5.74167404 C13.5227456,5.61667488 13.5198895,5.49252941 13.5146875,5.36882622 C14.0733475,4.9618204 14.5582607,4.45393481 14.9419888,3.87537784 C14.4297699,4.10481554 13.878352,4.25989966 13.2998018,4.32976877 Z',
@@ -241,6 +243,7 @@ var microIconPaths = Object.freeze({
241
243
  [microIconNames.boltListMicro]: 'M8.49697 5.99708C8.49697 5.44533 8.93485 4.99805 9.4999 4.99805H10.997C11.5509 4.99805 11.9999 5.44149 11.9999 5.99708C11.9999 6.54883 11.562 6.99611 10.997 6.99611H9.4999C8.946 6.99611 8.49697 6.55267 8.49697 5.99708ZM5.503 9.99903C5.503 9.44728 5.95048 9 6.5015 9H11.0014C11.5529 9 11.9999 9.44343 11.9999 9.99903C11.9999 10.5508 11.5524 10.9981 11.0014 10.9981H6.5015C5.95004 10.9981 5.503 10.5546 5.503 9.99903ZM6.5014 1.99903C6.5014 1.44728 6.94889 1 7.4999 1H11.0014C11.5529 1 11.9999 1.44343 11.9999 1.99903C11.9999 2.55077 11.5524 2.99805 11.0014 2.99805H7.4999C6.94844 2.99805 6.5014 2.55462 6.5014 1.99903Z M4.37174 1.4363C4.37174 0.932322 4.13916 0.849381 3.83932 1.26917L0.0732985 6.54159C-0.0731009 6.74655 0.00513732 6.9127 0.260363 6.9127H2.09419C2.3439 6.9127 2.54633 7.10879 2.54633 7.36696V10.5637C2.54633 11.0677 2.77891 11.1506 3.07876 10.7308L6.84478 5.45841C6.99118 5.25345 6.91294 5.08729 6.65772 5.08729H4.82389C4.57418 5.08729 4.37174 4.89121 4.37174 4.63304V1.4363 Z',
242
244
  [microIconNames.bookMicro]: 'M2.00496559,2.57085198 C2.00168282,2.60427476 2,2.6389821 2,2.67492473 L2,8.10042709 C2,8.65379807 2.40207146,9.31078259 2.88586767,9.56152824 L6.70486157,11.540866 C7.19411277,11.7944389 7.59072924,11.5567585 7.59072924,11.0087 L7.59072924,5.16425827 C7.59072924,4.61677821 7.18865778,3.9931641 6.68003918,3.76572571 L3.49727483,2.34249261 L4.92172253,1.20293441 C4.98966163,1.14858313 5.17170735,1.12347315 5.24485967,1.15598529 L8.84900186,2.75782629 C8.91304855,2.78629148 9,2.91980273 9,2.99209597 L9,10 C9,10.2761424 9.22385763,10.5 9.5,10.5 C9.77614237,10.5 10,10.2761424 10,10 L10,2.99209597 C10,2.52422963 9.67996486,2.03282565 9.25514033,1.84401474 L5.65099814,0.242173747 C5.23323363,0.0565006263 4.65413885,0.136376505 4.29702747,0.422065615 L2.18765247,2.10956567 C2.04440363,2.22416475 1.98088937,2.40149459 2.00496559,2.57085198 Z',
243
245
  [microIconNames.calendarMicro]: 'M9.991 0A2.01 2.01 0 0 1 12 2.009V9.99A2.01 2.01 0 0 1 9.991 12H2.01A2.01 2.01 0 0 1 0 9.991V2.01A2.01 2.01 0 0 1 2.009 0H9.99zM5.505 2h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 6.495 4h-.99A.497.497 0 0 1 5 3.495v-.99C5 2.226 5.214 2 5.505 2zm3 0h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 9.495 4h-.99A.497.497 0 0 1 8 3.495v-.99C8 2.226 8.214 2 8.505 2zm-6 3h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 3.495 7h-.99A.497.497 0 0 1 2 6.495v-.99C2 5.226 2.214 5 2.505 5zm3 0h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 6.495 7h-.99A.497.497 0 0 1 5 6.495v-.99C5 5.226 5.214 5 5.505 5zm3 0h.99c.279 0 .505.214.505.505v.99A.497.497 0 0 1 9.495 7h-.99A.497.497 0 0 1 8 6.495v-.99C8 5.226 8.214 5 8.505 5zm-6 3h.99c.279 0 .505.214.505.505v.99a.497.497 0 0 1-.505.505h-.99A.497.497 0 0 1 2 9.495v-.99C2 8.226 2.214 8 2.505 8zm3 0h.99c.279 0 .505.214.505.505v.99a.497.497 0 0 1-.505.505h-.99A.497.497 0 0 1 5 9.495v-.99C5 8.226 5.214 8 5.505 8z',
246
+ [microIconNames.calendarDayMicro]: 'M9.991 0C10.5237 0.000264978 11.0346 0.212012 11.4113 0.588715C11.788 0.965418 11.9997 1.47626 12 2.009V9.99C12 10.5229 11.7884 11.034 11.4116 11.4109C11.0349 11.7879 10.5239 11.9997 9.991 12H2.01C1.47709 12 0.965988 11.7884 0.589069 11.4116C0.212149 11.0349 0.00026513 10.5239 0 9.991L0 2.01C-6.59528e-08 1.47709 0.21163 0.965988 0.588362 0.589069C0.965094 0.212149 1.47609 0.00026513 2.009 0L9.99 0H9.991ZM9.495 5H8.505C8.214 5 8 5.226 8 5.505V6.495C7.99892 6.56162 8.01124 6.62777 8.03624 6.68953C8.06123 6.75128 8.09839 6.80739 8.1455 6.8545C8.19261 6.90161 8.24872 6.93877 8.31047 6.96376C8.37223 6.98876 8.43838 7.00108 8.505 7H9.495C9.56162 7.00108 9.62777 6.98876 9.68953 6.96376C9.75128 6.93877 9.80739 6.90161 9.8545 6.8545C9.90161 6.80739 9.93877 6.75128 9.96376 6.68953C9.98876 6.62777 10.0011 6.56162 10 6.495V5.505C10 5.214 9.774 5 9.495 5Z',
244
247
  [microIconNames.caretMicro]: 'M3.6011,4.00002 L8.4011,4.00002 C8.8951,4.00002 9.1771,4.56402 8.8811,4.96002 L6.4811,8.16002 C6.2411,8.48002 5.7611,8.48002 5.5211,8.16002 L3.1211,4.96002 C2.8241,4.56402 3.1071,4.00002 3.6011,4.00002',
245
248
  [microIconNames.chartMicro]: 'M1.5 10V9a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0zm2 0V8a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0zm2 0V7a.5.5 0 0 1 1 0v3a.5.5 0 0 1-1 0zm2 0V5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0zm2 0V2a.5.5 0 1 1 1 0v8a.5.5 0 1 1-1 0z',
246
249
  [microIconNames.chatMicro]: 'M6.39274127,8.96435524 L8.75349189,8.96435524 C9.85030808,8.96435524 10.7500973,8.07084781 10.7500973,6.96865054 L10.7500973,3.9957047 C10.7500973,2.89621022 9.85618663,2 8.75349189,2 L2.99660544,2 C1.89978926,2 1,2.89350743 1,3.9957047 L1,6.96865054 C1,8.06814502 1.8939107,8.96435524 2.99660544,8.96435524 L3,8.96435524 L3,10.0010434 C3,10.5573397 3.38482498,10.769105 3.85953064,10.4842816 L6.39274127,8.96435524 Z',
@@ -375,6 +378,7 @@ var microIconPaths = Object.freeze({
375
378
  [microIconNames.textMicro]: 'M2.0476155,10.1206425 L5.11130917,2.46140833 C5.21101579,2.21214176 5.51781872,2 5.79160327,2 L6.17326986,2 C6.45444936,2 6.75163245,2.20657954 6.85356396,2.46140833 L9.91725763,10.1206425 C10.0169643,10.3699091 9.87541306,10.5820508 9.59612477,10.5820508 L8.63867303,10.5820508 C8.49802926,10.5820508 8.3501498,10.4762679 8.30665317,10.3457779 L7.858084,9.00007044 C7.77232111,8.74278177 7.472068,8.52235863 7.19232227,8.52235863 L4.77255086,8.52235863 C4.49126333,8.52235863 4.19473344,8.73623749 4.10678913,9.00007044 L3.65821996,10.3457779 C3.616375,10.4713128 3.46607297,10.5820508 3.3262001,10.5820508 L2.36874836,10.5820508 C2.08744282,10.5820508 1.94568398,10.3754713 2.0476155,10.1206425 Z M4.79439217,6.68626507 C4.69217324,6.94195382 4.82480255,7.1492305 5.11301416,7.1492305 L6.85185897,7.1492305 C7.13004796,7.1492305 7.27373619,6.94477233 7.17027609,6.68626507 L6.34985372,4.63634302 C6.14651535,4.12827813 5.81339771,4.13734132 5.61390744,4.63634302 L4.79439217,6.68626507 Z',
376
379
  [microIconNames.thumbsUpMicro]: 'M10.995 5.799c.056-.63-.373-.813-.579-.813H7.54l-.039.002c-.169.001-.282-.157-.244-.347.043-.41.244-1.611.244-1.856 0-.274-.042-.552-.09-.824a1.388 1.388 0 0 0-.332-.716c-.2-.217-.446-.293-.727-.2-.276.092-.458.278-.473.587-.02.422-.027.844-.044 1.266a.39.39 0 0 1-.043.166c-.416.747-.857 1.383-1.266 2.134-.096.177-.204.224-.411.273-.195.023-.63.172-.63.172A.738.738 0 0 0 3 6.297v3.205c0 .275.22.545.488.604 0 0 .544.11.626.16.476.283.819.36 1.298.639a.306.306 0 0 0 .145.042c1.173.003 2.171 0 3.345 0 .17 0 .728-.073.87-.682.145-.612-.44-.8-.44-.8s.724.087.844-.589c.112-.634-.438-.824-.463-.834.224-.038.733-.147.84-.618.11-.48-.226-.788-.407-.91.274-.007.8-.175.849-.715zM1 9.754c0 .277.217.501.493.501h.573a.498.498 0 0 0 .493-.5V6.077c0-.277-.217-.5-.493-.5h-.573a.498.498 0 0 0-.493.5v3.676z',
377
380
  [microIconNames.timeMicro]: 'M6,0 C2.686,0 0,2.686 0,6 C0,9.314 2.686,12 6,12 C9.314,12 12,9.314 12,6 C12,2.686 9.314,0 6,0 M6,1.5 C8.481,1.5 10.5,3.519 10.5,6 C10.5,8.481 8.481,10.5 6,10.5 C3.519,10.5 1.5,8.481 1.5,6 C1.5,3.519 3.519,1.5 6,1.5 Z M8.5,5.32 C7.5,5.32 6.705,5.32 6.705,5.32 L6.705,2.73052979 C6.705,2.45452979 6.5,1.98052979 6,1.98052979 C5.5,1.98052979 5.25,2.45452979 5.25,2.73052979 L5.25,6 C5.25,6.414 5.586,6.75 6,6.75 L8.5,6.75 C9,6.75 9.12567139,6.25177002 9.12567139,6 C9.12567139,5.74822998 9,5.32 8.5,5.32 Z',
381
+ [microIconNames.timelineMicro]: 'M2 0C0.895431 0 0 0.895431 0 2V10C0 11.1046 0.895431 12 2 12H10C11.1046 12 12 11.1046 12 10V2C12 0.895431 11.1046 0 10 0H2ZM2.5 2C2.22386 2 2 2.22386 2 2.5V3.5C2 3.77614 2.22386 4 2.5 4H5.5C5.77614 4 6 3.77614 6 3.5V2.5C6 2.22386 5.77614 2 5.5 2H2.5ZM2 8.5C2 8.22386 2.22386 8 2.5 8H9.5C9.77614 8 10 8.22386 10 8.5V9.5C10 9.77614 9.77614 10 9.5 10H2.5C2.22386 10 2 9.77614 2 9.5V8.5ZM3.5 5C3.22386 5 3 5.22386 3 5.5V6.5C3 6.77614 3.22386 7 3.5 7H4.5C4.77614 7 5 6.77614 5 6.5V5.5C5 5.22386 4.77614 5 4.5 5H3.5ZM7 2.5C7 2.22386 7.22386 2 7.5 2H8.5C8.77614 2 9 2.22386 9 2.5V3.5C9 3.77614 8.77614 4 8.5 4H7.5C7.22386 4 7 3.77614 7 3.5V2.5ZM6.5 5C6.22386 5 6 5.22386 6 5.5V6.5C6 6.77614 6.22386 7 6.5 7H10.5C10.7761 7 11 6.77614 11 6.5V5.5C11 5.22386 10.7761 5 10.5 5H6.5Z',
378
382
  [microIconNames.toggleMicro]: 'M9,8 C7.895,8 7,7.105 7,6 C7,4.895 7.895,4 9,4 C10.105,4 11,4.895 11,6 C11,7.105 10.105,8 9,8 M9,3 L3,3 C1.35,3 0,4.35 0,6 C0,7.65 1.35,9 3,9 L9,9 C10.65,9 12,7.65 12,6 C12,4.35 10.65,3 9,3',
379
383
  [microIconNames.trashMicro]: 'M5,3 L7,3 L7,2 L5,2 L5,3 L5,3 L5,3 Z M9.5,3 C9.775,3 10,3.225 10,3.5 C10,3.775 9.775,4 9.5,4 L2.5,4 C2.225,4 2,3.775 2,3.5 C2,3.225 2.225,3 2.5,3 L4,3 L4,1.5 C4,1.225 4.225,1 4.5,1 L7.5,1 C7.775,1 8,1.225 8,1.5 L8,3 L9.5,3 Z M3,5.99077797 C3,5.44358641 3.45097518,5 3.99077797,5 L8.00922203,5 C8.55641359,5 9,5.45097518 9,5.99077797 L9,10.009222 C9,10.5564136 8.54902482,11 8.00922203,11 L3.99077797,11 C3.44358641,11 3,10.5490248 3,10.009222 L3,5.99077797 Z',
380
384
  [microIconNames.twitterMicro]: 'M11,3.49289236 C10.6322585,3.65745551 10.236792,3.76867892 9.82186668,3.81878773 C10.2453509,3.56265226 10.5705172,3.15726733 10.7237001,2.67431813 C10.3273557,2.91147377 9.88843615,3.08349459 9.42091364,3.17621765 C9.046881,2.77427019 8.51366686,2.52302537 7.92361263,2.52302537 C6.79054172,2.52302537 5.87217564,3.4491495 5.87217564,4.59162744 C5.87217564,4.75382272 5.8901494,4.91175436 5.92527028,5.06306187 C4.220214,4.97690393 2.70857495,4.15309236 1.696719,2.90166297 C1.52011971,3.20705158 1.41896337,3.5623572 1.41896337,3.94153329 C1.41896337,4.65932929 1.78099156,5.29239839 2.3316235,5.66351193 C1.99534526,5.65291184 1.67896471,5.55981258 1.40235758,5.40475779 C1.40204302,5.4134621 1.40204302,5.42207789 1.40204302,5.43072319 C1.40204302,6.43319447 2.10928878,7.26910357 3.04769885,7.45927067 C2.8757009,7.50655427 2.69450758,7.53156073 2.50738885,7.53156073 C2.37506191,7.53156073 2.2467584,7.51893947 2.1212786,7.49467805 C2.38251622,8.31649795 3.14001096,8.91466128 4.03789412,8.93140602 C3.3351985,9.48634284 2.4507609,9.81688544 1.48952701,9.81688544 C1.32404701,9.81688544 1.16062262,9.80705989 1,9.78804318 C1.90827093,10.3749794 2.98647689,10.7173392 4.14515144,10.7173392 C7.91854311,10.7173392 9.98175777,7.5652715 9.98175777,4.83137962 C9.98175777,4.74173257 9.97970948,4.65269778 9.97597866,4.56398018 C10.3766391,4.27208326 10.7244097,3.90783728 10.9996123,3.49290711',
@@ -35,7 +35,7 @@ var _sdk_context = require("./sdk_context");
35
35
  * <React.Fragment>
36
36
  * <Button icon="minus" onClick={decrement} disabled={!isEnabled} ariaLabel="decrease"/>
37
37
  * {count}
38
- * <Button icon="plus" onClick={increment} disabled={!isEnabled} airaLabel="increase"/>
38
+ * <Button icon="plus" onClick={increment} disabled={!isEnabled} ariaLabel="increase"/>
39
39
  * </React.Fragment>
40
40
  * );
41
41
  * }
@@ -4,6 +4,10 @@ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWild
4
4
 
5
5
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
6
 
7
+ require("core-js/modules/es.array.iterator");
8
+
9
+ require("core-js/modules/web.dom-collections.iterator");
10
+
7
11
  Object.defineProperty(exports, "__esModule", {
8
12
  value: true
9
13
  });
@@ -104,7 +108,7 @@ function useRecordIds(tableOrViewOrQueryResult, opts) {
104
108
  var queryResult = _useUnwatchedRecordQueryResult(tableOrViewOrQueryResult, 'useRecordIds', generatedOpts);
105
109
 
106
110
  (0, _use_watchable.default)(queryResult, ['recordIds']);
107
- return queryResult ? queryResult.recordIds : null;
111
+ return queryResult ? [...queryResult.recordIds] : null;
108
112
  }
109
113
  /** */
110
114
 
@@ -134,7 +134,7 @@ Object.defineProperty(exports, "Sdk", {
134
134
  Object.defineProperty(exports, "AbstractMockAirtableInterface", {
135
135
  enumerable: true,
136
136
  get: function get() {
137
- return _mock_airtable_interface.default;
137
+ return _abstract_mock_airtable_interface.AbstractMockAirtableInterface;
138
138
  }
139
139
  });
140
140
 
@@ -160,4 +160,4 @@ var _backend_fetch_types = require("./types/backend_fetch_types");
160
160
 
161
161
  var _sdk = _interopRequireDefault(require("./sdk"));
162
162
 
163
- var _mock_airtable_interface = _interopRequireDefault(require("./testing/mock_airtable_interface"));
163
+ var _abstract_mock_airtable_interface = require("./testing/abstract_mock_airtable_interface");