Skip to content

Commit a0544e0

Browse files
authored
Merge branch 'main' into timofeyevvv/add-ru-readme
2 parents fc15061 + 4f967f2 commit a0544e0

File tree

93 files changed

+2481
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+2481
-231
lines changed

.github/workflows/playwright.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- uses: actions/setup-node@v4
1515
with:
1616
node-version: 18
17+
cache: npm
1718
- name: Install dependencies
1819
run: npm ci
1920
- name: Run Playwright tests
@@ -35,7 +36,7 @@ jobs:
3536
shell: bash
3637
- name: Create PR Artifact
3738
if: always()
38-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
3940
with:
4041
name: pr
4142
path: ./pr-id.txt

.github/workflows/pr-playwright-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
- name: Download Artifacts
1616
uses: actions/download-artifact@v4
1717
with:
18-
workflow: ${{ github.event.workflow_run.workflow_id }}
19-
run_id: ${{ github.event.workflow_run.id }}
18+
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
19+
run-id: ${{ github.event.workflow_run.id }}
2020
- name: Extract PR Number
2121
id: pr
2222
run: echo "::set-output name=id::$(<pr/pr-id.txt)"
2323
shell: bash
24-
- name: Upload
24+
- name: Upload to S3
2525
env:
2626
AWS_ACCESS_KEY_ID: ${{ secrets.STORYBOOK_S3_KEY_ID }}
2727
AWS_SECRET_ACCESS_KEY: ${{ secrets.STORYBOOK_S3_SECRET_KEY }}

.storybook/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import type {StorybookConfig} from '@storybook/react-webpack5';
33
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
44

55
const config: StorybookConfig = {
6-
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
7-
addons: ['@storybook/addon-essentials', '@storybook/preset-scss'],
6+
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
7+
addons: ['@storybook/addon-essentials', '@storybook/preset-scss', '@storybook/addon-docs'],
88
framework: {
99
name: '@storybook/react-webpack5',
1010
options: {fastRefresh: true},

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [4.16.0](https://github.com/gravity-ui/dynamic-forms/compare/v4.15.0...v4.16.0) (2025-01-22)
4+
5+
6+
### Features
7+
8+
* added new view text content alert ([#265](https://github.com/gravity-ui/dynamic-forms/issues/265)) ([2c19763](https://github.com/gravity-ui/dynamic-forms/commit/2c197632e6b5d718f94ddf7e652f6352bc5e9a6f))
9+
* css api ([#254](https://github.com/gravity-ui/dynamic-forms/issues/254)) ([c5608e7](https://github.com/gravity-ui/dynamic-forms/commit/c5608e7eee86f61348dacd79e2c13665ef054b22))
10+
11+
12+
### Bug Fixes
13+
14+
* playwright ci ([#263](https://github.com/gravity-ui/dynamic-forms/issues/263)) ([a47ec49](https://github.com/gravity-ui/dynamic-forms/commit/a47ec49cfe982ae38b5d878bd1ab40312f4c8d56))
15+
* upload s3 playwright tests ([#259](https://github.com/gravity-ui/dynamic-forms/issues/259)) ([33b8173](https://github.com/gravity-ui/dynamic-forms/commit/33b8173cf38f0c72d68bfb294cbe9831c3ae7d7b))
16+
317
## [4.15.0](https://github.com/gravity-ui/dynamic-forms/compare/v4.14.3...v4.15.0) (2024-12-12)
418

519

docs/spec.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,8 @@ You can provide all props of [original component](https://preview.gravity-ui.com
182182
| text | `string` | yes | Text for input |
183183
| icon | `string` | | Icon name from the [library](https://gravity-ui.com/icons) |
184184
| iconColor | `'primary'` `'complementary'` `'secondary'` `'hint'` `'info'` `'info-heavy'` `'positive'` `'positive-heavy'` `'warning'` `'warning-heavy'` `'danger'` `'danger-heavy'` `'utility'` `'utility-heavy'` `'misc'` `'misc-heavy'` `'brand'` `'dark-primary'` `'dark-complementary'` `'dark-secondary'` | | The color of the icon, if it does not have the themeLabel parameter |
185+
| themeIcon | `'normal'` `'info'` `'success'` `'warning'` `'danger'` `'utility'` | | Alert color |
186+
| titleAlert | `string` | | Alert title |
185187

186188
#### SelectParams
187189

0 commit comments

Comments
 (0)