@atlaskit/task-decision 19.3.3 → 19.3.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 +6 -0
- package/dist/cjs/analytics/index.js +2 -0
- package/dist/cjs/components/TaskItem.js +2 -1
- package/dist/es2019/analytics/index.js +1 -0
- package/dist/es2019/components/TaskItem.js +2 -1
- package/dist/esm/analytics/index.js +1 -0
- package/dist/esm/components/TaskItem.js +2 -1
- package/dist/types/analytics/index.d.ts +2 -1
- package/dist/types/components/TaskItem.d.ts +2 -2
- package/dist/types-ts4.5/analytics/index.d.ts +2 -1
- package/dist/types-ts4.5/components/TaskItem.d.ts +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,5 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.fabricElementsChannel = exports.createAndFireEventInElementsChannel = void 0;
|
|
7
7
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
8
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
|
|
9
|
+
|
|
8
10
|
var fabricElementsChannel = exports.fabricElementsChannel = 'fabric-elements';
|
|
9
11
|
var createAndFireEventInElementsChannel = exports.createAndFireEventInElementsChannel = (0, _analyticsNext.createAndFireEvent)(fabricElementsChannel);
|
|
@@ -128,4 +128,5 @@ var TaskItem = function TaskItem(props) {
|
|
|
128
128
|
checkBoxId: checkBoxId
|
|
129
129
|
}, children);
|
|
130
130
|
};
|
|
131
|
-
var
|
|
131
|
+
var _default_1 = (0, _analyticsNext.withAnalyticsEvents)()(TaskItem);
|
|
132
|
+
var _default = exports.default = _default_1;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
|
|
1
2
|
import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
2
3
|
export const fabricElementsChannel = 'fabric-elements';
|
|
3
4
|
export const createAndFireEventInElementsChannel = createAndFireEvent(fabricElementsChannel);
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
|
|
1
2
|
import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
2
3
|
export var fabricElementsChannel = 'fabric-elements';
|
|
3
4
|
export var createAndFireEventInElementsChannel = createAndFireEvent(fabricElementsChannel);
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import { UIAnalyticsEvent, type AnalyticsEventPayload, type CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
1
2
|
export declare const fabricElementsChannel = "fabric-elements";
|
|
2
|
-
export declare const createAndFireEventInElementsChannel: (payload:
|
|
3
|
+
export declare const createAndFireEventInElementsChannel: (payload: AnalyticsEventPayload) => (createAnalyticsEvent: CreateUIAnalyticsEvent) => UIAnalyticsEvent;
|
|
@@ -23,5 +23,5 @@ export interface Props {
|
|
|
23
23
|
showPlaceholder?: boolean;
|
|
24
24
|
taskId: string;
|
|
25
25
|
}
|
|
26
|
-
declare const
|
|
27
|
-
export default
|
|
26
|
+
declare const _default_1: React.ForwardRefExoticComponent<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any>>;
|
|
27
|
+
export default _default_1;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import { UIAnalyticsEvent, type AnalyticsEventPayload, type CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
1
2
|
export declare const fabricElementsChannel = "fabric-elements";
|
|
2
|
-
export declare const createAndFireEventInElementsChannel: (payload:
|
|
3
|
+
export declare const createAndFireEventInElementsChannel: (payload: AnalyticsEventPayload) => (createAnalyticsEvent: CreateUIAnalyticsEvent) => UIAnalyticsEvent;
|
|
@@ -23,5 +23,5 @@ export interface Props {
|
|
|
23
23
|
showPlaceholder?: boolean;
|
|
24
24
|
taskId: string;
|
|
25
25
|
}
|
|
26
|
-
declare const
|
|
27
|
-
export default
|
|
26
|
+
declare const _default_1: React.ForwardRefExoticComponent<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any>>;
|
|
27
|
+
export default _default_1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/task-decision",
|
|
3
|
-
"version": "19.3.
|
|
3
|
+
"version": "19.3.4",
|
|
4
4
|
"description": "Tasks and decisions react components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
40
40
|
"@atlaskit/icon": "^32.0.0",
|
|
41
41
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
42
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
43
|
-
"@atlaskit/tokens": "^11.
|
|
42
|
+
"@atlaskit/tmp-editor-statsig": "^36.0.0",
|
|
43
|
+
"@atlaskit/tokens": "^11.1.0",
|
|
44
44
|
"@atlaskit/util-service-support": "^6.3.0",
|
|
45
45
|
"@babel/runtime": "^7.0.0",
|
|
46
46
|
"@compiled/react": "^0.20.0",
|