Skip to content

Commit

Permalink
v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pspaczek committed Jul 11, 2024
1 parent ca016b2 commit 68d82cb
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/storybook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
version: 7
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
Expand All @@ -36,11 +36,11 @@ jobs:
- name: Build
run: pnpm run build-storybook
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './storybook-static'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4
41 changes: 24 additions & 17 deletions components-api-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1466,8 +1466,8 @@
}
},
{
"name": "description",
"description": "Use this props to set dialog description.",
"name": "content",
"description": "Use this props to set dialog content.",
"required": false,
"type": {
"name": "string"
Expand Down Expand Up @@ -1594,8 +1594,8 @@
}
},
{
"name": "textDescriptionAttrs",
"description": "Use this props to pass attrs for description UiText",
"name": "textContentAttrs",
"description": "Use this props to pass attrs for content UiText",
"required": false,
"type": {
"name": "TextAttrsProps"
Expand Down Expand Up @@ -1652,6 +1652,13 @@
"func": false,
"value": "() => ({ icon: 'close' })"
}
},
{
"name": "hasContent",
"defaultValue": {
"func": false,
"value": "false"
}
}
],
"events": [
Expand Down Expand Up @@ -1736,7 +1743,7 @@
"title": "binding"
},
{
"name": "description",
"name": "content",
"title": "binding"
},
{
Expand All @@ -1760,11 +1767,11 @@
"title": "binding"
},
{
"name": "hasDescription",
"name": "hasContent",
"title": "binding"
},
{
"name": "textDescriptionAttrs",
"name": "textContentAttrs",
"title": "binding"
},
{
Expand Down Expand Up @@ -1823,7 +1830,7 @@
"title": "binding"
},
{
"name": "description",
"name": "content",
"title": "binding"
},
{
Expand All @@ -1847,11 +1854,11 @@
"title": "binding"
},
{
"name": "hasDescription",
"name": "hasContent",
"title": "binding"
},
{
"name": "textDescriptionAttrs",
"name": "textContentAttrs",
"title": "binding"
}
]
Expand All @@ -1874,7 +1881,7 @@
"title": "binding"
},
{
"name": "description",
"name": "content",
"title": "binding"
},
{
Expand Down Expand Up @@ -1917,28 +1924,28 @@
]
},
{
"name": "description",
"name": "content",
"scoped": true,
"description": "Use this slot to replace description template.",
"description": "Use this slot to replace content template.",
"bindings": [
{
"name": "hasDescription",
"name": "hasContent",
"title": "binding"
},
{
"name": "textDescriptionAttrs",
"name": "textContentAttrs",
"title": "binding"
},
{
"name": "description",
"name": "content",
"title": "binding"
}
]
},
{
"name": "actions",
"scoped": true,
"description": "Use this slot to replace actions template.",
"description": "Use this slot to replace header template.",
"bindings": [
{
"name": "hasActions",
Expand Down
12 changes: 12 additions & 0 deletions docs/releases/v1.9.x/v1.9.0/changelog.stories.mdx.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Meta } from '@storybook/blocks';

<Meta title="Releases/v1.9.x/v1.9.0/Changelog"/>

# 1.9.0 (July 10, 2024)

## ⛔️ Breaking Changes
* rename `description` slot to `content` in `UiModal` and focus to the first focusable element to directive `focus-trap` ([#507](https://github.com/infermedica/component-library/pull/507))

## 🧹 Chores
* update pnpm/action-setup to fix GH actions ([#508](https://github.com/infermedica/component-library/pull/508))

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infermedica/component-library",
"version": "1.8.1",
"version": "1.9.0",
"description": "Vue 3 UI library for healthcare and not only.",
"license": "MIT",
"sideEffects": [
Expand Down

0 comments on commit 68d82cb

Please sign in to comment.