jplan-pack 0.4.2 → 0.4.31
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 +10 -10
- package/dist/jplan-pack.css +1 -1
- package/dist/jplan-pack.es.js +1244 -1207
- package/dist/types/components/{JForm.d.ts → form/JForm.d.ts} +13 -8
- package/dist/types/components/form/footer/CancelButton.d.ts +10 -0
- package/dist/types/components/{FormMetadata.d.ts → form/footer/FormMetadata.d.ts} +1 -1
- package/dist/types/components/form/footer/SaveButton.d.ts +10 -0
- package/dist/types/components/index.d.ts +4 -4
- package/package.json +3 -2
- /package/dist/types/components/{JSelect.d.ts → form/JSelect.d.ts} +0 -0
- /package/dist/types/components/{JTextArea.d.ts → form/JTextArea.d.ts} +0 -0
- /package/dist/types/components/{JTextField.d.ts → form/JTextField.d.ts} +0 -0
@@ -1,30 +1,35 @@
|
|
1
|
-
import { Metadata } from '
|
1
|
+
import { Metadata } from '../../types';
|
2
2
|
declare function __VLS_template(): {
|
3
3
|
slots: {
|
4
4
|
default?(_: {}): any;
|
5
|
-
actions?(_: {}): any;
|
6
5
|
};
|
7
6
|
refs: {};
|
8
7
|
attrs: Partial<{}>;
|
9
8
|
};
|
10
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
11
10
|
declare const __VLS_component: import('vue').DefineComponent<{
|
12
|
-
title
|
11
|
+
title?: string;
|
13
12
|
metadata?: Metadata & any;
|
14
13
|
id?: {
|
15
14
|
title: string;
|
16
15
|
key: keyof Metadata;
|
17
16
|
};
|
18
|
-
|
19
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}
|
20
|
-
|
17
|
+
cancelReturn?: boolean;
|
18
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
19
|
+
onSave: () => any;
|
20
|
+
onCancel: () => any;
|
21
|
+
}, string, import('vue').PublicProps, Readonly<{
|
22
|
+
title?: string;
|
21
23
|
metadata?: Metadata & any;
|
22
24
|
id?: {
|
23
25
|
title: string;
|
24
26
|
key: keyof Metadata;
|
25
27
|
};
|
26
|
-
|
27
|
-
}> & Readonly<{
|
28
|
+
cancelReturn?: boolean;
|
29
|
+
}> & Readonly<{
|
30
|
+
onOnSave?: (() => any) | undefined;
|
31
|
+
onOnCancel?: (() => any) | undefined;
|
32
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
28
33
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
29
34
|
export default _default;
|
30
35
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
@@ -0,0 +1,10 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
2
|
+
cancelReturn?: boolean;
|
3
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
|
+
cancel: (...args: any[]) => void;
|
5
|
+
}, string, import('vue').PublicProps, Readonly<{
|
6
|
+
cancelReturn?: boolean;
|
7
|
+
}> & Readonly<{
|
8
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
9
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
10
|
+
export default _default;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
2
|
+
disabled?: boolean;
|
3
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
4
|
+
onSave: () => any;
|
5
|
+
}, string, import('vue').PublicProps, Readonly<{
|
6
|
+
disabled?: boolean;
|
7
|
+
}> & Readonly<{
|
8
|
+
onOnSave?: (() => any) | undefined;
|
9
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
10
|
+
export default _default;
|
@@ -7,10 +7,10 @@ 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';
|
10
|
-
import { default as JTextField } from './JTextField';
|
11
|
-
import { default as JSelect } from './JSelect';
|
12
|
-
import { default as JTextArea } from './JTextArea';
|
13
|
-
import { default as JForm } from './JForm';
|
10
|
+
import { default as JTextField } from './form/JTextField';
|
11
|
+
import { default as JSelect } from './form/JSelect';
|
12
|
+
import { default as JTextArea } from './form/JTextArea';
|
13
|
+
import { default as JForm } from './form/JForm';
|
14
14
|
import { TablerIcons } from './icon/tabler';
|
15
15
|
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TablerIcons, ParentCard, ColumnSettingsDialog, };
|
16
16
|
declare const _default: {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jplan-pack",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.31",
|
4
4
|
"main": "./dist/jplan-pack.cjs.js",
|
5
5
|
"module": "./dist/jplan-pack.es.js",
|
6
6
|
"types": "dist/types/index.d.ts",
|
@@ -21,11 +21,12 @@
|
|
21
21
|
"docs:serve": "vitepress serve docs"
|
22
22
|
},
|
23
23
|
"dependencies": {
|
24
|
+
"@azure/msal-browser": "^4.1.0",
|
24
25
|
"@tabler/icons-vue": "^3.21.0",
|
25
26
|
"@vitejs/plugin-vue": "^5.1.5",
|
26
27
|
"@vue/compiler-core": "^3.3.4",
|
27
28
|
"@vueuse/core": "^11.2.0",
|
28
|
-
"axios": "^1.7.
|
29
|
+
"axios": "^1.7.9",
|
29
30
|
"lodash": "^4.17.21",
|
30
31
|
"pinia": "^2.2.6",
|
31
32
|
"vue-draggable-next": "^2.2.1",
|
File without changes
|
File without changes
|
File without changes
|