Skip to content

Commit

Permalink
chore: release 1.0.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sub-Xaero committed Mar 9, 2023
1 parent eb18cea commit f02d832
Show file tree
Hide file tree
Showing 10 changed files with 150 additions and 100 deletions.
192 changes: 103 additions & 89 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.0-alpha.0](https://github.com/Sub-Xaero/stimulus-library/compare/v0.9.11...v1.0.0-alpha.0) (2023-03-09)


### Bug Fixes

* **SignalInputController:** Fix wrong event triggered when SignalInputController set to synthesize input events when they sync values ([a0fde82](https://github.com/Sub-Xaero/stimulus-library/commit/a0fde821907a16872916ea2a65f6e73dd36de87e))


### Features

* **TweenNumberController:** Add options to allow formatting of the tweened number ([b660317](https://github.com/Sub-Xaero/stimulus-library/commit/b660317cc3d014aee7d60b52fe8f89af54789e87))

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.9.11](https://github.com/Sub-Xaero/stimulus-library/compare/v0.9.10...v0.9.11) (2023-03-06)

Expand Down Expand Up @@ -540,90 +554,90 @@ All notable changes to this project will be documented in this file. See [standa

* package.json pointing to incorrect Typescript output. Should be index.d.ts ([68e22d8](https://github.com/Sub-Xaero/stimulus-library/commit/68e22d80c5928648c947eb3f585bb6212c2a5b97))

### [0.2.3](https://github.com/Sub-Xaero/stimulus-library/compare/v0.2.1...v0.2.3) (2021-03-30)


### Features

* DetectDirtyFormController - A form controller that detects the dirty state of a whole form and any of its children. ([e173932](https://github.com/Sub-Xaero/stimulus-library/commit/e17393239790945c55fa597dfb19884debf0418a))
* Form RC Controller. Able to submit and reset a form from outside its child subtree. Closes [#7](https://github.com/Sub-Xaero/stimulus-library/issues/7) ([0fa1df0](https://github.com/Sub-Xaero/stimulus-library/commit/0fa1df0504114882a0e374611eac24e214302c51))

### [0.2.2](https://github.com/Sub-Xaero/stimulus-library/compare/v0.2.1...v0.2.2) (2021-03-26)


### Features

* Form RC Controller. Able to submit and reset a form from outside its child subtree. Closes [#7](https://github.com/Sub-Xaero/stimulus-library/issues/7) ([0fa1df0](https://github.com/Sub-Xaero/stimulus-library/commit/0fa1df0504114882a0e374611eac24e214302c51))

### [0.2.1](https://github.com/Sub-Xaero/stimulus-library/compare/v0.2.0...v0.2.1) (2021-03-11)


### Features

* ConfirmNavigationController - Support for Hotwire/Turbo and Turbolinks navigation events ([f698920](https://github.com/Sub-Xaero/stimulus-library/commit/f698920ad5fe0683cc826f0c4eefbb0a2360f1b2))
* DisableWithController - Controller to disable an element temporarily to prevent double clicks and submissions. Emulates UJS DisableWith for Hotwire applications. ([#12](https://github.com/Sub-Xaero/stimulus-library/issues/12)) ([1d675b0](https://github.com/Sub-Xaero/stimulus-library/commit/1d675b0bd3b8a3c2042c0e754394ae07d71f96d5))
* ElementSaveController - save the state of a single element to localstorage. Closes [#4](https://github.com/Sub-Xaero/stimulus-library/issues/4) ([#14](https://github.com/Sub-Xaero/stimulus-library/issues/14)) ([5b39deb](https://github.com/Sub-Xaero/stimulus-library/commit/5b39deb6dacc4acf9f062247e29c4a48084eea98))
* RemoteFormController - Controller for handling UJS remote form responses ([fdf0e5f](https://github.com/Sub-Xaero/stimulus-library/commit/fdf0e5f73801650897b6e170729117b4e8b2ef6c))
* TurboFrameRefreshController - a controller to either manually or periodically refresh the contents of a turboframe's src ([#13](https://github.com/Sub-Xaero/stimulus-library/issues/13)) ([f4dfd98](https://github.com/Sub-Xaero/stimulus-library/commit/f4dfd9895f365c3b0d8cb26b8e148dea82d7919a))


### Bug Fixes

* Accidentally using type-guards for HTMLLinkElement instead of HTMLAnchorElement. ([d3f2be9](https://github.com/Sub-Xaero/stimulus-library/commit/d3f2be9f191471c9c6071257de731f0fd3510460))

## [0.2.0](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.15...v0.2.0) (2021-03-02)


### ⚠ BREAKING CHANGES

* Remove lodash as a dependency

### Bug Fixes

* Fix bug in LimitedSelectionCheckboxesController where maxValue was being ignored ([fc639f6](https://github.com/Sub-Xaero/stimulus-library/commit/fc639f66709056a65625cac07e6a0ceb9913fb15))


* Remove lodash as a dependency ([d3990ea](https://github.com/Sub-Xaero/stimulus-library/commit/d3990eaf27a419086f4ddaed4e1aacda03535fab))

### [0.1.15](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.14...v0.1.15) (2021-03-01)


### Features

* Add optional selector and error-message values to async-block and lazy-block controllers. Users can choose to extract sub-content from HTML responses, and provide their own error messages when fetch fails. ([1c3be1e](https://github.com/Sub-Xaero/stimulus-library/commit/1c3be1eb840fe4f3518a5cca7b760b11730d4d43))

### [0.1.14](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.13...v0.1.14) (2021-02-26)


### Bug Fixes

* Fix NestedFormController - The ID generated by generateID needs to not have any decimal points. Math.random() gives a number between 0 and 1. Slice out decimal point ([684e073](https://github.com/Sub-Xaero/stimulus-library/commit/684e0736586d9834fee4305a392203284ecf8aa2))

### [0.1.13](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.12...v0.1.13) (2021-02-26)


### Bug Fixes

* Fix bug in Nested Form Controller where new class API was being used without the dot "." prefix in the selector ([315b1cf](https://github.com/Sub-Xaero/stimulus-library/commit/315b1cfe9d69097d7abd262ac8583ef6669821ec))

### [0.1.12](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.11...v0.1.12) (2021-02-11)


### Features

* AppearanceController - A utility controller to wire up Stimulus actions when the user focuses/minimises the page ([e15fe82](https://github.com/Sub-Xaero/stimulus-library/commit/e15fe8273aa00ddc263b087da152af698467e04a))
* IntersectionController - A utility controller to wire up Stimulus actions when an element moves in/out of the viewport ([dbda74f](https://github.com/Sub-Xaero/stimulus-library/commit/dbda74f2ad32e2b5badb34dd6e390edf10d7c6bc))

### [0.1.11](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.10...v0.1.11) (2021-02-10)


### Features

* StickyController - A controller to be able to style "sticky" elements depending on their "stuck" state. ([ce598eb](https://github.com/Sub-Xaero/stimulus-library/commit/ce598ebb50b588a639fd07adaed4c169852523dd))

### [0.1.10](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.9...v0.1.10) (2021-02-09)


### Bug Fixes

* Fix bug in CheckboxSelectAllController preventing connect() from adding event listeners ([db577a9](https://github.com/Sub-Xaero/stimulus-library/commit/db577a9768f04b47d1484d13e41cfbb2714476d3))
### [0.2.3](https://github.com/Sub-Xaero/stimulus-library/compare/v0.2.1...v0.2.3) (2021-03-30)


### Features

* DetectDirtyFormController - A form controller that detects the dirty state of a whole form and any of its children. ([e173932](https://github.com/Sub-Xaero/stimulus-library/commit/e17393239790945c55fa597dfb19884debf0418a))
* Form RC Controller. Able to submit and reset a form from outside its child subtree. Closes [#7](https://github.com/Sub-Xaero/stimulus-library/issues/7) ([0fa1df0](https://github.com/Sub-Xaero/stimulus-library/commit/0fa1df0504114882a0e374611eac24e214302c51))

### [0.2.2](https://github.com/Sub-Xaero/stimulus-library/compare/v0.2.1...v0.2.2) (2021-03-26)


### Features

* Form RC Controller. Able to submit and reset a form from outside its child subtree. Closes [#7](https://github.com/Sub-Xaero/stimulus-library/issues/7) ([0fa1df0](https://github.com/Sub-Xaero/stimulus-library/commit/0fa1df0504114882a0e374611eac24e214302c51))

### [0.2.1](https://github.com/Sub-Xaero/stimulus-library/compare/v0.2.0...v0.2.1) (2021-03-11)


### Features

* ConfirmNavigationController - Support for Hotwire/Turbo and Turbolinks navigation events ([f698920](https://github.com/Sub-Xaero/stimulus-library/commit/f698920ad5fe0683cc826f0c4eefbb0a2360f1b2))
* DisableWithController - Controller to disable an element temporarily to prevent double clicks and submissions. Emulates UJS DisableWith for Hotwire applications. ([#12](https://github.com/Sub-Xaero/stimulus-library/issues/12)) ([1d675b0](https://github.com/Sub-Xaero/stimulus-library/commit/1d675b0bd3b8a3c2042c0e754394ae07d71f96d5))
* ElementSaveController - save the state of a single element to localstorage. Closes [#4](https://github.com/Sub-Xaero/stimulus-library/issues/4) ([#14](https://github.com/Sub-Xaero/stimulus-library/issues/14)) ([5b39deb](https://github.com/Sub-Xaero/stimulus-library/commit/5b39deb6dacc4acf9f062247e29c4a48084eea98))
* RemoteFormController - Controller for handling UJS remote form responses ([fdf0e5f](https://github.com/Sub-Xaero/stimulus-library/commit/fdf0e5f73801650897b6e170729117b4e8b2ef6c))
* TurboFrameRefreshController - a controller to either manually or periodically refresh the contents of a turboframe's src ([#13](https://github.com/Sub-Xaero/stimulus-library/issues/13)) ([f4dfd98](https://github.com/Sub-Xaero/stimulus-library/commit/f4dfd9895f365c3b0d8cb26b8e148dea82d7919a))


### Bug Fixes

* Accidentally using type-guards for HTMLLinkElement instead of HTMLAnchorElement. ([d3f2be9](https://github.com/Sub-Xaero/stimulus-library/commit/d3f2be9f191471c9c6071257de731f0fd3510460))

## [0.2.0](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.15...v0.2.0) (2021-03-02)


### ⚠ BREAKING CHANGES

* Remove lodash as a dependency

### Bug Fixes

* Fix bug in LimitedSelectionCheckboxesController where maxValue was being ignored ([fc639f6](https://github.com/Sub-Xaero/stimulus-library/commit/fc639f66709056a65625cac07e6a0ceb9913fb15))


* Remove lodash as a dependency ([d3990ea](https://github.com/Sub-Xaero/stimulus-library/commit/d3990eaf27a419086f4ddaed4e1aacda03535fab))

### [0.1.15](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.14...v0.1.15) (2021-03-01)


### Features

* Add optional selector and error-message values to async-block and lazy-block controllers. Users can choose to extract sub-content from HTML responses, and provide their own error messages when fetch fails. ([1c3be1e](https://github.com/Sub-Xaero/stimulus-library/commit/1c3be1eb840fe4f3518a5cca7b760b11730d4d43))

### [0.1.14](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.13...v0.1.14) (2021-02-26)


### Bug Fixes

* Fix NestedFormController - The ID generated by generateID needs to not have any decimal points. Math.random() gives a number between 0 and 1. Slice out decimal point ([684e073](https://github.com/Sub-Xaero/stimulus-library/commit/684e0736586d9834fee4305a392203284ecf8aa2))

### [0.1.13](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.12...v0.1.13) (2021-02-26)


### Bug Fixes

* Fix bug in Nested Form Controller where new class API was being used without the dot "." prefix in the selector ([315b1cf](https://github.com/Sub-Xaero/stimulus-library/commit/315b1cfe9d69097d7abd262ac8583ef6669821ec))

### [0.1.12](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.11...v0.1.12) (2021-02-11)


### Features

* AppearanceController - A utility controller to wire up Stimulus actions when the user focuses/minimises the page ([e15fe82](https://github.com/Sub-Xaero/stimulus-library/commit/e15fe8273aa00ddc263b087da152af698467e04a))
* IntersectionController - A utility controller to wire up Stimulus actions when an element moves in/out of the viewport ([dbda74f](https://github.com/Sub-Xaero/stimulus-library/commit/dbda74f2ad32e2b5badb34dd6e390edf10d7c6bc))

### [0.1.11](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.10...v0.1.11) (2021-02-10)


### Features

* StickyController - A controller to be able to style "sticky" elements depending on their "stuck" state. ([ce598eb](https://github.com/Sub-Xaero/stimulus-library/commit/ce598ebb50b588a639fd07adaed4c169852523dd))

### [0.1.10](https://github.com/Sub-Xaero/stimulus-library/compare/v0.1.9...v0.1.10) (2021-02-09)


### Bug Fixes

* Fix bug in CheckboxSelectAllController preventing connect() from adding event listeners ([db577a9](https://github.com/Sub-Xaero/stimulus-library/commit/db577a9768f04b47d1484d13e41cfbb2714476d3))
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"version": "0.9.11"
"version": "1.0.0-alpha.0"
}
9 changes: 9 additions & 0 deletions packages/controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.0-alpha.0](https://github.com/Sub-Xaero/stimulus-library/compare/v0.9.11...v1.0.0-alpha.0) (2023-03-09)

**Note:** Version bump only for package @stimulus-library/controllers

6 changes: 3 additions & 3 deletions packages/controllers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ruby on rails",
"ruby-on-rails"
],
"version": "0.9.11",
"version": "1.0.0-alpha.0",
"license": "MIT",
"author": {
"name": "Sub-Xaero",
Expand All @@ -34,8 +34,8 @@
"test:treeshake": "agadoo dist"
},
"dependencies": {
"@stimulus-library/mixins": "*",
"@stimulus-library/utilities": "*"
"@stimulus-library/mixins": "^1.0.0-alpha.0",
"@stimulus-library/utilities": "^1.0.0-alpha.0"
},
"devDependencies": {
"agadoo": "^3.0.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/mixins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.0-alpha.0](https://github.com/Sub-Xaero/stimulus-library/compare/v0.9.11...v1.0.0-alpha.0) (2023-03-09)

**Note:** Version bump only for package @stimulus-library/mixins

4 changes: 2 additions & 2 deletions packages/mixins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ruby on rails",
"ruby-on-rails"
],
"version": "0.9.11",
"version": "1.0.0-alpha.0",
"license": "MIT",
"author": {
"name": "Sub-Xaero",
Expand All @@ -35,7 +35,7 @@
},
"dependencies": {
"@hotwired/stimulus": "^3.0.0",
"@stimulus-library/utilities": "*"
"@stimulus-library/utilities": "^1.0.0-alpha.0"
},
"devDependencies": {
"agadoo": "^3.0.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/stimulus-library/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.0-alpha.0](https://github.com/Sub-Xaero/stimulus-library/compare/v0.9.11...v1.0.0-alpha.0) (2023-03-09)

**Note:** Version bump only for package stimulus-library

6 changes: 3 additions & 3 deletions packages/stimulus-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ruby on rails",
"ruby-on-rails"
],
"version": "0.9.11",
"version": "1.0.0-alpha.0",
"license": "MIT",
"author": {
"name": "Sub-Xaero",
Expand All @@ -35,8 +35,8 @@
},
"dependencies": {
"@hotwired/stimulus": "^3.2.1",
"@stimulus-library/controllers": "*",
"@stimulus-library/mixins": "*",
"@stimulus-library/controllers": "^1.0.0-alpha.0",
"@stimulus-library/mixins": "^1.0.0-alpha.0",
"@stimulus-library/utilities": "*0"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/utilities/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.0-alpha.0](https://github.com/Sub-Xaero/stimulus-library/compare/v0.9.11...v1.0.0-alpha.0) (2023-03-09)

**Note:** Version bump only for package @stimulus-library/utilities

4 changes: 2 additions & 2 deletions packages/utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ruby on rails",
"ruby-on-rails"
],
"version": "0.9.11",
"version": "1.0.0-alpha.0",
"license": "MIT",
"author": {
"name": "Sub-Xaero",
Expand All @@ -35,7 +35,7 @@
},
"dependencies": {
"@hotwired/stimulus": "^3.0.0",
"@stimulus-library/utilities": "*"
"@stimulus-library/utilities": "^1.0.0-alpha.0"
},
"devDependencies": {
"agadoo": "^3.0.0",
Expand Down

0 comments on commit f02d832

Please sign in to comment.