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
package/dist/index.d.ts
CHANGED
|
@@ -7,11 +7,20 @@ export { default as PBadge } from './core/components/atoms/PBadge/PBadge.vue';
|
|
|
7
7
|
export { default as PButton } from './core/components/atoms/PButton/PButton.vue';
|
|
8
8
|
export { default as PCheckBox } from './core/components/atoms/PCheckbox/PCheckBox.vue';
|
|
9
9
|
export { default as PChip } from './core/components/atoms/PChip/PChip.vue';
|
|
10
|
+
export { default as PDateInput } from './core/components/atoms/PDateInput/PDateInput.vue';
|
|
10
11
|
export { default as PDialog } from './core/components/atoms/PDialog/PDialog.vue';
|
|
12
|
+
export { default as PHint } from './core/components/atoms/PHint/PHint.vue';
|
|
11
13
|
export { default as PInput } from './core/components/atoms/PInput/PInput.vue';
|
|
14
|
+
export { default as POptionsListSingle } from './core/components/atoms/POptionsListSingle/POptionsListSingle.vue';
|
|
15
|
+
export { default as POpts } from './core/components/atoms/POpts/POpts.vue';
|
|
12
16
|
export { default as PSelect } from './core/components/atoms/PSelect/PSelect.vue';
|
|
17
|
+
export { default as PTableToggle } from './core/components/atoms/PTableToggle/PTableToggle.vue';
|
|
13
18
|
export { default as PToggle } from './core/components/atoms/PToggle/PToggle.vue';
|
|
19
|
+
export { default as PCard } from './core/components/molecules/PCard/PCard.vue';
|
|
20
|
+
export { default as PCrudList } from './core/components/molecules/PCrudList/PCrudList.vue';
|
|
21
|
+
export { default as PEditDialog } from './core/components/molecules/PEditDialog/PEditDialog.vue';
|
|
14
22
|
export type { AuthFormSettingsType } from './core/auth/index';
|
|
15
23
|
export { AuthButtonLogin, AuthButtonRefresh, AuthButtonRegister, AuthButtonRestore, AuthChunks, AuthFieldsIds, AuthFormSettings, AuthMethods, EmailField, LoginField, PasswordField, PasswordRepeatField, } from './core/auth/index';
|
|
24
|
+
export type { IAdminMenu } from './core/interfaces';
|
|
16
25
|
/** @internal Used by unplugin-auto-import configuration */
|
|
17
26
|
export declare const pfName: readonly ["PF", "PFM"];
|
package/dist/sprof.js
CHANGED
|
@@ -1,27 +1,35 @@
|
|
|
1
|
-
import { A as t, a as e, b as o, c as
|
|
1
|
+
import { A as t, a as e, b as o, c as i, d as P, e as u, f as l, g as n, E as d, L as h, h as g, i as r, j as p, k as A, l as B, m as F, n as C, o as f, p as m, P as L, q as R, r as S, s as c, t as k, u as w, v as x, w as D, x as E, y as I, z as T, B as b, C as M } from "./index-Bwtms4B9.js";
|
|
2
2
|
export {
|
|
3
3
|
t as AuthButtonLogin,
|
|
4
4
|
e as AuthButtonRefresh,
|
|
5
5
|
o as AuthButtonRegister,
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
6
|
+
i as AuthButtonRestore,
|
|
7
|
+
P as AuthChunks,
|
|
8
|
+
u as AuthFieldsIds,
|
|
9
|
+
l as AuthFormSettings,
|
|
10
|
+
n as AuthMethods,
|
|
11
|
+
d as EmailField,
|
|
12
|
+
h as LoginField,
|
|
13
|
+
g as PBadge,
|
|
14
|
+
r as PButton,
|
|
15
|
+
p as PCard,
|
|
15
16
|
A as PCheckBox,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
f as
|
|
20
|
-
m as
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
B as PChip,
|
|
18
|
+
F as PCrudList,
|
|
19
|
+
C as PDateInput,
|
|
20
|
+
f as PDialog,
|
|
21
|
+
m as PEditDialog,
|
|
22
|
+
L as PF,
|
|
23
|
+
R as PFM,
|
|
24
|
+
S as PHint,
|
|
25
|
+
c as PInput,
|
|
26
|
+
k as POptionsListSingle,
|
|
27
|
+
w as POpts,
|
|
28
|
+
x as PSelect,
|
|
29
|
+
D as PTableToggle,
|
|
30
|
+
E as PToggle,
|
|
31
|
+
I as PasswordField,
|
|
32
|
+
T as PasswordRepeatField,
|
|
33
|
+
b as installSprof,
|
|
34
|
+
M as pfName
|
|
27
35
|
};
|