@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 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 _primitives = require("@atlaskit/primitives");
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(_primitives.Inline, {
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, {
@@ -1,6 +1,7 @@
1
1
  export let KudosType = /*#__PURE__*/function (KudosType) {
2
2
  KudosType["INDIVIDUAL"] = "individual";
3
3
  KudosType["TEAM"] = "team";
4
+ KudosType["MIXED"] = "mixed";
4
5
  return KudosType;
5
6
  }({});
6
7
  export let FlagEventType = /*#__PURE__*/function (FlagEventType) {
@@ -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
@@ -1,6 +1,7 @@
1
1
  export var KudosType = /*#__PURE__*/function (KudosType) {
2
2
  KudosType["INDIVIDUAL"] = "individual";
3
3
  KudosType["TEAM"] = "team";
4
+ KudosType["MIXED"] = "mixed";
4
5
  return KudosType;
5
6
  }({});
6
7
  export var FlagEventType = /*#__PURE__*/function (FlagEventType) {
@@ -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';
@@ -1,7 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  export declare enum KudosType {
3
3
  INDIVIDUAL = "individual",
4
- TEAM = "team"
4
+ TEAM = "team",
5
+ MIXED = "mixed"
5
6
  }
6
7
  export declare enum FlagEventType {
7
8
  KUDOS_CREATED = "kudos-created",
@@ -1,7 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  export declare enum KudosType {
3
3
  INDIVIDUAL = "individual",
4
- TEAM = "team"
4
+ TEAM = "team",
5
+ MIXED = "mixed"
5
6
  }
6
7
  export declare enum FlagEventType {
7
8
  KUDOS_CREATED = "kudos-created",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/give-kudos",
3
- "version": "4.1.2",
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.0.0",
45
+ "@atlaskit/button": "^23.2.0",
46
46
  "@atlaskit/css": "^0.10.0",
47
47
  "@atlaskit/drawer": "^10.1.0",
48
- "@atlaskit/icon": "^26.0.0",
48
+ "@atlaskit/icon": "^26.1.0",
49
49
  "@atlaskit/intl-messages-provider": "^2.0.0",
50
- "@atlaskit/link": "^3.1.0",
51
- "@atlaskit/modal-dialog": "^14.1.0",
50
+ "@atlaskit/link": "^3.2.0",
51
+ "@atlaskit/modal-dialog": "^14.2.0",
52
52
  "@atlaskit/portal": "^5.1.0",
53
- "@atlaskit/primitives": "^14.7.0",
53
+ "@atlaskit/primitives": "^14.8.0",
54
54
  "@atlaskit/theme": "^18.0.0",
55
- "@atlaskit/tokens": "^4.8.0",
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
  },