@hb-hellotech/hb-ui 1.3.9-beta.7 → 1.3.9-beta.8

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.
@@ -0,0 +1,4 @@
1
+ import type { ObjectDirective } from "vue";
2
+ declare const ClickOutside: ObjectDirective;
3
+ export default ClickOutside;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAA6C,eAAe,EAAE,MAAM,KAAK,CAAA;AAkErF,QAAA,MAAM,YAAY,EAAE,eAmCnB,CAAA;AAED,eAAe,YAAY,CAAA"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * 用于按钮防抖的自定义指令
3
+ * 用法1. 不带参 v-dc="handleClick"
4
+ * 用法2. 带防抖时长 v-dc:500="handleClick"
5
+ * 用法3. 带普通参数 v-dc="() => handleClick(1234)"
6
+ * 用法4. 带动态参数 v-dc="() => handleClick(orderId)"
7
+ * */
8
+ import { DirectiveBinding } from 'vue';
9
+ declare global {
10
+ interface HTMLElement {
11
+ __debounceHandler__: ((...args: any[]) => void) | undefined;
12
+ }
13
+ }
14
+ declare const _default: {
15
+ mounted(el: HTMLElement, binding: DirectiveBinding): void;
16
+ unmounted(el: HTMLElement): void;
17
+ };
18
+ export default _default;
19
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;KAMK;AAEL,OAAO,EAAE,gBAAgB,EAAE,MAAM,KAAK,CAAC;AAEvC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,WAAW;QACnB,mBAAmB,EAAE,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;KAC7D;CACF;;gBAGa,WAAW,WAAW,gBAAgB;kBAwBpC,WAAW;;AAzB3B,wBAgCE"}
@@ -0,0 +1,5 @@
1
+ import ClickOutside from './click_outside';
2
+ import DebounceClick from './debounce_click';
3
+ import Copy from './v_copy';
4
+ export { ClickOutside, DebounceClick, Copy };
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,iBAAiB,CAAC;AAC3C,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAC7C,OAAO,IAAI,MAAM,UAAU,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { DirectiveBinding } from 'vue';
2
+ declare global {
3
+ interface HTMLElement {
4
+ _dynamicApp: any;
5
+ _dynamicContainer: any;
6
+ _dynamicPrevValue: any;
7
+ }
8
+ }
9
+ declare const _default: {
10
+ mounted(el: HTMLElement, binding: DirectiveBinding): void;
11
+ updated(el: HTMLElement, binding: DirectiveBinding): void;
12
+ unmounted(el: HTMLElement): void;
13
+ };
14
+ export default _default;
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,KAAK,CAAC;AAEvC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,WAAW;QACnB,WAAW,EAAE,GAAG,CAAC;QACjB,iBAAiB,EAAE,GAAG,CAAC;QACvB,iBAAiB,EAAE,GAAG,CAAC;KACxB;CACF;;gBAiBa,WAAW,WAAW,gBAAgB;gBAgBtC,WAAW,WAAW,gBAAgB;kBAMpC,WAAW;;AAvB3B,wBAmCE"}