@vtj/ui 0.8.92 → 0.8.93
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.mjs +3 -3
- package/dist/index.umd.js +3 -3
- package/package.json +4 -4
- package/types/components/action/Action.d.ts +52 -124
- package/types/components/action/Trigger.d.ts +7 -81
- package/types/components/action/hooks.d.ts +6 -6
- package/types/components/action/types.d.ts +3 -41
- package/types/components/action-bar/ActionBar.d.ts +37 -285
- package/types/components/action-bar/types.d.ts +5 -43
- package/types/components/attachment/Attachment.d.ts +10 -8
- package/types/components/container/Container.d.ts +10 -8
- package/types/components/container/types.d.ts +2 -2
- package/types/components/data-item/DataItem.d.ts +38 -36
- package/types/components/dialog/Dialog.d.ts +14 -16
- package/types/components/dialog/types.d.ts +2 -4
- package/types/components/dialog-form/DialogForm.d.ts +12 -11
- package/types/components/dialog-form/types.d.ts +2 -3
- package/types/components/dialog-grid/DialogGrid.d.ts +8 -6
- package/types/components/field/Field.d.ts +23 -25
- package/types/components/field/editors/SelectEditor.d.ts +8 -6
- package/types/components/field/types.d.ts +3 -5
- package/types/components/form/Form.d.ts +10 -8
- package/types/components/grid/Grid.d.ts +281 -295
- package/types/components/grid/hooks/useEditRender.d.ts +2 -2
- package/types/components/grid/hooks/useLoader.d.ts +251 -267
- package/types/components/grid/hooks/useProps.d.ts +44 -44
- package/types/components/grid/hooks/useState.d.ts +251 -267
- package/types/components/grid/props.d.ts +3 -4
- package/types/components/header/Header.d.ts +8 -6
- package/types/components/icon/Icon.d.ts +9 -11
- package/types/components/icon/types.d.ts +2 -4
- package/types/components/import-button/ImportButton.d.ts +6 -4
- package/types/components/input-unit/InputUnit.d.ts +4 -4
- package/types/components/input-unit/types.d.ts +1 -1
- package/types/components/list/List.d.ts +12 -10
- package/types/components/mask/Mask.d.ts +41 -39
- package/types/components/mask/components/Avatar.d.ts +4 -2
- package/types/components/mask/components/Brand.d.ts +7 -5
- package/types/components/mask/components/Content.d.ts +4 -2
- package/types/components/mask/components/Sidebar.d.ts +4 -2
- package/types/components/mask/components/Toolbar.d.ts +6 -4
- package/types/components/panel/Panel.d.ts +20 -328
- package/types/components/panel/types.d.ts +6 -170
- package/types/components/picker/Picker.d.ts +14 -341
- package/types/components/picker/props.d.ts +7 -176
- package/types/components/qr-code/QrCode.d.ts +6 -4
- package/types/components/query-form/QueryForm.d.ts +29 -27
- package/types/components/tabs/Tabs.d.ts +48 -222
- package/types/components/tabs/types.d.ts +1 -1
- package/types/components/test/Test.d.ts +36 -34
- package/types/install.d.ts +1 -1
- package/types/utils/util.d.ts +1 -1
- package/types/version.d.ts +2 -2
package/dist/index.mjs
CHANGED
|
@@ -8,10 +8,10 @@ import { useRouter as gd, RouterView as Sb, useRoute as Eh, routeLocationKey as
|
|
|
8
8
|
* Copyright (c) 2024, VTJ.PRO All rights reserved.
|
|
9
9
|
* @name @vtj/ui
|
|
10
10
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
11
|
-
* @version 0.8.
|
|
11
|
+
* @version 0.8.93
|
|
12
12
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
13
13
|
*/
|
|
14
|
-
const NI = "0.8.
|
|
14
|
+
const NI = "0.8.93", Ob = {
|
|
15
15
|
default: 14,
|
|
16
16
|
small: 12,
|
|
17
17
|
large: 18
|
|
@@ -22351,7 +22351,7 @@ function Zm(e, t) {
|
|
|
22351
22351
|
u = o.filter((g) => c.includes(g.value)).map((g) => g.label).join(",");
|
|
22352
22352
|
} else
|
|
22353
22353
|
u = o.find((m) => m.value === s)?.label;
|
|
22354
|
-
return [Nt(u
|
|
22354
|
+
return [Nt(u || s)];
|
|
22355
22355
|
}
|
|
22356
22356
|
const VR = {
|
|
22357
22357
|
...As,
|