Skip to content

Commit

Permalink
3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kyvg committed Feb 4, 2024
1 parent a49002b commit 98511e9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export declare const Notifications: DefineComponent<{
default: () => string[];
};
classes: {
type: StringConstructor;
type: PropType<string | string[]>;
default: string;
};
animationType: {
Expand Down Expand Up @@ -123,7 +123,7 @@ export declare const Notifications: DefineComponent<{
default: () => string[];
};
classes: {
type: StringConstructor;
type: PropType<string | string[]>;
default: string;
};
animationType: {
Expand Down Expand Up @@ -195,7 +195,7 @@ export declare const Notifications: DefineComponent<{
reverse: boolean;
width: string | number;
position: string | string[];
classes: string;
classes: string | string[];
animationType: "css" | "velocity";
animation: Record<"enter" | "leave", unknown>;
animationName: string;
Expand Down
6 changes: 3 additions & 3 deletions dist/index.es.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function(){"use strict";var o;try{if(typeof document<"u"){var e=document.createElement("style");e.nonce=(o=document.head.querySelector("meta[property=csp-nonce]"))==null?void 0:o.content,e.appendChild(document.createTextNode(".vue-notification-group{display:block;position:fixed;z-index:5000}.vue-notification-wrapper{display:block;overflow:hidden;width:100%;margin:0;padding:0}.notification-title{font-weight:600}.vue-notification-template{display:block;box-sizing:border-box;background:#fff;text-align:left}.vue-notification{display:block;box-sizing:border-box;text-align:left;font-size:12px;padding:10px;margin:0 5px 5px;color:#fff;background:#44a4fc;border-left:5px solid #187FE7}.vue-notification.warn{background:#ffb648;border-left-color:#f48a06}.vue-notification.error{background:#e54d42;border-left-color:#b82e24}.vue-notification.success{background:#68cd86;border-left-color:#42a85f}.vn-fade-enter-active,.vn-fade-leave-active,.vn-fade-move{transition:all .5s}.vn-fade-enter-from,.vn-fade-leave-to{opacity:0}")),document.head.appendChild(e)}}catch(n){console.error("vite-plugin-css-injected-by-js",n)}})();
(function(){var o;"use strict";try{if(typeof document<"u"){var e=document.createElement("style");e.nonce=(o=document.head.querySelector("meta[property=csp-nonce]"))==null?void 0:o.content,e.appendChild(document.createTextNode(".vue-notification-group{display:block;position:fixed;z-index:5000}.vue-notification-wrapper{display:block;overflow:hidden;width:100%;margin:0;padding:0}.notification-title{font-weight:600}.vue-notification-template{display:block;box-sizing:border-box;background:white;text-align:left}.vue-notification{display:block;box-sizing:border-box;text-align:left;font-size:12px;padding:10px;margin:0 5px 5px;color:#fff;background:#44A4FC;border-left:5px solid #187FE7}.vue-notification.warn{background:#ffb648;border-left-color:#f48a06}.vue-notification.error{background:#E54D42;border-left-color:#b82e24}.vue-notification.success{background:#68CD86;border-left-color:#42a85f}.vn-fade-enter-active,.vn-fade-leave-active,.vn-fade-move{transition:all .5s}.vn-fade-enter-from,.vn-fade-leave-to{opacity:0}")),document.head.appendChild(e)}}catch(i){console.error("vite-plugin-css-injected-by-js",i)}})();
import { defineComponent as D, createVNode as l, TransitionGroup as H, ref as $, computed as g, onMounted as et, Fragment as C, isVNode as nt } from "vue";
const R = /* @__PURE__ */ new Map();
class it {
Expand Down Expand Up @@ -75,7 +75,7 @@ const b = ot(), T = "[-+]?[0-9]*.?[0-9]+", M = [
}, k = {
x: /* @__PURE__ */ new Set(["left", "center", "right"]),
y: /* @__PURE__ */ new Set(["top", "bottom"])
}, st = /* @__PURE__ */ ((t) => () => t++)(0), lt = (t) => typeof t != "string" ? [] : t.split(/\s+/gi).filter(Boolean), ct = (t) => {
}, st = ((t) => () => t++)(0), lt = (t) => typeof t != "string" ? [] : t.split(/\s+/gi).filter(Boolean), ct = (t) => {
typeof t == "string" && (t = lt(t));
let n = null, o = null;
return t.forEach((a) => {
Expand Down Expand Up @@ -187,7 +187,7 @@ const x = {
default: () => E.position
},
classes: {
type: String,
type: [String, Array],
default: "vue-notification"
},
animationType: {
Expand Down
4 changes: 2 additions & 2 deletions dist/index.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 98511e9

Please sign in to comment.