@hb-hellotech/hb-ui 0.0.3 → 0.0.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.
@@ -1,45 +0,0 @@
1
- import { Component, ExtractPropTypes, PropType } from "vue";
2
- export interface DragItem_Intf {
3
- component?: Component | string;
4
- [key: string]: any;
5
- }
6
- export type ChildrenType = "html" | "component";
7
- export declare const HbDragProps: {
8
- readonly dragList: {
9
- readonly type: PropType<DragItem_Intf[]>;
10
- readonly required: true;
11
- };
12
- readonly childrenType: {
13
- readonly type: PropType<ChildrenType>;
14
- readonly default: "html";
15
- };
16
- readonly dragClass: {
17
- readonly type: StringConstructor;
18
- readonly default: "drag-item";
19
- };
20
- readonly ghostClass: {
21
- readonly type: StringConstructor;
22
- readonly default: null;
23
- };
24
- readonly chosenClass: {
25
- readonly type: StringConstructor;
26
- readonly default: null;
27
- };
28
- readonly sort: {
29
- readonly type: BooleanConstructor;
30
- readonly default: true;
31
- };
32
- readonly handle: {
33
- readonly type: StringConstructor;
34
- readonly default: "";
35
- };
36
- readonly filter: {
37
- readonly type: StringConstructor;
38
- readonly default: "";
39
- };
40
- readonly draggable: {
41
- readonly type: StringConstructor;
42
- readonly default: "";
43
- };
44
- };
45
- export type HbDragType = ExtractPropTypes<typeof HbDragProps>;
@@ -1,7 +0,0 @@
1
- export interface DragItem_Intf {
2
- label: string;
3
- value: string;
4
- fixed?: string | boolean;
5
- checked: string | boolean;
6
- [key: string]: unknown;
7
- }