@atlaskit/give-kudos 4.1.2 → 4.2.0
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 +17 -0
- package/dist/cjs/types.js +1 -0
- package/dist/cjs/ui/GiveKudosLauncher/main.js +2 -2
- package/dist/es2019/types.js +1 -0
- package/dist/es2019/ui/GiveKudosLauncher/main.js +1 -1
- package/dist/esm/types.js +1 -0
- package/dist/esm/ui/GiveKudosLauncher/main.js +1 -1
- package/dist/types/types.d.ts +2 -1
- package/dist/types-ts4.5/types.d.ts +2 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlassian/give-kudos
|
|
2
2
|
|
|
3
|
+
## 4.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#157474](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/157474)
|
|
8
|
+
[`836751d5b664b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/836751d5b664b) -
|
|
9
|
+
Adding new mixed kudos to types
|
|
10
|
+
|
|
11
|
+
## 4.1.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#156675](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/156675)
|
|
16
|
+
[`961628fddd7d8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/961628fddd7d8) -
|
|
17
|
+
Internal change to move towards Compiled CSS-in-JS styling solution.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 4.1.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/cjs/types.js
CHANGED
|
@@ -7,6 +7,7 @@ exports.isFlagEventTypeValue = exports.KudosType = exports.FlagEventType = void
|
|
|
7
7
|
var KudosType = exports.KudosType = /*#__PURE__*/function (KudosType) {
|
|
8
8
|
KudosType["INDIVIDUAL"] = "individual";
|
|
9
9
|
KudosType["TEAM"] = "team";
|
|
10
|
+
KudosType["MIXED"] = "mixed";
|
|
10
11
|
return KudosType;
|
|
11
12
|
}({});
|
|
12
13
|
var FlagEventType = exports.FlagEventType = /*#__PURE__*/function (FlagEventType) {
|
|
@@ -25,7 +25,7 @@ var _intlMessagesProvider = require("@atlaskit/intl-messages-provider");
|
|
|
25
25
|
var _link = _interopRequireDefault(require("@atlaskit/link"));
|
|
26
26
|
var _modalDialog = _interopRequireWildcard(require("@atlaskit/modal-dialog"));
|
|
27
27
|
var _portal = _interopRequireDefault(require("@atlaskit/portal"));
|
|
28
|
-
var
|
|
28
|
+
var _compiled2 = require("@atlaskit/primitives/compiled");
|
|
29
29
|
var _constants = require("@atlaskit/theme/constants");
|
|
30
30
|
var _fetchMessagesForLocale = require("../../common/utils/fetch-messages-for-locale");
|
|
31
31
|
var _en = _interopRequireDefault(require("../../i18n/en"));
|
|
@@ -110,7 +110,7 @@ var GiveKudosLauncher = function GiveKudosLauncher(props) {
|
|
|
110
110
|
}
|
|
111
111
|
})),
|
|
112
112
|
actions: isActionsEnabled ? [{
|
|
113
|
-
content: /*#__PURE__*/React.createElement(
|
|
113
|
+
content: /*#__PURE__*/React.createElement(_compiled2.Inline, {
|
|
114
114
|
space: "space.050",
|
|
115
115
|
alignBlock: "center"
|
|
116
116
|
}, /*#__PURE__*/React.createElement(_reactIntlNext.FormattedMessage, _messages.default.kudosCreatedActionFlag), /*#__PURE__*/React.createElement(_linkExternal.default, {
|
package/dist/es2019/types.js
CHANGED
|
@@ -15,7 +15,7 @@ import { IntlMessagesProvider } from '@atlaskit/intl-messages-provider';
|
|
|
15
15
|
import Link from '@atlaskit/link';
|
|
16
16
|
import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
|
|
17
17
|
import Portal from '@atlaskit/portal';
|
|
18
|
-
import { Inline } from '@atlaskit/primitives';
|
|
18
|
+
import { Inline } from '@atlaskit/primitives/compiled';
|
|
19
19
|
import { layers } from '@atlaskit/theme/constants';
|
|
20
20
|
import { fetchMessagesForLocale } from '../../common/utils/fetch-messages-for-locale';
|
|
21
21
|
import i18nEN from '../../i18n/en';
|
package/dist/esm/types.js
CHANGED
|
@@ -19,7 +19,7 @@ import { IntlMessagesProvider } from '@atlaskit/intl-messages-provider';
|
|
|
19
19
|
import Link from '@atlaskit/link';
|
|
20
20
|
import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
|
|
21
21
|
import Portal from '@atlaskit/portal';
|
|
22
|
-
import { Inline } from '@atlaskit/primitives';
|
|
22
|
+
import { Inline } from '@atlaskit/primitives/compiled';
|
|
23
23
|
import { layers } from '@atlaskit/theme/constants';
|
|
24
24
|
import { fetchMessagesForLocale } from '../../common/utils/fetch-messages-for-locale';
|
|
25
25
|
import i18nEN from '../../i18n/en';
|
package/dist/types/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/give-kudos",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Give Kudos experience ",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,17 +42,17 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@atlaskit/analytics-next": "^11.0.0",
|
|
45
|
-
"@atlaskit/button": "^23.
|
|
45
|
+
"@atlaskit/button": "^23.2.0",
|
|
46
46
|
"@atlaskit/css": "^0.10.0",
|
|
47
47
|
"@atlaskit/drawer": "^10.1.0",
|
|
48
|
-
"@atlaskit/icon": "^26.
|
|
48
|
+
"@atlaskit/icon": "^26.1.0",
|
|
49
49
|
"@atlaskit/intl-messages-provider": "^2.0.0",
|
|
50
|
-
"@atlaskit/link": "^3.
|
|
51
|
-
"@atlaskit/modal-dialog": "^14.
|
|
50
|
+
"@atlaskit/link": "^3.2.0",
|
|
51
|
+
"@atlaskit/modal-dialog": "^14.2.0",
|
|
52
52
|
"@atlaskit/portal": "^5.1.0",
|
|
53
|
-
"@atlaskit/primitives": "^14.
|
|
53
|
+
"@atlaskit/primitives": "^14.8.0",
|
|
54
54
|
"@atlaskit/theme": "^18.0.0",
|
|
55
|
-
"@atlaskit/tokens": "^4.
|
|
55
|
+
"@atlaskit/tokens": "^4.9.0",
|
|
56
56
|
"@babel/runtime": "^7.0.0",
|
|
57
57
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
58
58
|
},
|