@datatechsolutions/ui 2.11.82 → 2.11.83
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/astrlabe/index.d.mts +50 -1
- package/dist/astrlabe/index.d.ts +50 -1
- package/dist/astrlabe/index.js +48 -44
- package/dist/astrlabe/index.mjs +1 -1
- package/dist/{chunk-K4QJV3GC.js → chunk-JFWZHROG.js} +184 -13
- package/dist/chunk-JFWZHROG.js.map +1 -0
- package/dist/{chunk-HAZP5J67.mjs → chunk-UVGMKHWH.mjs} +186 -16
- package/dist/chunk-UVGMKHWH.mjs.map +1 -0
- package/dist/platform/pages/index.js +4 -4
- package/dist/platform/pages/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-HAZP5J67.mjs.map +0 -1
- package/dist/chunk-K4QJV3GC.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkJFWZHROG_js = require('../../chunk-JFWZHROG.js');
|
|
5
5
|
require('../../chunk-55H6WZQP.js');
|
|
6
6
|
require('../../chunk-5UU3RQRB.js');
|
|
7
7
|
require('../../chunk-M7P2TQ6X.js');
|
|
@@ -1028,7 +1028,7 @@ function RulesPageView({ labels, rules, loading, onCreate, onUpdate, onDelete })
|
|
|
1028
1028
|
{
|
|
1029
1029
|
title: labels.createTitle,
|
|
1030
1030
|
saveLabel: labels.save,
|
|
1031
|
-
initial:
|
|
1031
|
+
initial: chunkJFWZHROG_js.defaultRuleForm(),
|
|
1032
1032
|
onClose: () => setCreateOpen(false),
|
|
1033
1033
|
onSubmit: (value) => {
|
|
1034
1034
|
onCreate(value);
|
|
@@ -1072,12 +1072,12 @@ function RuleEditor({
|
|
|
1072
1072
|
event.preventDefault();
|
|
1073
1073
|
onSubmit(value);
|
|
1074
1074
|
},
|
|
1075
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1075
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(chunkJFWZHROG_js.RuleForm, { value, onChange: setValue })
|
|
1076
1076
|
}
|
|
1077
1077
|
);
|
|
1078
1078
|
}
|
|
1079
1079
|
function ruleToFormValue(rule) {
|
|
1080
|
-
const base =
|
|
1080
|
+
const base = chunkJFWZHROG_js.defaultRuleForm();
|
|
1081
1081
|
const rawCondition = rule.condition ?? rule.conditions;
|
|
1082
1082
|
const rawAction = pickAction(rule);
|
|
1083
1083
|
return {
|