Skip to content

Commit

Permalink
chore(deps): bump ng & nx deps (#814)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbordeanu authored Aug 2, 2022
1 parent 6528d1a commit 43c641b
Show file tree
Hide file tree
Showing 37 changed files with 10,389 additions and 8,657 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pr-build-wc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
paths:
- 'libs/web-components/**'
- '.storybook/**'
- 'themes/fds-theme/**'
- 'package.json'

jobs:
build:
Expand Down
8 changes: 4 additions & 4 deletions libs/angular-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"directory": "libs/angular-components"
},
"peerDependencies": {
"@angular/common": "14.0.5",
"@angular/core": "14.0.5",
"@angular/forms": "14.0.5",
"@angular/cdk": "^14.0.4",
"@angular/common": "^14.1.0",
"@angular/core": "^14.1.0",
"@angular/forms": "^14.1.0",
"@angular/cdk": "^14.1.0",
"@angular/flex-layout": "^14.0.0-beta.40",
"lodash-es": "^4.17.21",
"angular-plotly.js": "^4.0.0",
Expand Down
6 changes: 3 additions & 3 deletions libs/web-components/account-card/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@finastra/divider": "0.0.36",
"@material/mwc-icon": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1",
"@finastra/divider": "^0.0.34",
"@material/mwc-icon": "^0.26.1"
"tslib": "^2.0.1"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/app-bar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@finastra/logo": "0.0.36",
"@material/mwc-top-app-bar": "^0.25.3",
"@material/mwc-top-app-bar": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
6 changes: 3 additions & 3 deletions libs/web-components/autocomplete/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"dependencies": {
"@finastra/menu": "0.0.36",
"@finastra/search-input": "0.0.36",
"@material/mwc-base": "0.25.3",
"@material/mwc-icon": "0.25.3",
"@material/mwc-menu": "0.25.3",
"@material/mwc-base": "^0.26.1",
"@material/mwc-icon": "^0.26.1",
"@material/mwc-menu": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/autocomplete/src/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class Autocomplete extends LitElement {
}

protected onMenuSelected() {
const selectedItem = this.menuElement?.selected as ListItem;
const selectedItem = this.menuElement?.selected as unknown as ListItem;
if (selectedItem) {
this.value = selectedItem.value;
}
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/autocomplete/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@include fds.mdc(text-field-disabled-fill-color, surface-disabled);
@include fds.mdc(text-field-disabled-line-color, on-surface-disabled);
@include fds.mdc(text-field-disabled-ink-color, on-surface-disabled);

::slotted(.mwc-list-item__hide) {
display: none;
}
Expand Down
8 changes: 4 additions & 4 deletions libs/web-components/autocomplete/test/autocomplete.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { html, fixture, expect, elementUpdated, triggerFocusFor, triggerBlurFor, oneEvent } from '@open-wc/testing';
import { Autocomplete } from '../src/autocomplete.js';
import { Menu } from '@material/mwc-menu';
import '../src/autocomplete.js';
import { elementUpdated, expect, fixture, html, oneEvent, triggerBlurFor, triggerFocusFor } from '@open-wc/testing';
import { SearchInput } from '../../search-input/dist/src/search-input.js';
import '../src/autocomplete.js';
import { Autocomplete } from '../src/autocomplete.js';

describe('Autocomplete', () => {
let element: Autocomplete;
Expand All @@ -21,7 +21,7 @@ describe('Autocomplete', () => {
await expect(element).to.be.accessible();
});

it('should focused and blured', async () => {
it('should focus and blur', async () => {
await triggerFocusFor(element);
expect(document.activeElement === element).to.be.true;

Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/button-toggle-group/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-tab-bar": "0.25.3",
"@material/mwc-tab-bar": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/button-toggle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss src/filter-styles.scss"
},
"dependencies": {
"@material/mwc-tab": "0.25.3",
"@material/mwc-tab": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
4 changes: 2 additions & 2 deletions libs/web-components/button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"postbuild:style": "npm run build"
},
"dependencies": {
"@material/mwc-base": "0.25.3",
"@material/mwc-button": "0.25.3",
"@material/mwc-base": "^0.26.1",
"@material/mwc-button": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/checkbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@material/checkbox": "13.0.0",
"@material/mwc-checkbox": "0.25.3",
"@material/mwc-checkbox": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
7 changes: 4 additions & 3 deletions libs/web-components/chip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/button": "13.0.0",
"@material/mwc-icon": "0.25.3",
"@material/mwc-ripple": "0.25.3",
"@material/button": "^13.0.0",
"@material/mwc-button": "^0.26.1",
"@material/mwc-icon": "^0.26.1",
"@material/mwc-ripple": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
1 change: 1 addition & 0 deletions libs/web-components/circular-progress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-circular-progress": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
5 changes: 3 additions & 2 deletions libs/web-components/data-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
"@material/button": "13.0.0",
"@material/data-table": "14.0.0",
"@material/icon-button": "14.0.0",
"@material/mwc-icon": "0.25.3",
"@material/mwc-ripple": "0.25.3",
"@material/mwc-button": "^0.26.1",
"@material/mwc-icon": "^0.26.1",
"@material/mwc-ripple": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/data-table/src/data-table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { DataTableBase } from './data-table-base';
import { styles } from './data-table-styles.css';

/**
*
*
* @attr [dataSource=[]] - Array of data to display in the table.
* @attr [columns=[]] - Array of column definitions.
* @attr [columnsToDisplay=[]] - Array of column ids to display.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { DataTablePaginationBase } from "./data-table-pagination-base";
import { styles } from "./data-table-pagination-styles.css";

/**
*
*
* @attr [length=0] - Total number of items in the data source.
* @attr [pageIndex=0] - Index of the current page.
* @attr [pageSize=10] - Number of items per page.
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/dialog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-dialog": "^0.25.3",
"@material/mwc-dialog": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/fab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@material/fab": "^14.0.0",
"@material/mwc-fab": "^0.25.3",
"@material/mwc-fab": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/icon-button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-icon-button": "^0.25.3",
"@material/mwc-icon-button": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/launchpad/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@finastra/brand-card": "0.0.36",
"@finastra/button": "0.0.36",
"@finastra/menu-trigger": "0.0.36",
"@material/mwc-menu": "0.25.3",
"@material/mwc-menu": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/menu-trigger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@finastra/button": "0.0.36",
"@material/mwc-icon": "0.25.3",
"@material/mwc-icon": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-menu": "0.25.3",
"@material/mwc-menu": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/radio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-radio": "^0.25.3",
"@material/mwc-radio": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
8 changes: 4 additions & 4 deletions libs/web-components/search-input/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-circular-progress": "0.25.3",
"@material/mwc-icon": "0.25.3",
"@material/mwc-icon-button": "0.25.3",
"@material/mwc-textfield": "0.25.3",
"@material/mwc-circular-progress": "^0.26.1",
"@material/mwc-icon": "^0.26.1",
"@material/mwc-icon-button": "^0.26.1",
"@material/mwc-textfield": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-select": "^0.25.3",
"@material/mwc-select": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/sidenav/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@finastra/app-bar": "0.0.36",
"@material/mwc-drawer": "^0.25.3",
"@material/mwc-drawer": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/slider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-slider": "^0.25.3",
"@material/mwc-slider": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/switch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-switch": "0.25.3",
"@material/mwc-switch": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/tab-bar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-tab-bar": "0.25.3",
"@material/mwc-tab-bar": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/tab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@finastra/tab-bar": "0.0.36",
"@material/mwc-tab": "0.25.3",
"@material/mwc-tab": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/textarea/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-textarea": "0.25.3",
"@material/mwc-textarea": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/web-components/textfield/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:style": "node ../../../scripts/sass-to-lit-css/index.js src/styles.scss"
},
"dependencies": {
"@material/mwc-textfield": "0.25.3",
"@material/mwc-textfield": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
4 changes: 2 additions & 2 deletions libs/web-components/user-profile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"dependencies": {
"@finastra/avatar": "0.0.36",
"@finastra/divider": "0.0.36",
"@material/mwc-icon-button": "0.25.3",
"@material/mwc-menu": "0.25.3",
"@material/mwc-icon-button": "^0.26.1",
"@material/mwc-menu": "^0.26.1",
"lit": "^2.0.0",
"tslib": "^2.0.1"
},
Expand Down
Loading

0 comments on commit 43c641b

Please sign in to comment.