Skip to content

Commit

Permalink
chore(deps): update dependency tailwindcss-theme-swapper to v0.11.0 (#…
Browse files Browse the repository at this point in the history
…778)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 15, 2024
1 parent 132d3af commit cbf165c
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 23 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"stylelint-config-standard": "36.0.0",
"stylelint-config-standard-scss": "13.0.0",
"tailwindcss": "3.4.1",
"tailwindcss-theme-swapper": "0.10.0",
"tailwindcss-theme-swapper": "0.11.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.2.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/beeq-react/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"@nx/react/babel",
{
"runtime": "automatic",
"useBuiltIns": "usage"
}
]
"useBuiltIns": "usage",
},
],
],
"plugins": []
"plugins": [],
}
8 changes: 4 additions & 4 deletions packages/beeq-tailwindcss/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[
"@nx/js/babel",
{
"useBuiltIns": "usage"
}
]
]
"useBuiltIns": "usage",
},
],
],
}
2 changes: 1 addition & 1 deletion packages/beeq-tailwindcss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"types": "./src/index.d.ts",
"peerDependencies": {
"tailwindcss": "^3.4.1",
"tailwindcss-theme-swapper": "^0.10.0"
"tailwindcss-theme-swapper": "^0.11.0"
},
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/beeq-vue/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[
"@nx/js/babel",
{
"useBuiltIns": "usage"
}
]
]
"useBuiltIns": "usage",
},
],
],
}
10 changes: 6 additions & 4 deletions packages/beeq/src/components/alert/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@

## Events

| Event | Description | Type |
| -------- | ------------------------------------------------------------- | ------------------ |
| `bqHide` | Callback handler to be called when the notification is hidden | `CustomEvent<any>` |
| `bqShow` | Callback handler to be called when the notification is shown | `CustomEvent<any>` |
| Event | Description | Type |
| -------------- | ------------------------------------------------------------- | ------------------ |
| `bqAfterClose` | Callback handler to be called after the alert has been closed | `CustomEvent<any>` |
| `bqAfterOpen` | Callback handler to be called after the alert has been opened | `CustomEvent<any>` |
| `bqHide` | Callback handler to be called when the alert is hidden | `CustomEvent<any>` |
| `bqShow` | Callback handler to be called when the alert is shown | `CustomEvent<any>` |


## Methods
Expand Down

0 comments on commit cbf165c

Please sign in to comment.