sprof 0.2.16 → 0.2.18

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,5 +1,5 @@
1
1
  import { defineComponent as d, resolveComponent as m, openBlock as i, createElementBlock as C, Fragment as P, createVNode as l, unref as o, ref as u, createBlock as E, withCtx as k, createCommentVNode as v } from "vue";
2
- import { _ as f, P as w } from "./index-BHTU_vkN.js";
2
+ import { _ as f, P as w } from "./index-C9y_jQis.js";
3
3
  import "quasar";
4
4
  import "vuedraggable";
5
5
  const B = /* @__PURE__ */ d({
@@ -0,0 +1,69 @@
1
+ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ placeholder: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ disable: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ readonly: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ error: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ errorMessage: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ modelValue: {
27
+ type: globalThis.PropType<Date | null>;
28
+ };
29
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
30
+ "update:modelValue": (value: Date | null) => any;
31
+ }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
32
+ label: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ placeholder: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ disable: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ readonly: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ error: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ errorMessage: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
56
+ modelValue: {
57
+ type: globalThis.PropType<Date | null>;
58
+ };
59
+ }>> & Readonly<{
60
+ "onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
61
+ }>, {
62
+ error: boolean;
63
+ label: string;
64
+ disable: boolean;
65
+ readonly: boolean;
66
+ placeholder: string;
67
+ errorMessage: string;
68
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
69
+ export default _default;
@@ -4,6 +4,7 @@ import { default as PCheckBox } from './PCheckbox/PCheckBox.vue';
4
4
  import { default as PChip } from './PChip/PChip.vue';
5
5
  import { default as PDateInput } from './PDateInput/PDateInput.vue';
6
6
  import { default as PDatePicker } from './PDatePicker/PDatePicker.vue';
7
+ import { default as PDateTimeInput } from './PDateTimeInput/PDateTimeInput.vue';
7
8
  import { default as PDialog } from './PDialog/PDialog.vue';
8
9
  import { default as PFlex } from './PFlex/PFlex.vue';
9
10
  import { default as PHint } from './PHint/PHint.vue';
@@ -29,4 +30,4 @@ import { default as PTopSlider } from './PTopSlider/PTopSlider.vue';
29
30
  export default function install(app: {
30
31
  component: (a: string, b: unknown) => void;
31
32
  }): void;
32
- export { PBadge, PButton, PCheckBox, PChip, PDateInput, PDatePicker, PDialog, PFlex, PHint, PInput, PInputDate, PInputNumber, PLeftSlider, PList, PListItem, POptionsListSingle, POpts, PRadio, PRightSlider, PSelect, PSticky, PString, PTable, PTableToggle, PTextarea, PToggle, PTooltip, PTopSlider, };
33
+ export { PBadge, PButton, PCheckBox, PChip, PDateInput, PDatePicker, PDateTimeInput, PDialog, PFlex, PHint, PInput, PInputDate, PInputNumber, PLeftSlider, PList, PListItem, POptionsListSingle, POpts, PRadio, PRightSlider, PSelect, PSticky, PString, PTable, PTableToggle, PTextarea, PToggle, PTooltip, PTopSlider, };
@@ -0,0 +1,39 @@
1
+ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ title: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ store: {
7
+ type: globalThis.PropType<PF.H.BaseStore>;
8
+ required: true;
9
+ };
10
+ modelValue: {
11
+ type: globalThis.PropType<boolean>;
12
+ };
13
+ }>, {
14
+ opened: import('vue').ModelRef<boolean, string, boolean, boolean>;
15
+ toggle: () => void;
16
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
+ add: (item: unknown) => any;
18
+ close: () => any;
19
+ "update:modelValue": (value: boolean) => any;
20
+ }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
21
+ title: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ store: {
26
+ type: globalThis.PropType<PF.H.BaseStore>;
27
+ required: true;
28
+ };
29
+ modelValue: {
30
+ type: globalThis.PropType<boolean>;
31
+ };
32
+ }>> & Readonly<{
33
+ onAdd?: ((item: unknown) => any) | undefined;
34
+ onClose?: (() => any) | undefined;
35
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
36
+ }>, {
37
+ title: string;
38
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
39
+ export default _default;
@@ -4,6 +4,7 @@ import { default as VerticalCollapseContainer } from './Collapse/VerticalCollaps
4
4
  import { default as PAdd } from './PAdd/PAdd.vue';
5
5
  import { default as PContainer } from './PAdd/PContainer.vue';
6
6
  import { default as PContainerStickyHead } from './PAdd/PContainerStickyHead.vue';
7
+ import { default as PAddDialog } from './PAddDialog/PAddDialog.vue';
7
8
  import { default as PCard } from './PCard/PCard.vue';
8
9
  import { default as PCrudList } from './PCrudList/PCrudList.vue';
9
10
  import { default as PDel } from './PDel/PDel.vue';
@@ -12,4 +13,4 @@ import { default as PModal } from './PModal/PModal.vue';
12
13
  export default function install(app: {
13
14
  component: (a: string, b: unknown) => void;
14
15
  }): void;
15
- export { CollapseContainer, CollapseItem, PAdd, PCard, PContainer, PContainerStickyHead, PCrudList, PDel, PEditDialog, PModal, VerticalCollapseContainer, };
16
+ export { CollapseContainer, CollapseItem, PAdd, PAddDialog, PCard, PContainer, PContainerStickyHead, PCrudList, PDel, PEditDialog, PModal, VerticalCollapseContainer, };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -11,6 +11,7 @@ declare module 'vue' {
11
11
  PChip: typeof Atoms.PChip;
12
12
  PDateInput: typeof Atoms.PDateInput;
13
13
  PDatePicker: typeof Atoms.PDatePicker;
14
+ PDateTimeInput: typeof Atoms.PDateTimeInput;
14
15
  PDialog: typeof Atoms.PDialog;
15
16
  PFlex: typeof Atoms.PFlex;
16
17
  PHint: typeof Atoms.PHint;
@@ -36,6 +37,7 @@ declare module 'vue' {
36
37
  CollapseContainer: typeof Molecules.CollapseContainer;
37
38
  CollapseItem: typeof Molecules.CollapseItem;
38
39
  PAdd: typeof Molecules.PAdd;
40
+ PAddDialog: typeof Molecules.PAddDialog;
39
41
  PCard: typeof Molecules.PCard;
40
42
  PContainer: typeof Molecules.PContainer;
41
43
  PContainerStickyHead: typeof Molecules.PContainerStickyHead;