Skip to content

Commit

Permalink
build: build and changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
micahjones13 committed Nov 1, 2023
1 parent 2ee1e4f commit 16d18db
Show file tree
Hide file tree
Showing 15 changed files with 68 additions and 36 deletions.
8 changes: 0 additions & 8 deletions .changeset/smooth-crabs-wash.md

This file was deleted.

16 changes: 12 additions & 4 deletions packages/angular-workspace/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,34 @@
# @astrouxds/angular

## 7.19.0

### Minor Changes

#### Timeline

- Added `show-start-of-day` attribute to rux-ruler

## 7.18.0

### Minor Changes

#### Input

- Added autocomplete property to rux-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
- 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
- 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
- Fixed an issue where timeline's playhead wouldn't update correctly when changing the interval

## 7.17.1

Expand Down
4 changes: 2 additions & 2 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.18.0",
"version": "7.19.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.18.0",
"@astrouxds/astro-web-components": "^7.19.0",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.11.8"
Expand Down
16 changes: 12 additions & 4 deletions packages/angular-workspace/projects/angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,34 @@
# @astrouxds/angular

## 7.19.0

### Minor Changes

#### Timeline

- Added `show-start-of-day` attribute to rux-ruler

## 7.18.0

### Minor Changes

#### Input

- Added autocomplete property to rux-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
- 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
- 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
- Fixed an issue where timeline's playhead wouldn't update correctly when changing the interval

## 7.17.1

Expand Down
4 changes: 2 additions & 2 deletions packages/angular-workspace/projects/angular/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/projects/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astrouxds/angular",
"version": "7.18.0",
"version": "7.19.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.18.0",
"@astrouxds/astro-web-components": "^7.19.0",
"tslib": "^2.4.1"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24085,13 +24085,14 @@ export declare interface RuxRadioGroup extends Components.RuxRadioGroup {


@ProxyCmp({
inputs: ['showStartOfDay']
})
@Component({
selector: 'rux-ruler',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: [],
inputs: ['showStartOfDay'],
})
export class RuxRuler {
protected el: HTMLElement;
Expand Down
16 changes: 12 additions & 4 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,34 @@
# @astrouxds/react

## 7.19.0

### Minor Changes

#### Timeline

- Added `show-start-of-day` attribute to rux-ruler

## 7.18.0

### Minor Changes

#### Input

- Added autocomplete property to rux-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
- 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
- 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
- Fixed an issue where timeline's playhead wouldn't update correctly when changing the interval

## 7.17.1

Expand Down
4 changes: 2 additions & 2 deletions packages/react/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/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@astrouxds/react",
"sideEffects": false,
"version": "7.18.0",
"version": "7.19.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.18.0"
"@astrouxds/astro-web-components": "^7.19.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.19.0

### Minor Changes

#### Timeline

- Added `show-start-of-day` attribute to rux-ruler

## 7.18.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/web-components/package-lock.json

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

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.18.0",
"version": "7.19.0",
"description": "Astro Web Components",
"homepage": "https://astro-components.netlify.app/?path=/story/astro-uxds-welcome-start-here--page",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
<!-- Auto Generated Below -->


## Properties

| Property | Attribute | Description | Type | Default |
| ---------------- | ------------------- | ------------------------------------------------------------------------------------- | ---------------------- | ------- |
| `showStartOfDay` | `show-start-of-day` | Display the day (MM/DD) at 00:00. Only works when Timeline interval is set to 'hour'. | `boolean \| undefined` | `false` |


----------------------------------------------

*Built with [StencilJS](https://stenciljs.com/)*

0 comments on commit 16d18db

Please sign in to comment.