@synerise/ds-popconfirm 0.10.58 → 0.10.60
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.js +1 -1
- package/dist/Popconfirm.styles.js +2 -2
- package/dist/Popconfirm.types.d.ts +2 -1
- package/dist/index.d.ts +1 -1
- package/package.json +5 -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.60](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.59...@synerise/ds-popconfirm@0.10.60) (2024-11-21)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-popconfirm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.10.59](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.58...@synerise/ds-popconfirm@0.10.59) (2024-11-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-popconfirm
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.10.58](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.57...@synerise/ds-popconfirm@0.10.58) (2024-11-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-popconfirm
|
package/dist/Popconfirm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var _excluded = ["icon", "title", "description", "images", "imagesAutoplay", "imagesAutoplaySpeed", "withLink", "closeIcon", "titlePadding", "onCancel", "cancelButtonProps", "onConfirm", "okButtonProps", "okType", "hideButtons", "cancelText", "okText", "buttonsAlign"];
|
|
2
2
|
|
|
3
|
-
function _extends() { _extends = Object.assign
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
4
|
|
|
5
5
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure
|
|
1
|
+
function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
|
|
2
2
|
|
|
3
|
-
function _extends() { _extends = Object.assign
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
4
|
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import styled from 'styled-components';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ReactNode, MouseEvent as ReactMouseEvent } from 'react';
|
|
2
2
|
import { PopconfirmProps as AntdPopconfirmProps } from 'antd/lib/popconfirm';
|
|
3
3
|
import { ConfirmMessageProps } from './ConfirmMessage/ConfirmMessage.types';
|
|
4
|
+
export type PopconfirmTexts = Pick<PopconfirmProps, 'okText' | 'description' | 'title' | 'cancelText'>;
|
|
4
5
|
export type PopconfirmProps = Omit<AntdPopconfirmProps, 'okType'> & {
|
|
5
|
-
description?:
|
|
6
|
+
description?: ReactNode;
|
|
6
7
|
images?: string[];
|
|
7
8
|
imagesAutoplay?: boolean;
|
|
8
9
|
imagesAutoplaySpeed?: number;
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-popconfirm",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.60",
|
|
4
4
|
"description": "Popconfirm UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-button": "^0.21.
|
|
38
|
-
"@synerise/ds-icon": "^0.
|
|
39
|
-
"@synerise/ds-utils": "^0.31.
|
|
37
|
+
"@synerise/ds-button": "^0.21.19",
|
|
38
|
+
"@synerise/ds-icon": "^0.67.0",
|
|
39
|
+
"@synerise/ds-utils": "^0.31.2"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@synerise/ds-core": "*",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"react": ">=16.9.0 <= 17.0.2",
|
|
45
45
|
"styled-components": "5.0.1"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "05f083c767e2cec3c2f91c9475aee89852a77d6c"
|
|
48
48
|
}
|