ui-ingredients 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,2 @@
1
- import hyperid from 'hyperid';
2
- const h = hyperid();
3
- export const uuid = () => h.uuid;
1
+ import { nanoid } from 'nanoid/non-secure';
2
+ export const uuid = () => nanoid(8);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ui-ingredients",
3
3
  "type": "module",
4
- "version": "0.0.3",
4
+ "version": "0.0.4",
5
5
  "packageManager": "pnpm@9.7.0",
6
6
  "svelte": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "repository": {
24
24
  "type": "git",
25
- "url": "git@github.com:calvo-jp/ui-ingredients.git"
25
+ "url": "git+https://github.com/calvo-jp/ui-ingredients.git"
26
26
  },
27
27
  "bugs": {
28
28
  "url": "https://github.com/calvo-jp/ui-ingredients/issues",
@@ -122,7 +122,7 @@
122
122
  "@zag-js/toast": "0.65.0",
123
123
  "@zag-js/toggle-group": "0.65.0",
124
124
  "@zag-js/tooltip": "0.65.0",
125
- "hyperid": "3.2.0"
125
+ "nanoid": "5.0.7"
126
126
  },
127
127
  "peerDependencies": {
128
128
  "svelte": ">=5.0.0-next.200"