dom-render 1.0.92 → 1.0.93

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. package/DomRenderProxy.js +7 -7
  2. package/components/ComponentSet.d.ts +1 -1
  3. package/configs/Config.d.ts +4 -1
  4. package/configs/TargetAttr.d.ts +1 -1
  5. package/configs/TargetElement.d.ts +1 -1
  6. package/dist/bundle.js +224 -293
  7. package/events/EventManager.d.ts +1 -0
  8. package/events/EventManager.js +42 -54
  9. package/messenger/Messenger.d.ts +4 -4
  10. package/operators/Dr.js +1 -1
  11. package/operators/DrAppender.js +2 -4
  12. package/operators/DrFor.js +2 -4
  13. package/operators/DrForOf.js +2 -4
  14. package/operators/DrForm.js +1 -1
  15. package/operators/DrIf.js +2 -4
  16. package/operators/DrInnerHTML.js +1 -1
  17. package/operators/DrInnerText.js +1 -1
  18. package/operators/DrPre.js +2 -4
  19. package/operators/DrRepeat.js +2 -4
  20. package/operators/DrTargetAttr.js +2 -4
  21. package/operators/DrTargetElement.js +2 -4
  22. package/operators/DrThis.js +1 -1
  23. package/operators/OperatorExecuter.d.ts +5 -5
  24. package/operators/OperatorExecuter.js +1 -1
  25. package/operators/OperatorExecuterAttrRequire.js +1 -1
  26. package/package.json +1 -1
  27. package/rawsets/AttrInitCallBack.d.ts +1 -1
  28. package/rawsets/Attrs.d.ts +1 -1
  29. package/rawsets/CreatorMetaData.d.ts +1 -1
  30. package/rawsets/ElementInitCallBack.d.ts +1 -1
  31. package/rawsets/RawSet.js +1 -1
  32. package/rawsets/Render.d.ts +1 -1
  33. package/routers/Router.d.ts +1 -1
  34. package/utils/dom/DomUtils.d.ts +1 -1
  35. package/utils/node/NodeUtils.d.ts +1 -1
  36. package/validators/EmptyValidator.js +2 -2
  37. package/validators/NotEmptyValidator.js +2 -2
  38. package/validators/ValidMultipleValidator.d.ts +1 -1
  39. package/validators/Validator.d.ts +2 -2
  40. package/validators/ValidatorArray.d.ts +1 -1
@@ -1,5 +1,5 @@
1
- export declare type Valid<T = any, E = Element> = (value?: T, target?: E, event?: Event) => boolean;
2
- export declare type ValidAction<T = any, E = Element> = (valid: boolean, value?: T, target?: E, event?: Event) => void;
1
+ export type Valid<T = any, E = Element> = (value?: T, target?: E, event?: Event) => boolean;
2
+ export type ValidAction<T = any, E = Element> = (valid: boolean, value?: T, target?: E, event?: Event) => void;
3
3
  export declare abstract class Validator<T = any, E = Element> {
4
4
  protected _value?: T | undefined;
5
5
  private _target?;
@@ -1,5 +1,5 @@
1
1
  import { Validator } from './Validator';
2
- export declare type MakeValidator<T = any, E = Element> = (value: T, target: E, event?: Event) => Validator<T, E>;
2
+ export type MakeValidator<T = any, E = Element> = (value: T, target: E, event?: Event) => Validator<T, E>;
3
3
  export declare abstract class ValidatorArray<T = any, E = Element> extends Validator<Validator<T, E>[], E> {
4
4
  private _makeValidatorFactory;
5
5
  constructor(value?: Validator<T, E>[], target?: E, event?: Event, autoValid?: boolean);