@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssa-ui-kit/core",
3
- "version": "2.16.4-canary-4606151-20250507",
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/hooks": "^2.16.4-canary-4606151-20250507",
35
- "@ssa-ui-kit/utils": "^2.16.4-canary-4606151-20250507"
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,4 +0,0 @@
1
- export declare const BaseInput: import("@emotion/styled").StyledComponent<{
2
- theme?: import("@emotion/react").Theme;
3
- as?: React.ElementType;
4
- }, import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
@@ -1,3 +0,0 @@
1
- export declare const CopyButton: import("@emotion/styled").StyledComponent<import("../../Button/types").ButtonProps & import("react").RefAttributes<HTMLButtonElement> & {
2
- theme?: import("@emotion/react").Theme;
3
- }, {}, {}>;
@@ -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;
@@ -1,4 +0,0 @@
1
- export * from './HexInput';
2
- export * from './HlsInput';
3
- export * from './RgbInput';
4
- export * from './CopyButton';