Skip to content

Release by 17.02.2026#2514

Closed
Yakutoc wants to merge 148 commits intomasterfrom
release_2026-02-18
Closed

Release by 17.02.2026#2514
Yakutoc wants to merge 148 commits intomasterfrom
release_2026-02-18

Conversation

@Yakutoc
Copy link
Copy Markdown
Collaborator

@Yakutoc Yakutoc commented Feb 17, 2026

Core

TextField

  • исправлено смещение текста внутри TextField-like компонентов в Safari/Firefox

PR

Range, DatePicker

  • обертка для contentRight соответствует макетам и наследуется от EmbedIconButton

PR

List

  • исправлен hover для disabled элементов

PR

  • добавлена возможность использовать клавиатуру для навигации по ListItem

PR

Tree

  • добавлен новый функционал для асинхронной подгрузки узлов дерева;

PR

Typography

  • Добавлен компонент типографики h6

PR

Select, Combobox

  • добавлено свойство renderSelectionIcon для кастомизации иконки выбора элемента;

PR

  • добавлены свойства flip и shift для коррекции позиции выпадающего списка при достижении границ экрана;

PR

Tabs

  • исправлены стили disabled для TabItem

PR

TextArea

  • устранили предупреждения в консоли;

PR

Attach

  • нативное свойство size исключено из типов AttachProps

PR

Table

  • добавлен семантический DOM, который дает возможность пробрасывать кастомные класснеймы в различные узлы компонента;

PR

TextFieldSlider

  • добавлен новый компонент TextFieldSlider

PR

SDDS-FINAI

ButtonGroup

  • изменен gap c 2 px to 4px для intersections: gap: dense и shape: default

PR

Autocomplete, Combobox, DatePicker, DateTimePicker, TimePicker

  • исправлено поведение обводки поля при readOnly

PR

Popover, Tooltip (Beta)

  • добавлено опциональное свойство portal для настройки рендера выпадающего списка в DOM;

PR

Skeleton

  • изменен токен градиента для светлой темы

  • добавлен новое скругление - 4px

PR

PLASMA-WEB

Autocomplete, Combobox, DatePicker, DateTimePicker, Range, Select, TextField

  • исправлено поведение обводки поля при readOnly

PR

Tokens

  • Добавлены токены readOnly в группы outline

PR

SDDS-INSOL

DateTimePicker

  • исправлено поведение обводки поля при readOnly

PR

SDDS-CS

DatePicker

  • исправлено поведение обводки поля при readOnly

PR

TimePicker

  • компонент добавлен в поставку

PR

PLASMA-B2C

Tokens

  • Добавлены токены readOnly в группы surface

PR

PLASMA-GIGA

Tokens

  • Добавлены токены readOnly в группы surface

PR

Yakutoc and others added 30 commits February 5, 2026 09:11
- fix publish-feature.yml
- delete unnecessary publish latest settings
- fix create-release-pr.yml
Comment on lines +8 to +14
name: Deploy documentations [Feature]
uses: ./.github/workflows/documentation-deploy-common.yml
with:
path: 'next-insol'
ref: 'next-insol'
docusaurusURLPrefix: 'next-insol'
secrets: inherit

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium documentation

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}

Copilot Autofix

AI about 2 months ago

In general, the fix is to add an explicit permissions block to the workflow (or to the specific job) that grants only the minimal access the workflow needs. For most documentation deployment workflows that only need to read the repository content and maybe fetch packages, starting with contents: read (and optionally packages: read if required) is a safe, minimal baseline.

For this specific file, the cleanest fix without changing existing behavior is to define a top-level permissions block, applying to all jobs in this workflow, directly under the on: section and before jobs:. This keeps the job definition unchanged and makes the permissions explicit. As we cannot see inside documentation-deploy-common.yml, we choose a conservative minimal set: contents: read. If the reusable workflow actually requires write access (for example, to push to gh-pages), that would normally be reflected there; here we just establish a secure default. No imports or additional methods are needed; this is a pure YAML change.

Concretely: in .github/workflows/documentation-deploy-next-insol-stage.yml, add:

permissions:
    contents: read

between the on: block and the jobs: block (e.g., after line 5 and before line 6). Indentation should match the existing style (4 spaces under the root keys).

Suggested changeset 1
.github/workflows/documentation-deploy-next-insol-stage.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/documentation-deploy-next-insol-stage.yml b/.github/workflows/documentation-deploy-next-insol-stage.yml
--- a/.github/workflows/documentation-deploy-next-insol-stage.yml
+++ b/.github/workflows/documentation-deploy-next-insol-stage.yml
@@ -3,6 +3,9 @@
 on:
     workflow_dispatch:
 
+permissions:
+    contents: read
+
 jobs:
     run:
         name: Deploy documentations [Feature]
EOF
@@ -3,6 +3,9 @@
on:
workflow_dispatch:

permissions:
contents: read

jobs:
run:
name: Deploy documentations [Feature]
Copilot is powered by AI and may make mistakes. Always verify output.
@github-actions
Copy link
Copy Markdown
Contributor

Theme Builder app deployed!

https://plasma.sberdevices.ru/pr/plasma-theme-builder-pr-2514/

@Yakutoc Yakutoc closed this Feb 17, 2026
@Yakutoc Yakutoc deleted the release_2026-02-18 branch February 17, 2026 14:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants