diff --git a/example/package.json b/example/package.json index ca46812..11894d4 100644 --- a/example/package.json +++ b/example/package.json @@ -7,11 +7,11 @@ "exports": { "./edit": { "import": "./packages/edit/dist/index.js", - "require": "./packages/edit/dist/index.umd.cjs" + "require": "./packages/edit/dist/index.cjs" }, "./display": { "import": "./packages/display/dist/index.js", - "require": "./packages/display/dist/index.umd.cjs" + "require": "./packages/display/dist/index.cjs" }, "./server": "./packages/server/dist/index.js" }, diff --git a/example/packages/display/package.json b/example/packages/display/package.json index 12b7dcc..3a088cf 100644 --- a/example/packages/display/package.json +++ b/example/packages/display/package.json @@ -10,12 +10,13 @@ } }, "main": "./dist/index.cjs", + "types": "./types/index.d.ts", "files": [ "dist" ], "scripts": { "dev": "vite build --watch", - "build": "pnpm nuke:dist && vue-tsc --noEmit && vite build", + "build": "pnpm nuke:dist && vue-tsc && vite build", "lint": "eslint ./src", "lint:fix": "pnpm lint --fix", "nuke": "pnpm dlx del-cli dist node_modules", @@ -31,7 +32,7 @@ "@vitejs/plugin-vue": "^6.0.0", "tce-manifest": "workspace:*", "typescript": "^5.8.3", - "vite": "^7.0.0", + "vite": "^7.0.3", "vue-tsc": "^3.0.1" }, "dependencies": { diff --git a/example/packages/display/tsconfig.json b/example/packages/display/tsconfig.json index fd9a9ef..6af2a0f 100644 --- a/example/packages/display/tsconfig.json +++ b/example/packages/display/tsconfig.json @@ -10,8 +10,9 @@ "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true, "jsx": "preserve", + "declaration": true, + "emitDeclarationOnly": true, // Linting "strict": true, "noUnusedLocals": true, diff --git a/example/packages/edit/package.json b/example/packages/edit/package.json index 9623768..c03d819 100644 --- a/example/packages/edit/package.json +++ b/example/packages/edit/package.json @@ -10,12 +10,13 @@ } }, "main": "./dist/index.cjs", + "types": "./types/index.d.ts", "files": [ "dist" ], "scripts": { "dev": "vite build --watch", - "build": "pnpm nuke:dist && vue-tsc --noEmit && vite build", + "build": "pnpm nuke:dist && vue-tsc && vite build", "lint": "eslint ./src", "lint:fix": "pnpm lint --fix", "nuke": "pnpm dlx del-cli dist node_modules", @@ -33,7 +34,7 @@ "@vitejs/plugin-vue": "^6.0.0", "tce-manifest": "workspace:*", "typescript": "^5.8.3", - "vite": "^7.0.0", + "vite": "^7.0.3", "vue-tsc": "^3.0.1" } } diff --git a/example/packages/edit/tsconfig.json b/example/packages/edit/tsconfig.json index fd9a9ef..6af2a0f 100644 --- a/example/packages/edit/tsconfig.json +++ b/example/packages/edit/tsconfig.json @@ -10,8 +10,9 @@ "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true, "jsx": "preserve", + "declaration": true, + "emitDeclarationOnly": true, // Linting "strict": true, "noUnusedLocals": true, diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index e1c3627..6c2d348 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,35 @@ # @tailor-cms/cek-common +## 1.3.2 + +### Patch Changes + +- Bump dependencies. + +## 1.3.1 + +### Patch Changes + +- Updated workspace packages versions. + +## 1.3.0 + +### Minor Changes + +- Bump dependencies to the latest versions. + +## 1.2.8 + +### Patch Changes + +- Updated spacing on edit and display runtime" + +## 1.2.7 + +### Patch Changes + +- Fixed content generation flow. Added error log and reset state. + ## 1.2.6 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index 30947c2..88e0106 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -3,7 +3,7 @@ "description": "Content element kit shared util library", "author": "Studion ", "type": "module", - "version": "1.2.6", + "version": "1.3.2", "exports": { ".": { "import": "./dist/index.js", @@ -31,7 +31,7 @@ "mitt": "^3.0.1" }, "devDependencies": { - "@tailor-cms/eslint-config": "workspace:*", + "@tailor-cms/eslint-config": "workspace:^", "@types/json-schema": "^7.0.15", "@types/node": "^24.0.10", "tsup": "^8.5.0", diff --git a/packages/e2e/CHANGELOG.md b/packages/e2e/CHANGELOG.md index 1816886..342676d 100644 --- a/packages/e2e/CHANGELOG.md +++ b/packages/e2e/CHANGELOG.md @@ -1,5 +1,35 @@ # @tailor-cms/cek-e2e +## 1.3.2 + +### Patch Changes + +- Bump dependencies. + +## 1.3.1 + +### Patch Changes + +- Updated workspace packages versions. + +## 1.3.0 + +### Minor Changes + +- Bump dependencies to the latest versions. + +## 1.2.8 + +### Patch Changes + +- Updated spacing on edit and display runtime" + +## 1.2.7 + +### Patch Changes + +- Fixed content generation flow. Added error log and reset state. + ## 1.2.6 ### Patch Changes diff --git a/packages/e2e/package.json b/packages/e2e/package.json index 37a2c73..937641c 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@tailor-cms/cek-e2e", - "version": "1.2.6", + "version": "1.3.2", "type": "module", "exports": { ".": { @@ -23,12 +23,12 @@ "prepublish": "pnpm build" }, "devDependencies": { - "@tailor-cms/eslint-config": "workspace:*", + "@tailor-cms/eslint-config": "workspace:^", "tsup": "^8.5.0", "typescript": "^5.8.3" }, "peerDependencies": { - "@playwright/test": "1.53.1" + "@playwright/test": "^1.53.2" }, "tsup": { "entry": [ diff --git a/packages/eslint/CHANGELOG.md b/packages/eslint/CHANGELOG.md index 2d4451a..44cff10 100644 --- a/packages/eslint/CHANGELOG.md +++ b/packages/eslint/CHANGELOG.md @@ -1,5 +1,23 @@ # @tailor-cms/eslint-config +## 1.1.2 + +### Patch Changes + +- Bump dependencies. + +## 1.1.1 + +### Patch Changes + +- Updated workspace packages versions. + +## 1.1.0 + +### Minor Changes + +- Bump dependencies to the latest versions. + ## 1.0.3 ### Patch Changes diff --git a/packages/eslint/package.json b/packages/eslint/package.json index bb67ed3..bfc411f 100644 --- a/packages/eslint/package.json +++ b/packages/eslint/package.json @@ -1,7 +1,7 @@ { "name": "@tailor-cms/eslint-config", "type": "module", - "version": "1.0.3", + "version": "1.1.2", "main": "index.js", "files": [ "index.js", @@ -20,8 +20,8 @@ "eslint-plugin-prettier": "^5.5.1", "eslint-plugin-vue": "^10.3.0", "eslint-plugin-vuejs-accessibility": "^2.4.1", - "neostandard": "^0.12.1", - "typescript-eslint": "^8.35.1", + "neostandard": "^0.12.2", + "typescript-eslint": "^8.36.0", "vue-eslint-parser": "^10.2.0" }, "peerDependencies": { diff --git a/packages/runtime/preview/CHANGELOG.md b/packages/runtime/preview/CHANGELOG.md index 45d879e..c5ff4a6 100644 --- a/packages/runtime/preview/CHANGELOG.md +++ b/packages/runtime/preview/CHANGELOG.md @@ -1,5 +1,48 @@ # @tailor-cms/tce-preview-runtime +## 1.3.2 + +### Patch Changes + +- Bump dependencies. +- Updated dependencies + - @tailor-cms/cek-common@1.3.2 + +## 1.3.1 + +### Patch Changes + +- Updated workspace packages versions. +- Updated dependencies + - @tailor-cms/cek-common@1.3.1 + +## 1.3.0 + +### Minor Changes + +- Bump dependencies to the latest versions. + +### Patch Changes + +- Updated dependencies + - @tailor-cms/cek-common@1.3.0 + +## 1.2.8 + +### Patch Changes + +- Updated spacing on edit and display runtime" +- Updated dependencies + - @tailor-cms/cek-common@1.2.8 + +## 1.2.7 + +### Patch Changes + +- Fixed content generation flow. Added error log and reset state. +- Updated dependencies + - @tailor-cms/cek-common@1.2.7 + ## 1.2.6 ### Patch Changes diff --git a/packages/runtime/preview/package.json b/packages/runtime/preview/package.json index 441ca23..b9b6c0e 100644 --- a/packages/runtime/preview/package.json +++ b/packages/runtime/preview/package.json @@ -2,7 +2,7 @@ "name": "@tailor-cms/tce-preview-runtime", "description": "Preview content element client side runtime", "author": "Studion ", - "version": "1.2.6", + "version": "1.3.2", "type": "module", "scripts": { "dev": "vite", @@ -12,7 +12,7 @@ }, "dependencies": { "@mdi/font": "7.4.47", - "@tailor-cms/cek-common": "workspace:*", + "@tailor-cms/cek-common": "workspace:^", "@vitejs/plugin-vue": "6.0.0", "@vueuse/core": "13.5.0", "date-fns": "^4.1.0", @@ -21,13 +21,13 @@ "split.js": "1.6.5", "stringify-object": "^5.0.0", "typescript": "5.8.3", - "vite": "7.0.0", + "vite": "7.0.3", "vite-plugin-vuetify": "2.1.1", "vue": "3.5.17", - "vuetify": "3.8.12" + "vuetify": "3.9.0" }, "devDependencies": { - "@tailor-cms/eslint-config": "workspace:*", + "@tailor-cms/eslint-config": "workspace:^", "@types/lodash-es": "^4.17.12", "@types/stringify-object": "^4.0.5" }, diff --git a/packages/runtime/tce-display/CHANGELOG.md b/packages/runtime/tce-display/CHANGELOG.md index 9988d0e..7d81853 100644 --- a/packages/runtime/tce-display/CHANGELOG.md +++ b/packages/runtime/tce-display/CHANGELOG.md @@ -1,5 +1,48 @@ # @tailor-cms/tce-display-runtime +## 1.3.2 + +### Patch Changes + +- Bump dependencies. +- Updated dependencies + - @tailor-cms/cek-common@1.3.2 + +## 1.3.1 + +### Patch Changes + +- Updated workspace packages versions. +- Updated dependencies + - @tailor-cms/cek-common@1.3.1 + +## 1.3.0 + +### Minor Changes + +- Bump dependencies to the latest versions. + +### Patch Changes + +- Updated dependencies + - @tailor-cms/cek-common@1.3.0 + +## 1.2.8 + +### Patch Changes + +- Updated spacing on edit and display runtime" +- Updated dependencies + - @tailor-cms/cek-common@1.2.8 + +## 1.2.7 + +### Patch Changes + +- Fixed content generation flow. Added error log and reset state. +- Updated dependencies + - @tailor-cms/cek-common@1.2.7 + ## 1.2.6 ### Patch Changes diff --git a/packages/runtime/tce-display/package.json b/packages/runtime/tce-display/package.json index 65f4f47..ed0efb6 100644 --- a/packages/runtime/tce-display/package.json +++ b/packages/runtime/tce-display/package.json @@ -2,7 +2,7 @@ "name": "@tailor-cms/tce-display-runtime", "description": "Display content element client side runtime", "author": "Studion ", - "version": "1.2.6", + "version": "1.3.2", "type": "module", "scripts": { "dev": "vite", @@ -12,23 +12,23 @@ }, "dependencies": { "@mdi/font": "7.4.47", - "@tailor-cms/cek-common": "workspace:*", + "@tailor-cms/cek-common": "workspace:^", "@vitejs/plugin-vue": "6.0.0", "@vue/reactivity": "^3.5.17", "@vue/runtime-core": "^3.5.17", "@vue/runtime-dom": "^3.5.17", "@vue/shared": "^3.5.17", - "dotenv": "^17.0.1", + "dotenv": "^17.1.0", "lodash-es": "^4.17.21", "sass": "1.89.2", "typescript": "5.8.3", - "vite": "7.0.0", + "vite": "7.0.3", "vite-plugin-vuetify": "2.1.1", "vue": "3.5.17", - "vuetify": "3.8.12" + "vuetify": "3.9.0" }, "devDependencies": { - "@tailor-cms/eslint-config": "workspace:*", + "@tailor-cms/eslint-config": "workspace:^", "@types/lodash-es": "^4.17.12", "@types/node": "^24.0.10" }, diff --git a/packages/runtime/tce-display/src/App.vue b/packages/runtime/tce-display/src/App.vue index e7d07b8..d60921d 100644 --- a/packages/runtime/tce-display/src/App.vue +++ b/packages/runtime/tce-display/src/App.vue @@ -4,7 +4,7 @@ -
+ -
- + + - +
{{ element.data.content }}
- +