sprof 0.2.2 → 0.2.4
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-DRZdaLvF.js → ExtractsList-CqMn_6Rp.js} +1 -1
- package/dist/core/components/atoms/PButton/PButton.stories.d.ts +6 -26
- package/dist/core/components/atoms/PButton/PButton.vue.d.ts +2 -6
- package/dist/core/components/atoms/PCheckbox/PCheckBox.stories.d.ts +2 -2
- package/dist/core/components/atoms/PCheckbox/PCheckBox.vue.d.ts +1 -1
- package/dist/core/components/atoms/PInput/PInput.stories.d.ts +140 -16
- package/dist/core/components/atoms/PInput/PInput.vue.d.ts +38 -4
- package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +88 -16
- package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +40 -4
- package/dist/core/components/organisms/PAuthForm/PAuthForm.stories.d.ts +102 -20
- package/dist/core/components/organisms/PAuthForm/PAuthForm.vue.d.ts +51 -10
- package/dist/{index-CNpz7Czv.js → index-8p7UPAAQ.js} +3645 -3445
- package/dist/index.d.ts +5 -0
- package/dist/sprof.js +20 -5
- package/dist/sprof.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,5 +2,10 @@ import { default as PF } from './core/index';
|
|
|
2
2
|
import * as PFM from './modules/index';
|
|
3
3
|
export { PF, PFM };
|
|
4
4
|
export { installSprof } from './install';
|
|
5
|
+
export { default as PCheckBox } from './core/components/atoms/PCheckbox/PCheckBox.vue';
|
|
6
|
+
export { default as PInput } from './core/components/atoms/PInput/PInput.vue';
|
|
7
|
+
export { default as PSelect } from './core/components/atoms/PSelect/PSelect.vue';
|
|
8
|
+
export type { AuthFormSettingsType } from './core/auth/index';
|
|
9
|
+
export { AuthButtonLogin, AuthButtonRefresh, AuthButtonRegister, AuthButtonRestore, AuthChunks, AuthFieldsIds, AuthFormSettings, AuthMethods, EmailField, LoginField, PasswordField, PasswordRepeatField, } from './core/auth/index';
|
|
5
10
|
/** @internal Used by unplugin-auto-import configuration */
|
|
6
11
|
export declare const pfName: readonly ["PF", "PFM"];
|
package/dist/sprof.js
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
|
-
import { P as
|
|
1
|
+
import { A as t, a as e, b as o, c as u, d as h, e as i, f as n, g as d, E as l, L as r, h as A, P as F, i as P, j as p, k as f, l as g, m, n as B, p as R } from "./index-8p7UPAAQ.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
o as
|
|
6
|
-
|
|
3
|
+
t as AuthButtonLogin,
|
|
4
|
+
e as AuthButtonRefresh,
|
|
5
|
+
o as AuthButtonRegister,
|
|
6
|
+
u as AuthButtonRestore,
|
|
7
|
+
h as AuthChunks,
|
|
8
|
+
i as AuthFieldsIds,
|
|
9
|
+
n as AuthFormSettings,
|
|
10
|
+
d as AuthMethods,
|
|
11
|
+
l as EmailField,
|
|
12
|
+
r as LoginField,
|
|
13
|
+
A as PCheckBox,
|
|
14
|
+
F as PF,
|
|
15
|
+
P as PFM,
|
|
16
|
+
p as PInput,
|
|
17
|
+
f as PSelect,
|
|
18
|
+
g as PasswordField,
|
|
19
|
+
m as PasswordRepeatField,
|
|
20
|
+
B as installSprof,
|
|
21
|
+
R as pfName
|
|
7
22
|
};
|