@object-ui/plugin-list 3.1.5 → 3.3.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/README.md +21 -1
  3. package/dist/index.d.ts +1 -1
  4. package/dist/index.js +30492 -38346
  5. package/dist/index.umd.cjs +30 -38
  6. package/dist/{src → packages/plugin-list/src}/ListView.d.ts +17 -1
  7. package/dist/packages/plugin-list/src/ListView.d.ts.map +1 -0
  8. package/dist/packages/plugin-list/src/ListView.stories.d.ts.map +1 -0
  9. package/dist/packages/plugin-list/src/ObjectGallery.d.ts.map +1 -0
  10. package/dist/packages/plugin-list/src/UserFilters.d.ts.map +1 -0
  11. package/dist/packages/plugin-list/src/ViewSwitcher.d.ts.map +1 -0
  12. package/dist/packages/plugin-list/src/components/TabBar.d.ts.map +1 -0
  13. package/dist/{src → packages/plugin-list/src}/index.d.ts +1 -1
  14. package/dist/packages/plugin-list/src/index.d.ts.map +1 -0
  15. package/dist/plugin-list.css +1 -2
  16. package/package.json +35 -13
  17. package/.turbo/turbo-build.log +0 -24
  18. package/dist/src/ListView.d.ts.map +0 -1
  19. package/dist/src/ListView.stories.d.ts.map +0 -1
  20. package/dist/src/ObjectGallery.d.ts.map +0 -1
  21. package/dist/src/UserFilters.d.ts.map +0 -1
  22. package/dist/src/ViewSwitcher.d.ts.map +0 -1
  23. package/dist/src/components/TabBar.d.ts.map +0 -1
  24. package/dist/src/index.d.ts.map +0 -1
  25. package/src/ListView.stories.tsx +0 -64
  26. package/src/ListView.tsx +0 -1688
  27. package/src/ObjectGallery.tsx +0 -308
  28. package/src/UserFilters.tsx +0 -453
  29. package/src/ViewSwitcher.tsx +0 -113
  30. package/src/__tests__/ConditionalFormatting.test.ts +0 -285
  31. package/src/__tests__/DataFetch.test.tsx +0 -253
  32. package/src/__tests__/Export.test.tsx +0 -175
  33. package/src/__tests__/FilterNormalization.test.ts +0 -162
  34. package/src/__tests__/GalleryGrouping.test.tsx +0 -237
  35. package/src/__tests__/GalleryTimelineSpecConfig.test.tsx +0 -203
  36. package/src/__tests__/ListView.test.tsx +0 -2151
  37. package/src/__tests__/ListViewGroupingPropagation.test.tsx +0 -250
  38. package/src/__tests__/ListViewPersistence.test.tsx +0 -129
  39. package/src/__tests__/ObjectGallery.test.tsx +0 -208
  40. package/src/__tests__/TabBar.test.tsx +0 -199
  41. package/src/__tests__/UserFilters.test.tsx +0 -486
  42. package/src/components/TabBar.tsx +0 -120
  43. package/src/index.tsx +0 -78
  44. package/tsconfig.json +0 -18
  45. package/vite.config.ts +0 -56
  46. package/vitest.config.ts +0 -12
  47. package/vitest.setup.ts +0 -1
  48. /package/dist/{src → packages/plugin-list/src}/ListView.stories.d.ts +0 -0
  49. /package/dist/{src → packages/plugin-list/src}/ObjectGallery.d.ts +0 -0
  50. /package/dist/{src → packages/plugin-list/src}/UserFilters.d.ts +0 -0
  51. /package/dist/{src → packages/plugin-list/src}/ViewSwitcher.d.ts +0 -0
  52. /package/dist/{src → packages/plugin-list/src}/components/TabBar.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @object-ui/plugin-list
2
2
 
3
+ ## 3.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b429568]
8
+ - @object-ui/components@3.3.1
9
+ - @object-ui/types@3.3.1
10
+ - @object-ui/core@3.3.1
11
+ - @object-ui/i18n@3.3.1
12
+ - @object-ui/react@3.3.1
13
+ - @object-ui/mobile@3.3.1
14
+
15
+ ## 3.3.0
16
+
17
+ ### Patch Changes
18
+
19
+ - @object-ui/types@3.3.0
20
+ - @object-ui/core@3.3.0
21
+ - @object-ui/i18n@3.3.0
22
+ - @object-ui/react@3.3.0
23
+ - @object-ui/components@3.3.0
24
+ - @object-ui/mobile@3.3.0
25
+
26
+ ## 3.2.0
27
+
28
+ ### Patch Changes
29
+
30
+ - @object-ui/types@3.2.0
31
+ - @object-ui/core@3.2.0
32
+ - @object-ui/i18n@3.2.0
33
+ - @object-ui/react@3.2.0
34
+ - @object-ui/components@3.2.0
35
+ - @object-ui/mobile@3.2.0
36
+
3
37
  ## 3.1.5
4
38
 
5
39
  ### Patch Changes
package/README.md CHANGED
@@ -122,6 +122,26 @@ interface ListViewSchema {
122
122
 
123
123
  The ListView automatically persists the user's view type preference in localStorage using the key `listview-{objectName}-view`.
124
124
 
125
+ <!-- release-metadata:v3.3.0 -->
126
+
127
+ ## Compatibility
128
+
129
+ - **React:** 18.x or 19.x
130
+ - **Node.js:** ≥ 18
131
+ - **TypeScript:** ≥ 5.0 (strict mode)
132
+ - **`@objectstack/spec`:** ^3.3.0
133
+ - **`@objectstack/client`:** ^3.3.0
134
+ - **Tailwind CSS:** ≥ 3.4 (for packages with UI)
135
+
136
+ ## Links
137
+
138
+ - 📚 [Documentation](https://www.objectui.org/docs/plugins/plugin-list)
139
+ - 📦 [npm package](https://www.npmjs.com/package/@object-ui/plugin-list)
140
+ - 📝 [Changelog](./CHANGELOG.md)
141
+ - 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
142
+ - 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
143
+ - 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
144
+
125
145
  ## License
126
146
 
127
- MIT
147
+ MIT — see [LICENSE](./LICENSE).
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './src/index'
1
+ export * from './packages/plugin-list/src/index'
2
2
  export {}