Skip to content

Commit

Permalink
Merge branch 'master' into rollup-build-ts
Browse files Browse the repository at this point in the history
  • Loading branch information
core-ds-bot committed Dec 19, 2024
2 parents bf4f80e + 960951e commit fc90a4c
Show file tree
Hide file tree
Showing 361 changed files with 4,868 additions and 1,547 deletions.
25 changes: 25 additions & 0 deletions .changeset/brave-coats-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
'@alfalab/core-components-comment': patch
'@alfalab/core-components-confirmation-v1': patch
'@alfalab/core-components-custom-button': patch
'@alfalab/core-components-date-range-input': patch
'@alfalab/core-components-date-time-input': patch
'@alfalab/core-components-divider': patch
'@alfalab/core-components-dropzone': patch
'@alfalab/core-components-file-upload-item': patch
'@alfalab/core-components-file-upload-item-v1': patch
'@alfalab/core-components-generic-wrapper': patch
'@alfalab/core-components-hatching-progress-bar': patch
'@alfalab/core-components-icon-button': patch
'@alfalab/core-components-icon-view': patch
'@alfalab/core-components-indicator': patch
'@alfalab/core-components-keyboard-focusable': patch
'@alfalab/core-components-list-header': patch
'@alfalab/core-components-loader': patch
'@alfalab/core-components-masked-input': patch
'@alfalab/core-components-mq': patch
'@alfalab/core-components-navigation-bar': patch
'@alfalab/core-components-navigation-bar-private': patch
---

Добавлено sideEffects: false (package.json)
5 changes: 5 additions & 0 deletions .changeset/popular-mangos-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@alfalab/core-components-select': patch
---

Замена зависимости deep-equal на react-fast-compare. Меньше, современнее, быстрее.
48 changes: 48 additions & 0 deletions .changeset/spotty-hornets-vanish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
'@alfalab/core-components-accordion': patch
'@alfalab/core-components-action-button': patch
'@alfalab/core-components-amount': patch
'@alfalab/core-components-amount-input': patch
'@alfalab/core-components-attach': patch
'@alfalab/core-components-button': patch
'@alfalab/core-components-calendar': patch
'@alfalab/core-components-calendar-input': patch
'@alfalab/core-components-calendar-range': patch
'@alfalab/core-components-checkbox': patch
'@alfalab/core-components-confirmation': patch
'@alfalab/core-components-confirmation-v1': patch
'@alfalab/core-components-date-range-input': patch
'@alfalab/core-components-date-time-input': patch
'@alfalab/core-components-filter-tag': patch
'@alfalab/core-components-gallery': patch
'@alfalab/core-components-icon-view': patch
'@alfalab/core-components-input': patch
'@alfalab/core-components-input-autocomplete': patch
'@alfalab/core-components-international-phone-input': patch
'@alfalab/core-components-intl-phone-input': patch
'@alfalab/core-components-keyboard-focusable': patch
'@alfalab/core-components-link': patch
'@alfalab/core-components-mq': patch
'@alfalab/core-components-navigation-bar-private': patch
'@alfalab/core-components-picker-button': patch
'@alfalab/core-components-plate': patch
'@alfalab/core-components-popover': patch
'@alfalab/core-components-product-cover': patch
'@alfalab/core-components-pure-cell': patch
'@alfalab/core-components-radio': patch
'@alfalab/core-components-radio-group': patch
'@alfalab/core-components-segmented-control': patch
'@alfalab/core-components-select': patch
'@alfalab/core-components-select-with-tags': patch
'@alfalab/core-components-shared': patch
'@alfalab/core-components-spinner': patch
'@alfalab/core-components-steps': patch
'@alfalab/core-components-switch': patch
'@alfalab/core-components-tabs': patch
'@alfalab/core-components-tag': patch
'@alfalab/core-components-textarea': patch
'@alfalab/core-components-toast': patch
'@alfalab/core-components-typography': patch
---

Апдейт версий пакетов (в них починена сборка esm-версии): @alfalab/data, @alfalab/hooks, @alfalab/utils
4 changes: 2 additions & 2 deletions .github/workflows/package-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
const now = currentFile[packageName]?.[entryPoint] || 0;
const before = masterFile[packageName]?.[entryPoint] || 0;
if (Math.abs(now - before) > 2) {
if (Math.abs(now - before) >= 1) {
shouldComment = true;
acc += `| ${packageName}/${entryPoint} | ${now} ${
now - before > 0 ? `(+${(now - before).toFixed(2)} KB🔺)` : `(-${(before - now).toFixed(2)} KB)`
now - before > 0 ? `(+${(now - before).toFixed(2)} KB🔺)` : `(-${(before - now).toFixed(2)} KB💚)`
} |\n`;
}
});
Expand Down
Loading

0 comments on commit fc90a4c

Please sign in to comment.