diff --git a/.github/PULL_REQUEST_TEMPLATE/prepare_release_for_3.md.md b/.github/PULL_REQUEST_TEMPLATE/prepare_release_for_3.md similarity index 100% rename from .github/PULL_REQUEST_TEMPLATE/prepare_release_for_3.md.md rename to .github/PULL_REQUEST_TEMPLATE/prepare_release_for_3.md diff --git a/.github/workflows/beta-publish-ng17.yml b/.github/workflows/beta-publish-ng17.yml index 0e5c954344..0b8e91e540 100644 --- a/.github/workflows/beta-publish-ng17.yml +++ b/.github/workflows/beta-publish-ng17.yml @@ -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.1.2-beta.0') | jq '([.[] | select(startswith("4.1.2-beta"))] | last // "4.1.2-beta.0")' 2>/dev/null || echo '4.1.2-beta.0' + (npm view @prizm-ui/components versions --tag beta --json 2>/dev/null || echo '4.2.0-beta.0') | jq '([.[] | select(startswith("4.2.0-beta"))] | last // "4.2.0-beta.0")' 2>/dev/null || echo '4.2.0-beta.0' ) echo "LAST_DRAFT_VERSION=${last_draft_version}" >> $GITHUB_ENV diff --git a/.github/workflows/main-publish-ng17.yml b/.github/workflows/main-publish-ng17.yml index 1543022cee..307cc06b6d 100644 --- a/.github/workflows/main-publish-ng17.yml +++ b/.github/workflows/main-publish-ng17.yml @@ -57,7 +57,7 @@ jobs: - name: Set up environment variables run: | last_v3_version=$( - echo '4.1.0' + echo '4.2.0' ) echo "LAST_V3_VERSION=${last_v3_version}" >> $GITHUB_ENV diff --git a/.github/workflows/pre-release-publish-ng17.yml b/.github/workflows/pre-release-publish-ng17.yml index b93ff055a8..80df7cc792 100644 --- a/.github/workflows/pre-release-publish-ng17.yml +++ b/.github/workflows/pre-release-publish-ng17.yml @@ -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.1.2-next.0') | jq '([.[] | select(startswith("4.1.2-next"))] | last // "4.1.2-next.0")' 2>/dev/null || echo '4.1.2-next.0' + (npm view @prizm-ui/components versions --tag next --json 2>/dev/null || echo '4.2.0-next.0') | jq '([.[] | select(startswith("4.2.0-next"))] | last // "4.2.0-next.0")' 2>/dev/null || echo '4.2.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 1ad7412ae1..07988ea529 100644 --- a/apps/doc/src/app/about-prizm/changelog/CHANGELOG.md +++ b/apps/doc/src/app/about-prizm/changelog/CHANGELOG.md @@ -2,6 +2,56 @@ All notable changes to this project will be documented in this file. +## [4.2.0](https://github.com/zyfra/Prizm) (17-04-2024) + +### Features + +- feat: checklist for release 4x version #1610 +- feat: checklist for release 3x version #1613 +- feat(component/cron): added custom title #1431 +- feat(charts): update colors for charts to new schema #1196 +- feat(documentation): add decimal input type to live demo documentation + +### Bug fixes + +- fix(components/input-number): manual input works incorrect when min set for input number #1580 +- fix(components/input-number) remove default title for input number #1599 +- fix(components/inputs): hint status text for required input not shown after force clear #1598 +- fix: auto deploy doc #1592 +- fix(documentation): changed filesValidationErrors type in examples and live demo #1371 +- fix(component/cron): selected working with specified tabs #1494 +- fix(documentation): typography page changed #1497 #1498 +- fix(documentation/sticky): fix scroll in sticky example #670 +- fix(component/navigation): hidden overflow for navigation titles. added hints #1510 +- fix(component/header): hidden overflow for header. added hints #1510 +- fix(component/file-upload): if the name is long it doesn't overlap upload bar. name becomes truncated. expansion remains #1541 +- fix(component/toggle): removed hover and focus if loading #1485 +- fix(documentation/card): removed shadow variant duplicate #1434 +- fix(components/paginator): fixed width of rows selector #1466 +- fix(documentation): changelog headers formatting #1499 +- fix(documentation): removed first empty string in ast code examples #1501 +- fix(documentation/checkbox): fixed description of checkbox module import #1527 +- fix(documentation/colors): remove 'v3' prefix in documentation theme colors #1496 +- fix(components/column-settings): incorrect display of one unhidden column in column settings #1036 +- fix(documentation/table): search for server sort example fixed #1107 +- fix(charts): charts tolltip background color error #1488 +- fix(charts/bar): bar chart changing postion on theme chage #1492 +- fix(charts/bar): bar chart x axis shpould be shown for both themes #1490 +- fix(charts): not all charts ascept theming #1489 +- fix(charts/pie/waterfall/radial-bar): wrong stroke color on hover in pie, waterfall and radial bar charts #1508 +- fix(documentation/scatter): points on the scatter are not completely hidden when it's hidden in legend #1493 +- fix(charts/pie): pie line style update for dark theme +- fix(documentation/bar): incorrect examples for bar stacked and bar groupd charts #1507 +- fix(theme): remove redundant token from default theme +- fix(charts): incorrect data colors displayed in charts #1505 +- fix(documentation/bar): correction of sctacked example code +- fix(documentation/pie): removed extra properties from pie live demo tab +- fix(documentation/gauge): change percent input type for live demo + +### Refactor + +- refactor(charts): replace chart base options from theming to separate object + ## [4.1.2](https://github.com/zyfra/Prizm) (08-04-2024) - fix(ci): remove nx cloud token diff --git a/apps/doc/src/app/version-manager/current.const.ts b/apps/doc/src/app/version-manager/current.const.ts index 64a6c0e73a..ad488022dc 100644 --- a/apps/doc/src/app/version-manager/current.const.ts +++ b/apps/doc/src/app/version-manager/current.const.ts @@ -1 +1 @@ -export const PRIZM_CURRENT_VERSION = '4.1.2'; +export const PRIZM_CURRENT_VERSION = '4.2.0'; diff --git a/apps/doc/src/app/version-manager/current.const.ts.ng17 b/apps/doc/src/app/version-manager/current.const.ts.ng17 index 64a6c0e73a..ad488022dc 100644 --- a/apps/doc/src/app/version-manager/current.const.ts.ng17 +++ b/apps/doc/src/app/version-manager/current.const.ts.ng17 @@ -1 +1 @@ -export const PRIZM_CURRENT_VERSION = '4.1.2'; +export const PRIZM_CURRENT_VERSION = '4.2.0'; diff --git a/apps/doc/src/app/version-manager/versions.constants.ts b/apps/doc/src/app/version-manager/versions.constants.ts index 49fee97741..9c1f16f877 100644 --- a/apps/doc/src/app/version-manager/versions.constants.ts +++ b/apps/doc/src/app/version-manager/versions.constants.ts @@ -27,8 +27,8 @@ export const PRIZM_LANGUAGES_META: readonly PrizmLanguageMeta[] = [ ]; export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [ { - label: '4.1.2 (ng17)', - version: '4.1.2', + label: '4.2.0 (ng17)', + version: '4.2.0', stackblitz: 'https://stackblitz.com/edit/prizm-v4-demo', link: new URL('http://prizm.site'), otherLinks: [new URL('https://prizm-v4.web.app')], @@ -67,8 +67,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [ }, }, { - label: '4.1.2-next (ng16)', - version: '4.1.2-next', + label: '4.2.0-next (ng16)', + version: '4.2.0-next', stackblitz: 'https://stackblitz.com/edit/prizm-v4-next-demo', link: new URL('https://prizm-v4-next.web.app'), otherLinks: [], diff --git a/libs/ast/package.json b/libs/ast/package.json index 9a0507c818..db3c44fc7b 100644 --- a/libs/ast/package.json +++ b/libs/ast/package.json @@ -1,6 +1,6 @@ { "name": "@prizm-ui/ast", - "version": "4.1.2", + "version": "4.2.0", "private": false, "publishConfig": { "access": "public", diff --git a/libs/ast/package.json.ng17 b/libs/ast/package.json.ng17 index 9a0507c818..db3c44fc7b 100644 --- a/libs/ast/package.json.ng17 +++ b/libs/ast/package.json.ng17 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/ast", - "version": "4.1.2", + "version": "4.2.0", "private": false, "publishConfig": { "access": "public", diff --git a/libs/charts/base/package.json b/libs/charts/base/package.json index fdfbed2a41..9ae04fa86d 100644 --- a/libs/charts/base/package.json +++ b/libs/charts/base/package.json @@ -1,6 +1,6 @@ { "name": "@prizm-ui/charts", - "version": "4.1.2", + "version": "4.2.0", "license": "MIT", "private": false, "publishConfig": { @@ -10,8 +10,8 @@ "peerDependencies": { "@angular/common": "^17.1.0", "@angular/core": "^17.1.0", - "@prizm-ui/theme": "^4.1.2", - "@prizm-ui/helpers": "^4.1.2", + "@prizm-ui/theme": "^4.2.0", + "@prizm-ui/helpers": "^4.2.0", "@antv/g2plot": "^2.4.31" }, "dependencies": { diff --git a/libs/charts/base/package.json.ng17 b/libs/charts/base/package.json.ng17 index fdfbed2a41..9ae04fa86d 100644 --- a/libs/charts/base/package.json.ng17 +++ b/libs/charts/base/package.json.ng17 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/charts", - "version": "4.1.2", + "version": "4.2.0", "license": "MIT", "private": false, "publishConfig": { @@ -10,8 +10,8 @@ "peerDependencies": { "@angular/common": "^17.1.0", "@angular/core": "^17.1.0", - "@prizm-ui/theme": "^4.1.2", - "@prizm-ui/helpers": "^4.1.2", + "@prizm-ui/theme": "^4.2.0", + "@prizm-ui/helpers": "^4.2.0", "@antv/g2plot": "^2.4.31" }, "dependencies": { diff --git a/libs/components/package.json b/libs/components/package.json index 70dea62ddd..82516c12d2 100644 --- a/libs/components/package.json +++ b/libs/components/package.json @@ -1,6 +1,6 @@ { "name": "@prizm-ui/components", - "version": "4.1.2", + "version": "4.2.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": "^3.0.0", "@ng-web-apis/intersection-observer": "^3.0.0", "@ng-web-apis/mutation-observer": "^3.0.0", - "@prizm-ui/helpers": "^4.1.2", - "@prizm-ui/core": "^4.1.2", - "@prizm-ui/i18n": "^4.1.2", - "@prizm-ui/theme": "^4.1.2" + "@prizm-ui/helpers": "^4.2.0", + "@prizm-ui/core": "^4.2.0", + "@prizm-ui/i18n": "^4.2.0", + "@prizm-ui/theme": "^4.2.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/components/package.json.ng17 b/libs/components/package.json.ng17 index 70dea62ddd..82516c12d2 100644 --- a/libs/components/package.json.ng17 +++ b/libs/components/package.json.ng17 @@ -1,6 +1,6 @@ { "name": "@prizm-ui/components", - "version": "4.1.2", + "version": "4.2.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": "^3.0.0", "@ng-web-apis/intersection-observer": "^3.0.0", "@ng-web-apis/mutation-observer": "^3.0.0", - "@prizm-ui/helpers": "^4.1.2", - "@prizm-ui/core": "^4.1.2", - "@prizm-ui/i18n": "^4.1.2", - "@prizm-ui/theme": "^4.1.2" + "@prizm-ui/helpers": "^4.2.0", + "@prizm-ui/core": "^4.2.0", + "@prizm-ui/i18n": "^4.2.0", + "@prizm-ui/theme": "^4.2.0" }, "dependencies": { "tslib": "^2.3.0" diff --git a/libs/components/src/lib/components/cron/cron.component.html b/libs/components/src/lib/components/cron/cron.component.html index cd3790f489..e3d92a5130 100644 --- a/libs/components/src/lib/components/cron/cron.component.html +++ b/libs/components/src/lib/components/cron/cron.component.html @@ -13,6 +13,7 @@