Skip to content
Open

Alpha #258

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9dccde5
feat: upgrade to support React 19
rmadampoolman Feb 5, 2025
2ca4eda
refactor: wIP: Started react 19 support refactors
jlews Feb 5, 2025
f926992
refactor: update remaining defaultProps and useRef calls for React 19…
rmadampoolman Feb 5, 2025
756d82f
refactor: update ReactDatePicker props to align with newer version of…
rmadampoolman Feb 5, 2025
6ff4f4b
refactor: add missed defaultProps for rating component
rmadampoolman Feb 5, 2025
aa20758
chore: update radioGroup sizes test to make them selectable and check…
rmadampoolman Feb 6, 2025
c4f5f21
chore: add disabled buttons test for RadioGroup
rmadampoolman Feb 6, 2025
ec48f14
fix: make disabled DropdownMenu items appear greyed out like other di…
rmadampoolman Feb 6, 2025
ad6b3cf
style: centralise checkbox indicator
rmadampoolman Feb 6, 2025
680ea00
fix: fix up handling of time selection event (revert onSelect to onCh…
rmadampoolman Feb 6, 2025
11e53e2
style: update styling of DatePicker to align with updates to underlyi…
rmadampoolman Feb 6, 2025
fb608cf
fix: fix an issue with handling of end date in range picker on subseq…
rmadampoolman Feb 6, 2025
d51fd64
fix: use Global disableControlOnPending config setting when disabling…
rmadampoolman Feb 6, 2025
261ffb1
chore: add messages test for ValidationErrors component
rmadampoolman Feb 6, 2025
72168c5
chore: add a toast test for Bottom-Right position
rmadampoolman Feb 6, 2025
5856eaf
chore: - Alpha workflow + minor formatting stuff
jlews Feb 6, 2025
bd91543
chore(release): 3.10.0-alpha.1 [skip ci]
semantic-release-bot Feb 6, 2025
89ec633
fix: fixes select input change when not searchable, removes select op…
DanDovi Feb 6, 2025
686a84c
chore(release): 3.10.0-alpha.2 [skip ci]
semantic-release-bot Feb 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/workflow_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches-ignore:
- main
- alpha

jobs:
setup:
Expand All @@ -22,6 +23,6 @@ jobs:
uses: ./.github/workflows/job_test.yml

chromatic:
needs: [setup, build]
needs: [setup, build, lint, test]
uses: ./.github/workflows/job_chromatic.yml
secrets: inherit
secrets: inherit
27 changes: 27 additions & 0 deletions .github/workflows/workflow_push_alpha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Push to pre-release

on:
push:
branches:
- alpha

jobs:
setup:
uses: ./.github/workflows/job_setup.yml

build:
needs: [setup]
uses: ./.github/workflows/job_build.yml

lint:
needs: [setup, build]
uses: ./.github/workflows/job_lint.yml

test:
needs: [setup, build]
uses: ./.github/workflows/job_test.yml

release_armstrong:
needs: [setup, build, lint, test]
uses: ./.github/workflows/job_release.yml
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/workflow_push_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
release_armstrong:
needs: [setup, build, lint, test]
uses: ./.github/workflows/job_release.yml
secrets: inherit
secrets: inherit
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,7 @@ module/README.md
**/.cypress/videos
test-results
*storybook.log
playground
playground

# IDE Settings
.idea
8 changes: 7 additions & 1 deletion module/.releaserc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"branches": ["main"],
"branches": [
"main",
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand Down
25 changes: 23 additions & 2 deletions module/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
# [3.9.0](https://github.com/Rocketmakers/armstrong-edge/compare/v3.8.3...v3.9.0) (2025-02-05)
# [3.10.0-alpha.2](https://github.com/Rocketmakers/armstrong-edge/compare/v3.10.0-alpha.1...v3.10.0-alpha.2) (2025-02-07)


### Bug Fixes

* fixes select input change when not searchable, removes select options scrollbar when not necessary ([89ec633](https://github.com/Rocketmakers/armstrong-edge/commit/89ec633c6261c6baa3c92476a2741d5427d5acd2))

# [3.10.0-alpha.1](https://github.com/Rocketmakers/armstrong-edge/compare/v3.9.0...v3.10.0-alpha.1) (2025-02-06)


### Bug Fixes

* fix an issue with handling of end date in range picker on subsequent selections ([fb608cf](https://github.com/Rocketmakers/armstrong-edge/commit/fb608cfac4c58c66cc421f4932ccf0e690488392))
* fix up handling of time selection event (revert onSelect to onChange for DatePicker) ([680ea00](https://github.com/Rocketmakers/armstrong-edge/commit/680ea0018611a85a12d3b015f9ccfe4edd17028f))
* make disabled DropdownMenu items appear greyed out like other disabled components ([ec48f14](https://github.com/Rocketmakers/armstrong-edge/commit/ec48f14035e8d204831baab2c25d82f275301a1f))
* use Global disableControlOnPending config setting when disabling a pending button ([d51fd64](https://github.com/Rocketmakers/armstrong-edge/commit/d51fd6426238b44238ea3ad929afb6b4d9c01c78))


### Features

* upgrade to support React 19 ([9dccde5](https://github.com/Rocketmakers/armstrong-edge/commit/9dccde52dbfc41be514a695ad3a572a50af8307e))

# [3.9.0](https://github.com/Rocketmakers/armstrong-edge/compare/v3.8.3...v3.9.0) (2025-02-05)

### Features

* - onBeforeUnload implemented on dialog to allow close to be prevented ([f5fe0c4](https://github.com/Rocketmakers/armstrong-edge/commit/f5fe0c4ecd8e7e9ea1144dcf60ab8538bd30f9bd))
- - onBeforeUnload implemented on dialog to allow close to be prevented ([f5fe0c4](https://github.com/Rocketmakers/armstrong-edge/commit/f5fe0c4ecd8e7e9ea1144dcf60ab8538bd30f9bd))

## [3.8.3](https://github.com/Rocketmakers/armstrong-edge/compare/v3.8.2...v3.8.3) (2025-01-29)

Expand Down
Loading