@v1nt1248/3nclient-lib 0.2.60 → 0.2.61

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.
@@ -1,7 +1,7 @@
1
- import { default as Ui3nHtml } from './ui3n-html';
1
+ import { default as Ui3nHtml, Ui3nHtmlArg, Ui3nHtmlValue } from './ui3n-html';
2
2
  import { default as Ui3nClickOutside } from './ui3n-click-outside';
3
3
  import { default as Ui3nResize, Ui3nResizeCbArg } from './ui3n-resize';
4
4
  import { default as Ui3nRipple } from './ui3n-ripple';
5
5
  import { default as Ui3nTitle } from './ui3n-title';
6
- import { default as Ui3nLongPress } from './ui3n-long-press';
7
- export { Ui3nHtml, Ui3nClickOutside, Ui3nResize, Ui3nRipple, Ui3nTitle, Ui3nLongPress, Ui3nResizeCbArg };
6
+ import { default as Ui3nLongPress, Ui3nLongPressBindingValue, Ui3nLongPressModifiers } from './ui3n-long-press';
7
+ export { Ui3nHtml, Ui3nHtmlArg, Ui3nHtmlValue, Ui3nClickOutside, Ui3nResize, Ui3nResizeCbArg, Ui3nRipple, Ui3nTitle, Ui3nLongPress, Ui3nLongPressBindingValue, Ui3nLongPressModifiers, };
@@ -1,6 +1,7 @@
1
1
  import { DirectiveBinding } from '../../vue/dist/vue.esm-bundler.js';
2
- declare const _default: {
3
- mounted(el: Element, binding: DirectiveBinding): void;
4
- updated(el: Element, binding: DirectiveBinding): void;
5
- };
6
- export default _default;
2
+ import { default as sanitizeHtml } from 'sanitize-html';
3
+ export type Ui3nHtmlArg = 'sanitize';
4
+ export interface Ui3nHtmlValue extends sanitizeHtml.IOptions {
5
+ dirty: string;
6
+ }
7
+ export default function ui3nHtml(el: Element, binding: DirectiveBinding<string | Ui3nHtmlValue>): void;
@@ -13,7 +13,7 @@ export interface Ui3nLongPressModifiers {
13
13
  once?: boolean;
14
14
  passive?: boolean;
15
15
  }
16
- interface ExtendedDirective extends ObjectDirective<HTMLElement, Ui3nLongPressBindingValue> {
16
+ interface Ui3nLongExtendedDirective extends ObjectDirective<HTMLElement, Ui3nLongPressBindingValue> {
17
17
  pointerdownEvent: (event: PointerEvent) => void;
18
18
  pointerupEvent: (event: PointerEvent) => void;
19
19
  pointermoveEvent: (event: PointerEvent) => void;
@@ -23,5 +23,5 @@ interface ExtendedDirective extends ObjectDirective<HTMLElement, Ui3nLongPressBi
23
23
  y: number;
24
24
  };
25
25
  }
26
- declare const ui3nLongPress: ExtendedDirective;
26
+ declare const ui3nLongPress: Ui3nLongExtendedDirective;
27
27
  export default ui3nLongPress;