@momentumcms/plugins-analytics 0.2.0 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 0.3.0 (2026-02-20)
2
+
3
+ ### 🚀 Features
4
+
5
+ - add named tabs support with nested data grouping and UI improvements ([#30](https://github.com/DonaldMurillo/momentum-cms/pull/30))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Claude Opus 4.6
10
+ - Donald Murillo @DonaldMurillo
11
+
1
12
  ## 0.2.0 (2026-02-17)
2
13
 
3
14
  This was a version bump only for plugins-analytics to align it with other projects, there were no code changes.
package/index.cjs CHANGED
@@ -949,6 +949,9 @@ var MediaCollection = defineCollection({
949
949
  singular: "Media",
950
950
  plural: "Media"
951
951
  },
952
+ upload: {
953
+ mimeTypes: ["image/*", "application/pdf", "video/*", "audio/*"]
954
+ },
952
955
  admin: {
953
956
  useAsTitle: "filename",
954
957
  defaultColumns: ["filename", "mimeType", "filesize", "createdAt"]
@@ -969,7 +972,6 @@ var MediaCollection = defineCollection({
969
972
  description: "File size in bytes"
970
973
  }),
971
974
  text("path", {
972
- required: true,
973
975
  label: "Storage Path",
974
976
  description: "Path/key where the file is stored",
975
977
  admin: {
package/index.js CHANGED
@@ -904,6 +904,9 @@ var MediaCollection = defineCollection({
904
904
  singular: "Media",
905
905
  plural: "Media"
906
906
  },
907
+ upload: {
908
+ mimeTypes: ["image/*", "application/pdf", "video/*", "audio/*"]
909
+ },
907
910
  admin: {
908
911
  useAsTitle: "filename",
909
912
  defaultColumns: ["filename", "mimeType", "filesize", "createdAt"]
@@ -924,7 +927,6 @@ var MediaCollection = defineCollection({
924
927
  description: "File size in bytes"
925
928
  }),
926
929
  text("path", {
927
- required: true,
928
930
  label: "Storage Path",
929
931
  description: "Path/key where the file is stored",
930
932
  admin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentumcms/plugins-analytics",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Analytics and content tracking plugin for Momentum CMS",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",
@@ -34,10 +34,10 @@
34
34
  "@angular/router": "~21.1.0",
35
35
  "@aws-sdk/client-s3": "^3.983.0",
36
36
  "@aws-sdk/s3-request-presigner": "^3.983.0",
37
- "@momentumcms/core": "0.2.0",
38
- "@momentumcms/logger": "0.2.0",
39
- "@momentumcms/plugins-core": "0.2.0",
40
- "@momentumcms/server-core": "0.2.0",
37
+ "@momentumcms/core": "0.3.0",
38
+ "@momentumcms/logger": "0.3.0",
39
+ "@momentumcms/plugins-core": "0.3.0",
40
+ "@momentumcms/server-core": "0.3.0",
41
41
  "@ng-icons/core": "^33.0.0",
42
42
  "@ng-icons/heroicons": "^33.0.0",
43
43
  "express": "^4.21.0",