@a2simcode/ui 0.0.27 → 0.0.29
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.
- package/dist/components/form-item/index.d.ts +15 -0
- package/dist/components/form-item/src/form-item.vue.d.ts +9 -0
- package/dist/components/index.d.ts +3 -1
- package/dist/components/input-layer/index.d.ts +736 -0
- package/dist/components/input-layer/src/input-layer.vue.d.ts +719 -0
- package/dist/components/table/index.d.ts +15 -0
- package/dist/components/table/src/table.vue.d.ts +15 -0
- package/dist/components/table-panel/index.d.ts +15 -0
- package/dist/components/table-panel/src/table-panel.vue.d.ts +15 -0
- package/dist/components-dui/button/index.d.ts +51 -0
- package/dist/components-dui/button/src/button.vue.d.ts +29 -0
- package/dist/components-dui/button/src/types.d.ts +9 -0
- package/dist/components-dui/drag/index.d.ts +210 -0
- package/dist/components-dui/drag/src/container.vue.d.ts +108 -0
- package/dist/components-dui/drag/src/drag.vue.d.ts +105 -0
- package/dist/components-dui/drag/src/dragIndexList.vue.d.ts +133 -0
- package/dist/components-dui/drag/src/dragList.vue.d.ts +130 -0
- package/dist/components-dui/drag/src/eventBus.d.ts +4 -0
- package/dist/components-dui/drag/src/hooks/useDesign.d.ts +11 -0
- package/dist/components-dui/drag/src/hooks/useDrag.d.ts +18 -0
- package/dist/components-dui/drag/src/hooks/useMouseEvent.d.ts +6 -0
- package/dist/components-dui/drag/src/interface.d.ts +54 -0
- package/dist/components-dui/drag/src/tool.vue.d.ts +26 -0
- package/dist/components-dui/index.d.ts +9 -0
- package/dist/components-dui/utils/index.d.ts +7 -0
- package/dist/components-dui/vite.config.d.ts +2 -0
- package/dist/core/utils/common.d.ts +5 -0
- package/dist/simcode-ui.es.js +3964 -3731
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/package.json +9 -2
|
@@ -24,6 +24,10 @@ export declare const JFormItem: {
|
|
|
24
24
|
type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
|
|
25
25
|
default: () => never[];
|
|
26
26
|
};
|
|
27
|
+
isNotCol: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
27
31
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
28
32
|
type: string;
|
|
29
33
|
id: string;
|
|
@@ -31,6 +35,7 @@ export declare const JFormItem: {
|
|
|
31
35
|
getCompType: Function;
|
|
32
36
|
config: Record<string, any>;
|
|
33
37
|
getCompConfig: Function;
|
|
38
|
+
isNotCol: boolean;
|
|
34
39
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
35
40
|
P: {};
|
|
36
41
|
B: {};
|
|
@@ -63,6 +68,10 @@ export declare const JFormItem: {
|
|
|
63
68
|
type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
|
|
64
69
|
default: () => never[];
|
|
65
70
|
};
|
|
71
|
+
isNotCol: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
66
75
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
67
76
|
type: string;
|
|
68
77
|
id: string;
|
|
@@ -70,6 +79,7 @@ export declare const JFormItem: {
|
|
|
70
79
|
getCompType: Function;
|
|
71
80
|
config: Record<string, any>;
|
|
72
81
|
getCompConfig: Function;
|
|
82
|
+
isNotCol: boolean;
|
|
73
83
|
}>;
|
|
74
84
|
__isFragment?: never;
|
|
75
85
|
__isTeleport?: never;
|
|
@@ -99,6 +109,10 @@ export declare const JFormItem: {
|
|
|
99
109
|
type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
|
|
100
110
|
default: () => never[];
|
|
101
111
|
};
|
|
112
|
+
isNotCol: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
default: boolean;
|
|
115
|
+
};
|
|
102
116
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
103
117
|
type: string;
|
|
104
118
|
id: string;
|
|
@@ -106,6 +120,7 @@ export declare const JFormItem: {
|
|
|
106
120
|
getCompType: Function;
|
|
107
121
|
config: Record<string, any>;
|
|
108
122
|
getCompConfig: Function;
|
|
123
|
+
isNotCol: boolean;
|
|
109
124
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
110
125
|
install: (app: import('vue').App) => void;
|
|
111
126
|
};
|
|
@@ -43,6 +43,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
43
43
|
type: PropType<SchemaRuntimeConfig[]>;
|
|
44
44
|
default: () => never[];
|
|
45
45
|
};
|
|
46
|
+
isNotCol: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
46
50
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
47
51
|
/**
|
|
48
52
|
* @zh 组件 id
|
|
@@ -86,6 +90,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
86
90
|
type: PropType<SchemaRuntimeConfig[]>;
|
|
87
91
|
default: () => never[];
|
|
88
92
|
};
|
|
93
|
+
isNotCol: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
89
97
|
}>> & Readonly<{}>, {
|
|
90
98
|
type: string;
|
|
91
99
|
id: string;
|
|
@@ -93,5 +101,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
93
101
|
getCompType: Function;
|
|
94
102
|
config: Record<string, any>;
|
|
95
103
|
getCompConfig: Function;
|
|
104
|
+
isNotCol: boolean;
|
|
96
105
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
97
106
|
export default _default;
|
|
@@ -43,13 +43,14 @@ import { default as JFormItem } from './form-item';
|
|
|
43
43
|
import { default as JPage } from './page';
|
|
44
44
|
import { default as JGuid } from './guid';
|
|
45
45
|
import { default as JInputRows } from './input-rows';
|
|
46
|
+
import { default as JInputLayer } from './input-layer';
|
|
46
47
|
import { default as JLayerForm } from './layer-form';
|
|
47
48
|
import { default as JSwitch } from './switch';
|
|
48
49
|
import { default as JTabs } from './tabs';
|
|
49
50
|
import { default as JCollapse } from './collapse';
|
|
50
51
|
import { default as JEditor } from './editor';
|
|
51
52
|
import { default as JWorkflowViewer } from './workflow-viewer';
|
|
52
|
-
export { JButton, JButtons, JInput, JIcon, JRadio, JSelect, JCascaderSelect, JCheckbox, JNumber, JAutoComplete, JLayout, JTable, JDialog, JDialogFull, JDrawer, JLayer, JDynamicLayer, JInputTag, JRate, JSlider, JUpload, JEcharts, JBarcode, JCodeMirror, JCount, JCountUp, JDataPanel, JDivider, JHpanel, JGuid, JInputButton, JInputCode, JInputColor, JTitle, JButtonSelect, JTree, JComp, JForm, JFormItem, JPage, JSliderCaptcha, JMenu, JTablePanel, JInputRows, JLayerForm, JSwitch, JTabs, JCollapse, JEditor, JWorkflowViewer, };
|
|
53
|
+
export { JButton, JButtons, JInput, JIcon, JRadio, JSelect, JCascaderSelect, JCheckbox, JNumber, JAutoComplete, JLayout, JTable, JDialog, JDialogFull, JDrawer, JLayer, JDynamicLayer, JInputTag, JRate, JSlider, JUpload, JEcharts, JBarcode, JCodeMirror, JCount, JCountUp, JDataPanel, JDivider, JHpanel, JGuid, JInputButton, JInputCode, JInputColor, JTitle, JButtonSelect, JTree, JComp, JForm, JFormItem, JPage, JSliderCaptcha, JMenu, JTablePanel, JInputRows, JInputLayer, JLayerForm, JSwitch, JTabs, JCollapse, JEditor, JWorkflowViewer, };
|
|
53
54
|
export * from '../core';
|
|
54
55
|
export type { InputProps } from './input/src/input.vue';
|
|
55
56
|
export type { SelectOption, SelectProps } from './select/src/select.vue';
|
|
@@ -64,6 +65,7 @@ export type { InputTagProps } from './input-tag/src/input-tag.vue';
|
|
|
64
65
|
export type { NumberProps } from './number/src/number.vue';
|
|
65
66
|
export type { RateProps } from './rate/src/rate.vue';
|
|
66
67
|
export type { SliderProps } from './slider/src/slider.vue';
|
|
68
|
+
export type { InputLayerProps } from './input-layer/src/input-layer.vue';
|
|
67
69
|
export type { CountProps } from './count/src/count.vue';
|
|
68
70
|
export type { CountUpProps } from './count-up/src/count-up.vue';
|
|
69
71
|
export type { DataPanelProps } from './data-panel/src/data-panel.vue';
|