nuxt-ui-elements 0.1.17 → 0.1.18

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/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-ui-elements",
3
3
  "configKey": "uiElements",
4
- "version": "0.1.17",
4
+ "version": "0.1.18",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -3,10 +3,12 @@
3
3
  * Import from '#std' for tree-shakeable utilities
4
4
  *
5
5
  * @example
6
- * import { plur, date } from '#std'
6
+ * import { plur, slugify, date } from '#std'
7
7
  *
8
8
  * const text = plur('item', count)
9
+ * const slug = slugify('Hello World')
9
10
  * const nextMonth = date.add(date.today(), 1, 'month')
10
11
  */
11
12
  export { default as plur } from "plur";
13
+ export { default as slugify } from "@sindresorhus/slugify";
12
14
  export * as date from "./std/date.js";
@@ -1,2 +1,3 @@
1
1
  export { default as plur } from "plur";
2
+ export { default as slugify } from "@sindresorhus/slugify";
2
3
  export * as date from "./std/date.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-ui-elements",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "A collection of beautiful, animated UI components for Nuxt applications",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/genu/nuxt-ui-elements.git",
@@ -27,6 +27,7 @@
27
27
  "dependencies": {
28
28
  "@internationalized/date": "^3.10.1",
29
29
  "@nuxt/kit": "^4.2.2",
30
+ "@sindresorhus/slugify": "^3.0.0",
30
31
  "plur": "^6.0.0",
31
32
  "scule": "^1.3.0",
32
33
  "tailwind-variants": "^3.2.2"