@dazhicheng/ui 1.1.0 → 1.4.1
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/tt-form/src/form-render/form.vue.d.ts +1 -1
- package/dist/components/tt-form/src/index.vue.d.ts +4 -4
- package/dist/components/tt-form-adapter/component/index.d.ts +1 -1
- package/dist/components/tt-form-adapter/component/index.d.ts.map +1 -1
- package/dist/components/tt-form-adapter/index.d.ts +2 -2
- package/dist/components/tt-form-adapter/index.d.ts.map +1 -1
- package/dist/components/tt-loading/index.d.ts +17 -0
- package/dist/components/tt-loading/index.d.ts.map +1 -0
- package/dist/components/tt-loading/src/directive.d.ts +10 -0
- package/dist/components/tt-loading/src/directive.d.ts.map +1 -0
- package/dist/components/tt-loading/src/loading.vue.d.ts +13 -0
- package/dist/components/tt-loading/src/loading.vue.d.ts.map +1 -0
- package/dist/components/tt-loading/src/service.d.ts +26 -0
- package/dist/components/tt-loading/src/service.d.ts.map +1 -0
- package/dist/components/tt-loading/src/type.d.ts +21 -0
- package/dist/components/tt-loading/src/type.d.ts.map +1 -0
- package/dist/components/tt-part/index.d.ts +3 -3
- package/dist/components/tt-part/index.vue.d.ts +1 -1
- package/dist/components/tt-table/index.d.ts +128 -0
- package/dist/components/tt-table/index.d.ts.map +1 -0
- package/dist/components/tt-table/src/Table.vue.d.ts +1746 -0
- package/dist/components/tt-table/src/Table.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/TableForm.vue.d.ts +163 -0
- package/dist/components/tt-table/src/TableForm.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/componentMap.d.ts +9 -0
- package/dist/components/tt-table/src/componentMap.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/RowContext.d.ts +25 -0
- package/dist/components/tt-table/src/components/RowContext.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/TableAction.vue.d.ts +80 -0
- package/dist/components/tt-table/src/components/TableAction.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/TableButtons.d.ts +31 -0
- package/dist/components/tt-table/src/components/TableButtons.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +1685 -0
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/emits.d.ts +2 -0
- package/dist/components/tt-table/src/emits.d.ts.map +1 -0
- package/dist/components/tt-table/src/enum.d.ts +3 -0
- package/dist/components/tt-table/src/enum.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useCache.d.ts +21 -0
- package/dist/components/tt-table/src/hooks/useCache.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useCellArea.d.ts +16 -0
- package/dist/components/tt-table/src/hooks/useCellArea.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useColumns.d.ts +32 -0
- package/dist/components/tt-table/src/hooks/useColumns.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useDataSource.d.ts +30 -0
- package/dist/components/tt-table/src/hooks/useDataSource.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useFullscreen.d.ts +12 -0
- package/dist/components/tt-table/src/hooks/useFullscreen.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +1083 -0
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +103 -0
- package/dist/components/tt-table/src/hooks/usePagination.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +31 -0
- package/dist/components/tt-table/src/hooks/useRowSelection.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTable.d.ts +8 -0
- package/dist/components/tt-table/src/hooks/useTable.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableContext.d.ts +44 -0
- package/dist/components/tt-table/src/hooks/useTableContext.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableEvent.d.ts +102 -0
- package/dist/components/tt-table/src/hooks/useTableEvent.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableForm.d.ts +15 -0
- package/dist/components/tt-table/src/hooks/useTableForm.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts +12 -0
- package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableHeight.d.ts +16 -0
- package/dist/components/tt-table/src/hooks/useTableHeight.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts +82 -0
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableSlot.d.ts +12 -0
- package/dist/components/tt-table/src/hooks/useTableSlot.d.ts.map +1 -0
- package/dist/components/tt-table/src/props.d.ts +485 -0
- package/dist/components/tt-table/src/props.d.ts.map +1 -0
- package/dist/components/tt-table/src/toolProps.d.ts +102 -0
- package/dist/components/tt-table/src/toolProps.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/table.d.ts +493 -0
- package/dist/components/tt-table/src/types/table.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/tableAction.d.ts +27 -0
- package/dist/components/tt-table/src/types/tableAction.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/tableForm.d.ts +66 -0
- package/dist/components/tt-table/src/types/tableForm.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/tableTools.d.ts +66 -0
- package/dist/components/tt-table/src/types/tableTools.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/context.d.ts +19 -0
- package/dist/components/tt-table/src/utils/context.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/filters.d.ts +110 -0
- package/dist/components/tt-table/src/utils/filters.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/table-api.d.ts +269 -0
- package/dist/components/tt-table/src/utils/table-api.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/table-form-api.d.ts +89 -0
- package/dist/components/tt-table/src/utils/table-form-api.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/vxeTable.d.ts +29 -0
- package/dist/components/tt-table/src/utils/vxeTable.d.ts.map +1 -0
- package/dist/components/tt-validate/src/Field.d.ts +1 -1
- package/dist/components/tt-validate/src/Form.d.ts +1 -1
- package/dist/{css-CoEz66oB.js → css-CKklk3nV.js} +1 -0
- package/dist/{event-DSSsWzVU.js → event-BgJv9iWk.js} +1 -1
- package/dist/hooks/useSetup.d.ts +6 -0
- package/dist/hooks/useSetup.d.ts.map +1 -0
- package/dist/hooks/useTemplateSlot.d.ts +10 -0
- package/dist/hooks/useTemplateSlot.d.ts.map +1 -0
- package/dist/{icon-DbdhHmva.js → icon-C9BsRQqM.js} +2 -2
- package/dist/{index-C8UKPPHD.js → index-64J4mWP7.js} +2 -2
- package/dist/{index-hlMlaPX2.js → index-B3w7HVvP.js} +6 -6
- package/dist/{index-p03nbfgB.js → index-BQgaGlJA.js} +8 -8
- package/dist/{index-DHdDQVpg.js → index-Bq5RXWp8.js} +5 -5
- package/dist/{index-BXkpTX1Y.js → index-CB2v0taz.js} +1 -1
- package/dist/{index-DiNnJQ4b.js → index-C_u1XOy0.js} +7 -7
- package/dist/{index-BKMpeJMS.js → index-CdyRKSi4.js} +20 -20
- package/dist/index-CjcGE9Xi.js +2700 -0
- package/dist/{index-COVG9Wvh.js → index-CzDjdhem.js} +5 -5
- package/dist/{index-BhRFBLHz.js → index-D6x6ZHVk.js} +5 -5
- package/dist/{index-DfMIblcg.js → index-DHXyFJLO.js} +1 -1
- package/dist/{index-DVbQtqoV.js → index-DXGnUvsQ.js} +9 -9
- package/dist/{index-BgzdMRW8.js → index-DY3FsmvZ.js} +2 -2
- package/dist/{index-DIqpkfiH.js → index-Dp1l-3ez.js} +2 -2
- package/dist/{index-my6Z5v2z.js → index-LRY3g1Bz.js} +6 -6
- package/dist/{index-qZ-AAxXa.js → index-hI7UMWGr.js} +1 -1
- package/dist/index-iFd1yQ1C.js +55785 -0
- package/dist/index.d.ts +3 -11
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +25 -17
- package/dist/panel-time-pick.vue2-C7R5HGb8.js +2026 -0
- package/dist/style.css +1 -1
- package/dist/{use-form-common-props-DkpXv1AY.js → use-form-common-props-CDmM4Wn1.js} +1 -1
- package/dist/{use-form-item-bliFpQLk.js → use-form-item-Bv38v7TO.js} +2 -2
- package/dist/util-CWdgKsYq.js +2259 -0
- package/package.json +9 -9
- package/dist/index-1F8harWZ.js +0 -1982
- package/dist/index-D8_UEqsc.js +0 -2683
- package/dist/index-DdEvRX8w.js +0 -47929
- package/dist/panel-time-pick.vue2-D4HGRRie.js +0 -1602
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { u as Y } from "./index-
|
|
2
|
-
import { g as W, U as D, C as F, a as B, o as Ve, d as j } from "./index-
|
|
3
|
-
import { e as J, l as w, u as Z, f as Le, g as P, j as ee, d as le, n as $, h as Q, b as Se, a as G, w as Ee, o as ae } from "./use-form-common-props-
|
|
1
|
+
import { u as Y } from "./index-CB2v0taz.js";
|
|
2
|
+
import { g as W, U as D, C as F, a as B, o as Ve, d as j } from "./index-iFd1yQ1C.js";
|
|
3
|
+
import { e as J, l as w, u as Z, f as Le, g as P, j as ee, d as le, n as $, h as Q, b as Se, a as G, w as Ee, o as ae } from "./use-form-common-props-CDmM4Wn1.js";
|
|
4
4
|
import { inject as S, computed as h, getCurrentInstance as te, watch as ne, nextTick as oe, ref as O, toRaw as X, defineComponent as K, useSlots as ue, createBlock as T, openBlock as V, resolveDynamicComponent as A, unref as r, normalizeClass as L, withCtx as se, createElementVNode as N, createElementBlock as I, createCommentVNode as U, withDirectives as ie, mergeProps as M, isRef as re, withModifiers as de, vModelCheckbox as ce, renderSlot as R, Fragment as ve, createTextVNode as be, toDisplayString as me, normalizeStyle as Be, provide as Ie, toRefs as Ne, renderList as De } from "vue";
|
|
5
|
-
import { u as _, a as fe } from "./use-form-item-
|
|
5
|
+
import { u as _, a as fe } from "./use-form-item-Bv38v7TO.js";
|
|
6
6
|
import { isEqual as he, pick as Ge, omit as ze } from "lodash-es";
|
|
7
|
-
import { u as z } from "./index-
|
|
7
|
+
import { u as z } from "./index-hI7UMWGr.js";
|
|
8
8
|
const ke = {
|
|
9
9
|
/**
|
|
10
10
|
* @description binding value
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { defineComponent as W, inject as ke, computed as f, ref as X, createElementBlock as _e, createCommentVNode as Te, openBlock as he, normalizeClass as d, unref as s, createElementVNode as p, toDisplayString as C, createVNode as O, nextTick as Pe, provide as De, mergeProps as Ee } from "vue";
|
|
2
|
-
import { d as Y, a as z, j as P, U as G } from "./index-
|
|
3
|
-
import { t as Se, P as Ce, u as Oe, _ as Q, a as Re, b as Ae, c as we, d as Ve, e as xe, D as Me, f as Ie, g as ye } from "./panel-time-pick.vue2-
|
|
4
|
-
import { o as ta, q as na, R as sa, h as oa, i as la, j as ra, k as ia, l as ca, m as ua, n as da, p as ma, r as pa, w as va, x as fa, s as ba, v as ga } from "./panel-time-pick.vue2-
|
|
2
|
+
import { d as Y, a as z, j as P, U as G } from "./index-iFd1yQ1C.js";
|
|
3
|
+
import { t as Se, P as Ce, u as Oe, _ as Q, a as Re, b as Ae, c as we, d as Ve, e as xe, D as Me, f as Ie, g as ye } from "./panel-time-pick.vue2-C7R5HGb8.js";
|
|
4
|
+
import { o as ta, q as na, R as sa, h as oa, i as la, j as ra, k as ia, l as ca, m as ua, n as da, p as ma, r as pa, w as va, x as fa, s as ba, v as ga } from "./panel-time-pick.vue2-C7R5HGb8.js";
|
|
5
5
|
import { union as y } from "lodash-es";
|
|
6
|
-
import { b as Ne, a as Ke, w as Ue } from "./use-form-common-props-
|
|
6
|
+
import { b as Ne, a as Ke, w as Ue } from "./use-form-common-props-CDmM4Wn1.js";
|
|
7
7
|
import { u as Fe } from "./index-BQfVaV7A.js";
|
|
8
|
-
import { g as Le, E as He } from "./event-
|
|
8
|
+
import { g as Le, E as He } from "./event-BgJv9iWk.js";
|
|
9
9
|
const $e = Ne({
|
|
10
10
|
...Se,
|
|
11
11
|
parsedValue: {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { ref as Q, computed as _, unref as e, watch as Pe, nextTick as _e, defineComponent as Ne, inject as ge, renderSlot as ue, createVNode as T, onBeforeUnmount as gt, createElementBlock as G, openBlock as B, normalizeClass as f, createElementVNode as A, createCommentVNode as re, Fragment as Me, renderList as $e, toDisplayString as me, withKeys as Re, withModifiers as ga, useAttrs as nt, useSlots as Ja, toRef as Oe, withDirectives as Ce, withCtx as ie, vShow as Te, createBlock as De, createTextVNode as wa, getCurrentInstance as lt, reactive as st, toRefs as wt, provide as Da, mergeProps as Ka, isVNode as rt } from "vue";
|
|
2
2
|
import { flatten as Dt, isEqual as Ct, omit as Pt } from "lodash-es";
|
|
3
|
-
import {
|
|
4
|
-
import { y as Vt, r as ot, P as je, l as it, D as ut, k as dt, o as qa, d as za, R as Mt, z as $t, g as Ot, c as xt, e as Rt, q as Nt, f as Yt } from "./panel-time-pick.vue2-
|
|
5
|
-
import { b as we, a as pe, j as $a, g as Tt, w as ct } from "./use-form-common-props-
|
|
6
|
-
import { ElButton as Ca } from "./index-
|
|
7
|
-
import { E as ea } from "./index-
|
|
8
|
-
import { h as Pa, E as fe } from "./index-
|
|
3
|
+
import { A as Ue, B as ze, a as Be, j as L, g as St, d as Ee, H as Ke, J as Wa, K as ka, L as We, i as ja, U as Ua } from "./index-iFd1yQ1C.js";
|
|
4
|
+
import { y as Vt, r as ot, P as je, l as it, D as ut, k as dt, o as qa, d as za, R as Mt, z as $t, g as Ot, c as xt, e as Rt, q as Nt, f as Yt } from "./panel-time-pick.vue2-C7R5HGb8.js";
|
|
5
|
+
import { b as we, a as pe, j as $a, g as Tt, w as ct } from "./use-form-common-props-CDmM4Wn1.js";
|
|
6
|
+
import { ElButton as Ca } from "./index-LRY3g1Bz.js";
|
|
7
|
+
import { E as ea } from "./index-C_u1XOy0.js";
|
|
8
|
+
import { h as Pa, E as fe } from "./index-64J4mWP7.js";
|
|
9
9
|
import { u as xe } from "./index-BQfVaV7A.js";
|
|
10
|
-
import {
|
|
11
|
-
import { C as Ha } from "./index-
|
|
12
|
-
import { g as _t, E as ye } from "./event-
|
|
10
|
+
import { d as ke, e as ia } from "./util-CWdgKsYq.js";
|
|
11
|
+
import { C as Ha } from "./index-Dp1l-3ez.js";
|
|
12
|
+
import { g as _t, E as ye } from "./event-BgJv9iWk.js";
|
|
13
13
|
const Bt = [
|
|
14
14
|
"year",
|
|
15
15
|
"years",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isClient as E, useEventListener as d } from "@vueuse/core";
|
|
2
2
|
import { getCurrentInstance as T, shallowRef as w, ref as g, watch as F, unref as v, onMounted as I, nextTick as y } from "vue";
|
|
3
|
-
import { i as N } from "./use-form-common-props-
|
|
4
|
-
import { i as h } from "./index-
|
|
3
|
+
import { i as N } from "./use-form-common-props-CDmM4Wn1.js";
|
|
4
|
+
import { i as h } from "./index-iFd1yQ1C.js";
|
|
5
5
|
const U = () => E && /firefox/i.test(window.navigator.userAgent), D = () => E && /android/i.test(window.navigator.userAgent), A = (t) => typeof Element > "u" ? !1 : t instanceof Element, x = (t) => {
|
|
6
6
|
if (t.tabIndex > 0 || t.tabIndex === 0 && t.getAttribute("tabIndex") !== null)
|
|
7
7
|
return !0;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { isClient as g } from "@vueuse/core";
|
|
2
|
-
import { a as x } from "./index-
|
|
3
|
-
import { i as C } from "./use-form-common-props-
|
|
2
|
+
import { a as x } from "./index-iFd1yQ1C.js";
|
|
3
|
+
import { i as C } from "./use-form-common-props-CDmM4Wn1.js";
|
|
4
4
|
const s = /* @__PURE__ */ new Map();
|
|
5
5
|
if (g) {
|
|
6
6
|
let e;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { l as ft, d as D } from "./index-
|
|
2
|
-
import { b as ut, a as Y, u as lt, h as ct, j as tt, w as ht, o as dt } from "./use-form-common-props-
|
|
3
|
-
import { i as W } from "./icon-
|
|
1
|
+
import { l as ft, d as D } from "./index-iFd1yQ1C.js";
|
|
2
|
+
import { b as ut, a as Y, u as lt, h as ct, j as tt, w as ht, o as dt } from "./use-form-common-props-CDmM4Wn1.js";
|
|
3
|
+
import { i as W } from "./icon-C9BsRQqM.js";
|
|
4
4
|
import { getCurrentInstance as gt, inject as et, ref as rt, computed as g, useSlots as bt, Text as vt, defineComponent as at, createBlock as B, openBlock as x, resolveDynamicComponent as N, mergeProps as pt, unref as v, withCtx as C, createElementBlock as $, createCommentVNode as U, Fragment as mt, renderSlot as _, normalizeClass as z, provide as yt, reactive as kt, toRef as q } from "vue";
|
|
5
|
-
import { E as K } from "./index-
|
|
6
|
-
import { u as xt } from "./index-
|
|
7
|
-
import { u as St } from "./use-form-item-
|
|
5
|
+
import { E as K } from "./index-64J4mWP7.js";
|
|
6
|
+
import { u as xt } from "./index-hI7UMWGr.js";
|
|
7
|
+
import { u as St } from "./use-form-item-Bv38v7TO.js";
|
|
8
8
|
const Mt = [
|
|
9
9
|
"default",
|
|
10
10
|
"primary",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { watch as m, unref as p } from "vue";
|
|
2
|
-
import { d as u } from "./use-form-common-props-
|
|
2
|
+
import { d as u } from "./use-form-common-props-CDmM4Wn1.js";
|
|
3
3
|
const c = ({ from: e, replacement: t, scope: r, version: a, ref: i, type: o = "API" }, s) => {
|
|
4
4
|
m(
|
|
5
5
|
() => p(s),
|