@antscorp/antsomi-ui 1.3.5-beta.956 → 1.3.5-beta.957
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.
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ScrollbarProps as CustomScrollbarProps } from 'react-custom-scrollbars';
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
export declare const Scrollbars:
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
export type ScrollbarsProps = CustomScrollbarProps & {};
|
|
4
|
+
export declare const Scrollbars: FC<ScrollbarsProps>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ModalV2Props } from '../../molecules/ModalV2';
|
|
3
3
|
export declare const StyledModal: import("styled-components").StyledComponent<(props: ModalV2Props) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
|
|
4
|
-
export declare const ParentMetricWrapper: import("styled-components").StyledComponent<import("react").
|
|
5
|
-
export declare const ChildrenMetricWrapper: import("styled-components").StyledComponent<import("react").
|
|
4
|
+
export declare const ParentMetricWrapper: import("styled-components").StyledComponent<import("react").FC<import("react-custom-scrollbars").ScrollbarProps>, any, {}, never>;
|
|
5
|
+
export declare const ChildrenMetricWrapper: import("styled-components").StyledComponent<import("react").FC<import("react-custom-scrollbars").ScrollbarProps>, any, {}, never>;
|
|
6
6
|
export declare const SelectedMetricsWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd/es/flex/interface").FlexProps<import("antd/es/_util/type").AnyObject> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
7
7
|
export declare const SelectedMetricItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd/es/flex/interface").FlexProps<import("antd/es/_util/type").AnyObject> & import("react").RefAttributes<HTMLElement>>, any, {
|
|
8
8
|
disabled?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antscorp/antsomi-ui",
|
|
3
|
-
"version": "1.3.5-beta.
|
|
3
|
+
"version": "1.3.5-beta.957",
|
|
4
4
|
"description": "An enterprise-class UI design language and React UI library.",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"dist/*",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@antscorp/antsomi-locales": "1.0.28",
|
|
65
|
+
"@ant-design/cssinjs": "^1.6.2",
|
|
65
66
|
"@antscorp/icons": "0.27.54",
|
|
66
67
|
"@antscorp/image-editor": "1.0.2",
|
|
67
68
|
"@antscorp/processing-notification": "^1.0.3",
|
|
@@ -137,8 +138,7 @@
|
|
|
137
138
|
"use-context-selector": "^1.4.4",
|
|
138
139
|
"use-image": "^1.1.1",
|
|
139
140
|
"use-immer": "^0.4.1",
|
|
140
|
-
"zustand": "^4.5.2"
|
|
141
|
-
"@ant-design/cssinjs": "^1.6.2"
|
|
141
|
+
"zustand": "^4.5.2"
|
|
142
142
|
},
|
|
143
143
|
"devDependencies": {
|
|
144
144
|
"@antscorp/eslint-config-antsomi": "1.0.4",
|
|
@@ -170,6 +170,7 @@
|
|
|
170
170
|
"@testing-library/jest-dom": "^6.5.0",
|
|
171
171
|
"@testing-library/react": "^16.0.0",
|
|
172
172
|
"@testing-library/user-event": "^14.5.2",
|
|
173
|
+
"@types/currency-formatter": "1.5.1",
|
|
173
174
|
"@types/he": "^1.2.3",
|
|
174
175
|
"@types/jest": "^29.5.0",
|
|
175
176
|
"@types/lodash": "^4.17.13",
|
|
@@ -177,19 +178,18 @@
|
|
|
177
178
|
"@types/pako": "2.0.0",
|
|
178
179
|
"@types/react": "^18.0.33",
|
|
179
180
|
"@types/react-beautiful-dnd": "^13.1.8",
|
|
181
|
+
"@types/react-custom-scrollbars": "^4.0.13",
|
|
180
182
|
"@types/react-dom": "^18.0.11",
|
|
183
|
+
"@types/react-frame-component": "^4.1.6",
|
|
181
184
|
"@types/react-helmet": "^6.1.11",
|
|
182
185
|
"@types/react-resizable": "^3.0.7",
|
|
186
|
+
"@types/react-router-dom": "^5.3.3",
|
|
183
187
|
"@types/react-syntax-highlighter": "^15.5.11",
|
|
188
|
+
"@types/react-window": "^1.8.8",
|
|
184
189
|
"@types/styled-components": "^5.1.26",
|
|
185
190
|
"@types/yaireo__tagify": "^4.27.0",
|
|
186
191
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
187
192
|
"@typescript-eslint/parser": "^5.55.0",
|
|
188
|
-
"@types/currency-formatter": "1.5.1",
|
|
189
|
-
"@types/react-custom-scrollbars": "^4.0.13",
|
|
190
|
-
"@types/react-frame-component": "^4.1.6",
|
|
191
|
-
"@types/react-router-dom": "^5.3.3",
|
|
192
|
-
"@types/react-window": "^1.8.8",
|
|
193
193
|
"@vitejs/plugin-react": "^4.3.1",
|
|
194
194
|
"@vitest/coverage-v8": "^2.0.5",
|
|
195
195
|
"@vitest/ui": "^2.0.5",
|