@object-ui/plugin-calendar 2.0.0 → 3.0.0
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.
- package/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +22 -0
- package/dist/index.js +633 -488
- package/dist/index.umd.cjs +2 -2
- package/dist/src/CalendarView.d.ts +2 -1
- package/dist/src/CalendarView.d.ts.map +1 -1
- package/dist/src/ObjectCalendar.d.ts +1 -0
- package/dist/src/ObjectCalendar.d.ts.map +1 -1
- package/dist/src/ObjectCalendar.stories.d.ts +23 -0
- package/dist/src/ObjectCalendar.stories.d.ts.map +1 -0
- package/package.json +11 -10
- package/src/CalendarView.tsx +178 -18
- package/src/ObjectCalendar.stories.tsx +82 -0
- package/src/ObjectCalendar.tsx +54 -4
- package/src/__tests__/accessibility.test.tsx +290 -0
- package/src/__tests__/performance-benchmark.test.tsx +227 -0
- package/src/__tests__/view-states.test.tsx +377 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
|
|
2
|
-
> @object-ui/plugin-calendar@
|
|
2
|
+
> @object-ui/plugin-calendar@3.0.0 build /home/runner/work/objectui/objectui/packages/plugin-calendar
|
|
3
3
|
> vite build
|
|
4
4
|
|
|
5
5
|
[36mvite v7.3.1 [32mbuilding client environment for production...[36m[39m
|
|
6
6
|
transforming...
|
|
7
|
-
[32m✓[39m
|
|
7
|
+
[32m✓[39m 26 modules transformed.
|
|
8
8
|
rendering chunks...
|
|
9
9
|
[32m
|
|
10
10
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
11
|
-
[96msrc/
|
|
11
|
+
[96msrc/ObjectCalendar.stories.tsx[0m:[93m4[0m:[93m43[0m - [91merror[0m[90m TS2307: [0mCannot find module '@storybook-config/datasource' or its corresponding type declarations.
|
|
12
12
|
|
|
13
|
-
[
|
|
14
|
-
[7m
|
|
13
|
+
[7m4[0m import { createStorybookDataSource } from '@storybook-config/datasource';
|
|
14
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
15
15
|
|
|
16
16
|
computing gzip size...
|
|
17
|
-
[2mdist/[22m[36mindex.js [39m[1m[
|
|
18
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
17
|
+
[2mdist/[22m[36mindex.js [39m[1m[2m38.73 kB[22m[1m[22m[2m │ gzip: 10.08 kB[22m
|
|
18
|
+
[32m[36m[vite:dts][32m Declaration files built in 15042ms.
|
|
19
19
|
[39m
|
|
20
|
-
[2mdist/[22m[36mindex.umd.cjs [39m[1m[
|
|
21
|
-
[32m✓ built in
|
|
20
|
+
[2mdist/[22m[36mindex.umd.cjs [39m[1m[2m26.12 kB[22m[1m[22m[2m │ gzip: 8.86 kB[22m
|
|
21
|
+
[32m✓ built in 16.82s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @object-ui/plugin-calendar
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
|
|
8
|
+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
|
|
9
|
+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
|
|
10
|
+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
|
|
11
|
+
- Added gzip + brotli pre-compression via vite-plugin-compression2
|
|
12
|
+
- Lazy MSW loading for build:server (~150 KB gzip saved)
|
|
13
|
+
- Added bundle analysis with rollup-plugin-visualizer
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [87979c3]
|
|
18
|
+
- @object-ui/types@3.0.0
|
|
19
|
+
- @object-ui/core@3.0.0
|
|
20
|
+
- @object-ui/react@3.0.0
|
|
21
|
+
- @object-ui/components@3.0.0
|
|
22
|
+
- @object-ui/fields@3.0.0
|
|
23
|
+
- @object-ui/mobile@3.0.0
|
|
24
|
+
|
|
3
25
|
## 2.0.0
|
|
4
26
|
|
|
5
27
|
### Major Changes
|