jplan-pack 0.4.44 → 0.4.45
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/jplan-pack.cjs.js +15 -15
- package/dist/jplan-pack.css +1 -1
- package/dist/jplan-pack.es.js +15596 -15560
- package/dist/types/components/ContextMenu.d.ts +17 -0
- package/dist/types/components/index.d.ts +2 -1
- package/package.json +1 -1
@@ -0,0 +1,17 @@
|
|
1
|
+
declare function __VLS_template(): {
|
2
|
+
slots: {
|
3
|
+
default?(_: {}): any;
|
4
|
+
actions?(_: {}): any;
|
5
|
+
};
|
6
|
+
refs: {};
|
7
|
+
attrs: Partial<{}>;
|
8
|
+
};
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
12
|
+
export default _default;
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
14
|
+
new (): {
|
15
|
+
$slots: S;
|
16
|
+
};
|
17
|
+
};
|
@@ -11,6 +11,7 @@ import { default as JDialog } from './JDialog';
|
|
11
11
|
import { default as ConfirmDialog } from './ConfirmDialog';
|
12
12
|
import { default as JAvatar } from './JAvatar';
|
13
13
|
import { default as AvatarPicture } from './AvatarPicture';
|
14
|
+
import { default as ContextMenu } from './ContextMenu';
|
14
15
|
import { default as JTextField } from './form/JTextField';
|
15
16
|
import { default as JSelect } from './form/JSelect';
|
16
17
|
import { default as JTextArea } from './form/JTextArea';
|
@@ -19,7 +20,7 @@ import { default as TabFormHeader } from './form/headless/TabFormHeader';
|
|
19
20
|
import { default as FormHeadless } from './form/headless/FormHeadless';
|
20
21
|
import { default as SpinnerLoader } from './spinner/SpinnerLoader';
|
21
22
|
import { TablerIcons } from './icon/tabler';
|
22
|
-
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, DeleteButton, EditButton, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TabFormHeader, FormHeadless, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, JAvatar, AvatarPicture, };
|
23
|
+
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, DeleteButton, EditButton, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TabFormHeader, FormHeadless, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, ContextMenu, JAvatar, AvatarPicture, };
|
23
24
|
declare const _default: {
|
24
25
|
IconSet: import('vue').DefineComponent<{
|
25
26
|
item: import('..').IconType | string;
|