@atlaskit/react-ufo 4.10.0 → 4.10.1

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.
@@ -35,8 +35,8 @@ export declare const ModuleLoadingProfiler: {
35
35
  placeholderFallBackMounted(id: string, moduleId: string): void;
36
36
  placeholderFallBackUnmounted(id: string): void;
37
37
  };
38
- export declare function addError(interactionId: string, name: string, labelStack: LabelStack | null, errorType: string, errorMessage: string, errorStack?: string, forcedError?: boolean): void;
39
- export declare function addErrorToAll(name: string, labelStack: LabelStack | null, errorType: string, errorMessage: string, errorStack?: string): void;
38
+ export declare function addError(interactionId: string, name: string, labelStack: LabelStack | null, errorType: string, errorMessage: string, errorStack?: string, forcedError?: boolean, errorHash?: string): void;
39
+ export declare function addErrorToAll(name: string, labelStack: LabelStack | null, errorType: string, errorMessage: string, errorStack?: string, errorHash?: string): void;
40
40
  export declare function addProfilerTimings(interactionId: string, labelStack: LabelStack, type: 'mount' | 'update' | 'nested-update', actualDuration: number, baseDuration: number, startTime: number, commitTime: number): void;
41
41
  export declare function sinkInteractionHandler(sinkFn: (id: string, data: InteractionMetrics) => void): void;
42
42
  export declare function sinkPostInteractionLogHandler(sinkFn: (output: PostInteractionLogOutput) => void | Promise<void>): void;
@@ -0,0 +1,6 @@
1
+ type MutatedElement = {
2
+ isDisplayContentsElementChildren: boolean;
3
+ element: Element;
4
+ };
5
+ export declare function getMutatedElements(element: Element, depthLevel?: number): MutatedElement[];
6
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/react-ufo",
3
- "version": "4.10.0",
3
+ "version": "4.10.1",
4
4
  "description": "Parts of React UFO that are publicly available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -130,9 +130,6 @@
130
130
  "platform_ufo_exclude_3p_elements_from_ttvc": {
131
131
  "type": "boolean"
132
132
  },
133
- "platform_ufo_add_type_for_3p_segments": {
134
- "type": "boolean"
135
- },
136
133
  "platform_ufo_segment_critical_metrics": {
137
134
  "type": "boolean"
138
135
  },