@airtable/blocks 1.10.0 → 1.10.1

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/CHANGELOG.md ADDED
@@ -0,0 +1,480 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project
6
+ started to follow semantic versioning as of version 1.0.0.
7
+
8
+ Not every commit needs to result in a change to this file (e.g. docs and chore commits). Every
9
+ commit that affects the code in a way that consumers might care about should include edits to the
10
+ 'Unreleased' section though. Breaking changes should be prefixed with `**BREAKING:**`.
11
+
12
+ ## [Unreleased](https://github.com/airtable/blocks/compare/@airtable/blocks@1.10.1...HEAD)
13
+
14
+ No changes.
15
+
16
+ ## [1.10.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.10.0...@airtable/blocks@1.10.1) - 2021-12-22
17
+
18
+ - Update examples for table, view and field URLs.
19
+ - Use `keyof any` instead of `PropertyKey` in type definition to avoid incompatibility with the
20
+ "[keyofStringsOnly](https://www.typescriptlang.org/tsconfig#keyofStringsOnly)" tsconfig option
21
+
22
+ ## [1.10.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.9.0...@airtable/blocks@1.10.0) - 2021-11-03
23
+
24
+ - Fix typo in cursor.ts documentation - thanks @m2creates!
25
+ - Add new `calendarDay` icon (and micro variant)
26
+ - Update documentation to include attachment url guidance
27
+ - Update field metadata writes documentation to mention that `null` will be coerced to `''`
28
+ - Fix a bug when unloading data from a `linkedRecordQueryResult` after a table deletion
29
+ - Update `children` prop of `Link` component to be optional
30
+
31
+ ## [1.9.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.8.0...@airtable/blocks@1.9.0) - 2021-09-15
32
+
33
+ - Update documentation for `FieldType.CHECKBOX` cell read & write types to be more accurate.
34
+ - Fetching field types & configs is now cached, making it more performant.
35
+ - Field descriptions can now be edited and specified when creating a new field:
36
+ - Added `field.updateDescriptionAsync`.
37
+ - Added optional `description` argument to `table.createFieldAsync`.
38
+ - Added optional `description` property to `field` objects accepted by
39
+ `base.createTableAsync`.
40
+
41
+ ## [1.8.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.7.2...@airtable/blocks@1.8.0) - 2021-07-12
42
+
43
+ - Add `opts` argument to `Field.updateOptionsAsync` with `enableSelectFieldChoiceDeletion` opt.
44
+ - Add `prefersSingleRecordLink` to `field.options` for `MULTIPLE_RECORD_LINKS` type fields.
45
+ - Add new timeline icon (and micro variant).
46
+
47
+ ## [1.7.2](https://github.com/airtable/blocks/compare/@airtable/blocks@1.7.1...@airtable/blocks@1.7.2) - 2021-05-26
48
+
49
+ - Add `FieldType.EXTERNAL_SYNC_SOURCE`.
50
+
51
+ ## [1.7.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.7.0...@airtable/blocks@1.7.1) - 2021-05-21
52
+
53
+ No changes.
54
+
55
+ ## [1.7.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.6.0...@airtable/blocks@1.7.0) - 2021-05-13
56
+
57
+ - Add `onBlur` and `onFocus` support to `Input` and `InputSynced` UI components.
58
+
59
+ ## [1.6.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.5.1...@airtable/blocks@1.6.0) - 2021-05-12
60
+
61
+ - Add `color` property to `base` to access the background color of the base, as well as the
62
+ `color` watch key
63
+ - Update documentation text for `GlobalConfig` with increased 150kb limit.
64
+ - Add `getMaxRecordsPerTable` to `base`
65
+
66
+ ## [1.5.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.5.0...@airtable/blocks@1.5.1) - 2021-03-04
67
+
68
+ No changes.
69
+
70
+ ## [1.5.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.4.1...@airtable/blocks@1.5.0) - 2021-02-25
71
+
72
+ - Add type exports for `Cursor` & `Session` to `@airtable/blocks/models`.
73
+ - Add type exports for `GlobalConfig`, `Watchable`, & `Viewport` to `@airtable/blocks/types`.
74
+ - Add `boltList`, `boltListMicro`, `contacts`, `contactsMicro`, `megaphone`, `megaphoneMicro`,
75
+ `shareWithBolt` and `shareWithBoltMicro` icons.
76
+ - Increase spacing between `label` and `description` nodes in `FormField`.
77
+ - Support creating (but not updating) `MULTIPLE_RECORD_LINKS` fields using
78
+ `table.createFieldAsync`.
79
+ - Add `isCancelButtonDisabled` and `isConfirmButtonDisabled` props to `ConfirmationDialog`.
80
+ - Add `config` property to `Field`, which is a new `FieldConfig` discriminated union type that
81
+ provides easier access to field options.
82
+ - Improve type definitions for `getHexForColor` and `getRgbForColor`.
83
+
84
+ ## [1.4.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.4.0...@airtable/blocks@1.4.1) - 2021-01-21
85
+
86
+ No changes.
87
+
88
+ ## [1.4.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.3.0...@airtable/blocks@1.4.0) - 2021-01-19
89
+
90
+ - **DEPRECATED:** importing the Base's Cursor instance from the main entrypoint, e.g.
91
+ `import {cursor} from '@airtable/blocks';`. Use the `useCursor` React Hook instead.
92
+ - **DEPRECATED:** importing the Base's Session instance from the main entrypoint, e.g.
93
+ `import {session} from '@airtable/blocks';`. Use the `useSession` React Hook instead.
94
+
95
+ ## [1.3.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.5...@airtable/blocks@1.3.0) - 2021-01-07
96
+
97
+ - Fix crash when deleting views.
98
+ - Add BaseProvider to allow rendering Components outside of the App's React tree
99
+
100
+ ## [1.2.5](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.4...@airtable/blocks@1.2.5) - 2020-12-10
101
+
102
+ No changes.
103
+
104
+ ## [1.2.4](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.3...@airtable/blocks@1.2.4) - 2020-12-10
105
+
106
+ No changes.
107
+
108
+ ## [1.2.3](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.2...@airtable/blocks@1.2.3) - 2020-12-09
109
+
110
+ - Stopped exporting an internal class that was causing typescript checking to fail on version
111
+ 1.2.2
112
+
113
+ ## [1.2.2](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.1...@airtable/blocks@1.2.2) - 2020-12-08
114
+
115
+ - Fixed a bug in useRecordActionData that caused it to crash on version 1.2.1
116
+
117
+ ## [1.2.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.0...@airtable/blocks@1.2.1) - 2020-11-23
118
+
119
+ - Fixed a bug that prevented TableOrViewQueryResult from notifying watchers about the
120
+ creation/deletion of sorted fields.
121
+ - Fixed a bug where deleting and undeleting a table that was already loaded caused the App to
122
+ crash.
123
+ - **DEPRECATED:** importing the UI namespace from the main entrypoint, e.g.
124
+ `import {UI} from '@airtable/blocks';`. Use `import * as UI from '@airtable/blocks/ui/ui';`
125
+ instead.
126
+ - **DEPRECATED:** importing the models namespace from the main entrypoint, e.g.
127
+ `import {models} from '@airtable/blocks';`. Use
128
+ `import * as models from '@airtable/blocks/models/models';` instead.
129
+
130
+ ## [1.2.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.1.0...@airtable/blocks@1.2.0) - 2020-10-23
131
+
132
+ - Added `automations` and fixed the SVG path for `personalAuto` in `Icon`.
133
+ - Fixed a bug that caused an App to crash when creating a new table before the App has loaded.
134
+ - Fixed a bug in watching/unwatching keys of LinkedRecordQueryResult models. Watching/unwatching
135
+ `isDataLoaded` no longer affects the model's "loaded" state.
136
+ - Fixed a bug introduced in v1.0.0 in `RecordCard` when rendering a record that has a lookup field
137
+ of an attachment field.
138
+
139
+ ## [1.1.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.0.1...@airtable/blocks@1.1.0) - 2020-09-29
140
+
141
+ - **DEPRECATED:** "blocks" as an icon name. Use `<Icon name="apps" .../>` instead.
142
+ - Fixed bugs introduced in v1.0.0 that broke using lookup cell values with
143
+ `Record.getCellValueAsString`, `aggregator.aggregate` and `aggregator.aggregateToString`
144
+
145
+ ## [1.0.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.0.0...@airtable/blocks@1.0.1) - 2020-09-24
146
+
147
+ - Fixed bug where `Select`, `SelectButtons`, and `Synced` variants behaved incorrectly when there
148
+ were multiple items with the same value.
149
+ - Fix a bug using lookup cell values with `<CellRenderer />` introduced in v1.0.0
150
+
151
+ ## [1.0.0](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.55...@airtable/blocks@1.0.0) - 2020-09-14
152
+
153
+ - **BREAKING:** The cell value format for lookup fields (`FieldType.MULTIPLE_LOOKUP_VALUES`) is
154
+ now `Array<{linkedRecordId: RecordId, value: CellValue}>`
155
+ - **BREAKING:** Remove `Record.primaryCellValue` and `Record.primaryCellValueAsString`, as well as
156
+ the `primaryCellValue` watchable key on Record. These APIs were deprecated in v0.0.45
157
+ - **BREAKING:** Remove legacy record creation format. All calls to `Table.createRecordAsync` /
158
+ `Table.createRecordsAsync` must define record field mappings under a `fields` key. These APIs
159
+ were deprecated in v0.0.41.
160
+
161
+ ## [0.0.55](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.54...@airtable/blocks@0.0.55) - 2020-09-02
162
+
163
+ No changes.
164
+
165
+ ## [0.0.54](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.53...@airtable/blocks@0.0.54) - 2020-08-12
166
+
167
+ - Remove `unstable_` prefix from `Field.updateOptionsAsync`, `Table.createFieldAsync`, and
168
+ `Base.createTableAsync`. See
169
+ [Changing base schema](https://airtable.com/developers/blocks/guides/changing-base-schema) for
170
+ full details.
171
+
172
+ ## [0.0.53](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.52...@airtable/blocks@0.0.53) - 2020-06-24
173
+
174
+ - Fix a typo in the docs for `globalConfig.setAsync`.
175
+ - Added an explicit `box-sizing: border-box;` to the inner div of ChoiceToken, to prevent
176
+ accidentally inheriting different box-sizing values.
177
+
178
+ ## [0.0.52](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.51...@airtable/blocks@0.0.52) - 2020-06-08
179
+
180
+ - Add `FieldType.CREATED_BY`, `FieldType.LAST_MODIFIED_BY`, and `FieldType.BUTTON`.
181
+ - Add record action APIs! Use one in your block to handle "open block" requests from a button
182
+ field.
183
+ - `useRecordActionData`
184
+ - `registerRecordActionDataCallback`
185
+
186
+ ## [0.0.51](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.50...@airtable/blocks@0.0.51) - 2020-05-28
187
+
188
+ - Fix a bug introduced in 0.0.48 that caused typechecking errors for blocks using TypeScript.
189
+
190
+ ## [0.0.50](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.49...@airtable/blocks@0.0.50) - 2020-05-28
191
+
192
+ No changes.
193
+
194
+ ## [0.0.49](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.48...@airtable/blocks@0.0.49) - 2020-05-21
195
+
196
+ - Adds optional `renderInvalidCellValue` prop to `RecordCard` and `CellRenderer` to render a
197
+ component if validation fails.
198
+
199
+ ## [0.0.48](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.47...@airtable/blocks@0.0.48) - 2020-04-30
200
+
201
+ No changes.
202
+
203
+ ## [0.0.47](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.46...@airtable/blocks@0.0.47) - 2020-04-23
204
+
205
+ - UI components that don't depend on base data can now be used outside of the blocks environment.
206
+
207
+ ## [0.0.46](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.45...@airtable/blocks@0.0.46) - 2020-04-16
208
+
209
+ - `FieldType.RICH_TEXT` has been added, which encompasses long text fields with the new rich text
210
+ formatting option enabled. (See Airtable's announcement regarding
211
+ [rich text formatting in long text fields](https://blog.airtable.com/4-workflows-for-rich-text-formatting/))
212
+ - `Switch` and `SwitchSynced` now truncate the label.
213
+ - Fix a bug where `RecordCard` performs the default expand record behavior, even if an `onClick`
214
+ override is supplied. It now properly handles overrides as described in the documentation. This
215
+ fix also applies to `onRecordClick` in `RecordCardList`.
216
+ - Beta: New field and table writes API! You can now create tables and fields and update field
217
+ options.
218
+ - `base.unstable_createTableAsync`
219
+ - `table.unstable_createFieldAsync`
220
+ - `field.unstable_updateOptionsAsync`
221
+ - These APIs are unstable and may have breaking changes in the future.
222
+ - Not all field types are supported at this time. Refer to `FieldType` documentation for
223
+ details.
224
+
225
+ ## [0.0.45](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.44...@airtable/blocks@0.0.45) - 2020-03-31
226
+
227
+ - **DEPRECATED:** `record.primaryCellValue` and `record.primaryCellValueAsString`.
228
+ - The `primaryCellValue` watch key on `record` is also deprecated - use the `name` watch key
229
+ instead.
230
+ - Add the following APIs to match the new scripting block:
231
+ - **Convenience model getters.** These are useful when you're working on a block for a
232
+ specific base, but best-practice for more generic blocks is to prefer the existing
233
+ `ById`/`ByName` methods.
234
+ - `base.getCollaboratorIfExists`
235
+ - `base.getCollaborator`
236
+ - `base.getTableIfExists`
237
+ - `base.getTable`
238
+ - `table.getFieldIdExists`
239
+ - `table.getField`
240
+ - `table.getViewIfExists`
241
+ - `table.getView`
242
+ - **Async `select` queries.** For creating UIs from a query, the best practice is still to use
243
+ `useRecords` etc. Directly querying data is useful for one-off data processing though.
244
+ - `table.selectRecordsAsync`
245
+ - `view.selectRecordsAsync`
246
+ - `view.selectMetadataAsync`
247
+ - `record.selectLinkedRecordsFromCellAsync`
248
+ - **`record.name`** replaces `record.primaryCellValueAsString`.
249
+ - Fix some incorrectly redacted internal typescript types
250
+
251
+ ## [0.0.44](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.43...@airtable/blocks@0.0.44) - 2020-03-27
252
+
253
+ - `TextButton` now supports including an icon without a label.
254
+ - Properly export the `useSynced` hook.
255
+ - Errors now output model names instead of IDs when available.
256
+ - Fix a positioning bug with `SelectButtons` where unwanted empty space could appear when the
257
+ component is used in a scrollable list.
258
+
259
+ ## [0.0.43](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.42...@airtable/blocks@0.0.43) - 2020-02-28
260
+
261
+ - Export the `useSynced` hook for syncing a component to `GlobalConfig`.
262
+
263
+ ## [0.0.42](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.41...@airtable/blocks@0.0.42) - 2020-02-10
264
+
265
+ - **BREAKING**: Field type and view type enums are now exported from '@airtable/blocks/models' as
266
+ `FieldType` and `ViewType` (previously `fieldTypes` and `viewTypes`). Relatedly, these types are
267
+ no longer exported from '@airtable/blocks/types', as they can now be referenced from the model
268
+ exports.
269
+ - Updates to record convenience hooks
270
+ - `useRecords` now accepts a `Table` or `View` and optional `RecordQueryResultOpts`. Passing a
271
+ `RecordQueryResult` is still supported.
272
+ - `useRecordIds` now accepts a `Table` or `View` and optional `RecordIdQueryResultOpts`.
273
+ Passing a `RecordQueryResult` is still supported.
274
+ - `useRecordById` now accepts a `Table` or `View` and optional `SingleRecordQueryResultOpts`.
275
+ Passing a `RecordQueryResult` is still supported.
276
+ - Added `cursor.selectedFieldIds` which returns the field IDs that are selected in grid view
277
+
278
+ ## [0.0.41](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.40...@airtable/blocks@0.0.41) - 2020-01-27
279
+
280
+ - **BREAKING**: `useWatchable` will now throw an error if the second argument `keys` is
281
+ `undefined`. Previously, this would no-op.
282
+ - Added support for `setActiveTable` and `setActiveView` to the `cursor` API. These can be used to
283
+ manipulate the current table and/or view on the main Airtable page from inside a block.
284
+ - Table.createRecordsAsync now accepts an array of objects containing a `fields` object of field
285
+ \-> cell value mappings, rather an accepting field -> cell value mappings directly. This brings
286
+ its API in line with `updateRecordsAsync` and other Airtable APIs. The old behavior is still
287
+ supported but has been deprecated and will be removed in a future version.
288
+ - Fixed issue where blocks would crash in MS Edge due to a browser bug with `super` method calls.
289
+ - Changed default Tooltip `placementOffsetX` and `placementOffsetY` to `8` pixels. `undefined`.
290
+ Previously, this would no-op.
291
+ - Added default blue `barColor` to `ProgressBar`.
292
+
293
+ ## [0.0.40](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.39...@airtable/blocks@0.0.40) - 2020-01-09
294
+
295
+ - Added permission checks that don't require specifying a table to `session`:
296
+ - `session.checkPermissionsForUpdateRecords()`
297
+ - `session.hasPermissionToUpdateRecords()`
298
+ - `session.checkPermissionsForCreateRecords()`
299
+ - `session.hasPermissionToCreateRecords()`
300
+ - `session.checkPermissionsForDeleteRecords()`
301
+ - `session.hasPermissionToDeleteRecords()`
302
+
303
+ ## [0.0.39](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.38...@airtable/blocks@0.0.39) - 2019-12-12
304
+
305
+ - Changed the font sizes for the `size` variants of `Select` and `Button`.
306
+ - `useWatchable` now supports single string watch keys being passed in (as well as the existing
307
+ array support)
308
+ - Fixed bug where `shouldAllowPickingNone` didn't work in `FieldPicker` and `FieldPickerSynced`.
309
+ - Updated `fullscreen` and `fullscreenMicro` icons.
310
+ - Updated UI.Button component to better support icon buttons containing no text. An error is now
311
+ logged to the console if you attempt to use a UI.Button component with no text/children and no
312
+ aria-label.
313
+
314
+ ## [0.0.36](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.35...@airtable/blocks@0.0.36) - 2019-11-18
315
+
316
+ - Added `table.description` and `field.description`, and `description` watch key on `table` and
317
+ `field`.
318
+
319
+ ## [0.0.35](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.34...@airtable/blocks@0.0.35) - 2019-11-11
320
+
321
+ - UI library
322
+ - New API for styling UI components. Each component now exposes a certain set of CSS
323
+ properties as React props. Styling via the `className` and `style` props is still supported
324
+ but is no longer recommended. For more information, see the documentation for
325
+ [style props](https://github.com/Airtable/blocks/blob/master/packages/sdk/docs/api/modules/_airtable_blocks_ui_system__all_style_props.md#allstylesprops).
326
+ - New components:
327
+ - `Text` and `Heading` for typography.
328
+ - `Label` and `FormField` for labeling controls or form fields.
329
+ - `TextButton` for buttons that can be rendered inline with text.
330
+ - **BREAKING**: `Toggle` has been renamed to `Switch`.
331
+ - **BREAKING**: `Button` and `Switch` no longer accept the `theme` prop. Instead, you can
332
+ specify the colors for these components with the `variant` prop.
333
+ - `Link` also supports the `variant` prop, which determines the text color of the link.
334
+ - `Button`, `Input`, `Link`, `SelectButtons`, `Select`, `Switch`, and the model picker
335
+ components can now be resized via the `size` prop (one of `small`, `default`, or `large`).
336
+ - `Button`, `Icon`, `Input`, `Link`, `SelectButtons`, `Select`, `Switch`, and the model picker
337
+ components are now functional components that use the
338
+ [`React.forwardRef`](https://reactjs.org/docs/forwarding-refs.html) API.
339
+ - `SelectButtons` is now keyboard/screenreader accessible.
340
+ - Typescript
341
+ - **BREAKING** The SDK has been migrated from Flow to TypeScript. We no longer provide flow
342
+ type definitions with the release of the SDK. TypeScript definitions are provided instead.
343
+
344
+ ## [0.0.34](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.33...@airtable/blocks@0.0.34) - 2019-10-04
345
+
346
+ - Fix a regression where `UI.ConfirmationDialog` would crash the block.
347
+ - Allow passing an array of models to `useWatchable` to watch several models at once.
348
+ - **BREAKING**: `fieldTypes.LOOKUP` is now `fieldTypes.MULTIPLE_LOOKUP_VALUES`. The underlying
349
+ string has also changed from `lookup` to `multipleLookupValues`.
350
+ - Fix a regression where cover images in `UI.RecordCard` would render as `[Object object]`.
351
+
352
+ ## [0.0.33](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.32...@airtable/blocks@0.0.33) - 2019-09-26
353
+
354
+ - New settings button helpers: `useSettingsButton`, `settingsButton.show()` and
355
+ `settingsButton.hide()`.
356
+ - **BREAKING**: `settingsButton.isVisible` is no longer settable. Use `settingsButton.show()` and
357
+ `settingsButton.hide()` instead.
358
+
359
+ ## [0.0.32](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.31...@airtable/blocks@0.0.32) - 2019-09-20
360
+
361
+ - **BREAKING:** Removed `localStorage` and `sessionStorage` wrappers.
362
+ - Fix a bug where the `value` prop wouldn't get correctly passed through to `Input`
363
+
364
+ ## [0.0.31](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.30...@airtable/blocks@0.0.31) - 2019-09-18
365
+
366
+ - New record writes API! You can now create, update, and delete records directly from your block.
367
+ Check out the new
368
+ [writes guide](https://github.com/Airtable/blocks/blob/master/packages/sdk/docs/guide_writes.md)
369
+ for more information.
370
+ - **BREAKING**: several `globalConfig` APIs have changed to be consistent with the new record
371
+ writes & permissions APIs:
372
+ - `globalConfig.set()` has been removed - use the new `globalConfig.setAsync()` method
373
+ instead.
374
+ - `globalConfig.canSet()` has been renamed to `globalConfig.hasPermissionToSet()`.
375
+ - `globalConfig.setPaths()` has been removed - use the new `globalConfig.setPathsAsync()`
376
+ method instead.
377
+ - `globalConfig.canSetPaths()` has been renamed to `globalConfig.hasPermissionToSetPaths()`.
378
+ - **BREAKING:** Remove `models.generateGuid()`. Use an ID generator like
379
+ [`uuid`](https://www.npmjs.com/package/uuid) instead.
380
+ - **BREAKING:** Deprecated `UI.AutocompletePopover`.
381
+ - Upgrade flow to 0.106.3
382
+ - Fix a flow error with `react-window`.
383
+ - `view.selectRecords()` now colors records according to that view by default.
384
+ - Allow passing an array of models to `useLoadable` to load several things at once.
385
+
386
+ ## [0.0.30](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.29...@airtable/blocks@0.0.30) - 2019-08-26
387
+
388
+ No changes.
389
+
390
+ ## [0.0.29](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.28...@airtable/blocks@0.0.29) - 2019-08-22
391
+
392
+ No changes.
393
+
394
+ ## [0.0.28](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.27...@airtable/blocks@0.0.28) - 2019-08-21
395
+
396
+ No changes.
397
+
398
+ ## [0.0.27](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.26...@airtable/blocks@0.0.27) - 2019-08-21
399
+
400
+ No changes.
401
+
402
+ ## [0.0.26](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.25...@airtable/blocks@0.0.26) - 2019-08-19
403
+
404
+ - UI.RecordCardList: fixed a bug where records weren't expanded by default when clicked.
405
+
406
+ ## [0.0.25](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.24...@airtable/blocks@0.0.25) - 2019-08-19
407
+
408
+ - Add Print Records block docs example block
409
+
410
+ ## [0.0.24](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.23...@airtable/blocks@0.0.24) - 2019-08-14
411
+
412
+ No changes.
413
+
414
+ ## [0.0.23](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.22...@airtable/blocks@0.0.23) - 2019-08-09
415
+
416
+ ### Fixed
417
+
418
+ - The `disabled` attribute on `<Select>` components (including model pickers and synced model
419
+ pickers) now correctly disables the element
420
+
421
+ ## [0.0.22](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.21...@airtable/blocks@0.0.22) - 2019-07-18
422
+
423
+ No changes.
424
+
425
+ ## [0.0.21](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.20...@airtable/blocks@0.0.21) - 2019-07-18
426
+
427
+ No changes.
428
+
429
+ ## [0.0.20](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.19...@airtable/blocks@0.0.20) - 2019-07-15
430
+
431
+ ### Fixed
432
+
433
+ - A bug with UI.Toggle that made it difficult to style
434
+
435
+ ## [0.0.19](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.18...@airtable/blocks@0.0.19) - 2019-07-11
436
+
437
+ No changes.
438
+
439
+ ## [0.0.18](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.17...@airtable/blocks@0.0.18) - 2019-07-10
440
+
441
+ - Update documentation links & eslint-plugin-blocks
442
+
443
+ ## [0.0.17](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.16...@airtable/blocks@0.0.17) - 2019-07-09
444
+
445
+ No changes.
446
+
447
+ ## [0.0.16](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.15...@airtable/blocks@0.0.16) - 2019-07-05
448
+
449
+ - **BREAKING:** Removed view.visibleFields and view.allFields - use view.selectMetadata instead
450
+ - Added view.selectMetadata() for querying a view's field order and list of visible fields
451
+
452
+ ## [0.0.15](https://github.com/airtable/blocks/compare/v0.0.14...@airtable/blocks@0.0.15) - 2019-07-03
453
+
454
+ No changes.
455
+
456
+ ## [0.0.14](https://github.com/airtable/blocks/compare/v0.0.13...v0.0.14) - 2019-07-02
457
+
458
+ - **BREAKING:** Removed `currentUser` from `Base` since it is now accessible through `Session`.
459
+ - **BREAKING:** Renamed QueryResult to RecordQueryResult
460
+ - Added base.watch('schema') to get notified when base schema changes.
461
+ - Added Session to expose data about the current user's session.
462
+ - Added globalConfig.watch('\*') to get notified of any global config key change.
463
+ - Added useGlobalConfig() to subscribe to global config changes from a react component.
464
+
465
+ ## [0.0.13](https://github.com/airtable/blocks/releases/tag/v0.0.13) - 2019-06-21
466
+
467
+ ### Removed
468
+
469
+ - **BREAKING:** Removed `createDataContainer`. Use `useWatchable` or other hooks instead.
470
+ - **BREAKING:** FieldIcon no longer accepts arbitrary props - only those in it's propTypes can be
471
+ used.
472
+
473
+ ### Added
474
+
475
+ - This changelog!
476
+
477
+ ### Fixed
478
+
479
+ - FieldPicker placeholder typo
480
+ - SVGElement flow error
@@ -438,7 +438,7 @@ function (_AbstractModel) {
438
438
  * @example
439
439
  * ```js
440
440
  * console.log(myRecord.url);
441
- * // => 'https://airtable.com/tblxxxxxxxxxxxxxx/recxxxxxxxxxxxxxx'
441
+ * // => 'https://airtable.com/appxxxxxxxxxxxxxx/tblxxxxxxxxxxxxxx/recxxxxxxxxxxxxxx'
442
442
  * ```
443
443
  */
444
444
 
@@ -2219,7 +2219,7 @@ function (_AbstractModel) {
2219
2219
  * @example
2220
2220
  * ```js
2221
2221
  * console.log(myTable.url);
2222
- * // => 'https://airtable.com/tblxxxxxxxxxxxxxx'
2222
+ * // => 'https://airtable.com/appxxxxxxxxxxxxxx/tblxxxxxxxxxxxxxx'
2223
2223
  * ```
2224
2224
  */
2225
2225
 
@@ -434,7 +434,7 @@ function (_AbstractModel) {
434
434
  * @example
435
435
  * ```js
436
436
  * console.log(myView.url);
437
- * // => 'https://airtable.com/tblxxxxxxxxxxxxxx/viwxxxxxxxxxxxxxx'
437
+ * // => 'https://airtable.com/appxxxxxxxxxxxxxx/tblxxxxxxxxxxxxxx/viwxxxxxxxxxxxxxx'
438
438
  * ```
439
439
  */
440
440
 
package/dist/cjs/sdk.js CHANGED
@@ -330,4 +330,4 @@ function () {
330
330
  }();
331
331
 
332
332
  exports.default = BlockSdk;
333
- (0, _defineProperty2.default)(BlockSdk, "VERSION", "1.10.0");
333
+ (0, _defineProperty2.default)(BlockSdk, "VERSION", "1.10.1");
@@ -134,7 +134,7 @@ declare class Record extends AbstractModel<RecordData, WatchableRecordKey> {
134
134
  * @example
135
135
  * ```js
136
136
  * console.log(myRecord.url);
137
- * // => 'https://airtable.com/tblxxxxxxxxxxxxxx/recxxxxxxxxxxxxxx'
137
+ * // => 'https://airtable.com/appxxxxxxxxxxxxxx/tblxxxxxxxxxxxxxx/recxxxxxxxxxxxxxx'
138
138
  * ```
139
139
  */
140
140
  get url(): string;
@@ -56,7 +56,7 @@ declare class Table extends AbstractModel<TableData, WatchableTableKey> {
56
56
  * @example
57
57
  * ```js
58
58
  * console.log(myTable.url);
59
- * // => 'https://airtable.com/tblxxxxxxxxxxxxxx'
59
+ * // => 'https://airtable.com/appxxxxxxxxxxxxxx/tblxxxxxxxxxxxxxx'
60
60
  * ```
61
61
  */
62
62
  get url(): string;
@@ -45,7 +45,7 @@ declare class View extends AbstractModel<ViewData, WatchableViewKey> {
45
45
  * @example
46
46
  * ```js
47
47
  * console.log(myView.url);
48
- * // => 'https://airtable.com/tblxxxxxxxxxxxxxx/viwxxxxxxxxxxxxxx'
48
+ * // => 'https://airtable.com/appxxxxxxxxxxxxxx/tblxxxxxxxxxxxxxx/viwxxxxxxxxxxxxxx'
49
49
  * ```
50
50
  */
51
51
  get url(): string;
@@ -36,7 +36,7 @@ export declare type ReactRefType<C> = C extends React.Component ? C : C extends
36
36
  *
37
37
  * @hidden
38
38
  */
39
- export declare type ObjectMap<K extends PropertyKey, V> = {
39
+ export declare type ObjectMap<K extends keyof any, V> = {
40
40
  [P in K]: V;
41
41
  };
42
42
  /**
@@ -108,7 +108,7 @@ export declare function fireAndForgetPromise(fn: () => Promise<unknown>): void;
108
108
  /**
109
109
  * @hidden
110
110
  */
111
- export declare function has<T extends object>(obj: T, key: PropertyKey): key is keyof T;
111
+ export declare function has<T extends object>(obj: T, key: keyof any): key is keyof T;
112
112
  /**
113
113
  * @hidden
114
114
  */
@@ -1 +1 @@
1
- {"version":3,"file":"private_utils.d.ts","sourceRoot":"","sources":["../../../src/private_utils.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"private_utils.d.ts","sourceRoot":"","sources":["../../../src/private_utils.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airtable/blocks",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "Airtable Blocks SDK",
5
5
  "repository": {
6
6
  "type": "git",
@@ -143,7 +143,7 @@
143
143
  "hooks": {
144
144
  "before:init": "../../bin/check-repo-for-release && yarn build && yarn test",
145
145
  "after:bump": "yarn build",
146
- "after:release": "(cd ../../ && tools/git-mirror/bin/git-mirror sync @airtable/blocks@${version})"
146
+ "after:release": "../../tools/git-mirror/bin/git-mirror sync @airtable/blocks@${version}"
147
147
  },
148
148
  "npm": {
149
149
  "access": "public"