Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
 - @empathyco/[email protected]
 - @empathyco/[email protected]
  • Loading branch information
empathy/x committed Nov 25, 2024
1 parent bd3ed79 commit 90f4a85
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 4 deletions.
30 changes: 30 additions & 0 deletions packages/x-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
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.20](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-11-25)


### ⚠ BREAKING CHANGES

* **xds:** the x tailwincss plugin no longer admits an options configuration. The plugin theme is accessible through theme: extend: { x: {...}} so now if you need to customize a value you can do it via extending the general tailwind theme:

module.exports = {
theme: {
extend: {
spacing: theme => theme('x.spacing'),
colors: theme => theme('x.colors'),
screens: theme => theme('x.screens'),
fontSize: theme => theme('x.fontSize'),
fontFamily: theme => theme('x.fontFamily'),
x: {
colors: {
neutral: {
5: '#56ac91'
}
....

To add new components you can do it via https://tailwindcss.com/docs/adding-custom-styles#adding-component-classes

### Features

* **xds:** avoid overriding consumers theme by xds (#1658) ([bd3ed79](https://github.com/empathyco/x/commit/bd3ed79f654fc7e76939c7d0baa2a67e6b879ed8))



## [6.0.0-alpha.19](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-11-25)


Expand Down
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.19",
"version": "6.0.0-alpha.20",
"description": "Empathy X Components",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
Expand Down Expand Up @@ -92,7 +92,7 @@
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "~20.0.0",
"@bahmutov/cypress-esbuild-preprocessor": "~2.2.0",
"@empathyco/x-tailwindcss": "^2.0.0-alpha.0",
"@empathyco/x-tailwindcss": "^2.0.0-alpha.1",
"@microsoft/api-documenter": "~7.23.0",
"@microsoft/api-extractor": "~7.39.0",
"@testing-library/jest-dom": "~5.17.0",
Expand Down
30 changes: 30 additions & 0 deletions packages/x-tailwindcss/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
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.1](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-11-25)


### ⚠ BREAKING CHANGES

* **xds:** the x tailwincss plugin no longer admits an options configuration. The plugin theme is accessible through theme: extend: { x: {...}} so now if you need to customize a value you can do it via extending the general tailwind theme:

module.exports = {
theme: {
extend: {
spacing: theme => theme('x.spacing'),
colors: theme => theme('x.colors'),
screens: theme => theme('x.screens'),
fontSize: theme => theme('x.fontSize'),
fontFamily: theme => theme('x.fontFamily'),
x: {
colors: {
neutral: {
5: '#56ac91'
}
....

To add new components you can do it via https://tailwindcss.com/docs/adding-custom-styles#adding-component-classes

### Features

* **xds:** avoid overriding consumers theme by xds (#1658) ([bd3ed79](https://github.com/empathyco/x/commit/bd3ed79f654fc7e76939c7d0baa2a67e6b879ed8))



## [2.0.0-alpha.0](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-11-20)


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": "2.0.0-alpha.0",
"version": "2.0.0-alpha.1",
"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.

0 comments on commit 90f4a85

Please sign in to comment.