diff --git a/.github/workflows/beta-publish-ng14.yml b/.github/workflows/beta-publish-ng14.yml index bfb6ac3f37..aa2d16734b 100644 --- a/.github/workflows/beta-publish-ng14.yml +++ b/.github/workflows/beta-publish-ng14.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_draft_version=$( - (npm view @prizm-ui/components versions --tag ng14beta --json 2>/dev/null || echo '1.18.1-ng14beta.0') | jq '([.[] | select(startswith("1.18.1-ng14beta"))] | last // "1.18.1-ng14beta.0")' 2>/dev/null || echo '1.18.1-ng14beta.0' + (npm view @prizm-ui/components versions --tag ng14beta --json 2>/dev/null || echo '1.19.0-ng14beta.0') | jq '([.[] | select(startswith("1.19.0-ng14beta"))] | last // "1.19.0-ng14beta.0")' 2>/dev/null || echo '1.19.0-ng14beta.0' ) echo "LAST_DRAFT_VERSION=${last_draft_version}" >> $GITHUB_ENV diff --git a/.github/workflows/beta-publish-ng15.yml b/.github/workflows/beta-publish-ng15.yml index 986dd0ee17..f81b7abf18 100644 --- a/.github/workflows/beta-publish-ng15.yml +++ b/.github/workflows/beta-publish-ng15.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_draft_version=$( - (npm view @prizm-ui/components versions --tag ng15beta --json 2>/dev/null || echo '2.15.1-ng15beta.0') | jq '([.[] | select(startswith("2.15.1-ng15beta"))] | last // "2.15.1-ng15beta.0")' 2>/dev/null || echo '2.15.1-ng15beta.0' + (npm view @prizm-ui/components versions --tag ng15beta --json 2>/dev/null || echo '2.16.0-ng15beta.0') | jq '([.[] | select(startswith("2.16.0-ng15beta"))] | last // "2.16.0-ng15beta.0")' 2>/dev/null || echo '2.16.0-ng15beta.0' ) echo "LAST_DRAFT_VERSION=${last_draft_version}" >> $GITHUB_ENV diff --git a/.github/workflows/beta-publish-ng16.yml b/.github/workflows/beta-publish-ng16.yml index 990a06a0ea..589b7afaa2 100644 --- a/.github/workflows/beta-publish-ng16.yml +++ b/.github/workflows/beta-publish-ng16.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_draft_version=$( - (npm view @prizm-ui/components versions --tag ng16beta --json 2>/dev/null || echo '3.14.1-beta.0') | jq '([.[] | select(startswith("3.14.1-beta"))] | last // "3.14.1-beta.0")' 2>/dev/null || echo '3.14.1-beta.0' + (npm view @prizm-ui/components versions --tag ng16beta --json 2>/dev/null || echo '3.15.0-beta.0') | jq '([.[] | select(startswith("3.15.0-beta"))] | last // "3.15.0-beta.0")' 2>/dev/null || echo '3.15.0-beta.0' ) echo "LAST_DRAFT_VERSION=${last_draft_version}" >> $GITHUB_ENV diff --git a/.github/workflows/main-publish-ng14.yml b/.github/workflows/main-publish-ng14.yml index 65491c8496..a1477fc2d7 100644 --- a/.github/workflows/main-publish-ng14.yml +++ b/.github/workflows/main-publish-ng14.yml @@ -58,7 +58,7 @@ jobs: - name: Set up environment variables run: | last_v1_version=$( - echo '1.18.1' + echo '1.19.0' ) echo "LAST_V1_VERSION=${last_v1_version}" >> $GITHUB_ENV diff --git a/.github/workflows/main-publish-ng15.yml b/.github/workflows/main-publish-ng15.yml index 9c1cb16ff7..d216289de8 100644 --- a/.github/workflows/main-publish-ng15.yml +++ b/.github/workflows/main-publish-ng15.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_v2_version=$( - echo '2.15.1' + echo '2.16.0' ) echo "LAST_V2_VERSION=${last_v2_version}" >> $GITHUB_ENV diff --git a/.github/workflows/main-publish-ng16.yml b/.github/workflows/main-publish-ng16.yml index 3e6f3d8879..79cf95f5f2 100644 --- a/.github/workflows/main-publish-ng16.yml +++ b/.github/workflows/main-publish-ng16.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_v3_version=$( - echo '3.14.1' + echo '3.15.0' ) echo "LAST_V3_VERSION=${last_v3_version}" >> $GITHUB_ENV diff --git a/.github/workflows/pre-release-publish-ng14.yml b/.github/workflows/pre-release-publish-ng14.yml index ea59c1385d..979d923298 100644 --- a/.github/workflows/pre-release-publish-ng14.yml +++ b/.github/workflows/pre-release-publish-ng14.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_next_version=$( - (npm view @prizm-ui/components versions --tag ng14next --json 2>/dev/null || echo '1.18.1-ng14next.0') | jq '([.[] | select(startswith("1.18.1-ng14next"))] | last // "1.18.1-ng14next.0")' 2>/dev/null || echo '1.18.1-ng14next.0' + (npm view @prizm-ui/components versions --tag ng14next --json 2>/dev/null || echo '1.19.0-ng14next.0') | jq '([.[] | select(startswith("1.19.0-ng14next"))] | last // "1.19.0-ng14next.0")' 2>/dev/null || echo '1.19.0-ng14next.0' ) echo "LAST_NEXT_VERSION=${last_next_version}" >> $GITHUB_ENV diff --git a/.github/workflows/pre-release-publish-ng15.yml b/.github/workflows/pre-release-publish-ng15.yml index 43bee27a9f..afb7608423 100644 --- a/.github/workflows/pre-release-publish-ng15.yml +++ b/.github/workflows/pre-release-publish-ng15.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_next_version=$( - (npm view @prizm-ui/components versions --tag ng15next --json 2>/dev/null || echo '2.15.1-ng15next.0') | jq '([.[] | select(startswith("2.15.1-ng15next"))] | last // "2.15.1-ng15next.0")' 2>/dev/null || echo '2.15.1-ng15next.0' + (npm view @prizm-ui/components versions --tag ng15next --json 2>/dev/null || echo '2.16.0-ng15next.0') | jq '([.[] | select(startswith("2.16.0-ng15next"))] | last // "2.16.0-ng15next.0")' 2>/dev/null || echo '2.16.0-ng15next.0' ) echo "LAST_NEXT_VERSION=${last_next_version}" >> $GITHUB_ENV diff --git a/.github/workflows/pre-release-publish-ng16.yml b/.github/workflows/pre-release-publish-ng16.yml index 6fd7855d05..7884f96413 100644 --- a/.github/workflows/pre-release-publish-ng16.yml +++ b/.github/workflows/pre-release-publish-ng16.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_next_version=$( - (npm view @prizm-ui/components versions --tag ng16next --json 2>/dev/null || echo '3.14.1-next.0') | jq '([.[] | select(startswith("3.14.1-next"))] | last // "3.14.1-next.0")' 2>/dev/null || echo '3.14.1-next.0' + (npm view @prizm-ui/components versions --tag ng16next --json 2>/dev/null || echo '3.15.0-next.0') | jq '([.[] | select(startswith("3.15.0-next"))] | last // "3.15.0-next.0")' 2>/dev/null || echo '3.15.0-next.0' ) echo "LAST_NEXT_VERSION=${last_next_version}" >> $GITHUB_ENV diff --git a/apps/doc/src/app/about-prizm/changelog/CHANGELOG.md b/apps/doc/src/app/about-prizm/changelog/CHANGELOG.md index 09193ffa95..40428b3afa 100644 --- a/apps/doc/src/app/about-prizm/changelog/CHANGELOG.md +++ b/apps/doc/src/app/about-prizm/changelog/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [1.19.0, 2.15.0, 3.15.0](https://github.com/zyfra/Prizm) (22-07-2024) + +### Features + +- feat(components/paginator): update paginator dictionary #1840 BREAKING CHANGE in dictionary -[here](https://github.com/zyfra/Prizm/discussions/1617) + +### Bug Fixes + +- fix(components/switcher): fix async support for selected switcher #1476 +- fix(components/tree): incorrect markup fix #1742 Note: markup is update can affect tree component in project +- fix(components/input-text): incorrect behavior occurring in PrizmInputComponent when NgxMaskDirective is applied and the value changes from an empty state. #1190 +- fix(components/multiselect): checkboxes are blinking on elements click #1718 +- fix(components/switcher): write value error fixed #1890 + ## [1.18.1, 2.15.1, 3.14.1](https://github.com/zyfra/Prizm) (20-06-2024) ### Bug Fixes diff --git a/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.html b/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.html index 5d451f2ff0..e05a7715ae 100644 --- a/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.html +++ b/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.html @@ -3,3 +3,7 @@
Value: {{ control.value }}
+ +
+ + diff --git a/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.ts b/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.ts index 83ecc7ad7b..6e88a6201f 100644 --- a/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.ts +++ b/apps/doc/src/app/components/switcher/examples/switcher-basic-example/switcher-basic-example.component.ts @@ -27,4 +27,8 @@ export class SwitcherBasicExampleComponent { }, ]; public readonly control = new FormControl(1); + + public updateValue() { + this.control.setValue(3); + } } diff --git a/apps/doc/src/app/version-manager/current.const.ts.ng14 b/apps/doc/src/app/version-manager/current.const.ts.ng14 index e31d9fccbe..0e43d64c4b 100644 --- a/apps/doc/src/app/version-manager/current.const.ts.ng14 +++ b/apps/doc/src/app/version-manager/current.const.ts.ng14 @@ -1 +1 @@ -export const PRIZM_CURRENT_VERSION = '1.18.1'; +export const PRIZM_CURRENT_VERSION = '1.19.0'; diff --git a/apps/doc/src/app/version-manager/current.const.ts.ng15 b/apps/doc/src/app/version-manager/current.const.ts.ng15 index 9c1825ac33..d918baf8fc 100644 --- a/apps/doc/src/app/version-manager/current.const.ts.ng15 +++ b/apps/doc/src/app/version-manager/current.const.ts.ng15 @@ -1 +1 @@ -export const PRIZM_CURRENT_VERSION = '2.15.1'; +export const PRIZM_CURRENT_VERSION = '2.16.0'; diff --git a/apps/doc/src/app/version-manager/current.const.ts.ng16 b/apps/doc/src/app/version-manager/current.const.ts.ng16 index e8d8931ec3..9ebcd2fa69 100644 --- a/apps/doc/src/app/version-manager/current.const.ts.ng16 +++ b/apps/doc/src/app/version-manager/current.const.ts.ng16 @@ -1 +1 @@ -export const PRIZM_CURRENT_VERSION = '3.14.1'; +export const PRIZM_CURRENT_VERSION = '3.15.0'; diff --git a/apps/doc/src/app/version-manager/versions.constants.ts b/apps/doc/src/app/version-manager/versions.constants.ts index e523ed51b9..3976e768de 100644 --- a/apps/doc/src/app/version-manager/versions.constants.ts +++ b/apps/doc/src/app/version-manager/versions.constants.ts @@ -23,18 +23,18 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [ }, }, { - label: '3.14.1 (ng16)', - version: '3.14.1', + label: '3.15.0 (ng16)', + version: '3.15.0', stackblitz: 'https://stackblitz.com/edit/prizm-v3-demo', - link: getDocSite.bind(null, 'http://3.14.1.doc.prizm.site', 'https://prizm-v3.web.app'), + link: getDocSite.bind(null, 'http://3.15.0.doc.prizm.site', 'https://prizm-v3.web.app'), otherLinks: [new URL('https://prizm-v3.web.app')], cb: (hostName: string, current: PrizmVersionMeta) => { return hostName.startsWith('prizm-v3--'); }, }, { - label: '2.15.1 (ng15)', - version: '2.15.1', + label: '2.16.0 (ng15)', + version: '2.16.0', stackblitz: 'https://stackblitz.com/edit/prizm-v2-demo', link: getDocSite.bind(null, 'http://2.14.2.doc.prizm.site', 'https://prizm-v2.web.app'), otherLinks: [], @@ -43,8 +43,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [ }, }, { - label: '1.18.1 (ng14)', - version: '1.18.1', + label: '1.19.0 (ng14)', + version: '1.19.0', stackblitz: 'https://stackblitz.com/edit/prizm-v1-demo', link: getDocSite.bind(null, 'http://1.17.2.doc.prizm.site', 'https://prizm-v1.web.app'), otherLinks: [], diff --git a/libs/ast/package.json.ng14 b/libs/ast/package.json.ng14 index 05843876d2..ff0ab7f4cd 100644 --- a/libs/ast/package.json.ng14 +++ b/libs/ast/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/ast", - "version": "1.18.1", + "version": "1.19.0", "private": false, "publishConfig": { "access": "public", diff --git a/libs/ast/package.json.ng15 b/libs/ast/package.json.ng15 index 113b5ce008..e73b0a01e1 100644 --- a/libs/ast/package.json.ng15 +++ b/libs/ast/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/ast", - "version": "2.15.1", + "version": "2.16.0", "private": false, "publishConfig": { "access": "public", diff --git a/libs/ast/package.json.ng16 b/libs/ast/package.json.ng16 index 80d06cad94..4b5bd23bb2 100644 --- a/libs/ast/package.json.ng16 +++ b/libs/ast/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/ast", - "version": "3.14.1", + "version": "3.15.0", "private": false, "publishConfig": { "access": "public", diff --git a/libs/charts/base/package.json.ng14 b/libs/charts/base/package.json.ng14 index 0642b41384..373b392452 100644 --- a/libs/charts/base/package.json.ng14 +++ b/libs/charts/base/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/charts", - "version": "1.18.1", + "version": "1.19.0", "license": "MIT", "private": false, "publishConfig": { @@ -11,8 +11,8 @@ "lodash-es": "^4.17.21", "@angular/common": "^14.2.0", "@angular/core": "^14.2.0", - "@prizm-ui/theme": "^1.18.1", - "@prizm-ui/helpers": "^1.18.1", + "@prizm-ui/theme": "^1.19.0", + "@prizm-ui/helpers": "^1.19.0", "@antv/g2plot": "^2.4.22" }, "dependencies": { diff --git a/libs/charts/base/package.json.ng15 b/libs/charts/base/package.json.ng15 index 5885f75bcc..d291e9f678 100644 --- a/libs/charts/base/package.json.ng15 +++ b/libs/charts/base/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/charts", - "version": "2.15.1", + "version": "2.16.0", "license": "MIT", "private": false, "publishConfig": { @@ -11,8 +11,8 @@ "lodash-es": "^4.17.21", "@angular/common": "^15.2.0", "@angular/core": "^15.2.0", - "@prizm-ui/theme": "^2.15.1", - "@prizm-ui/helpers": "^2.15.1", + "@prizm-ui/theme": "^2.16.0", + "@prizm-ui/helpers": "^2.16.0", "@antv/g2plot": "^2.4.22" }, "dependencies": { diff --git a/libs/charts/base/package.json.ng16 b/libs/charts/base/package.json.ng16 index fa2aa54444..1a4186debd 100644 --- a/libs/charts/base/package.json.ng16 +++ b/libs/charts/base/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/charts", - "version": "3.14.1", + "version": "3.15.0", "license": "MIT", "private": false, "publishConfig": { @@ -11,8 +11,8 @@ "lodash-es": "^4.17.21", "@angular/common": "^16.1.0 || ^16.2.0", "@angular/core": "^16.1.0 || ^16.2.0", - "@prizm-ui/theme": "^3.14.1", - "@prizm-ui/helpers": "^3.14.1", + "@prizm-ui/theme": "^3.15.0", + "@prizm-ui/helpers": "^3.15.0", "@antv/g2plot": "^2.4.22" }, "dependencies": { diff --git a/libs/components/package.json.ng14 b/libs/components/package.json.ng14 index 16505fcca4..f44bd15b98 100644 --- a/libs/components/package.json.ng14 +++ b/libs/components/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/components", - "version": "1.18.1", + "version": "1.19.0", "description": "Prizm UI system design components library http://prizm.zyfra.com", "license": "MIT", "private": false, @@ -17,10 +17,10 @@ "@ng-web-apis/resize-observer": "2.0.0", "@ng-web-apis/intersection-observer": "2.0.0", "@ng-web-apis/mutation-observer": "2.0.0", - "@prizm-ui/helpers": "^1.18.1", - "@prizm-ui/core": "^1.18.1", - "@prizm-ui/i18n": "^1.18.1", - "@prizm-ui/theme": "^1.18.1" + "@prizm-ui/helpers": "^1.19.0", + "@prizm-ui/core": "^1.19.0", + "@prizm-ui/i18n": "^1.19.0", + "@prizm-ui/theme": "^1.19.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/components/package.json.ng15 b/libs/components/package.json.ng15 index bbd4ba0da1..8d25fc9b38 100644 --- a/libs/components/package.json.ng15 +++ b/libs/components/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/components", - "version": "2.15.1", + "version": "2.16.0", "description": "Prizm UI system design components library http://prizm.zyfra.com", "license": "MIT", "private": false, @@ -18,10 +18,10 @@ "@ng-web-apis/resize-observer": "2.0.0", "@ng-web-apis/intersection-observer": "2.0.0", "@ng-web-apis/mutation-observer": "2.0.0", - "@prizm-ui/helpers": "^2.15.1", - "@prizm-ui/core": "^2.15.1", - "@prizm-ui/i18n": "^2.15.1", - "@prizm-ui/theme": "^2.15.1" + "@prizm-ui/helpers": "^2.16.0", + "@prizm-ui/core": "^2.16.0", + "@prizm-ui/i18n": "^2.16.0", + "@prizm-ui/theme": "^2.16.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/components/package.json.ng16 b/libs/components/package.json.ng16 index 6212a5589f..38587db8b6 100644 --- a/libs/components/package.json.ng16 +++ b/libs/components/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/components", - "version": "3.14.1", + "version": "3.15.0", "description": "Prizm UI system design components library http://prizm.zyfra.com", "license": "MIT", "private": false, @@ -18,10 +18,10 @@ "@ng-web-apis/resize-observer": "^3.0.0", "@ng-web-apis/intersection-observer": "^3.0.0", "@ng-web-apis/mutation-observer": "^3.0.0", - "@prizm-ui/helpers": "^3.14.1", - "@prizm-ui/core": "^3.14.1", - "@prizm-ui/i18n": "^3.14.1", - "@prizm-ui/theme": "^3.14.1" + "@prizm-ui/helpers": "^3.15.0", + "@prizm-ui/core": "^3.15.0", + "@prizm-ui/i18n": "^3.15.0", + "@prizm-ui/theme": "^3.15.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/components/src/lib/components/switcher/switcher.component.ts b/libs/components/src/lib/components/switcher/switcher.component.ts index 5274d71f88..8306bdf97d 100644 --- a/libs/components/src/lib/components/switcher/switcher.component.ts +++ b/libs/components/src/lib/components/switcher/switcher.component.ts @@ -98,7 +98,14 @@ export class PrizmSwitcherComponent extends PrizmAbstractTestId implements Contr } public writeValue(idx: string): void { - this.selectedSwitcherIdx = parseInt(idx); + const selectedSwitcherIdx = parseInt(idx); + if (!this.isIndexValid(selectedSwitcherIdx, this.switchers)) { + this.logIndexValidationError("value is out of bound and can't be set"); + return; + } + + this.selectedSwitcherIdx_ = selectedSwitcherIdx; + this.cdRef.markForCheck(); } public registerOnChange(fn: (value: number) => void): void { this.onChange = fn; diff --git a/libs/core/package.json.ng14 b/libs/core/package.json.ng14 index b47f24b3f9..a010a59867 100644 --- a/libs/core/package.json.ng14 +++ b/libs/core/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/core", - "version": "1.18.1", + "version": "1.19.0", "license": "MIT", "description": "The main library for creating Angular components and elements using Prizm.", "private": false, diff --git a/libs/core/package.json.ng15 b/libs/core/package.json.ng15 index cf2e87358c..29be5fcc08 100644 --- a/libs/core/package.json.ng15 +++ b/libs/core/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/core", - "version": "2.15.1", + "version": "2.16.0", "license": "MIT", "description": "The main library for creating Angular components and elements using Prizm.", "private": false, diff --git a/libs/core/package.json.ng16 b/libs/core/package.json.ng16 index 4927ae4e55..a783266d02 100644 --- a/libs/core/package.json.ng16 +++ b/libs/core/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/core", - "version": "3.14.1", + "version": "3.15.0", "license": "MIT", "description": "The main library for creating Angular components and elements using Prizm.", "private": false, diff --git a/libs/helpers/package.json.ng14 b/libs/helpers/package.json.ng14 index 8b9ace64f3..0400dd2ad4 100644 --- a/libs/helpers/package.json.ng14 +++ b/libs/helpers/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/helpers", - "version": "1.18.1", + "version": "1.19.0", "license": "MIT", "description": "Library to make it easy to create Angular applications. Contains Injectables Service, RxJS utilities, directives, and standard pipes.", "private": false, diff --git a/libs/helpers/package.json.ng15 b/libs/helpers/package.json.ng15 index 515750a5bb..d24cfe26db 100644 --- a/libs/helpers/package.json.ng15 +++ b/libs/helpers/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/helpers", - "version": "2.15.1", + "version": "2.16.0", "license": "MIT", "description": "Library to make it easy to create Angular applications. Contains Injectables Service, RxJS utilities, directives, and standard pipes.", "private": false, diff --git a/libs/helpers/package.json.ng16 b/libs/helpers/package.json.ng16 index cdf1eec1a5..af79af6e55 100644 --- a/libs/helpers/package.json.ng16 +++ b/libs/helpers/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/helpers", - "version": "3.14.1", + "version": "3.15.0", "license": "MIT", "description": "Library to make it easy to create Angular applications. Contains Injectables Service, RxJS utilities, directives, and standard pipes.", "private": false, diff --git a/libs/i18n/package.json.ng14 b/libs/i18n/package.json.ng14 index 6fdd1f831c..1a17a5bd66 100644 --- a/libs/i18n/package.json.ng14 +++ b/libs/i18n/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/i18n", - "version": "1.18.1", + "version": "1.19.0", "peerDependencies": { "@angular/core": "^14.2.0" }, diff --git a/libs/i18n/package.json.ng15 b/libs/i18n/package.json.ng15 index db4a337614..45e4975619 100644 --- a/libs/i18n/package.json.ng15 +++ b/libs/i18n/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/i18n", - "version": "2.15.1", + "version": "2.16.0", "peerDependencies": { "@angular/common": "^15.2.0", "@angular/core": "^15.2.0" diff --git a/libs/i18n/package.json.ng16 b/libs/i18n/package.json.ng16 index 7afdbbc84f..4a67d21533 100644 --- a/libs/i18n/package.json.ng16 +++ b/libs/i18n/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/i18n", - "version": "3.14.1", + "version": "3.15.0", "peerDependencies": { "@angular/common": "^16.1.0 || ^16.2.0", "@angular/core": "^16.1.0 || ^16.2.0" diff --git a/libs/icons/base/package.json.ng14 b/libs/icons/base/package.json.ng14 index c48ec9cd13..3498b7abbb 100644 --- a/libs/icons/base/package.json.ng14 +++ b/libs/icons/base/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/icons", - "version": "1.18.1", + "version": "1.19.0", "description": "Prizm UI base icon pack library http://prizm.zyfra.com", "private": false, "publishConfig": { @@ -10,7 +10,7 @@ "peerDependencies": { "@angular/common": "^14.2.0", "@angular/core": "^14.2.0", - "@prizm-ui/core": "^1.18.1" + "@prizm-ui/core": "^1.19.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/icons/base/package.json.ng15 b/libs/icons/base/package.json.ng15 index 70f8dc225e..00056c0a28 100644 --- a/libs/icons/base/package.json.ng15 +++ b/libs/icons/base/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/icons", - "version": "2.15.1", + "version": "2.16.0", "description": "Prizm UI base icon pack library http://prizm.zyfra.com", "private": false, "publishConfig": { @@ -10,7 +10,7 @@ "peerDependencies": { "@angular/common": "^15.2.0", "@angular/core": "^15.2.0", - "@prizm-ui/core": "^2.15.1" + "@prizm-ui/core": "^2.16.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/icons/base/package.json.ng16 b/libs/icons/base/package.json.ng16 index 07e58bbd5d..ba189c82e1 100644 --- a/libs/icons/base/package.json.ng16 +++ b/libs/icons/base/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/icons", - "version": "3.14.1", + "version": "3.15.0", "description": "Prizm UI base icon pack library http://prizm.zyfra.com", "private": false, "publishConfig": { @@ -10,7 +10,7 @@ "peerDependencies": { "@angular/common": "^16.1.0 || ^16.2.0", "@angular/core": "^16.1.0 || ^16.2.0", - "@prizm-ui/core": "^3.14.1" + "@prizm-ui/core": "^3.15.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/icons/flags/package.json.ng14 b/libs/icons/flags/package.json.ng14 index 9f4c7d5501..cd7d7f86d5 100644 --- a/libs/icons/flags/package.json.ng14 +++ b/libs/icons/flags/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/flag-icons", - "version": "1.18.1", + "version": "1.19.0", "description": "Prizm UI flags icon pack library http://prizm.zyfra.com", "private": false, "publishConfig": { @@ -10,7 +10,7 @@ "peerDependencies": { "@angular/common": "^14.2.0", "@angular/core": "^14.2.0", - "@prizm-ui/core": "^1.18.1" + "@prizm-ui/core": "^1.19.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/icons/flags/package.json.ng15 b/libs/icons/flags/package.json.ng15 index c5a0fa833c..b1cc8ec8f2 100644 --- a/libs/icons/flags/package.json.ng15 +++ b/libs/icons/flags/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/flag-icons", - "version": "2.15.1", + "version": "2.16.0", "description": "Prizm UI flags icon pack library http://prizm.zyfra.com", "private": false, "publishConfig": { @@ -10,7 +10,7 @@ "peerDependencies": { "@angular/common": "^15.2.0", "@angular/core": "^15.2.0", - "@prizm-ui/core": "^2.15.1" + "@prizm-ui/core": "^2.16.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/icons/flags/package.json.ng16 b/libs/icons/flags/package.json.ng16 index 12ede225db..67d6b2879f 100644 --- a/libs/icons/flags/package.json.ng16 +++ b/libs/icons/flags/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/flag-icons", - "version": "3.14.1", + "version": "3.15.0", "description": "Prizm UI flags icon pack library http://prizm.zyfra.com", "private": false, "publishConfig": { @@ -10,7 +10,7 @@ "peerDependencies": { "@angular/common": "^16.1.0 || ^16.2.0", "@angular/core": "^16.1.0 || ^16.2.0", - "@prizm-ui/core": "^3.14.1" + "@prizm-ui/core": "^3.15.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/nxmv/package.json.ng14 b/libs/nxmv/package.json.ng14 index 39557a7acc..1b875d263e 100644 --- a/libs/nxmv/package.json.ng14 +++ b/libs/nxmv/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/nx-mv", - "version": "1.18.1", + "version": "1.19.0", "main": "src/index.js", "private": false, "publishConfig": { diff --git a/libs/nxmv/package.json.ng15 b/libs/nxmv/package.json.ng15 index e2b944411a..bd40152af8 100644 --- a/libs/nxmv/package.json.ng15 +++ b/libs/nxmv/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/nx-mv", - "version": "2.15.1", + "version": "2.16.0", "main": "src/index.js", "private": false, "publishConfig": { diff --git a/libs/nxmv/package.json.ng16 b/libs/nxmv/package.json.ng16 index 9aecce1b29..3d3f00ce8b 100644 --- a/libs/nxmv/package.json.ng16 +++ b/libs/nxmv/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/nx-mv", - "version": "3.14.1", + "version": "3.15.0", "main": "src/index.js", "private": false, "publishConfig": { diff --git a/libs/plugin/package.json.ng14 b/libs/plugin/package.json.ng14 index 0473ee619d..b1facdd172 100644 --- a/libs/plugin/package.json.ng14 +++ b/libs/plugin/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/nx-plugin", - "version": "1.18.1", + "version": "1.19.0", "main": "src/index.js", "private": false, "publishConfig": { @@ -10,6 +10,6 @@ "generators": "./generators.json", "executors": "./executors.json", "peerDependencies": { - "@prizm-ui/ast": "^1.18.1" + "@prizm-ui/ast": "^1.19.0" } } diff --git a/libs/plugin/package.json.ng15 b/libs/plugin/package.json.ng15 index 1e0dc5ea0b..591321ca95 100644 --- a/libs/plugin/package.json.ng15 +++ b/libs/plugin/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/nx-plugin", - "version": "2.15.1", + "version": "2.16.0", "main": "src/index.js", "private": false, "publishConfig": { @@ -10,6 +10,6 @@ "generators": "./generators.json", "executors": "./executors.json", "peerDependencies": { - "@prizm-ui/ast": "^2.15.1" + "@prizm-ui/ast": "^2.16.0" } } diff --git a/libs/plugin/package.json.ng16 b/libs/plugin/package.json.ng16 index 2cc26984f2..bd8d79cc61 100644 --- a/libs/plugin/package.json.ng16 +++ b/libs/plugin/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/nx-plugin", - "version": "3.14.1", + "version": "3.15.0", "main": "src/index.js", "private": false, "publishConfig": { @@ -10,6 +10,6 @@ "generators": "./generators.json", "executors": "./executors.json", "peerDependencies": { - "@prizm-ui/ast": "^3.14.1" + "@prizm-ui/ast": "^3.15.0" } } diff --git a/libs/schematics/package.json.ng14 b/libs/schematics/package.json.ng14 index e55cf7ecfc..15f30a37e0 100644 --- a/libs/schematics/package.json.ng14 +++ b/libs/schematics/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/install", - "version": "1.18.1", + "version": "1.19.0", "description": "Package installer @prizm-ui/* , Angular schematic ng-add", "schematics": "./src/collection.json", "private": false, diff --git a/libs/schematics/package.json.ng15 b/libs/schematics/package.json.ng15 index 533b12baa4..e6565e4b16 100644 --- a/libs/schematics/package.json.ng15 +++ b/libs/schematics/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/install", - "version": "2.15.1", + "version": "2.16.0", "description": "Package installer @prizm-ui/* , Angular schematic ng-add", "schematics": "./src/collection.json", "private": false, diff --git a/libs/schematics/package.json.ng16 b/libs/schematics/package.json.ng16 index bab785b73a..f793071a61 100644 --- a/libs/schematics/package.json.ng16 +++ b/libs/schematics/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/install", - "version": "3.14.1", + "version": "3.15.0", "description": "Package installer @prizm-ui/* , Angular schematic ng-add", "schematics": "./src/collection.json", "private": false, diff --git a/libs/theme/package.json.ng14 b/libs/theme/package.json.ng14 index 7e9249c2ec..8bb94070ef 100644 --- a/libs/theme/package.json.ng14 +++ b/libs/theme/package.json.ng14 @@ -1,11 +1,11 @@ { "name": "@prizm-ui/theme", - "version": "1.18.1", + "version": "1.19.0", "peerDependencies": { "@angular/common": "^14.2.0", "@angular/core": "^14.2.0", - "@prizm-ui/core": "^1.18.1", - "@prizm-ui/helpers": "^1.18.1" + "@prizm-ui/core": "^1.19.0", + "@prizm-ui/helpers": "^1.19.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/theme/package.json.ng15 b/libs/theme/package.json.ng15 index d141d39971..9fba86aaf1 100644 --- a/libs/theme/package.json.ng15 +++ b/libs/theme/package.json.ng15 @@ -1,11 +1,11 @@ { "name": "@prizm-ui/theme", - "version": "2.15.1", + "version": "2.16.0", "peerDependencies": { "@angular/common": "^15.2.0", "@angular/core": "^15.2.0", - "@prizm-ui/core": "^2.15.1", - "@prizm-ui/helpers": "^2.15.1" + "@prizm-ui/core": "^2.16.0", + "@prizm-ui/helpers": "^2.16.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/theme/package.json.ng16 b/libs/theme/package.json.ng16 index b469758042..9778a1584e 100644 --- a/libs/theme/package.json.ng16 +++ b/libs/theme/package.json.ng16 @@ -1,11 +1,11 @@ { "name": "@prizm-ui/theme", - "version": "3.14.1", + "version": "3.15.0", "peerDependencies": { "@angular/common": "^16.1.0 || ^16.2.0", "@angular/core": "^16.1.0 || ^16.2.0", - "@prizm-ui/core": "^3.14.1", - "@prizm-ui/helpers": "^3.14.1" + "@prizm-ui/core": "^3.15.0", + "@prizm-ui/helpers": "^3.15.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/package.json.ng14 b/package.json.ng14 index 5b23f15980..7f17883963 100644 --- a/package.json.ng14 +++ b/package.json.ng14 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/sdk", - "version": "1.18.1", + "version": "1.19.0", "license": "MIT", "husky": { "hooks": { diff --git a/package.json.ng15 b/package.json.ng15 index 7f0cbab369..4f35e6ccca 100644 --- a/package.json.ng15 +++ b/package.json.ng15 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/sdk", - "version": "2.15.1", + "version": "2.16.0", "license": "MIT", "husky": { "hooks": { diff --git a/package.json.ng16 b/package.json.ng16 index da5e55913c..3d5c376180 100644 --- a/package.json.ng16 +++ b/package.json.ng16 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/sdk", - "version": "3.14.1", + "version": "3.15.0", "license": "MIT", "husky": { "hooks": {