@symbo.ls/uikit 2.11.249 → 2.11.254

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.cjs.js CHANGED
@@ -3943,7 +3943,7 @@ var require_object = __commonJS({
3943
3943
  const spaces = " ".repeat(indent);
3944
3944
  let str = "{\n";
3945
3945
  for (const [key, value] of Object.entries(obj)) {
3946
- const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!", " "]);
3946
+ const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "%", "{", "}", ">", "<", "@", ".", "/", "!", " "]);
3947
3947
  const stringedKey = keyNotAllowdChars ? `'${key}'` : key;
3948
3948
  str += `${spaces} ${stringedKey}: `;
3949
3949
  if ((0, import_types.isArray)(value)) {