v1.4.0
版本发布时间: 2024-09-02 15:35:01
teableio/teable最新发布版本:v1.5.0(2024-10-25 14:07:27)
Highlight 🎉
Undo and Redo
All operations in table can be undone and redone
https://github.com/user-attachments/assets/28051dd9-8060-4c46-bd4f-bd268f07f1a4
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 https://github.com/teableio/teable/pull/831
- translation: add french by @simon-moulin in https://github.com/teableio/teable/pull/827
- feat: delete record in edit header by @spiritanand in https://github.com/teableio/teable/pull/828
- refactor: reconstruct filter with abstract by @caoxing9 in https://github.com/teableio/teable/pull/818
- fix: duplicate filter update by @caoxing9 in https://github.com/teableio/teable/pull/841
- fix: user tag style by @caoxing9 in https://github.com/teableio/teable/pull/843
- chore: packages release under MIT license by @tea-artist in https://github.com/teableio/teable/pull/844
- feat: base collaborator by @boris-w in https://github.com/teableio/teable/pull/837
- fix: shared page ssr translation by @boris-w in https://github.com/teableio/teable/pull/847
- fix: usage base by @boris-w in https://github.com/teableio/teable/pull/849
- feat: field convert limit by @caoxing9 in https://github.com/teableio/teable/pull/848
- fix: import relative by @caoxing9 in https://github.com/teableio/teable/pull/810
- fix: import encode error crash by @caoxing9 in https://github.com/teableio/teable/pull/855
- perf: filter field convert sync by @caoxing9 in https://github.com/teableio/teable/pull/857
- fix: fail add filter group online by @caoxing9 in https://github.com/teableio/teable/pull/858
- feat: added Japanese translation by @tkymmm in https://github.com/teableio/teable/pull/854
- fix: export grid view by @caoxing9 in https://github.com/teableio/teable/pull/859
- fix: dragging rows by @Sky-FE in https://github.com/teableio/teable/pull/861
- fix: unable to edit and delete base collaborators by @boris-w in https://github.com/teableio/teable/pull/865
- feat: enhance base query builder by @boris-w in https://github.com/teableio/teable/pull/867
- feat: undo redo by @tea-artist in https://github.com/teableio/teable/pull/839
- fix: undo i18n by @tea-artist in https://github.com/teableio/teable/pull/868
- fix: undo record missing link value by @tea-artist in https://github.com/teableio/teable/pull/870
- fix: record history functionality in SQLite database by @Sky-FE in https://github.com/teableio/teable/pull/873
- feat: add configApi method by @tea-artist in https://github.com/teableio/teable/pull/874
New Contributors
- @simon-moulin made their first contribution in https://github.com/teableio/teable/pull/827
- @spiritanand made their first contribution in https://github.com/teableio/teable/pull/828
- @tkymmm made their first contribution in https://github.com/teableio/teable/pull/854
Full Changelog: https://github.com/teableio/teable/compare/v1.3.2...v1.4.0