Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
micahjones13 committed Dec 13, 2023
1 parent 683af9d commit 6d69b12
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
6 changes: 6 additions & 0 deletions packages/web-components/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20163,6 +20163,9 @@ export namespace Components {
"columns": number;
"end": string;
"interval": any;
/**
* The playhead of rux-track.
*/
"playhead": any;
"start": string;
"timezone": string;
Expand Down Expand Up @@ -55787,6 +55790,9 @@ declare namespace LocalJSX {
"columns"?: number;
"end"?: string;
"interval"?: any;
/**
* The playhead of rux-track.
*/
"playhead"?: any;
"start"?: string;
"timezone"?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

## Properties

| Property | Attribute | Description | Type | Default |
| ---------- | ---------- | ----------- | ----- | ----------- |
| `playhead` | `playhead` | | `any` | `undefined` |
| Property | Attribute | Description | Type | Default |
| ---------- | ---------- | -------------------------- | ----- | ----------- |
| `playhead` | `playhead` | The playhead of rux-track. | `any` | `undefined` |


## Slots
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,11 @@ export class RuxTrack {

@Element() el!: HTMLRuxTrackElement

@Prop({ reflect: true }) playhead: any

/**
* @internal - The grid's width. Set automatically from the parent Timeline component.
*/
@Prop({ reflect: true }) width = 0

/**
* @internal - The number of grid columns to display. Set automatically from the parent Timeline component.
*/
Expand All @@ -50,10 +49,12 @@ export class RuxTrack {
* @internal - The Track's interval. Set automatically from the parent Timeline component.
*/
@Prop({ reflect: true }) interval: any

/**
* @internal - The Track's start date. Set automatically from the parent Timeline component.
*/
@Prop({ reflect: true }) start = ''

/**
* @internal - The Track's end date. Set automatically from the parent Timeline component.
*/
Expand All @@ -64,6 +65,11 @@ export class RuxTrack {
*/
@Prop({ reflect: true }) timezone = 'UTC'

/**
* The playhead of rux-track.
*/
@Prop({ reflect: true }) playhead: any

@Watch('start')
@Watch('end')
@Watch('interval')
Expand Down

0 comments on commit 6d69b12

Please sign in to comment.