@almadar/ui 5.164.0 → 5.165.0
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.
|
@@ -25657,6 +25657,8 @@ function FieldControl({
|
|
|
25657
25657
|
control = /* @__PURE__ */ jsxRuntime.jsx(TextLikeControl, { field: name, numeric: true, value, onCommit: onChange });
|
|
25658
25658
|
} else if (core.isSecretConfigType(decl.type)) {
|
|
25659
25659
|
control = /* @__PURE__ */ jsxRuntime.jsx(TextLikeControl, { field: name, numeric: false, secret: true, value, onCommit: onChange });
|
|
25660
|
+
} else if (decl.type === "event") {
|
|
25661
|
+
control = /* @__PURE__ */ jsxRuntime.jsx(TextLikeControl, { field: name, numeric: false, value, onCommit: onChange });
|
|
25660
25662
|
} else if (decl.type === "string") {
|
|
25661
25663
|
control = /* @__PURE__ */ jsxRuntime.jsx(TextLikeControl, { field: name, numeric: false, value, onCommit: onChange });
|
|
25662
25664
|
} else if (decl.type === "node") {
|
|
@@ -25696,7 +25698,7 @@ var init_PropertyInspector = __esm({
|
|
|
25696
25698
|
init_JsonTreeEditor();
|
|
25697
25699
|
init_NodeSlotEditor();
|
|
25698
25700
|
TIER_ORDER = ["presentation", "domain", "policy", "infra", "internal"];
|
|
25699
|
-
SCALAR_TYPES = /* @__PURE__ */ new Set(["string", "number", "boolean", "icon", "asset", "Asset", "secret"]);
|
|
25701
|
+
SCALAR_TYPES = /* @__PURE__ */ new Set(["string", "number", "boolean", "icon", "asset", "Asset", "secret", "event"]);
|
|
25700
25702
|
exports.PropertyInspector = ({
|
|
25701
25703
|
config,
|
|
25702
25704
|
values,
|
package/dist/components/index.js
CHANGED
|
@@ -25582,6 +25582,8 @@ function FieldControl({
|
|
|
25582
25582
|
control = /* @__PURE__ */ jsx(TextLikeControl, { field: name, numeric: true, value, onCommit: onChange });
|
|
25583
25583
|
} else if (isSecretConfigType(decl.type)) {
|
|
25584
25584
|
control = /* @__PURE__ */ jsx(TextLikeControl, { field: name, numeric: false, secret: true, value, onCommit: onChange });
|
|
25585
|
+
} else if (decl.type === "event") {
|
|
25586
|
+
control = /* @__PURE__ */ jsx(TextLikeControl, { field: name, numeric: false, value, onCommit: onChange });
|
|
25585
25587
|
} else if (decl.type === "string") {
|
|
25586
25588
|
control = /* @__PURE__ */ jsx(TextLikeControl, { field: name, numeric: false, value, onCommit: onChange });
|
|
25587
25589
|
} else if (decl.type === "node") {
|
|
@@ -25621,7 +25623,7 @@ var init_PropertyInspector = __esm({
|
|
|
25621
25623
|
init_JsonTreeEditor();
|
|
25622
25624
|
init_NodeSlotEditor();
|
|
25623
25625
|
TIER_ORDER = ["presentation", "domain", "policy", "infra", "internal"];
|
|
25624
|
-
SCALAR_TYPES = /* @__PURE__ */ new Set(["string", "number", "boolean", "icon", "asset", "Asset", "secret"]);
|
|
25626
|
+
SCALAR_TYPES = /* @__PURE__ */ new Set(["string", "number", "boolean", "icon", "asset", "Asset", "secret", "event"]);
|
|
25625
25627
|
PropertyInspector = ({
|
|
25626
25628
|
config,
|
|
25627
25629
|
values,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.165.0",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -118,11 +118,11 @@
|
|
|
118
118
|
"access": "public"
|
|
119
119
|
},
|
|
120
120
|
"dependencies": {
|
|
121
|
-
"@almadar/core": "^10.
|
|
121
|
+
"@almadar/core": "^10.75.0",
|
|
122
122
|
"@almadar/evaluator": "^2.42.0",
|
|
123
123
|
"@almadar/logger": "^1.11.0",
|
|
124
|
-
"@almadar/runtime": "^6.
|
|
125
|
-
"@almadar/std": "^16.
|
|
124
|
+
"@almadar/runtime": "^6.64.0",
|
|
125
|
+
"@almadar/std": "^16.194.0",
|
|
126
126
|
"@almadar/syntax": "^1.15.0",
|
|
127
127
|
"@dnd-kit/core": "^6.3.1",
|
|
128
128
|
"@dnd-kit/sortable": "^10.0.0",
|