@finema/core 2.39.0 → 2.40.1

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/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "2.39.0",
3
+ "version": "2.40.1",
4
4
  "configKey": "core",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import * as lodash from 'lodash-es';
4
4
  import * as theme from '../dist/runtime/theme/index.js';
5
5
 
6
6
  const name = "@finema/core";
7
- const version = "2.39.0";
7
+ const version = "2.40.1";
8
8
 
9
9
  const nuxtAppOptions = {
10
10
  head: {
@@ -5,11 +5,13 @@
5
5
  <AlertDialogContent
6
6
  :class="theme.base()"
7
7
  >
8
- <Icon
9
- v-if="!propsSafe.isHideIcon"
10
- :name="getIcon || ''"
11
- :class="theme.icon()"
12
- />
8
+ <div :class="theme.iconWrapper()">
9
+ <Icon
10
+ v-if="!propsSafe.isHideIcon"
11
+ :name="getIcon || ''"
12
+ :class="theme.icon()"
13
+ />
14
+ </div>
13
15
  <div :class="theme.wrapper()">
14
16
  <AlertDialogTitle :class="theme.title()">
15
17
  {{ propsSafe.title }}
@@ -1,4 +1,4 @@
1
- export declare const enum DialogType {
1
+ export declare enum DialogType {
2
2
  ERROR = "error",
3
3
  INFO = "info",
4
4
  SUCCESS = "success",
@@ -48,8 +48,8 @@ export const useDialog = () => {
48
48
  };
49
49
  const confirm = async (payload) => {
50
50
  return openDialog({
51
- ...payload,
52
51
  type: "info" /* INFO */,
52
+ ...payload,
53
53
  isShowCancelBtn: true,
54
54
  isConfirm: true
55
55
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "2.39.0",
3
+ "version": "2.40.1",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",