sprof 0.2.7 → 0.2.9
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/{ExtractsList-BNHHbmEu.js → ExtractsList-CCcvo_02.js} +1 -1
- package/dist/core/auth/Auth.d.ts +1 -1
- package/dist/core/components/GeneralItem.vue.d.ts +1 -1
- package/dist/core/components/InfoItem.vue.d.ts +1 -1
- package/dist/core/components/RemoteSearch.stories.d.ts +20 -20
- package/dist/core/components/atoms/PDateInput/PDateInput.stories.d.ts +569 -0
- package/dist/core/components/atoms/PDateInput/PDateInput.test.d.ts +1 -0
- package/dist/core/components/atoms/PDateInput/PDateInput.vue.d.ts +77 -0
- package/dist/core/components/atoms/PDialog/PDialog.stories.d.ts +6 -6
- package/dist/core/components/atoms/PDialog/PDialog.vue.d.ts +1 -1
- package/dist/core/components/atoms/PFlex/PFlex.stories.d.ts +12 -12
- package/dist/core/components/atoms/PFlex/PFlex.vue.d.ts +2 -2
- package/dist/core/components/atoms/PHint/PHint.stories.d.ts +34 -0
- package/dist/core/components/atoms/PHint/PHint.test.d.ts +1 -0
- package/dist/core/components/atoms/PHint/PHint.vue.d.ts +5 -0
- package/dist/core/components/atoms/PInput/PInput.stories.d.ts +6 -6
- package/dist/core/components/atoms/PInput/PInput.vue.d.ts +1 -1
- package/dist/core/components/atoms/PLabelField/PLabelField.stories.d.ts +6 -6
- package/dist/core/components/atoms/PLabelField/PLabelField.vue.d.ts +1 -1
- package/dist/core/components/atoms/POptionsListSingle/POptionsListSingle.stories.d.ts +31 -0
- package/dist/core/components/atoms/POptionsListSingle/POptionsListSingle.test.d.ts +1 -0
- package/dist/core/components/atoms/POpts/POpts.test.d.ts +1 -0
- package/dist/core/components/atoms/POpts/POpts.vue.d.ts +28 -0
- package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +6 -6
- package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +1 -1
- package/dist/core/components/atoms/PString/PString.stories.d.ts +2 -2
- package/dist/core/components/atoms/PString/PString.vue.d.ts +1 -1
- package/dist/core/components/atoms/PTableToggle/PTableToggle.test.d.ts +1 -0
- package/dist/core/components/atoms/PTableToggle/PTableToggle.vue.d.ts +12 -0
- package/dist/core/components/atoms/PTooltip/PTooltip.stories.d.ts +141 -7
- package/dist/core/components/atoms/PTooltip/PTooltip.vue.d.ts +4 -3
- package/dist/core/components/atoms/index.d.ts +6 -1
- package/dist/core/components/molecules/PCard/PCard.stories.d.ts +801 -0
- package/dist/core/components/molecules/PCard/PCard.test.d.ts +1 -0
- package/dist/core/components/molecules/PCard/PCard.vue.d.ts +112 -0
- package/dist/core/components/molecules/PCrudList/PCrudList.stories.d.ts +720 -0
- package/dist/core/components/molecules/PCrudList/PCrudList.test.d.ts +1 -0
- package/dist/core/components/molecules/PCrudList/PCrudList.vue.d.ts +137 -0
- package/dist/core/components/molecules/PEditDialog/PEditDialog.stories.d.ts +243 -0
- package/dist/core/components/molecules/PEditDialog/PEditDialog.test.d.ts +1 -0
- package/dist/core/components/molecules/PEditDialog/PEditDialog.vue.d.ts +29 -0
- package/dist/core/components/molecules/PEditDialog/pEditDialogProps.d.ts +10 -0
- package/dist/core/components/molecules/index.d.ts +4 -1
- package/dist/core/components/organisms/PAuthForm/PAuthForm.stories.d.ts +10 -10
- package/dist/core/components/organisms/PAuthForm/PAuthForm.vue.d.ts +5 -5
- package/dist/core/helpers/index.d.ts +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/interfaces/index.d.ts +34 -0
- package/dist/core/store/index.d.ts +24 -24
- package/dist/core/ui/AdminUI.d.ts +4 -4
- package/dist/global-components.d.ts +8 -0
- package/dist/index-Bwtms4B9.js +19392 -0
- package/dist/index.d.ts +9 -0
- package/dist/sprof.js +29 -21
- package/dist/sprof.umd.cjs +23 -14
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/index-T6suvcZB.js +0 -14184
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as d, resolveComponent as l, openBlock as i, createElementBlock as C, Fragment as P, createVNode as m, 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-
|
|
2
|
+
import { _ as f, P as w } from "./index-Bwtms4B9.js";
|
|
3
3
|
import "quasar";
|
|
4
4
|
const B = /* @__PURE__ */ d({
|
|
5
5
|
__name: "ExtractCreateForm",
|
package/dist/core/auth/Auth.d.ts
CHANGED
|
@@ -258,7 +258,7 @@ declare class Auth<UserT> {
|
|
|
258
258
|
AllowLogout: () => void;
|
|
259
259
|
readonly IsAuth: boolean;
|
|
260
260
|
readonly User: import('vue').UnwrapRef<UserT> | undefined;
|
|
261
|
-
SetUserConstructor: (c: import('../helpers/Classes').Constructable<import('../interfaces
|
|
261
|
+
SetUserConstructor: (c: import('../helpers/Classes').Constructable<import('../interfaces').IWithId>) => void;
|
|
262
262
|
SetUser: (u: UserT) => void;
|
|
263
263
|
SetState: (authInfo: import('../types/AuthInfo').AuthInfo) => void;
|
|
264
264
|
Logout: () => void;
|
|
@@ -106,8 +106,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
106
106
|
margin: string;
|
|
107
107
|
height: string;
|
|
108
108
|
fontSize: string;
|
|
109
|
-
background: string;
|
|
110
109
|
borderColor: string;
|
|
110
|
+
background: string;
|
|
111
111
|
scale: boolean;
|
|
112
112
|
ready: string;
|
|
113
113
|
withIcon: boolean;
|
|
@@ -207,8 +207,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
207
207
|
height: string;
|
|
208
208
|
maxWidth: string;
|
|
209
209
|
minWidth: string;
|
|
210
|
-
background: string;
|
|
211
210
|
borderColor: string;
|
|
211
|
+
background: string;
|
|
212
212
|
customClass: string;
|
|
213
213
|
openWidth: string;
|
|
214
214
|
openHeight: string;
|
|
@@ -114,10 +114,10 @@ declare const _default: {
|
|
|
114
114
|
};
|
|
115
115
|
suggestions: {
|
|
116
116
|
type: {
|
|
117
|
-
(arrayLength: number): import('../interfaces
|
|
118
|
-
(...items: import('../interfaces
|
|
119
|
-
new (arrayLength: number): import('../interfaces
|
|
120
|
-
new (...items: import('../interfaces
|
|
117
|
+
(arrayLength: number): import('../interfaces').ISearchObject[];
|
|
118
|
+
(...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
119
|
+
new (arrayLength: number): import('../interfaces').ISearchObject[];
|
|
120
|
+
new (...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
121
121
|
isArray(arg: any): arg is any[];
|
|
122
122
|
readonly prototype: any[];
|
|
123
123
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
@@ -155,7 +155,7 @@ declare const _default: {
|
|
|
155
155
|
width: string | number;
|
|
156
156
|
modelValue: string;
|
|
157
157
|
searchFunc: Function;
|
|
158
|
-
suggestions: import('../interfaces
|
|
158
|
+
suggestions: import('../interfaces').ISearchObject[];
|
|
159
159
|
maxHeightResultList: string;
|
|
160
160
|
zIndexResultList: string;
|
|
161
161
|
boxShadowResultList: string;
|
|
@@ -177,10 +177,10 @@ declare const _default: {
|
|
|
177
177
|
};
|
|
178
178
|
suggestions: {
|
|
179
179
|
type: {
|
|
180
|
-
(arrayLength: number): import('../interfaces
|
|
181
|
-
(...items: import('../interfaces
|
|
182
|
-
new (arrayLength: number): import('../interfaces
|
|
183
|
-
new (...items: import('../interfaces
|
|
180
|
+
(arrayLength: number): import('../interfaces').ISearchObject[];
|
|
181
|
+
(...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
182
|
+
new (arrayLength: number): import('../interfaces').ISearchObject[];
|
|
183
|
+
new (...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
184
184
|
isArray(arg: any): arg is any[];
|
|
185
185
|
readonly prototype: any[];
|
|
186
186
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
@@ -215,7 +215,7 @@ declare const _default: {
|
|
|
215
215
|
width: string | number;
|
|
216
216
|
modelValue: string;
|
|
217
217
|
searchFunc: Function;
|
|
218
|
-
suggestions: import('../interfaces
|
|
218
|
+
suggestions: import('../interfaces').ISearchObject[];
|
|
219
219
|
maxHeightResultList: string;
|
|
220
220
|
zIndexResultList: string;
|
|
221
221
|
boxShadowResultList: string;
|
|
@@ -374,10 +374,10 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
|
|
|
374
374
|
};
|
|
375
375
|
suggestions: {
|
|
376
376
|
type: {
|
|
377
|
-
(arrayLength: number): import('../interfaces
|
|
378
|
-
(...items: import('../interfaces
|
|
379
|
-
new (arrayLength: number): import('../interfaces
|
|
380
|
-
new (...items: import('../interfaces
|
|
377
|
+
(arrayLength: number): import('../interfaces').ISearchObject[];
|
|
378
|
+
(...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
379
|
+
new (arrayLength: number): import('../interfaces').ISearchObject[];
|
|
380
|
+
new (...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
381
381
|
isArray(arg: any): arg is any[];
|
|
382
382
|
readonly prototype: any[];
|
|
383
383
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
@@ -415,7 +415,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
|
|
|
415
415
|
width: string | number;
|
|
416
416
|
modelValue: string;
|
|
417
417
|
searchFunc: Function;
|
|
418
|
-
suggestions: import('../interfaces
|
|
418
|
+
suggestions: import('../interfaces').ISearchObject[];
|
|
419
419
|
maxHeightResultList: string;
|
|
420
420
|
zIndexResultList: string;
|
|
421
421
|
boxShadowResultList: string;
|
|
@@ -437,10 +437,10 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
|
|
|
437
437
|
};
|
|
438
438
|
suggestions: {
|
|
439
439
|
type: {
|
|
440
|
-
(arrayLength: number): import('../interfaces
|
|
441
|
-
(...items: import('../interfaces
|
|
442
|
-
new (arrayLength: number): import('../interfaces
|
|
443
|
-
new (...items: import('../interfaces
|
|
440
|
+
(arrayLength: number): import('../interfaces').ISearchObject[];
|
|
441
|
+
(...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
442
|
+
new (arrayLength: number): import('../interfaces').ISearchObject[];
|
|
443
|
+
new (...items: import('../interfaces').ISearchObject[]): import('../interfaces').ISearchObject[];
|
|
444
444
|
isArray(arg: any): arg is any[];
|
|
445
445
|
readonly prototype: any[];
|
|
446
446
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
@@ -475,7 +475,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
|
|
|
475
475
|
width: string | number;
|
|
476
476
|
modelValue: string;
|
|
477
477
|
searchFunc: Function;
|
|
478
|
-
suggestions: import('../interfaces
|
|
478
|
+
suggestions: import('../interfaces').ISearchObject[];
|
|
479
479
|
maxHeightResultList: string;
|
|
480
480
|
zIndexResultList: string;
|
|
481
481
|
boxShadowResultList: string;
|