react-cosmos-core
Advanced tools
Comparing version 6.1.2-canary.a5d06e7.0 to 6.1.2-canary.b179ef9.0
@@ -1,3 +0,4 @@ | ||
import { FixtureStateValue, FixtureStateValues, ObjectData } from './types.js'; | ||
import { ObjectData } from '../utils/data.js'; | ||
import { FixtureStateValue, FixtureStateValues } from './types.js'; | ||
export declare function createValues(obj: ObjectData): FixtureStateValues; | ||
export declare function createValue(data: unknown): FixtureStateValue; |
import { isElement } from 'react-is'; | ||
import { isArray, isObject, isPrimitiveData } from './shared.js'; | ||
import { isArray, isObject, isPrimitiveData, } from '../utils/data.js'; | ||
export function createValues(obj) { | ||
@@ -4,0 +4,0 @@ const values = {}; |
@@ -1,3 +0,4 @@ | ||
import { FixtureStateValue, FixtureStateValues, ObjectData } from './types.js'; | ||
import { ObjectData } from '../utils/data.js'; | ||
import { FixtureStateValue, FixtureStateValues } from './types.js'; | ||
export declare function extendWithValues(obj: ObjectData, values: FixtureStateValues): ObjectData; | ||
export declare function extendWithValue(data: unknown, value: FixtureStateValue): unknown; |
@@ -1,2 +0,2 @@ | ||
import { isArray, isObject } from './shared.js'; | ||
import { isArray, isObject } from '../utils/data.js'; | ||
// Use fixture state for serializable values and fall back to base values | ||
@@ -3,0 +3,0 @@ export function extendWithValues(obj, values) { |
@@ -0,1 +1,2 @@ | ||
import { PrimitiveData } from '../utils/data.js'; | ||
import { StateUpdater } from '../utils/state.js'; | ||
@@ -11,5 +12,2 @@ export type FixtureDecoratorId = string; | ||
}; | ||
export type PrimitiveData = string | number | boolean | null | undefined; | ||
export type ObjectData = Record<string, unknown>; | ||
export type ArrayData = unknown[]; | ||
export type FixtureStatePrimitiveValue = { | ||
@@ -16,0 +14,0 @@ type: 'primitive'; |
@@ -33,9 +33,10 @@ export * from './fixtureState/classState.js'; | ||
export * from './utils/array.js'; | ||
export * from './utils/data.js'; | ||
export * from './utils/keys.js'; | ||
export * from './utils/queryString.js'; | ||
export * from './utils/react/ClassStateMock.js'; | ||
export * from './utils/react/areNodesEqual.js'; | ||
export * from './utils/react/DelayRender.js'; | ||
export * from './utils/react/areNodesEqual.js'; | ||
export * from './utils/react/getComponentName.js'; | ||
export * from './utils/react/isReactElement.js'; | ||
export * from './utils/serializable.js'; | ||
export * from './utils/state.js'; | ||
@@ -42,0 +43,0 @@ export * from './utils/string.js'; |
@@ -33,9 +33,10 @@ export * from './fixtureState/classState.js'; | ||
export * from './utils/array.js'; | ||
export * from './utils/data.js'; | ||
export * from './utils/keys.js'; | ||
export * from './utils/queryString.js'; | ||
export * from './utils/react/ClassStateMock.js'; | ||
export * from './utils/react/areNodesEqual.js'; | ||
export * from './utils/react/DelayRender.js'; | ||
export * from './utils/react/areNodesEqual.js'; | ||
export * from './utils/react/getComponentName.js'; | ||
export * from './utils/react/isReactElement.js'; | ||
export * from './utils/serializable.js'; | ||
export * from './utils/state.js'; | ||
@@ -42,0 +43,0 @@ export * from './utils/string.js'; |
@@ -61,2 +61,3 @@ import { FixtureState } from '../fixtureState/types.js'; | ||
fixture: FixtureListItem; | ||
fixtureOptions: {}; | ||
}; | ||
@@ -63,0 +64,0 @@ }; |
@@ -8,2 +8,3 @@ import { ComponentType, ReactNode } from 'react'; | ||
default: FixtureExport<FixtureType>; | ||
options?: {}; | ||
}; | ||
@@ -22,8 +23,9 @@ type ModuleWrapper<ModuleType> = { | ||
export type LazyReactFixtureWrapper = LazyModuleWrapper<ReactFixtureModule>; | ||
export type ReactDecoratorProps = { | ||
export type DecoratorProps<T = {}> = { | ||
children: ReactNode; | ||
options: T; | ||
}; | ||
export type ReactDecorator = ComponentType<ReactDecoratorProps>; | ||
export type ReactDecorator<T = {}> = ComponentType<DecoratorProps<T>>; | ||
export type ReactDecoratorModule = { | ||
default: ReactDecorator; | ||
default: ReactDecorator<any>; | ||
}; | ||
@@ -30,0 +32,0 @@ export type ReactDecoratorWrapper = ModuleWrapper<ReactDecoratorModule>; |
{ | ||
"name": "react-cosmos-core", | ||
"version": "6.1.2-canary.a5d06e7.0+a5d06e7", | ||
"version": "6.1.2-canary.b179ef9.0+b179ef9", | ||
"description": "React Cosmos Core", | ||
@@ -15,3 +15,3 @@ "repository": "https://github.com/react-cosmos/react-cosmos/tree/main/packages/react-cosmos-core", | ||
}, | ||
"gitHead": "a5d06e7fd34575407d0477ccfae695ecca168836" | ||
"gitHead": "b179ef90b6185e684d08ffdc188035e1baa24116" | ||
} |
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
55485
1362