vue-quest-ui 0.0.43 → 0.0.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -101,6 +101,7 @@ All components can be customized based on your needs by passing props to them. R
101
101
 
102
102
 
103
103
 
104
+
104
105
 
105
106
 
106
107
  ## Components
@@ -136,7 +137,7 @@ A versatile, customizable icon that displays Iconify icons.
136
137
  | icon | string | true | — | Iconify value for the icon. |
137
138
  | color | string | false | null | The color of the icon. |
138
139
  | circle | boolean | false | false | Shows the icon in a circle. The background color of the circle will be the color prop and the icon will show as white. |
139
- | size | string | false | 16px | Pixel value to resize the component, styles are adjusted when the size is updated. |
140
+ | size | string | false | | Pixel value to resize the component, styles are adjusted when the size is updated. |
140
141
  | alignText | boolean | false | false | Aligns the icon and text vertically. |
141
142
 
142
143
 
@@ -230,12 +231,14 @@ A simple, customizable button that triggers actions when clicked. It supports va
230
231
  |------|------|----------|---------|-------------|
231
232
  | color | string | false | var(--primary-color) | The background color of the button. |
232
233
  | fontColor | string | false | #fff | The color of the button text or icon. |
233
- | size | string | false | | Pixel value to resize the component, styles are adjusted when the size is updated. |
234
+ | size | string | false | 14px | Pixel value to resize the component, styles are adjusted when the size is updated. |
234
235
  | icon | string | false | null | Iconify value for the icon. |
235
236
  | useIconBtn | boolean | false | false | Creates a button element to appear as only an icon. |
236
237
  | circle | boolean | false | false | Creates a circular button. *(primarily used with icons)* |
237
238
  | tooltip | string, object | false | null | Shows a tooltip dropdown when hovering over the button. Set to a string or object, based on if tooltip props are needed. *(ex/ offset, width, position, etc)* |
238
239
  | disabled | boolean | false | false | Disables the button, shows grayed out and unclickable. |
240
+ | fullWidth | boolean | false | false | Makes the button expand to the full width of its parent container. |
241
+ | floatRight | boolean | false | false | Makes the button float to the right of its parent container. |
239
242
 
240
243
 
241
244
 
@@ -389,12 +392,12 @@ A component displayed as a small tag or flag, can be set as a link, tooltip, or
389
392
  |------|------|----------|---------|-------------|
390
393
  | size | string | false | 14px | Pixel value to resize the component, styles are adjusted when the size is updated. |
391
394
  | bgColor | string | false | var(--primary-color) | The background color of the tag. |
392
- | color | string | false | #fff | The font color of the tag. |
395
+ | fontColor | string | false | #fff | The font color of the tag. |
393
396
  | useFade | boolean | false | false | Changes the style of the tag to use a faded color scheme. |
394
397
  | bold | boolean | false | false | Bolds the text of the tag. |
395
398
  | disabled | boolean | false | false | Disables the tag, the tag will show grayed out and unclickable. |
396
399
  | link | string | false | null | Clicking the link will bring the user to the provided link. The link can be internal or external, using either a router-link or anchor element. |
397
- | useRouterLink | boolean | false | false | Tags with links will be rendered as a router-link instead of an anchor element. |
400
+ | useRouterLink | boolean | false | true | Tags with links will be rendered as a router-link instead of an anchor element. |
398
401
  | openInNewTab | boolean | false | true | Opens the link in a new tab. |
399
402
  | useCloseIcon | boolean | false | false | Shows an 'x' icon in the tag, emits 'on-close' when clicked. |
400
403
  | iconLeft | string | false | null | Any iconify value, will show on the left side of the tag. |