Skip to content

Commit

Permalink
v0.72.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tenbits committed Jan 12, 2021
1 parent 3a60460 commit d10cba1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maskjs",
"version": "0.72.5",
"version": "0.72.7",
"homepage": "https://github.com/atmajs/MaskJS",
"authors": [
"Alex Kit <alex.kit@atmajs.com>"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "maskjs",
"description": "Template / Markup / HMVC Engine",
"version": "0.72.5",
"version": "0.72.7",
"homepage": "http://atmajs.com/mask",
"contributors": [
{
Expand Down
27 changes: 15 additions & 12 deletions types/mask.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -893,17 +893,20 @@ declare module 'mask/projects/mask-compo/src/exports' {
}

declare module 'mask/projects/mask-j/src/jmask/jMask' {
export function jMask(mix: any): any;
export function jMask(mix?: any): any;
export namespace jMask {
var prototype: any;
}
}

declare module 'mask/renderer/exports' {
import { Component } from "mask/projects/mask-compo/src/exports";

export function renderer_render<T extends HTMLElement>(mix: any, model?: any, ctx?: any, container?: any, controller?: any): T;

export function renderer_renderAsync(template: any, model?: any, ctx?: any, container?: any, ctr?: any): PromiseLike<HTMLElement>;
export function renderer_renderAsync(template: any, model?: any, ctx?: any, container?: any, ctr?: any): PromiseLike<HTMLElement> & {
done(el: HTMLElement, ctr: Component): any;
};
export function renderer_clearCache(key: any): void;
}

Expand Down Expand Up @@ -1279,16 +1282,16 @@ declare module 'mask/projects/mask-compo/src/model/IComponent' {
resume: Function;
disposed: boolean;
meta: {
mode: null;
modelMode: null;
attributes: null;
properties: null;
arguments: null;
template: null;
serializeNodes: null;
readAttributes: null;
readProperties: null;
readArguments: null;
mode?: any;
modelMode?: any;
attributes?: any;
properties?: any;
arguments?: any;
template?: any;
serializeNodes?: any;
readAttributes?: any;
readProperties?: any;
readArguments?: any;
};
getAttribute?<T = any>(key: string): T;
setAttribute?(key: string, val: any): any;
Expand Down

0 comments on commit d10cba1

Please sign in to comment.