jplan-pack 0.3.82 → 0.3.84

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,6 +1,6 @@
1
1
  export type JDialogType = {
2
2
  dialogId?: string;
3
- variant?: 'global' | 'confirm';
3
+ variant?: 'global' | 'confirm' | 'empty';
4
4
  title?: string;
5
5
  text?: string;
6
6
  onSave?: (...params: any) => any;
@@ -8,12 +8,14 @@ export type JDialogType = {
8
8
  width?: string;
9
9
  reference?: boolean;
10
10
  buttons?: boolean;
11
+ scrim?: string;
11
12
  };
12
13
  declare function __VLS_template(): {
13
14
  slots: {
14
15
  title?(_: {}): any;
15
16
  "heading-actions"?(_: {}): any;
16
17
  default?(_: {}): any;
18
+ default?(_: {}): any;
17
19
  footer?(_: {}): any;
18
20
  metadata?(_: {}): any;
19
21
  };
@@ -22,8 +24,9 @@ declare function __VLS_template(): {
22
24
  };
23
25
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
26
  declare const __VLS_component: import('vue').DefineComponent<JDialogType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<JDialogType> & Readonly<{}>, {
25
- variant: "global" | "confirm";
27
+ variant: "global" | "confirm" | "empty";
26
28
  width: string;
29
+ scrim: string;
27
30
  buttons: boolean;
28
31
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
32
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jplan-pack",
3
- "version": "0.3.82",
3
+ "version": "0.3.84",
4
4
  "main": "./dist/jplan-pack.cjs.js",
5
5
  "module": "./dist/jplan-pack.es.js",
6
6
  "types": "dist/types/index.d.ts",