adminforth 2.4.0-next.14 → 2.4.0-next.16

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.
@@ -2,7 +2,7 @@
2
2
  <button
3
3
  v-bind="$attrs"
4
4
  type="submit"
5
- class="flex items-center justify-center gap-1 text-lightPrimaryContrast bg-lightPrimary dark:bg-darkPrimary hover:brightness-110
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
8
  'cursor-default': props.disabled,
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="flex items-center h-5" :class="{'opacity-50' : props.disabled}">
2
+ <div class="afcl-checkbox flex items-center h-5" :class="{'opacity-50' : props.disabled}">
3
3
  <input :id="id"
4
4
  ref="rememberInput"
5
5
  type="checkbox"
@@ -2,7 +2,7 @@
2
2
  <router-link
3
3
  v-bind="$attrs"
4
4
  :to="to"
5
- class="text-lightPrimary underline dark:text-darkPrimary hover:no-underline hover:brightness-110
5
+ class="afcl-link text-lightPrimary underline dark:text-darkPrimary hover:no-underline hover:brightness-110
6
6
  cursor-pointer"
7
7
  >
8
8
  <slot></slot>
@@ -3,7 +3,7 @@
3
3
  v-bind="$attrs"
4
4
  :to="props.to"
5
5
  type="submit"
6
- class="flex items-center justify-center gap-1 text-lightPrimaryContrast bg-lightPrimary dark:bg-darkPrimary hover:brightness-110
6
+ class="afcl-link-button flex items-center justify-center gap-1 text-lightPrimaryContrast bg-lightPrimary dark:bg-darkPrimary hover:brightness-110
7
7
  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"
8
8
  :class="{
9
9
  'cursor-default': props.disabled,
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="relative inline-block afcl-select" ref="internalSelect"
2
+ <div class="afcl-select relative inline-block" ref="internalSelect"
3
3
  :class="{'opacity-50': readonly}"
4
4
  >
5
5
  <div class="relative">
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div ref="triggerEl" class="inline-flex items-center">
2
+ <div ref="triggerEl" class="afcl-tooltip inline-flex items-center">
3
3
  <slot></slot>
4
4
  </div>
5
5
  <div
@@ -29,16 +29,16 @@
29
29
  <!-- Modal content -->
30
30
  <div class="af-login-modal-content relative bg-white rounded-lg shadow dark:bg-gray-700 dark:shadow-black" >
31
31
  <!-- Modal header -->
32
- <div class="af-login-modal-header flex items-center justify-between p-4 md:p-5 border-b rounded-t dark:border-gray-600">
32
+ <div class="af-login-modal-header flex items-center justify-between flex-col p-4 md:p-5 border-b rounded-t dark:border-gray-600">
33
33
 
34
- <div v-if="coreStore?.config?.loginPageInjections?.panelHeader.length > 0">
34
+ <template v-if="coreStore?.config?.loginPageInjections?.panelHeader.length > 0">
35
35
  <component
36
36
  v-for="(c, index) in coreStore?.config?.loginPageInjections?.panelHeader || []"
37
37
  :key="index"
38
38
  :is="getCustomComponent(c)"
39
39
  :meta="c.meta"
40
40
  />
41
- </div>
41
+ </template>
42
42
  <h3 v-else class="text-xl font-semibold text-gray-900 dark:text-white">
43
43
  {{ $t('Sign in to') }} {{ coreStore.config?.brandName }}
44
44
  </h3>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.14",
3
+ "version": "2.4.0-next.16",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",