sprof 0.2.15 → 0.2.16
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-qhprTL9t.js → ExtractsList-DOcnyFU8.js} +1 -1
- package/dist/core/components/organisms/index.d.ts +2 -2
- package/dist/core/helpers/Menus.d.ts +1 -1
- package/dist/global-components.d.ts +5 -1
- package/dist/{index-MSYtXXGA.js → index-BHTU_vkN.js} +3824 -3580
- package/dist/index.d.ts +2 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/tabs/ITab.d.ts +21 -0
- package/dist/modules/tabs/TabsStore.d.ts +24 -0
- package/dist/modules/tabs/TabsStore.test.d.ts +1 -0
- package/dist/modules/tabs/components/PTabs.stories.d.ts +996 -0
- package/dist/modules/tabs/components/PTabs.test.d.ts +1 -0
- package/dist/modules/tabs/components/PTabs.vue.d.ts +66 -0
- package/dist/modules/tabs/components/PTabsLeft.vue.d.ts +50 -0
- package/dist/modules/tabs/index.d.ts +7 -0
- package/dist/sprof.js +28 -25
- package/dist/sprof.umd.cjs +12 -12
- package/dist/style.css +1 -1
- package/package.json +1 -1
- /package/dist/core/components/organisms/{PTabs → PMenuTabs}/ITab.d.ts +0 -0
- /package/dist/core/components/organisms/{PTabs/PTabs.stories.d.ts → PMenuTabs/PMenuTabs.stories.d.ts} +0 -0
- /package/dist/core/components/organisms/{PTabs/PTabs.vue.d.ts → PMenuTabs/PMenuTabs.vue.d.ts} +0 -0
|
@@ -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-
|
|
2
|
+
import { _ as f, P as w } from "./index-BHTU_vkN.js";
|
|
3
3
|
import "quasar";
|
|
4
4
|
import "vuedraggable";
|
|
5
5
|
const B = /* @__PURE__ */ d({
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { default as PAuthForm } from './PAuthForm/PAuthForm.vue';
|
|
2
2
|
import { default as PAuthModal } from './PAuthModal/PAuthModal.vue';
|
|
3
|
+
import { default as PMenuTabs } from './PMenuTabs/PMenuTabs.vue';
|
|
3
4
|
import { default as PNameEdit } from './PNameEdit/PNameEdit.vue';
|
|
4
|
-
import { default as PTabs } from './PTabs/PTabs.vue';
|
|
5
5
|
import { default as PUploaderFile } from './PUploaderFile/PUploaderFile.vue';
|
|
6
6
|
import { default as PUploaderImage } from './PUploaderImage/PUploaderImage.vue';
|
|
7
7
|
export default function install(app: {
|
|
8
8
|
component: (a: string, b: unknown) => void;
|
|
9
9
|
}): void;
|
|
10
|
-
export { PAuthForm, PAuthModal,
|
|
10
|
+
export { PAuthForm, PAuthModal, PMenuTabs, PNameEdit, PUploaderFile, PUploaderImage };
|
|
@@ -2,6 +2,7 @@ import type * as Atoms from '@/core/components/atoms';
|
|
|
2
2
|
import type * as Components from '@/core/components/components';
|
|
3
3
|
import type * as Molecules from '@/core/components/molecules';
|
|
4
4
|
import type * as Organisms from '@/core/components/organisms';
|
|
5
|
+
import type * as Tabs from '@/modules/tabs';
|
|
5
6
|
declare module 'vue' {
|
|
6
7
|
interface GlobalComponents {
|
|
7
8
|
PBadge: typeof Atoms.PBadge;
|
|
@@ -45,8 +46,8 @@ declare module 'vue' {
|
|
|
45
46
|
VerticalCollapseContainer: typeof Molecules.VerticalCollapseContainer;
|
|
46
47
|
PAuthForm: typeof Organisms.PAuthForm;
|
|
47
48
|
PAuthModal: typeof Organisms.PAuthModal;
|
|
49
|
+
PMenuTabs: typeof Organisms.PMenuTabs;
|
|
48
50
|
PNameEdit: typeof Organisms.PNameEdit;
|
|
49
|
-
PTabs: typeof Organisms.PTabs;
|
|
50
51
|
PUploaderFile: typeof Organisms.PUploaderFile;
|
|
51
52
|
PUploaderImage: typeof Organisms.PUploaderImage;
|
|
52
53
|
AdaptiveContainer: typeof Components.AdaptiveContainer;
|
|
@@ -81,6 +82,9 @@ declare module 'vue' {
|
|
|
81
82
|
ThemeWrapper: typeof Components.ThemeWrapper;
|
|
82
83
|
ToggleInfoItem: typeof Components.ToggleInfoItem;
|
|
83
84
|
TopSliderContainer: typeof Components.TopSliderContainer;
|
|
85
|
+
PTabs: typeof Tabs.PTabs;
|
|
86
|
+
PTabsLeft: typeof Tabs.PTabsLeft;
|
|
87
|
+
TabsStore: typeof Tabs.TabsStore;
|
|
84
88
|
}
|
|
85
89
|
}
|
|
86
90
|
export {};
|