@xuda.io/runtime-bundle 1.0.334 → 1.0.336

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.
@@ -11568,7 +11568,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11568
11568
  const _source_xuAttributes = _$callingContainer.data()?.xuAttributes;
11569
11569
  if (_source_xuAttributes) {
11570
11570
  for (const [attr, value] of Object.entries(_source_xuAttributes)) {
11571
- if (value?.includes(val_field)) {
11571
+ if (value && typeof value === 'string' && value.includes(val_field)) {
11572
11572
  const pattern = /xu-exp:(\w+)/;
11573
11573
  const match = attr.match(pattern);
11574
11574
  if (match) {
@@ -12237,6 +12237,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12237
12237
  };
12238
12238
 
12239
12239
  const common_fx = {
12240
+ 'xu-ref': async function ($elm, val) {
12241
+ return {};
12242
+ },
12240
12243
  'xu-bind': async function ($elm, val) {
12241
12244
  if (is_skeleton) return;
12242
12245
 
@@ -9634,7 +9634,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9634
9634
  const _source_xuAttributes = _$callingContainer.data()?.xuAttributes;
9635
9635
  if (_source_xuAttributes) {
9636
9636
  for (const [attr, value] of Object.entries(_source_xuAttributes)) {
9637
- if (value?.includes(val_field)) {
9637
+ if (value && typeof value === 'string' && value.includes(val_field)) {
9638
9638
  const pattern = /xu-exp:(\w+)/;
9639
9639
  const match = attr.match(pattern);
9640
9640
  if (match) {
@@ -10303,6 +10303,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10303
10303
  };
10304
10304
 
10305
10305
  const common_fx = {
10306
+ 'xu-ref': async function ($elm, val) {
10307
+ return {};
10308
+ },
10306
10309
  'xu-bind': async function ($elm, val) {
10307
10310
  if (is_skeleton) return;
10308
10311