huebert 1.0.1 → 1.0.3
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/index.css +1 -0
- package/package.json +7 -7
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.Huebert{display:flex;flex-direction:column;width:230px}.Huebert .SVPicker{background:linear-gradient(to bottom,transparent,black),linear-gradient(to right,white,var(--sat-color));width:100%;height:230px}.Huebert .SVPicker div{position:relative;background:var(--opaque-color);border:2px solid #fff;border-radius:20px;width:20px;height:20px;transform:translate(-50%,-50%)}.Huebert .HuePicker{background:linear-gradient(90deg,red,#ff0,#0f0,#0ff,#00f,#f0f,red);width:100%;height:24px}.Huebert .HuePicker div{position:relative;background:var(--sat-color);border:2px solid #fff;border-radius:6px;width:6px;height:100%;top:50%;transform:translate(-50%,-50%)}.Huebert .HuebertInput{text-align:center;font-family:monospace}.Huebert .AlphaPicker{background:linear-gradient(to right,transparent,var(--opaque-color)),repeating-conic-gradient(#888 0% 25%,white 0% 50%)0 0/12px 12px;width:100%;height:24px}.Huebert .AlphaPicker div{position:relative;background:0 0;border:2px solid #fff;border-radius:6px;width:6px;height:100%;top:50%;transform:translate(-50%,-50%)}.Huebert .HuebertSwatches{display:flex;flex-wrap:wrap;justify-content:center;width:100%}.Huebert .HuebertSwatches .HuebertSwatch{border:none;border-radius:5px;width:25px;height:25px;margin:5px}
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "huebert",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"type": "module",
|
|
5
|
-
"main": "./dist/index.js",
|
|
6
|
-
"module": "./dist/index.js",
|
|
7
6
|
"types": "./dist/index.d.ts",
|
|
8
7
|
"exports": {
|
|
9
8
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
}
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"./index.css": "./dist/index.css"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
17
|
"sideEffects": [
|
|
18
|
-
"
|
|
18
|
+
"**/*.css"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "bun build.ts"
|