adminforth 1.3.1 → 1.3.2

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.
@@ -309,8 +309,6 @@ export function inverseRGBA(rgba) {
309
309
  return brightness > 128 ? 'rgba(0,0,0,1)' : 'rgba(255,255,255,1)';
310
310
  }
311
311
  export function suggestIfTypo(names, name) {
312
- console.log('names', names);
313
- console.log('name', name);
314
312
  if (!name) {
315
313
  return null;
316
314
  }
package/modules/utils.ts CHANGED
@@ -338,8 +338,6 @@ export function inverseRGBA(rgba) {
338
338
 
339
339
 
340
340
  export function suggestIfTypo(names: string[], name: string): string {
341
- console.log('names', names)
342
- console.log('name', name)
343
341
  if (!name) {
344
342
  return null;
345
343
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",