@synerise/ds-popconfirm 0.10.15 → 0.10.17
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 +16 -0
- package/dist/Popconfirm.styles.d.ts +24 -3
- package/dist/Popconfirm.types.d.ts +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.10.17](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.16...@synerise/ds-popconfirm@0.10.17) (2023-10-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-popconfirm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.10.16](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.15...@synerise/ds-popconfirm@0.10.16) (2023-10-02)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-popconfirm
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.10.15](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.14...@synerise/ds-popconfirm@0.10.15) (2023-09-26)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-popconfirm
|
|
@@ -1,11 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
import Button
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Button from '@synerise/ds-button';
|
|
3
3
|
export declare const AntdPopconfirm: import("styled-components").StyledComponent<({ ...rest }: any) => JSX.Element, any, {}, never>;
|
|
4
4
|
export declare const PopconfirmContent: import("styled-components").StyledComponent<"div", any, {
|
|
5
5
|
buttonsAlign?: "left" | "right" | undefined;
|
|
6
6
|
}, never>;
|
|
7
7
|
export declare const PopconfirmTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
|
-
export declare const PopconfirmButton: import("styled-components").StyledComponent<typeof Button, any,
|
|
8
|
+
export declare const PopconfirmButton: import("styled-components").StyledComponent<typeof Button, any, Omit<Partial<{
|
|
9
|
+
href: string;
|
|
10
|
+
target?: string | undefined;
|
|
11
|
+
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
|
|
12
|
+
} & import("antd/lib/button/button").BaseButtonProps & import("antd/lib/_util/type").Omit<React.AnchorHTMLAttributes<any>, "type" | "onClick"> & {
|
|
13
|
+
htmlType?: "button" | "submit" | "reset" | undefined;
|
|
14
|
+
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
|
|
15
|
+
} & import("antd/lib/_util/type").Omit<React.ButtonHTMLAttributes<any>, "type" | "onClick">>, "type"> & {
|
|
16
|
+
type?: string | undefined;
|
|
17
|
+
mode?: string | undefined;
|
|
18
|
+
color?: string | undefined;
|
|
19
|
+
groupVariant?: string | undefined;
|
|
20
|
+
justifyContent?: string | undefined;
|
|
21
|
+
loading?: boolean | {
|
|
22
|
+
delay?: number | undefined;
|
|
23
|
+
} | undefined;
|
|
24
|
+
onClick?: ((event: React.MouseEvent<HTMLElement, MouseEvent>) => void) | undefined;
|
|
25
|
+
iconColor?: string | undefined;
|
|
26
|
+
error?: boolean | undefined;
|
|
27
|
+
activated?: boolean | undefined;
|
|
28
|
+
readOnly?: boolean | undefined;
|
|
29
|
+
}, never>;
|
|
9
30
|
export declare const PopconfirmButtonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
10
31
|
export declare const ButtonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
32
|
export declare const PopconfirmDescription: import("styled-components").StyledComponent<"div", any, {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { PopconfirmProps } from 'antd/lib/popconfirm';
|
|
3
3
|
import { ConfirmMessageProps } from './ConfirmMessage/ConfirmMessage.types';
|
|
4
|
-
export
|
|
4
|
+
export type PopconfirmType = React.FC<Omit<PopconfirmProps, 'okType'> & {
|
|
5
5
|
description?: string | React.ReactNode;
|
|
6
6
|
images?: string[];
|
|
7
7
|
imagesAutoplay?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-popconfirm",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.17",
|
|
4
4
|
"description": "Popconfirm UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"build:js": "babel --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
|
|
22
22
|
"build:watch": "npm run build:js -- --watch",
|
|
23
23
|
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
|
24
|
+
"pack:ci": "npm pack --pack-destination ../../portal/storybook-static/static",
|
|
24
25
|
"prepublish": "npm run build",
|
|
25
26
|
"test": "jest",
|
|
26
27
|
"test:watch": "npm run test -- --watchAll",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
],
|
|
33
34
|
"types": "dist/index.d.ts",
|
|
34
35
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-button": "^0.18.
|
|
36
|
-
"@synerise/ds-icon": "^0.58.
|
|
37
|
-
"@synerise/ds-utils": "^0.24.
|
|
36
|
+
"@synerise/ds-button": "^0.18.4",
|
|
37
|
+
"@synerise/ds-icon": "^0.58.4",
|
|
38
|
+
"@synerise/ds-utils": "^0.24.18"
|
|
38
39
|
},
|
|
39
40
|
"peerDependencies": {
|
|
40
41
|
"@synerise/ds-core": "*",
|
|
@@ -46,5 +47,5 @@
|
|
|
46
47
|
"@testing-library/jest-dom": "5.1.1",
|
|
47
48
|
"@testing-library/react": "10.0.1"
|
|
48
49
|
},
|
|
49
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "8eb4a3e304406a8dbb9258803c48952461fc5a55"
|
|
50
51
|
}
|