Skip to content

Commit

Permalink
fix(ui-library): updating element tag name in example js app
Browse files Browse the repository at this point in the history
  • Loading branch information
davidken91 committed Mar 13, 2024
1 parent 7a5127a commit 8dddeae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/js-example-app/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const toggleLoadingButton = document.querySelector('#toggleLoadingState');
const toggleDisabledState = document.querySelector('#toggleDisabledState');
const logsContainer = document.querySelector('#logs');

const blrTextButton = document.getElementsByTagName('blr-text-button')[0];
const blrIconButton = document.getElementsByTagName('blr-buton-icon')[0];
const blrTextButton = document.getElementsByTagName('blr-button-text')[0];
const blrIconButton = document.getElementsByTagName('blr-button-icon')[0];
const blrCheckbox = document.getElementsByTagName('blr-checkbox')[0];
const blrSelect = document.getElementsByTagName('blr-select')[0];
const blrInputFieldText = document.getElementsByTagName('blr-input-field-text')[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,23 +122,20 @@ export default {
},
// Events
blrClick: {
name: 'blrClick',
description: 'Fires when the component is clicked.',
action: 'blrClick',
table: {
category: 'Events',
},
},
blrFocus: {
name: 'blrFocus',
description: 'Fires when the component is focused.',
action: 'blrFocus',
table: {
category: 'Events',
},
},
blrBlur: {
name: 'blrBlur',
description: 'Fires when the component lost focus.',
action: 'blrBlur',
table: {
Expand Down

0 comments on commit 8dddeae

Please sign in to comment.