Skip to content

Commit

Permalink
Release 7.18.0 (#1255)
Browse files Browse the repository at this point in the history
* chore: build, changesets

* chore: build
  • Loading branch information
micahjones13 authored Oct 31, 2023
1 parent d773c48 commit 57b8773
Show file tree
Hide file tree
Showing 18 changed files with 111 additions and 582 deletions.
8 changes: 0 additions & 8 deletions .changeset/beige-bats-kiss.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/neat-tips-hear.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/nine-baboons-sleep.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-items-breathe.md

This file was deleted.

28 changes: 25 additions & 3 deletions packages/angular-workspace/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,42 @@
# @astrouxds/angular

## 7.18.0

### Minor Changes

#### Input

- Added autocomplete property to rux-input

#### Timeline

- Adds `has-playhead-indicator` prop to timeline which visually marks past time as played in each track

### Patch Changes

#### Segmented Button

- Fixed an issue where segmented buttons could not be tabbed between when next to each other

#### Timeline

- Fixed an issue where timeline's playhead wouldn't update correctly when changing the interval

## 7.17.1

### Patch Changes

#### Classification Marking

- Added some default left/right padding
- Added some default left/right padding

#### General

- Upgrade design token package to 1.12.0
- Upgrade design token package to 1.12.0

#### Tabs

- Fixed tabbing issue when tab1 is selected by default
- Fixed tabbing issue when tab1 is selected by default

## 7.17.0

Expand Down
113 changes: 0 additions & 113 deletions packages/angular-workspace/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.17.1",
"version": "7.18.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.17.1",
"@astrouxds/astro-web-components": "^7.18.0",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.11.8"
Expand Down
28 changes: 25 additions & 3 deletions packages/angular-workspace/projects/angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,42 @@
# @astrouxds/angular

## 7.18.0

### Minor Changes

#### Input

- Added autocomplete property to rux-input

#### Timeline

- Adds `has-playhead-indicator` prop to timeline which visually marks past time as played in each track

### Patch Changes

#### Segmented Button

- Fixed an issue where segmented buttons could not be tabbed between when next to each other

#### Timeline

- Fixed an issue where timeline's playhead wouldn't update correctly when changing the interval

## 7.17.1

### Patch Changes

#### Classification Marking

- Added some default left/right padding
- Added some default left/right padding

#### General

- Upgrade design token package to 1.12.0
- Upgrade design token package to 1.12.0

#### Tabs

- Fixed tabbing issue when tab1 is selected by default
- Fixed tabbing issue when tab1 is selected by default

## 7.17.0

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.17.1",
"version": "7.18.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.17.1",
"@astrouxds/astro-web-components": "^7.18.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: ['disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
inputs: ['autocomplete', 'disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', '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: ['disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
inputs: ['autocomplete', 'disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],
})
export class RuxInput {
protected el: HTMLElement;
Expand Down Expand Up @@ -24594,14 +24594,14 @@ export declare interface RuxTimeRegion extends Components.RuxTimeRegion {}


@ProxyCmp({
inputs: ['end', 'interval', 'playhead', 'start', 'timezone', 'zoom']
inputs: ['end', 'hasPlayedIndicator', 'interval', 'playhead', 'start', 'timezone', 'zoom']
})
@Component({
selector: 'rux-timeline',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: ['end', 'interval', 'playhead', 'start', 'timezone', 'zoom'],
inputs: ['end', 'hasPlayedIndicator', 'interval', 'playhead', 'start', 'timezone', 'zoom'],
})
export class RuxTimeline {
protected el: HTMLElement;
Expand Down Expand Up @@ -24704,13 +24704,14 @@ export declare interface RuxTooltip extends Components.RuxTooltip {


@ProxyCmp({
inputs: ['playhead']
})
@Component({
selector: 'rux-track',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: [],
inputs: ['playhead'],
})
export class RuxTrack {
protected el: HTMLElement;
Expand Down
Loading

0 comments on commit 57b8773

Please sign in to comment.