@uniformdev/context-react
Advanced tools
Comparing version 19.179.1-alpha.1 to 19.179.2-alpha.22
@@ -232,3 +232,4 @@ 'use client'; | ||
__html: JSON.stringify({ | ||
id: variation.id | ||
id: variation.id, | ||
testDistribution: variation.testDistribution | ||
}) | ||
@@ -235,0 +236,0 @@ } |
@@ -116,3 +116,3 @@ import { Quirks, ScoreVector, Context, PersonalizedVariant, TestVariant, EnrichmentData } from '@uniformdev/context'; | ||
} | ||
declare const Test: <TVariation_1 extends TestVariant>(props: TestComponentProps<TVariation_1>) => ReactElement | null; | ||
declare const Test: <TVariation extends TestVariant>(props: TestComponentProps<TVariation>) => ReactElement | null; | ||
@@ -180,3 +180,2 @@ type TrackFragmentProps = { | ||
nonce?: string | undefined; | ||
placeholder?: string | undefined; | ||
slot?: string | undefined; | ||
@@ -213,11 +212,11 @@ spellCheck?: (boolean | "true" | "false") | undefined; | ||
unselectable?: "on" | "off" | undefined; | ||
inputMode?: "url" | "search" | "text" | "none" | "tel" | "email" | "numeric" | "decimal" | undefined; | ||
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined; | ||
is?: string | undefined; | ||
"aria-activedescendant"?: string | undefined; | ||
"aria-atomic"?: (boolean | "true" | "false") | undefined; | ||
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined; | ||
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined; | ||
"aria-braillelabel"?: string | undefined; | ||
"aria-brailleroledescription"?: string | undefined; | ||
"aria-busy"?: (boolean | "true" | "false") | undefined; | ||
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined; | ||
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined; | ||
"aria-colcount"?: number | undefined; | ||
@@ -228,3 +227,3 @@ "aria-colindex"?: number | undefined; | ||
"aria-controls"?: string | undefined; | ||
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined; | ||
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined; | ||
"aria-describedby"?: string | undefined; | ||
@@ -234,3 +233,3 @@ "aria-description"?: string | undefined; | ||
"aria-disabled"?: (boolean | "true" | "false") | undefined; | ||
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined; | ||
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined; | ||
"aria-errormessage"?: string | undefined; | ||
@@ -240,5 +239,5 @@ "aria-expanded"?: (boolean | "true" | "false") | undefined; | ||
"aria-grabbed"?: (boolean | "true" | "false") | undefined; | ||
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined; | ||
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined; | ||
"aria-hidden"?: (boolean | "true" | "false") | undefined; | ||
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined; | ||
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined; | ||
"aria-keyshortcuts"?: string | undefined; | ||
@@ -256,5 +255,5 @@ "aria-label"?: string | undefined; | ||
"aria-posinset"?: number | undefined; | ||
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined; | ||
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined; | ||
"aria-readonly"?: (boolean | "true" | "false") | undefined; | ||
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined; | ||
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined; | ||
"aria-required"?: (boolean | "true" | "false") | undefined; | ||
@@ -415,5 +414,3 @@ "aria-roledescription"?: string | undefined; | ||
onPointerEnter?: react.PointerEventHandler<HTMLElement> | undefined; | ||
onPointerEnterCapture?: react.PointerEventHandler<HTMLElement> | undefined; | ||
onPointerLeave?: react.PointerEventHandler<HTMLElement> | undefined; | ||
onPointerLeaveCapture?: react.PointerEventHandler<HTMLElement> | undefined; | ||
onPointerOver?: react.PointerEventHandler<HTMLElement> | undefined; | ||
@@ -439,5 +436,5 @@ onPointerOverCapture?: react.PointerEventHandler<HTMLElement> | undefined; | ||
onTransitionEndCapture?: react.TransitionEventHandler<HTMLElement> | undefined; | ||
'data-track-on-view-wrapper'?: string | undefined; | ||
'data-track-on-view-wrapper'?: string; | ||
}, HTMLElement>; | ||
export { Personalize, type PersonalizeComponentProps, type PersonalizeWrapperComponent, type PersonalizedVariationComponent, type TVariation, Test, type TestComponentProps, Track, TrackFragment, type TrackFragmentProps, type TrackProps, UniformContext, type UniformContextProps$1 as UniformContextProps, type VariantOutputType, useQuirks, useScores, useUniformContext }; |
@@ -190,3 +190,4 @@ 'use client'; | ||
__html: JSON.stringify({ | ||
id: variation.id | ||
id: variation.id, | ||
testDistribution: variation.testDistribution | ||
}) | ||
@@ -193,0 +194,0 @@ } |
@@ -232,3 +232,4 @@ 'use client'; | ||
__html: JSON.stringify({ | ||
id: variation.id | ||
id: variation.id, | ||
testDistribution: variation.testDistribution | ||
}) | ||
@@ -235,0 +236,0 @@ } |
{ | ||
"name": "@uniformdev/context-react", | ||
"version": "19.179.1-alpha.1+3adc08c00a", | ||
"version": "19.179.2-alpha.22+79878be48f", | ||
"description": "Uniform Context React integration package", | ||
@@ -29,8 +29,8 @@ "license": "SEE LICENSE IN LICENSE.txt", | ||
"@types/cookie": "0.6.0", | ||
"@types/react": "18.2.40", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0" | ||
"@types/react": "18.3.3", | ||
"react": "18.3.1", | ||
"react-dom": "18.3.1" | ||
}, | ||
"dependencies": { | ||
"@uniformdev/context": "19.179.1-alpha.1+3adc08c00a", | ||
"@uniformdev/context": "19.179.2-alpha.22+79878be48f", | ||
"cookie": "0.6.0", | ||
@@ -49,3 +49,3 @@ "dequal": "2.0.3" | ||
}, | ||
"gitHead": "3adc08c00a0d3932b6b767faaa6157f8b71ef0a0" | ||
"gitHead": "79878be48f2d4b1c6158026aa632e71c91473ac6" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
2074
109623