Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v1/contrib' into feature/popover…
Browse files Browse the repository at this point in the history
…-container-firefox-polyfill
  • Loading branch information
JesmoDev committed Nov 2, 2023
2 parents 3115e85 + c571131 commit 4f98b71
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
<!--- Go over all the following points, and put an `x` in all the boxes that apply. If you're unsure about any of these, don't hesitate to ask. We're here to help! -->

- [ ] If my change requires a change to the documentation, I have updated the documentation in this pull request.
- [ ] I have read the **[CONTRIBUTING](<(https://github.com/umbraco/Umbraco.UI/blob/dev/docs/CONTRIBUTING.md)>)** document.
- [ ] I have read the **[CONTRIBUTING](<(https://github.com/umbraco/Umbraco.UI/blob/v1/contrib/docs/CONTRIBUTING.md)>)** document.
- [ ] I have added tests to cover my changes.
1 change: 1 addition & 0 deletions packages/uui-css/lib/custom-properties.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
@import './custom-properties/shadow.css';
@import './custom-properties/palette.css';
@import './custom-properties/colors.css';
@import './custom-properties/fonts.css';
5 changes: 5 additions & 0 deletions packages/uui-css/lib/custom-properties/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@import '../typography/lato.css';

:root {
--uui-font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
3 changes: 2 additions & 1 deletion packages/uui-input/lib/uui-input.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ export type InputType =
| 'url'
| 'email'
| 'password'
| 'date'
| 'search'
| 'month'
| 'week'
| 'time'
| 'date'
| 'datetime-local'
| 'number'
| 'color';
Expand Down
3 changes: 2 additions & 1 deletion packages/uui-input/lib/uui-input.story.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ const meta: Meta<UUIInputElement> = {
'url',
'email',
'password',
'date',
'search',
'month',
'week',
'time',
'date',
'datetime-local',
'number',
'color',
Expand Down

0 comments on commit 4f98b71

Please sign in to comment.