jplan-pack 0.3.9 → 0.3.11
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.
@@ -0,0 +1,13 @@
|
|
1
|
+
import { VTextField } from 'vuetify/components';
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
3
|
+
variant?: VTextField["variant"];
|
4
|
+
closesearch?: () => void;
|
5
|
+
onSearch?: (query: string) => void;
|
6
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
7
|
+
variant?: VTextField["variant"];
|
8
|
+
closesearch?: () => void;
|
9
|
+
onSearch?: (query: string) => void;
|
10
|
+
}> & Readonly<{}>, {
|
11
|
+
variant: VTextField["variant"];
|
12
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
13
|
+
export default _default;
|
@@ -2,8 +2,8 @@ import { default as CopyButton } from './CopyButton';
|
|
2
2
|
import { default as JIconBtn } from './JIconBtn';
|
3
3
|
import { default as JBtn } from './JBtn';
|
4
4
|
import { default as DotsMenu } from './DotsMenu';
|
5
|
-
import { default as IconSet } from './icon/IconSet';
|
6
5
|
import { default as UiTable } from './table/UiTable';
|
6
|
+
import { default as ColumnSettingsDialog } from './table/ColumnSettingsDialog';
|
7
7
|
import { default as ParentCard } from './ParentCard';
|
8
8
|
import { default as JDialog } from './JDialog';
|
9
9
|
import { default as ConfirmDialog } from './ConfirmDialog';
|
@@ -11,4 +11,27 @@ import { default as JTextField } from './JTextField';
|
|
11
11
|
import { default as JSelect } from './JSelect';
|
12
12
|
import { default as JTextArea } from './JTextArea';
|
13
13
|
import { TablerIcons } from './icon/tabler';
|
14
|
-
export {
|
14
|
+
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, TablerIcons, ParentCard, ColumnSettingsDialog, };
|
15
|
+
declare const _default: {
|
16
|
+
IconSet: import('vue').DefineComponent<{
|
17
|
+
item: import('..').IconType | string;
|
18
|
+
level?: number;
|
19
|
+
size?: number;
|
20
|
+
stroke?: number | string;
|
21
|
+
color?: string;
|
22
|
+
svg?: string | null;
|
23
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
24
|
+
item: import('..').IconType | string;
|
25
|
+
level?: number;
|
26
|
+
size?: number;
|
27
|
+
stroke?: number | string;
|
28
|
+
color?: string;
|
29
|
+
svg?: string | null;
|
30
|
+
}> & Readonly<{}>, {
|
31
|
+
size: number;
|
32
|
+
svg: string | null;
|
33
|
+
level: number;
|
34
|
+
stroke: number | string;
|
35
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
36
|
+
};
|
37
|
+
export default _default;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { UiTableHeader } from '../../types';
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
3
|
+
columns: UiTableHeader[];
|
4
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
5
|
+
columns: UiTableHeader[];
|
6
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
7
|
+
export default _default;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jplan-pack",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.11",
|
4
4
|
"main": "./dist/jplan-pack.cjs.js",
|
5
5
|
"module": "./dist/jplan-pack.es.js",
|
6
6
|
"types": "dist/types/index.d.ts",
|
@@ -28,6 +28,7 @@
|
|
28
28
|
"axios": "^1.7.7",
|
29
29
|
"lodash": "^4.17.21",
|
30
30
|
"pinia": "^2.2.6",
|
31
|
+
"vue-draggable-next": "^2.2.1",
|
31
32
|
"vue-tabler-icons": "^2.21.0"
|
32
33
|
},
|
33
34
|
"peerDependencies": {
|