drab 4.1.6 → 4.1.7

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
@@ -120,7 +120,7 @@ Contribute to the project, or use **drab** as a template for another component l
120
120
 
121
121
  1. Clone the [repository](https://github.com/rossrobino/drab)
122
122
  2. `bun i`
123
- 3. `bun run dev`
123
+ 3. `bun dev`
124
124
 
125
125
  #### Add or edit a component
126
126
 
@@ -10,7 +10,7 @@ declare const __propDef: {
10
10
  /** controls how the text is added */
11
11
  display: "inline" | "block" | "wrap";
12
12
  /** contents of the `button` */
13
- icon: string | ComponentType<any>;
13
+ icon: string | ComponentType<SvelteComponent>;
14
14
  /** keyboard shortcut */
15
15
  key?: string | undefined;
16
16
  /** class to apply to the specific `button` */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drab",
3
- "version": "4.1.6",
3
+ "version": "4.1.7",
4
4
  "description": "An Unstyled Svelte Component Library",
5
5
  "keywords": [
6
6
  "components",
@@ -58,27 +58,28 @@
58
58
  "svelte": "^4.2.8"
59
59
  },
60
60
  "devDependencies": {
61
- "@sveltejs/adapter-vercel": "^3.1.0",
62
- "@sveltejs/kit": "^1.29.1",
63
- "@sveltejs/package": "^2.2.3",
61
+ "@sveltejs/adapter-vercel": "^4.0.4",
62
+ "@sveltejs/kit": "^2.0.6",
63
+ "@sveltejs/package": "^2.2.5",
64
+ "@sveltejs/vite-plugin-svelte": "^3.0.1",
64
65
  "@tailwindcss/typography": "^0.5.10",
65
- "@types/node": "^20.10.4",
66
- "@typescript-eslint/eslint-plugin": "^6.14.0",
67
- "@typescript-eslint/parser": "^6.14.0",
66
+ "@types/node": "^20.10.6",
67
+ "@typescript-eslint/eslint-plugin": "^6.17.0",
68
+ "@typescript-eslint/parser": "^6.17.0",
68
69
  "autoprefixer": "^10.4.16",
69
- "eslint": "^8.55.0",
70
+ "eslint": "^8.56.0",
70
71
  "eslint-config-prettier": "^9.1.0",
71
72
  "eslint-plugin-svelte": "^2.35.1",
72
73
  "prettier": "^3.1.1",
73
74
  "prettier-plugin-svelte": "^3.1.2",
74
- "prettier-plugin-tailwindcss": "^0.5.9",
75
- "publint": "^0.2.6",
75
+ "prettier-plugin-tailwindcss": "^0.5.10",
76
+ "publint": "^0.2.7",
76
77
  "robino": "^0.0.39",
77
78
  "svelte-check": "^3.6.2",
78
- "tailwindcss": "^3.3.6",
79
+ "tailwindcss": "^3.4.0",
79
80
  "tslib": "^2.6.2",
80
81
  "typescript": "^5.3.3",
81
- "uico": "^0.1.6",
82
- "vite": "^4.5.0"
82
+ "uico": "^0.2.1",
83
+ "vite": "^5.0.11"
83
84
  }
84
85
  }