@ibiz-template/vue3-components 0.4.5 → 0.4.6-dev.0
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/{index-zzHHP33g.js → index-Ry137VIz.js} +4 -4
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-FO177Hj_.js → xlsx-util-9HuMx0Yy.js} +1 -1
- package/es/control/dashboard/custom-dashboard-container/custom-dashboard-container.d.ts +118 -118
- package/es/control/dashboard/dashboard-design/dashboard-design.d.ts +1 -1
- package/es/control/dashboard/portlet/actionbar-portlet/actionbar-portlet.provider.mjs +1 -5
- package/es/control/dashboard/portlet/chart-portlet/chart-portlet.provider.mjs +1 -5
- package/es/control/dashboard/portlet/container-portlet/container-portlet.provider.mjs +1 -5
- package/es/control/dashboard/portlet/html-portlet/html-portlet.provider.mjs +1 -5
- package/es/control/dashboard/portlet/list-portlet/list-portlet.provider.mjs +1 -5
- package/es/control/dashboard/portlet/menu-portlet/menu-portlet.provider.mjs +1 -5
- package/es/control/dashboard/portlet/rawitem-portlet/rawitem-portlet.provider.mjs +1 -5
- package/es/control/dashboard/portlet/view-portlet/view-portlet.provider.mjs +1 -5
- package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-grid/repeater-grid.d.ts +1069 -1069
- package/es/editor/cascader/ibiz-cascader/ibiz-cascader.mjs +2 -1
- package/es/editor/data-picker/ibiz-picker-embed-view/ibiz-picker-embed-view.d.ts +1 -1
- package/es/editor/data-picker/ibiz-picker-select-view/ibiz-picker-select-view.d.ts +1 -1
- package/es/editor/span/span/span.d.ts +1 -1
- package/es/panel-component/user-message/index.d.ts +3 -1
- package/es/panel-component/user-message/user-message.d.ts +3 -1
- package/es/view-engine/tab-exp-view.engine.mjs +7 -2
- package/es/view-engine/wf-dyna-edit-view.engine.mjs +1 -0
- package/lib/control/dashboard/portlet/actionbar-portlet/actionbar-portlet.provider.cjs +1 -5
- package/lib/control/dashboard/portlet/chart-portlet/chart-portlet.provider.cjs +1 -5
- package/lib/control/dashboard/portlet/container-portlet/container-portlet.provider.cjs +1 -5
- package/lib/control/dashboard/portlet/html-portlet/html-portlet.provider.cjs +1 -5
- package/lib/control/dashboard/portlet/list-portlet/list-portlet.provider.cjs +1 -5
- package/lib/control/dashboard/portlet/menu-portlet/menu-portlet.provider.cjs +1 -5
- package/lib/control/dashboard/portlet/rawitem-portlet/rawitem-portlet.provider.cjs +1 -5
- package/lib/control/dashboard/portlet/view-portlet/view-portlet.provider.cjs +1 -5
- package/lib/editor/cascader/ibiz-cascader/ibiz-cascader.cjs +2 -1
- package/lib/view-engine/tab-exp-view.engine.cjs +7 -2
- package/lib/view-engine/wf-dyna-edit-view.engine.cjs +1 -0
- package/package.json +7 -7
|
@@ -42,7 +42,7 @@ export declare const DashboardDesign: import("vue").DefineComponent<{
|
|
|
42
42
|
imagePathX?: string | undefined;
|
|
43
43
|
rawContent?: string | undefined;
|
|
44
44
|
width?: number | undefined;
|
|
45
|
-
appId
|
|
45
|
+
appId: string;
|
|
46
46
|
id?: string | undefined;
|
|
47
47
|
name?: string | undefined;
|
|
48
48
|
userParam?: Record<string, string> | undefined;
|
|
@@ -12,11 +12,7 @@ class ActionBarPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizActionBarPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new ActionBarPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new ActionBarPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|
|
@@ -12,11 +12,7 @@ class ChartPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizChartPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new ChartPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new ChartPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|
|
@@ -12,11 +12,7 @@ class ContainerPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizContainerPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new ContainerPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new ContainerPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|
|
@@ -12,11 +12,7 @@ class HtmlPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizHtmlPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new HtmlPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new HtmlPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|
|
@@ -12,11 +12,7 @@ class ListPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizListPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new ListPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new ListPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|
|
@@ -12,11 +12,7 @@ class MenuPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizMenuPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new MenuPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new MenuPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|
|
@@ -12,11 +12,7 @@ class RawItemPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizRawItemPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new RawItemPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new RawItemPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|
|
@@ -12,11 +12,7 @@ class ViewPortletProvider {
|
|
|
12
12
|
__publicField(this, "component", "IBizViewPortlet");
|
|
13
13
|
}
|
|
14
14
|
async createController(portletModel, dashboard, parent) {
|
|
15
|
-
const c = new ViewPortletController(
|
|
16
|
-
portletModel,
|
|
17
|
-
dashboard,
|
|
18
|
-
parent
|
|
19
|
-
);
|
|
15
|
+
const c = new ViewPortletController(portletModel, dashboard, parent);
|
|
20
16
|
await c.init();
|
|
21
17
|
return c;
|
|
22
18
|
}
|