vueless 1.4.10-beta.3 → 1.4.11-beta.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils/storybook.ts +0 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.4.10-beta.3",
3
+ "version": "1.4.11-beta.0",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -400,16 +400,6 @@ export function getArgs(args: UnknownObject, option: string, outerOption?: strin
400
400
  };
401
401
  }
402
402
 
403
- export function getEnumVariantDescription(message = "Hover over a variant to see its value.") {
404
- return {
405
- docs: {
406
- description: {
407
- story: message,
408
- },
409
- },
410
- };
411
- }
412
-
413
403
  export function trimText(text: string) {
414
404
  return text.replace(/\s+/g, " ").trim();
415
405
  }