Skip to content

Commit

Permalink
chore: changelogs, build
Browse files Browse the repository at this point in the history
  • Loading branch information
micahjones13 committed Oct 21, 2024
1 parent 44237a2 commit e26e04b
Show file tree
Hide file tree
Showing 16 changed files with 81 additions and 37 deletions.
11 changes: 0 additions & 11 deletions .changeset/strong-ravens-build.md

This file was deleted.

14 changes: 11 additions & 3 deletions packages/angular-workspace/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
# @astrouxds/angular

## 7.24.0

### Minor Changes

#### Input

- Added minlength and maxlength props

## 7.23.0

### Minor Changes

#### Tabs

- Added a new 'actions' slot to allow for tab actions on individual tabs (such as closing a tab), without firing off the `ruxselected` event.
- Added a new 'actions' slot to allow for tab actions on individual tabs (such as closing a tab), without firing off the `ruxselected` event.

### Patch Changes

#### Button

- Fixed button bug when clicking and dragging over an icon-only, borderless button
- Fixed button bug when clicking and dragging over an icon-only, borderless button

#### Input

- Fixed an issue causing caret navigation to appear innappropriately within input
- Fixed an issue causing caret navigation to appear innappropriately within input

## 7.22.1

Expand Down
4 changes: 2 additions & 2 deletions packages/angular-workspace/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-workspace",
"version": "7.23.0",
"version": "7.24.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand All @@ -24,7 +24,7 @@
"@angular/platform-browser": "~13.2.7",
"@angular/platform-browser-dynamic": "~13.2.7",
"@angular/router": "~13.2.7",
"@astrouxds/astro-web-components": "^7.23.0",
"@astrouxds/astro-web-components": "^7.24.0",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.11.8"
Expand Down
14 changes: 11 additions & 3 deletions packages/angular-workspace/projects/angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
# @astrouxds/angular

## 7.24.0

### Minor Changes

#### Input

- Added minlength and maxlength props

## 7.23.0

### Minor Changes

#### Tabs

- Added a new 'actions' slot to allow for tab actions on individual tabs (such as closing a tab), without firing off the `ruxselected` event.
- Added a new 'actions' slot to allow for tab actions on individual tabs (such as closing a tab), without firing off the `ruxselected` event.

### Patch Changes

#### Button

- Fixed button bug when clicking and dragging over an icon-only, borderless button
- Fixed button bug when clicking and dragging over an icon-only, borderless button

#### Input

- Fixed an issue causing caret navigation to appear innappropriately within input
- Fixed an issue causing caret navigation to appear innappropriately within input

## 7.22.1

Expand Down
4 changes: 2 additions & 2 deletions packages/angular-workspace/projects/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astrouxds/angular",
"version": "7.23.0",
"version": "7.24.0",
"description": "Astro Web Components Angular Wrapper",
"license": "MIT",
"repository": {
Expand All @@ -12,7 +12,7 @@
"@angular/core": ">=12.0.0"
},
"dependencies": {
"@astrouxds/astro-web-components": "^7.23.0",
"@astrouxds/astro-web-components": "^7.24.0",
"tslib": "^2.4.1"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23693,15 +23693,15 @@ export declare interface RuxIndeterminateProgress extends Components.RuxIndeterm


@ProxyCmp({
inputs: ['autocomplete', 'disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
inputs: ['autocomplete', 'disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'maxlength', 'min', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
methods: ['setFocus', 'getInput']
})
@Component({
selector: 'rux-input',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: ['autocomplete', 'disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
inputs: ['autocomplete', 'disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'maxlength', 'min', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
})
export class RuxInput {
protected el: HTMLElement;
Expand Down
6 changes: 6 additions & 0 deletions packages/framework-testing/astro-angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# astro-angular

## 0.4.0

### Minor Changes

- 44237a22: Added minlength and maxlength to rux-input

## 0.3.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/framework-testing/astro-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-angular",
"version": "0.3.1",
"version": "0.4.0",
"scripts": {
"postinstall": "npm link @astrouxds/astro-web-components @astrouxds/angular",
"ng": "ng",
Expand All @@ -27,8 +27,8 @@
"@angular-devkit/build-angular": "^16.0.0",
"@angular/cli": "~16.0.0",
"@angular/compiler-cli": "^16.0.0",
"@astrouxds/angular": "^7.22.2",
"@astrouxds/astro-web-components": "^7.23.0",
"@astrouxds/angular": "^7.24.0",
"@astrouxds/astro-web-components": "^7.24.0",
"@astrouxds/tailwind": "^1.0.0-beta.1",
"@types/jasmine": "~4.3.0",
"autoprefixer": "^10.4.14",
Expand Down
6 changes: 6 additions & 0 deletions packages/framework-testing/astro-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# astro-react

## 0.4.0

### Minor Changes

- 44237a22: Added minlength and maxlength to rux-input

## 0.3.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/framework-testing/astro-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "astro-react",
"private": true,
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -14,8 +14,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@astrouxds/astro-web-components": "^7.23.0",
"@astrouxds/react": "^7.22.2",
"@astrouxds/astro-web-components": "^7.24.0",
"@astrouxds/react": "^7.24.0",
"@astrouxds/tailwind": "^1.0.0-beta.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
Expand Down
11 changes: 11 additions & 0 deletions packages/framework-testing/astro-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# astro-vue

## 0.4.0

### Minor Changes

- 44237a22: Added minlength and maxlength to rux-input

### Patch Changes

- Updated dependencies [44237a22]
- @astrouxds/astro-web-components@7.24.0

## 0.3.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/framework-testing/astro-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "astro-vue",
"private": true,
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@astrouxds/astro-web-components": "^7.23.0",
"@astrouxds/astro-web-components": "^7.24.0",
"vue": "^3.2.47"
},
"devDependencies": {
Expand Down
14 changes: 11 additions & 3 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
# @astrouxds/react

## 7.24.0

### Minor Changes

#### Input

- Added minlength and maxlength props

## 7.23.0

### Minor Changes

#### Tabs

- Added a new 'actions' slot to allow for tab actions on individual tabs (such as closing a tab), without firing off the `ruxselected` event.
- Added a new 'actions' slot to allow for tab actions on individual tabs (such as closing a tab), without firing off the `ruxselected` event.

### Patch Changes

#### Button

- Fixed button bug when clicking and dragging over an icon-only, borderless button
- Fixed button bug when clicking and dragging over an icon-only, borderless button

#### Input

- Fixed an issue causing caret navigation to appear innappropriately within input
- Fixed an issue causing caret navigation to appear innappropriately within input

## 7.22.1

Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@astrouxds/react",
"sideEffects": false,
"version": "7.23.0",
"version": "7.24.0",
"description": "Astro Web Components React Wrapper",
"repository": {
"type": "git",
Expand Down Expand Up @@ -40,7 +40,7 @@
"typescript": "^4.9.3"
},
"dependencies": {
"@astrouxds/astro-web-components": "^7.23.0"
"@astrouxds/astro-web-components": "^7.24.0"
},
"peerDependencies": {
"react": ">=17.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @astrouxds/astro-web-components

## 7.24.0

### Minor Changes

#### Input

- Added minlength and maxlength props

## 7.23.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astrouxds/astro-web-components",
"version": "7.23.0",
"version": "7.24.0",
"description": "Astro Web Components",
"homepage": "https://astro-components.netlify.app/?path=/story/astro-uxds-welcome-start-here--page",
"repository": {
Expand Down

0 comments on commit e26e04b

Please sign in to comment.