Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 4962027

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/main' into main-beta
2 parents f6ebc77 + abadfb0 commit 4962027

15 files changed

Lines changed: 714 additions & 477 deletions

File tree

package-lock.json

Lines changed: 684 additions & 454 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,25 +74,25 @@
7474
"@exadel/esl": "^4.13.0 || ^5.0.0 || ^5.0.0-beta.0"
7575
},
7676
"devDependencies": {
77-
"@commitlint/cli": "^19.2.2",
77+
"@commitlint/cli": "^19.3.0",
7878
"@commitlint/config-conventional": "^19.2.2",
7979
"@semantic-release/changelog": "^6.0.3",
8080
"@semantic-release/commit-analyzer": "^12.0.0",
8181
"@semantic-release/git": "^10.0.1",
8282
"@semantic-release/github": "^10.0.3",
83-
"@semantic-release/npm": "^12.0.0",
83+
"@semantic-release/npm": "^12.0.1",
8484
"@semantic-release/release-notes-generator": "^13.0.0",
85-
"@types/prismjs": "^1.26.3",
86-
"@typescript-eslint/eslint-plugin": "^7.6.0",
87-
"@typescript-eslint/parser": "^7.6.0",
85+
"@types/prismjs": "^1.26.4",
86+
"@typescript-eslint/eslint-plugin": "^7.8.0",
87+
"@typescript-eslint/parser": "^7.8.0",
8888
"chokidar-cli": "^3.0.0",
8989
"concurrently": "^8.2.2",
9090
"copyfiles": "^2.4.1",
9191
"cross-env": "^7.0.3",
9292
"eslint": "^8.57.0",
9393
"eslint-plugin-editorconfig": "^4.0.3",
9494
"eslint-plugin-import": "^2.29.1",
95-
"eslint-plugin-sonarjs": "^0.25.1",
95+
"eslint-plugin-sonarjs": "^1.0.3",
9696
"eslint-plugin-tsdoc": "^0.2.17",
9797
"foreach-cli": "^1.8.1",
9898
"husky": "^9.0.11",
@@ -102,11 +102,11 @@
102102
"lint-staged": "^15.2.2",
103103
"postcss": "^8.4.36",
104104
"postcss-less": "^6.0.0",
105-
"postcss-preset-env": "^9.5.5",
105+
"postcss-preset-env": "^9.5.12",
106106
"prettier": "^3.2.5",
107-
"rimraf": "^5.0.5",
108-
"semantic-release": "^23.0.8",
109-
"stylelint": "^16.3.1",
107+
"rimraf": "^5.0.7",
108+
"semantic-release": "^23.1.1",
109+
"stylelint": "^16.5.0",
110110
"stylelint-prettier": "^5.0.0",
111111
"typescript": "5.4.5"
112112
},

site/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"test": "echo \"Warn: no test declared for module\" && exit 0"
2424
},
2525
"dependencies": {
26-
"@exadel/esl": "^5.0.0-beta.12",
26+
"@exadel/esl": "^5.0.0-beta.16",
2727
"@exadel/ui-playground": "../",
2828
"@11ty/eleventy": "^2.0.1",
29-
"@11ty/eleventy-dev-server": "^1.0.4",
29+
"@11ty/eleventy-dev-server": "^2.0.0",
3030
"clean-css-cli": "^5.6.3",
3131
"markdown-it": "^14.1.0",
3232
"markdown-it-replace-link": "^1.2.1",

site/src/page/page.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ hr {
9595
}
9696

9797
.get-started {
98+
display: flex;
99+
flex-direction: column;
100+
align-items: center;
98101
margin-top: 10px;
99102
padding: 0.5rem 2em;
100103
border-radius: 10px;

src/core/base/base.less

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// Default theme definition
22
html {
3-
--uip-prview-max-height: 500px;
4-
53
--uip-bg: #f5f2f0;
64
--uip-fg: #000;
75

src/core/base/root.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ uip-root {
88
display: grid;
99
align-content: start;
1010
grid-template-columns: 1fr auto;
11-
grid-template-rows: auto auto auto auto;
11+
grid-template-rows: auto minmax(0, auto);
1212
grid-template-areas:
1313
'header header'
1414
'note sidebar'

src/core/panel/plugin-panel.less

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.uip-plugin-panel {
22
display: flex;
33
position: relative;
4-
max-height: var(--uip-prview-max-height);
54

65
&[resizing] .uip-plugin-inner,
76
.no-animate & .uip-plugin-inner {

src/core/panel/plugin-panel.vertical.less

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.uip-plugin-panel.vertical.vertical {
22
grid-area: sidebar;
33
flex-direction: row;
4-
min-height: max(100%, 100px);
54

65
.uip-plugin-resize-bar {
76
order: -1;

src/core/preview/preview.less

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.uip-preview {
2-
display: block;
2+
display: flex;
33
overflow: hidden;
44
grid-area: preview;
55

@@ -10,8 +10,6 @@
1010
background: var(--uip-bg);
1111

1212
&-container {
13-
margin: auto;
14-
1513
position: relative;
1614
display: grid;
1715
grid-template:
@@ -21,7 +19,7 @@
2119
grid-template-rows: 1fr auto;
2220

2321
overflow: hidden;
24-
width: auto;
22+
width: 100%;
2523
height: auto;
2624
max-width: 100%;
2725
max-height: 100%;

src/plugins/note/note.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
uip-note {
2+
grid-area: note;
23
.uip-note-title {
34
font-weight: 600;
45
}

0 commit comments

Comments
 (0)