jplan-pack 0.4.35 → 0.4.36
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 +24 -24
- package/dist/jplan-pack.es.js +19977 -17416
- package/dist/types/components/form/footer/CancelButton.d.ts +2 -2
- package/dist/types/components/form/headless/TabFormHeader.d.ts +23 -0
- package/dist/types/components/index.d.ts +2 -1
- package/dist/types/utils/helpers/dateFormat.d.ts +1 -0
- package/dist/types/utils/index.d.ts +2 -1
- package/package.json +2 -1
@@ -1,9 +1,9 @@
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
2
|
-
|
2
|
+
title?: string;
|
3
3
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
4
|
cancel: (...args: any[]) => void;
|
5
5
|
}, string, import('vue').PublicProps, Readonly<{
|
6
|
-
|
6
|
+
title?: string;
|
7
7
|
}> & Readonly<{
|
8
8
|
onCancel?: ((...args: any[]) => any) | undefined;
|
9
9
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
export type SaveForm = Promise<any | 'invalid'>;
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
3
|
+
id?: string;
|
4
|
+
readonly?: boolean;
|
5
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
6
|
+
cancel: () => any;
|
7
|
+
delete: () => any;
|
8
|
+
save: () => any;
|
9
|
+
"update:isEdition": (value: boolean) => any;
|
10
|
+
disable: () => any;
|
11
|
+
}, string, import('vue').PublicProps, Readonly<{
|
12
|
+
id?: string;
|
13
|
+
readonly?: boolean;
|
14
|
+
}> & Readonly<{
|
15
|
+
onCancel?: (() => any) | undefined;
|
16
|
+
onDelete?: (() => any) | undefined;
|
17
|
+
onSave?: (() => any) | undefined;
|
18
|
+
"onUpdate:isEdition"?: ((value: boolean) => any) | undefined;
|
19
|
+
onDisable?: (() => any) | undefined;
|
20
|
+
}>, {
|
21
|
+
readonly: boolean;
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
23
|
+
export default _default;
|
@@ -11,9 +11,10 @@ import { default as JTextField } from './form/JTextField';
|
|
11
11
|
import { default as JSelect } from './form/JSelect';
|
12
12
|
import { default as JTextArea } from './form/JTextArea';
|
13
13
|
import { default as JForm } from './form/JForm';
|
14
|
+
import { default as TabFormHeader } from './form/headless/TabFormHeader';
|
14
15
|
import { default as SpinnerLoader } from './spinner/SpinnerLoader';
|
15
16
|
import { TablerIcons } from './icon/tabler';
|
16
|
-
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, };
|
17
|
+
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TabFormHeader, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, };
|
17
18
|
declare const _default: {
|
18
19
|
IconSet: import('vue').DefineComponent<{
|
19
20
|
item: import('..').IconType | string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function dateFormat(date: Date | string | null | undefined): string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jplan-pack",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.36",
|
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
|
"@vue/runtime-dom": "^3.5.13",
|
29
29
|
"@vueuse/core": "^11.2.0",
|
30
30
|
"axios": "^1.7.9",
|
31
|
+
"date-fns": "^4.1.0",
|
31
32
|
"lodash": "^4.17.21",
|
32
33
|
"pinia": "^2.2.6",
|
33
34
|
"vue-draggable-next": "^2.2.1",
|