@milaboratories/uikit 2.2.31 → 2.2.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/uikit",
3
- "version": "2.2.31",
3
+ "version": "2.2.32",
4
4
  "type": "module",
5
5
  "main": "dist/pl-uikit.umd.js",
6
6
  "module": "dist/pl-uikit.js",
@@ -9,8 +9,8 @@ export default {
9
9
 
10
10
  <script lang="ts" setup>
11
11
  import './pl-btn-ghost.scss';
12
- import type { MaskIconName16, Size } from '@/types';
13
- import { PlMaskIcon16 } from '@/components/PlMaskIcon16';
12
+ import type { MaskIconName24, Size } from '@/types';
13
+ import { PlMaskIcon24 } from '@/components/PlMaskIcon24';
14
14
  import { computed, ref, useSlots } from 'vue';
15
15
  import { useRipple } from '@/composition/useRipple';
16
16
 
@@ -31,7 +31,7 @@ const props = withDefaults(
31
31
  /**
32
32
  * Icon to display
33
33
  */
34
- icon?: MaskIconName16;
34
+ icon?: MaskIconName24;
35
35
  /**
36
36
  * If `true`, an icon is displayed before the text.
37
37
  */
@@ -69,8 +69,8 @@ useRipple(btnRef);
69
69
  <span v-if="slots.default && !round">
70
70
  <slot />
71
71
  </span>
72
- <PlMaskIcon16 v-if="loading" name="loading" :size="size" />
73
- <PlMaskIcon16 v-else-if="icon" :name="icon" :size="size" />
72
+ <PlMaskIcon24 v-if="loading" name="loading" :size="size" />
73
+ <PlMaskIcon24 v-else-if="icon" :name="icon" :size="size" />
74
74
  <slot name="append" />
75
75
  </button>
76
76
  </template>