@ibiz-template/vue3-components 0.7.29 → 0.7.30-alpha.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-RYTwEwp1.js +4 -0
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-bhQVAaEM.js → xlsx-util-RK7YFZYE.js} +1 -1
- package/es/control/calendar/calendar.mjs +1 -1
- package/es/control/calendar/components/calendar-daily/calendar-daily.mjs +1 -1
- package/es/control/calendar/components/calendar-week/calendar-week.mjs +1 -1
- package/es/control/calendar/components/custom-calendar/custom-calendar.mjs +1 -1
- package/es/control/drtab/drtab.mjs +1 -1
- package/es/control/grid/grid/grid.mjs +1 -1
- package/es/control/toolbar/toolbar.mjs +1 -1
- package/es/panel-component/auth-captcha/auth-captcha.mjs +1 -1
- package/es/panel-component/panel-button/panel-button.mjs +1 -1
- package/lib/control/calendar/calendar.cjs +1 -1
- package/lib/control/calendar/components/calendar-daily/calendar-daily.cjs +1 -1
- package/lib/control/calendar/components/calendar-week/calendar-week.cjs +1 -1
- package/lib/control/calendar/components/custom-calendar/custom-calendar.cjs +1 -1
- package/lib/control/drtab/drtab.cjs +1 -1
- package/lib/control/grid/grid/grid.cjs +1 -1
- package/lib/control/toolbar/toolbar.cjs +1 -1
- package/lib/panel-component/auth-captcha/auth-captcha.cjs +1 -1
- package/lib/panel-component/panel-button/panel-button.cjs +1 -1
- package/package.json +1 -1
- package/dist/index-dIj05Kls.js +0 -4
|
@@ -2,9 +2,9 @@ import { isVNode, ref, watch, resolveComponent, createVNode, defineComponent } f
|
|
|
2
2
|
import { useControlController, useNamespace } from '@ibiz-template/vue3-util';
|
|
3
3
|
import { CalendarController } from '@ibiz-template/runtime';
|
|
4
4
|
import dayjs from 'dayjs';
|
|
5
|
+
import { showTitle } from '@ibiz-template/core';
|
|
5
6
|
import { IBizCustomCalendar } from './components/custom-calendar/index.mjs';
|
|
6
7
|
import './calendar.css';
|
|
7
|
-
import { showTitle } from '@ibiz-template/core';
|
|
8
8
|
|
|
9
9
|
"use strict";
|
|
10
10
|
function _isSlot(s) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { watch, onMounted, onUnmounted, createVNode, defineComponent } from 'vue';
|
|
2
2
|
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
+
import { showTitle } from '@ibiz-template/core';
|
|
3
4
|
import '../interface/index.mjs';
|
|
4
5
|
import '../util/index.mjs';
|
|
5
6
|
import { useCalendarDaily } from './use-calendar-daily.mjs';
|
|
6
7
|
import './calendar-daily.css';
|
|
7
|
-
import { showTitle } from '@ibiz-template/core';
|
|
8
8
|
import { calendarDailyProps, calendarDailyEmits } from '../interface/calendar-daily.mjs';
|
|
9
9
|
import { isToday } from '../util/util.mjs';
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ref, watch, onMounted, onUnmounted, createVNode, resolveComponent, defineComponent } from 'vue';
|
|
2
2
|
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
+
import { showTitle } from '@ibiz-template/core';
|
|
3
4
|
import '../interface/index.mjs';
|
|
4
5
|
import { useCalendarWeek } from './use-calendar-week.mjs';
|
|
5
6
|
import './calendar-week.css';
|
|
6
7
|
import '../util/index.mjs';
|
|
7
|
-
import { showTitle } from '@ibiz-template/core';
|
|
8
8
|
import { calendarWeekProps, calendarWeekEmits } from '../interface/calendar-week.mjs';
|
|
9
9
|
import { handlePopClose, closeIcon } from '../util/util.mjs';
|
|
10
10
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { onMounted, createVNode, resolveComponent, defineComponent } from 'vue';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
3
|
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
4
|
+
import { showTitle } from '@ibiz-template/core';
|
|
4
5
|
import { IBizCalendarDaily } from '../calendar-daily/index.mjs';
|
|
5
6
|
import { IBizCalendarWeek } from '../calendar-week/index.mjs';
|
|
6
7
|
import { useCustomCalendar } from './use-custom-calendar.mjs';
|
|
7
8
|
import './custom-calendar.css';
|
|
8
9
|
import '../interface/index.mjs';
|
|
9
|
-
import { showTitle } from '@ibiz-template/core';
|
|
10
10
|
import { customCalendarProps, customCalendarEmits } from '../interface/custom-calendar.mjs';
|
|
11
11
|
|
|
12
12
|
"use strict";
|
|
@@ -3,10 +3,10 @@ import { useControlController, useNamespace, getNestedRoutePath, route2routePath
|
|
|
3
3
|
import { useRouter, useRoute } from 'vue-router';
|
|
4
4
|
import { hasSubRoute } from '@ibiz-template/runtime';
|
|
5
5
|
import { isNil } from 'ramda';
|
|
6
|
+
import { showTitle } from '@ibiz-template/core';
|
|
6
7
|
import { DRTabController } from './drtab.controller.mjs';
|
|
7
8
|
import './drtab.css';
|
|
8
9
|
import { useAppDRTab } from './drtab-control.util.mjs';
|
|
9
|
-
import { showTitle } from '@ibiz-template/core';
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
const DRTabControl = /* @__PURE__ */ defineComponent({
|
|
@@ -33,7 +33,7 @@ function renderColumn(c, model, renderColumns, index) {
|
|
|
33
33
|
} = model;
|
|
34
34
|
const columnC = c.columns[columnName];
|
|
35
35
|
const columnState = c.state.columnStates.find((item) => item.key === columnName);
|
|
36
|
-
const widthFlexGrow = columnC.isAdaptiveColumn || index === renderColumns.length - 1;
|
|
36
|
+
const widthFlexGrow = columnC.isAdaptiveColumn || !c.hasAdaptiveColumn && index === renderColumns.length - 1;
|
|
37
37
|
const widthName = widthFlexGrow ? "min-width" : "width";
|
|
38
38
|
return createVNode(resolveComponent("el-table-column"), mergeProps({
|
|
39
39
|
"label": model.caption,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { isVNode, resolveComponent, createVNode, ref, h, createTextVNode, defineComponent } from 'vue';
|
|
2
2
|
import { useNamespace, useControlController } from '@ibiz-template/vue3-util';
|
|
3
3
|
import { ToolbarController } from '@ibiz-template/runtime';
|
|
4
|
+
import { showTitle } from '@ibiz-template/core';
|
|
4
5
|
import { IBizExportExcel } from './export-excel/export-excel.mjs';
|
|
5
6
|
import { IBizShortCutButton } from './short-cut-button/short-cut-button.mjs';
|
|
6
7
|
import './toolbar.css';
|
|
7
|
-
import { showTitle } from '@ibiz-template/core';
|
|
8
8
|
|
|
9
9
|
"use strict";
|
|
10
10
|
function _isSlot(s) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { computed, resolveComponent, createVNode, resolveDirective, withDirectives, defineComponent } from 'vue';
|
|
2
2
|
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
+
import { showTitle } from '@ibiz-template/core';
|
|
3
4
|
import { AuthCaptchaController } from './auth-captcha.controller.mjs';
|
|
4
5
|
import './auth-captcha.css';
|
|
5
|
-
import { showTitle } from '@ibiz-template/core';
|
|
6
6
|
|
|
7
7
|
"use strict";
|
|
8
8
|
const AuthCaptcha = /* @__PURE__ */ defineComponent({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ref, computed, resolveComponent, createVNode, defineComponent } from 'vue';
|
|
2
2
|
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
+
import { showTitle } from '@ibiz-template/core';
|
|
3
4
|
import { PanelButtonController } from './panel-button.controller.mjs';
|
|
4
5
|
import './panel-button.css';
|
|
5
|
-
import { showTitle } from '@ibiz-template/core';
|
|
6
6
|
|
|
7
7
|
"use strict";
|
|
8
8
|
const PanelButton = /* @__PURE__ */ defineComponent({
|
|
@@ -4,9 +4,9 @@ var vue = require('vue');
|
|
|
4
4
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
5
5
|
var runtime = require('@ibiz-template/runtime');
|
|
6
6
|
var dayjs = require('dayjs');
|
|
7
|
+
var core = require('@ibiz-template/core');
|
|
7
8
|
var index = require('./components/custom-calendar/index.cjs');
|
|
8
9
|
require('./calendar.css');
|
|
9
|
-
var core = require('@ibiz-template/core');
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
function _isSlot(s) {
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
var vue = require('vue');
|
|
4
4
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
5
|
+
var core = require('@ibiz-template/core');
|
|
5
6
|
require('../interface/index.cjs');
|
|
6
7
|
require('../util/index.cjs');
|
|
7
8
|
var useCalendarDaily = require('./use-calendar-daily.cjs');
|
|
8
9
|
require('./calendar-daily.css');
|
|
9
|
-
var core = require('@ibiz-template/core');
|
|
10
10
|
var calendarDaily = require('../interface/calendar-daily.cjs');
|
|
11
11
|
var util = require('../util/util.cjs');
|
|
12
12
|
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
var vue = require('vue');
|
|
4
4
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
5
|
+
var core = require('@ibiz-template/core');
|
|
5
6
|
require('../interface/index.cjs');
|
|
6
7
|
var useCalendarWeek = require('./use-calendar-week.cjs');
|
|
7
8
|
require('./calendar-week.css');
|
|
8
9
|
require('../util/index.cjs');
|
|
9
|
-
var core = require('@ibiz-template/core');
|
|
10
10
|
var calendarWeek = require('../interface/calendar-week.cjs');
|
|
11
11
|
var util = require('../util/util.cjs');
|
|
12
12
|
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
var vue = require('vue');
|
|
4
4
|
var dayjs = require('dayjs');
|
|
5
5
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
6
|
+
var core = require('@ibiz-template/core');
|
|
6
7
|
var index$1 = require('../calendar-daily/index.cjs');
|
|
7
8
|
var index = require('../calendar-week/index.cjs');
|
|
8
9
|
var useCustomCalendar = require('./use-custom-calendar.cjs');
|
|
9
10
|
require('./custom-calendar.css');
|
|
10
11
|
require('../interface/index.cjs');
|
|
11
|
-
var core = require('@ibiz-template/core');
|
|
12
12
|
var customCalendar = require('../interface/custom-calendar.cjs');
|
|
13
13
|
|
|
14
14
|
"use strict";
|
|
@@ -5,10 +5,10 @@ var vue3Util = require('@ibiz-template/vue3-util');
|
|
|
5
5
|
var vueRouter = require('vue-router');
|
|
6
6
|
var runtime = require('@ibiz-template/runtime');
|
|
7
7
|
var ramda = require('ramda');
|
|
8
|
+
var core = require('@ibiz-template/core');
|
|
8
9
|
var drtab_controller = require('./drtab.controller.cjs');
|
|
9
10
|
require('./drtab.css');
|
|
10
11
|
var drtabControl_util = require('./drtab-control.util.cjs');
|
|
11
|
-
var core = require('@ibiz-template/core');
|
|
12
12
|
|
|
13
13
|
"use strict";
|
|
14
14
|
const DRTabControl = /* @__PURE__ */ vue.defineComponent({
|
|
@@ -35,7 +35,7 @@ function renderColumn(c, model, renderColumns, index) {
|
|
|
35
35
|
} = model;
|
|
36
36
|
const columnC = c.columns[columnName];
|
|
37
37
|
const columnState = c.state.columnStates.find((item) => item.key === columnName);
|
|
38
|
-
const widthFlexGrow = columnC.isAdaptiveColumn || index === renderColumns.length - 1;
|
|
38
|
+
const widthFlexGrow = columnC.isAdaptiveColumn || !c.hasAdaptiveColumn && index === renderColumns.length - 1;
|
|
39
39
|
const widthName = widthFlexGrow ? "min-width" : "width";
|
|
40
40
|
return vue.createVNode(vue.resolveComponent("el-table-column"), vue.mergeProps({
|
|
41
41
|
"label": model.caption,
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
var vue = require('vue');
|
|
4
4
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
5
5
|
var runtime = require('@ibiz-template/runtime');
|
|
6
|
+
var core = require('@ibiz-template/core');
|
|
6
7
|
var exportExcel = require('./export-excel/export-excel.cjs');
|
|
7
8
|
var shortCutButton = require('./short-cut-button/short-cut-button.cjs');
|
|
8
9
|
require('./toolbar.css');
|
|
9
|
-
var core = require('@ibiz-template/core');
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
function _isSlot(s) {
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
var vue = require('vue');
|
|
4
4
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
5
|
+
var core = require('@ibiz-template/core');
|
|
5
6
|
var authCaptcha_controller = require('./auth-captcha.controller.cjs');
|
|
6
7
|
require('./auth-captcha.css');
|
|
7
|
-
var core = require('@ibiz-template/core');
|
|
8
8
|
|
|
9
9
|
"use strict";
|
|
10
10
|
const AuthCaptcha = /* @__PURE__ */ vue.defineComponent({
|
|
@@ -4,9 +4,9 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var vue = require('vue');
|
|
6
6
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
7
|
+
var core = require('@ibiz-template/core');
|
|
7
8
|
var panelButton_controller = require('./panel-button.controller.cjs');
|
|
8
9
|
require('./panel-button.css');
|
|
9
|
-
var core = require('@ibiz-template/core');
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
const PanelButton = /* @__PURE__ */ vue.defineComponent({
|