@uniformdev/context-ui 20.46.1-alpha.9 → 20.47.1-alpha.3
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/LICENSE.txt +1 -1
- package/dist/index.d.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/package.json +13 -14
package/LICENSE.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
©
|
|
1
|
+
© 2026 Uniform Systems, Inc. All Rights Reserved.
|
|
2
2
|
See details of Uniform Systems, Inc. Master Subscription Agreement here: https://uniform.dev/eula
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
2
2
|
import * as _emotion_react from '@emotion/react';
|
|
3
3
|
import { DimensionDefinition, Test, ManifestGetResponse, Quirk, QuirkGetResponse } from '@uniformdev/context/api';
|
|
4
4
|
import { DimensionMatch, QuirkMatch, EnrichmentData, VariantMatchCriteria } from '@uniformdev/context';
|
|
@@ -33,7 +33,7 @@ interface AbTestSelectorProps {
|
|
|
33
33
|
contextConfig: ContextConfig;
|
|
34
34
|
loading?: boolean;
|
|
35
35
|
}
|
|
36
|
-
declare const AbTestSelector: ({ value, setValue, contextConfig, loading }: AbTestSelectorProps) =>
|
|
36
|
+
declare const AbTestSelector: ({ value, setValue, contextConfig, loading }: AbTestSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
37
37
|
|
|
38
38
|
type CriteriaOperatorMenuProps = {
|
|
39
39
|
value: DimensionMatch['op'] | QuirkMatch['op'];
|
|
@@ -57,7 +57,7 @@ declare function getValidCriteriaOperatorsFor(rhsType: ResolvedDimensionDefiniti
|
|
|
57
57
|
description?: string;
|
|
58
58
|
value: DimensionMatch["op"];
|
|
59
59
|
}[];
|
|
60
|
-
declare function CriteriaOperatorMenu({ onChange, value, rhsType, ...props }: CriteriaOperatorMenuProps):
|
|
60
|
+
declare function CriteriaOperatorMenu({ onChange, value, rhsType, ...props }: CriteriaOperatorMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
61
61
|
|
|
62
62
|
interface UseContextDataResult {
|
|
63
63
|
result: ManifestGetResponse | null;
|
|
@@ -98,7 +98,7 @@ type CriteriaMatchMenuProps = {
|
|
|
98
98
|
/** sets the disabled state of the component */
|
|
99
99
|
disabled?: boolean;
|
|
100
100
|
} & Omit<InputComboBoxProps<InputComboBoxOption, false>, 'value' | 'options' | 'onChange' | 'inputValue' | 'value' | 'onInputChange'>;
|
|
101
|
-
declare function CriteriaMatchMenu({ onChange, criteriaMatch, dimensions, errorMessage, ...props }: CriteriaMatchMenuProps):
|
|
101
|
+
declare function CriteriaMatchMenu({ onChange, criteriaMatch, dimensions, errorMessage, ...props }: CriteriaMatchMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
102
102
|
|
|
103
103
|
type DimensionMenuOption = InputComboBoxOption & {
|
|
104
104
|
original?: ResolvedDimensionDefinition | Quirk;
|
|
@@ -113,19 +113,19 @@ type DimensionMenuProps = {
|
|
|
113
113
|
/** sets the disabled state of the component */
|
|
114
114
|
disabled?: boolean;
|
|
115
115
|
} & Omit<InputComboBoxProps<DimensionMenuOption, false>, 'value' | 'options' | 'onChange'>;
|
|
116
|
-
declare function DimensionMenu({ onChange, value, dimensions, errorMessage, quirks, ...props }: DimensionMenuProps):
|
|
116
|
+
declare function DimensionMenu({ onChange, value, dimensions, errorMessage, quirks, ...props }: DimensionMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
117
117
|
|
|
118
118
|
type DimensionValueProps = {
|
|
119
119
|
displayName: string | undefined;
|
|
120
120
|
};
|
|
121
|
-
declare function DimensionValue({ displayName }: DimensionValueProps):
|
|
121
|
+
declare function DimensionValue({ displayName }: DimensionValueProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
122
122
|
|
|
123
123
|
type EditLinkProps = {
|
|
124
124
|
linkTo: string;
|
|
125
125
|
name?: string;
|
|
126
126
|
linkText?: string;
|
|
127
127
|
};
|
|
128
|
-
declare const EditLink: ({ linkTo, name, linkText }: EditLinkProps) =>
|
|
128
|
+
declare const EditLink: ({ linkTo, name, linkText }: EditLinkProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
129
129
|
|
|
130
130
|
declare const addEnrichmentLink: _emotion_react.SerializedStyles;
|
|
131
131
|
interface EnrichmentTagProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
2
2
|
import * as _emotion_react from '@emotion/react';
|
|
3
3
|
import { DimensionDefinition, Test, ManifestGetResponse, Quirk, QuirkGetResponse } from '@uniformdev/context/api';
|
|
4
4
|
import { DimensionMatch, QuirkMatch, EnrichmentData, VariantMatchCriteria } from '@uniformdev/context';
|
|
@@ -33,7 +33,7 @@ interface AbTestSelectorProps {
|
|
|
33
33
|
contextConfig: ContextConfig;
|
|
34
34
|
loading?: boolean;
|
|
35
35
|
}
|
|
36
|
-
declare const AbTestSelector: ({ value, setValue, contextConfig, loading }: AbTestSelectorProps) =>
|
|
36
|
+
declare const AbTestSelector: ({ value, setValue, contextConfig, loading }: AbTestSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
37
37
|
|
|
38
38
|
type CriteriaOperatorMenuProps = {
|
|
39
39
|
value: DimensionMatch['op'] | QuirkMatch['op'];
|
|
@@ -57,7 +57,7 @@ declare function getValidCriteriaOperatorsFor(rhsType: ResolvedDimensionDefiniti
|
|
|
57
57
|
description?: string;
|
|
58
58
|
value: DimensionMatch["op"];
|
|
59
59
|
}[];
|
|
60
|
-
declare function CriteriaOperatorMenu({ onChange, value, rhsType, ...props }: CriteriaOperatorMenuProps):
|
|
60
|
+
declare function CriteriaOperatorMenu({ onChange, value, rhsType, ...props }: CriteriaOperatorMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
61
61
|
|
|
62
62
|
interface UseContextDataResult {
|
|
63
63
|
result: ManifestGetResponse | null;
|
|
@@ -98,7 +98,7 @@ type CriteriaMatchMenuProps = {
|
|
|
98
98
|
/** sets the disabled state of the component */
|
|
99
99
|
disabled?: boolean;
|
|
100
100
|
} & Omit<InputComboBoxProps<InputComboBoxOption, false>, 'value' | 'options' | 'onChange' | 'inputValue' | 'value' | 'onInputChange'>;
|
|
101
|
-
declare function CriteriaMatchMenu({ onChange, criteriaMatch, dimensions, errorMessage, ...props }: CriteriaMatchMenuProps):
|
|
101
|
+
declare function CriteriaMatchMenu({ onChange, criteriaMatch, dimensions, errorMessage, ...props }: CriteriaMatchMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
102
102
|
|
|
103
103
|
type DimensionMenuOption = InputComboBoxOption & {
|
|
104
104
|
original?: ResolvedDimensionDefinition | Quirk;
|
|
@@ -113,19 +113,19 @@ type DimensionMenuProps = {
|
|
|
113
113
|
/** sets the disabled state of the component */
|
|
114
114
|
disabled?: boolean;
|
|
115
115
|
} & Omit<InputComboBoxProps<DimensionMenuOption, false>, 'value' | 'options' | 'onChange'>;
|
|
116
|
-
declare function DimensionMenu({ onChange, value, dimensions, errorMessage, quirks, ...props }: DimensionMenuProps):
|
|
116
|
+
declare function DimensionMenu({ onChange, value, dimensions, errorMessage, quirks, ...props }: DimensionMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
117
117
|
|
|
118
118
|
type DimensionValueProps = {
|
|
119
119
|
displayName: string | undefined;
|
|
120
120
|
};
|
|
121
|
-
declare function DimensionValue({ displayName }: DimensionValueProps):
|
|
121
|
+
declare function DimensionValue({ displayName }: DimensionValueProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
122
122
|
|
|
123
123
|
type EditLinkProps = {
|
|
124
124
|
linkTo: string;
|
|
125
125
|
name?: string;
|
|
126
126
|
linkText?: string;
|
|
127
127
|
};
|
|
128
|
-
declare const EditLink: ({ linkTo, name, linkText }: EditLinkProps) =>
|
|
128
|
+
declare const EditLink: ({ linkTo, name, linkText }: EditLinkProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
129
129
|
|
|
130
130
|
declare const addEnrichmentLink: _emotion_react.SerializedStyles;
|
|
131
131
|
interface EnrichmentTagProps {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/context-ui",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.47.1-alpha.3+04fdfa028a",
|
|
4
4
|
"description": "React-based functionality and components for Uniform Context",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"document:prebuild": "api-extractor run --local"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@emotion/react": "11.
|
|
30
|
+
"@emotion/react": "11.14.0",
|
|
31
|
+
"@hello-pangea/dnd": "18.0.1",
|
|
31
32
|
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.5.0/react-icons-all-files-5.5.0.tgz",
|
|
32
|
-
"@uniformdev/context": "20.
|
|
33
|
-
"@uniformdev/design-system": "20.
|
|
34
|
-
"immer": "10.1.
|
|
35
|
-
"react-
|
|
36
|
-
"react-
|
|
37
|
-
"react-use": "17.5.1",
|
|
33
|
+
"@uniformdev/context": "20.47.1-alpha.3+04fdfa028a",
|
|
34
|
+
"@uniformdev/design-system": "20.47.1-alpha.3+04fdfa028a",
|
|
35
|
+
"immer": "10.1.3",
|
|
36
|
+
"react-select": "5.10.2",
|
|
37
|
+
"react-use": "17.6.0",
|
|
38
38
|
"timeago.js": "4.0.2",
|
|
39
39
|
"uuid": "9.0.1",
|
|
40
40
|
"yup": "0.32.11"
|
|
@@ -46,16 +46,15 @@
|
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@emotion/babel-preset-css-prop": "11.12.0",
|
|
48
48
|
"@storybook/react": "10.1.0",
|
|
49
|
-
"@types/react": "
|
|
50
|
-
"@types/react-
|
|
51
|
-
"@types/react-dom": "18.3.7",
|
|
49
|
+
"@types/react": "19.2.2",
|
|
50
|
+
"@types/react-dom": "19.2.2",
|
|
52
51
|
"@types/uuid": "9.0.4",
|
|
53
52
|
"@vitejs/plugin-react": "4.2.1",
|
|
54
53
|
"autoprefixer": "10.4.21",
|
|
55
54
|
"postcss": "8.5.3",
|
|
56
55
|
"postcss-import": "16.1.0",
|
|
57
|
-
"react": "
|
|
58
|
-
"react-dom": "
|
|
56
|
+
"react": "19.2.1",
|
|
57
|
+
"react-dom": "19.2.1",
|
|
59
58
|
"vite": "7.1.5"
|
|
60
59
|
},
|
|
61
60
|
"files": [
|
|
@@ -64,5 +63,5 @@
|
|
|
64
63
|
"publishConfig": {
|
|
65
64
|
"access": "public"
|
|
66
65
|
},
|
|
67
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "04fdfa028a09763f4f9e89f78f32aef1de247ad4"
|
|
68
67
|
}
|