@atlaskit/give-kudos 2.0.2 → 2.0.4

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,17 @@
1
1
  # @atlassian/give-kudos
2
2
 
3
+ ## 2.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 2.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 2.0.2
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/give-kudos",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "Give Kudos experience ",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -40,13 +40,13 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@atlaskit/analytics-next": "^9.1.0",
43
- "@atlaskit/button": "^16.16.0",
43
+ "@atlaskit/button": "^17.0.0",
44
44
  "@atlaskit/drawer": "^7.6.0",
45
- "@atlaskit/icon": "^21.12.0",
46
- "@atlaskit/modal-dialog": "^12.8.0",
45
+ "@atlaskit/icon": "^22.0.0",
46
+ "@atlaskit/modal-dialog": "^12.10.0",
47
47
  "@atlaskit/portal": "^4.4.0",
48
48
  "@atlaskit/theme": "^12.6.0",
49
- "@atlaskit/tokens": "^1.28.0",
49
+ "@atlaskit/tokens": "^1.30.0",
50
50
  "@babel/runtime": "^7.0.0",
51
51
  "@emotion/react": "^11.7.1",
52
52
  "react-intl-next": "npm:react-intl@^5.18.1"
@@ -1,82 +0,0 @@
1
- ## API Report File for "@atlaskit/give-kudos"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- /// <reference types="react" />
8
-
9
- import { jsx } from '@emotion/react';
10
- import { LazyExoticComponent } from 'react';
11
-
12
- // @public (undocumented)
13
- export interface FlagEvent {
14
- // (undocumented)
15
- eventType: FlagEventType;
16
- // (undocumented)
17
- jiraKudosFormUrl?: string;
18
- // (undocumented)
19
- jiraKudosUrl?: string;
20
- // (undocumented)
21
- kudosUuid?: string;
22
- }
23
-
24
- // @public (undocumented)
25
- export enum FlagEventType {
26
- // (undocumented)
27
- CLOSE = "close",
28
- // (undocumented)
29
- DIRTY = "dirty",
30
- // (undocumented)
31
- JIRA_KUDOS_CREATED = "jira-kudos-created",
32
- // (undocumented)
33
- JIRA_KUDOS_FAILED = "jira-kudos-failed",
34
- // (undocumented)
35
- KUDOS_CREATED = "kudos-created"
36
- }
37
-
38
- // @public (undocumented)
39
- export interface GiveKudosDrawerProps {
40
- // (undocumented)
41
- addFlag?: (flag: any) => void;
42
- // (undocumented)
43
- analyticsSource: string;
44
- // (undocumented)
45
- cloudId: string;
46
- // (undocumented)
47
- isOpen: boolean;
48
- // (undocumented)
49
- onClose: () => void;
50
- // (undocumented)
51
- recipient?: KudosRecipient;
52
- // (undocumented)
53
- teamCentralBaseUrl: string;
54
- // (undocumented)
55
- testId?: string;
56
- }
57
-
58
- // @public (undocumented)
59
- export const GiveKudosLauncher: (props: GiveKudosDrawerProps) => jsx.JSX.Element;
60
-
61
- // @public (undocumented)
62
- export const GiveKudosLauncherLazy: LazyExoticComponent<(props: GiveKudosDrawerProps) => jsx>;
63
-
64
- // @public (undocumented)
65
- export interface KudosRecipient {
66
- // (undocumented)
67
- recipientId: string;
68
- // (undocumented)
69
- type: KudosType;
70
- }
71
-
72
- // @public (undocumented)
73
- export enum KudosType {
74
- // (undocumented)
75
- INDIVIDUAL = "individual",
76
- // (undocumented)
77
- TEAM = "team"
78
- }
79
-
80
- // (No @packageDocumentation comment for this package)
81
-
82
- ```