Skip to content

Commit

Permalink
chore: release v0.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lem-onade committed Feb 14, 2023
1 parent 9760e34 commit 4ef1192
Show file tree
Hide file tree
Showing 19 changed files with 67 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.21.2](https://github.com/digita-ai/dgt-shared/compare/v0.21.1...v0.21.2) (2023-02-14)

**Note:** Version bump only for package root





### [0.21.1](https://github.com/digita-ai/dgt-shared/compare/v0.21.0...v0.21.1) (2022-09-22)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@
}
}
},
"version": "0.21.1"
"version": "0.21.2"
}
8 changes: 8 additions & 0 deletions packages/dgt-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.21.2](https://github.com/digita-ai/dgt-shared/compare/v0.21.1...v0.21.2) (2023-02-14)

**Note:** Version bump only for package @digita-ai/dgt-components





### [0.21.1](https://github.com/digita-ai/dgt-shared/compare/v0.21.0...v0.21.1) (2022-09-22)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export class WebIdComponent extends RxLitElement {
${ this.layout === 'vertical' ? alerts : ''}
</div>
<button
tabindex="0"
part="webid-button"
class="primary"
disabled
Expand Down Expand Up @@ -122,6 +123,9 @@ export class WebIdComponent extends RxLitElement {
border-radius: var(--border-large);
height: var(--button-height);
}
button::not(disabled):hover, button::not(disabled):focus {
background-color: #518df5;
}
.webid-input-container {
display: flex;
flex-direction: column;
Expand Down
4 changes: 2 additions & 2 deletions packages/dgt-components/lib/components/forms/form.machine.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DoneInvokeEvent, MachineConfig, send, StateSchema } from 'xstate';
import { ActionObject, DoneInvokeEvent, MachineConfig, send, StateSchema } from 'xstate';
import { FormValidatorResult } from './form-validator-result';
import { FormValidator } from './form-validator';
import { addValidationResults, FormEvent, FormEvents, FormValidatedEvent, update } from './form.events';
Expand Down Expand Up @@ -98,7 +98,7 @@ export interface FormState<T> {
export const formMachine = <T>(
validator: FormValidator<T>,
submitter: FormSubmitter<T> = async (context) => context.data,
): MachineConfig<FormContext<T>, StateSchema<FormContext<T>>, FormEvent> => ({
): MachineConfig<FormContext<T>, StateSchema<FormContext<T>>, FormEvent, ActionObject<FormContext<T>, FormEvent>> => ({
id: FormActors.FORM_MACHINE,
initial: FormSubmissionStates.NOT_SUBMITTED,
states: {
Expand Down
2 changes: 1 addition & 1 deletion packages/dgt-components/package-lock.json

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

6 changes: 3 additions & 3 deletions packages/dgt-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/dgt-components",
"version": "0.21.1",
"version": "0.21.2",
"description": "Collection of Semantic Components.",
"author": "Wouter Janssens <[email protected]>",
"main": "./dist/dgt-components.umd.js",
Expand Down Expand Up @@ -30,8 +30,8 @@
},
"dependencies": {
"@appnest/lit-translate": "^1.1.18",
"@digita-ai/dgt-theme": "0.21.1",
"@digita-ai/dgt-utils": "0.21.1",
"@digita-ai/dgt-theme": "0.21.2",
"@digita-ai/dgt-utils": "0.21.2",
"@digita-ai/inrupt-solid-service": "0.19.1",
"@digita-ai/semcom-core": "^0.9.5",
"@digita-ai/semcom-sdk": "^0.9.5",
Expand Down
8 changes: 8 additions & 0 deletions packages/dgt-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.21.2](https://github.com/digita-ai/dgt-shared/compare/v0.21.1...v0.21.2) (2023-02-14)

**Note:** Version bump only for package @digita-ai/dgt-theme





### [0.21.1](https://github.com/digita-ai/dgt-shared/compare/v0.21.0...v0.21.1) (2022-09-22)

**Note:** Version bump only for package @digita-ai/dgt-theme
Expand Down
2 changes: 1 addition & 1 deletion packages/dgt-theme/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 packages/dgt-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/dgt-theme",
"version": "0.21.1",
"version": "0.21.2",
"description": "Theme for Digita projects.",
"author": "Wouter Janssens <[email protected]>",
"main": "./dist/dgt-theme.umd.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/dgt-utils-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.21.2](https://github.com/digita-ai/dgt-shared/compare/v0.21.1...v0.21.2) (2023-02-14)

**Note:** Version bump only for package @digita-ai/dgt-utils-core





### [0.21.1](https://github.com/digita-ai/dgt-shared/compare/v0.21.0...v0.21.1) (2022-09-22)

**Note:** Version bump only for package @digita-ai/dgt-utils-core
Expand Down
2 changes: 1 addition & 1 deletion packages/dgt-utils-core/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 packages/dgt-utils-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/dgt-utils-core",
"version": "0.21.1",
"version": "0.21.2",
"license": "ISC",
"scripts": {
"build": "rimraf ./dist && vite build && tsc",
Expand Down
8 changes: 8 additions & 0 deletions packages/dgt-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.21.2](https://github.com/digita-ai/dgt-shared/compare/v0.21.1...v0.21.2) (2023-02-14)

**Note:** Version bump only for package @digita-ai/dgt-utils





### [0.21.1](https://github.com/digita-ai/dgt-shared/compare/v0.21.0...v0.21.1) (2022-09-22)

**Note:** Version bump only for package @digita-ai/dgt-utils
Expand Down
2 changes: 1 addition & 1 deletion packages/dgt-utils/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 packages/dgt-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/dgt-utils",
"version": "0.21.1",
"version": "0.21.2",
"license": "ISC",
"scripts": {
"build": "rimraf ./dist && vite build && tsc && npm run build:components",
Expand Down
8 changes: 8 additions & 0 deletions packages/semcom-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.21.2](https://github.com/digita-ai/semcom/compare/v0.21.1...v0.21.2) (2023-02-14)

**Note:** Version bump only for package @digita-ai/semcom-components





### [0.21.1](https://github.com/digita-ai/semcom/compare/v0.21.0...v0.21.1) (2022-09-22)

**Note:** Version bump only for package @digita-ai/semcom-components
Expand Down
2 changes: 1 addition & 1 deletion packages/semcom-components/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 packages/semcom-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/semcom-components",
"version": "0.21.1",
"version": "0.21.2",
"description": "Collection of Semantic Components",
"author": "Wouter Termont <[email protected]>",
"main": "./dist/semcom-components.umd.js",
Expand Down

0 comments on commit 4ef1192

Please sign in to comment.