Skip to content

Commit

Permalink
docs: fix broken URLs in docs
Browse files Browse the repository at this point in the history
Signed-off-by: Rong Sen Ng (motss) <[email protected]>
  • Loading branch information
motss committed Mar 13, 2022
1 parent f531c50 commit 83c06d5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
10 changes: 5 additions & 5 deletions docs/app-date-picker-dialog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Properties

It includes all properties from [AppDatePicker](app-date-picker-properties-url) and some of the properties from [MwcDialog](mwc-dialog-properties-url).
It includes all properties from [AppDatePicker][app-date-picker-properties-url] and some of the properties from [MwcDialog][mwc-dialog-properties-url].

| Property | Type | Default | Description |
| --- | --- | --- | --- |
Expand All @@ -19,7 +19,7 @@ It includes all properties from [AppDatePicker](app-date-picker-properties-url)

## Methods

This includes all the methods from [MwcDialog](mwc-dialog-methods-url).
This includes all the methods from [MwcDialog][mwc-dialog-methods-url].

| Method | Returns | Description |
| --- | --- | --- |
Expand All @@ -30,19 +30,19 @@ This includes all the methods from [MwcDialog](mwc-dialog-methods-url).

## Events

It includes all the events from [AppDatePicker](app-date-picker-events-url) and all from [MwcDialog](mwc-dialog-events-url).
It includes all the events from [AppDatePicker][app-date-picker-events-url] and all from [MwcDialog][mwc-dialog-events-url].



## CSS Custom Properties

It includes all the CSS Custom properties from [AppDatePicker](app-date-picker-css-custom-properties-url) and all from [MwcDialog](mwc-dialog-css-custom-properties-url) except `--mdc-dialog-min-width` and `--mdc-shape-medium`.
It includes all the CSS Custom properties from [AppDatePicker][app-date-picker-css-custom-properties-url] and all from [MwcDialog][mwc-dialog-css-custom-properties-url] except `--mdc-dialog-min-width` and `--mdc-shape-medium`.



## CSS Shadow Parts

It includes all the CSS Shadow Parts from [AppDatePicker](app-date-picker-css-shadow-parts-url).
It includes all the CSS Shadow Parts from [AppDatePicker][app-date-picker-css-shadow-parts-url].



Expand Down
10 changes: 5 additions & 5 deletions docs/app-date-picker-input.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Properties

It includes all properties from [AppDatePicker](app-date-picker-properties-url) and some of the properties from [MwcTextfield](mwc-textfield-properties-url).
It includes all properties from [AppDatePicker][app-date-picker-properties-url] and some of the properties from [MwcTextfield][mwc-textfield-properties-url].

| Property | Type | Default | Description |
| --- | --- | --- | --- |
Expand All @@ -16,7 +16,7 @@ It includes all properties from [AppDatePicker](app-date-picker-properties-url)

## Methods

This includes all the methods from [MwcTextfield](mwc-textfield-methods-url).
This includes all the methods from [MwcTextfield][mwc-textfield-methods-url].

| Method | Returns | Description |
| --- | --- | --- |
Expand All @@ -28,13 +28,13 @@ This includes all the methods from [MwcTextfield](mwc-textfield-methods-url).

## Events

It includes all the events from [AppDatePicker](app-date-picker-events-url) and all from [MwcMenu](mwc-menu-events-url) except that the event target is `app-date-picker-input`.
It includes all the events from [AppDatePicker][app-date-picker-events-url] and all from [MwcMenu][mwc-menu-events-url] except that the event target is `app-date-picker-input`.



## CSS Custom Properties

It includes all the CSS Custom properties from [AppDatePicker](app-date-picker-css-custom-properties-url) and all from [MwcTextfield](mwc-textfield-css-custom-properties-url).
It includes all the CSS Custom properties from [AppDatePicker][app-date-picker-css-custom-properties-url] and all from [MwcTextfield][mwc-textfield-css-custom-properties-url].

| Property | Default | Description |
| --- | --- | --- |
Expand All @@ -43,7 +43,7 @@ It includes all the CSS Custom properties from [AppDatePicker](app-date-picker-c

## CSS Shadow Parts

It includes all the CSS Shadow Parts from [AppDatePicker](app-date-picker-css-shadow-parts-url).
It includes all the CSS Shadow Parts from [AppDatePicker][app-date-picker-css-shadow-parts-url].



Expand Down
2 changes: 1 addition & 1 deletion docs/app-date-picker.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ via the read-only `detail` property.
| `--app-selected-hover` | `#6200ee` | Border color for all hover state when selected. |
| `--app-selected-on-focus` | `#fff` | Text color for all focus state when selected. |
| `--app-selected-on-hover` | `#fff` | Text color for all hover state when selected. |
| `--app-shape` | `0px` | Border radius of the picker. |
| `--app-shape` | `8px` | Border radius of the picker. |
| `--app-surface` | `#fff` | Background color of the picker surface. |
| `--app-today` | `#000` | Border color of today date. |

Expand Down
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@
--app-selected-hover: var(--primary);
--app-selected-on-focus: var(--on-primary);
--app-selected-on-hover: var(--on-primary);
--app-shape: 8px;
--app-surface: var(--surface);
--app-today: var(--white);
--date-picker-input-icon: var(--white);
Expand Down
2 changes: 1 addition & 1 deletion src/stylings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const baseStyling = css`
--_selected-hover: var(--app-selected-hover, #6200ee);
--_selected-on-focus: var(--app-selected-on-focus, #fff);
--_selected-on-hover: var(--app-selected-on-hover, #fff);
--_shape: var(--app-shape, 0px);
--_shape: var(--app-shape, 8px);
--_surface: var(--app-surface, #fff);
--_today: var(--app-today, #000);
}
Expand Down

0 comments on commit 83c06d5

Please sign in to comment.