1
0
Fork 0
mirror of synced 2024-06-26 18:10:51 +12:00
budibase/packages/client
2021-11-03 16:18:12 +00:00
..
.vscode publish:dev script to help client development 2019-09-12 15:04:07 +01:00
src Fix picker width in table with search block and enable autosizing of other search components 2021-11-03 15:53:45 +00:00
.gitignore Adding client lock file 2020-12-01 10:50:08 +00:00
.npmignore prep for NPM publish 2020-02-26 22:18:14 +00:00
LICENSE updated builder license to GPL & copyright to Budibase Inc 2021-05-28 12:14:14 +01:00
manifest.json Remove conditional props from manifest for table with search block 2021-11-03 16:18:12 +00:00
package.json v0.9.173-alpha.6 2021-10-28 11:52:29 +00:00
README.md merge develop into branch 2021-09-16 22:15:09 +02:00
rollup.config.js Move all lucene logic into central builder helpers file 2021-09-27 12:59:49 +01:00
yarn.lock templates working end to end 2021-10-05 23:02:28 +01:00

Manifest

The manifest.json file exports the definitions of all components available in this version of the client library. The manifest is used by the builder to correctly display components and their settings, and know how to correctly interact with them.

Component Definitions

The object key is the name of the component, as exported by index.js.

  • name - the name displayed in the builder
  • description - not currently used
  • icon - the icon displayed in the builder
  • hasChildren - whether the component accepts children or not
  • styleable - whether the component accepts design props or not
  • dataProvider - whether the component provides a data context or not
  • bindable - whether the components provides a bindable value or not
  • settings - array of settings displayed in the builder

###Settings Definitions

The type field in each setting is used by the builder to know which component to use to display the setting, so it's important that this field is correct. The valid options are:

  • text - A text field
  • select - A select dropdown. Accompany these with an options field to provide options
  • datasource - A datasource (e.g. a table or a view)
  • boolean - A boolean field
  • number - A numeric text field
  • detailURL - A URL to a page which displays details about a row. Exclusively used for grids which link to row details.

The available fields in each setting definition are:

  • type - the type of field which determines which component the builder will use to display the setting
  • key - the key of this setting in the component
  • label - the label displayed in the builder
  • defaultValue - the default value of the setting
  • placeholder - the placeholder for the setting