veryfront 0.1.120 → 0.1.121
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/esm/deno.js +1 -1
- package/esm/src/security/client/html-sanitizer.js +1 -1
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/security/client/html-sanitizer.ts +1 -1
- package/src/src/utils/version-constant.ts +1 -1
package/esm/deno.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*/
|
|
9
9
|
import * as dntShim from "../../../_dnt.shims.js";
|
|
10
10
|
import { escapeHtml } from "../../html/html-escape.js";
|
|
11
|
-
import { SECURITY_VIOLATION } from "../../errors/
|
|
11
|
+
import { SECURITY_VIOLATION } from "../../errors/error-registry.js";
|
|
12
12
|
export { escapeHtml };
|
|
13
13
|
/**
|
|
14
14
|
* Patterns that RSC should never generate.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.121";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED
package/src/deno.js
CHANGED
|
@@ -10,7 +10,7 @@ import * as dntShim from "../../../_dnt.shims.js";
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
import { escapeHtml } from "../../html/html-escape.js";
|
|
13
|
-
import { SECURITY_VIOLATION } from "../../errors/
|
|
13
|
+
import { SECURITY_VIOLATION } from "../../errors/error-registry.js";
|
|
14
14
|
|
|
15
15
|
export { escapeHtml };
|
|
16
16
|
|