Skip to content

Releases: voyagegroup/ingred-ui

Release v14.2.0

22 May 01:23
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v14.1.0...v14.2.0

Release v14.1.0

15 May 05:54
Compare
Choose a tag to compare

What's Changed

Full Changelog: v14.0.0...v14.1.0

Release v14.0.0

09 May 00:36
Compare
Choose a tag to compare

What's Changed

Full Changelog: v13.1.0...v14.0.0

Release v13.1.0

26 Apr 07:49
Compare
Choose a tag to compare

What's Changed

Full Changelog: v13.0.0...v13.1.0

Release v13.0.0

26 Apr 05:46
Compare
Choose a tag to compare

What's Changed

Full Changelog: v12.1.0...v13.0.0

Release v12.1.0

24 Apr 05:43
Compare
Choose a tag to compare

What's Changed

  • chore(deps-dev): bump @rollup/plugin-typescript from 11.0.0 to 11.1.0 by @dependabot in #1215
  • chore(deps-dev): bump typescript from 4.9.3 to 5.0.3 in /testEnv by @dependabot in #1208
  • chore(deps-dev): bump @typescript-eslint/parser from 5.57.0 to 5.58.0 by @dependabot in #1218
  • chore(deps-dev): bump eslint from 8.37.0 to 8.38.0 by @dependabot in #1217
  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.57.0 to 5.58.0 by @dependabot in #1216
  • feat <Accordion /> component by @takurinton in #1225
  • chore(deps-dev): bump @typescript-eslint/parser from 5.58.0 to 5.59.0 by @dependabot in #1229
  • chore(deps-dev): bump @rollup/plugin-commonjs from 24.0.0 to 24.1.0 by @dependabot in #1222
  • Add background-color white to children of <Accordion /> by @takurinton in #1241
  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.58.0 to 5.59.0 by @dependabot in #1233
  • chore(deps-dev): bump vite from 4.2.0 to 4.3.1 in /testEnv by @dependabot in #1244
  • Avoidance unused value of Accordion.stories.tsx by @takurinton in #1246
  • Fix run tsc move from build to lint by @takurinton in #1247
  • Return version 12.0.0 in package.json by @takurinton in #1248

Full Changelog: v12.0.0...v12.1.0

Release v12.0.0

03 Apr 02:02
Compare
Choose a tag to compare

What's Changed

  • chore(deps-dev): bump @typescript-eslint/parser from 5.53.0 to 5.54.0 by @dependabot in #1181
  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.53.0 to 5.54.0 by @dependabot in #1180
  • MenuPropsからReact.ComponentPropsWithRef<"div">を取り除く by @yuya417 in #1183
  • chore(deps-dev): bump eslint-config-prettier from 8.6.0 to 8.7.0 by @dependabot in #1185
  • chore(deps-dev): bump jest-environment-jsdom from 29.4.0 to 29.5.0 by @dependabot in #1184
  • <Fixture /> に hover してると <NavigationRail /> が閉じない点を修正 by @takurinton in #1188
  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.54.0 to 5.55.0 by @dependabot in #1191
  • chore(deps-dev): bump vite from 4.1.1 to 4.2.0 in /testEnv by @dependabot in #1194
  • chore(deps-dev): bump eslint from 8.35.0 to 8.36.0 by @dependabot in #1189
  • chore(deps-dev): bump eslint-config-prettier from 8.7.0 to 8.8.0 by @dependabot in #1196
  • chore(deps-dev): bump @typescript-eslint/parser from 5.54.0 to 5.56.0 by @dependabot in #1198
  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.55.0 to 5.56.0 by @dependabot in #1197
  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.56.0 to 5.57.0 by @dependabot in #1199
  • chore(deps-dev): bump eslint from 8.36.0 to 8.37.0 by @dependabot in #1201
  • chore(deps-dev): bump @typescript-eslint/parser from 5.56.0 to 5.57.0 by @dependabot in #1200
  • breaking changeに該当するものをまとめて修正する by @penicillin0 in #1090

New Contributors

Full Changelog: v11.4.1...v12.0.0

Migration Guide

今回のメジャーリリースは変更点が多いためマイグレーションガイドを作っています。Thank you @penicillin0 !!!:tada:

ConfirmModal

  • props からfullSizeを削除しました。代わりにFullSizeConfirmModalを使用してください。

Before

<ConfirmModal fullSize={true}>
  {ModalContent}
</ConfirmModal>

After

<FullSizeConfirmModal>
  {ModalContent}
</FullSizeConfirmModal>
  • タイトル右部の要素としてtipElement(JSX.Element), subActions(SubAction[])が指定可能でしたが、subActions(React.ReactNode[])に集約されます。これによってタイトル右部に柔軟性がもたらされます。なお、この変更はFullSizeConfirmModalについても同様です。

ContextMenu

  • props にactionButtonPropsを追加しました。

Select

  • props からlimitを削除しました。

CreatableSelect

  • props からlimitを削除しました。

DataTable

  • props からdefaultSelectedRowを削除しました。代わりにselectedRowを追加したため、こちらに選択している id を指定できます。
  • props からdefaultSelectedRowsを削除しました。代わりにselectedRowsを追加したため、こちらに選択している id を配列で指定できます。
  • propsからclearSelectedRowsを削除しました。代わりにselectedRowsに空配列を渡してください。

FloatingTip

  • propsにpopoverPropsを追加しました。

Menu

  • propsにpopoverPropsを追加しました。

MultipleFilter

  • props から deprecated だったformErrorTextを削除しました。
  • props から deprecated だった引数ReferedFilterTypeを削除しました。代わりにReferredFilterTypeを使用してください。

NavigationRail

  • メニューアイテム(Menu, ExpansionMenu, ExpansionMenuItem)にマイスホバーする際に表出していた toolTipを 廃止しました。これに伴いそれぞれのコンポーネントで以下のように変更しました。
    • Menu
      • props からonMouseEnterを削除しました。
    • ExpansionMenu
      • props からonMouseEnterを削除しました。
    • ExpansionMenuItem
      • props のtitlestringから React.ReactNodeに変更しました。
      • props からtitleElementを削除しました。
  • スペルミスを以下のように修正しました。
    • ExpantionMenu -> ExpansionMenu
    • NavitagionRailExpantionMenuProps -> NavigationRailExpansionMenuProps

Popover

  • propsにmodalPropsを追加しました。

ToggleButton

  • props のactivecheckedに変更しました。
  • props のactiveTextcheckedTextに変更しました。
  • props のinActiveTextunCheckedTextに変更しました。

Release v11.4.1

28 Feb 07:39
Compare
Choose a tag to compare

What's Changed

  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.51.0 to 5.52.0 by @dependabot in #1169
  • chore(deps-dev): bump @typescript-eslint/parser from 5.51.0 to 5.52.0 by @dependabot in #1171
  • Fix style of disable option in <Select /> component by @takurinton in #1177
  • chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.52.0 to 5.53.0 by @dependabot in #1176
  • chore(deps-dev): bump @typescript-eslint/parser from 5.52.0 to 5.53.0 by @dependabot in #1175
  • chore(deps-dev): bump @testing-library/react from 13.4.0 to 14.0.0 by @dependabot in #1174
  • chore(deps-dev): bump scaffdog from 2.4.0 to 2.5.0 by @dependabot in #1179
  • chore(deps-dev): bump eslint from 8.34.0 to 8.35.0 by @dependabot in #1178
  • ラジオボタンとチェックボックスを上下中央揃いにする by @rotosiruto in #1097

New Contributors

Full Changelog: v11.4.0...v11.4.1

Release v11.4.0

15 Feb 05:00
Compare
Choose a tag to compare

What's Changed

Full Changelog: v11.3.0...v11.4.0

Release v11.3.0

15 Feb 02:13
Compare
Choose a tag to compare

What's Changed

Full Changelog: v11.2.0...v11.3.0