Skip to content

Commit

Permalink
Merge branch 'feat/add-related-prompts-adapter' into feat/related-pro…
Browse files Browse the repository at this point in the history
…mpts-module
  • Loading branch information
victorcg88 committed Oct 28, 2024
2 parents 89978e8 + 370647a commit f9d5b10
Show file tree
Hide file tree
Showing 12 changed files with 50 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ We are working on many key features to consolidate Interface X, including these
- **Experience Controls**: Add capability of loading configurations from an external service
[![Release Docs](https://img.shields.io/badge/Released-November%202023-brightgreen)](https://vuejs.org/)
- **Vue 3 Migration**.
[![Release Docs](https://img.shields.io/badge/In%20Progress-yellow)](https://vuejs.org/)
[![Release Docs](https://img.shields.io/badge/Released-November%202024-brightgreen)](https://vuejs.org/)
- **Network Request failure transparency**.
- **Project generator CLI**.
- **Observability**: Error capturing & monitoring.
Expand Down
9 changes: 9 additions & 0 deletions packages/_vue3-migration-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.0-alpha.52](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.52) (2024-10-24)


### Features

* update x-components and related packages to vue 3 (#1644) ([d590842](https://github.com/empathyco/x/commit/d5908427544b9a65bbc16a860ea6f73270ee7c26))



## [1.0.0-alpha.51](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.51) (2024-09-05)


Expand Down
2 changes: 1 addition & 1 deletion packages/_vue3-migration-test/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue3-migration-test",
"private": "true",
"version": "1.0.0-alpha.51",
"version": "1.0.0-alpha.52",
"scripts": {
"dev": "vite",
"preview": "vite preview",
Expand Down
9 changes: 9 additions & 0 deletions packages/x-archetype-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.0-alpha.2](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-10-24)


### Features

* update x-components and related packages to vue 3 (#1644) ([d590842](https://github.com/empathyco/x/commit/d5908427544b9a65bbc16a860ea6f73270ee7c26))



## [2.0.0-alpha.1](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-09-05)


Expand Down
2 changes: 1 addition & 1 deletion packages/x-archetype-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@empathyco/x-archetype-utils",
"version": "2.0.0-alpha.1",
"version": "2.0.0-alpha.2",
"description": "Utilities for x-archetype",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/x-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.0.0-alpha.4](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-10-24)


### Features

* update x-components and related packages to vue 3 (#1644) ([d590842](https://github.com/empathyco/x/commit/d5908427544b9a65bbc16a860ea6f73270ee7c26))



## [6.0.0-alpha.3](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-10-04)


Expand Down
8 changes: 5 additions & 3 deletions packages/x-components/build/tools/inject-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
* @params css - CSS code.
*/
function injectCss(css) {
const el = document.createElement('style');
el.textContent = css;
document.head.appendChild(el);
if (document) {
const el = document.createElement('style');
el.textContent = css;
document.head.appendChild(el);
}
}

export default injectCss;
4 changes: 2 additions & 2 deletions packages/x-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@empathyco/x-components",
"version": "6.0.0-alpha.3",
"version": "6.0.0-alpha.4",
"description": "Empathy X Components",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
Expand Down Expand Up @@ -91,7 +91,7 @@
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "~20.0.0",
"@bahmutov/cypress-esbuild-preprocessor": "~2.2.0",
"@empathyco/x-tailwindcss": "^1.2.0-alpha.6",
"@empathyco/x-tailwindcss": "^1.2.0-alpha.7",
"@microsoft/api-documenter": "~7.23.0",
"@microsoft/api-extractor": "~7.39.0",
"@testing-library/jest-dom": "~5.17.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/x-tailwindcss/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.2.0-alpha.7](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-10-24)


### Features

* update x-components and related packages to vue 3 (#1644) ([d590842](https://github.com/empathyco/x/commit/d5908427544b9a65bbc16a860ea6f73270ee7c26))



## [1.2.0-alpha.6](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-09-05)

**Note:** Version bump only for package @empathyco/x-tailwindcss
Expand Down
2 changes: 1 addition & 1 deletion packages/x-tailwindcss/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@empathyco/x-tailwindcss",
"version": "1.2.0-alpha.6",
"version": "1.2.0-alpha.7",
"description": "Empathy X Tailwind plugin",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"enabled": false
},
{
"matchPackagePatterns": ["^@types/react*"],
"enabled": false
"enabled": false,
"matchPackageNames": ["/^@types/react*/"]
},
{
"matchPackageNames": ["prettier-plugin-tailwindcss"],
Expand Down

0 comments on commit f9d5b10

Please sign in to comment.