Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(chore): up version to 4.3.4 #1829

Merged
merged 4 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/beta-publish-ng17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_draft_version=$(
(npm view @prizm-ui/components versions --tag beta --json 2>/dev/null || echo '4.3.3-beta.0') | jq '([.[] | select(startswith("4.3.3-beta"))] | last // "4.3.3-beta.0")' 2>/dev/null || echo '4.3.3-beta.0'
(npm view @prizm-ui/components versions --tag beta --json 2>/dev/null || echo '4.3.4-beta.0') | jq '([.[] | select(startswith("4.3.4-beta"))] | last // "4.3.4-beta.0")' 2>/dev/null || echo '4.3.4-beta.0'
)
echo "LAST_DRAFT_VERSION=${last_draft_version}" >> $GITHUB_ENV

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-publish-ng17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_v3_version=$(
echo '4.3.3'
echo '4.3.4'
)
echo "LAST_V3_VERSION=${last_v3_version}" >> $GITHUB_ENV

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-publish-ng17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_next_version=$(
(npm view @prizm-ui/components versions --tag next --json 2>/dev/null || echo '4.3.3-next.0') | jq '([.[] | select(startswith("4.3.3-next"))] | last // "4.3.3-next.0")' 2>/dev/null || echo '4.3.3-next.0'
(npm view @prizm-ui/components versions --tag next --json 2>/dev/null || echo '4.3.4-next.0') | jq '([.[] | select(startswith("4.3.4-next"))] | last // "4.3.4-next.0")' 2>/dev/null || echo '4.3.4-next.0'
)
echo "LAST_NEXT_VERSION=${last_next_version}" >> $GITHUB_ENV

Expand Down
8 changes: 8 additions & 0 deletions apps/doc/src/app/about-prizm/changelog/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [4.3.4](https:/zyfra/Prizm) (20-06-2024)

### Bug fixes

- fix(components/input-icon-button): disabled button should not fire events #1823
- fix(components/inputs): fix markup for input icon button #1529, #1672
- fix(doc/textarea): missing border property added for textarea livedemo #1803

## [4.3.3](https:/zyfra/Prizm) (18-06-2024)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion apps/doc/src/app/version-manager/current.const.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PRIZM_CURRENT_VERSION = '4.3.3';
export const PRIZM_CURRENT_VERSION = '4.3.4';
2 changes: 1 addition & 1 deletion apps/doc/src/app/version-manager/current.const.ts.ng17
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PRIZM_CURRENT_VERSION = '4.3.3';
export const PRIZM_CURRENT_VERSION = '4.3.4';
16 changes: 8 additions & 8 deletions apps/doc/src/app/version-manager/versions.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export const PRIZM_LANGUAGES_META: readonly PrizmLanguageMeta[] = [
];
export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
{
label: '4.3.3 (ng17)',
version: '4.3.3',
label: '4.3.4 (ng17)',
version: '4.3.4',
stackblitz: 'https://stackblitz.com/edit/prizm-v4-demo',
link: getDocSite.bind(null, 'https://doc.prizm.zyfra.com', 'http://prizm.site'),

Expand All @@ -39,8 +39,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
},
},
{
label: '3.14.0 (ng16)',
version: '3.14.0',
label: '3.14.1 (ng16)',
version: '3.14.1',
stackblitz: 'https://stackblitz.com/edit/prizm-v3-demo',
link: getDocSite.bind(null, 'http://3.14.0.doc.prizm.site', 'https://prizm-v3.web.app'),
otherLinks: [],
Expand All @@ -49,8 +49,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
},
},
{
label: '2.15.0 (ng15)',
version: '2.15.0',
label: '2.15.1 (ng15)',
version: '2.15.1',
stackblitz: 'https://stackblitz.com/edit/prizm-v2-demo',
link: getDocSite.bind(null, 'http://2.15.0.doc.prizm.site', 'https://prizm-v2.web.app'),
otherLinks: [],
Expand All @@ -59,8 +59,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
},
},
{
label: '1.18.0 (ng14)',
version: '1.18.0',
label: '1.18.1 (ng14)',
version: '1.18.1',
stackblitz: 'https://stackblitz.com/edit/prizm-v1-demo',
link: getDocSite.bind(null, 'http://1.18.0.doc.prizm.site', 'https://prizm-v1.web.app'),
otherLinks: [],
Expand Down
2 changes: 1 addition & 1 deletion libs/ast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/ast",
"version": "4.3.3",
"version": "4.3.4",
"private": false,
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion libs/ast/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/ast",
"version": "4.3.3",
"version": "4.3.4",
"private": false,
"publishConfig": {
"access": "public",
Expand Down
6 changes: 3 additions & 3 deletions libs/charts/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/charts",
"version": "4.3.3",
"version": "4.3.4",
"license": "MIT",
"private": false,
"publishConfig": {
Expand All @@ -10,8 +10,8 @@
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0",
"@prizm-ui/theme": "^4.3.3",
"@prizm-ui/helpers": "^4.3.3",
"@prizm-ui/theme": "^4.3.4",
"@prizm-ui/helpers": "^4.3.4",
"@antv/g2plot": "^2.4.31"
},
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions libs/charts/base/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/charts",
"version": "4.3.3",
"version": "4.3.4",
"license": "MIT",
"private": false,
"publishConfig": {
Expand All @@ -10,8 +10,8 @@
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0",
"@prizm-ui/theme": "^4.3.3",
"@prizm-ui/helpers": "^4.3.3",
"@prizm-ui/theme": "^4.3.4",
"@prizm-ui/helpers": "^4.3.4",
"@antv/g2plot": "^2.4.31"
},
"dependencies": {
Expand Down
10 changes: 5 additions & 5 deletions libs/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/components",
"version": "4.3.3",
"version": "4.3.4",
"description": "Prizm UI system design components library http://prizm.zyfra.com",
"license": "MIT",
"private": false,
Expand All @@ -17,10 +17,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": "^4.3.3",
"@prizm-ui/core": "^4.3.3",
"@prizm-ui/i18n": "^4.3.3",
"@prizm-ui/theme": "^4.3.3"
"@prizm-ui/helpers": "^4.3.4",
"@prizm-ui/core": "^4.3.4",
"@prizm-ui/i18n": "^4.3.4",
"@prizm-ui/theme": "^4.3.4"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
10 changes: 5 additions & 5 deletions libs/components/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/components",
"version": "4.3.3",
"version": "4.3.4",
"description": "Prizm UI system design components library http://prizm.zyfra.com",
"license": "MIT",
"private": false,
Expand All @@ -17,10 +17,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": "^4.3.3",
"@prizm-ui/core": "^4.3.3",
"@prizm-ui/i18n": "^4.3.3",
"@prizm-ui/theme": "^4.3.3"
"@prizm-ui/helpers": "^4.3.4",
"@prizm-ui/core": "^4.3.4",
"@prizm-ui/i18n": "^4.3.4",
"@prizm-ui/theme": "^4.3.4"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
2 changes: 1 addition & 1 deletion libs/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/core",
"version": "4.3.3",
"version": "4.3.4",
"license": "MIT",
"description": "The main library for creating Angular components and elements using Prizm.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/core/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/core",
"version": "4.3.3",
"version": "4.3.4",
"license": "MIT",
"description": "The main library for creating Angular components and elements using Prizm.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/helpers",
"version": "4.3.3",
"version": "4.3.4",
"license": "MIT",
"description": "Library to make it easy to create Angular applications. Contains Injectables Service, RxJS utilities, directives, and standard pipes.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/helpers/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/helpers",
"version": "4.3.3",
"version": "4.3.4",
"license": "MIT",
"description": "Library to make it easy to create Angular applications. Contains Injectables Service, RxJS utilities, directives, and standard pipes.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/i18n",
"version": "4.3.3",
"version": "4.3.4",
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0"
Expand Down
2 changes: 1 addition & 1 deletion libs/i18n/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/i18n",
"version": "4.3.3",
"version": "4.3.4",
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0"
Expand Down
4 changes: 2 additions & 2 deletions libs/icons/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/icons",
"version": "4.3.3",
"version": "4.3.4",
"description": "Prizm UI base icon pack library http://prizm.zyfra.com",
"private": false,
"publishConfig": {
Expand All @@ -10,7 +10,7 @@
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0",
"@prizm-ui/core": "^4.3.3"
"@prizm-ui/core": "^4.3.4"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
4 changes: 2 additions & 2 deletions libs/icons/base/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/icons",
"version": "4.3.3",
"version": "4.3.4",
"description": "Prizm UI base icon pack library http://prizm.zyfra.com",
"private": false,
"publishConfig": {
Expand All @@ -10,7 +10,7 @@
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0",
"@prizm-ui/core": "^4.3.3"
"@prizm-ui/core": "^4.3.4"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
4 changes: 2 additions & 2 deletions libs/icons/flags/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/flag-icons",
"version": "4.3.3",
"version": "4.3.4",
"description": "Prizm UI flags icon pack library http://prizm.zyfra.com",
"private": false,
"publishConfig": {
Expand All @@ -10,7 +10,7 @@
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0",
"@prizm-ui/core": "^4.3.3"
"@prizm-ui/core": "^4.3.4"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
4 changes: 2 additions & 2 deletions libs/icons/flags/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/flag-icons",
"version": "4.3.3",
"version": "4.3.4",
"description": "Prizm UI flags icon pack library http://prizm.zyfra.com",
"private": false,
"publishConfig": {
Expand All @@ -10,7 +10,7 @@
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0",
"@prizm-ui/core": "^4.3.3"
"@prizm-ui/core": "^4.3.4"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
4 changes: 2 additions & 2 deletions libs/icons/loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/icons-loader",
"version": "4.3.3",
"version": "4.3.4",
"private": false,
"publishConfig": {
"access": "public",
Expand All @@ -9,7 +9,7 @@
"peerDependencies": {
"@angular/common": "^17.1.0",
"@angular/core": "^17.1.0",
"@prizm-ui/icons": "^4.3.3"
"@prizm-ui/icons": "^4.3.4"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
2 changes: 1 addition & 1 deletion libs/nxmv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/nx-mv",
"version": "4.3.3",
"version": "4.3.4",
"main": "src/index.js",
"private": false,
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion libs/nxmv/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/nx-mv",
"version": "4.3.3",
"version": "4.3.4",
"main": "src/index.js",
"private": false,
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions libs/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/nx-plugin",
"version": "4.3.3",
"version": "4.3.4",
"main": "src/index.js",
"private": false,
"publishConfig": {
Expand All @@ -10,6 +10,6 @@
"generators": "./generators.json",
"executors": "./executors.json",
"peerDependencies": {
"@prizm-ui/ast": "^4.3.3"
"@prizm-ui/ast": "^4.3.4"
}
}
4 changes: 2 additions & 2 deletions libs/plugin/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/nx-plugin",
"version": "4.3.3",
"version": "4.3.4",
"main": "src/index.js",
"private": false,
"publishConfig": {
Expand All @@ -10,6 +10,6 @@
"generators": "./generators.json",
"executors": "./executors.json",
"peerDependencies": {
"@prizm-ui/ast": "^4.3.3"
"@prizm-ui/ast": "^4.3.4"
}
}
2 changes: 1 addition & 1 deletion libs/schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/install",
"version": "4.3.3",
"version": "4.3.4",
"description": "Package installer @prizm-ui/* , Angular schematic ng-add",
"schematics": "./src/collection.json",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/schematics/package.json.ng17
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/install",
"version": "4.3.3",
"version": "4.3.4",
"description": "Package installer @prizm-ui/* , Angular schematic ng-add",
"schematics": "./src/collection.json",
"private": false,
Expand Down
Loading
Loading