@unsource/ui 2.8.6 → 2.8.8

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,7 +1,7 @@
1
1
  {
2
2
  "name": "unsource-ui",
3
3
  "configKey": "unsourceUi",
4
- "version": "2.8.6",
4
+ "version": "2.8.8",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  import { createResolver, defineNuxtModule, addComponentsDir, addImportsDir, addPlugin } from '@nuxt/kit';
2
+ import defu from 'defu';
2
3
 
3
4
  const resolver = createResolver(import.meta.url);
4
5
  const module = defineNuxtModule({
@@ -86,6 +87,7 @@ const module = defineNuxtModule({
86
87
  });
87
88
  addImportsDir(resolver2.resolve("runtime/composables"));
88
89
  addPlugin(resolver2.resolve("runtime/plugins/toast.client"));
90
+ _nuxt.options.runtimeConfig.public.unsourceUi = defu(_nuxt.options.runtimeConfig.public.unsourceUi, _options);
89
91
  }
90
92
  });
91
93
 
@@ -116,7 +116,7 @@ import { computed } from "#imports";
116
116
  import UnLocationInput from "./UnLocationInput.vue";
117
117
  const emit = defineEmits(["update:modelValue"]);
118
118
  const { item, options, required, isError } = defineProps({
119
- item: { type: Object, required: true },
119
+ item: { type: null, required: true },
120
120
  options: { type: Array, required: true },
121
121
  required: { type: Boolean, required: false },
122
122
  isError: { type: Boolean, required: false }
@@ -10,7 +10,7 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
10
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
11
11
  schema: import("vue").ComputedRef<{
12
12
  type: string;
13
- properties: Partial<Form>;
13
+ properties: Form;
14
14
  required: string[];
15
15
  }>;
16
16
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -10,7 +10,7 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
10
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
11
11
  schema: import("vue").ComputedRef<{
12
12
  type: string;
13
- properties: Partial<Form>;
13
+ properties: Form;
14
14
  required: string[];
15
15
  }>;
16
16
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -6,7 +6,7 @@ type __VLS_Props = {
6
6
  isError?: boolean;
7
7
  index?: number;
8
8
  };
9
- declare const Input: Partial<Input> | undefined;
9
+ declare const Input: any;
10
10
  type __VLS_ModelProps = {
11
11
  modelValue?: any;
12
12
  };
@@ -30,7 +30,7 @@ import numeral from "numeral";
30
30
  const { Type, Input } = defineProps({
31
31
  disabled: { type: Boolean, required: false },
32
32
  Input: { type: Object, required: false },
33
- Type: { type: String, required: false },
33
+ Type: { type: null, required: false },
34
34
  isError: { type: Boolean, required: false },
35
35
  index: { type: Number, required: false }
36
36
  });
@@ -6,7 +6,7 @@ type __VLS_Props = {
6
6
  isError?: boolean;
7
7
  index?: number;
8
8
  };
9
- declare const Input: Partial<Input> | undefined;
9
+ declare const Input: any;
10
10
  type __VLS_ModelProps = {
11
11
  modelValue?: any;
12
12
  };
@@ -1,4 +1,4 @@
1
- import type { Address, Point as PointType } from '~/types/app';
1
+ import type { Address, Point as PointType } from '../types/app.js';
2
2
  type __VLS_Props = {
3
3
  points?: PointType[];
4
4
  readonly?: boolean;
@@ -61,8 +61,10 @@ import { Point, Circle as GeomCircle } from "ol/geom";
61
61
  import { fromLonLat, transform } from "ol/proj";
62
62
  import Big from "big.js";
63
63
  import { computed, ref, useDevice, useGeolocation, watch } from "#imports";
64
- const NESHAN_API_KEY = window.NESHAN_API_KEY;
65
- const NESHAN_WEB_KEY = window.NESHAN_WEB_KEY;
64
+ import { useModuleConfig } from "../composables/reuseable";
65
+ const moduleConfig = useModuleConfig();
66
+ const NESHAN_API_KEY = window.NESHAN_API_KEY || moduleConfig?.NESHAN_API_KEY;
67
+ const NESHAN_WEB_KEY = window.NESHAN_WEB_KEY || moduleConfig?.NESHAN_WEB_KEY;
66
68
  const emit = defineEmits(["select-point"]);
67
69
  const { points = [], readonly, marker } = defineProps({
68
70
  points: { type: Array, required: false },
@@ -1,4 +1,4 @@
1
- import type { Address, Point as PointType } from '~/types/app';
1
+ import type { Address, Point as PointType } from '../types/app.js';
2
2
  type __VLS_Props = {
3
3
  points?: PointType[];
4
4
  readonly?: boolean;
@@ -27,13 +27,13 @@ type __VLS_ModelProps = {
27
27
  };
28
28
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
29
29
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {
30
- date: boolean;
31
30
  password: boolean;
32
31
  appendIcon: string;
33
32
  label: string;
34
33
  disabled: boolean;
35
34
  inputType: string;
36
35
  placeholder: string;
36
+ date: boolean;
37
37
  focusable: boolean;
38
38
  className: string;
39
39
  valueClassName: string;
@@ -27,13 +27,13 @@ type __VLS_ModelProps = {
27
27
  };
28
28
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
29
29
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {
30
- date: boolean;
31
30
  password: boolean;
32
31
  appendIcon: string;
33
32
  label: string;
34
33
  disabled: boolean;
35
34
  inputType: string;
36
35
  placeholder: string;
36
+ date: boolean;
37
37
  focusable: boolean;
38
38
  className: string;
39
39
  valueClassName: string;
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  });
7
7
  declare const __VLS_base: import("vue").DefineComponent<{}, {
8
8
  $props: Partial<typeof props>;
9
- icon: string;
10
9
  label: string;
10
+ icon: string;
11
11
  disabled: boolean;
12
12
  accept: string;
13
13
  edit: boolean;
@@ -16,8 +16,8 @@ type __VLS_Slots = {
16
16
  icon?: ((props: {}) => any) | undefined;
17
17
  };
18
18
  declare const props: {
19
- readonly icon: string;
20
19
  readonly label: string;
20
+ readonly icon: string;
21
21
  readonly disabled: boolean;
22
22
  readonly accept: string;
23
23
  readonly edit: boolean;
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  });
7
7
  declare const __VLS_base: import("vue").DefineComponent<{}, {
8
8
  $props: Partial<typeof props>;
9
- icon: string;
10
9
  label: string;
10
+ icon: string;
11
11
  disabled: boolean;
12
12
  accept: string;
13
13
  edit: boolean;
@@ -16,8 +16,8 @@ type __VLS_Slots = {
16
16
  icon?: ((props: {}) => any) | undefined;
17
17
  };
18
18
  declare const props: {
19
- readonly icon: string;
20
19
  readonly label: string;
20
+ readonly icon: string;
21
21
  readonly disabled: boolean;
22
22
  readonly accept: string;
23
23
  readonly edit: boolean;
@@ -1,4 +1,4 @@
1
- import { useToken } from "./reuseable.js";
1
+ import { useModuleConfig, useToken } from "./reuseable.js";
2
2
  import { _get, _set, useNuxtApp, _takeRight } from "#imports";
3
3
  const domain = location.hostname.split(".");
4
4
  const tld = _takeRight(domain, 2).join(".");
@@ -17,12 +17,13 @@ const errorHandler = (error, config) => {
17
17
  return { error };
18
18
  };
19
19
  export const fetch = async ({ body = void 0, config = {}, controller = void 0, URL = "", method = "GET" }) => {
20
+ const moduleConfig = useModuleConfig();
20
21
  controller = new AbortController();
21
22
  const signal = controller.signal;
22
23
  config = setHeaders(config);
23
24
  try {
24
25
  const result = await $fetch(URL, {
25
- baseURL: window.BASE_URL,
26
+ baseURL: window.BASE_URL || moduleConfig?.BASE_URL,
26
27
  method,
27
28
  signal,
28
29
  body,
@@ -47,48 +47,7 @@ export declare const submitPayment: (amount: number, details?: Partial<Transacti
47
47
  export declare const discountedPrice: (price: any, discount?: DiscountCode) => any;
48
48
  export declare const formattedAddress: ([lng, lat]: Address) => Promise<any>;
49
49
  export declare const geoCodingAddress: (address: string, coords: Address) => Promise<unknown>;
50
- export declare const setOptions: (f: Form, ctx?: {}) => Promise<Form | {
51
- input: {
52
- options: any;
53
- id?: string;
54
- key: string;
55
- title: string;
56
- description?: string | null;
57
- hint?: string | null;
58
- type?: "text" | "description" | "switch" | "select" | "number" | "dateTime" | "date" | "time" | "location" | "image" | "file" | "none";
59
- placeholder?: string | null;
60
- icon?: string | null;
61
- append?: string | null;
62
- extendInput?: import("../types/models.js").Input | null;
63
- externalOptions?: string | null;
64
- externalOptionsKeys?: import("../types/models.js").ExternalOptionsKeys | null;
65
- multiSelect?: boolean | null;
66
- keyboadType?: "none" | "text" | "decimal" | "numeric" | "tel" | "search" | "email" | "url" | null;
67
- min?: number | {} | null;
68
- max?: number | {} | null;
69
- extendedInputKey?: string | null;
70
- createdAt?: string | null;
71
- updatedAt?: string | null;
72
- forms?: Form[];
73
- requiredForms?: Form[];
74
- activatedForms?: Form[];
75
- filterOptions?: import("../types/models.js").InputOption[];
76
- extendedInputs?: import("../types/models.js").Input[];
77
- };
78
- id?: string;
79
- name: string;
80
- priority?: number | {} | null;
81
- required?: boolean;
82
- requiredby?: string | null;
83
- activatedByInput?: import("../types/models.js").Input | null;
84
- activatedByValues?: string[];
85
- requiredByInput?: import("../types/models.js").Input | null;
86
- requiredByValues?: string[];
87
- createdAt?: string | null;
88
- updatedAt?: string | null;
89
- activatedBy?: string | null;
90
- inputId: string;
91
- }>;
50
+ export declare const setOptions: (f: Form, ctx?: {}) => Promise<any>;
92
51
  export declare const merge: (v: string | Record<string, unknown>, s: string | Record<string, unknown>) => string | Record<string, unknown> | undefined;
93
52
  export declare const variants: {
94
53
  success: string;
@@ -19,7 +19,7 @@ import {
19
19
  } from "#imports";
20
20
  import { io } from "socket.io-client";
21
21
  import { digitsFaToEn, digitsArToEn } from "@persian-tools/persian-tools";
22
- import { useToken, useUserId } from "./reuseable.js";
22
+ import { useModuleConfig, useToken, useUserId } from "./reuseable.js";
23
23
  import Moment from "jalali-moment";
24
24
  import Handlebars from "handlebars";
25
25
  import Ajv from "ajv";
@@ -156,7 +156,8 @@ export const minutesToTime = (m = 0) => {
156
156
  return `${hour.padStart(2, 0)}:${minute.padStart(2, 0)}`;
157
157
  };
158
158
  export const useSocketIo = () => {
159
- const socket = io(window.BASE_URL, {
159
+ const moduleConfig = useModuleConfig();
160
+ const socket = io(window.BASE_URL || moduleConfig?.BASE_URL, {
160
161
  extraHeaders: {
161
162
  authorization: useToken().value || ""
162
163
  // 'app-code': APP_CODE
@@ -212,16 +213,17 @@ export const decrypt = (ciphertext, passphrase) => {
212
213
  export const useWallets = async (isActive = void 0, id = void 0) => {
213
214
  const userId = id ? { value: id } : useUserId();
214
215
  const wallet = id ? ref([]) : useState("wallet", () => []);
216
+ const moduleConfig = useModuleConfig();
215
217
  const { result: currentWallets } = await useGet("/wallet", {
216
218
  params: {
217
219
  "$w.userId": userId.value,
218
220
  // '$w.isActive': isActive,
219
221
  "$i.coin.$i.gateways.$w.active": isActive,
220
- "$i.coin.$i.gateways.$i.gateway": isActive
222
+ "$i.coin.$i.gateways.$i.gateway": true
221
223
  }
222
224
  });
223
225
  const { result: coins } = await useGet("/coin", { params: { "$w.walletable": true } });
224
- wallet.value = currentWallets || [];
226
+ wallet.value = currentWallets.filter((e) => !e.coin?.platforms?.length || e.coin?.platforms?.includes(window.APP_CODE || moduleConfig?.APP_CODE)) || [];
225
227
  const wallets = coins?.map((e) => ({
226
228
  balance: 0,
227
229
  coinId: e.id,
@@ -233,11 +235,11 @@ export const useWallets = async (isActive = void 0, id = void 0) => {
233
235
  params: {
234
236
  "$w.userId": userId.value,
235
237
  "$i.coin.$i.gateways.$w.active": isActive,
236
- "$i.coin.$i.gateways.$i.gateway": isActive
238
+ "$i.coin.$i.gateways.$i.gateway": true
237
239
  // '$w.isActive': isActive,
238
240
  }
239
241
  });
240
- wallet.value = w || [];
242
+ wallet.value = w?.filter((e) => !e.coin?.platforms?.length || e.coin?.platforms?.includes(window.APP_CODE || moduleConfig?.APP_CODE)) || [];
241
243
  }
242
244
  return wallet;
243
245
  };
@@ -1,12 +1,12 @@
1
- import type { AppSetting, Booking, BookingSetting, DiscountCode, InputOption, Provider, ServiceSettingType, ServiceSetting, User } from '../types/models.js';
1
+ import type { Booking, BookingSetting, DiscountCode, ServiceSettingType, ServiceSetting, User } from '../types/models.js';
2
2
  export declare const useUser: () => import("@vueuse/shared").RemovableRef<User>;
3
- export declare const useProvider: () => import("@vueuse/shared").RemovableRef<Partial<Provider>>;
3
+ export declare const useProvider: () => import("@vueuse/shared").RemovableRef<Provider>;
4
4
  export declare const useActiveBookings: () => import("@vueuse/shared").RemovableRef<Booking[]>;
5
5
  export declare const useCurrentOrderIndex: (providerId: string, activeBookings: Booking[]) => number;
6
- export declare const useSettings: () => import("@vueuse/shared").RemovableRef<Partial<AppSetting>>;
6
+ export declare const useSettings: () => import("@vueuse/shared").RemovableRef<AppSetting>;
7
7
  export declare const useHaveLocation: () => import("vue").Ref<boolean, boolean>;
8
8
  export declare const useCatInView: () => import("vue").Ref<[InputOption, ServiceSetting[]], [InputOption, ServiceSetting[]]>;
9
- export declare const useToppingModal: () => import("vue").Ref<ServiceSetting | null, ServiceSetting | null>;
9
+ export declare const useToppingModal: () => import("vue").Ref<any, any>;
10
10
  export declare const useMeta: (v?: {
11
11
  backward?: any;
12
12
  title?: string;
@@ -30,7 +30,7 @@ export declare const useProviderId: () => import("#app").CookieRef<string | null
30
30
  export declare const useCurrentProductIndex: (products: ServiceSetting[], p: Partial<ServiceSetting>) => number;
31
31
  export declare const SettingToType: (setting: ServiceSetting) => ServiceSettingType;
32
32
  export declare const NotInProcessBooking: (e: Booking["status"]) => boolean;
33
- export declare const MinPrice: (bookingSetting: BookingSetting) => number | {} | null | undefined;
33
+ export declare const MinPrice: (bookingSetting: BookingSetting) => any;
34
34
  export declare const PriceDiscount: (product: ServiceSettingType | ServiceSetting) => number;
35
35
  export declare const BookingServicesPrice: (booking: Booking) => number;
36
36
  export declare const BookingServicesDiscountPrice: (booking: Booking) => number;
@@ -48,6 +48,7 @@ export declare const BookingPrice: (booking: Booking) => number;
48
48
  export declare const authenticate: () => Promise<void>;
49
49
  export declare const authenticateProvider: () => Promise<void>;
50
50
  export declare const useConfig: () => import("@nuxt/schema").PublicRuntimeConfig;
51
+ export declare const useModuleConfig: () => unknown;
51
52
  export declare const isProviderSide: (config: {
52
53
  userType: string;
53
54
  }) => boolean;
@@ -67,6 +67,10 @@ export const useConfig = () => {
67
67
  const { public: config } = useRuntimeConfig();
68
68
  return config;
69
69
  };
70
+ export const useModuleConfig = () => {
71
+ const config = useConfig();
72
+ return config.unsourceUi;
73
+ };
70
74
  export const isProviderSide = (config) => {
71
75
  return config?.userType === "PROVIDER";
72
76
  };
@@ -1,11 +1,11 @@
1
- import type { Form, InputOption, Section, Profile, Transaction, Slider, User, Banner, Coin } from '../types/models.js';
1
+ import type { Section, Profile, Transaction, Slider, User, Banner, Coin } from '../types/models.js';
2
2
  export declare const getForms: (name: string) => Promise<Form[] | undefined>;
3
3
  export declare const getUserInfo: () => Promise<User | null>;
4
4
  export declare const getCoin: (id?: string | null) => Promise<Coin | undefined>;
5
5
  export declare const getBanner: (cat: string) => Promise<Banner | null | undefined>;
6
6
  export declare const getSections: () => Promise<Section | never[]>;
7
7
  export declare const getCategorySection: (data: Slider) => Promise<InputOption[]>;
8
- export declare const getOption: (key: string, params?: {}) => Promise<InputOption | null>;
8
+ export declare const getOption: (key: string, params?: {}) => Promise<any>;
9
9
  export declare const getOptions: (key: string) => Promise<InputOption[]>;
10
10
  export declare const getMyTransactions: (q?: {}) => Promise<Transaction[] | undefined>;
11
11
  export declare const getTransactions: (q?: {}) => Promise<Transaction[] | undefined>;
@@ -7,7 +7,6 @@ declare const _default: import("#app").Plugin<{
7
7
  rtl?: boolean | undefined;
8
8
  data?: {} | undefined;
9
9
  role?: string | undefined;
10
- icon?: import("vue3-toastify").IconType | undefined;
11
10
  toastId?: import("vue3-toastify").Id | undefined;
12
11
  updateId?: import("vue3-toastify").Id | undefined;
13
12
  content?: import("vue3-toastify").Content;
@@ -33,6 +32,7 @@ declare const _default: import("#app").Plugin<{
33
32
  style?: Record<string, any> | undefined;
34
33
  progressClassName?: string | undefined;
35
34
  progressStyle?: Record<string, any> | undefined;
35
+ icon?: import("vue3-toastify").IconType | undefined;
36
36
  contentProps?: Record<string, any> | undefined;
37
37
  expandCustomProps?: boolean | undefined;
38
38
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -42,7 +42,6 @@ declare const _default: import("#app").Plugin<{
42
42
  rtl?: boolean | undefined;
43
43
  data?: {} | undefined;
44
44
  role?: string | undefined;
45
- icon?: import("vue3-toastify").IconType | undefined;
46
45
  toastId?: import("vue3-toastify").Id | undefined;
47
46
  updateId?: import("vue3-toastify").Id | undefined;
48
47
  content?: import("vue3-toastify").Content;
@@ -68,6 +67,7 @@ declare const _default: import("#app").Plugin<{
68
67
  style?: Record<string, any> | undefined;
69
68
  progressClassName?: string | undefined;
70
69
  progressStyle?: Record<string, any> | undefined;
70
+ icon?: import("vue3-toastify").IconType | undefined;
71
71
  contentProps?: Record<string, any> | undefined;
72
72
  expandCustomProps?: boolean | undefined;
73
73
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -77,7 +77,6 @@ declare const _default: import("#app").Plugin<{
77
77
  rtl?: boolean | undefined;
78
78
  data?: {} | undefined;
79
79
  role?: string | undefined;
80
- icon?: import("vue3-toastify").IconType | undefined;
81
80
  toastId?: import("vue3-toastify").Id | undefined;
82
81
  updateId?: import("vue3-toastify").Id | undefined;
83
82
  content?: import("vue3-toastify").Content;
@@ -103,6 +102,7 @@ declare const _default: import("#app").Plugin<{
103
102
  style?: Record<string, any> | undefined;
104
103
  progressClassName?: string | undefined;
105
104
  progressStyle?: Record<string, any> | undefined;
105
+ icon?: import("vue3-toastify").IconType | undefined;
106
106
  contentProps?: Record<string, any> | undefined;
107
107
  expandCustomProps?: boolean | undefined;
108
108
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -112,7 +112,6 @@ declare const _default: import("#app").Plugin<{
112
112
  rtl?: boolean | undefined;
113
113
  data?: {} | undefined;
114
114
  role?: string | undefined;
115
- icon?: import("vue3-toastify").IconType | undefined;
116
115
  toastId?: import("vue3-toastify").Id | undefined;
117
116
  updateId?: import("vue3-toastify").Id | undefined;
118
117
  content?: import("vue3-toastify").Content;
@@ -138,6 +137,7 @@ declare const _default: import("#app").Plugin<{
138
137
  style?: Record<string, any> | undefined;
139
138
  progressClassName?: string | undefined;
140
139
  progressStyle?: Record<string, any> | undefined;
140
+ icon?: import("vue3-toastify").IconType | undefined;
141
141
  contentProps?: Record<string, any> | undefined;
142
142
  expandCustomProps?: boolean | undefined;
143
143
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -147,7 +147,6 @@ declare const _default: import("#app").Plugin<{
147
147
  rtl?: boolean | undefined;
148
148
  data?: {} | undefined;
149
149
  role?: string | undefined;
150
- icon?: import("vue3-toastify").IconType | undefined;
151
150
  toastId?: import("vue3-toastify").Id | undefined;
152
151
  updateId?: import("vue3-toastify").Id | undefined;
153
152
  content?: import("vue3-toastify").Content;
@@ -173,6 +172,7 @@ declare const _default: import("#app").Plugin<{
173
172
  style?: Record<string, any> | undefined;
174
173
  progressClassName?: string | undefined;
175
174
  progressStyle?: Record<string, any> | undefined;
175
+ icon?: import("vue3-toastify").IconType | undefined;
176
176
  contentProps?: Record<string, any> | undefined;
177
177
  expandCustomProps?: boolean | undefined;
178
178
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -183,7 +183,6 @@ declare const _default: import("#app").Plugin<{
183
183
  type?: import("vue3-toastify").ToastType | undefined;
184
184
  data?: {} | undefined;
185
185
  role?: string | undefined;
186
- icon?: import("vue3-toastify").IconType | undefined;
187
186
  disabledEnterTransition?: boolean | undefined;
188
187
  toastId?: import("vue3-toastify").Id | undefined;
189
188
  updateId?: import("vue3-toastify").Id | undefined;
@@ -209,6 +208,7 @@ declare const _default: import("#app").Plugin<{
209
208
  style?: Record<string, any> | undefined;
210
209
  progressClassName?: string | undefined;
211
210
  progressStyle?: Record<string, any> | undefined;
211
+ icon?: import("vue3-toastify").IconType | undefined;
212
212
  contentProps?: Record<string, any> | undefined;
213
213
  expandCustomProps?: boolean | undefined;
214
214
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -218,7 +218,6 @@ declare const _default: import("#app").Plugin<{
218
218
  type?: import("vue3-toastify").ToastType | undefined;
219
219
  data?: {} | undefined;
220
220
  role?: string | undefined;
221
- icon?: import("vue3-toastify").IconType | undefined;
222
221
  disabledEnterTransition?: boolean | undefined;
223
222
  toastId?: import("vue3-toastify").Id | undefined;
224
223
  updateId?: import("vue3-toastify").Id | undefined;
@@ -245,6 +244,7 @@ declare const _default: import("#app").Plugin<{
245
244
  style?: Record<string, any> | undefined;
246
245
  progressClassName?: string | undefined;
247
246
  progressStyle?: Record<string, any> | undefined;
247
+ icon?: import("vue3-toastify").IconType | undefined;
248
248
  contentProps?: Record<string, any> | undefined;
249
249
  expandCustomProps?: boolean | undefined;
250
250
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -260,7 +260,6 @@ declare const _default: import("#app").Plugin<{
260
260
  type?: import("vue3-toastify").ToastType | undefined;
261
261
  data?: {} | undefined;
262
262
  role?: string | undefined;
263
- icon?: import("vue3-toastify").IconType | undefined;
264
263
  disabledEnterTransition?: boolean | undefined;
265
264
  toastId?: import("vue3-toastify").Id | undefined;
266
265
  updateId?: import("vue3-toastify").Id | undefined;
@@ -286,6 +285,7 @@ declare const _default: import("#app").Plugin<{
286
285
  style?: Record<string, any> | undefined;
287
286
  progressClassName?: string | undefined;
288
287
  progressStyle?: Record<string, any> | undefined;
288
+ icon?: import("vue3-toastify").IconType | undefined;
289
289
  contentProps?: Record<string, any> | undefined;
290
290
  expandCustomProps?: boolean | undefined;
291
291
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -327,7 +327,6 @@ declare const _default: import("#app").Plugin<{
327
327
  rtl?: boolean | undefined;
328
328
  data?: {} | undefined;
329
329
  role?: string | undefined;
330
- icon?: import("vue3-toastify").IconType | undefined;
331
330
  toastId?: import("vue3-toastify").Id | undefined;
332
331
  updateId?: import("vue3-toastify").Id | undefined;
333
332
  content?: import("vue3-toastify").Content;
@@ -353,6 +352,7 @@ declare const _default: import("#app").Plugin<{
353
352
  style?: Record<string, any> | undefined;
354
353
  progressClassName?: string | undefined;
355
354
  progressStyle?: Record<string, any> | undefined;
355
+ icon?: import("vue3-toastify").IconType | undefined;
356
356
  contentProps?: Record<string, any> | undefined;
357
357
  expandCustomProps?: boolean | undefined;
358
358
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -362,7 +362,6 @@ declare const _default: import("#app").Plugin<{
362
362
  rtl?: boolean | undefined;
363
363
  data?: {} | undefined;
364
364
  role?: string | undefined;
365
- icon?: import("vue3-toastify").IconType | undefined;
366
365
  toastId?: import("vue3-toastify").Id | undefined;
367
366
  updateId?: import("vue3-toastify").Id | undefined;
368
367
  content?: import("vue3-toastify").Content;
@@ -388,6 +387,7 @@ declare const _default: import("#app").Plugin<{
388
387
  style?: Record<string, any> | undefined;
389
388
  progressClassName?: string | undefined;
390
389
  progressStyle?: Record<string, any> | undefined;
390
+ icon?: import("vue3-toastify").IconType | undefined;
391
391
  contentProps?: Record<string, any> | undefined;
392
392
  expandCustomProps?: boolean | undefined;
393
393
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -397,7 +397,6 @@ declare const _default: import("#app").Plugin<{
397
397
  rtl?: boolean | undefined;
398
398
  data?: {} | undefined;
399
399
  role?: string | undefined;
400
- icon?: import("vue3-toastify").IconType | undefined;
401
400
  toastId?: import("vue3-toastify").Id | undefined;
402
401
  updateId?: import("vue3-toastify").Id | undefined;
403
402
  content?: import("vue3-toastify").Content;
@@ -423,6 +422,7 @@ declare const _default: import("#app").Plugin<{
423
422
  style?: Record<string, any> | undefined;
424
423
  progressClassName?: string | undefined;
425
424
  progressStyle?: Record<string, any> | undefined;
425
+ icon?: import("vue3-toastify").IconType | undefined;
426
426
  contentProps?: Record<string, any> | undefined;
427
427
  expandCustomProps?: boolean | undefined;
428
428
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -432,7 +432,6 @@ declare const _default: import("#app").Plugin<{
432
432
  rtl?: boolean | undefined;
433
433
  data?: {} | undefined;
434
434
  role?: string | undefined;
435
- icon?: import("vue3-toastify").IconType | undefined;
436
435
  toastId?: import("vue3-toastify").Id | undefined;
437
436
  updateId?: import("vue3-toastify").Id | undefined;
438
437
  content?: import("vue3-toastify").Content;
@@ -458,6 +457,7 @@ declare const _default: import("#app").Plugin<{
458
457
  style?: Record<string, any> | undefined;
459
458
  progressClassName?: string | undefined;
460
459
  progressStyle?: Record<string, any> | undefined;
460
+ icon?: import("vue3-toastify").IconType | undefined;
461
461
  contentProps?: Record<string, any> | undefined;
462
462
  expandCustomProps?: boolean | undefined;
463
463
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -467,7 +467,6 @@ declare const _default: import("#app").Plugin<{
467
467
  rtl?: boolean | undefined;
468
468
  data?: {} | undefined;
469
469
  role?: string | undefined;
470
- icon?: import("vue3-toastify").IconType | undefined;
471
470
  toastId?: import("vue3-toastify").Id | undefined;
472
471
  updateId?: import("vue3-toastify").Id | undefined;
473
472
  content?: import("vue3-toastify").Content;
@@ -493,6 +492,7 @@ declare const _default: import("#app").Plugin<{
493
492
  style?: Record<string, any> | undefined;
494
493
  progressClassName?: string | undefined;
495
494
  progressStyle?: Record<string, any> | undefined;
495
+ icon?: import("vue3-toastify").IconType | undefined;
496
496
  contentProps?: Record<string, any> | undefined;
497
497
  expandCustomProps?: boolean | undefined;
498
498
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -503,7 +503,6 @@ declare const _default: import("#app").Plugin<{
503
503
  type?: import("vue3-toastify").ToastType | undefined;
504
504
  data?: {} | undefined;
505
505
  role?: string | undefined;
506
- icon?: import("vue3-toastify").IconType | undefined;
507
506
  disabledEnterTransition?: boolean | undefined;
508
507
  toastId?: import("vue3-toastify").Id | undefined;
509
508
  updateId?: import("vue3-toastify").Id | undefined;
@@ -529,6 +528,7 @@ declare const _default: import("#app").Plugin<{
529
528
  style?: Record<string, any> | undefined;
530
529
  progressClassName?: string | undefined;
531
530
  progressStyle?: Record<string, any> | undefined;
531
+ icon?: import("vue3-toastify").IconType | undefined;
532
532
  contentProps?: Record<string, any> | undefined;
533
533
  expandCustomProps?: boolean | undefined;
534
534
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -538,7 +538,6 @@ declare const _default: import("#app").Plugin<{
538
538
  type?: import("vue3-toastify").ToastType | undefined;
539
539
  data?: {} | undefined;
540
540
  role?: string | undefined;
541
- icon?: import("vue3-toastify").IconType | undefined;
542
541
  disabledEnterTransition?: boolean | undefined;
543
542
  toastId?: import("vue3-toastify").Id | undefined;
544
543
  updateId?: import("vue3-toastify").Id | undefined;
@@ -565,6 +564,7 @@ declare const _default: import("#app").Plugin<{
565
564
  style?: Record<string, any> | undefined;
566
565
  progressClassName?: string | undefined;
567
566
  progressStyle?: Record<string, any> | undefined;
567
+ icon?: import("vue3-toastify").IconType | undefined;
568
568
  contentProps?: Record<string, any> | undefined;
569
569
  expandCustomProps?: boolean | undefined;
570
570
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;
@@ -580,7 +580,6 @@ declare const _default: import("#app").Plugin<{
580
580
  type?: import("vue3-toastify").ToastType | undefined;
581
581
  data?: {} | undefined;
582
582
  role?: string | undefined;
583
- icon?: import("vue3-toastify").IconType | undefined;
584
583
  disabledEnterTransition?: boolean | undefined;
585
584
  toastId?: import("vue3-toastify").Id | undefined;
586
585
  updateId?: import("vue3-toastify").Id | undefined;
@@ -606,6 +605,7 @@ declare const _default: import("#app").Plugin<{
606
605
  style?: Record<string, any> | undefined;
607
606
  progressClassName?: string | undefined;
608
607
  progressStyle?: Record<string, any> | undefined;
608
+ icon?: import("vue3-toastify").IconType | undefined;
609
609
  contentProps?: Record<string, any> | undefined;
610
610
  expandCustomProps?: boolean | undefined;
611
611
  useHandler?: ((app: import("vue").App<Element>) => void) | undefined;