@praxisui/list 8.0.0-beta.2 → 8.0.0-beta.4

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.
@@ -2978,10 +2978,7 @@ function readBoolean(value) {
2978
2978
  return undefined;
2979
2979
  }
2980
2980
  function looksLikeJsonPayload(value) {
2981
- return (value.startsWith('{') ||
2982
- value.startsWith('[') ||
2983
- value.endsWith('}') ||
2984
- value.endsWith(']'));
2981
+ return value.startsWith('{') || value.startsWith('[');
2985
2982
  }
2986
2983
  function isAcceptedImageUrl(value) {
2987
2984
  return ((value.startsWith('${') && value.endsWith('}')) ||
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@praxisui/list",
3
- "version": "8.0.0-beta.2",
3
+ "version": "8.0.0-beta.4",
4
4
  "description": "List components and helpers for Praxis UI.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=16 <21",
7
7
  "@angular/core": ">=16 <21",
8
8
  "@angular/material": ">=16 <21",
9
- "@praxisui/dynamic-fields": "^8.0.0-beta.2",
9
+ "@praxisui/dynamic-fields": "^8.0.0-beta.4",
10
10
  "rxjs": ">=7 <9"
11
11
  },
12
12
  "dependencies": {