yk-color-picker 1.0.0 → 1.0.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.
- package/README.md +2 -2
- package/package.json +5 -5
- /package/dist/{esm2020-1.0.0 → esm2020-1.0.1}/style.css +0 -0
- /package/dist/{esm2020-1.0.0 → esm2020-1.0.1}/yk-color-picker.js +0 -0
- /package/dist/{esm2020-1.0.0 → esm2020-1.0.1}/yk-color-picker.js.map +0 -0
- /package/dist/{umd2020-1.0.0 → umd2020-1.0.1}/style.css +0 -0
- /package/dist/{umd2020-1.0.0 → umd2020-1.0.1}/yk-color-picker.js +0 -0
- /package/dist/{umd2020-1.0.0 → umd2020-1.0.1}/yk-color-picker.js.map +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# YKColorPicker
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/ngx-interpolation)
|
|
4
4
|
|
|
5
5
|
YKColorPicker is a flexible color picker library designed with a strong focus on user experience (UX), including full keyboard interaction support. It provides a seamless way to integrate a customizable color picker into your project, offering various color models such as RGB, HSV, HSL, and HEX.
|
|
6
6
|
|
|
@@ -55,7 +55,7 @@ npm install yk-color-picker
|
|
|
55
55
|
In your CSS file, import the YKColorPicker styles:
|
|
56
56
|
|
|
57
57
|
```css
|
|
58
|
-
@import url("../node_modules/yk-color-picker/dist/esm2020-1.0.
|
|
58
|
+
@import url("../node_modules/yk-color-picker/dist/esm2020-1.0.1/style.css");
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
Then import `YKColorPicker` class and initialize the color picker:
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yk-color-picker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "YKColorPicker is a lightweight and flexible color picker library designed with a strong focus on user experience (UX), including full keyboard interaction support. It provides a seamless way to integrate a customizable color picker into your project, offering various color models such as RGB, HSV, HSL, and HEX.",
|
|
5
|
-
"main": "dist/umd2020-1.0.
|
|
6
|
-
"module": "dist/esm2020-1.0.
|
|
5
|
+
"main": "dist/umd2020-1.0.1/yk-color-picker.js",
|
|
6
|
+
"module": "dist/esm2020-1.0.1/yk-color-picker.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"import": "./dist/esm2020-1.0.
|
|
11
|
-
"require": "./dist/umd2020-1.0.
|
|
10
|
+
"import": "./dist/esm2020-1.0.1/yk-color-picker.js",
|
|
11
|
+
"require": "./dist/umd2020-1.0.1/yk-color-picker.js"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|