diff --git a/README.md b/README.md index a3d21e38..69ab8486 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Coverage Status](https://coveralls.io/repos/github/bindable-ui/bindable/badge.svg?branch=master)](https://coveralls.io/github/bindable-ui/bindable?branch=master) -Bindable is a design system that aims to provide the video products in Verizon Media tools to build cohesive and consistent interfaces. Bindable will provide a common pattern for desginers and engineers to follow. Bindable is developed as an Aurelia plugin and built with the aurelia-cli. +Bindable is a design system that aims to provide the video products in Verizon Media tools to build cohesive and consistent interfaces. Bindable will provide a common pattern for desginers and engineers to follow. Bindable is developed as an Aurelia plugin and built with the aurelia-cli. ## Table of Contents @@ -93,7 +93,7 @@ This Aurelia plugin project has a built-in dev app to simplify development. 3. You can use normal `npm start` and `npm test` in development just like developing an app. 4. To ensure compatibility to other apps, always use `PLATFORM.moduleName()` wrapper in files inside `src/`. You don't need to use the wrapper in `dev-app/` folder as CLI built-in bundler supports module name without the wrapper. -The dev-app contains the docs. Use that to view what parameters are available when using the components in Bindable. +The dev-app contains the docs. Use that to view what parameters are available when using the components in Bindable. ### Run dev app diff --git a/dev-app/app.html b/dev-app/app.html index b646f491..a939882f 100644 --- a/dev-app/app.html +++ b/dev-app/app.html @@ -14,6 +14,7 @@ @@ -77,6 +79,7 @@ class="footer-links" href="https://github.com/bindable-ui/bindable/issues" target="_blank" + rel="noopener" > Report An Issue diff --git a/dev-app/routes/components/forms/file/properties/index.ts b/dev-app/routes/components/forms/file/properties/index.ts index ecb4cb41..6d4841a8 100644 --- a/dev-app/routes/components/forms/file/properties/index.ts +++ b/dev-app/routes/components/forms/file/properties/index.ts @@ -33,6 +33,11 @@ export class FileProperties { name: 'error-msg', value: '', }, + { + description: 'Set if you need an id on the input field.', + name: 'id', + value: 'string', + }, { description: 'Set if this file picker is going to be for choosing an image.', name: 'image-picker', diff --git a/dev-app/routes/components/forms/slider/properties/index.ts b/dev-app/routes/components/forms/slider/properties/index.ts index 9000d606..0c714e0c 100644 --- a/dev-app/routes/components/forms/slider/properties/index.ts +++ b/dev-app/routes/components/forms/slider/properties/index.ts @@ -35,6 +35,11 @@ export class SliderProperties { name: 'error-msg', value: '', }, + { + description: 'Set if you need an id on the textarea.', + name: 'id', + value: 'string', + }, { default: '4', description: 'Set how many increments you want in the slider. It is zero based.', diff --git a/dev-app/routes/components/forms/textarea/properties/index.ts b/dev-app/routes/components/forms/textarea/properties/index.ts index 0ccf605e..9c1adea4 100644 --- a/dev-app/routes/components/forms/textarea/properties/index.ts +++ b/dev-app/routes/components/forms/textarea/properties/index.ts @@ -29,6 +29,11 @@ export class TextAreaProperties { name: 'error-msg', value: '', }, + { + description: 'Set if you need an id on the textarea.', + name: 'id', + value: 'string', + }, { description: 'Set the label text. If left off no label will be placed.', name: 'label', diff --git a/dev-app/routes/home/index.html b/dev-app/routes/home/index.html index 50fe6cc6..033bb800 100644 --- a/dev-app/routes/home/index.html +++ b/dev-app/routes/home/index.html @@ -282,6 +282,8 @@