jplan-pack 0.4.42 → 0.4.44

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,6 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ editAll: (...args: any[]) => void;
3
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ onEditAll?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
+ export default _default;
@@ -0,0 +1,39 @@
1
+ import { Metadata } from '../../../types';
2
+ declare function __VLS_template(): {
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ attrs: Partial<{}>;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{
11
+ id?: {
12
+ title: string;
13
+ key: keyof Metadata;
14
+ };
15
+ metadata: Metadata & any;
16
+ readonly: boolean;
17
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
18
+ onSave: () => any;
19
+ onCancel: () => any;
20
+ }, string, import('vue').PublicProps, Readonly<{
21
+ id?: {
22
+ title: string;
23
+ key: keyof Metadata;
24
+ };
25
+ metadata: Metadata & any;
26
+ readonly: boolean;
27
+ }> & Readonly<{
28
+ onOnSave?: (() => any) | undefined;
29
+ onOnCancel?: (() => any) | undefined;
30
+ }>, {
31
+ readonly: boolean;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
33
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
34
+ export default _default;
35
+ type __VLS_WithTemplateSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
@@ -2,6 +2,7 @@ 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 DeleteButton } from './DeleteButton';
5
+ import { default as EditButton } from './EditButton';
5
6
  import { default as DotsMenu } from './DotsMenu';
6
7
  import { default as UiTable } from './table/UiTable';
7
8
  import { default as ColumnSettingsDialog } from './table/ColumnSettingsDialog';
@@ -15,9 +16,10 @@ import { default as JSelect } from './form/JSelect';
15
16
  import { default as JTextArea } from './form/JTextArea';
16
17
  import { default as JForm } from './form/JForm';
17
18
  import { default as TabFormHeader } from './form/headless/TabFormHeader';
19
+ import { default as FormHeadless } from './form/headless/FormHeadless';
18
20
  import { default as SpinnerLoader } from './spinner/SpinnerLoader';
19
21
  import { TablerIcons } from './icon/tabler';
20
- export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, DeleteButton, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TabFormHeader, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, JAvatar, AvatarPicture, };
22
+ export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, DeleteButton, EditButton, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TabFormHeader, FormHeadless, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, JAvatar, AvatarPicture, };
21
23
  declare const _default: {
22
24
  IconSet: import('vue').DefineComponent<{
23
25
  item: import('..').IconType | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jplan-pack",
3
- "version": "0.4.42",
3
+ "version": "0.4.44",
4
4
  "main": "./dist/jplan-pack.cjs.js",
5
5
  "module": "./dist/jplan-pack.es.js",
6
6
  "types": "dist/types/index.d.ts",