adminforth 2.4.0-next.285 → 2.4.0-next.286

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.
@@ -481,3 +481,11 @@ export function checkShowIf(c: AdminForthResourceColumnInputCommon, record: Reco
481
481
 
482
482
  return evaluatePredicate(c.showIf);
483
483
  }
484
+
485
+ export function btoa_function(source: string): string {
486
+ return btoa(source);
487
+ }
488
+
489
+ export function atob_function(source: string): string {
490
+ return atob(source);
491
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.285",
3
+ "version": "2.4.0-next.286",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",