@airtable/blocks 1.17.0 → 1.18.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 +547 -0
- package/dist/cjs/sdk.js +1 -1
- package/dist/cjs/types/field.js +1 -0
- package/dist/cjs/ui/icon_config.js +3 -1
- package/dist/types/src/types/field.d.ts +51 -2
- package/dist/types/src/types/field.d.ts.map +1 -1
- package/dist/types/src/ui/icon_config.d.ts +4 -2
- package/dist/types/src/ui/icon_config.d.ts.map +1 -1
- package/dist/types/stories/helpers/fake_cell_renderer.d.ts.map +1 -1
- package/dist/types/stories/helpers/field_type.d.ts.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,547 @@
|
|
|
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.18.1...HEAD)
|
|
13
|
+
|
|
14
|
+
No changes.
|
|
15
|
+
|
|
16
|
+
## [1.18.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.18.0...@airtable/blocks@1.18.1) - 2023-11-29
|
|
17
|
+
|
|
18
|
+
- Support React 17 as a peer dependency.
|
|
19
|
+
|
|
20
|
+
## [1.18.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.17.0...@airtable/blocks@1.18.0) - 2023-09-15
|
|
21
|
+
|
|
22
|
+
- Add `FieldType.AI_TEXT`.
|
|
23
|
+
|
|
24
|
+
## [1.17.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.16.0...@airtable/blocks@1.17.0) - 2023-04-14
|
|
25
|
+
|
|
26
|
+
No changes.
|
|
27
|
+
|
|
28
|
+
## [1.16.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.15.0...@airtable/blocks@1.16.0) - 2023-03-08
|
|
29
|
+
|
|
30
|
+
- Update `FieldType.DATE_TIME` documentation to add additional time zones and clarify the write
|
|
31
|
+
behavior.
|
|
32
|
+
- Visually refresh all icons
|
|
33
|
+
|
|
34
|
+
## [1.15.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.14.0...@airtable/blocks@1.15.0) - 2022-09-23
|
|
35
|
+
|
|
36
|
+
- Add `applyRowTemplate` icon
|
|
37
|
+
- Update `FieldType.DATE_TIME` documentation to pre-announce write behavior for field level time
|
|
38
|
+
zones
|
|
39
|
+
- Modify `createRecordsAsync`, `updateRecordsAsync`, `convertStringToCellValue` so that date
|
|
40
|
+
string inputs to date time fields are interpreted correctly for utc or client time zone, fixing
|
|
41
|
+
previously incorrect behaviors. In this new version, ambiguous strings like
|
|
42
|
+
"2020-09-05T07:00:00" and "2020-09-08" will be interpreted according to the `timeZone` of the
|
|
43
|
+
field, and nonambiguous string inputs with zone offset like "2020-09-05T07:00:00.000Z" and
|
|
44
|
+
"2020-09-08T00:00:00-07:00" will be interpreted correctly as the underlying timestamp.
|
|
45
|
+
|
|
46
|
+
## [1.14.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.13.0...@airtable/blocks@1.14.0) - 2022-07-26
|
|
47
|
+
|
|
48
|
+
- Add `personalCloseup` icon
|
|
49
|
+
- Add `xCheckbox` icon
|
|
50
|
+
|
|
51
|
+
## [1.13.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.12.0...@airtable/blocks@1.13.0) - 2022-06-28
|
|
52
|
+
|
|
53
|
+
- Add ability to read (and watch) if a view is locked
|
|
54
|
+
- Update `FieldType.MULTIPLE_COLLABORATOR` documentation to include user group collaborator
|
|
55
|
+
information
|
|
56
|
+
|
|
57
|
+
## [1.12.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.11.1...@airtable/blocks@1.12.0) - 2022-06-22
|
|
58
|
+
|
|
59
|
+
- Update fallback value in `Base.getMaxRecordsPerTable`
|
|
60
|
+
- Add `overlay` icon
|
|
61
|
+
- Update `cursor.setActiveTable` and `cursor.setActiveView` documentation to describe fullscreen
|
|
62
|
+
exit behavior correctly
|
|
63
|
+
- Fix an issue where rapidly subscribing and unsubscribing to a single field could cause a
|
|
64
|
+
queryResult to be to incorrectly marked as loaded.
|
|
65
|
+
- Update API reference documentation to reflect 'extensions' in place of 'apps'
|
|
66
|
+
- Update examples in documentation to reflect 'extensions' in place of 'apps'
|
|
67
|
+
|
|
68
|
+
## [1.11.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.11.0...@airtable/blocks@1.11.1) - 2022-04-13
|
|
69
|
+
|
|
70
|
+
- Update internal utilities for error reporting
|
|
71
|
+
|
|
72
|
+
## [1.11.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.10.2...@airtable/blocks@1.11.0) - 2022-03-10
|
|
73
|
+
|
|
74
|
+
- Add workspace id to base object.
|
|
75
|
+
- Add `Field.updateNameAsync`
|
|
76
|
+
- Fixes a crash when a linked record is deleted
|
|
77
|
+
- Fixes a crash when a record containing a linked record is deleted and restored
|
|
78
|
+
|
|
79
|
+
## [1.10.2](https://github.com/airtable/blocks/compare/@airtable/blocks@1.10.1...@airtable/blocks@1.10.2) - 2022-01-25
|
|
80
|
+
|
|
81
|
+
- Rare invariant failure addressed
|
|
82
|
+
|
|
83
|
+
## [1.10.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.10.0...@airtable/blocks@1.10.1) - 2021-12-22
|
|
84
|
+
|
|
85
|
+
- Update examples for table, view and field URLs.
|
|
86
|
+
- Use `keyof any` instead of `PropertyKey` in type definition to avoid incompatibility with the
|
|
87
|
+
"[keyofStringsOnly](https://www.typescriptlang.org/tsconfig#keyofStringsOnly)" tsconfig option
|
|
88
|
+
|
|
89
|
+
## [1.10.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.9.0...@airtable/blocks@1.10.0) - 2021-11-03
|
|
90
|
+
|
|
91
|
+
- Fix typo in cursor.ts documentation - thanks @m2creates!
|
|
92
|
+
- Add new `calendarDay` icon (and micro variant)
|
|
93
|
+
- Update documentation to include attachment url guidance
|
|
94
|
+
- Update field metadata writes documentation to mention that `null` will be coerced to `''`
|
|
95
|
+
- Fix a bug when unloading data from a `linkedRecordQueryResult` after a table deletion
|
|
96
|
+
- Update `children` prop of `Link` component to be optional
|
|
97
|
+
|
|
98
|
+
## [1.9.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.8.0...@airtable/blocks@1.9.0) - 2021-09-15
|
|
99
|
+
|
|
100
|
+
- Update documentation for `FieldType.CHECKBOX` cell read & write types to be more accurate.
|
|
101
|
+
- Fetching field types & configs is now cached, making it more performant.
|
|
102
|
+
- Field descriptions can now be edited and specified when creating a new field:
|
|
103
|
+
- Added `field.updateDescriptionAsync`.
|
|
104
|
+
- Added optional `description` argument to `table.createFieldAsync`.
|
|
105
|
+
- Added optional `description` property to `field` objects accepted by
|
|
106
|
+
`base.createTableAsync`.
|
|
107
|
+
|
|
108
|
+
## [1.8.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.7.2...@airtable/blocks@1.8.0) - 2021-07-12
|
|
109
|
+
|
|
110
|
+
- Add `opts` argument to `Field.updateOptionsAsync` with `enableSelectFieldChoiceDeletion` opt.
|
|
111
|
+
- Add `prefersSingleRecordLink` to `field.options` for `MULTIPLE_RECORD_LINKS` type fields.
|
|
112
|
+
- Add new timeline icon (and micro variant).
|
|
113
|
+
|
|
114
|
+
## [1.7.2](https://github.com/airtable/blocks/compare/@airtable/blocks@1.7.1...@airtable/blocks@1.7.2) - 2021-05-26
|
|
115
|
+
|
|
116
|
+
- Add `FieldType.EXTERNAL_SYNC_SOURCE`.
|
|
117
|
+
|
|
118
|
+
## [1.7.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.7.0...@airtable/blocks@1.7.1) - 2021-05-21
|
|
119
|
+
|
|
120
|
+
No changes.
|
|
121
|
+
|
|
122
|
+
## [1.7.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.6.0...@airtable/blocks@1.7.0) - 2021-05-13
|
|
123
|
+
|
|
124
|
+
- Add `onBlur` and `onFocus` support to `Input` and `InputSynced` UI components.
|
|
125
|
+
|
|
126
|
+
## [1.6.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.5.1...@airtable/blocks@1.6.0) - 2021-05-12
|
|
127
|
+
|
|
128
|
+
- Add `color` property to `base` to access the background color of the base, as well as the
|
|
129
|
+
`color` watch key
|
|
130
|
+
- Update documentation text for `GlobalConfig` with increased 150kb limit.
|
|
131
|
+
- Add `getMaxRecordsPerTable` to `base`
|
|
132
|
+
|
|
133
|
+
## [1.5.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.5.0...@airtable/blocks@1.5.1) - 2021-03-04
|
|
134
|
+
|
|
135
|
+
No changes.
|
|
136
|
+
|
|
137
|
+
## [1.5.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.4.1...@airtable/blocks@1.5.0) - 2021-02-25
|
|
138
|
+
|
|
139
|
+
- Add type exports for `Cursor` & `Session` to `@airtable/blocks/models`.
|
|
140
|
+
- Add type exports for `GlobalConfig`, `Watchable`, & `Viewport` to `@airtable/blocks/types`.
|
|
141
|
+
- Add `boltList`, `boltListMicro`, `contacts`, `contactsMicro`, `megaphone`, `megaphoneMicro`,
|
|
142
|
+
`shareWithBolt` and `shareWithBoltMicro` icons.
|
|
143
|
+
- Increase spacing between `label` and `description` nodes in `FormField`.
|
|
144
|
+
- Support creating (but not updating) `MULTIPLE_RECORD_LINKS` fields using
|
|
145
|
+
`table.createFieldAsync`.
|
|
146
|
+
- Add `isCancelButtonDisabled` and `isConfirmButtonDisabled` props to `ConfirmationDialog`.
|
|
147
|
+
- Add `config` property to `Field`, which is a new `FieldConfig` discriminated union type that
|
|
148
|
+
provides easier access to field options.
|
|
149
|
+
- Improve type definitions for `getHexForColor` and `getRgbForColor`.
|
|
150
|
+
|
|
151
|
+
## [1.4.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.4.0...@airtable/blocks@1.4.1) - 2021-01-21
|
|
152
|
+
|
|
153
|
+
No changes.
|
|
154
|
+
|
|
155
|
+
## [1.4.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.3.0...@airtable/blocks@1.4.0) - 2021-01-19
|
|
156
|
+
|
|
157
|
+
- **DEPRECATED:** importing the Base's Cursor instance from the main entrypoint, e.g.
|
|
158
|
+
`import {cursor} from '@airtable/blocks';`. Use the `useCursor` React Hook instead.
|
|
159
|
+
- **DEPRECATED:** importing the Base's Session instance from the main entrypoint, e.g.
|
|
160
|
+
`import {session} from '@airtable/blocks';`. Use the `useSession` React Hook instead.
|
|
161
|
+
|
|
162
|
+
## [1.3.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.5...@airtable/blocks@1.3.0) - 2021-01-07
|
|
163
|
+
|
|
164
|
+
- Fix crash when deleting views.
|
|
165
|
+
- Add BaseProvider to allow rendering Components outside of the App's React tree
|
|
166
|
+
|
|
167
|
+
## [1.2.5](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.4...@airtable/blocks@1.2.5) - 2020-12-10
|
|
168
|
+
|
|
169
|
+
No changes.
|
|
170
|
+
|
|
171
|
+
## [1.2.4](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.3...@airtable/blocks@1.2.4) - 2020-12-10
|
|
172
|
+
|
|
173
|
+
No changes.
|
|
174
|
+
|
|
175
|
+
## [1.2.3](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.2...@airtable/blocks@1.2.3) - 2020-12-09
|
|
176
|
+
|
|
177
|
+
- Stopped exporting an internal class that was causing typescript checking to fail on version
|
|
178
|
+
1.2.2
|
|
179
|
+
|
|
180
|
+
## [1.2.2](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.1...@airtable/blocks@1.2.2) - 2020-12-08
|
|
181
|
+
|
|
182
|
+
- Fixed a bug in useRecordActionData that caused it to crash on version 1.2.1
|
|
183
|
+
|
|
184
|
+
## [1.2.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.2.0...@airtable/blocks@1.2.1) - 2020-11-23
|
|
185
|
+
|
|
186
|
+
- Fixed a bug that prevented TableOrViewQueryResult from notifying watchers about the
|
|
187
|
+
creation/deletion of sorted fields.
|
|
188
|
+
- Fixed a bug where deleting and undeleting a table that was already loaded caused the App to
|
|
189
|
+
crash.
|
|
190
|
+
- **DEPRECATED:** importing the UI namespace from the main entrypoint, e.g.
|
|
191
|
+
`import {UI} from '@airtable/blocks';`. Use `import * as UI from '@airtable/blocks/ui/ui';`
|
|
192
|
+
instead.
|
|
193
|
+
- **DEPRECATED:** importing the models namespace from the main entrypoint, e.g.
|
|
194
|
+
`import {models} from '@airtable/blocks';`. Use
|
|
195
|
+
`import * as models from '@airtable/blocks/models/models';` instead.
|
|
196
|
+
|
|
197
|
+
## [1.2.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.1.0...@airtable/blocks@1.2.0) - 2020-10-23
|
|
198
|
+
|
|
199
|
+
- Added `automations` and fixed the SVG path for `personalAuto` in `Icon`.
|
|
200
|
+
- Fixed a bug that caused an App to crash when creating a new table before the App has loaded.
|
|
201
|
+
- Fixed a bug in watching/unwatching keys of LinkedRecordQueryResult models. Watching/unwatching
|
|
202
|
+
`isDataLoaded` no longer affects the model's "loaded" state.
|
|
203
|
+
- Fixed a bug introduced in v1.0.0 in `RecordCard` when rendering a record that has a lookup field
|
|
204
|
+
of an attachment field.
|
|
205
|
+
|
|
206
|
+
## [1.1.0](https://github.com/airtable/blocks/compare/@airtable/blocks@1.0.1...@airtable/blocks@1.1.0) - 2020-09-29
|
|
207
|
+
|
|
208
|
+
- **DEPRECATED:** "blocks" as an icon name. Use `<Icon name="apps" .../>` instead.
|
|
209
|
+
- Fixed bugs introduced in v1.0.0 that broke using lookup cell values with
|
|
210
|
+
`Record.getCellValueAsString`, `aggregator.aggregate` and `aggregator.aggregateToString`
|
|
211
|
+
|
|
212
|
+
## [1.0.1](https://github.com/airtable/blocks/compare/@airtable/blocks@1.0.0...@airtable/blocks@1.0.1) - 2020-09-24
|
|
213
|
+
|
|
214
|
+
- Fixed bug where `Select`, `SelectButtons`, and `Synced` variants behaved incorrectly when there
|
|
215
|
+
were multiple items with the same value.
|
|
216
|
+
- Fix a bug using lookup cell values with `<CellRenderer />` introduced in v1.0.0
|
|
217
|
+
|
|
218
|
+
## [1.0.0](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.55...@airtable/blocks@1.0.0) - 2020-09-14
|
|
219
|
+
|
|
220
|
+
- **BREAKING:** The cell value format for lookup fields (`FieldType.MULTIPLE_LOOKUP_VALUES`) is
|
|
221
|
+
now `Array<{linkedRecordId: RecordId, value: CellValue}>`
|
|
222
|
+
- **BREAKING:** Remove `Record.primaryCellValue` and `Record.primaryCellValueAsString`, as well as
|
|
223
|
+
the `primaryCellValue` watchable key on Record. These APIs were deprecated in v0.0.45
|
|
224
|
+
- **BREAKING:** Remove legacy record creation format. All calls to `Table.createRecordAsync` /
|
|
225
|
+
`Table.createRecordsAsync` must define record field mappings under a `fields` key. These APIs
|
|
226
|
+
were deprecated in v0.0.41.
|
|
227
|
+
|
|
228
|
+
## [0.0.55](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.54...@airtable/blocks@0.0.55) - 2020-09-02
|
|
229
|
+
|
|
230
|
+
No changes.
|
|
231
|
+
|
|
232
|
+
## [0.0.54](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.53...@airtable/blocks@0.0.54) - 2020-08-12
|
|
233
|
+
|
|
234
|
+
- Remove `unstable_` prefix from `Field.updateOptionsAsync`, `Table.createFieldAsync`, and
|
|
235
|
+
`Base.createTableAsync`. See
|
|
236
|
+
[Changing base schema](https://airtable.com/developers/blocks/guides/changing-base-schema) for
|
|
237
|
+
full details.
|
|
238
|
+
|
|
239
|
+
## [0.0.53](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.52...@airtable/blocks@0.0.53) - 2020-06-24
|
|
240
|
+
|
|
241
|
+
- Fix a typo in the docs for `globalConfig.setAsync`.
|
|
242
|
+
- Added an explicit `box-sizing: border-box;` to the inner div of ChoiceToken, to prevent
|
|
243
|
+
accidentally inheriting different box-sizing values.
|
|
244
|
+
|
|
245
|
+
## [0.0.52](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.51...@airtable/blocks@0.0.52) - 2020-06-08
|
|
246
|
+
|
|
247
|
+
- Add `FieldType.CREATED_BY`, `FieldType.LAST_MODIFIED_BY`, and `FieldType.BUTTON`.
|
|
248
|
+
- Add record action APIs! Use one in your block to handle "open block" requests from a button
|
|
249
|
+
field.
|
|
250
|
+
- `useRecordActionData`
|
|
251
|
+
- `registerRecordActionDataCallback`
|
|
252
|
+
|
|
253
|
+
## [0.0.51](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.50...@airtable/blocks@0.0.51) - 2020-05-28
|
|
254
|
+
|
|
255
|
+
- Fix a bug introduced in 0.0.48 that caused typechecking errors for blocks using TypeScript.
|
|
256
|
+
|
|
257
|
+
## [0.0.50](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.49...@airtable/blocks@0.0.50) - 2020-05-28
|
|
258
|
+
|
|
259
|
+
No changes.
|
|
260
|
+
|
|
261
|
+
## [0.0.49](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.48...@airtable/blocks@0.0.49) - 2020-05-21
|
|
262
|
+
|
|
263
|
+
- Adds optional `renderInvalidCellValue` prop to `RecordCard` and `CellRenderer` to render a
|
|
264
|
+
component if validation fails.
|
|
265
|
+
|
|
266
|
+
## [0.0.48](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.47...@airtable/blocks@0.0.48) - 2020-04-30
|
|
267
|
+
|
|
268
|
+
No changes.
|
|
269
|
+
|
|
270
|
+
## [0.0.47](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.46...@airtable/blocks@0.0.47) - 2020-04-23
|
|
271
|
+
|
|
272
|
+
- UI components that don't depend on base data can now be used outside of the blocks environment.
|
|
273
|
+
|
|
274
|
+
## [0.0.46](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.45...@airtable/blocks@0.0.46) - 2020-04-16
|
|
275
|
+
|
|
276
|
+
- `FieldType.RICH_TEXT` has been added, which encompasses long text fields with the new rich text
|
|
277
|
+
formatting option enabled. (See Airtable's announcement regarding
|
|
278
|
+
[rich text formatting in long text fields](https://blog.airtable.com/4-workflows-for-rich-text-formatting/))
|
|
279
|
+
- `Switch` and `SwitchSynced` now truncate the label.
|
|
280
|
+
- Fix a bug where `RecordCard` performs the default expand record behavior, even if an `onClick`
|
|
281
|
+
override is supplied. It now properly handles overrides as described in the documentation. This
|
|
282
|
+
fix also applies to `onRecordClick` in `RecordCardList`.
|
|
283
|
+
- Beta: New field and table writes API! You can now create tables and fields and update field
|
|
284
|
+
options.
|
|
285
|
+
- `base.unstable_createTableAsync`
|
|
286
|
+
- `table.unstable_createFieldAsync`
|
|
287
|
+
- `field.unstable_updateOptionsAsync`
|
|
288
|
+
- These APIs are unstable and may have breaking changes in the future.
|
|
289
|
+
- Not all field types are supported at this time. Refer to `FieldType` documentation for
|
|
290
|
+
details.
|
|
291
|
+
|
|
292
|
+
## [0.0.45](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.44...@airtable/blocks@0.0.45) - 2020-03-31
|
|
293
|
+
|
|
294
|
+
- **DEPRECATED:** `record.primaryCellValue` and `record.primaryCellValueAsString`.
|
|
295
|
+
- The `primaryCellValue` watch key on `record` is also deprecated - use the `name` watch key
|
|
296
|
+
instead.
|
|
297
|
+
- Add the following APIs to match the new scripting block:
|
|
298
|
+
- **Convenience model getters.** These are useful when you're working on a block for a
|
|
299
|
+
specific base, but best-practice for more generic blocks is to prefer the existing
|
|
300
|
+
`ById`/`ByName` methods.
|
|
301
|
+
- `base.getCollaboratorIfExists`
|
|
302
|
+
- `base.getCollaborator`
|
|
303
|
+
- `base.getTableIfExists`
|
|
304
|
+
- `base.getTable`
|
|
305
|
+
- `table.getFieldIdExists`
|
|
306
|
+
- `table.getField`
|
|
307
|
+
- `table.getViewIfExists`
|
|
308
|
+
- `table.getView`
|
|
309
|
+
- **Async `select` queries.** For creating UIs from a query, the best practice is still to use
|
|
310
|
+
`useRecords` etc. Directly querying data is useful for one-off data processing though.
|
|
311
|
+
- `table.selectRecordsAsync`
|
|
312
|
+
- `view.selectRecordsAsync`
|
|
313
|
+
- `view.selectMetadataAsync`
|
|
314
|
+
- `record.selectLinkedRecordsFromCellAsync`
|
|
315
|
+
- **`record.name`** replaces `record.primaryCellValueAsString`.
|
|
316
|
+
- Fix some incorrectly redacted internal typescript types
|
|
317
|
+
|
|
318
|
+
## [0.0.44](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.43...@airtable/blocks@0.0.44) - 2020-03-27
|
|
319
|
+
|
|
320
|
+
- `TextButton` now supports including an icon without a label.
|
|
321
|
+
- Properly export the `useSynced` hook.
|
|
322
|
+
- Errors now output model names instead of IDs when available.
|
|
323
|
+
- Fix a positioning bug with `SelectButtons` where unwanted empty space could appear when the
|
|
324
|
+
component is used in a scrollable list.
|
|
325
|
+
|
|
326
|
+
## [0.0.43](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.42...@airtable/blocks@0.0.43) - 2020-02-28
|
|
327
|
+
|
|
328
|
+
- Export the `useSynced` hook for syncing a component to `GlobalConfig`.
|
|
329
|
+
|
|
330
|
+
## [0.0.42](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.41...@airtable/blocks@0.0.42) - 2020-02-10
|
|
331
|
+
|
|
332
|
+
- **BREAKING**: Field type and view type enums are now exported from '@airtable/blocks/models' as
|
|
333
|
+
`FieldType` and `ViewType` (previously `fieldTypes` and `viewTypes`). Relatedly, these types are
|
|
334
|
+
no longer exported from '@airtable/blocks/types', as they can now be referenced from the model
|
|
335
|
+
exports.
|
|
336
|
+
- Updates to record convenience hooks
|
|
337
|
+
- `useRecords` now accepts a `Table` or `View` and optional `RecordQueryResultOpts`. Passing a
|
|
338
|
+
`RecordQueryResult` is still supported.
|
|
339
|
+
- `useRecordIds` now accepts a `Table` or `View` and optional `RecordIdQueryResultOpts`.
|
|
340
|
+
Passing a `RecordQueryResult` is still supported.
|
|
341
|
+
- `useRecordById` now accepts a `Table` or `View` and optional `SingleRecordQueryResultOpts`.
|
|
342
|
+
Passing a `RecordQueryResult` is still supported.
|
|
343
|
+
- Added `cursor.selectedFieldIds` which returns the field IDs that are selected in grid view
|
|
344
|
+
|
|
345
|
+
## [0.0.41](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.40...@airtable/blocks@0.0.41) - 2020-01-27
|
|
346
|
+
|
|
347
|
+
- **BREAKING**: `useWatchable` will now throw an error if the second argument `keys` is
|
|
348
|
+
`undefined`. Previously, this would no-op.
|
|
349
|
+
- Added support for `setActiveTable` and `setActiveView` to the `cursor` API. These can be used to
|
|
350
|
+
manipulate the current table and/or view on the main Airtable page from inside a block.
|
|
351
|
+
- Table.createRecordsAsync now accepts an array of objects containing a `fields` object of field
|
|
352
|
+
\-> cell value mappings, rather an accepting field -> cell value mappings directly. This brings
|
|
353
|
+
its API in line with `updateRecordsAsync` and other Airtable APIs. The old behavior is still
|
|
354
|
+
supported but has been deprecated and will be removed in a future version.
|
|
355
|
+
- Fixed issue where blocks would crash in MS Edge due to a browser bug with `super` method calls.
|
|
356
|
+
- Changed default Tooltip `placementOffsetX` and `placementOffsetY` to `8` pixels. `undefined`.
|
|
357
|
+
Previously, this would no-op.
|
|
358
|
+
- Added default blue `barColor` to `ProgressBar`.
|
|
359
|
+
|
|
360
|
+
## [0.0.40](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.39...@airtable/blocks@0.0.40) - 2020-01-09
|
|
361
|
+
|
|
362
|
+
- Added permission checks that don't require specifying a table to `session`:
|
|
363
|
+
- `session.checkPermissionsForUpdateRecords()`
|
|
364
|
+
- `session.hasPermissionToUpdateRecords()`
|
|
365
|
+
- `session.checkPermissionsForCreateRecords()`
|
|
366
|
+
- `session.hasPermissionToCreateRecords()`
|
|
367
|
+
- `session.checkPermissionsForDeleteRecords()`
|
|
368
|
+
- `session.hasPermissionToDeleteRecords()`
|
|
369
|
+
|
|
370
|
+
## [0.0.39](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.38...@airtable/blocks@0.0.39) - 2019-12-12
|
|
371
|
+
|
|
372
|
+
- Changed the font sizes for the `size` variants of `Select` and `Button`.
|
|
373
|
+
- `useWatchable` now supports single string watch keys being passed in (as well as the existing
|
|
374
|
+
array support)
|
|
375
|
+
- Fixed bug where `shouldAllowPickingNone` didn't work in `FieldPicker` and `FieldPickerSynced`.
|
|
376
|
+
- Updated `fullscreen` and `fullscreenMicro` icons.
|
|
377
|
+
- Updated UI.Button component to better support icon buttons containing no text. An error is now
|
|
378
|
+
logged to the console if you attempt to use a UI.Button component with no text/children and no
|
|
379
|
+
aria-label.
|
|
380
|
+
|
|
381
|
+
## [0.0.36](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.35...@airtable/blocks@0.0.36) - 2019-11-18
|
|
382
|
+
|
|
383
|
+
- Added `table.description` and `field.description`, and `description` watch key on `table` and
|
|
384
|
+
`field`.
|
|
385
|
+
|
|
386
|
+
## [0.0.35](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.34...@airtable/blocks@0.0.35) - 2019-11-11
|
|
387
|
+
|
|
388
|
+
- UI library
|
|
389
|
+
- New API for styling UI components. Each component now exposes a certain set of CSS
|
|
390
|
+
properties as React props. Styling via the `className` and `style` props is still supported
|
|
391
|
+
but is no longer recommended. For more information, see the documentation for
|
|
392
|
+
[style props](https://github.com/Airtable/blocks/blob/master/packages/sdk/docs/api/modules/_airtable_blocks_ui_system__all_style_props.md#allstylesprops).
|
|
393
|
+
- New components:
|
|
394
|
+
- `Text` and `Heading` for typography.
|
|
395
|
+
- `Label` and `FormField` for labeling controls or form fields.
|
|
396
|
+
- `TextButton` for buttons that can be rendered inline with text.
|
|
397
|
+
- **BREAKING**: `Toggle` has been renamed to `Switch`.
|
|
398
|
+
- **BREAKING**: `Button` and `Switch` no longer accept the `theme` prop. Instead, you can
|
|
399
|
+
specify the colors for these components with the `variant` prop.
|
|
400
|
+
- `Link` also supports the `variant` prop, which determines the text color of the link.
|
|
401
|
+
- `Button`, `Input`, `Link`, `SelectButtons`, `Select`, `Switch`, and the model picker
|
|
402
|
+
components can now be resized via the `size` prop (one of `small`, `default`, or `large`).
|
|
403
|
+
- `Button`, `Icon`, `Input`, `Link`, `SelectButtons`, `Select`, `Switch`, and the model picker
|
|
404
|
+
components are now functional components that use the
|
|
405
|
+
[`React.forwardRef`](https://reactjs.org/docs/forwarding-refs.html) API.
|
|
406
|
+
- `SelectButtons` is now keyboard/screenreader accessible.
|
|
407
|
+
- Typescript
|
|
408
|
+
- **BREAKING** The SDK has been migrated from Flow to TypeScript. We no longer provide flow
|
|
409
|
+
type definitions with the release of the SDK. TypeScript definitions are provided instead.
|
|
410
|
+
|
|
411
|
+
## [0.0.34](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.33...@airtable/blocks@0.0.34) - 2019-10-04
|
|
412
|
+
|
|
413
|
+
- Fix a regression where `UI.ConfirmationDialog` would crash the block.
|
|
414
|
+
- Allow passing an array of models to `useWatchable` to watch several models at once.
|
|
415
|
+
- **BREAKING**: `fieldTypes.LOOKUP` is now `fieldTypes.MULTIPLE_LOOKUP_VALUES`. The underlying
|
|
416
|
+
string has also changed from `lookup` to `multipleLookupValues`.
|
|
417
|
+
- Fix a regression where cover images in `UI.RecordCard` would render as `[Object object]`.
|
|
418
|
+
|
|
419
|
+
## [0.0.33](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.32...@airtable/blocks@0.0.33) - 2019-09-26
|
|
420
|
+
|
|
421
|
+
- New settings button helpers: `useSettingsButton`, `settingsButton.show()` and
|
|
422
|
+
`settingsButton.hide()`.
|
|
423
|
+
- **BREAKING**: `settingsButton.isVisible` is no longer settable. Use `settingsButton.show()` and
|
|
424
|
+
`settingsButton.hide()` instead.
|
|
425
|
+
|
|
426
|
+
## [0.0.32](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.31...@airtable/blocks@0.0.32) - 2019-09-20
|
|
427
|
+
|
|
428
|
+
- **BREAKING:** Removed `localStorage` and `sessionStorage` wrappers.
|
|
429
|
+
- Fix a bug where the `value` prop wouldn't get correctly passed through to `Input`
|
|
430
|
+
|
|
431
|
+
## [0.0.31](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.30...@airtable/blocks@0.0.31) - 2019-09-18
|
|
432
|
+
|
|
433
|
+
- New record writes API! You can now create, update, and delete records directly from your block.
|
|
434
|
+
Check out the new
|
|
435
|
+
[writes guide](https://github.com/Airtable/blocks/blob/master/packages/sdk/docs/guide_writes.md)
|
|
436
|
+
for more information.
|
|
437
|
+
- **BREAKING**: several `globalConfig` APIs have changed to be consistent with the new record
|
|
438
|
+
writes & permissions APIs:
|
|
439
|
+
- `globalConfig.set()` has been removed - use the new `globalConfig.setAsync()` method
|
|
440
|
+
instead.
|
|
441
|
+
- `globalConfig.canSet()` has been renamed to `globalConfig.hasPermissionToSet()`.
|
|
442
|
+
- `globalConfig.setPaths()` has been removed - use the new `globalConfig.setPathsAsync()`
|
|
443
|
+
method instead.
|
|
444
|
+
- `globalConfig.canSetPaths()` has been renamed to `globalConfig.hasPermissionToSetPaths()`.
|
|
445
|
+
- **BREAKING:** Remove `models.generateGuid()`. Use an ID generator like
|
|
446
|
+
[`uuid`](https://www.npmjs.com/package/uuid) instead.
|
|
447
|
+
- **BREAKING:** Deprecated `UI.AutocompletePopover`.
|
|
448
|
+
- Upgrade flow to 0.106.3
|
|
449
|
+
- Fix a flow error with `react-window`.
|
|
450
|
+
- `view.selectRecords()` now colors records according to that view by default.
|
|
451
|
+
- Allow passing an array of models to `useLoadable` to load several things at once.
|
|
452
|
+
|
|
453
|
+
## [0.0.30](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.29...@airtable/blocks@0.0.30) - 2019-08-26
|
|
454
|
+
|
|
455
|
+
No changes.
|
|
456
|
+
|
|
457
|
+
## [0.0.29](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.28...@airtable/blocks@0.0.29) - 2019-08-22
|
|
458
|
+
|
|
459
|
+
No changes.
|
|
460
|
+
|
|
461
|
+
## [0.0.28](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.27...@airtable/blocks@0.0.28) - 2019-08-21
|
|
462
|
+
|
|
463
|
+
No changes.
|
|
464
|
+
|
|
465
|
+
## [0.0.27](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.26...@airtable/blocks@0.0.27) - 2019-08-21
|
|
466
|
+
|
|
467
|
+
No changes.
|
|
468
|
+
|
|
469
|
+
## [0.0.26](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.25...@airtable/blocks@0.0.26) - 2019-08-19
|
|
470
|
+
|
|
471
|
+
- UI.RecordCardList: fixed a bug where records weren't expanded by default when clicked.
|
|
472
|
+
|
|
473
|
+
## [0.0.25](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.24...@airtable/blocks@0.0.25) - 2019-08-19
|
|
474
|
+
|
|
475
|
+
- Add Print Records block docs example block
|
|
476
|
+
|
|
477
|
+
## [0.0.24](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.23...@airtable/blocks@0.0.24) - 2019-08-14
|
|
478
|
+
|
|
479
|
+
No changes.
|
|
480
|
+
|
|
481
|
+
## [0.0.23](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.22...@airtable/blocks@0.0.23) - 2019-08-09
|
|
482
|
+
|
|
483
|
+
### Fixed
|
|
484
|
+
|
|
485
|
+
- The `disabled` attribute on `<Select>` components (including model pickers and synced model
|
|
486
|
+
pickers) now correctly disables the element
|
|
487
|
+
|
|
488
|
+
## [0.0.22](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.21...@airtable/blocks@0.0.22) - 2019-07-18
|
|
489
|
+
|
|
490
|
+
No changes.
|
|
491
|
+
|
|
492
|
+
## [0.0.21](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.20...@airtable/blocks@0.0.21) - 2019-07-18
|
|
493
|
+
|
|
494
|
+
No changes.
|
|
495
|
+
|
|
496
|
+
## [0.0.20](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.19...@airtable/blocks@0.0.20) - 2019-07-15
|
|
497
|
+
|
|
498
|
+
### Fixed
|
|
499
|
+
|
|
500
|
+
- A bug with UI.Toggle that made it difficult to style
|
|
501
|
+
|
|
502
|
+
## [0.0.19](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.18...@airtable/blocks@0.0.19) - 2019-07-11
|
|
503
|
+
|
|
504
|
+
No changes.
|
|
505
|
+
|
|
506
|
+
## [0.0.18](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.17...@airtable/blocks@0.0.18) - 2019-07-10
|
|
507
|
+
|
|
508
|
+
- Update documentation links & eslint-plugin-blocks
|
|
509
|
+
|
|
510
|
+
## [0.0.17](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.16...@airtable/blocks@0.0.17) - 2019-07-09
|
|
511
|
+
|
|
512
|
+
No changes.
|
|
513
|
+
|
|
514
|
+
## [0.0.16](https://github.com/airtable/blocks/compare/@airtable/blocks@0.0.15...@airtable/blocks@0.0.16) - 2019-07-05
|
|
515
|
+
|
|
516
|
+
- **BREAKING:** Removed view.visibleFields and view.allFields - use view.selectMetadata instead
|
|
517
|
+
- Added view.selectMetadata() for querying a view's field order and list of visible fields
|
|
518
|
+
|
|
519
|
+
## [0.0.15](https://github.com/airtable/blocks/compare/v0.0.14...@airtable/blocks@0.0.15) - 2019-07-03
|
|
520
|
+
|
|
521
|
+
No changes.
|
|
522
|
+
|
|
523
|
+
## [0.0.14](https://github.com/airtable/blocks/compare/v0.0.13...v0.0.14) - 2019-07-02
|
|
524
|
+
|
|
525
|
+
- **BREAKING:** Removed `currentUser` from `Base` since it is now accessible through `Session`.
|
|
526
|
+
- **BREAKING:** Renamed QueryResult to RecordQueryResult
|
|
527
|
+
- Added base.watch('schema') to get notified when base schema changes.
|
|
528
|
+
- Added Session to expose data about the current user's session.
|
|
529
|
+
- Added globalConfig.watch('\*') to get notified of any global config key change.
|
|
530
|
+
- Added useGlobalConfig() to subscribe to global config changes from a react component.
|
|
531
|
+
|
|
532
|
+
## [0.0.13](https://github.com/airtable/blocks/releases/tag/v0.0.13) - 2019-06-21
|
|
533
|
+
|
|
534
|
+
### Removed
|
|
535
|
+
|
|
536
|
+
- **BREAKING:** Removed `createDataContainer`. Use `useWatchable` or other hooks instead.
|
|
537
|
+
- **BREAKING:** FieldIcon no longer accepts arbitrary props - only those in it's propTypes can be
|
|
538
|
+
used.
|
|
539
|
+
|
|
540
|
+
### Added
|
|
541
|
+
|
|
542
|
+
- This changelog!
|
|
543
|
+
|
|
544
|
+
### Fixed
|
|
545
|
+
|
|
546
|
+
- FieldPicker placeholder typo
|
|
547
|
+
- SVGElement flow error
|
package/dist/cjs/sdk.js
CHANGED
package/dist/cjs/types/field.js
CHANGED
|
@@ -62,4 +62,5 @@ exports.FieldType = FieldType;
|
|
|
62
62
|
FieldType["LAST_MODIFIED_BY"] = "lastModifiedBy";
|
|
63
63
|
FieldType["BUTTON"] = "button";
|
|
64
64
|
FieldType["EXTERNAL_SYNC_SOURCE"] = "externalSyncSource";
|
|
65
|
+
FieldType["AI_TEXT"] = "aiText";
|
|
65
66
|
})(FieldType || (exports.FieldType = FieldType = {}));
|
|
@@ -19,7 +19,7 @@ var _private_utils = require("../private_utils");
|
|
|
19
19
|
// In the UI kit we need more specific types to allow proper autocomplete and prop types.
|
|
20
20
|
// To achieve this we run the original `iconConfig` object from Hyperbase through an utility.
|
|
21
21
|
// You can find the utility here: https://codesandbox.io/s/winter-sound-f4p2l?fontsize=14
|
|
22
|
-
var iconNamesArray = ['android', 'apple', 'apps', 'applyRowTemplate', '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', 'overlay', 'paint', 'paragraph', 'paragraph1', 'pause', 'percent', 'personal', 'personalAuto', 'personalCloseup', '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', 'xCheckbox'];
|
|
22
|
+
var iconNamesArray = ['aiAssistant', 'android', 'apple', 'apps', 'applyRowTemplate', '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', 'overlay', 'paint', 'paragraph', 'paragraph1', 'pause', 'percent', 'personal', 'personalAuto', 'personalCloseup', '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', 'xCheckbox'];
|
|
23
23
|
exports.iconNamesArray = iconNamesArray;
|
|
24
24
|
var iconNames = (0, _private_utils.createEnum)(...iconNamesArray);
|
|
25
25
|
exports.iconNames = iconNames;
|
|
@@ -36,6 +36,7 @@ exports.iconNamePropType = iconNamePropType;
|
|
|
36
36
|
var phosphorIconConfig = {
|
|
37
37
|
AddressBook: 'M8.5 4.5C7.12522 4.5 6 5.62522 6 7C6 7.73367 6.32641 8.38947 6.83423 8.8479C6.15661 9.13725 5.55366 9.59508 5.09998 10.2C5.06057 10.2525 5.03189 10.3123 5.01559 10.3759C4.99928 10.4395 4.99567 10.5057 5.00495 10.5707C5.01424 10.6357 5.03624 10.6983 5.06969 10.7548C5.10315 10.8113 5.14741 10.8606 5.19995 10.9C5.25248 10.9394 5.31226 10.9681 5.37587 10.9844C5.43949 11.0007 5.50569 11.0043 5.5707 10.995C5.63571 10.9858 5.69825 10.9638 5.75476 10.9303C5.81126 10.8968 5.86063 10.8526 5.90002 10.8C6.51409 9.98135 7.4766 9.50003 8.5 9.5C9.5234 9.50005 10.4859 9.98136 11.1 10.8C11.1394 10.8526 11.1887 10.8968 11.2452 10.9303C11.3017 10.9638 11.3643 10.9858 11.4293 10.995C11.4943 11.0043 11.5605 11.0007 11.6241 10.9844C11.6877 10.9681 11.7475 10.9394 11.8 10.9C11.8526 10.8606 11.8968 10.8113 11.9303 10.7548C11.9638 10.6983 11.9858 10.6357 11.995 10.5707C12.0043 10.5057 12.0007 10.4395 11.9844 10.3759C11.9681 10.3123 11.9394 10.2525 11.9 10.2C11.4463 9.5951 10.8434 9.13725 10.1658 8.8479C10.6736 8.38947 11 7.73367 11 7C11 5.62522 9.87478 4.5 8.5 4.5ZM8.5 5.5C9.33434 5.5 10 6.16566 10 7C10 7.83434 9.33434 8.5 8.5 8.5C7.66566 8.5 7 7.83434 7 7C7 6.16566 7.66566 5.5 8.5 5.5Z M4 1.5C3.45364 1.5 3 1.95364 3 2.5V13.5C3 14.0464 3.45364 14.5 4 14.5H13C13.5464 14.5 14 14.0464 14 13.5V2.5C14 1.95364 13.5464 1.5 13 1.5H4ZM4 2.5H13V13.5H4V2.5Z M2 3.75C1.86739 3.75 1.74021 3.80268 1.64645 3.89645C1.55268 3.99021 1.5 4.11739 1.5 4.25C1.5 4.38261 1.55268 4.50979 1.64645 4.60355C1.74021 4.69732 1.86739 4.75 2 4.75H3.5C3.63261 4.75 3.75979 4.69732 3.85355 4.60355C3.94732 4.50979 4 4.38261 4 4.25C4 4.11739 3.94732 3.99021 3.85355 3.89645C3.75979 3.80268 3.63261 3.75 3.5 3.75H2Z M2 6.25C1.86739 6.25 1.74021 6.30268 1.64645 6.39645C1.55268 6.49021 1.5 6.61739 1.5 6.75C1.5 6.88261 1.55268 7.00979 1.64645 7.10355C1.74021 7.19732 1.86739 7.25 2 7.25H3.5C3.63261 7.25 3.75979 7.19732 3.85355 7.10355C3.94732 7.00979 4 6.88261 4 6.75C4 6.61739 3.94732 6.49021 3.85355 6.39645C3.75979 6.30268 3.63261 6.25 3.5 6.25H2Z M2 8.75C1.86739 8.75 1.74021 8.80268 1.64645 8.89645C1.55268 8.99021 1.5 9.11739 1.5 9.25C1.5 9.38261 1.55268 9.50979 1.64645 9.60355C1.74021 9.69732 1.86739 9.75 2 9.75H3.5C3.63261 9.75 3.75979 9.69732 3.85355 9.60355C3.94732 9.50979 4 9.38261 4 9.25C4 9.11739 3.94732 8.99021 3.85355 8.89645C3.75979 8.80268 3.63261 8.75 3.5 8.75H2Z M2 11.25C1.86739 11.25 1.74021 11.3027 1.64645 11.3964C1.55268 11.4902 1.5 11.6174 1.5 11.75C1.5 11.8826 1.55268 12.0098 1.64645 12.1036C1.74021 12.1973 1.86739 12.25 2 12.25H3.5C3.63261 12.25 3.75979 12.1973 3.85355 12.1036C3.94732 12.0098 4 11.8826 4 11.75C4 11.6174 3.94732 11.4902 3.85355 11.3964C3.75979 11.3027 3.63261 11.25 3.5 11.25H2Z',
|
|
38
38
|
Apple: 'M13.443 5.10467C13.3786 5.14227 11.8441 5.93585 11.8441 7.69538C11.9164 9.70202 13.7805 10.4057 13.8125 10.4057C13.7805 10.4433 13.5311 11.3644 12.7921 12.3298C12.2057 13.1615 11.5548 14 10.5664 14C9.62623 14 9.28873 13.4457 8.20391 13.4457C7.0389 13.4457 6.70926 14 5.81729 14C4.8289 14 4.12979 13.1166 3.51139 12.2927C2.70799 11.2144 2.02513 9.5223 2.00102 7.89755C1.98477 7.03659 2.16191 6.19028 2.61156 5.47142C3.24621 4.46786 4.37925 3.78661 5.61657 3.76414C6.56462 3.73435 7.40837 4.37068 7.98694 4.37068C8.54141 4.37068 9.57802 3.76414 10.7509 3.76414C11.2571 3.76463 12.6071 3.90674 13.443 5.10467Z M7.90676 3.59224C7.73801 2.806 8.20391 2.01975 8.63784 1.51821C9.1923 0.911681 10.068 0.5 10.8232 0.5C10.8714 1.28625 10.5659 2.05735 10.0198 2.61896C9.5298 3.22549 8.68605 3.6821 7.90676 3.59224Z',
|
|
39
|
+
AiAssistant: 'M6.75004 6.00002C6.75004 5.72388 6.52618 5.50002 6.25004 5.50002C5.97389 5.50002 5.75004 5.72388 5.75004 6.00002V7.00002C5.75004 7.27616 5.97389 7.50002 6.25004 7.50002C6.52618 7.50002 6.75004 7.27616 6.75004 7.00002V6.00002Z M10.25 6.00002C10.25 5.72388 10.0262 5.50002 9.75004 5.50002C9.47389 5.50002 9.25004 5.72388 9.25004 6.00002V7.00002C9.25004 7.27616 9.47389 7.50002 9.75004 7.50002C10.0262 7.50002 10.25 7.27616 10.25 7.00002V6.00002Z M5.25681 9.06325C5.49805 8.92887 5.80255 9.01549 5.93693 9.25673C6.14942 9.63819 6.45288 9.95226 6.81496 10.1695C7.17686 10.3866 7.58548 10.5 8.00013 10.5C8.41477 10.5 8.82339 10.3866 9.18529 10.1695C9.54737 9.95226 9.85083 9.63819 10.0633 9.25673C10.1977 9.01549 10.5022 8.92887 10.7434 9.06325C10.9847 9.19763 11.0713 9.50213 10.9369 9.74337C10.6411 10.2744 10.2152 10.7178 9.69979 11.027C9.18421 11.3363 8.59803 11.5 8.00013 11.5C7.40222 11.5 6.81604 11.3363 6.30047 11.027C5.78506 10.7178 5.35914 10.2744 5.06332 9.74337C4.92894 9.50213 5.01557 9.19763 5.25681 9.06325Z M12.207 3.99986L12.0691 3.86195C11.341 3.13389 10.7675 2.56042 10.2638 2.14972C9.74904 1.73 9.26514 1.44414 8.7058 1.33288C8.25501 1.24321 7.79096 1.24321 7.34017 1.33288C6.78083 1.44414 6.29693 1.73 5.78215 2.14972C5.27843 2.56041 4.70497 3.13389 3.97691 3.86195L3.839 3.99986C3.11094 4.72792 2.53747 5.30138 2.12677 5.8051C1.70705 6.31988 1.42119 6.80378 1.30993 7.36312C1.22026 7.81391 1.22026 8.27795 1.30993 8.72875C1.42119 9.28809 1.70705 9.77198 2.12677 10.2868C2.53746 10.7905 3.11093 11.3639 3.839 12.092L3.97691 12.2299C4.70497 12.958 5.27843 13.5315 5.78215 13.9421C6.29693 14.3619 6.78083 14.6477 7.34017 14.759C7.79096 14.8487 8.25501 14.8487 8.7058 14.759C9.26514 14.6477 9.74904 14.3619 10.2638 13.9421C10.7675 13.5315 11.341 12.958 12.0691 12.2299L12.207 12.092C12.935 11.3639 13.5085 10.7905 13.9192 10.2868C14.3389 9.77199 14.6248 9.28809 14.736 8.72875C14.8257 8.27795 14.8257 7.81391 14.736 7.36312C14.6248 6.80378 14.3389 6.31988 13.9192 5.8051C13.5085 5.30138 12.935 4.72792 12.207 3.99986ZM8.51071 2.31366C8.84393 2.37994 9.17872 2.55526 9.63191 2.92476C10.0916 3.29956 10.6296 3.83666 11.3817 4.58885L11.4801 4.68718C12.2323 5.43936 12.7694 5.97732 13.1442 6.43701C13.5137 6.8902 13.689 7.22499 13.7553 7.55821C13.8193 7.8802 13.8193 8.21166 13.7553 8.53366C13.689 8.86688 13.5137 9.20167 13.1442 9.65485C12.7694 10.1145 12.2323 10.6525 11.4801 11.4047L11.3817 11.503C10.6296 12.2552 10.0916 12.7923 9.6319 13.1671C9.17872 13.5366 8.84393 13.7119 8.51071 13.7782C8.18871 13.8423 7.85725 13.8423 7.53526 13.7782C7.20204 13.7119 6.86725 13.5366 6.41406 13.1671C5.95437 12.7923 5.41641 12.2552 4.66423 11.503L4.5659 11.4047C3.81371 10.6525 3.27661 10.1145 2.90181 9.65485C2.53231 9.20167 2.35699 8.86688 2.29071 8.53366C2.22666 8.21166 2.22666 7.8802 2.29071 7.55821C2.35699 7.22499 2.53231 6.8902 2.90181 6.43701C3.27661 5.97732 3.81371 5.43936 4.5659 4.68718L4.66423 4.58885C5.41642 3.83666 5.95437 3.29956 6.41406 2.92476C6.86725 2.55526 7.20204 2.37994 7.53526 2.31366C7.85725 2.24961 8.18871 2.24961 8.51071 2.31366Z',
|
|
39
40
|
ArrowArcLeft: 'M8.1427 4.99976C6.40211 4.96221 4.68 5.62488 3.40259 6.90283L1.40271 8.90271C1.35627 8.94914 1.31944 9.00426 1.29431 9.06493C1.26918 9.1256 1.25624 9.19062 1.25624 9.25629C1.25624 9.32195 1.26918 9.38698 1.29431 9.44764C1.31944 9.50831 1.35627 9.56343 1.40271 9.60986C1.44914 9.6563 1.50426 9.69314 1.56493 9.71827C1.6256 9.7434 1.69062 9.75633 1.75629 9.75633C1.82195 9.75633 1.88698 9.7434 1.94764 9.71827C2.00831 9.69314 2.06343 9.6563 2.10986 9.60986L4.10986 7.60986C4.10986 7.6099 4.10986 7.60982 4.10986 7.60986C5.68395 6.03511 8.04795 5.56457 10.105 6.41675C12.162 7.26893 13.5007 9.27332 13.5 11.4999C13.5 11.5655 13.5129 11.6306 13.538 11.6912C13.5631 11.7519 13.5999 11.807 13.6464 11.8535C13.6928 11.8999 13.7479 11.9368 13.8085 11.9619C13.8692 11.987 13.9342 12 13.9999 12C14.0655 12 14.1306 11.9871 14.1912 11.962C14.2519 11.9369 14.307 11.9001 14.3535 11.8536C14.3999 11.8072 14.4368 11.7521 14.4619 11.6915C14.487 11.6308 14.5 11.5658 14.5 11.5001C14.5008 8.87188 12.9158 6.49884 10.4877 5.49292C9.72888 5.17857 8.93388 5.01682 8.1427 4.99976Z M1.75623 4.75623C1.62362 4.75623 1.49644 4.8089 1.40267 4.90267C1.3089 4.99644 1.25623 5.12362 1.25623 5.25623L1.25624 9.25629C1.25625 9.38889 1.30894 9.5161 1.40271 9.60986C1.49647 9.70363 1.62368 9.75631 1.75629 9.75633L5.75623 9.75623C5.82189 9.75623 5.8869 9.74329 5.94757 9.71817C6.00823 9.69304 6.06335 9.65621 6.10978 9.60978C6.15621 9.56335 6.19304 9.50823 6.21817 9.44757C6.24329 9.3869 6.25623 9.32189 6.25623 9.25623C6.25623 9.19056 6.24329 9.12555 6.21817 9.06488C6.19304 9.00422 6.15621 8.9491 6.10978 8.90267C6.06335 8.85624 6.00823 8.81941 5.94757 8.79429C5.8869 8.76916 5.82189 8.75623 5.75623 8.75623H2.25623V5.25623C2.25623 5.12362 2.20355 4.99644 2.10978 4.90267C2.01601 4.8089 1.88883 4.75623 1.75623 4.75623Z',
|
|
40
41
|
ArrowArcRight: 'M7.8573 4.99951C7.06611 5.01656 6.27102 5.17832 5.51221 5.49268C3.08402 6.49862 1.49903 8.87193 1.5 11.5002C1.50007 11.6329 1.55281 11.76 1.64662 11.8537C1.74043 11.9474 1.86764 12.0001 2.00024 12C2.06591 12 2.13092 11.987 2.19157 11.9618C2.25222 11.9367 2.30732 11.8998 2.35373 11.8534C2.40013 11.8069 2.43694 11.7518 2.46203 11.6911C2.48713 11.6304 2.50003 11.5654 2.5 11.4998C2.49918 9.27315 3.83795 7.2687 5.89502 6.4165C7.95209 5.56431 10.3161 6.03488 11.8901 7.60974C11.8901 7.60969 11.8901 7.60978 11.8901 7.60974L13.8901 9.60987C13.9366 9.6563 13.9917 9.69314 14.0524 9.71827C14.113 9.7434 14.178 9.75634 14.2437 9.75634C14.3094 9.75634 14.3744 9.7434 14.4351 9.71827C14.4957 9.69314 14.5509 9.6563 14.5973 9.60987C14.6437 9.56344 14.6806 9.50831 14.7057 9.44765C14.7308 9.38698 14.7438 9.32196 14.7438 9.25629C14.7438 9.19062 14.7308 9.1256 14.7057 9.06493C14.6806 9.00427 14.6437 8.94914 14.5973 8.90271L12.5974 6.90283C11.32 5.62486 9.59787 4.962 7.8573 4.99951Z M14.2438 4.75623C14.1112 4.75623 13.984 4.8089 13.8902 4.90267C13.7965 4.99644 13.7438 5.12362 13.7438 5.25623V8.75623H10.2438C10.1112 8.75623 9.98399 8.8089 9.89022 8.90267C9.79645 8.99644 9.74377 9.12362 9.74377 9.25623C9.74377 9.38883 9.79645 9.51601 9.89022 9.60978C9.98399 9.70355 10.1112 9.75623 10.2438 9.75623L14.2437 9.75634C14.3763 9.75632 14.5035 9.70364 14.5973 9.60987C14.6911 9.51611 14.7438 9.38889 14.7438 9.25629V5.25623C14.7438 5.12362 14.6911 4.99644 14.5973 4.90267C14.5036 4.8089 14.3764 4.75623 14.2438 4.75623Z',
|
|
41
42
|
ArrowCircleDown: 'M8 5C7.86739 5 7.74021 5.05268 7.64645 5.14645C7.55268 5.24021 7.5 5.36739 7.5 5.5V9.29297L6.23486 8.02771C6.18843 7.98127 6.13331 7.94444 6.07264 7.91931C6.01198 7.89418 5.94695 7.88124 5.88129 7.88124C5.81562 7.88124 5.7506 7.89418 5.68993 7.91931C5.62926 7.94444 5.57414 7.98127 5.52771 8.02771C5.48127 8.07414 5.44444 8.12926 5.41931 8.18993C5.39418 8.2506 5.38124 8.31562 5.38124 8.38129C5.38124 8.44695 5.39418 8.51198 5.41931 8.57264C5.44444 8.63331 5.48127 8.68843 5.52771 8.73486L7.64648 10.8535C7.74026 10.9472 7.86741 10.9999 8 10.9999C8.13259 10.9999 8.25974 10.9472 8.35352 10.8535L10.4723 8.73486C10.5187 8.68843 10.5556 8.63331 10.5807 8.57264C10.6058 8.51198 10.6188 8.44695 10.6188 8.38129C10.6188 8.31562 10.6058 8.2506 10.5807 8.18993C10.5556 8.12926 10.5187 8.07414 10.4723 8.02771C10.4259 7.98127 10.3707 7.94444 10.3101 7.91931C10.2494 7.89418 10.1844 7.88124 10.1187 7.88124C10.053 7.88124 9.98802 7.89418 9.92736 7.91931C9.86669 7.94444 9.81157 7.98127 9.76514 8.02771L8.5 9.29297V5.5C8.5 5.36739 8.44732 5.24021 8.35355 5.14645C8.25979 5.05268 8.13261 5 8 5Z M8 1.5C4.41604 1.5 1.5 4.41604 1.5 8C1.5 11.5839 4.41603 14.5 8 14.5C11.5839 14.5 14.5 11.5839 14.5 8C14.5 4.41603 11.5839 1.5 8 1.5ZM8 2.5C11.0435 2.5 13.5 4.95647 13.5 8C13.5 11.0435 11.0435 13.5 8 13.5C4.95647 13.5 2.5 11.0435 2.5 8C2.5 4.95647 4.95647 2.5 8 2.5Z',
|
|
@@ -272,6 +273,7 @@ var phosphorIconConfig = {
|
|
|
272
273
|
|
|
273
274
|
exports.phosphorIconConfig = phosphorIconConfig;
|
|
274
275
|
var legacyIconNameToPhosphorIconName = {
|
|
276
|
+
aiAssistant: 'AiAssistant',
|
|
275
277
|
apple: 'Apple',
|
|
276
278
|
apps: 'ExtensionsFeature',
|
|
277
279
|
applyRowTemplate: 'PaintBucket',
|
|
@@ -1143,7 +1143,42 @@ export declare enum FieldType {
|
|
|
1143
1143
|
* Creating or updating `EXTERNAL_SYNC_SOURCE` fields is not supported.
|
|
1144
1144
|
*
|
|
1145
1145
|
*/
|
|
1146
|
-
EXTERNAL_SYNC_SOURCE = "externalSyncSource"
|
|
1146
|
+
EXTERNAL_SYNC_SOURCE = "externalSyncSource",
|
|
1147
|
+
/**
|
|
1148
|
+
*
|
|
1149
|
+
* Field that contains text generated by AI.
|
|
1150
|
+
*
|
|
1151
|
+
* **Cell read format**
|
|
1152
|
+
*
|
|
1153
|
+
* ```js
|
|
1154
|
+
* {
|
|
1155
|
+
* state: 'empty' | 'loading' | 'generated' | 'error',
|
|
1156
|
+
* value: string,
|
|
1157
|
+
* isStale: boolean,
|
|
1158
|
+
* // Only populated if state is 'error'
|
|
1159
|
+
* errorType?: string,
|
|
1160
|
+
* }
|
|
1161
|
+
* ```
|
|
1162
|
+
*
|
|
1163
|
+
* **Cell write format**
|
|
1164
|
+
*
|
|
1165
|
+
* n/a
|
|
1166
|
+
*
|
|
1167
|
+
* **Field options read format**
|
|
1168
|
+
* ```js
|
|
1169
|
+
* {
|
|
1170
|
+
* prompt?: Array<string | {field: {fieldId: string}}>,
|
|
1171
|
+
* referencedFieldIds?: Array<string>,
|
|
1172
|
+
* }
|
|
1173
|
+
* ```
|
|
1174
|
+
* Prompt is an array of strings and field references. All referenced field ids
|
|
1175
|
+
*
|
|
1176
|
+
* **Field options write format**
|
|
1177
|
+
*
|
|
1178
|
+
* Creating or updating `AI_TEXT` fields is not supported.
|
|
1179
|
+
*
|
|
1180
|
+
*/
|
|
1181
|
+
AI_TEXT = "aiText"
|
|
1147
1182
|
}
|
|
1148
1183
|
/** @hidden */
|
|
1149
1184
|
export declare type FieldLock = unknown;
|
|
@@ -1301,6 +1336,15 @@ interface LastModifiedByFieldOptions extends CreatedByFieldOptions {
|
|
|
1301
1336
|
interface ExternalSyncSourceFieldOptions extends SelectFieldOptions {
|
|
1302
1337
|
}
|
|
1303
1338
|
/** @hidden */
|
|
1339
|
+
interface AiTextFieldOptions {
|
|
1340
|
+
prompt?: Array<string | {
|
|
1341
|
+
field: {
|
|
1342
|
+
fieldId: string;
|
|
1343
|
+
};
|
|
1344
|
+
}>;
|
|
1345
|
+
referencedFieldIds?: Array<string>;
|
|
1346
|
+
}
|
|
1347
|
+
/** @hidden */
|
|
1304
1348
|
interface OptionlessFieldConfig {
|
|
1305
1349
|
type: FieldType.SINGLE_LINE_TEXT | FieldType.EMAIL | FieldType.URL | FieldType.MULTILINE_TEXT | FieldType.PHONE_NUMBER | FieldType.AUTO_NUMBER | FieldType.BARCODE | FieldType.RICH_TEXT | FieldType.BUTTON;
|
|
1306
1350
|
options: null;
|
|
@@ -1405,6 +1449,11 @@ interface ExternalSyncSourceFieldConfig {
|
|
|
1405
1449
|
type: FieldType.EXTERNAL_SYNC_SOURCE;
|
|
1406
1450
|
options: ExternalSyncSourceFieldOptions;
|
|
1407
1451
|
}
|
|
1452
|
+
/** @hidden */
|
|
1453
|
+
interface AiTextFieldConfig {
|
|
1454
|
+
type: FieldType.AI_TEXT;
|
|
1455
|
+
options: AiTextFieldOptions;
|
|
1456
|
+
}
|
|
1408
1457
|
/**
|
|
1409
1458
|
* A type for use with Field objects to make type narrowing FieldOptions easier.
|
|
1410
1459
|
*
|
|
@@ -1419,6 +1468,6 @@ interface ExternalSyncSourceFieldConfig {
|
|
|
1419
1468
|
* }
|
|
1420
1469
|
* return DEFAULT_CHOICES;
|
|
1421
1470
|
*/
|
|
1422
|
-
export declare type FieldConfig = OptionlessFieldConfig | NumericFieldConfig | CurrencyFieldConfig | SelectFieldConfig | CollaboratorFieldConfig | LinkedRecordFieldConfig | DateFieldConfig | DateTimeFieldConfig | AttachmentsFieldConfig | CheckboxFieldConfig | FormulaFieldConfig | CreatedTimeFieldConfig | RollupFieldConfig | CountFieldConfig | LookupFieldConfig | RatingFieldConfig | DurationFieldConfig | LastModifiedTimeFieldConfig | CreatedByFieldConfig | LastModifiedByFieldConfig | ExternalSyncSourceFieldConfig;
|
|
1471
|
+
export declare type FieldConfig = OptionlessFieldConfig | NumericFieldConfig | CurrencyFieldConfig | SelectFieldConfig | CollaboratorFieldConfig | LinkedRecordFieldConfig | DateFieldConfig | DateTimeFieldConfig | AttachmentsFieldConfig | CheckboxFieldConfig | FormulaFieldConfig | CreatedTimeFieldConfig | RollupFieldConfig | CountFieldConfig | LookupFieldConfig | RatingFieldConfig | DurationFieldConfig | LastModifiedTimeFieldConfig | CreatedByFieldConfig | LastModifiedByFieldConfig | ExternalSyncSourceFieldConfig | AiTextFieldConfig;
|
|
1423
1472
|
export {};
|
|
1424
1473
|
//# sourceMappingURL=field.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field.d.ts","sourceRoot":"","sources":["../../../../src/types/field.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"field.d.ts","sourceRoot":"","sources":["../../../../src/types/field.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumType } from '../private_utils';
|
|
2
|
-
export declare const iconNamesArray: readonly ["android", "apple", "apps", "applyRowTemplate", "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", "overlay", "paint", "paragraph", "paragraph1", "pause", "percent", "personal", "personalAuto", "personalCloseup", "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", "xCheckbox"];
|
|
2
|
+
export declare const iconNamesArray: readonly ["aiAssistant", "android", "apple", "apps", "applyRowTemplate", "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", "overlay", "paint", "paragraph", "paragraph1", "pause", "percent", "personal", "personalAuto", "personalCloseup", "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", "xCheckbox"];
|
|
3
3
|
export declare const iconNames: {
|
|
4
4
|
number: "number";
|
|
5
5
|
search: "search";
|
|
@@ -53,6 +53,7 @@ export declare const iconNames: {
|
|
|
53
53
|
flag: "flag";
|
|
54
54
|
lock: "lock";
|
|
55
55
|
download: "download";
|
|
56
|
+
aiAssistant: "aiAssistant";
|
|
56
57
|
android: "android";
|
|
57
58
|
apple: "apple";
|
|
58
59
|
apps: "apps";
|
|
@@ -178,10 +179,11 @@ export declare const deprecatedIconNameToReplacementName: Map<string, string>;
|
|
|
178
179
|
* [[ Story id="icon--example" title="Icon example" height="576px"]]
|
|
179
180
|
*/
|
|
180
181
|
export declare type IconName = EnumType<typeof iconNames>;
|
|
181
|
-
export declare const iconNamePropType: import("prop-types").Requireable<"number" | "search" | "bold" | "link" | "left" | "right" | "clipboard" | "show" | "hide" | "public" | "code" | "form" | "menu" | "ol" | "select" | "time" | "ul" | "video" | "filter" | "text" | "view" | "pause" | "play" | "toggle" | "up" | "down" | "day" | "lookup" | "group" | "checkbox" | "radio" | "overlay" | "collapse" | "paint" | "help" | "grid" | "italic" | "x" | "underline" | "caret" | "cursor" | "overflow" | "ascending" | "descending" | "edit" | "check" | "star" | "heart" | "thumbsUp" | "flag" | "lock" | "download" | "android" | "apple" | "apps" | "applyRowTemplate" | "attachment" | "automations" | "autonumber" | "barcode" | "bell" | "blocks" | "bolt" | "boltList" | "book" | "calendar" | "calendarDay" | "chart" | "chat" | "checkboxChecked" | "checkboxUnchecked" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "cog" | "collapseSidebar" | "contacts" | "count" | "count1" | "cube" | "dayAuto" | "dedent" | "dollar" | "dragHandle" | "drive" | "duplicate" | "envelope" | "envelope1" | "expand" | "expand1" | "expandSidebar" | "feed" | "file" | "formula" | "fullscreen" | "gallery" | "gantt" | "gift" | "grid1" | "hide1" | "history" | "home" | "hyperlink" | "hyperlinkCancel" | "indent" | "info" | "kanban" | "laptop" | "lightbulb" | "link1" | "logout" | "mapPin" | "markdown" | "megaphone" | "minus" | "mobile" | "multicollaborator" | "multiselect" | "paragraph" | "paragraph1" | "percent" | "personal" | "personalAuto" | "personalCloseup" | "phone" | "pivot" | "plus" | "plusFilled" | "premium" | "print" | "publish" | "quote" | "quote1" | "radioSelected" | "redo" | "redo1" | "richText" | "rollup" | "rollup1" | "rowHeightSmall" | "rowHeightMedium" | "rowHeightLarge" | "rowHeightExtraLarge" | "selectCaret" | "settings" | "shapes" | "share" | "share1" | "shareWithBolt" | "show1" | "slack" | "smiley" | "sort" | "stack" | "strikethrough" | "switcher" | "tabs" | "team" | "teamLocked" | "timeline" | "trash" | "twitter" | "undo" | "upload" | "warning" | "windows" | "xCheckbox">;
|
|
182
|
+
export declare const iconNamePropType: import("prop-types").Requireable<"number" | "search" | "bold" | "link" | "left" | "right" | "clipboard" | "show" | "hide" | "public" | "code" | "form" | "menu" | "ol" | "select" | "time" | "ul" | "video" | "filter" | "text" | "view" | "pause" | "play" | "toggle" | "up" | "down" | "day" | "lookup" | "group" | "checkbox" | "radio" | "overlay" | "collapse" | "paint" | "help" | "grid" | "italic" | "x" | "underline" | "caret" | "cursor" | "overflow" | "ascending" | "descending" | "edit" | "check" | "star" | "heart" | "thumbsUp" | "flag" | "lock" | "download" | "aiAssistant" | "android" | "apple" | "apps" | "applyRowTemplate" | "attachment" | "automations" | "autonumber" | "barcode" | "bell" | "blocks" | "bolt" | "boltList" | "book" | "calendar" | "calendarDay" | "chart" | "chat" | "checkboxChecked" | "checkboxUnchecked" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "cog" | "collapseSidebar" | "contacts" | "count" | "count1" | "cube" | "dayAuto" | "dedent" | "dollar" | "dragHandle" | "drive" | "duplicate" | "envelope" | "envelope1" | "expand" | "expand1" | "expandSidebar" | "feed" | "file" | "formula" | "fullscreen" | "gallery" | "gantt" | "gift" | "grid1" | "hide1" | "history" | "home" | "hyperlink" | "hyperlinkCancel" | "indent" | "info" | "kanban" | "laptop" | "lightbulb" | "link1" | "logout" | "mapPin" | "markdown" | "megaphone" | "minus" | "mobile" | "multicollaborator" | "multiselect" | "paragraph" | "paragraph1" | "percent" | "personal" | "personalAuto" | "personalCloseup" | "phone" | "pivot" | "plus" | "plusFilled" | "premium" | "print" | "publish" | "quote" | "quote1" | "radioSelected" | "redo" | "redo1" | "richText" | "rollup" | "rollup1" | "rowHeightSmall" | "rowHeightMedium" | "rowHeightLarge" | "rowHeightExtraLarge" | "selectCaret" | "settings" | "shapes" | "share" | "share1" | "shareWithBolt" | "show1" | "slack" | "smiley" | "sort" | "stack" | "strikethrough" | "switcher" | "tabs" | "team" | "teamLocked" | "timeline" | "trash" | "twitter" | "undo" | "upload" | "warning" | "windows" | "xCheckbox">;
|
|
182
183
|
export declare const phosphorIconConfig: {
|
|
183
184
|
AddressBook: string;
|
|
184
185
|
Apple: string;
|
|
186
|
+
AiAssistant: string;
|
|
185
187
|
ArrowArcLeft: string;
|
|
186
188
|
ArrowArcRight: string;
|
|
187
189
|
ArrowCircleDown: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon_config.d.ts","sourceRoot":"","sources":["../../../../src/ui/icon_config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,QAAQ,EAAyB,MAAM,kBAAkB,CAAC;AAM9E,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"icon_config.d.ts","sourceRoot":"","sources":["../../../../src/ui/icon_config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,QAAQ,EAAyB,MAAM,kBAAkB,CAAC;AAM9E,eAAO,MAAM,cAAc,01DA2KjB,CAAC;AACX,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAC;AACvD,eAAO,MAAM,mCAAmC,qBAAgC,CAAC;AACjF;;;;GAIG;AACH,oBAAY,QAAQ,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAC;AAClD,eAAO,MAAM,gBAAgB,0hEAAoC,CAAC;AAElE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqd9B,CAAC;AAEF,cAAc;AACd,aAAK,gBAAgB,GAAG,MAAM,OAAO,kBAAkB,CAAC;AAExD,eAAO,MAAM,gCAAgC,EAAE,OAAO,CAClD;KACK,QAAQ,IAAI,QAAQ,GAAG,gBAAgB;CAC3C,CAyKJ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fake_cell_renderer.d.ts","sourceRoot":"","sources":["../../../../stories/helpers/fake_cell_renderer.tsx"],"names":[],"mappings":";AAWA,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAIhD,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EAAC,SAAS,EAAE,KAAK,EAAC,EAAE;IAAC,SAAS,EAAE,SAAS,CAAC;IAAC,KAAK,CAAC,EAAE,GAAG,CAAA;CAAC,
|
|
1
|
+
{"version":3,"file":"fake_cell_renderer.d.ts","sourceRoot":"","sources":["../../../../stories/helpers/fake_cell_renderer.tsx"],"names":[],"mappings":";AAWA,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAIhD,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EAAC,SAAS,EAAE,KAAK,EAAC,EAAE;IAAC,SAAS,EAAE,SAAS,CAAC;IAAC,KAAK,CAAC,EAAE,GAAG,CAAA;CAAC,eAsI/F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field_type.d.ts","sourceRoot":"","sources":["../../../../stories/helpers/field_type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,0BAA0B,CAAC;AAClD,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAEhD,eAAO,MAAM,kBAAkB,EAAE,SAAS,CAAC,SAAS,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"field_type.d.ts","sourceRoot":"","sources":["../../../../stories/helpers/field_type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,0BAA0B,CAAC;AAClD,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAEhD,eAAO,MAAM,kBAAkB,EAAE,SAAS,CAAC,SAAS,EAAE,MAAM,CAkC3D,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,SAAS,CAAC,SAAS,EAAE,QAAQ,CAkC/D,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@airtable/blocks",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.1",
|
|
4
4
|
"description": "Airtable Blocks SDK",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -111,12 +111,12 @@
|
|
|
111
111
|
"hoist-non-react-statics": "^3.3.1",
|
|
112
112
|
"lodash.omit": "^4.5.0",
|
|
113
113
|
"prop-types": "15.7.2",
|
|
114
|
-
"react-window": "1.8.
|
|
114
|
+
"react-window": "1.8.6",
|
|
115
115
|
"use-subscription": "^1.3.0"
|
|
116
116
|
},
|
|
117
117
|
"peerDependencies": {
|
|
118
|
-
"react": "^16.8.0",
|
|
119
|
-
"react-dom": "^16.8.0"
|
|
118
|
+
"react": "^16.8.0 || ^17.0.0",
|
|
119
|
+
"react-dom": "^16.8.0 || ^17.0.0"
|
|
120
120
|
},
|
|
121
121
|
"jest": {
|
|
122
122
|
"setupFiles": [
|