@airtable/blocks 0.0.0-experimental-d5ee5e823-20250501 → 0.0.0-experimental-15dc8a3ea-20250616

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (375) hide show
  1. package/dist/cjs/base/models/linked_records_query_result.js +2 -2
  2. package/dist/cjs/base/models/models.js +5 -5
  3. package/dist/cjs/base/models/mutations.js +86 -264
  4. package/dist/cjs/base/models/record_query_result.js +5 -5
  5. package/dist/cjs/base/models/table.js +1 -1070
  6. package/dist/cjs/base/types/field.js +1 -0
  7. package/dist/cjs/base/types/mutations.js +0 -27
  8. package/dist/cjs/base/ui/cell_renderer.js +2 -2
  9. package/dist/cjs/base/ui/field_picker.js +2 -2
  10. package/dist/cjs/base/ui/initialize_block.js +2 -0
  11. package/dist/cjs/base/ui/record_card.js +13 -13
  12. package/dist/cjs/base/ui/select_and_select_buttons_helpers.js +2 -0
  13. package/dist/cjs/base/ui/system/utils/ensure_numbers_are_within_scale.js +2 -0
  14. package/dist/cjs/base/ui/ui.js +8 -0
  15. package/dist/cjs/base/unstable_testing_utils.js +3 -2
  16. package/dist/cjs/interface/models/models.js +5 -5
  17. package/dist/cjs/interface/models/mutations.js +40 -26
  18. package/dist/cjs/interface/models/record.js +27 -2
  19. package/dist/cjs/interface/models/table.js +45 -0
  20. package/dist/cjs/interface/types/airtable_interface.js +1 -0
  21. package/dist/cjs/interface/types/field.js +1 -0
  22. package/dist/cjs/interface/ui/initialize_block.js +2 -0
  23. package/dist/cjs/interface/ui/ui.js +7 -0
  24. package/dist/cjs/shared/models/field_core.js +3 -3
  25. package/dist/cjs/shared/models/mutations_core.js +268 -0
  26. package/dist/cjs/shared/models/record_core.js +4 -4
  27. package/dist/cjs/shared/models/table_core.js +1070 -0
  28. package/dist/cjs/shared/sdk_core.js +1 -1
  29. package/dist/cjs/shared/types/mutations_core.js +28 -1
  30. package/dist/cjs/shared/ui/use_color_scheme.js +60 -0
  31. package/dist/types/src/base/models/base.d.ts +1 -1
  32. package/dist/types/src/base/models/base.d.ts.map +1 -1
  33. package/dist/types/src/base/models/field.d.ts +1 -1
  34. package/dist/types/src/base/models/field.d.ts.map +1 -1
  35. package/dist/types/src/base/models/models.d.ts +1 -1
  36. package/dist/types/src/base/models/models.d.ts.map +1 -1
  37. package/dist/types/src/base/models/mutations.d.ts.map +1 -1
  38. package/dist/types/src/base/models/record.d.ts +5 -1
  39. package/dist/types/src/base/models/record.d.ts.map +1 -1
  40. package/dist/types/src/base/models/table.d.ts +3 -836
  41. package/dist/types/src/base/models/table.d.ts.map +1 -1
  42. package/dist/types/src/base/types/airtable_interface.d.ts +1 -1
  43. package/dist/types/src/base/types/airtable_interface.d.ts.map +1 -1
  44. package/dist/types/src/base/types/base.d.ts +5 -2
  45. package/dist/types/src/base/types/base.d.ts.map +1 -1
  46. package/dist/types/src/base/types/field.d.ts +8 -0
  47. package/dist/types/src/base/types/field.d.ts.map +1 -0
  48. package/dist/types/src/base/types/mutations.d.ts +7 -90
  49. package/dist/types/src/base/types/mutations.d.ts.map +1 -1
  50. package/dist/types/src/base/types/table.d.ts +8 -2
  51. package/dist/types/src/base/types/table.d.ts.map +1 -1
  52. package/dist/types/src/base/ui/field_picker.d.ts +1 -1
  53. package/dist/types/src/base/ui/field_picker.d.ts.map +1 -1
  54. package/dist/types/src/base/ui/initialize_block.d.ts.map +1 -1
  55. package/dist/types/src/base/ui/select_and_select_buttons_helpers.d.ts.map +1 -1
  56. package/dist/types/src/base/ui/ui.d.ts +1 -0
  57. package/dist/types/src/base/ui/ui.d.ts.map +1 -1
  58. package/dist/types/src/base/unstable_testing_utils.d.ts +2 -1
  59. package/dist/types/src/base/unstable_testing_utils.d.ts.map +1 -1
  60. package/dist/types/src/interface/models/models.d.ts +1 -1
  61. package/dist/types/src/interface/models/models.d.ts.map +1 -1
  62. package/dist/types/src/interface/models/mutations.d.ts.map +1 -1
  63. package/dist/types/src/interface/models/record.d.ts +17 -0
  64. package/dist/types/src/interface/models/record.d.ts.map +1 -1
  65. package/dist/types/src/interface/models/table.d.ts +30 -0
  66. package/dist/types/src/interface/models/table.d.ts.map +1 -1
  67. package/dist/types/src/interface/types/airtable_interface.d.ts +12 -2
  68. package/dist/types/src/interface/types/airtable_interface.d.ts.map +1 -1
  69. package/dist/types/src/interface/types/base.d.ts +5 -2
  70. package/dist/types/src/interface/types/base.d.ts.map +1 -1
  71. package/dist/types/src/interface/types/field.d.ts +10 -0
  72. package/dist/types/src/interface/types/field.d.ts.map +1 -0
  73. package/dist/types/src/interface/types/mutations.d.ts +3 -0
  74. package/dist/types/src/interface/types/mutations.d.ts.map +1 -1
  75. package/dist/types/src/interface/types/table.d.ts +15 -2
  76. package/dist/types/src/interface/types/table.d.ts.map +1 -1
  77. package/dist/types/src/interface/ui/initialize_block.d.ts.map +1 -1
  78. package/dist/types/src/interface/ui/ui.d.ts +1 -0
  79. package/dist/types/src/interface/ui/ui.d.ts.map +1 -1
  80. package/dist/types/src/sdk_mode.d.ts +8 -2
  81. package/dist/types/src/sdk_mode.d.ts.map +1 -1
  82. package/dist/types/src/shared/models/field_core.d.ts +2 -2
  83. package/dist/types/src/shared/models/field_core.d.ts.map +1 -1
  84. package/dist/types/src/shared/models/mutations_core.d.ts.map +1 -1
  85. package/dist/types/src/shared/models/table_core.d.ts +835 -2
  86. package/dist/types/src/shared/models/table_core.d.ts.map +1 -1
  87. package/dist/types/src/shared/types/airtable_interface_core.d.ts +9 -9
  88. package/dist/types/src/shared/types/airtable_interface_core.d.ts.map +1 -1
  89. package/dist/types/src/shared/types/base_core.d.ts +3 -3
  90. package/dist/types/src/shared/types/base_core.d.ts.map +1 -1
  91. package/dist/types/src/shared/types/{field.d.ts → field_core.d.ts} +3 -3
  92. package/dist/types/src/shared/types/field_core.d.ts.map +1 -0
  93. package/dist/types/src/shared/types/mutations_core.d.ts +90 -2
  94. package/dist/types/src/shared/types/mutations_core.d.ts.map +1 -1
  95. package/dist/types/src/shared/types/table_core.d.ts +3 -8
  96. package/dist/types/src/shared/types/table_core.d.ts.map +1 -1
  97. package/dist/types/src/shared/ui/use_color_scheme.d.ts +28 -0
  98. package/dist/types/src/shared/ui/use_color_scheme.d.ts.map +1 -0
  99. package/dist/types/src/testing/abstract_mock_airtable_interface.d.ts +1 -1
  100. package/dist/types/src/testing/abstract_mock_airtable_interface.d.ts.map +1 -1
  101. package/package.json +2 -16
  102. package/dist/types/src/shared/types/field.d.ts.map +0 -1
  103. package/dist/types/stories/all_controls.stories.d.ts +0 -10
  104. package/dist/types/stories/all_controls.stories.d.ts.map +0 -1
  105. package/dist/types/stories/box/appearance.stories.d.ts +0 -21
  106. package/dist/types/stories/box/appearance.stories.d.ts.map +0 -1
  107. package/dist/types/stories/box/box.stories.d.ts +0 -45
  108. package/dist/types/stories/box/box.stories.d.ts.map +0 -1
  109. package/dist/types/stories/box/dimensions.stories.d.ts +0 -24
  110. package/dist/types/stories/box/dimensions.stories.d.ts.map +0 -1
  111. package/dist/types/stories/box/flex_container.stories.d.ts +0 -24
  112. package/dist/types/stories/box/flex_container.stories.d.ts.map +0 -1
  113. package/dist/types/stories/box/flex_item.stories.d.ts +0 -25
  114. package/dist/types/stories/box/flex_item.stories.d.ts.map +0 -1
  115. package/dist/types/stories/box/position.stories.d.ts +0 -25
  116. package/dist/types/stories/box/position.stories.d.ts.map +0 -1
  117. package/dist/types/stories/box/spacing.stories.d.ts +0 -39
  118. package/dist/types/stories/box/spacing.stories.d.ts.map +0 -1
  119. package/dist/types/stories/box/typography.stories.d.ts +0 -33
  120. package/dist/types/stories/box/typography.stories.d.ts.map +0 -1
  121. package/dist/types/stories/button.stories.d.ts +0 -48
  122. package/dist/types/stories/button.stories.d.ts.map +0 -1
  123. package/dist/types/stories/cell_renderer.stories.d.ts +0 -11
  124. package/dist/types/stories/cell_renderer.stories.d.ts.map +0 -1
  125. package/dist/types/stories/choice_token.stories.d.ts +0 -24
  126. package/dist/types/stories/choice_token.stories.d.ts.map +0 -1
  127. package/dist/types/stories/collaborator_token.stories.d.ts +0 -29
  128. package/dist/types/stories/collaborator_token.stories.d.ts.map +0 -1
  129. package/dist/types/stories/color_palette.stories.d.ts +0 -12
  130. package/dist/types/stories/color_palette.stories.d.ts.map +0 -1
  131. package/dist/types/stories/confirmation_dialog.stories.d.ts +0 -10
  132. package/dist/types/stories/confirmation_dialog.stories.d.ts.map +0 -1
  133. package/dist/types/stories/dialog.stories.d.ts +0 -10
  134. package/dist/types/stories/dialog.stories.d.ts.map +0 -1
  135. package/dist/types/stories/field_icon.stories.d.ts +0 -10
  136. package/dist/types/stories/field_icon.stories.d.ts.map +0 -1
  137. package/dist/types/stories/field_picker.stories.d.ts +0 -12
  138. package/dist/types/stories/field_picker.stories.d.ts.map +0 -1
  139. package/dist/types/stories/form_field.stories.d.ts +0 -33
  140. package/dist/types/stories/form_field.stories.d.ts.map +0 -1
  141. package/dist/types/stories/heading.size.stories.d.ts +0 -19
  142. package/dist/types/stories/heading.size.stories.d.ts.map +0 -1
  143. package/dist/types/stories/heading.stories.d.ts +0 -33
  144. package/dist/types/stories/heading.stories.d.ts.map +0 -1
  145. package/dist/types/stories/helpers/attachments.d.ts +0 -4
  146. package/dist/types/stories/helpers/attachments.d.ts.map +0 -1
  147. package/dist/types/stories/helpers/categorize_style_props.d.ts +0 -14
  148. package/dist/types/stories/helpers/categorize_style_props.d.ts.map +0 -1
  149. package/dist/types/stories/helpers/choice_options.d.ts +0 -7
  150. package/dist/types/stories/helpers/choice_options.d.ts.map +0 -1
  151. package/dist/types/stories/helpers/code_block.d.ts +0 -5
  152. package/dist/types/stories/helpers/code_block.d.ts.map +0 -1
  153. package/dist/types/stories/helpers/code_utils.d.ts +0 -32
  154. package/dist/types/stories/helpers/code_utils.d.ts.map +0 -1
  155. package/dist/types/stories/helpers/collaborator_options.d.ts +0 -7
  156. package/dist/types/stories/helpers/collaborator_options.d.ts.map +0 -1
  157. package/dist/types/stories/helpers/example.d.ts +0 -39
  158. package/dist/types/stories/helpers/example.d.ts.map +0 -1
  159. package/dist/types/stories/helpers/example_code_panel.d.ts +0 -10
  160. package/dist/types/stories/helpers/example_code_panel.d.ts.map +0 -1
  161. package/dist/types/stories/helpers/fake_cell_renderer.d.ts +0 -7
  162. package/dist/types/stories/helpers/fake_cell_renderer.d.ts.map +0 -1
  163. package/dist/types/stories/helpers/fake_foreign_record.d.ts +0 -5
  164. package/dist/types/stories/helpers/fake_foreign_record.d.ts.map +0 -1
  165. package/dist/types/stories/helpers/fake_record_card.d.ts +0 -13
  166. package/dist/types/stories/helpers/fake_record_card.d.ts.map +0 -1
  167. package/dist/types/stories/helpers/field_type.d.ts +0 -6
  168. package/dist/types/stories/helpers/field_type.d.ts.map +0 -1
  169. package/dist/types/stories/helpers/raf_throttle.d.ts +0 -5
  170. package/dist/types/stories/helpers/raf_throttle.d.ts.map +0 -1
  171. package/dist/types/stories/helpers/style_prop_list.d.ts +0 -9
  172. package/dist/types/stories/helpers/style_prop_list.d.ts.map +0 -1
  173. package/dist/types/stories/helpers/sync_source_options.d.ts +0 -7
  174. package/dist/types/stories/helpers/sync_source_options.d.ts.map +0 -1
  175. package/dist/types/stories/helpers/use_resizable_panel.d.ts +0 -27
  176. package/dist/types/stories/helpers/use_resizable_panel.d.ts.map +0 -1
  177. package/dist/types/stories/icon.stories.d.ts +0 -18
  178. package/dist/types/stories/icon.stories.d.ts.map +0 -1
  179. package/dist/types/stories/icon_example.d.ts +0 -3
  180. package/dist/types/stories/icon_example.d.ts.map +0 -1
  181. package/dist/types/stories/input.stories.d.ts +0 -27
  182. package/dist/types/stories/input.stories.d.ts.map +0 -1
  183. package/dist/types/stories/label.stories.d.ts +0 -36
  184. package/dist/types/stories/label.stories.d.ts.map +0 -1
  185. package/dist/types/stories/link.stories.d.ts +0 -45
  186. package/dist/types/stories/link.stories.d.ts.map +0 -1
  187. package/dist/types/stories/loader.stories.d.ts +0 -21
  188. package/dist/types/stories/loader.stories.d.ts.map +0 -1
  189. package/dist/types/stories/progress_bar.stories.d.ts +0 -27
  190. package/dist/types/stories/progress_bar.stories.d.ts.map +0 -1
  191. package/dist/types/stories/record_card.stories.d.ts +0 -9
  192. package/dist/types/stories/record_card.stories.d.ts.map +0 -1
  193. package/dist/types/stories/record_card_list.stories.d.ts +0 -9
  194. package/dist/types/stories/record_card_list.stories.d.ts.map +0 -1
  195. package/dist/types/stories/select.stories.d.ts +0 -30
  196. package/dist/types/stories/select.stories.d.ts.map +0 -1
  197. package/dist/types/stories/select_buttons.stories.d.ts +0 -30
  198. package/dist/types/stories/select_buttons.stories.d.ts.map +0 -1
  199. package/dist/types/stories/switch.stories.d.ts +0 -48
  200. package/dist/types/stories/switch.stories.d.ts.map +0 -1
  201. package/dist/types/stories/table_picker.stories.d.ts +0 -12
  202. package/dist/types/stories/table_picker.stories.d.ts.map +0 -1
  203. package/dist/types/stories/text.size.stories.d.ts +0 -16
  204. package/dist/types/stories/text.size.stories.d.ts.map +0 -1
  205. package/dist/types/stories/text.stories.d.ts +0 -36
  206. package/dist/types/stories/text.stories.d.ts.map +0 -1
  207. package/dist/types/stories/text_button.stories.d.ts +0 -45
  208. package/dist/types/stories/text_button.stories.d.ts.map +0 -1
  209. package/dist/types/stories/tooltip.stories.d.ts +0 -10
  210. package/dist/types/stories/tooltip.stories.d.ts.map +0 -1
  211. package/dist/types/stories/view_picker.stories.d.ts +0 -12
  212. package/dist/types/stories/view_picker.stories.d.ts.map +0 -1
  213. package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts +0 -122
  214. package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts.map +0 -1
  215. package/dist/types/test/airtable_interface_mocks/linked_records.d.ts +0 -4
  216. package/dist/types/test/airtable_interface_mocks/linked_records.d.ts.map +0 -1
  217. package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts +0 -60
  218. package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts.map +0 -1
  219. package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts +0 -4
  220. package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts.map +0 -1
  221. package/dist/types/test/error_utils.test.d.ts +0 -2
  222. package/dist/types/test/error_utils.test.d.ts.map +0 -1
  223. package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts +0 -2
  224. package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts.map +0 -1
  225. package/dist/types/test/index.test.d.ts +0 -2
  226. package/dist/types/test/index.test.d.ts.map +0 -1
  227. package/dist/types/test/models/base.test.d.ts +0 -2
  228. package/dist/types/test/models/base.test.d.ts.map +0 -1
  229. package/dist/types/test/models/cursor.test.d.ts +0 -2
  230. package/dist/types/test/models/cursor.test.d.ts.map +0 -1
  231. package/dist/types/test/models/field.test.d.ts +0 -2
  232. package/dist/types/test/models/field.test.d.ts.map +0 -1
  233. package/dist/types/test/models/linked_records_query_result.test.d.ts +0 -2
  234. package/dist/types/test/models/linked_records_query_result.test.d.ts.map +0 -1
  235. package/dist/types/test/models/mutations.test.d.ts +0 -2
  236. package/dist/types/test/models/mutations.test.d.ts.map +0 -1
  237. package/dist/types/test/models/object_pool.test.d.ts +0 -2
  238. package/dist/types/test/models/object_pool.test.d.ts.map +0 -1
  239. package/dist/types/test/models/record.test.d.ts +0 -2
  240. package/dist/types/test/models/record.test.d.ts.map +0 -1
  241. package/dist/types/test/models/session.test.d.ts +0 -2
  242. package/dist/types/test/models/session.test.d.ts.map +0 -1
  243. package/dist/types/test/models/table.test.d.ts +0 -2
  244. package/dist/types/test/models/table.test.d.ts.map +0 -1
  245. package/dist/types/test/models/table_mutations.test.d.ts +0 -2
  246. package/dist/types/test/models/table_mutations.test.d.ts.map +0 -1
  247. package/dist/types/test/models/table_or_view_query_result.test.d.ts +0 -2
  248. package/dist/types/test/models/table_or_view_query_result.test.d.ts.map +0 -1
  249. package/dist/types/test/models/view.test.d.ts +0 -2
  250. package/dist/types/test/models/view.test.d.ts.map +0 -1
  251. package/dist/types/test/models/view_metadata_query_result.test.d.ts +0 -2
  252. package/dist/types/test/models/view_metadata_query_result.test.d.ts.map +0 -1
  253. package/dist/types/test/private_utils.test.d.ts +0 -2
  254. package/dist/types/test/private_utils.test.d.ts.map +0 -1
  255. package/dist/types/test/sdk.test.d.ts +0 -2
  256. package/dist/types/test/sdk.test.d.ts.map +0 -1
  257. package/dist/types/test/setup_enzyme.d.ts +0 -2
  258. package/dist/types/test/setup_enzyme.d.ts.map +0 -1
  259. package/dist/types/test/test_helpers.d.ts +0 -11
  260. package/dist/types/test/test_helpers.d.ts.map +0 -1
  261. package/dist/types/test/ui/base_provider.test.d.ts +0 -2
  262. package/dist/types/test/ui/base_provider.test.d.ts.map +0 -1
  263. package/dist/types/test/ui/block_wrapper.test.d.ts +0 -2
  264. package/dist/types/test/ui/block_wrapper.test.d.ts.map +0 -1
  265. package/dist/types/test/ui/box.test.d.ts +0 -2
  266. package/dist/types/test/ui/box.test.d.ts.map +0 -1
  267. package/dist/types/test/ui/button.test.d.ts +0 -2
  268. package/dist/types/test/ui/button.test.d.ts.map +0 -1
  269. package/dist/types/test/ui/cell_renderer.test.d.ts +0 -2
  270. package/dist/types/test/ui/cell_renderer.test.d.ts.map +0 -1
  271. package/dist/types/test/ui/choice_token.test.d.ts +0 -2
  272. package/dist/types/test/ui/choice_token.test.d.ts.map +0 -1
  273. package/dist/types/test/ui/collaborator_token.test.d.ts +0 -2
  274. package/dist/types/test/ui/collaborator_token.test.d.ts.map +0 -1
  275. package/dist/types/test/ui/color_palette.test.d.ts +0 -2
  276. package/dist/types/test/ui/color_palette.test.d.ts.map +0 -1
  277. package/dist/types/test/ui/color_palette_synced.test.d.ts +0 -2
  278. package/dist/types/test/ui/color_palette_synced.test.d.ts.map +0 -1
  279. package/dist/types/test/ui/confirmation_dialog.test.d.ts +0 -2
  280. package/dist/types/test/ui/confirmation_dialog.test.d.ts.map +0 -1
  281. package/dist/types/test/ui/dialog.test.d.ts +0 -2
  282. package/dist/types/test/ui/dialog.test.d.ts.map +0 -1
  283. package/dist/types/test/ui/expand_record.test.d.ts +0 -2
  284. package/dist/types/test/ui/expand_record.test.d.ts.map +0 -1
  285. package/dist/types/test/ui/expand_record_list.test.d.ts +0 -2
  286. package/dist/types/test/ui/expand_record_list.test.d.ts.map +0 -1
  287. package/dist/types/test/ui/expand_record_picker_async.test.d.ts +0 -2
  288. package/dist/types/test/ui/expand_record_picker_async.test.d.ts.map +0 -1
  289. package/dist/types/test/ui/field_icon.test.d.ts +0 -2
  290. package/dist/types/test/ui/field_icon.test.d.ts.map +0 -1
  291. package/dist/types/test/ui/field_picker.test.d.ts +0 -2
  292. package/dist/types/test/ui/field_picker.test.d.ts.map +0 -1
  293. package/dist/types/test/ui/field_picker_synced.test.d.ts +0 -2
  294. package/dist/types/test/ui/field_picker_synced.test.d.ts.map +0 -1
  295. package/dist/types/test/ui/form_field.test.d.ts +0 -2
  296. package/dist/types/test/ui/form_field.test.d.ts.map +0 -1
  297. package/dist/types/test/ui/global_alert.test.d.ts +0 -2
  298. package/dist/types/test/ui/global_alert.test.d.ts.map +0 -1
  299. package/dist/types/test/ui/heading.test.d.ts +0 -2
  300. package/dist/types/test/ui/heading.test.d.ts.map +0 -1
  301. package/dist/types/test/ui/icon.test.d.ts +0 -2
  302. package/dist/types/test/ui/icon.test.d.ts.map +0 -1
  303. package/dist/types/test/ui/initialize_block.test.d.ts +0 -2
  304. package/dist/types/test/ui/initialize_block.test.d.ts.map +0 -1
  305. package/dist/types/test/ui/input.test.d.ts +0 -2
  306. package/dist/types/test/ui/input.test.d.ts.map +0 -1
  307. package/dist/types/test/ui/input_synced.test.d.ts +0 -2
  308. package/dist/types/test/ui/input_synced.test.d.ts.map +0 -1
  309. package/dist/types/test/ui/label.test.d.ts +0 -2
  310. package/dist/types/test/ui/label.test.d.ts.map +0 -1
  311. package/dist/types/test/ui/link.test.d.ts +0 -2
  312. package/dist/types/test/ui/link.test.d.ts.map +0 -1
  313. package/dist/types/test/ui/loader.test.d.ts +0 -2
  314. package/dist/types/test/ui/loader.test.d.ts.map +0 -1
  315. package/dist/types/test/ui/modal.test.d.ts +0 -2
  316. package/dist/types/test/ui/modal.test.d.ts.map +0 -1
  317. package/dist/types/test/ui/popover.test.d.ts +0 -2
  318. package/dist/types/test/ui/popover.test.d.ts.map +0 -1
  319. package/dist/types/test/ui/progress_bar.test.d.ts +0 -2
  320. package/dist/types/test/ui/progress_bar.test.d.ts.map +0 -1
  321. package/dist/types/test/ui/record_card.test.d.ts +0 -2
  322. package/dist/types/test/ui/record_card.test.d.ts.map +0 -1
  323. package/dist/types/test/ui/record_card_list.test.d.ts +0 -2
  324. package/dist/types/test/ui/record_card_list.test.d.ts.map +0 -1
  325. package/dist/types/test/ui/remote_utils.test.d.ts +0 -2
  326. package/dist/types/test/ui/remote_utils.test.d.ts.map +0 -1
  327. package/dist/types/test/ui/select.test.d.ts +0 -2
  328. package/dist/types/test/ui/select.test.d.ts.map +0 -1
  329. package/dist/types/test/ui/select_buttons.test.d.ts +0 -2
  330. package/dist/types/test/ui/select_buttons.test.d.ts.map +0 -1
  331. package/dist/types/test/ui/select_buttons_synced.test.d.ts +0 -2
  332. package/dist/types/test/ui/select_buttons_synced.test.d.ts.map +0 -1
  333. package/dist/types/test/ui/select_synced.test.d.ts +0 -2
  334. package/dist/types/test/ui/select_synced.test.d.ts.map +0 -1
  335. package/dist/types/test/ui/switch.test.d.ts +0 -2
  336. package/dist/types/test/ui/switch.test.d.ts.map +0 -1
  337. package/dist/types/test/ui/switch_synced.test.d.ts +0 -2
  338. package/dist/types/test/ui/switch_synced.test.d.ts.map +0 -1
  339. package/dist/types/test/ui/synced.test.d.ts +0 -2
  340. package/dist/types/test/ui/synced.test.d.ts.map +0 -1
  341. package/dist/types/test/ui/table_picker.test.d.ts +0 -2
  342. package/dist/types/test/ui/table_picker.test.d.ts.map +0 -1
  343. package/dist/types/test/ui/table_picker_synced.test.d.ts +0 -2
  344. package/dist/types/test/ui/table_picker_synced.test.d.ts.map +0 -1
  345. package/dist/types/test/ui/text.test.d.ts +0 -2
  346. package/dist/types/test/ui/text.test.d.ts.map +0 -1
  347. package/dist/types/test/ui/text_button.test.d.ts +0 -2
  348. package/dist/types/test/ui/text_button.test.d.ts.map +0 -1
  349. package/dist/types/test/ui/tooltip.test.d.ts +0 -2
  350. package/dist/types/test/ui/tooltip.test.d.ts.map +0 -1
  351. package/dist/types/test/ui/ui.test.d.ts +0 -2
  352. package/dist/types/test/ui/ui.test.d.ts.map +0 -1
  353. package/dist/types/test/ui/unstable_standalone_ui.test.d.ts +0 -1
  354. package/dist/types/test/ui/unstable_standalone_ui.test.d.ts.map +0 -1
  355. package/dist/types/test/ui/use_array_identity.test.d.ts +0 -2
  356. package/dist/types/test/ui/use_array_identity.test.d.ts.map +0 -1
  357. package/dist/types/test/ui/use_loadable.test.d.ts +0 -2
  358. package/dist/types/test/ui/use_loadable.test.d.ts.map +0 -1
  359. package/dist/types/test/ui/use_record_action_data.test.d.ts +0 -2
  360. package/dist/types/test/ui/use_record_action_data.test.d.ts.map +0 -1
  361. package/dist/types/test/ui/use_records.test.d.ts +0 -2
  362. package/dist/types/test/ui/use_records.test.d.ts.map +0 -1
  363. package/dist/types/test/ui/use_view_metadata.test.d.ts +0 -2
  364. package/dist/types/test/ui/use_view_metadata.test.d.ts.map +0 -1
  365. package/dist/types/test/ui/use_watchable.test.d.ts +0 -2
  366. package/dist/types/test/ui/use_watchable.test.d.ts.map +0 -1
  367. package/dist/types/test/ui/view_picker.test.d.ts +0 -2
  368. package/dist/types/test/ui/view_picker.test.d.ts.map +0 -1
  369. package/dist/types/test/ui/view_picker_synced.test.d.ts +0 -2
  370. package/dist/types/test/ui/view_picker_synced.test.d.ts.map +0 -1
  371. package/dist/types/test/ui/viewport_constraint.test.d.ts +0 -2
  372. package/dist/types/test/ui/viewport_constraint.test.d.ts.map +0 -1
  373. package/dist/types/test/unstable_private_utils.test.d.ts +0 -1
  374. package/dist/types/test/unstable_private_utils.test.d.ts.map +0 -1
  375. /package/dist/cjs/shared/types/{field.js → field_core.js} +0 -0
@@ -1,12 +0,0 @@
1
- import React from 'react';
2
- declare const _default: {
3
- component: React.ForwardRefExoticComponent<import("../src/base/ui/view_picker").ViewPickerProps & React.RefAttributes<HTMLSelectElement>>;
4
- };
5
- export default _default;
6
- export declare const _ViewPickerExample: {
7
- render: () => React.JSX.Element;
8
- };
9
- export declare const _ViewPickerSyncedExample: {
10
- render: () => React.JSX.Element;
11
- };
12
- //# sourceMappingURL=view_picker.stories.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"view_picker.stories.d.ts","sourceRoot":"","sources":["../../../stories/view_picker.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;;;;AAQtC,wBAEE;AA4EF,eAAO,MAAM,kBAAkB;;CAE9B,CAAC;AAgDF,eAAO,MAAM,wBAAwB;;CAEpC,CAAC"}
@@ -1,122 +0,0 @@
1
- import { BaseId, TableId, FieldId, ViewId, RecordId } from '../../src/shared/types/hyper_ids';
2
- import { FieldType } from '../../src/shared/types/field';
3
- import { ViewType } from '../../src/base/types/view';
4
- import { CollaboratorData } from '../../src/shared/types/collaborator';
5
- import { Color } from '../../src/shared/colors';
6
- import { ObjectMap } from '../../src/shared/private_utils';
7
- import { SdkInitData } from '../../src/base/types/airtable_interface';
8
- export declare function convertFixtureDataToSdkInitData(fixtureData: FixtureData): SdkInitData;
9
- /**
10
- * A complete set of information necessary to initialize a simulated Airtable
11
- * Base in automated test environments. This is currently copied from
12
- * block-testing.
13
- * TODO(fredz): consider moving this into src/testing and exporting it as
14
- * part of unstable_testing_utils.
15
- *
16
- * Unlike SdkInitData which does not contain record data by design,
17
- * FixtureData contains it in fixtureData.base.tables[number].records,
18
- * and relies on dependent modules to simulate the hyperbase behavior of
19
- * only making those records after corresponding necessary calls to
20
- * AirtableInterface.
21
- */
22
- export interface FixtureData {
23
- /** A representation of the state of an Airtable Base */
24
- base: {
25
- id: BaseId;
26
- name: string;
27
- color?: string;
28
- tables: Array<TableFixtureData>;
29
- collaborators: Array<CollaboratorData & {
30
- isActive: boolean;
31
- }>;
32
- };
33
- }
34
- /** A representation of the state of a Table */
35
- interface TableFixtureData {
36
- /** A unique identifier for the simulated Table */
37
- id: TableId;
38
- /** The name to assign to the simulated Table */
39
- name: string;
40
- /** The description to assign to the simulated Table */
41
- description: string | null;
42
- /**
43
- * Fixture data for the simulated Fields that should be present in the
44
- * simulated Table when it is initialized.
45
- */
46
- fields: Array<FieldFixtureData>;
47
- /**
48
- * Fixture data for the simulated Views that should be present in the
49
- * simulated Table when it is initialized.
50
- */
51
- views: Array<ViewFixtureData>;
52
- /**
53
- * Fixture data for the simulated Records that should be present in the
54
- * simulated Table when it is initialized.
55
- */
56
- records: Array<RecordFixtureData>;
57
- }
58
- /** A representation of the state of a Field */
59
- interface FieldFixtureData {
60
- /** A unique identifier for the simulated Field */
61
- id: FieldId;
62
- /** The name to assign to the simulated Field */
63
- name: string;
64
- /** The description to assign to the simulated Field */
65
- description: string | null;
66
- /** The type of the simulated Field */
67
- type: FieldType;
68
- /** Options associated with the simulated Field */
69
- options: null | {
70
- [key: string]: unknown;
71
- };
72
- }
73
- /** A representation of the state of a View */
74
- interface ViewFixtureData {
75
- /** A unique identifier for the simulated View */
76
- id: ViewId;
77
- /** The name to assign to the simulated View */
78
- name: string;
79
- /** The type of the simulated view */
80
- type: ViewType;
81
- /**
82
- * A description of how simulated Fields should be sequenced within the
83
- * simulated View
84
- */
85
- fieldOrder: {
86
- fieldIds: Array<FieldId>;
87
- visibleFieldCount: number;
88
- };
89
- /**
90
- * A set of references to Records contained within the simulated view. This
91
- * is distinct from the complete fixture data for the simulated Records.
92
- */
93
- records: Array<ViewRecordFixtureData>;
94
- /**
95
- * Optional boolean denoting if the view is locked. By default tests assume
96
- * the view is unlocked if undefined.
97
- */
98
- isLockedView?: boolean;
99
- }
100
- /**
101
- * A reference to Record contained within a simulated view. This is disctinct
102
- * from the complete fixture data for the simulated Record.
103
- */
104
- interface ViewRecordFixtureData {
105
- /** A value which uniquely identifies a Record within a base. */
106
- id: RecordId;
107
- /** The color associated with a Record's membership in a View. */
108
- color: Color | null;
109
- }
110
- /** A representation of the state of a Record */
111
- interface RecordFixtureData {
112
- /** A unique identifier for the simulated Record */
113
- id: RecordId;
114
- /** The number of comments to assign to the simulated record */
115
- commentCount: number;
116
- /** The time the simulated record should appear to have been created */
117
- createdTime: string;
118
- /** A mapping of field identifiers to cell values */
119
- cellValuesByFieldId: ObjectMap<FieldId, unknown>;
120
- }
121
- export {};
122
- //# sourceMappingURL=fixture_data.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fixture_data.d.ts","sourceRoot":"","sources":["../../../../test/airtable_interface_mocks/fixture_data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAC,MAAM,kCAAkC,CAAC;AAE5F,OAAO,EAAC,SAAS,EAAY,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAW,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAC,gBAAgB,EAAC,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAC,KAAK,EAAC,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAC,SAAS,EAAe,MAAM,gCAAgC,CAAC;AACvE,OAAO,EAAsB,WAAW,EAAC,MAAM,yCAAyC,CAAC;AAYzF,wBAAgB,+BAA+B,CAAC,WAAW,EAAE,WAAW,GAAG,WAAW,CAyCrF;AAuCD;;;;;;;;;;;;GAYG;AACH,MAAM,WAAW,WAAW;IACxB,wDAAwD;IACxD,IAAI,EAAE;QACF,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;QAChC,aAAa,EAAE,KAAK,CAAC,gBAAgB,GAAG;YAAC,QAAQ,EAAE,OAAO,CAAA;SAAC,CAAC,CAAC;KAChE,CAAC;CACL;AAED,+CAA+C;AAC/C,UAAU,gBAAgB;IACtB,kDAAkD;IAClD,EAAE,EAAE,OAAO,CAAC;IACZ,gDAAgD;IAChD,IAAI,EAAE,MAAM,CAAC;IACb,uDAAuD;IACvD,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;OAGG;IACH,MAAM,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAChC;;;OAGG;IACH,KAAK,EAAE,KAAK,CAAC,eAAe,CAAC,CAAC;IAC9B;;;OAGG;IACH,OAAO,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;CACrC;AAED,+CAA+C;AAC/C,UAAU,gBAAgB;IACtB,kDAAkD;IAClD,EAAE,EAAE,OAAO,CAAC;IACZ,gDAAgD;IAChD,IAAI,EAAE,MAAM,CAAC;IACb,uDAAuD;IACvD,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,sCAAsC;IACtC,IAAI,EAAE,SAAS,CAAC;IAChB,kDAAkD;IAClD,OAAO,EAAE,IAAI,GAAG;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAC,CAAC;CAC5C;AAED,8CAA8C;AAC9C,UAAU,eAAe;IACrB,iDAAiD;IACjD,EAAE,EAAE,MAAM,CAAC;IACX,+CAA+C;IAC/C,IAAI,EAAE,MAAM,CAAC;IACb,qCAAqC;IACrC,IAAI,EAAE,QAAQ,CAAC;IACf;;;OAGG;IACH,UAAU,EAAE;QACR,QAAQ,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;QACzB,iBAAiB,EAAE,MAAM,CAAC;KAC7B,CAAC;IACF;;;OAGG;IACH,OAAO,EAAE,KAAK,CAAC,qBAAqB,CAAC,CAAC;IACtC;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED;;;GAGG;AACH,UAAU,qBAAqB;IAC3B,gEAAgE;IAChE,EAAE,EAAE,QAAQ,CAAC;IACb,iEAAiE;IACjE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CACvB;AAED,gDAAgD;AAChD,UAAU,iBAAiB;IACvB,mDAAmD;IACnD,EAAE,EAAE,QAAQ,CAAC;IACb,+DAA+D;IAC/D,YAAY,EAAE,MAAM,CAAC;IACrB,uEAAuE;IACvE,WAAW,EAAE,MAAM,CAAC;IACpB,oDAAoD;IACpD,mBAAmB,EAAE,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;CACpD"}
@@ -1,4 +0,0 @@
1
- import { FixtureData } from './fixture_data';
2
- declare const linkedRecords: FixtureData;
3
- export default linkedRecords;
4
- //# sourceMappingURL=linked_records.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"linked_records.d.ts","sourceRoot":"","sources":["../../../../test/airtable_interface_mocks/linked_records.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAE3C,QAAA,MAAM,aAAa,EAAE,WA8GpB,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -1,60 +0,0 @@
1
- import { Aggregators, FieldTypeProvider, UrlConstructor, IdGenerator, VisList, PartialViewData } from '../../src/base/types/airtable_interface';
2
- import { AbstractMockAirtableInterface } from '../../src/testing/abstract_mock_airtable_interface';
3
- import { TableId, FieldId } from '../../src/shared/types/hyper_ids';
4
- import { CursorData } from '../../src/base/types/cursor';
5
- import { RecordData } from '../../src/base/types/record';
6
- import { RecordActionData } from '../../src/base/types/record_action_data';
7
- import { RequestJson, ResponseJson } from '../../src/base/types/backend_fetch_types';
8
- import { GlobalConfigHelpers } from '../../src/shared/types/airtable_interface_core';
9
- import { FixtureData } from './fixture_data';
10
- /**
11
- * An implementation of the AbstractMockAirtableInterface designed for use in the
12
- * Blocks SDK internal automated test suite. Provides Jest spies for all
13
- * available methods (and which resets the state of those spies with every call
14
- * to `reset`).
15
- */
16
- export declare class MockAirtableInterface extends AbstractMockAirtableInterface {
17
- static projectTrackerExample(): jest.Mocked<MockAirtableInterface>;
18
- static linkedRecordsExample(): jest.Mocked<MockAirtableInterface>;
19
- static createFromFixtureData(fixtureData: FixtureData): jest.Mocked<MockAirtableInterface>;
20
- get aggregators(): jest.Mocked<Aggregators>;
21
- get fieldTypeProvider(): jest.Mocked<FieldTypeProvider>;
22
- get urlConstructor(): jest.Mocked<UrlConstructor>;
23
- get globalConfigHelpers(): jest.Mocked<GlobalConfigHelpers>;
24
- get idGenerator(): jest.Mocked<IdGenerator>;
25
- /**
26
- * Revert the mock interface to its initial state. This includes:
27
- *
28
- * - removing all event listeners
29
- * - restoring the database schema
30
- * - recreating the Jest "spies" for every instance method
31
- */
32
- reset(): void;
33
- createVisList(...args: Parameters<AbstractMockAirtableInterface['createVisList']>): jest.Mocked<VisList>;
34
- fetchAndSubscribeToCellValuesInFieldsAsync(tableId: TableId, fieldIds: Array<FieldId>): Promise<any>;
35
- fetchAndSubscribeToCursorDataAsync(): Promise<CursorData>;
36
- fetchAndSubscribeToTableDataAsync(tableId: string): Promise<{
37
- recordsById: {
38
- [recordId: string]: RecordData;
39
- };
40
- }>;
41
- fetchAndSubscribeToViewDataAsync(tableId: string, viewId: string): Promise<PartialViewData>;
42
- fetchDefaultCellValuesByFieldIdAsync(): Promise<{
43
- [key: string]: unknown;
44
- }>;
45
- expandRecord(tableId: string, recordId: string, recordIds: Array<string> | null): void;
46
- expandRecordList(): void;
47
- expandRecordPickerAsync(): Promise<string | null>;
48
- reloadFrame(): void;
49
- setSettingsButtonVisibility(): void;
50
- setUndoRedoMode(): void;
51
- setFullscreenMaxSize(): void;
52
- enterFullscreen(): void;
53
- exitFullscreen(): void;
54
- fetchAndSubscribeToPerformRecordActionAsync(): Promise<RecordActionData | null>;
55
- trackEvent(): void;
56
- trackExposure(): void;
57
- sendStat(): void;
58
- performBackendFetchAsync(requestJson: RequestJson): Promise<ResponseJson>;
59
- }
60
- //# sourceMappingURL=mock_airtable_interface.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mock_airtable_interface.d.ts","sourceRoot":"","sources":["../../../../test/airtable_interface_mocks/mock_airtable_interface.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,WAAW,EACX,iBAAiB,EACjB,cAAc,EACd,WAAW,EACX,OAAO,EACP,eAAe,EAClB,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAAC,6BAA6B,EAAC,MAAM,oDAAoD,CAAC;AACjG,OAAO,EAAC,OAAO,EAAE,OAAO,EAAC,MAAM,kCAAkC,CAAC;AAElE,OAAO,EAAC,UAAU,EAAC,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAAC,UAAU,EAAC,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAAC,gBAAgB,EAAC,MAAM,yCAAyC,CAAC;AACzE,OAAO,EAAC,WAAW,EAAE,YAAY,EAAC,MAAM,0CAA0C,CAAC;AACnF,OAAO,EAAC,mBAAmB,EAAC,MAAM,gDAAgD,CAAC;AAGnF,OAAO,EAAC,WAAW,EAAkC,MAAM,gBAAgB,CAAC;AAuB5E;;;;;GAKG;AACH,qBAAa,qBAAsB,SAAQ,6BAA6B;IACpE,MAAM,CAAC,qBAAqB;IAI5B,MAAM,CAAC,oBAAoB;IAI3B,MAAM,CAAC,qBAAqB,CAAC,WAAW,EAAE,WAAW,GAEA,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC;IAGvF,IAAI,WAAW,IACiB,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CACvD;IAED,IAAI,iBAAiB,IACiB,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,CACnE;IAED,IAAI,cAAc,IACiB,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,CAC7D;IAED,IAAI,mBAAmB,IACiB,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,CACvE;IAED,IAAI,WAAW,IACiB,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CACvD;IAED;;;;;;OAMG;IACH,KAAK;IAWL,aAAa,CACT,GAAG,IAAI,EAAE,UAAU,CAAC,6BAA6B,CAAC,eAAe,CAAC,CAAC,GACpE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;IAMvB,0CAA0C,CACtC,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,KAAK,CAAC,OAAO,CAAC,GACzB,OAAO,CAAC,GAAG,CAAC;IAGf,kCAAkC,IAAI,OAAO,CAAC,UAAU,CAAC;IAGzD,iCAAiC,CAC7B,OAAO,EAAE,MAAM,GAChB,OAAO,CAAC;QAAC,WAAW,EAAE;YAAC,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAAA;SAAC,CAAA;KAAC,CAAC;IAGrD,gCAAgC,CAClC,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,MAAM,GACf,OAAO,CAAC,eAAe,CAAC;IAG3B,oCAAoC,IAAI,OAAO,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAC,CAAC;IAGzE,YAAY,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI;IAG/E,gBAAgB;IAGhB,uBAAuB,IAAI,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAGjD,WAAW;IAGX,2BAA2B;IAG3B,eAAe;IAGf,oBAAoB;IAGpB,eAAe;IAGf,cAAc;IAGd,2CAA2C,IAAI,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC;IAG/E,UAAU;IAGV,aAAa;IAGb,QAAQ;IAGR,wBAAwB,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC;CAG5E"}
@@ -1,4 +0,0 @@
1
- import { FixtureData } from './fixture_data';
2
- declare const projectTracker: FixtureData;
3
- export default projectTracker;
4
- //# sourceMappingURL=project_tracker.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"project_tracker.d.ts","sourceRoot":"","sources":["../../../../test/airtable_interface_mocks/project_tracker.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAE3C,QAAA,MAAM,cAAc,EAAE,WA6YrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=error_utils.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"error_utils.test.d.ts","sourceRoot":"","sources":["../../../test/error_utils.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=get_style_props_for_responsive_prop.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get_style_props_for_responsive_prop.test.d.ts","sourceRoot":"","sources":["../../../test/get_style_props_for_responsive_prop.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=index.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../../test/index.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=base.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"base.test.d.ts","sourceRoot":"","sources":["../../../../test/models/base.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=cursor.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cursor.test.d.ts","sourceRoot":"","sources":["../../../../test/models/cursor.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=field.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"field.test.d.ts","sourceRoot":"","sources":["../../../../test/models/field.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=linked_records_query_result.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"linked_records_query_result.test.d.ts","sourceRoot":"","sources":["../../../../test/models/linked_records_query_result.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=mutations.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mutations.test.d.ts","sourceRoot":"","sources":["../../../../test/models/mutations.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=object_pool.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"object_pool.test.d.ts","sourceRoot":"","sources":["../../../../test/models/object_pool.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=record.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"record.test.d.ts","sourceRoot":"","sources":["../../../../test/models/record.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=session.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"session.test.d.ts","sourceRoot":"","sources":["../../../../test/models/session.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=table.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"table.test.d.ts","sourceRoot":"","sources":["../../../../test/models/table.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=table_mutations.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"table_mutations.test.d.ts","sourceRoot":"","sources":["../../../../test/models/table_mutations.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=table_or_view_query_result.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"table_or_view_query_result.test.d.ts","sourceRoot":"","sources":["../../../../test/models/table_or_view_query_result.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=view.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"view.test.d.ts","sourceRoot":"","sources":["../../../../test/models/view.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=view_metadata_query_result.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"view_metadata_query_result.test.d.ts","sourceRoot":"","sources":["../../../../test/models/view_metadata_query_result.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=private_utils.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"private_utils.test.d.ts","sourceRoot":"","sources":["../../../test/private_utils.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=sdk.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sdk.test.d.ts","sourceRoot":"","sources":["../../../test/sdk.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=setup_enzyme.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"setup_enzyme.d.ts","sourceRoot":"","sources":["../../../test/setup_enzyme.ts"],"names":[],"mappings":""}
@@ -1,11 +0,0 @@
1
- import { ReactWrapper } from 'enzyme';
2
- import Watchable from '../src/shared/watchable';
3
- /**
4
- * include a section of code that must pass flow but shouldn't actually be executed. Use it along
5
- * with '// flow-expect-error' to write tests for flow-type definitions that won't be run by jest.
6
- */
7
- export declare function flowTest(description: string, fn: () => unknown): void;
8
- export declare function getComputedStylePropValue<Props extends {}>(wrapper: ReactWrapper<Props>, styleProp: string): string;
9
- export declare function waitForWatchKeyAsync<Key extends string>(model: Watchable<Key>, key: Key): Promise<void>;
10
- export declare function simulateTimersAndClearAfterEachTest(): void;
11
- //# sourceMappingURL=test_helpers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"test_helpers.d.ts","sourceRoot":"","sources":["../../../test/test_helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,QAAQ,CAAC;AACpC,OAAO,SAAS,MAAM,yBAAyB,CAAC;AAEhD;;;GAGG;AACH,wBAAgB,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,OAAO,GAAG,IAAI,CAErE;AAED,wBAAgB,yBAAyB,CAAC,KAAK,SAAS,EAAE,EACtD,OAAO,EAAE,YAAY,CAAC,KAAK,CAAC,EAC5B,SAAS,EAAE,MAAM,GAClB,MAAM,CAGR;AAED,wBAAgB,oBAAoB,CAAC,GAAG,SAAS,MAAM,EACnD,KAAK,EAAE,SAAS,CAAC,GAAG,CAAC,EACrB,GAAG,EAAE,GAAG,GACT,OAAO,CAAC,IAAI,CAAC,CAQf;AAED,wBAAgB,mCAAmC,IAAI,IAAI,CAwB1D"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=base_provider.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"base_provider.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/base_provider.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=block_wrapper.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"block_wrapper.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/block_wrapper.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=box.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"box.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/box.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=button.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"button.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/button.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=cell_renderer.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cell_renderer.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/cell_renderer.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=choice_token.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"choice_token.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/choice_token.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=collaborator_token.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"collaborator_token.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/collaborator_token.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=color_palette.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"color_palette.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/color_palette.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=color_palette_synced.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"color_palette_synced.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/color_palette_synced.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=confirmation_dialog.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"confirmation_dialog.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/confirmation_dialog.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=dialog.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dialog.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/dialog.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=expand_record.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"expand_record.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/expand_record.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=expand_record_list.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"expand_record_list.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/expand_record_list.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=expand_record_picker_async.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"expand_record_picker_async.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/expand_record_picker_async.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=field_icon.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"field_icon.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/field_icon.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=field_picker.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"field_picker.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/field_picker.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=field_picker_synced.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"field_picker_synced.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/field_picker_synced.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=form_field.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form_field.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/form_field.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=global_alert.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"global_alert.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/global_alert.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=heading.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"heading.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/heading.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=icon.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"icon.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/icon.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=initialize_block.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"initialize_block.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/initialize_block.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=input.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/input.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=input_synced.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input_synced.test.d.ts","sourceRoot":"","sources":["../../../../test/ui/input_synced.test.tsx"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=label.test.d.ts.map