@uniformdev/mesh-sdk-react 19.198.2-alpha.0 → 19.198.3-alpha.5
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -1897,7 +1897,7 @@ type FilterEditorRendererProps<TValue extends string | string[]> = Pick<FilterOp
|
|
|
1897
1897
|
};
|
|
1898
1898
|
|
|
1899
1899
|
/** @deprecated beta - a list of possible operator values that sync with uniform search api */
|
|
1900
|
-
type OperatorValue = 'eq' | 'sys-date-eq' | 'neq' | 'gt' | 'sys-date-gt' | 'gte' | 'sys-date-gte' | 'lt' | 'sys-date-lt' | 'lte' | 'sys-date-lte' | 'in' | 'nin' | 'between' | 'sys-date-between' | 'ndef' | 'def' | 'match' | 'starts';
|
|
1900
|
+
type OperatorValue = 'eq' | 'sys-date-eq' | 'neq' | 'gt' | 'sys-date-gt' | 'gte' | 'sys-date-gte' | 'lt' | 'sys-date-lt' | 'lte' | 'sys-date-lte' | 'in' | 'nin' | 'between' | 'sys-date-between' | 'ndef' | 'def' | 'match' | 'starts' | 'checked' | 'nchecked';
|
|
1901
1901
|
type OperatorValueType = {
|
|
1902
1902
|
value: OperatorValue;
|
|
1903
1903
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1897,7 +1897,7 @@ type FilterEditorRendererProps<TValue extends string | string[]> = Pick<FilterOp
|
|
|
1897
1897
|
};
|
|
1898
1898
|
|
|
1899
1899
|
/** @deprecated beta - a list of possible operator values that sync with uniform search api */
|
|
1900
|
-
type OperatorValue = 'eq' | 'sys-date-eq' | 'neq' | 'gt' | 'sys-date-gt' | 'gte' | 'sys-date-gte' | 'lt' | 'sys-date-lt' | 'lte' | 'sys-date-lte' | 'in' | 'nin' | 'between' | 'sys-date-between' | 'ndef' | 'def' | 'match' | 'starts';
|
|
1900
|
+
type OperatorValue = 'eq' | 'sys-date-eq' | 'neq' | 'gt' | 'sys-date-gt' | 'gte' | 'sys-date-gte' | 'lt' | 'sys-date-lt' | 'lte' | 'sys-date-lte' | 'in' | 'nin' | 'between' | 'sys-date-between' | 'ndef' | 'def' | 'match' | 'starts' | 'checked' | 'nchecked';
|
|
1901
1901
|
type OperatorValueType = {
|
|
1902
1902
|
value: OperatorValue;
|
|
1903
1903
|
};
|
package/dist/index.esm.js
CHANGED
|
@@ -7581,13 +7581,13 @@ var RICHTEXT_OPERATORS = [
|
|
|
7581
7581
|
var CHECKBOX_OPERATORS = [
|
|
7582
7582
|
{
|
|
7583
7583
|
label: "is checked",
|
|
7584
|
-
value: "
|
|
7584
|
+
value: "checked",
|
|
7585
7585
|
editorType: "empty",
|
|
7586
7586
|
expectedValueType: "true"
|
|
7587
7587
|
},
|
|
7588
7588
|
{
|
|
7589
7589
|
label: "is not checked",
|
|
7590
|
-
value: "
|
|
7590
|
+
value: "nchecked",
|
|
7591
7591
|
editorType: "empty",
|
|
7592
7592
|
expectedValueType: "false"
|
|
7593
7593
|
}
|
package/dist/index.js
CHANGED
|
@@ -7739,13 +7739,13 @@ var RICHTEXT_OPERATORS = [
|
|
|
7739
7739
|
var CHECKBOX_OPERATORS = [
|
|
7740
7740
|
{
|
|
7741
7741
|
label: "is checked",
|
|
7742
|
-
value: "
|
|
7742
|
+
value: "checked",
|
|
7743
7743
|
editorType: "empty",
|
|
7744
7744
|
expectedValueType: "true"
|
|
7745
7745
|
},
|
|
7746
7746
|
{
|
|
7747
7747
|
label: "is not checked",
|
|
7748
|
-
value: "
|
|
7748
|
+
value: "nchecked",
|
|
7749
7749
|
editorType: "empty",
|
|
7750
7750
|
expectedValueType: "false"
|
|
7751
7751
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -7581,13 +7581,13 @@ var RICHTEXT_OPERATORS = [
|
|
|
7581
7581
|
var CHECKBOX_OPERATORS = [
|
|
7582
7582
|
{
|
|
7583
7583
|
label: "is checked",
|
|
7584
|
-
value: "
|
|
7584
|
+
value: "checked",
|
|
7585
7585
|
editorType: "empty",
|
|
7586
7586
|
expectedValueType: "true"
|
|
7587
7587
|
},
|
|
7588
7588
|
{
|
|
7589
7589
|
label: "is not checked",
|
|
7590
|
-
value: "
|
|
7590
|
+
value: "nchecked",
|
|
7591
7591
|
editorType: "empty",
|
|
7592
7592
|
expectedValueType: "false"
|
|
7593
7593
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk-react",
|
|
3
|
-
"version": "19.198.
|
|
3
|
+
"version": "19.198.3-alpha.5+c37bbd4ef2",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK for React",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"@lexical/selection": "0.17.1",
|
|
51
51
|
"@lexical/utils": "0.17.1",
|
|
52
52
|
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.2.1/react-icons-all-files-5.2.1.tgz",
|
|
53
|
-
"@uniformdev/canvas": "19.198.
|
|
54
|
-
"@uniformdev/design-system": "19.198.
|
|
55
|
-
"@uniformdev/mesh-sdk": "19.198.
|
|
56
|
-
"@uniformdev/richtext": "19.198.
|
|
53
|
+
"@uniformdev/canvas": "19.198.3-alpha.5+c37bbd4ef2",
|
|
54
|
+
"@uniformdev/design-system": "19.198.3-alpha.5+c37bbd4ef2",
|
|
55
|
+
"@uniformdev/mesh-sdk": "19.198.3-alpha.5+c37bbd4ef2",
|
|
56
|
+
"@uniformdev/richtext": "19.198.3-alpha.5+c37bbd4ef2",
|
|
57
57
|
"dequal": "^2.0.3",
|
|
58
58
|
"lexical": "0.17.1",
|
|
59
59
|
"mitt": "3.0.1",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "c37bbd4ef2353582b4125b9dd21599634ecd5165"
|
|
91
91
|
}
|