jplan-pack 0.4.36 → 0.4.37

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.
@@ -1,17 +1,24 @@
1
+ import { VBtn } from 'vuetify/components';
1
2
  declare const _default: import('vue').DefineComponent<{
2
3
  color: string;
4
+ variant?: VBtn["variant"];
3
5
  orientation: "x" | "y";
4
6
  options: {
5
- name: string;
6
- action: () => void;
7
+ name?: string;
8
+ action?: (...params: any[]) => any;
9
+ title?: string;
10
+ divider?: boolean;
7
11
  }[];
8
12
  size: number;
9
13
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
10
14
  color: string;
15
+ variant?: VBtn["variant"];
11
16
  orientation: "x" | "y";
12
17
  options: {
13
- name: string;
14
- action: () => void;
18
+ name?: string;
19
+ action?: (...params: any[]) => any;
20
+ title?: string;
21
+ divider?: boolean;
15
22
  }[];
16
23
  size: number;
17
24
  }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -0,0 +1,6 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ src: string;
3
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
4
+ src: string;
5
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
@@ -7,6 +7,7 @@ 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 JAvatar } from './JAvatar';
10
11
  import { default as JTextField } from './form/JTextField';
11
12
  import { default as JSelect } from './form/JSelect';
12
13
  import { default as JTextArea } from './form/JTextArea';
@@ -14,7 +15,7 @@ import { default as JForm } from './form/JForm';
14
15
  import { default as TabFormHeader } from './form/headless/TabFormHeader';
15
16
  import { default as SpinnerLoader } from './spinner/SpinnerLoader';
16
17
  import { TablerIcons } from './icon/tabler';
17
- export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TabFormHeader, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, };
18
+ export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TabFormHeader, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, JAvatar, };
18
19
  declare const _default: {
19
20
  IconSet: import('vue').DefineComponent<{
20
21
  item: import('..').IconType | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jplan-pack",
3
- "version": "0.4.36",
3
+ "version": "0.4.37",
4
4
  "main": "./dist/jplan-pack.cjs.js",
5
5
  "module": "./dist/jplan-pack.es.js",
6
6
  "types": "dist/types/index.d.ts",