vue-act-master 2.3.8 → 2.3.9

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.
@@ -49,7 +49,7 @@ let O = class extends Error {
49
49
  super(`"di" can't be array`);
50
50
  }
51
51
  };
52
- const j = "2.3.8", k = (r) => {
52
+ const j = "2.3.9", k = (r) => {
53
53
  r.watch && !r.$watch && (r.$watch = r.watch), r.isSingleExec && typeof r.$isSingleton != "boolean" && (r.$isSingleton = r.isSingleExec), typeof r.validateInput == "function" && !r.$validate && (r.$validate = r.validateInput.bind(r)), r.errorHandlerEventName && !r.$onError && (r.$onError = r.errorHandlerEventName);
54
54
  }, A = class d {
55
55
  constructor(t = {}) {
@@ -1 +1 @@
1
- (function(n,h){typeof exports=="object"&&typeof module<"u"?h(exports):typeof define=="function"&&define.amd?define(["exports"],h):(n=typeof globalThis<"u"?globalThis:n||self,h(n["vue-act-master"]={}))})(this,function(n){"use strict";var G=Object.defineProperty;var J=(n,h,_)=>h in n?G(n,h,{enumerable:!0,configurable:!0,writable:!0,value:_}):n[h]=_;var P=(n,h,_)=>(J(n,typeof h!="symbol"?h+"":h,_),_);var h=Object.defineProperty,_=(r,t,e)=>t in r?h(r,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):r[t]=e,o=(r,t,e)=>(_(r,typeof t!="symbol"?t+"":t,e),e);let v=class D{constructor(t,e){if(o(this,"reason",""),o(this,"data"),typeof t=="string"){this.reason=t,this.data=e;return}if(t&&typeof t=="object")return Object.assign(t,{_name:this._name,reason:t.message||""})}static get _name(){return"__CancelledAct__"}get _name(){return D._name}static is(t){return!t||typeof t!="object"?!1:t._name===D._name}valueOf(){return null}toString(){return this.reason}};class I extends Error{constructor(t){super(`Can't find "${t}" action`),this.eventName=t}}class p extends Error{constructor(t){super(`Action "${t}" already existing`),this.eventName=t}}let M=class extends Error{constructor(t){super(`"${t}" already exists in DI`),this.key=t}},N=class extends Error{constructor(){super(`"di" can't be array`)}};const x="2.3.8",k=r=>{r.watch&&!r.$watch&&(r.$watch=r.watch),r.isSingleExec&&typeof r.$isSingleton!="boolean"&&(r.$isSingleton=r.isSingleExec),typeof r.validateInput=="function"&&!r.$validate&&(r.$validate=r.validateInput.bind(r)),r.errorHandlerEventName&&!r.$onError&&(r.$onError=r.errorHandlerEventName)},C=class E{constructor(t={}){if(o(this,"version",x),o(this,"_actions",new Map),o(this,"_watchers",new Map),o(this,"_listeners",new Map),o(this,"_inProgressWatchers",new Map),o(this,"_subCurrentName",""),o(this,"_subsMap",new Map),o(this,"_lastUnsubscribe",()=>!1),o(this,"_DIContainer",{}),o(this,"_singlePromisesStore",new Map),o(this,"config",{errorOnReplaceDI:!1,autoUnsubscribeCallback:void 0,errorHandlerEventName:void 0}),o(this,"exec",async(c,...g)=>{if(this.setProgress(c,!0),this._singlePromisesStore.has(c)){const $=this._singlePromisesStore.get(c);if($)return $}const f=this.emit(c,...g).catch($=>this.catchEmitException($,c)).finally(()=>{this._singlePromisesStore.has(c)&&this._singlePromisesStore.delete(c),this.setProgress(c,!1)}),b=this.getActionOrNull(c);return b&&b.$isSingleton&&this._singlePromisesStore.set(c,f),f}),o(this,"subscribe",(c,g,f)=>{this._listeners.set(c,[...this._listeners.get(c)||[],g]);const b=()=>this.unsubscribe(c,g);return this._lastUnsubscribe=b,this.config.autoUnsubscribeCallback&&this.config.autoUnsubscribeCallback({context:f,listener:g,eventName:c}),f?typeof f=="function"?f(b):this.subsList.add(f,b):this._subCurrentName&&this.subsList.add(this._subCurrentName,b),b}),o(this,"once",(c,g)=>{const f=this.subscribe(c,(...b)=>{f(),g(...b)});return f}),o(this,"on",(c,g,f)=>this.subscribe(c,g,f)),E.instance)return E.instance;const{actions:e,di:s,errorOnReplaceDI:i,autoUnsubscribeCallback:l,errorHandlerEventName:d}=t;if(e&&this.addActions(e),typeof l=="function"&&(this.config.autoUnsubscribeCallback=l),typeof s=="object"&&s){if(Array.isArray(s))throw new N;for(const c in s)Object.prototype.hasOwnProperty.call(s,c)&&this.setDI(c,s[c])}typeof i=="boolean"&&(this.config.errorOnReplaceDI=i),typeof d=="string"&&(this.config.errorHandlerEventName=d),E.instance=this}static getInstance(){if(!E.instance)throw new Error("ActMaster not initialized");return E.instance}addActions(t){Array.isArray(t)&&t.forEach(e=>{this.addAction(e)})}addAction(t){const e=t.name;if(this._actions.has(e))throw new p(e);if(t.useEmit){const s=(i,...l)=>this.exec(i,...l);t.useEmit(s)}return k(t),this._actions.set(e,t),this.emitDIProps(t),t.$watch&&t.$watch.forEach(s=>{const i=this._watchers.get(s)||[];i.push(e),this._watchers.set(s,i)}),this}removeAction(t){if(!this._actions.has(t))throw new I(t);this._actions.delete(t)}clearActions(){this._actions.clear()}clearListeners(){for(const t in this._listeners)this._listeners.has(t)&&this._listeners.delete(t)}async emit(t,...e){const s=this.getActionOrNull(t);if(s===null)throw new I(t);if(s.$validate){const i=await s.$validate(...e);if(i!==!0)return this.config.errorHandlerEventName&&this.emit(this.config.errorHandlerEventName,i),s.$onError&&this.emit(s.$onError,i),i}try{const i=await s.exec(...e);return i instanceof v||v.is(i)||this.notifyListeners(t,i),i}catch(i){return this.catchEmitException(i,t)}}catchEmitException(t,e){if(t instanceof I)throw t;const s=this.getActionOrNull(e);return s!=null&&s.$onError&&s.$onError!==e?(this.emit(s.$onError,t),Promise.resolve(null)):this.config.errorHandlerEventName&&this.config.errorHandlerEventName!==e?(this.emit(this.config.errorHandlerEventName,t),Promise.resolve(null)):Promise.reject(t)}notifyListeners(t,e){const s=this._listeners.get(t);if(s&&s.forEach(i=>{i(e)}),this._watchers.has(t))for(const i of this._watchers.get(t)||[])this.exec(i,e)}unsubscribe(t,e){const s=this._listeners.get(t);if(!s)return this._subsMap.set(t,[]),!1;const i=s.indexOf(e);return i>-1&&s.splice(i,1),this._listeners.set(t,s),i>-1}off(t,e){return this.unsubscribe(t,e)}inProgress(t,e){if(Array.isArray(t)){t.forEach(l=>this._inProgressWatchers.set(l,e));const i=()=>{t.forEach(l=>{this._inProgressWatchers.delete(l)})};return this._lastUnsubscribe=i,i}this._inProgressWatchers.set(t,e);const s=()=>this._inProgressWatchers.delete(t);return this._lastUnsubscribe=s,s}setProgress(t,e){this._inProgressWatchers.has(t)&&this._inProgressWatchers.get(t)(e)}get subsList(){const t=e=>{(this._subsMap.get(e)||[]).forEach(s=>s()),this._subsMap.delete(e)};return{add:(e,...s)=>{this._subCurrentName=e;const i=this._subsMap.get(e)||[];return s.length&&i.push(...s),this._subsMap.set(e,i),t},clear:t}}clearDI(){this._DIContainer={}}setDI(t,e){if(this.config.errorOnReplaceDI&&this._DIContainer[t])throw new M(t);return this._DIContainer[t]=e,this.freshEmitDI(),this}getDI(t){return this._DIContainer[t]}freshEmitDI(){let t;Object.keys(this._actions).forEach(e=>{t=this._actions.get(e),t&&this.emitDIProps(t)})}emitDIProps(t){t._DI_CONTAINER_||Object.defineProperty(t,"_DI_CONTAINER_",{get:()=>this._DIContainer,enumerable:!1}),t._DI_MAP_&&Object.keys(t._DI_MAP_).forEach(e=>{var s;if(t[e])return;const i=(s=t._DI_MAP_)==null?void 0:s[e];i&&Object.defineProperty(t,e,{get(){return this._DI_CONTAINER_[i]},enumerable:!0})}),t.useDI&&t.useDI(this._DIContainer)}getActionOrNull(t){return this._actions.get(t)||null}};o(C,"instance");let m=C;var R=Object.defineProperty,H=(r,t,e)=>t in r?R(r,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):r[t]=e,O=(r,t,e)=>(H(r,typeof t!="symbol"?t+"":t,e),e);function L(r){return function(t,e){const s=t;s._DI_MAP_||(s._DI_MAP_={}),s._DI_MAP_[e]=r}}function U(){return(r,t)=>{Object.defineProperty(r,"useEmit",{value:function(e){this[t]=e}})}}const w=class a{constructor(){}static getInstance(t={}){return a.resetAll(),a.removeSingleton(),a.$act=new m(t),a.$act}static setInstance(t){a.$act=t}static checkInstance(t){return a.$act===t}static resetAll(){a.$act&&(a.$act.clearActions(),a.$act.clearListeners(),a.$act.clearDI()),a._lastResult=void 0}static removeSingleton(){m.instance=void 0,a._lastResult=void 0}static addActions(t){a.$act.addActions(t)}static exec(t,...e){return a.$act.exec(t,...e).then(s=>(a._lastResult=s,s)).catch(s=>{throw a._lastResult=s,s})}static subscribe(t,e,s){return a.$act.subscribe(t,e,s)}static entityCount(t){if(t==="di")return Object.keys(a.$act._DIContainer).length;if(t==="actions")return a.$act._actions.size;const e={watchers:"_watchers",listeners:"_listeners"}[t];let s=0;return a.$act[e].forEach(i=>{s+=i.length}),s}static getLastResult(){return a._lastResult}static makeActionStub(t){return{name:`Act_${Math.random()}`,exec:()=>null,...t}}};O(w,"$act"),O(w,"_lastResult");let T=w;function y(){const r=m.getInstance();if(!r)throw new Error('Instance call before initialization. Make a "new ActMaster()" first');return r}y.init=r=>new m(r);const W=(r,t,e)=>{const s=y().subscribe(r,t);return e&&(typeof e=="function"?e(s):y().subsList.add(e,s)),s},z=r=>y().subsList.clear(r);y.subListClear=z;const S=r=>{if(typeof r!="function"||!r.name)throw new Error(`Pass not valid function: "${r}"`);return{name:r.name,exec:r}},F=S;function j(r){return(t,e,s)=>{const i=typeof t=="function"?t:t.constructor;i.__decorators__||(i.__decorators__=[]),typeof s!="number"&&(s=void 0),i.__decorators__.push(l=>r(l,e,s))}}function K(r,t,e=null){return j((s,i)=>{const l={created(){this.$act.subscribe(r,d=>{const c=q(d,t,e);typeof this[i]=="function"?this[i](c):this[i]=c},this)}};s.mixins?s.mixins=[...s.mixins,l]:s.mixins=[l]})}function q(r,t,e){if(r===void 0)return e;if(typeof t=="function")return t(r);let s=r;if(t){const i=(t||"").split(".");let l,d=0;for(d=0;d<i.length&&s;d++)l=i[d],s=s[l]}return s===void 0?e:s}function B(r){return j((t,e)=>{const s={created(){const i=this.$act.inProgress(r,l=>{this[e]=l});this.$once("hook:beforeDestroy",()=>{i(r)})}};t.mixins?t.mixins=[...t.mixins,s]:t.mixins=[s]})}const u=class u{static setActMaster(t){u.actMaster=t}constructor(t){u.actMaster=t||null}static install(t,e){var s;u.actMaster=u.actMaster||new m(e),(s=t.config)!=null&&s.globalProperties&&!t.config.globalProperties.$act?(t.config.globalProperties.$act=u.actMaster,t.provide("$act",u.actMaster)):Object.prototype.hasOwnProperty.call(t,"$act")||(t.act=u.actMaster,t.prototype.$act=u.actMaster)}install(t,e){u.install(t,e)}};P(u,"actMaster",null),P(u,"devtools",!1);let A=u;n.ActInProgress=B,n.ActMaster=m,n.ActSubscribe=K,n.ActTest=T,n.ActinonAlreadyExistingError=p,n.CancelledAct=v,n.Emit=U,n.InvalidDITypeError=N,n.KeyAlreadyExistsInDIError=M,n.NotFoundActionError=I,n.UseDI=L,n.VueActMaster=A,n.act=y,n.actSubscribe=W,n.fn2act=F,n.functionToAction=S,Object.defineProperty(n,Symbol.toStringTag,{value:"Module"})});
1
+ (function(n,h){typeof exports=="object"&&typeof module<"u"?h(exports):typeof define=="function"&&define.amd?define(["exports"],h):(n=typeof globalThis<"u"?globalThis:n||self,h(n["vue-act-master"]={}))})(this,function(n){"use strict";var G=Object.defineProperty;var J=(n,h,_)=>h in n?G(n,h,{enumerable:!0,configurable:!0,writable:!0,value:_}):n[h]=_;var P=(n,h,_)=>(J(n,typeof h!="symbol"?h+"":h,_),_);var h=Object.defineProperty,_=(r,t,e)=>t in r?h(r,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):r[t]=e,o=(r,t,e)=>(_(r,typeof t!="symbol"?t+"":t,e),e);let v=class D{constructor(t,e){if(o(this,"reason",""),o(this,"data"),typeof t=="string"){this.reason=t,this.data=e;return}if(t&&typeof t=="object")return Object.assign(t,{_name:this._name,reason:t.message||""})}static get _name(){return"__CancelledAct__"}get _name(){return D._name}static is(t){return!t||typeof t!="object"?!1:t._name===D._name}valueOf(){return null}toString(){return this.reason}};class I extends Error{constructor(t){super(`Can't find "${t}" action`),this.eventName=t}}class p extends Error{constructor(t){super(`Action "${t}" already existing`),this.eventName=t}}let M=class extends Error{constructor(t){super(`"${t}" already exists in DI`),this.key=t}},N=class extends Error{constructor(){super(`"di" can't be array`)}};const x="2.3.9",k=r=>{r.watch&&!r.$watch&&(r.$watch=r.watch),r.isSingleExec&&typeof r.$isSingleton!="boolean"&&(r.$isSingleton=r.isSingleExec),typeof r.validateInput=="function"&&!r.$validate&&(r.$validate=r.validateInput.bind(r)),r.errorHandlerEventName&&!r.$onError&&(r.$onError=r.errorHandlerEventName)},C=class E{constructor(t={}){if(o(this,"version",x),o(this,"_actions",new Map),o(this,"_watchers",new Map),o(this,"_listeners",new Map),o(this,"_inProgressWatchers",new Map),o(this,"_subCurrentName",""),o(this,"_subsMap",new Map),o(this,"_lastUnsubscribe",()=>!1),o(this,"_DIContainer",{}),o(this,"_singlePromisesStore",new Map),o(this,"config",{errorOnReplaceDI:!1,autoUnsubscribeCallback:void 0,errorHandlerEventName:void 0}),o(this,"exec",async(c,...g)=>{if(this.setProgress(c,!0),this._singlePromisesStore.has(c)){const $=this._singlePromisesStore.get(c);if($)return $}const f=this.emit(c,...g).catch($=>this.catchEmitException($,c)).finally(()=>{this._singlePromisesStore.has(c)&&this._singlePromisesStore.delete(c),this.setProgress(c,!1)}),b=this.getActionOrNull(c);return b&&b.$isSingleton&&this._singlePromisesStore.set(c,f),f}),o(this,"subscribe",(c,g,f)=>{this._listeners.set(c,[...this._listeners.get(c)||[],g]);const b=()=>this.unsubscribe(c,g);return this._lastUnsubscribe=b,this.config.autoUnsubscribeCallback&&this.config.autoUnsubscribeCallback({context:f,listener:g,eventName:c}),f?typeof f=="function"?f(b):this.subsList.add(f,b):this._subCurrentName&&this.subsList.add(this._subCurrentName,b),b}),o(this,"once",(c,g)=>{const f=this.subscribe(c,(...b)=>{f(),g(...b)});return f}),o(this,"on",(c,g,f)=>this.subscribe(c,g,f)),E.instance)return E.instance;const{actions:e,di:s,errorOnReplaceDI:i,autoUnsubscribeCallback:l,errorHandlerEventName:d}=t;if(e&&this.addActions(e),typeof l=="function"&&(this.config.autoUnsubscribeCallback=l),typeof s=="object"&&s){if(Array.isArray(s))throw new N;for(const c in s)Object.prototype.hasOwnProperty.call(s,c)&&this.setDI(c,s[c])}typeof i=="boolean"&&(this.config.errorOnReplaceDI=i),typeof d=="string"&&(this.config.errorHandlerEventName=d),E.instance=this}static getInstance(){if(!E.instance)throw new Error("ActMaster not initialized");return E.instance}addActions(t){Array.isArray(t)&&t.forEach(e=>{this.addAction(e)})}addAction(t){const e=t.name;if(this._actions.has(e))throw new p(e);if(t.useEmit){const s=(i,...l)=>this.exec(i,...l);t.useEmit(s)}return k(t),this._actions.set(e,t),this.emitDIProps(t),t.$watch&&t.$watch.forEach(s=>{const i=this._watchers.get(s)||[];i.push(e),this._watchers.set(s,i)}),this}removeAction(t){if(!this._actions.has(t))throw new I(t);this._actions.delete(t)}clearActions(){this._actions.clear()}clearListeners(){for(const t in this._listeners)this._listeners.has(t)&&this._listeners.delete(t)}async emit(t,...e){const s=this.getActionOrNull(t);if(s===null)throw new I(t);if(s.$validate){const i=await s.$validate(...e);if(i!==!0)return this.config.errorHandlerEventName&&this.emit(this.config.errorHandlerEventName,i),s.$onError&&this.emit(s.$onError,i),i}try{const i=await s.exec(...e);return i instanceof v||v.is(i)||this.notifyListeners(t,i),i}catch(i){return this.catchEmitException(i,t)}}catchEmitException(t,e){if(t instanceof I)throw t;const s=this.getActionOrNull(e);return s!=null&&s.$onError&&s.$onError!==e?(this.emit(s.$onError,t),Promise.resolve(null)):this.config.errorHandlerEventName&&this.config.errorHandlerEventName!==e?(this.emit(this.config.errorHandlerEventName,t),Promise.resolve(null)):Promise.reject(t)}notifyListeners(t,e){const s=this._listeners.get(t);if(s&&s.forEach(i=>{i(e)}),this._watchers.has(t))for(const i of this._watchers.get(t)||[])this.exec(i,e)}unsubscribe(t,e){const s=this._listeners.get(t);if(!s)return this._subsMap.set(t,[]),!1;const i=s.indexOf(e);return i>-1&&s.splice(i,1),this._listeners.set(t,s),i>-1}off(t,e){return this.unsubscribe(t,e)}inProgress(t,e){if(Array.isArray(t)){t.forEach(l=>this._inProgressWatchers.set(l,e));const i=()=>{t.forEach(l=>{this._inProgressWatchers.delete(l)})};return this._lastUnsubscribe=i,i}this._inProgressWatchers.set(t,e);const s=()=>this._inProgressWatchers.delete(t);return this._lastUnsubscribe=s,s}setProgress(t,e){this._inProgressWatchers.has(t)&&this._inProgressWatchers.get(t)(e)}get subsList(){const t=e=>{(this._subsMap.get(e)||[]).forEach(s=>s()),this._subsMap.delete(e)};return{add:(e,...s)=>{this._subCurrentName=e;const i=this._subsMap.get(e)||[];return s.length&&i.push(...s),this._subsMap.set(e,i),t},clear:t}}clearDI(){this._DIContainer={}}setDI(t,e){if(this.config.errorOnReplaceDI&&this._DIContainer[t])throw new M(t);return this._DIContainer[t]=e,this.freshEmitDI(),this}getDI(t){return this._DIContainer[t]}freshEmitDI(){let t;Object.keys(this._actions).forEach(e=>{t=this._actions.get(e),t&&this.emitDIProps(t)})}emitDIProps(t){t._DI_CONTAINER_||Object.defineProperty(t,"_DI_CONTAINER_",{get:()=>this._DIContainer,enumerable:!1}),t._DI_MAP_&&Object.keys(t._DI_MAP_).forEach(e=>{var s;if(t[e])return;const i=(s=t._DI_MAP_)==null?void 0:s[e];i&&Object.defineProperty(t,e,{get(){return this._DI_CONTAINER_[i]},enumerable:!0})}),t.useDI&&t.useDI(this._DIContainer)}getActionOrNull(t){return this._actions.get(t)||null}};o(C,"instance");let m=C;var R=Object.defineProperty,H=(r,t,e)=>t in r?R(r,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):r[t]=e,O=(r,t,e)=>(H(r,typeof t!="symbol"?t+"":t,e),e);function L(r){return function(t,e){const s=t;s._DI_MAP_||(s._DI_MAP_={}),s._DI_MAP_[e]=r}}function U(){return(r,t)=>{Object.defineProperty(r,"useEmit",{value:function(e){this[t]=e}})}}const w=class a{constructor(){}static getInstance(t={}){return a.resetAll(),a.removeSingleton(),a.$act=new m(t),a.$act}static setInstance(t){a.$act=t}static checkInstance(t){return a.$act===t}static resetAll(){a.$act&&(a.$act.clearActions(),a.$act.clearListeners(),a.$act.clearDI()),a._lastResult=void 0}static removeSingleton(){m.instance=void 0,a._lastResult=void 0}static addActions(t){a.$act.addActions(t)}static exec(t,...e){return a.$act.exec(t,...e).then(s=>(a._lastResult=s,s)).catch(s=>{throw a._lastResult=s,s})}static subscribe(t,e,s){return a.$act.subscribe(t,e,s)}static entityCount(t){if(t==="di")return Object.keys(a.$act._DIContainer).length;if(t==="actions")return a.$act._actions.size;const e={watchers:"_watchers",listeners:"_listeners"}[t];let s=0;return a.$act[e].forEach(i=>{s+=i.length}),s}static getLastResult(){return a._lastResult}static makeActionStub(t){return{name:`Act_${Math.random()}`,exec:()=>null,...t}}};O(w,"$act"),O(w,"_lastResult");let T=w;function y(){const r=m.getInstance();if(!r)throw new Error('Instance call before initialization. Make a "new ActMaster()" first');return r}y.init=r=>new m(r);const W=(r,t,e)=>{const s=y().subscribe(r,t);return e&&(typeof e=="function"?e(s):y().subsList.add(e,s)),s},z=r=>y().subsList.clear(r);y.subListClear=z;const S=r=>{if(typeof r!="function"||!r.name)throw new Error(`Pass not valid function: "${r}"`);return{name:r.name,exec:r}},F=S;function j(r){return(t,e,s)=>{const i=typeof t=="function"?t:t.constructor;i.__decorators__||(i.__decorators__=[]),typeof s!="number"&&(s=void 0),i.__decorators__.push(l=>r(l,e,s))}}function K(r,t,e=null){return j((s,i)=>{const l={created(){this.$act.subscribe(r,d=>{const c=q(d,t,e);typeof this[i]=="function"?this[i](c):this[i]=c},this)}};s.mixins?s.mixins=[...s.mixins,l]:s.mixins=[l]})}function q(r,t,e){if(r===void 0)return e;if(typeof t=="function")return t(r);let s=r;if(t){const i=(t||"").split(".");let l,d=0;for(d=0;d<i.length&&s;d++)l=i[d],s=s[l]}return s===void 0?e:s}function B(r){return j((t,e)=>{const s={created(){const i=this.$act.inProgress(r,l=>{this[e]=l});this.$once("hook:beforeDestroy",()=>{i(r)})}};t.mixins?t.mixins=[...t.mixins,s]:t.mixins=[s]})}const u=class u{static setActMaster(t){u.actMaster=t}constructor(t){u.actMaster=t||null}static install(t,e){var s;u.actMaster=u.actMaster||new m(e),(s=t.config)!=null&&s.globalProperties&&!t.config.globalProperties.$act?(t.config.globalProperties.$act=u.actMaster,t.provide("$act",u.actMaster)):Object.prototype.hasOwnProperty.call(t,"$act")||(t.act=u.actMaster,t.prototype.$act=u.actMaster)}install(t,e){u.install(t,e)}};P(u,"actMaster",null),P(u,"devtools",!1);let A=u;n.ActInProgress=B,n.ActMaster=m,n.ActSubscribe=K,n.ActTest=T,n.ActinonAlreadyExistingError=p,n.CancelledAct=v,n.Emit=U,n.InvalidDITypeError=N,n.KeyAlreadyExistsInDIError=M,n.NotFoundActionError=I,n.UseDI=L,n.VueActMaster=A,n.act=y,n.actSubscribe=W,n.fn2act=F,n.functionToAction=S,Object.defineProperty(n,Symbol.toStringTag,{value:"Module"})});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-act-master",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "description": "",
5
5
  "author": "avil13",
6
6
  "main": "dist/vue-act-master.umd.cjs",
@@ -59,9 +59,9 @@
59
59
  },
60
60
  "devDependencies": {
61
61
  "@babel/types": "^7.23.5",
62
- "typescript": "^5.3.2",
63
- "vite": "^4.5.0",
64
- "vitest": "^0.31.4",
62
+ "typescript": "^5.3.3",
63
+ "vite": "^5.1.4",
64
+ "vitest": "^1.3.1",
65
65
  "vue": "*"
66
66
  }
67
67
  }
package/CHANGELOG.md DELETED
@@ -1,429 +0,0 @@
1
- ### Changelog
2
-
3
- All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
-
5
- Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
-
7
- #### [v1.11.5](https://github.com/avil13/vue-act-master/compare/v1.11.1...v1.11.5)
8
-
9
- > 20 May 2022
10
-
11
- - feat(act-master-cli): updated tests & added interfacePrefix [`c5a8367`](https://github.com/avil13/vue-act-master/commit/c5a8367fcbdd4617adbda146d953ebf73cb5f8ab)
12
- - feat(act-master-cli): added cli utility for creating action interface [`5391f50`](https://github.com/avil13/vue-act-master/commit/5391f50cd56cb0cb7fe91244ea68f67bf186046d)
13
- - wip [`1c3fd24`](https://github.com/avil13/vue-act-master/commit/1c3fd24b4b558dd0df9c422cd25d5be6b78258eb)
14
-
15
- #### [v1.11.1](https://github.com/avil13/vue-act-master/compare/v1.11.0...v1.11.1)
16
-
17
- > 29 March 2022
18
-
19
- - chore: changelog [`1157982`](https://github.com/avil13/vue-act-master/commit/115798267eecde7a3f241257e0814f75ad57fa2a)
20
- - fix: fixed ActName global event type [`9378779`](https://github.com/avil13/vue-act-master/commit/93787793c3134fa4472f4a6e620425cda8c65778)
21
-
22
- #### [v1.11.0](https://github.com/avil13/vue-act-master/compare/v1.10.8...v1.11.0)
23
-
24
- > 22 March 2022
25
-
26
- - feat: change act help function types [`e234b71`](https://github.com/avil13/vue-act-master/commit/e234b71da77a542f700ef3aa9fcb872354ec887a)
27
-
28
- #### [v1.10.8](https://github.com/avil13/vue-act-master/compare/v1.10.7...v1.10.8)
29
-
30
- > 10 March 2022
31
-
32
- - feat: CancelledAct wrapp error in ActMaster.exec [`ff0bc4d`](https://github.com/avil13/vue-act-master/commit/ff0bc4de2783018e5a11e91684f777c1b68399e2)
33
-
34
- #### [v1.10.7](https://github.com/avil13/vue-act-master/compare/v1.10.5...v1.10.7)
35
-
36
- > 10 March 2022
37
-
38
- - feat: changes the type of the returned object from the exec method [`c1437b4`](https://github.com/avil13/vue-act-master/commit/c1437b4cf73f9d2a212fb64f9abf424a15e3a91c)
39
- - feat: add extend object with CancelledAct [`c8911d8`](https://github.com/avil13/vue-act-master/commit/c8911d8f2eae298e7e47e81e731330b88b1ac936)
40
-
41
- #### [v1.10.5](https://github.com/avil13/vue-act-master/compare/v1.10.4...v1.10.5)
42
-
43
- > 3 March 2022
44
-
45
- - build(deps): bump prismjs from 1.25.0 to 1.27.0 [`#28`](https://github.com/avil13/vue-act-master/pull/28)
46
- - build(deps): bump nanoid from 3.1.30 to 3.2.0 [`#27`](https://github.com/avil13/vue-act-master/pull/27)
47
- - chore: remove Jest add Vitest [`d777b9c`](https://github.com/avil13/vue-act-master/commit/d777b9c0772b2a6050a3f684b9f560383536931e)
48
- - chore: remove unused deps [`2da37d6`](https://github.com/avil13/vue-act-master/commit/2da37d6804f30b34ab7c7fd4ab4e926a848f4b18)
49
- - chore: remove commitizen [`540df34`](https://github.com/avil13/vue-act-master/commit/540df3477c2a3880a3fc26ea9ba28f63d943aa4a)
50
-
51
- #### [v1.10.4](https://github.com/avil13/vue-act-master/compare/v1.10.3...v1.10.4)
52
-
53
- > 12 December 2021
54
-
55
- - fix(act-master): fixed wait removerd types [`be2e48e`](https://github.com/avil13/vue-act-master/commit/be2e48e0259ef2f332fa11b70eac8adec75dd43a)
56
-
57
- #### [v1.10.3](https://github.com/avil13/vue-act-master/compare/v1.10.2...v1.10.3)
58
-
59
- > 10 December 2021
60
-
61
- - fix(act-master): act.subscribe - fixed unsubscribe param [`e571892`](https://github.com/avil13/vue-act-master/commit/e5718925fd0efdc9e4dec4241d7ec4aa89fc14e2)
62
-
63
- #### [v1.10.2](https://github.com/avil13/vue-act-master/compare/v1.10.1...v1.10.2)
64
-
65
- > 10 December 2021
66
-
67
- - changelog(vue-act-master) [`efb304d`](https://github.com/avil13/vue-act-master/commit/efb304d3c095eec416bdfd0ee6bf4d43d355fede)
68
- - doc(vue-act-master): fix readme [`1a79d1c`](https://github.com/avil13/vue-act-master/commit/1a79d1c55bb4714df4d436d7664790228001f5a9)
69
- - fix(act-master): act.subscribe - fixed unsubscribe param [`e925305`](https://github.com/avil13/vue-act-master/commit/e9253059e241e824513d403cdeeb2c18adf763ac)
70
-
71
- #### [v1.10.1](https://github.com/avil13/vue-act-master/compare/v1.10.0...v1.10.1)
72
-
73
- > 6 December 2021
74
-
75
- - changelog(vue-act-master) [`551e096`](https://github.com/avil13/vue-act-master/commit/551e096a9c31648c30f0d6fcf314b9be5d0551ed)
76
- - fix(vue-act-master): fix ActSubscribe - get default value [`1aa62a7`](https://github.com/avil13/vue-act-master/commit/1aa62a7781cc46fed6005afaaf94d3a09387c2c8)
77
- - changelog [`8ac56d1`](https://github.com/avil13/vue-act-master/commit/8ac56d1f1e79a0bb8a17e5f45450c0a90b3b9c7b)
78
-
79
- #### [v1.10.0](https://github.com/avil13/vue-act-master/compare/v1.9.0...v1.10.0)
80
-
81
- > 30 November 2021
82
-
83
- - chore: upgrade deps [`e0b2f9b`](https://github.com/avil13/vue-act-master/commit/e0b2f9bdd300539fdd6023652a67429155ce9e04)
84
- - feat: added size-limit library [`9dbc21b`](https://github.com/avil13/vue-act-master/commit/9dbc21ba36a917eb486a3de93bb1e82144ae8d4f)
85
- - docs: added composition api examples [`6b5756f`](https://github.com/avil13/vue-act-master/commit/6b5756fe52311c1c5730eff1203abbd3d372db02)
86
-
87
- #### [v1.9.0](https://github.com/avil13/vue-act-master/compare/v1.3.4...v1.9.0)
88
-
89
- > 22 October 2021
90
-
91
- - Feat/progress [`#26`](https://github.com/avil13/vue-act-master/pull/26)
92
- - build(deps): bump tmpl from 1.0.4 to 1.0.5 [`#25`](https://github.com/avil13/vue-act-master/pull/25)
93
- - build(deps): bump ws from 7.4.5 to 7.5.0 [`#17`](https://github.com/avil13/vue-act-master/pull/17)
94
- - build(deps): bump postcss from 7.0.35 to 7.0.36 [`#18`](https://github.com/avil13/vue-act-master/pull/18)
95
- - build(deps): bump ssri from 8.0.0 to 8.0.1 [`#14`](https://github.com/avil13/vue-act-master/pull/14)
96
- - chore: removed unused packages [`04f38de`](https://github.com/avil13/vue-act-master/commit/04f38de4e233faab7027602439ded4cf759fa2c1)
97
- - docs: up vitepress [`29a78fa`](https://github.com/avil13/vue-act-master/commit/29a78fa474c9be104aceaf13d7bf7bde43661b9f)
98
- - chore: update deps [`277124b`](https://github.com/avil13/vue-act-master/commit/277124b67ce992809890781f9e372de30bbfbdfd)
99
-
100
- #### [v1.3.4](https://github.com/avil13/vue-act-master/compare/v1.3.3...v1.3.4)
101
-
102
- > 9 January 2021
103
-
104
- - fix: readme [`abfbc54`](https://github.com/avil13/vue-act-master/commit/abfbc5464654a4619533d22cc46d59437a14fc0d)
105
- - fix: readme and changelog script [`4067816`](https://github.com/avil13/vue-act-master/commit/4067816b7fc899fc64b834bcc95d7ee84afb7849)
106
-
107
- #### [v1.3.3](https://github.com/avil13/vue-act-master/compare/v1.0.3...v1.3.3)
108
-
109
- > 9 January 2021
110
-
111
- - build(deps): bump node-notifier from 8.0.0 to 8.0.1 [`#13`](https://github.com/avil13/vue-act-master/pull/13)
112
- - build(deps): bump ini from 1.3.5 to 1.3.8 [`#10`](https://github.com/avil13/vue-act-master/pull/10)
113
- - Create LICENSE [`#8`](https://github.com/avil13/vue-act-master/pull/8)
114
- - Bump node-fetch from 2.6.0 to 2.6.1 in /packages/vue-act-master [`#7`](https://github.com/avil13/vue-act-master/pull/7)
115
- - feat(act-master): CancelledAct method "is" [`fcd75ab`](https://github.com/avil13/vue-act-master/commit/fcd75abe135a4c61881f0b11766a56f45d1a9678)
116
- - feat(vue-act-master): updated act-master to v1.1.0 [`eb58a61`](https://github.com/avil13/vue-act-master/commit/eb58a61261f0341b2a50b05bca81b4469344b3c1)
117
- - feat(docs): vitepress documentation [`14998c2`](https://github.com/avil13/vue-act-master/commit/14998c2981bcf1572f81350f26c4b2f8153d1491)
118
-
119
- ### [v1.0.3](https://github.com/avil13/vue-act-master/compare/v0.16.0...v1.0.3)
120
-
121
- > 20 October 2020
122
-
123
- #### [v0.16.0](https://github.com/avil13/vue-act-master/compare/v0.15.3...v0.16.0)
124
-
125
- > 22 March 2022
126
-
127
- - feat: change act help function types [`e234b71`](https://github.com/avil13/vue-act-master/commit/e234b71da77a542f700ef3aa9fcb872354ec887a)
128
- - feat: changes the type of the returned object from the exec method [`c1437b4`](https://github.com/avil13/vue-act-master/commit/c1437b4cf73f9d2a212fb64f9abf424a15e3a91c)
129
- - feat: add extend object with CancelledAct [`c8911d8`](https://github.com/avil13/vue-act-master/commit/c8911d8f2eae298e7e47e81e731330b88b1ac936)
130
-
131
- #### [v0.15.3](https://github.com/avil13/vue-act-master/compare/v0.15.2...v0.15.3)
132
-
133
- > 3 March 2022
134
-
135
- - build(deps): bump prismjs from 1.25.0 to 1.27.0 [`#28`](https://github.com/avil13/vue-act-master/pull/28)
136
- - build(deps): bump nanoid from 3.1.30 to 3.2.0 [`#27`](https://github.com/avil13/vue-act-master/pull/27)
137
- - chore: remove Jest add Vitest [`d777b9c`](https://github.com/avil13/vue-act-master/commit/d777b9c0772b2a6050a3f684b9f560383536931e)
138
- - chore: remove unused deps [`2da37d6`](https://github.com/avil13/vue-act-master/commit/2da37d6804f30b34ab7c7fd4ab4e926a848f4b18)
139
- - chore: remove commitizen [`540df34`](https://github.com/avil13/vue-act-master/commit/540df3477c2a3880a3fc26ea9ba28f63d943aa4a)
140
-
141
- #### [v0.15.2](https://github.com/avil13/vue-act-master/compare/v0.15.1...v0.15.2)
142
-
143
- > 6 December 2021
144
-
145
- - changelog(vue-act-master) [`551e096`](https://github.com/avil13/vue-act-master/commit/551e096a9c31648c30f0d6fcf314b9be5d0551ed)
146
- - doc(vue-act-master): fix readme [`1a79d1c`](https://github.com/avil13/vue-act-master/commit/1a79d1c55bb4714df4d436d7664790228001f5a9)
147
- - doc(act-master): fix readme [`96ed2ce`](https://github.com/avil13/vue-act-master/commit/96ed2ceea4a33026cc95857b7d5fdfce67d278b8)
148
-
149
- #### [v0.15.1](https://github.com/avil13/vue-act-master/compare/v0.11.2...v0.15.1)
150
-
151
- > 1 December 2021
152
-
153
- - chore: upgrade deps [`e0b2f9b`](https://github.com/avil13/vue-act-master/commit/e0b2f9bdd300539fdd6023652a67429155ce9e04)
154
- - feat: added size-limit library [`9dbc21b`](https://github.com/avil13/vue-act-master/commit/9dbc21ba36a917eb486a3de93bb1e82144ae8d4f)
155
- - doc: added title image [`47a5cbb`](https://github.com/avil13/vue-act-master/commit/47a5cbb3c6318536a9b481cfd6d3ae04cf1841a6)
156
-
157
- #### [v0.11.2](https://github.com/avil13/vue-act-master/compare/v0.9.8...v0.11.2)
158
-
159
- > 3 October 2021
160
-
161
- - Feat/progress [`#26`](https://github.com/avil13/vue-act-master/pull/26)
162
- - build(deps): bump tmpl from 1.0.4 to 1.0.5 [`#25`](https://github.com/avil13/vue-act-master/pull/25)
163
- - chore: removed unused packages [`04f38de`](https://github.com/avil13/vue-act-master/commit/04f38de4e233faab7027602439ded4cf759fa2c1)
164
- - chore: update deps [`277124b`](https://github.com/avil13/vue-act-master/commit/277124b67ce992809890781f9e372de30bbfbdfd)
165
- - wip(vue-act-master): added ActInProgress decoreator [`b77902c`](https://github.com/avil13/vue-act-master/commit/b77902c6069455e8bf65b043ae79464bbab146d2)
166
-
167
- #### [v0.9.8](https://github.com/avil13/vue-act-master/compare/v0.9.6...v0.9.8)
168
-
169
- > 6 July 2021
170
-
171
- - build(deps): bump ws from 7.4.5 to 7.5.0 [`#17`](https://github.com/avil13/vue-act-master/pull/17)
172
- - build(deps): bump postcss from 7.0.35 to 7.0.36 [`#18`](https://github.com/avil13/vue-act-master/pull/18)
173
- - fix(vue-act-master): fix ActSubscribe decorator [`582ff24`](https://github.com/avil13/vue-act-master/commit/582ff245fea82ffa822ff0236a7edb53598234b4)
174
- - feat(act-master): bump version 1.4.1 [`efcd46a`](https://github.com/avil13/vue-act-master/commit/efcd46a5b251524ff5ea5a9f9b759bd9075ebf2c)
175
- - feat(act-master): Added error handler on validation error & fix test-utils reset bug [`525660c`](https://github.com/avil13/vue-act-master/commit/525660c300065b2e6a93f9f459782c445935cf16)
176
-
177
- #### [v0.9.6](https://github.com/avil13/vue-act-master/compare/v0.9.3...v0.9.6)
178
-
179
- > 20 June 2021
180
-
181
- - feat(vue-act-master): nuxt fix module 4 [`8d86d18`](https://github.com/avil13/vue-act-master/commit/8d86d1866f08d2338132af70ca0ef2f1bb483526)
182
- - docs: vue-act-master doc nuxtjs [`9af0608`](https://github.com/avil13/vue-act-master/commit/9af0608e03eb2fb3bfa5e435108c9e7d2e5d24bf)
183
- - feat(vue-act-master): nuxt fix module 3 [`7d22c89`](https://github.com/avil13/vue-act-master/commit/7d22c89723218bee95c0d4da0fbe027c470001f9)
184
-
185
- #### [v0.9.3](https://github.com/avil13/vue-act-master/compare/v0.9.2...v0.9.3)
186
-
187
- > 8 May 2021
188
-
189
- - feat(vue-act-master): nuxt fix module 2 [`41a2444`](https://github.com/avil13/vue-act-master/commit/41a2444bdd01326a4e77b1dad1bcf1d11be23493)
190
-
191
- #### [v0.9.2](https://github.com/avil13/vue-act-master/compare/v0.9.1...v0.9.2)
192
-
193
- > 8 May 2021
194
-
195
- - docs: vue-act-master doc update [`98e6843`](https://github.com/avil13/vue-act-master/commit/98e6843bd68bbcd317b4938258e122fb6d6711d0)
196
- - feat(vue-act-master): nuxt fix module [`5ddf0a0`](https://github.com/avil13/vue-act-master/commit/5ddf0a0ccdaab523d0284659451de18332446090)
197
-
198
- #### [v0.9.1](https://github.com/avil13/vue-act-master/compare/v0.9.0...v0.9.1)
199
-
200
- > 7 May 2021
201
-
202
- - build(deps): bump ssri from 8.0.0 to 8.0.1 [`#14`](https://github.com/avil13/vue-act-master/pull/14)
203
- - docs: up vitepress [`29a78fa`](https://github.com/avil13/vue-act-master/commit/29a78fa474c9be104aceaf13d7bf7bde43661b9f)
204
- - chore(act-master): optimie build size [`dd3f8b1`](https://github.com/avil13/vue-act-master/commit/dd3f8b17b666bea9469e5b6b3482eed076971a78)
205
- - docs(tip): added websocket example [`f3632cf`](https://github.com/avil13/vue-act-master/commit/f3632cf1d8a7c1f6ec69b1ab4b0fde2e18d73a60)
206
-
207
- #### [v0.9.0](https://github.com/avil13/vue-act-master/compare/v0.8.8...v0.9.0)
208
-
209
- > 9 January 2021
210
-
211
- - feat(act-master): change listenera and action container to the Map [`f17df13`](https://github.com/avil13/vue-act-master/commit/f17df13ece0e5b9a7528811885ab692e7513a4ca)
212
- - fix: readme [`abfbc54`](https://github.com/avil13/vue-act-master/commit/abfbc5464654a4619533d22cc46d59437a14fc0d)
213
- - fix: repo in package.json [`2484a1f`](https://github.com/avil13/vue-act-master/commit/2484a1f9db9a1b5255b70c8104119b2ff3c99609)
214
-
215
- #### [v0.8.8](https://github.com/avil13/vue-act-master/compare/v0.8.6...v0.8.8)
216
-
217
- > 9 January 2021
218
-
219
- - build(deps): bump node-notifier from 8.0.0 to 8.0.1 [`#13`](https://github.com/avil13/vue-act-master/pull/13)
220
- - feat(docs): vitepress documentation [`14998c2`](https://github.com/avil13/vue-act-master/commit/14998c2981bcf1572f81350f26c4b2f8153d1491)
221
- - feat(docs): fixes [`ef6ed76`](https://github.com/avil13/vue-act-master/commit/ef6ed7680198533f09f0dd2bf33cc69071831085)
222
- - docs: logo and icons [`1920bae`](https://github.com/avil13/vue-act-master/commit/1920bae48f472c7fb444db13b6606016655433bc)
223
-
224
- #### [v0.8.6](https://github.com/avil13/vue-act-master/compare/v0.8.5...v0.8.6)
225
-
226
- > 29 December 2020
227
-
228
- - feat(act-master): added validateInput method [`08182c9`](https://github.com/avil13/vue-act-master/commit/08182c9f3825a64e50a6bd66c01f90eea896ec08)
229
- - feat(vue-act-master): up act-master to 1.3.0 [`7997f94`](https://github.com/avil13/vue-act-master/commit/7997f94769210de66259bf5091ecfcf4071f5b6c)
230
- - feat(act-master): bump version 1.3.0 [`b96c8ab`](https://github.com/avil13/vue-act-master/commit/b96c8ab86a03aa9286d3624466f70cc4f3743fb8)
231
-
232
- #### [v0.8.5](https://github.com/avil13/vue-act-master/compare/v0.8.4...v0.8.5)
233
-
234
- > 14 December 2020
235
-
236
- - build(deps): bump ini from 1.3.5 to 1.3.8 [`#10`](https://github.com/avil13/vue-act-master/pull/10)
237
- - Create LICENSE [`#8`](https://github.com/avil13/vue-act-master/pull/8)
238
- - feat(vue-act-master): auto-unsubscribe in vue3 [`41d3e3d`](https://github.com/avil13/vue-act-master/commit/41d3e3d9082de77a8419114448ec75fd43f632eb)
239
- - feat(act-master): version v1.2.2 [`8c889da`](https://github.com/avil13/vue-act-master/commit/8c889da733b4dec323463203d20e56557bdfc60c)
240
- - docs(vue-act-master): fix changelog [`b1ffd9b`](https://github.com/avil13/vue-act-master/commit/b1ffd9bef98d3f02f0ac7420544c78435cab01c6)
241
-
242
- #### [v0.8.4](https://github.com/avil13/vue-act-master/compare/v0.8.3...v0.8.4)
243
-
244
- > 5 November 2020
245
-
246
- - feat(act-master): fixed test-utils loading & added min version [`abb6b99`](https://github.com/avil13/vue-act-master/commit/abb6b998b45f015243ea93cd5daadd90c500f323)
247
- - fix(vue-act-master): version 0.8.3 [`df13fd7`](https://github.com/avil13/vue-act-master/commit/df13fd71b7e0a2aaa401439320e3e6f0e2b4063f)
248
- - feat(act-master): bump version 1.2.1 [`106afa3`](https://github.com/avil13/vue-act-master/commit/106afa325a0b45efc8e6bb0947c1bb3efc5a3ac0)
249
-
250
- #### [v0.8.3](https://github.com/avil13/vue-act-master/compare/v0.8.2...v0.8.3)
251
-
252
- > 4 November 2020
253
-
254
- - feat(vue-act-master): added test-utils [`81e0ecb`](https://github.com/avil13/vue-act-master/commit/81e0ecbf5750cfaf6ba101f989c08988051edcce)
255
- - feat(vue-act-master): bump version to v0.8.2 [`d642b67`](https://github.com/avil13/vue-act-master/commit/d642b67cbfac40ae8d052b54c1a6e9c774d93ade)
256
-
257
- #### [v0.8.2](https://github.com/avil13/vue-act-master/compare/v0.8.1...v0.8.2)
258
-
259
- > 4 November 2020
260
-
261
- - feat(act-master): added ActTest - helper class for unit tests [`5fa71eb`](https://github.com/avil13/vue-act-master/commit/5fa71eb6306de2267993cbf510fffb764cc06b64)
262
- - docs(vue-act-master): updated README & up version act-master to 1.2.0 [`8d5bc90`](https://github.com/avil13/vue-act-master/commit/8d5bc90ed2e589242813c34cad4fc59d0ec23223)
263
- - feat(act-master): bump version 1.2.0 [`fe78d07`](https://github.com/avil13/vue-act-master/commit/fe78d070497b4e65833e354a3284c36722fd1b8a)
264
-
265
- #### [v0.8.1](https://github.com/avil13/vue-act-master/compare/v0.7.1...v0.8.1)
266
-
267
- > 3 November 2020
268
-
269
- - feat(vue-act-master): wip - ActSubscribe decorator [`d86825a`](https://github.com/avil13/vue-act-master/commit/d86825abe690e8b4607e57807cf4d5bbfc3bb29e)
270
- - feat(vue-act-master): updated act-master to v1.1.2 [`59060b4`](https://github.com/avil13/vue-act-master/commit/59060b4e93104183068edd35cf079819ebf46ba1)
271
- - docs(vue-act-master): updated README [`ecfa39c`](https://github.com/avil13/vue-act-master/commit/ecfa39c249955f8f501ac55182f595e293b4ff73)
272
-
273
- #### [v0.7.1](https://github.com/avil13/vue-act-master/compare/v0.7.0...v0.7.1)
274
-
275
- > 3 November 2020
276
-
277
- - feat(vue-act-master): updated act-master to v1.1.0 [`eb58a61`](https://github.com/avil13/vue-act-master/commit/eb58a61261f0341b2a50b05bca81b4469344b3c1)
278
- - feat(act-master): eventAction arguments list [`801f3bb`](https://github.com/avil13/vue-act-master/commit/801f3bbeb270774af5da0bc14e221778890c3e48)
279
- - feat(vue-act-master): updated act-master to v1.1.1 [`52e26e5`](https://github.com/avil13/vue-act-master/commit/52e26e5878263f94a93a9b3c5ad8a82098cfbcb2)
280
-
281
- #### [v0.7.0](https://github.com/avil13/vue-act-master/compare/v0.6.4...v0.7.0)
282
-
283
- > 30 October 2020
284
-
285
- - feat(vue-act-master): updated act-master to v1.1.0 [`a392f75`](https://github.com/avil13/vue-act-master/commit/a392f758779e2f567f8c1d9dcabb35e04d17b8db)
286
- - feat(act-master): added commitezen [`0f335d4`](https://github.com/avil13/vue-act-master/commit/0f335d4e85b5ef7229659da0603af543a810df72)
287
- - feat(act-master): added "di" option and tests for constructor options [`f5549a5`](https://github.com/avil13/vue-act-master/commit/f5549a588d7adfa1e41fd888e8469f9d05848e8c)
288
-
289
- #### [v0.6.4](https://github.com/avil13/vue-act-master/compare/v0.6.3...v0.6.4)
290
-
291
- > 29 October 2020
292
-
293
- - feat(act-master): added "di" option and tests for constructor options
294
- - feat(vue-act-master): link to example page [`16049dc`](https://github.com/avil13/vue-act-master/commit/16049dceeeb5e4bcb1594b6d1d6683919ebd48af)
295
- - feat(vue-act-master): changelog [`77c6ddb`](https://github.com/avil13/vue-act-master/commit/77c6ddb541a07b62f27db6bdbc32eaf6d9a20829)
296
-
297
- #### [v0.6.3](https://github.com/avil13/vue-act-master/compare/v0.6.1...v0.6.3)
298
-
299
- > 28 October 2020
300
-
301
- - feat(act-master): CancelledAct method "is" [`fcd75ab`](https://github.com/avil13/vue-act-master/commit/fcd75abe135a4c61881f0b11766a56f45d1a9678)
302
- - fear(example): added example page [`c90d326`](https://github.com/avil13/vue-act-master/commit/c90d326dcad396ae7075c646404a528437bd3a2b)
303
- - feat(act-master): build script fixed [`8d6c25a`](https://github.com/avil13/vue-act-master/commit/8d6c25a885986bcd8e268917538f208e5a2b538d)
304
-
305
- #### [v0.6.1](https://github.com/avil13/vue-act-master/compare/v0.6.0...v0.6.1)
306
-
307
- > 28 October 2020
308
-
309
- - feat: update changelog command [`5075673`](https://github.com/avil13/vue-act-master/commit/50756734b83cf589d4858ab4a8e34d39d9a33719)
310
- - . [`140990e`](https://github.com/avil13/vue-act-master/commit/140990e33785b66b5d5d80ab081cb75a2426fd25)
311
- - chore: root repo scripts [`2607e3c`](https://github.com/avil13/vue-act-master/commit/2607e3c99b2d4cd241d1af383bf90dc84e93b078)
312
-
313
- #### [v0.6.0](https://github.com/avil13/vue-act-master/compare/v0.5.0...v0.6.0)
314
-
315
- > 25 October 2020
316
-
317
- - Bump node-fetch from 2.6.0 to 2.6.1 in /packages/vue-act-master [`#7`](https://github.com/avil13/vue-act-master/pull/7)
318
- - feat: add vue3 support [`e0281f3`](https://github.com/avil13/vue-act-master/commit/e0281f3fe03e14d7c1a72edecf06664442f7ce67)
319
-
320
- #### [v0.5.0](https://github.com/avil13/vue-act-master/compare/v0.3.1...v0.5.0)
321
-
322
- > 20 October 2020
323
-
324
- #### [v0.3.1](https://github.com/avil13/vue-act-master/compare/v0.3.0...v0.3.1)
325
-
326
- > 20 April 2022
327
-
328
- - build(deps): bump prismjs from 1.25.0 to 1.27.0 [`#28`](https://github.com/avil13/vue-act-master/pull/28)
329
- - build(deps): bump nanoid from 3.1.30 to 3.2.0 [`#27`](https://github.com/avil13/vue-act-master/pull/27)
330
- - Feat/progress [`#26`](https://github.com/avil13/vue-act-master/pull/26)
331
- - build(deps): bump tmpl from 1.0.4 to 1.0.5 [`#25`](https://github.com/avil13/vue-act-master/pull/25)
332
- - build(deps): bump ws from 7.4.5 to 7.5.0 [`#17`](https://github.com/avil13/vue-act-master/pull/17)
333
- - build(deps): bump postcss from 7.0.35 to 7.0.36 [`#18`](https://github.com/avil13/vue-act-master/pull/18)
334
- - build(deps): bump ssri from 8.0.0 to 8.0.1 [`#14`](https://github.com/avil13/vue-act-master/pull/14)
335
- - build(deps): bump node-notifier from 8.0.0 to 8.0.1 [`#13`](https://github.com/avil13/vue-act-master/pull/13)
336
- - build(deps): bump ini from 1.3.5 to 1.3.8 [`#10`](https://github.com/avil13/vue-act-master/pull/10)
337
- - Create LICENSE [`#8`](https://github.com/avil13/vue-act-master/pull/8)
338
- - Bump node-fetch from 2.6.0 to 2.6.1 in /packages/vue-act-master [`#7`](https://github.com/avil13/vue-act-master/pull/7)
339
- - wip: chrome-devtools [`f336e5d`](https://github.com/avil13/vue-act-master/commit/f336e5d0b3ac168c5c01390e8e4aa6c0fa18f9b5)
340
- - chore: removed unused packages [`04f38de`](https://github.com/avil13/vue-act-master/commit/04f38de4e233faab7027602439ded4cf759fa2c1)
341
- - feat: the division into packages 3 [`4188460`](https://github.com/avil13/vue-act-master/commit/4188460ef7c12800b99ca5dd603136078046dc9d)
342
-
343
- #### [v0.3.0](https://github.com/avil13/vue-act-master/compare/v0.2.1...v0.3.0)
344
-
345
- > 17 August 2020
346
-
347
- - feat: added Emit decorator [`8d43ca7`](https://github.com/avil13/vue-act-master/commit/8d43ca7aeddc8511ffea3ad978bad12d97b3ff05)
348
- - feat: added auto-changelog [`5a7a377`](https://github.com/avil13/vue-act-master/commit/5a7a37780b7d743e0f838627f39e4b614cb6f6db)
349
-
350
- #### [v0.2.1](https://github.com/avil13/vue-act-master/compare/v0.2.0...v0.2.1)
351
-
352
- > 16 August 2020
353
-
354
- - feat: removal of unnecessary code [`66b4021`](https://github.com/avil13/vue-act-master/commit/66b4021cfc20b86e185a16ae879702231026b192)
355
- - fix: fixed useDI method name [`3189c9f`](https://github.com/avil13/vue-act-master/commit/3189c9f355498bec11c5277d490fbc136f005f95)
356
-
357
- #### [v0.2.0](https://github.com/avil13/vue-act-master/compare/v0.1.2...v0.2.0)
358
-
359
- > 15 August 2020
360
-
361
- - feat: update dependencies [`#6`](https://github.com/avil13/vue-act-master/pull/6)
362
- - Bump elliptic from 6.5.2 to 6.5.3 [`#5`](https://github.com/avil13/vue-act-master/pull/5)
363
- - feat: added UseDI decorator [`3152f7e`](https://github.com/avil13/vue-act-master/commit/3152f7e7a0d9565b2fad1059e5c0ec60eb560a8e)
364
-
365
- #### [v0.1.2](https://github.com/avil13/vue-act-master/compare/v0.1.1...v0.1.2)
366
-
367
- > 31 July 2020
368
-
369
- - updated README [`a6d2c5a`](https://github.com/avil13/vue-act-master/commit/a6d2c5afb6074d23c72802dc398566502bd2a3d7)
370
- - chore: change the name properties [`f55920f`](https://github.com/avil13/vue-act-master/commit/f55920f219be64e5589336a31565f0bff3ae62fe)
371
-
372
- #### [v0.1.1](https://github.com/avil13/vue-act-master/compare/v0.1.0...v0.1.1)
373
-
374
- > 21 May 2020
375
-
376
- - fix useEmit cases [`d9673ea`](https://github.com/avil13/vue-act-master/commit/d9673ea9257e3117c393ca6193824a62c7ceb81e)
377
-
378
- #### [v0.1.0](https://github.com/avil13/vue-act-master/compare/v0.0.11...v0.1.0)
379
-
380
- > 16 May 2020
381
-
382
- - Added
383
- DI
384
- useEmit
385
- debounce
386
- - wip [`e72a93d`](https://github.com/avil13/vue-act-master/commit/e72a93d8d8db49cf9cb987013bccb4bb43aadcf2)
387
-
388
- #### [v0.0.11](https://github.com/avil13/vue-act-master/compare/v0.0.10...v0.0.11)
389
-
390
- > 3 May 2020
391
-
392
- - emitAction fix [`8f9c178`](https://github.com/avil13/vue-act-master/commit/8f9c17804dd3b9bfe8a42b483834d3f339bb11d8)
393
-
394
- #### [v0.0.10](https://github.com/avil13/vue-act-master/compare/v0.0.9...v0.0.10)
395
-
396
- > 3 May 2020
397
-
398
- - add emit and change subscribe [`e9e0fdf`](https://github.com/avil13/vue-act-master/commit/e9e0fdfd8ce032c1abc4e6a6f0a66229139fba84)
399
-
400
- #### [v0.0.9](https://github.com/avil13/vue-act-master/compare/v0.0.8...v0.0.9)
401
-
402
- > 3 May 2020
403
-
404
- - add setState method [`7a006b6`](https://github.com/avil13/vue-act-master/commit/7a006b6018d2f18c2dc2f2725354f608de564b23)
405
-
406
- #### [v0.0.8](https://github.com/avil13/vue-act-master/compare/v0.0.7...v0.0.8)
407
-
408
- > 3 May 2020
409
-
410
- - states [`e6cde84`](https://github.com/avil13/vue-act-master/commit/e6cde846ed32b2ae0efe53d0e921d4d06cec6dcc)
411
-
412
- #### [v0.0.7](https://github.com/avil13/vue-act-master/compare/v0.0.6...v0.0.7)
413
-
414
- > 2 May 2020
415
-
416
- - useVue method [`01d8a41`](https://github.com/avil13/vue-act-master/commit/01d8a41a26841707be635c1614f3faeac770c46e)
417
-
418
- #### [v0.0.6](https://github.com/avil13/vue-act-master/compare/v0.0.2...v0.0.6)
419
-
420
- > 2 May 2020
421
-
422
- - wip [`fb7b995`](https://github.com/avil13/vue-act-master/commit/fb7b995e039c7ea3ff46d075d32eebd611bcaca6)
423
- - remove saga [`20e292c`](https://github.com/avil13/vue-act-master/commit/20e292cf06b327e8e1135272d02c9bd606020d41)
424
- - nuxt [`05192bb`](https://github.com/avil13/vue-act-master/commit/05192bb754fc53dc8378e4e2dcff1496f6431221)
425
-
426
- #### v0.0.2
427
-
428
- > 2 April 2020
429
-
430
- - init [`b3fea4f`](https://github.com/avil13/vue-act-master/commit/b3fea4f252cec0904010eea73e2c7935038926ff)
431
- - wip saga [`c86f87f`](https://github.com/avil13/vue-act-master/commit/c86f87fbf8a62cc4278cb30fe678c88e26506e74)
432
- - update [`52ccb9b`](https://github.com/avil13/vue-act-master/commit/52ccb9bcb414f743f21c0ce705b0d5b8f74601d7)