Skip to content

Commit

Permalink
yarn lock reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
RubirajAccenture committed Feb 14, 2024
1 parent 73a9196 commit b69e2dd
Show file tree
Hide file tree
Showing 4 changed files with 459 additions and 516 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,8 @@ const defaultParams: BlrTextInputType = {
readonly: false,
hasError: false,
errorMessage: '',
errorIcon: 'blrInfo',

type: 'text',
inputIcon: 'blr360',
showInputIcon: true,
Expand Down Expand Up @@ -386,6 +388,7 @@ const generateDisabledArgTypes = (argTypes: string[]) => {
const disabledArgTypes = {};
argTypes.forEach((argType: string) => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
disabledArgTypes[argType] = {
table: {
disable: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const defaultParams: BlrTextareaType = {
readonly: false,
hasError: false,
errorMessage: '',
errorIcon: 'blr360',
errorIcon: '',
};

//Main Showcase Storybook Textarea, main argType Table
Expand Down
5 changes: 3 additions & 2 deletions packages/ui-library/src/components/forms/textarea/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export class BlrTextarea extends LitElement {
})
: nothing}
`;
//prettier-ignore

return html`
<style>
${dynamicStyles}
Expand All @@ -208,6 +208,7 @@ export class BlrTextarea extends LitElement {
</div>`
: nothing}
<textarea
.value=${this.value}
class="blr-form-element textarea-input-control ${textareaClasses}"
id="${this.textareaId || nothing}"
name="${this.name || nothing}"
Expand All @@ -225,7 +226,7 @@ export class BlrTextarea extends LitElement {
@blur=${this.handleBlur}
@select=${this.handleSelect}
@keyup=${this.updateCounter}
>${this.value}</textarea>
></textarea>
<div class="${textareaInfoContainer}">
${this.hasHint || this.hasError
? BlrFormCaptionGroupRenderFunction({ size: this.size }, captionContent)
Expand Down
Loading

0 comments on commit b69e2dd

Please sign in to comment.