Skip to content

Commit

Permalink
Merge branch 'develop' into k-date-components
Browse files Browse the repository at this point in the history
  • Loading branch information
LianaHarris360 committed Dec 8, 2022
2 parents 7ed8ba8 + d24d3d5 commit 9fe98f6
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
9 changes: 0 additions & 9 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,5 @@ Addresses #*PR# HERE*
- [ ] Are all UI components LTR and RTL compliant (if applicable)?
- [ ] _Add other things to check for here_

## Post-merge updates and tracking
<!-- After merging, unstable branches of Kolibri products (Learning Platform, Studio, and Data Portal) should be updated to point at the merge commit resulting from this PR. This process should be led by the submitter of the Design System PR in collaboration with other LE team members working on the other product repos. -->
- [ ] Learning Platform update PR is submitted
- [ ] Learning Platform update PR is merged
- [ ] Studio update PR is submitted
- [ ] Studio update PR is merged
- [ ] Data Portal update PR is submitted
- [ ] Data Portal update PR is merged

## Comments
<!-- Any additional notes you'd like to add -->
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@ Releases are recorded as git tags in the [Github releases](https://github.com/le
- [#185] - Handle arrow key navigation and improve focusOutline
- [#338] - Allow for new 'nav' slot inline in the toolbar
- [#362] - Add documentation pages for 'KResponsiveWindow' and 'KResponsiveElement'
- [#364] - Fixes 'Missing focus ring around password inputs' while navigating with keyboard.

<!-- Referenced PRs -->
[#185]: https://github.com/learningequality/kolibri-design-system/pull/185
[#338]: https://github.com/learningequality/kolibri-design-system/pull/338
[#362]: https://github.com/learningequality/kolibri-design-system/pull/362
[#364]: https://github.com/learningequality/kolibri-design-system/pull/364

## Version 1.3.1

Expand Down
10 changes: 10 additions & 0 deletions docs/pages/layout/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,13 @@

</template>


<script>
import responsiveWindowMixin from '~~/lib/KResponsiveWindowMixin.js';
export default {
mixins: [responsiveWindowMixin],
};
</script>
2 changes: 1 addition & 1 deletion lib/buttons-and-links/buttonMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default {
color: this.$themeTokens.link,
':hover': { color: this.$themeTokens.linkDark },
':focus': this.$coreOutline,
':disabled': { opacity: 0.5 },
...(this.disabled ? disabledStyle : {}),
};
},
primaryRaisedStyle() {
Expand Down
1 change: 1 addition & 0 deletions lib/content/mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const interactionEvents = [
'updateContentState',
'startTracking',
'navigateTo',
'finished',
];

const fileFieldMap = {
Expand Down
2 changes: 2 additions & 0 deletions lib/styles/trackInputModality.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ function setUpEventHandlers(disableFocusRingByDefault) {
'input[type=text]',
'input[type=radio]',
'input[type=checkbox]',
'input[type=search]',
'input[type=number]',
'input[type=date]',
'input[type=time]',
'input[type=datetime]',
'input[type=password]',
'textarea',
'[role=textbox]',
'a',
Expand Down

0 comments on commit 9fe98f6

Please sign in to comment.