diff --git a/.changeset/big-ghosts-trade.md b/.changeset/big-ghosts-trade.md deleted file mode 100644 index 77d64b1..0000000 --- a/.changeset/big-ghosts-trade.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@arcanewizards/sigil': patch ---- - -Expand user-actions module with more utilities - -- `ActionResponse` type, designed to allow for more rich error messages from - e.g. server actions -- `mapUserActionState` (basic functional map function over `UserActionState`) -- `useUserAction` - a react hook for managing state relating to user actions - and promise-based calls diff --git a/.changeset/early-bees-take.md b/.changeset/early-bees-take.md deleted file mode 100644 index 6fd3922..0000000 --- a/.changeset/early-bees-take.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@arcanewizards/sigil': patch ---- - -Add sigil-grid tailwind utility classes diff --git a/.changeset/every-pans-cry.md b/.changeset/every-pans-cry.md deleted file mode 100644 index 0d1a98a..0000000 --- a/.changeset/every-pans-cry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@arcanewizards/sigil': patch ---- - -Add vAlign attribute to ControlLabel diff --git a/.changeset/fine-roses-show.md b/.changeset/fine-roses-show.md deleted file mode 100644 index 7b2dd7f..0000000 --- a/.changeset/fine-roses-show.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@arcanewizards/sigil': minor ---- - -Introduce a new `ShowFileConfig` and `ShowFileSaveAsButton` components - -Introduce new components for the UI / frontend for consistently managing show -files across sigil-based apps. The first usage of this component will be in -Arcane Desktop, but additional usages (e.g. timecode-toolbox) are expected -later on. diff --git a/.changeset/silent-bags-make.md b/.changeset/silent-bags-make.md deleted file mode 100644 index c56560f..0000000 --- a/.changeset/silent-bags-make.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@arcanewizards/sigil': patch ---- - -Introduce ControlFileButton component - -This is a special-case of a ControlButton, -designed to load files from the users' system. diff --git a/.changeset/wild-balloons-hang.md b/.changeset/wild-balloons-hang.md deleted file mode 100644 index abdd185..0000000 --- a/.changeset/wild-balloons-hang.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@arcanewizards/sigil': patch ---- - -Avoid calling setPositionState with bad position - -Avoid calling `setPositionState` in browser media session with a position that -is less than 0 or greater than the duration of the loaded media. diff --git a/packages/sigil/CHANGELOG.md b/packages/sigil/CHANGELOG.md index 93fefb2..a959324 100644 --- a/packages/sigil/CHANGELOG.md +++ b/packages/sigil/CHANGELOG.md @@ -1,5 +1,37 @@ # @arcanewizards/sigil +## 0.2.0 + +### Minor Changes + +- c274364: Introduce a new `ShowFileConfig` and `ShowFileSaveAsButton` components + + Introduce new components for the UI / frontend for consistently managing show + files across sigil-based apps. The first usage of this component will be in + Arcane Desktop, but additional usages (e.g. timecode-toolbox) are expected + later on. + +### Patch Changes + +- c274364: Expand user-actions module with more utilities + - `ActionResponse` type, designed to allow for more rich error messages from + e.g. server actions + - `mapUserActionState` (basic functional map function over `UserActionState`) + - `useUserAction` - a react hook for managing state relating to user actions + and promise-based calls + +- c274364: Add sigil-grid tailwind utility classes +- c274364: Add vAlign attribute to ControlLabel +- c274364: Introduce ControlFileButton component + + This is a special-case of a ControlButton, + designed to load files from the users' system. + +- 4889337: Avoid calling setPositionState with bad position + + Avoid calling `setPositionState` in browser media session with a position that + is less than 0 or greater than the duration of the loaded media. + ## 0.1.12 ### Patch Changes diff --git a/packages/sigil/package.json b/packages/sigil/package.json index a88dcfc..85d1862 100644 --- a/packages/sigil/package.json +++ b/packages/sigil/package.json @@ -1,7 +1,7 @@ { "name": "@arcanewizards/sigil", "description": "Application framework for A/V applications, built on-top of arcanejs", - "version": "0.1.12", + "version": "0.2.0", "private": false, "license": "MIT", "type": "module",