@erdoai/ui 0.1.77 → 0.1.78

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.d.cts CHANGED
@@ -413,6 +413,7 @@ declare class JSONStreamParser {
413
413
  private stringBuffer;
414
414
  private numberBuffer;
415
415
  private quoteBuffer;
416
+ private postQuoteWhitespace;
416
417
  private escapeNext;
417
418
  private unicode;
418
419
  private isInTripleQuotes;
@@ -429,6 +430,12 @@ declare class JSONStreamParser {
429
430
  private handleAfterKeyState;
430
431
  private handleObjectValueState;
431
432
  private handleStringState;
433
+ /**
434
+ * Flush a buffered quote (and any post-quote whitespace) back into the string
435
+ * as literal characters — the quote was NOT a string terminator.
436
+ */
437
+ private flushQuoteAsLiteral;
438
+ private isJsonStructuralOrQuote;
432
439
  private handleNumberState;
433
440
  private handleLiteralState;
434
441
  private handleUnicodeState;
package/dist/index.d.ts CHANGED
@@ -413,6 +413,7 @@ declare class JSONStreamParser {
413
413
  private stringBuffer;
414
414
  private numberBuffer;
415
415
  private quoteBuffer;
416
+ private postQuoteWhitespace;
416
417
  private escapeNext;
417
418
  private unicode;
418
419
  private isInTripleQuotes;
@@ -429,6 +430,12 @@ declare class JSONStreamParser {
429
430
  private handleAfterKeyState;
430
431
  private handleObjectValueState;
431
432
  private handleStringState;
433
+ /**
434
+ * Flush a buffered quote (and any post-quote whitespace) back into the string
435
+ * as literal characters — the quote was NOT a string terminator.
436
+ */
437
+ private flushQuoteAsLiteral;
438
+ private isJsonStructuralOrQuote;
432
439
  private handleNumberState;
433
440
  private handleLiteralState;
434
441
  private handleUnicodeState;