@uidu/analytics
Advanced tools
Comparing version 0.6.15 to 0.7.0
# @uidu/analytics | ||
## 0.7.0 | ||
### Minor Changes | ||
- 535c8b5ec: Bump dependencies, should not contain breaking changes | ||
## 0.6.15 | ||
@@ -4,0 +10,0 @@ |
import React, { Component, ReactNode } from 'react'; | ||
import { WithAnalyticsEventsProps } from './withAnalyticsEvents'; | ||
import { WithAnalyticsEventsProps } from "./withAnalyticsEvents.js"; | ||
declare type AnalyticsErrorBoundaryErrorInfo = { | ||
@@ -4,0 +4,0 @@ componentStack: string; |
import PropTypes from 'prop-types'; | ||
import React, { Component } from 'react'; | ||
import UIAnalyticsEvent from './UIAnalyticsEvent'; | ||
import UIAnalyticsEvent from "./UIAnalyticsEvent.js"; | ||
declare type Props = { | ||
@@ -5,0 +5,0 @@ /** Children! */ |
@@ -1,4 +0,4 @@ | ||
import { AnalyticsEventPayload } from './AnalyticsEvent'; | ||
import { CreateUIAnalyticsEvent } from './types'; | ||
declare const _default: (channel?: string) => (payload: AnalyticsEventPayload) => (createAnalyticsEvent: CreateUIAnalyticsEvent) => import("./UIAnalyticsEvent").default; | ||
import { AnalyticsEventPayload } from "./AnalyticsEvent.js"; | ||
import { CreateUIAnalyticsEvent } from "./types.js"; | ||
declare const _default: (channel?: string) => (payload: AnalyticsEventPayload) => (createAnalyticsEvent: CreateUIAnalyticsEvent) => import("./UIAnalyticsEvent.js").default; | ||
export default _default; |
@@ -1,2 +0,2 @@ | ||
import { CreateUIAnalyticsEvent } from '../types'; | ||
import { CreateUIAnalyticsEvent } from "../types.js"; | ||
export declare type UseAnalyticsEventsHook = { | ||
@@ -3,0 +3,0 @@ createAnalyticsEvent: CreateUIAnalyticsEvent; |
@@ -1,2 +0,2 @@ | ||
import UIAnalyticsEvent from '../UIAnalyticsEvent'; | ||
import UIAnalyticsEvent from "../UIAnalyticsEvent.js"; | ||
export declare type UsePlatformLeafEventHandlerHookArgs<T> = { | ||
@@ -3,0 +3,0 @@ fn: (value: T, analyticsEvent: UIAnalyticsEvent) => void; |
@@ -1,22 +0,22 @@ | ||
export { default as AnalyticsContext } from './AnalyticsContext'; | ||
export { default as AnalyticsErrorBoundary } from './AnalyticsErrorBoundary'; | ||
export type { AnalyticsErrorBoundaryProps } from './AnalyticsErrorBoundary'; | ||
export { default as AnalyticsEvent } from './AnalyticsEvent'; | ||
export type { AnalyticsEventPayload } from './AnalyticsEvent'; | ||
export { default as AnalyticsListener } from './AnalyticsListener'; | ||
export { AnalyticsReactContext } from './AnalyticsReactContext'; | ||
export type { AnalyticsReactContextInterface } from './AnalyticsReactContext'; | ||
export { default as cleanProps } from './cleanProps'; | ||
export { default as createAndFireEvent } from './createAndFireEvent'; | ||
export { useAnalyticsEvents } from './hooks/useAnalyticsEvents'; | ||
export type { UseAnalyticsEventsHook } from './hooks/useAnalyticsEvents'; | ||
export { useCallbackWithAnalytics } from './hooks/useCallbackWithAnalytics'; | ||
export type { UseCallbackWithAnalyticsHook } from './hooks/useCallbackWithAnalytics'; | ||
export { usePlatformLeafEventHandler } from './hooks/usePlatformLeafEventHandler'; | ||
export { usePlatformLeafSyntheticEventHandler } from './hooks/usePlatformLeafSyntheticEventHandler'; | ||
export type { CreateUIAnalyticsEvent } from './types'; | ||
export { default as UIAnalyticsEvent } from './UIAnalyticsEvent'; | ||
export type { UIAnalyticsEventHandler, UIAnalyticsEventProps, } from './UIAnalyticsEvent'; | ||
export { default as withAnalyticsContext } from './withAnalyticsContext'; | ||
export { default as withAnalyticsEvents } from './withAnalyticsEvents'; | ||
export type { WithAnalyticsEventsProps } from './withAnalyticsEvents'; | ||
export { default as AnalyticsContext } from "./AnalyticsContext.js"; | ||
export { default as AnalyticsErrorBoundary } from "./AnalyticsErrorBoundary.js"; | ||
export type { AnalyticsErrorBoundaryProps } from "./AnalyticsErrorBoundary.js"; | ||
export { default as AnalyticsEvent } from "./AnalyticsEvent.js"; | ||
export type { AnalyticsEventPayload } from "./AnalyticsEvent.js"; | ||
export { default as AnalyticsListener } from "./AnalyticsListener.js"; | ||
export { AnalyticsReactContext } from "./AnalyticsReactContext.js"; | ||
export type { AnalyticsReactContextInterface } from "./AnalyticsReactContext.js"; | ||
export { default as cleanProps } from "./cleanProps.js"; | ||
export { default as createAndFireEvent } from "./createAndFireEvent.js"; | ||
export { useAnalyticsEvents } from "./hooks/useAnalyticsEvents.js"; | ||
export type { UseAnalyticsEventsHook } from "./hooks/useAnalyticsEvents.js"; | ||
export { useCallbackWithAnalytics } from "./hooks/useCallbackWithAnalytics.js"; | ||
export type { UseCallbackWithAnalyticsHook } from "./hooks/useCallbackWithAnalytics.js"; | ||
export { usePlatformLeafEventHandler } from "./hooks/usePlatformLeafEventHandler.js"; | ||
export { usePlatformLeafSyntheticEventHandler } from "./hooks/usePlatformLeafSyntheticEventHandler.js"; | ||
export type { CreateUIAnalyticsEvent } from "./types.js"; | ||
export { default as UIAnalyticsEvent } from "./UIAnalyticsEvent.js"; | ||
export type { UIAnalyticsEventHandler, UIAnalyticsEventProps, } from "./UIAnalyticsEvent.js"; | ||
export { default as withAnalyticsContext } from "./withAnalyticsContext.js"; | ||
export { default as withAnalyticsEvents } from "./withAnalyticsEvents.js"; | ||
export type { WithAnalyticsEventsProps } from "./withAnalyticsEvents.js"; |
@@ -1,5 +0,5 @@ | ||
import UIAnalyticsEvent from './UIAnalyticsEvent'; | ||
import { AnalyticsEventPayload } from './AnalyticsEvent'; | ||
import UIAnalyticsEvent from "./UIAnalyticsEvent.js"; | ||
import { AnalyticsEventPayload } from "./AnalyticsEvent.js"; | ||
export declare type CreateUIAnalyticsEvent = (payload: AnalyticsEventPayload) => UIAnalyticsEvent; | ||
export declare type AnalyticsEventCreator = (create: CreateUIAnalyticsEvent, props: Record<string, any>) => UIAnalyticsEvent | undefined; | ||
export declare type CreateEventMap = Record<string, AnalyticsEventPayload | AnalyticsEventCreator>; |
@@ -1,2 +0,2 @@ | ||
import AnalyticsEvent, { AnalyticsEventPayload, AnalyticsEventProps } from './AnalyticsEvent'; | ||
import AnalyticsEvent, { AnalyticsEventPayload, AnalyticsEventProps } from "./AnalyticsEvent.js"; | ||
declare type ChannelIdentifier = string; | ||
@@ -3,0 +3,0 @@ declare type Context = Record<string, any>[]; |
import React from 'react'; | ||
import { CreateEventMap, CreateUIAnalyticsEvent } from './types'; | ||
import { CreateEventMap, CreateUIAnalyticsEvent } from "./types.js"; | ||
export interface WithAnalyticsEventsProps { | ||
@@ -4,0 +4,0 @@ /** |
{ | ||
"name": "@uidu/analytics", | ||
"version": "0.6.15" | ||
"version": "0.7.0" | ||
} |
{ | ||
"name": "@uidu/analytics", | ||
"version": "0.6.15", | ||
"version": "0.7.0", | ||
"description": "The uidu component analytics framework", | ||
@@ -12,11 +12,11 @@ "repository": "https://github.com/uidu-org/guidu/tree/main/packages/core/analytics", | ||
"dependencies": { | ||
"@babel/runtime": "^7.22.5", | ||
"@babel/runtime": "^7.22.11", | ||
"prop-types": "^15.8.1", | ||
"tslib": "^2.5.3" | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@uidu/button": "^1.3.43", | ||
"@uidu/docs": "^0.5.31", | ||
"@uidu/field-text": "^2.0.14", | ||
"@uidu/form": "^2.2.22", | ||
"@uidu/button": "^1.4.0", | ||
"@uidu/docs": "^0.6.0", | ||
"@uidu/field-text": "^2.1.0", | ||
"@uidu/form": "^2.5.0", | ||
"lodash.isequal": "^4.5.0", | ||
@@ -23,0 +23,0 @@ "react": "^18.2.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94320
27
1941
Updated@babel/runtime@^7.22.11
Updatedtslib@^2.6.2