Skip to content

Commit c4f7229

Browse files
authored
Merge branch 'main' into radio-group
2 parents f9f1d6e + b0bee5a commit c4f7229

Some content is hidden

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

49 files changed

+2843
-288
lines changed

CHANGELOG.md

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

3+
## [5.3.0](https://github.com/gravity-ui/dynamic-forms/compare/v5.2.0...v5.3.0) (2025-04-01)
4+
5+
6+
### Features
7+
8+
* add unstable schema renderer ([#288](https://github.com/gravity-ui/dynamic-forms/issues/288)) ([b46696f](https://github.com/gravity-ui/dynamic-forms/commit/b46696f0b9a31e917b9c386d521e3e78e014fad3))
9+
10+
11+
### Bug Fixes
12+
13+
* **ErrorWrapper:** fix control border color ([#286](https://github.com/gravity-ui/dynamic-forms/issues/286)) ([a431e95](https://github.com/gravity-ui/dynamic-forms/commit/a431e957d27f5cd39323fa536eb28b2917530265))
14+
* help mark dangerouslySetInnerHTML ([#289](https://github.com/gravity-ui/dynamic-forms/issues/289)) ([588c864](https://github.com/gravity-ui/dynamic-forms/commit/588c864cc487a6a04568aba2366bcf77ea897622))
15+
316
## [5.2.0](https://github.com/gravity-ui/dynamic-forms/compare/v5.1.0...v5.2.0) (2025-03-13)
417

518

gulpfile.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ function compileTs(modules = false) {
2727
'!src/**/__stories__/**/*',
2828
'!src/**/__tests__/**/*',
2929
'!src/**/__snapshots__/**/*',
30+
'!src/lib/unstable/**/*',
3031
])
3132
.pipe(
3233
replace(/import '.+\.scss';/g, (match) =>
@@ -52,7 +53,12 @@ task('copy-i18n', () => {
5253
});
5354

5455
task('styles-components', () => {
55-
return src(['src/**/*.scss', '!src/**/__stories__/**/*', '!src/stories/**/*'])
56+
return src([
57+
'src/**/*.scss',
58+
'!src/**/__stories__/**/*',
59+
'!src/stories/**/*',
60+
'!src/lib/unstable/**/*',
61+
])
5662
.pipe(sass().on('error', sass.logError))
5763
.pipe(dest(path.resolve(BUILD_DIR, 'esm')))
5864
.pipe(dest(path.resolve(BUILD_DIR, 'cjs')));

0 commit comments

Comments
 (0)