@almadar/ui 5.5.6 → 5.5.8
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/avl/index.cjs +1 -1
- package/dist/avl/index.js +1 -1
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.js +1 -1
- package/dist/providers/index.cjs +1 -1
- package/dist/providers/index.js +1 -1
- package/dist/runtime/index.cjs +1 -1
- package/dist/runtime/index.js +1 -1
- package/package.json +1 -1
package/dist/avl/index.cjs
CHANGED
|
@@ -35994,7 +35994,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
35994
35994
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
35995
35995
|
}
|
|
35996
35996
|
function normalizeBlocks(raw) {
|
|
35997
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
35997
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
35998
35998
|
return raw.map((row) => {
|
|
35999
35999
|
const r2 = row;
|
|
36000
36000
|
const rawType = r2.type;
|
package/dist/avl/index.js
CHANGED
|
@@ -35945,7 +35945,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
35945
35945
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
35946
35946
|
}
|
|
35947
35947
|
function normalizeBlocks(raw) {
|
|
35948
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
35948
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
35949
35949
|
return raw.map((row) => {
|
|
35950
35950
|
const r2 = row;
|
|
35951
35951
|
const rawType = r2.type;
|
|
@@ -31453,7 +31453,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
31453
31453
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
31454
31454
|
}
|
|
31455
31455
|
function normalizeBlocks(raw) {
|
|
31456
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
31456
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
31457
31457
|
return raw.map((row) => {
|
|
31458
31458
|
const r = row;
|
|
31459
31459
|
const rawType = r.type;
|
package/dist/components/index.js
CHANGED
|
@@ -31404,7 +31404,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
31404
31404
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
31405
31405
|
}
|
|
31406
31406
|
function normalizeBlocks(raw) {
|
|
31407
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
31407
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
31408
31408
|
return raw.map((row) => {
|
|
31409
31409
|
const r = row;
|
|
31410
31410
|
const rawType = r.type;
|
package/dist/providers/index.cjs
CHANGED
|
@@ -32406,7 +32406,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
32406
32406
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
32407
32407
|
}
|
|
32408
32408
|
function normalizeBlocks(raw) {
|
|
32409
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
32409
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
32410
32410
|
return raw.map((row) => {
|
|
32411
32411
|
const r = row;
|
|
32412
32412
|
const rawType = r.type;
|
package/dist/providers/index.js
CHANGED
|
@@ -32357,7 +32357,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
32357
32357
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
32358
32358
|
}
|
|
32359
32359
|
function normalizeBlocks(raw) {
|
|
32360
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
32360
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
32361
32361
|
return raw.map((row) => {
|
|
32362
32362
|
const r = row;
|
|
32363
32363
|
const rawType = r.type;
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -31973,7 +31973,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
31973
31973
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
31974
31974
|
}
|
|
31975
31975
|
function normalizeBlocks(raw) {
|
|
31976
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
31976
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
31977
31977
|
return raw.map((row) => {
|
|
31978
31978
|
const r = row;
|
|
31979
31979
|
const rawType = r.type;
|
package/dist/runtime/index.js
CHANGED
|
@@ -31924,7 +31924,7 @@ function nextBlockId(prefix = "blk") {
|
|
|
31924
31924
|
return `${prefix}-${Date.now().toString(36)}-${_idSeq}-${random}`;
|
|
31925
31925
|
}
|
|
31926
31926
|
function normalizeBlocks(raw) {
|
|
31927
|
-
if (!raw || raw.length === 0) return [createBlock("paragraph")];
|
|
31927
|
+
if (!Array.isArray(raw) || raw.length === 0) return [createBlock("paragraph")];
|
|
31928
31928
|
return raw.map((row) => {
|
|
31929
31929
|
const r = row;
|
|
31930
31930
|
const rawType = r.type;
|