adminforth 2.4.0-next.32 → 2.4.0-next.34

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.
@@ -5,9 +5,8 @@
5
5
  class="afcl-button flex items-center justify-center gap-1 text-lightPrimaryContrast bg-lightPrimary dark:bg-darkPrimary hover:brightness-110
6
6
  focus:ring-4 focus:outline-none focus:ring-lightPrimary focus:ring-opacity-50 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:focus:ring-darkPrimary dark:focus:ring-opacity-50"
7
7
  :class="{
8
- 'cursor-default': props.disabled,
9
- 'opacity-50': props.disabled,
10
- 'pointer-events-none': props.disabled,
8
+ 'cursor-default opacity-50 pointer-events-none': props.disabled,
9
+ 'active brightness-200 hover:brightness-150' : props.active
11
10
  }"
12
11
  >
13
12
  <svg v-if="props.loader"
@@ -22,6 +21,7 @@
22
21
  const props = defineProps({
23
22
  loader: Boolean,
24
23
  disabled: Boolean,
24
+ active: Boolean,
25
25
  });
26
26
 
27
27
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.32",
3
+ "version": "2.4.0-next.34",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -79,7 +79,7 @@
79
79
  "jsonwebtoken": "^9.0.2",
80
80
  "listr2": "^8.2.5",
81
81
  "mongodb": "6.6",
82
- "mysql2": "^3.12.0",
82
+ "mysql2": "^3.14.2",
83
83
  "node-fetch": "^3.3.2",
84
84
  "pg": "^8.11.5",
85
85
  "recast": "^0.23.11",