@ssa-ui-kit/core 2.16.4-canary-4606151-20250507 → 2.16.4
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/components/ColorPicker/ColorPicker.d.ts +4 -18
- package/dist/components/ColorPicker/index.d.ts +1 -1
- package/dist/components/ColorPicker/styles.d.ts +6 -0
- package/dist/components/ColorPicker/types.d.ts +9 -0
- package/dist/components/index.d.ts +3 -3
- package/dist/index.js +7923 -8189
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
- package/dist/components/ColorPicker/components/BaseInput.d.ts +0 -4
- package/dist/components/ColorPicker/components/CopyButton.d.ts +0 -3
- package/dist/components/ColorPicker/components/HexInput.d.ts +0 -6
- package/dist/components/ColorPicker/components/HlsInput.d.ts +0 -6
- package/dist/components/ColorPicker/components/RgbInput.d.ts +0 -6
- package/dist/components/ColorPicker/components/index.d.ts +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssa-ui-kit/core",
|
|
3
|
-
"version": "2.16.4
|
|
3
|
+
"version": "2.16.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"private": false,
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@floating-ui/react": "0.27.4",
|
|
26
|
-
"@rc-component/color-picker": "^3.0.1",
|
|
27
26
|
"@react-input/mask": "^2.0.4",
|
|
28
27
|
"@react-input/number-format": "^2.0.3",
|
|
29
28
|
"dotenv": "^16.0.3",
|
|
@@ -31,8 +30,8 @@
|
|
|
31
30
|
"luxon": "^3.5.0",
|
|
32
31
|
"plotly.js": "3.0.0",
|
|
33
32
|
"react-plotly.js": "2.6.0",
|
|
34
|
-
"@ssa-ui-kit/
|
|
35
|
-
"@ssa-ui-kit/
|
|
33
|
+
"@ssa-ui-kit/utils": "^2.16.4",
|
|
34
|
+
"@ssa-ui-kit/hooks": "^2.16.4"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
38
37
|
"@emotion/css": "^11.13.5",
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Color } from '@rc-component/color-picker';
|
|
2
|
-
export interface HexInputProps {
|
|
3
|
-
color?: Color | string;
|
|
4
|
-
onChange: (color: string) => void;
|
|
5
|
-
}
|
|
6
|
-
export declare const HexInput: ({ color, onChange }: HexInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Color } from '@rc-component/color-picker';
|
|
2
|
-
export interface HlsInputProps {
|
|
3
|
-
color?: Color | string;
|
|
4
|
-
onChange: (color: string) => void;
|
|
5
|
-
}
|
|
6
|
-
export declare const HlsInput: ({ color, onChange }: HlsInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Color } from '@rc-component/color-picker';
|
|
2
|
-
export interface RgbInputProps {
|
|
3
|
-
color?: Color | string;
|
|
4
|
-
onChange: (color: string) => void;
|
|
5
|
-
}
|
|
6
|
-
export declare const RgbInput: ({ color, onChange }: RgbInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|