@alegendstale/holly-components 0.2.39 → 0.3.1

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/README.md +10 -2
  2. package/package.json +10 -6
package/README.md CHANGED
@@ -12,10 +12,18 @@ A container component primarily for mobile devices which slides up and down from
12
12
 
13
13
  A component which can have any number of sliders, and rotates circularly.
14
14
 
15
- ## Color Palette
15
+ ## Draw SVG
16
16
 
17
- A color palette component, with editing, menus and more included.
17
+ Draws the path of an SVG
18
+
19
+ ## Responsive SVG
20
+
21
+ Responsively sizes SVG based on font-size
18
22
 
19
23
  ## Tooltip
20
24
 
21
25
  A simple tooltip component.
26
+
27
+ ## Color Palette
28
+
29
+ A color palette component, with editing, menus and more included.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "private": false,
3
- "version": "0.2.39",
3
+ "version": "0.3.1",
4
4
  "name": "@alegendstale/holly-components",
5
5
  "description": "Reusable UI components created using lit",
6
6
  "type": "module",
@@ -36,6 +36,10 @@
36
36
  "import": "./dist/components/color-palette/index.js",
37
37
  "types": "./dist/components/color-palette/index.d.ts"
38
38
  },
39
+ "./draw-svg": {
40
+ "import": "./dist/components/draw-svg/index.js",
41
+ "types": "./dist/components/draw-svg/index.d.ts"
42
+ },
39
43
  "./responsive-svg": {
40
44
  "import": "./dist/components/responsive-svg/index.js",
41
45
  "types": "./dist/components/responsive-svg/index.d.ts"
@@ -71,8 +75,8 @@
71
75
  },
72
76
  "dependencies": {
73
77
  "colorsea": "^1.2.2",
74
- "lit": "^3.3.0",
75
- "lucide": "^0.471.0",
78
+ "lit": "^3.3.1",
79
+ "lucide": "^0.555.0",
76
80
  "quantize": "^1.0.2"
77
81
  },
78
82
  "devDependencies": {
@@ -89,8 +93,8 @@
89
93
  "@wdio/mocha-framework": "^9.5.0",
90
94
  "@wdio/spec-reporter": "^9.5.0",
91
95
  "storybook": "^8.2.9",
92
- "tsx": "^4.19.4",
96
+ "tsx": "^4.21.0",
93
97
  "typescript": "latest",
94
- "vite": "^5.4.1"
98
+ "vite": "^7.2.6"
95
99
  }
96
- }
100
+ }