@uniformdev/mesh-sdk-react 19.184.3-alpha.32 → 19.186.1
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.esm.js +5 -1
- package/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +11 -11
package/dist/index.esm.js
CHANGED
|
@@ -8400,6 +8400,9 @@ var ConditionalInputRow = css38`
|
|
|
8400
8400
|
}
|
|
8401
8401
|
}
|
|
8402
8402
|
`;
|
|
8403
|
+
var ConditionalInputRowEmpty = css38`
|
|
8404
|
+
flex-wrap: nowrap;
|
|
8405
|
+
`;
|
|
8403
8406
|
var SearchInput = css38`
|
|
8404
8407
|
max-height: 40px;
|
|
8405
8408
|
min-height: unset;
|
|
@@ -8960,9 +8963,10 @@ var FilterItem = ({
|
|
|
8960
8963
|
isClearable: false
|
|
8961
8964
|
} : {};
|
|
8962
8965
|
const CustomLeftHandComponent = selectedFieldValue == null ? void 0 : selectedFieldValue.leftHandSideComponentWhenSelected;
|
|
8966
|
+
const isEmptyOperator = metaDataPossibleOptions === "empty";
|
|
8963
8967
|
return /* @__PURE__ */ jsxs46("div", { css: ConditionalFilterRow, "data-testid": "filter-item", children: [
|
|
8964
8968
|
/* @__PURE__ */ jsx85("span", { children: index === 0 ? initialCriteriaTitle : criteriaGroupOperator }),
|
|
8965
|
-
/* @__PURE__ */ jsxs46("div", { css: ConditionalInputRow, children: [
|
|
8969
|
+
/* @__PURE__ */ jsxs46("div", { css: [ConditionalInputRow, isEmptyOperator ? ConditionalInputRowEmpty : null], children: [
|
|
8966
8970
|
CustomLeftHandComponent ? /* @__PURE__ */ jsx85(
|
|
8967
8971
|
CustomLeftHandComponent,
|
|
8968
8972
|
{
|
package/dist/index.js
CHANGED
|
@@ -8540,6 +8540,9 @@ var ConditionalInputRow = import_react86.css`
|
|
|
8540
8540
|
}
|
|
8541
8541
|
}
|
|
8542
8542
|
`;
|
|
8543
|
+
var ConditionalInputRowEmpty = import_react86.css`
|
|
8544
|
+
flex-wrap: nowrap;
|
|
8545
|
+
`;
|
|
8543
8546
|
var SearchInput = import_react86.css`
|
|
8544
8547
|
max-height: 40px;
|
|
8545
8548
|
min-height: unset;
|
|
@@ -9092,9 +9095,10 @@ var FilterItem = ({
|
|
|
9092
9095
|
isClearable: false
|
|
9093
9096
|
} : {};
|
|
9094
9097
|
const CustomLeftHandComponent = selectedFieldValue == null ? void 0 : selectedFieldValue.leftHandSideComponentWhenSelected;
|
|
9098
|
+
const isEmptyOperator = metaDataPossibleOptions === "empty";
|
|
9095
9099
|
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { css: ConditionalFilterRow, "data-testid": "filter-item", children: [
|
|
9096
9100
|
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { children: index === 0 ? initialCriteriaTitle : criteriaGroupOperator }),
|
|
9097
|
-
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { css: ConditionalInputRow, children: [
|
|
9101
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { css: [ConditionalInputRow, isEmptyOperator ? ConditionalInputRowEmpty : null], children: [
|
|
9098
9102
|
CustomLeftHandComponent ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
9099
9103
|
CustomLeftHandComponent,
|
|
9100
9104
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -8400,6 +8400,9 @@ var ConditionalInputRow = css38`
|
|
|
8400
8400
|
}
|
|
8401
8401
|
}
|
|
8402
8402
|
`;
|
|
8403
|
+
var ConditionalInputRowEmpty = css38`
|
|
8404
|
+
flex-wrap: nowrap;
|
|
8405
|
+
`;
|
|
8403
8406
|
var SearchInput = css38`
|
|
8404
8407
|
max-height: 40px;
|
|
8405
8408
|
min-height: unset;
|
|
@@ -8960,9 +8963,10 @@ var FilterItem = ({
|
|
|
8960
8963
|
isClearable: false
|
|
8961
8964
|
} : {};
|
|
8962
8965
|
const CustomLeftHandComponent = selectedFieldValue == null ? void 0 : selectedFieldValue.leftHandSideComponentWhenSelected;
|
|
8966
|
+
const isEmptyOperator = metaDataPossibleOptions === "empty";
|
|
8963
8967
|
return /* @__PURE__ */ jsxs46("div", { css: ConditionalFilterRow, "data-testid": "filter-item", children: [
|
|
8964
8968
|
/* @__PURE__ */ jsx85("span", { children: index === 0 ? initialCriteriaTitle : criteriaGroupOperator }),
|
|
8965
|
-
/* @__PURE__ */ jsxs46("div", { css: ConditionalInputRow, children: [
|
|
8969
|
+
/* @__PURE__ */ jsxs46("div", { css: [ConditionalInputRow, isEmptyOperator ? ConditionalInputRowEmpty : null], children: [
|
|
8966
8970
|
CustomLeftHandComponent ? /* @__PURE__ */ jsx85(
|
|
8967
8971
|
CustomLeftHandComponent,
|
|
8968
8972
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk-react",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.186.1",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK for React",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -45,17 +45,17 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@hookform/resolvers": "^3.3.1",
|
|
48
|
-
"@lexical/clipboard": "0.17.
|
|
49
|
-
"@lexical/react": "0.17.
|
|
50
|
-
"@lexical/selection": "0.17.
|
|
51
|
-
"@lexical/utils": "0.17.
|
|
48
|
+
"@lexical/clipboard": "0.17.1",
|
|
49
|
+
"@lexical/react": "0.17.1",
|
|
50
|
+
"@lexical/selection": "0.17.1",
|
|
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.
|
|
54
|
-
"@uniformdev/design-system": "19.
|
|
55
|
-
"@uniformdev/mesh-sdk": "19.
|
|
56
|
-
"@uniformdev/richtext": "19.
|
|
53
|
+
"@uniformdev/canvas": "19.186.1",
|
|
54
|
+
"@uniformdev/design-system": "19.186.1",
|
|
55
|
+
"@uniformdev/mesh-sdk": "19.186.1",
|
|
56
|
+
"@uniformdev/richtext": "19.186.1",
|
|
57
57
|
"dequal": "^2.0.3",
|
|
58
|
-
"lexical": "0.17.
|
|
58
|
+
"lexical": "0.17.1",
|
|
59
59
|
"mitt": "3.0.1",
|
|
60
60
|
"react-beautiful-dnd": "13.1.1",
|
|
61
61
|
"react-hook-form": "^7.47.0",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "12ca61d140d99b4f2de67428425076cecbc6577b"
|
|
91
91
|
}
|