@luizleon/sf.prefeiturasp.vuecomponents 4.1.6 → 4.1.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/common/utilities.d.ts +7 -0
- package/dist/sf.prefeiturasp.vuecomponents.cjs +1 -1
- package/dist/sf.prefeiturasp.vuecomponents.cjs.map +1 -1
- package/dist/sf.prefeiturasp.vuecomponents.js +9 -0
- package/dist/sf.prefeiturasp.vuecomponents.js.map +1 -1
- package/dist/sf.prefeiturasp.vuecomponents.umd.cjs +1 -1
- package/dist/sf.prefeiturasp.vuecomponents.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -9112,6 +9112,15 @@ class co {
|
|
|
9112
9112
|
"##.###.###/####-##"
|
|
9113
9113
|
);
|
|
9114
9114
|
}
|
|
9115
|
+
/**
|
|
9116
|
+
* Pausa a execução do código por um determinado tempo, em milissegundos.
|
|
9117
|
+
* @example await Utilities.DelayAsync(1000)
|
|
9118
|
+
* @param ms
|
|
9119
|
+
* @returns
|
|
9120
|
+
*/
|
|
9121
|
+
static async DelayAsync(e) {
|
|
9122
|
+
return new Promise((n) => setTimeout(n, e));
|
|
9123
|
+
}
|
|
9115
9124
|
}
|
|
9116
9125
|
function pg() {
|
|
9117
9126
|
document.documentElement.classList.add("app-mounted");
|