Highlight 🎉
Undo and Redo
All operations in table can be undone and redone
undo.redo.en.mp4
Base collaborator
You can now invite collaborators into the base without entering the space
Npm package @teable/openapi
You can now use @teable/openapi to make API calls and get good type hints. Documentation is still being prepared you can find all APIs in the code base https://github.com/teableio/teable/tree/develop/packages/openapi/src,
npm install @teable/openapi --save
import { configApi, createRecords } from '@teable/openapi';
configApi({
endpoint: 'https://app.teable.io',
token: '__token__',
});
const response = await createRecords('__tableId__', {
records: [
{
fields: {
Name: 'John Doe',
Age: 30
}
}
]
});
console.log(response.data);
Contributions from the community ❤️
- Delete record in edit header by @spiritanand
- French translation by @simon-moulin
- Japanese translation by @tkymmm
What's Changed
- fix: crash due to incompatible cell value components with rollup field by @Sky-FE in #831
- translation: add french by @simon-moulin in #827
- feat: delete record in edit header by @spiritanand in #828
- refactor: reconstruct filter with abstract by @caoxing9 in #818
- fix: duplicate filter update by @caoxing9 in #841
- fix: user tag style by @caoxing9 in #843
- chore: packages release under MIT license by @tea-artist in #844
- feat: base collaborator by @boris-w in #837
- fix: shared page ssr translation by @boris-w in #847
- fix: usage base by @boris-w in #849
- feat: field convert limit by @caoxing9 in #848
- fix: import relative by @caoxing9 in #810
- fix: import encode error crash by @caoxing9 in #855
- perf: filter field convert sync by @caoxing9 in #857
- fix: fail add filter group online by @caoxing9 in #858
- feat: added Japanese translation by @tkymmm in #854
- fix: export grid view by @caoxing9 in #859
- fix: dragging rows by @Sky-FE in #861
- fix: unable to edit and delete base collaborators by @boris-w in #865
- feat: enhance base query builder by @boris-w in #867
- feat: undo redo by @tea-artist in #839
- fix: undo i18n by @tea-artist in #868
- fix: undo record missing link value by @tea-artist in #870
- fix: record history functionality in SQLite database by @Sky-FE in #873
- feat: add configApi method by @tea-artist in #874
New Contributors
- @simon-moulin made their first contribution in #827
- @spiritanand made their first contribution in #828
- @tkymmm made their first contribution in #854
Full Changelog: v1.3.2...v1.4.0