@synerise/ds-color-picker 0.1.3 → 0.1.5
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/CHANGELOG.md +19 -0
- package/dist/ColorPicker.js +1 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.1.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-color-picker@0.1.4...@synerise/ds-color-picker@0.1.5) (2023-01-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-color-picker
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.1.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-color-picker@0.1.3...@synerise/ds-color-picker@0.1.4) (2023-01-05)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **color-picker:** change import src to packges's root ([0cac9f4](https://github.com/Synerise/synerise-design/commit/0cac9f4a6fdc99d5dd1c744ece924f5ac3e02bb9))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.1.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-color-picker@0.1.2...@synerise/ds-color-picker@0.1.3) (2023-01-02)
|
|
7
26
|
|
|
8
27
|
|
package/dist/ColorPicker.js
CHANGED
|
@@ -4,8 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
import { HexColorPicker as ReactColorful } from 'react-colorful';
|
|
5
5
|
import Divider from '@synerise/ds-divider';
|
|
6
6
|
import Tags, { TagShape, Tag } from '@synerise/ds-tags';
|
|
7
|
-
import Icon, { FormulaPlusM } from '@synerise/ds-icon';
|
|
8
|
-
import { CopyClipboardM } from '@synerise/ds-icon/src';
|
|
7
|
+
import Icon, { FormulaPlusM, CopyClipboardM } from '@synerise/ds-icon';
|
|
9
8
|
import * as copy from 'copy-to-clipboard';
|
|
10
9
|
import Tooltip from '@synerise/ds-tooltip';
|
|
11
10
|
import Dropdown from '@synerise/ds-dropdown';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-color-picker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Color-Picker Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@synerise/ds-divider": "^0.5.26",
|
|
37
37
|
"@synerise/ds-icon": "^0.52.0",
|
|
38
38
|
"@synerise/ds-input": "^0.18.28",
|
|
39
|
-
"@synerise/ds-select": "^0.14.
|
|
39
|
+
"@synerise/ds-select": "^0.14.31",
|
|
40
40
|
"@synerise/ds-tags": "^0.7.2",
|
|
41
41
|
"rc-select": "~11.4.0",
|
|
42
42
|
"react-colorful": "^5.2.0"
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"@synerise/ds-core": "*",
|
|
46
46
|
"react": ">=16.9.0 < 17.0.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "aa7462cde8e104424b9aaec90728bdb04f43179d"
|
|
49
49
|
}
|