jplan-pack 0.3.67 → 0.3.69
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/jplan-lib.cjs +16 -0
- package/dist/{jplan-lib.es.js.mjs → jplan-lib.es} +14015 -14962
- package/dist/types/components/index.d.ts +12 -0
- package/dist/types/index.d.ts +10 -2
- package/dist/types/types/index.d.ts +2 -0
- package/package.json +4 -4
- package/dist/components/index.d.ts +0 -13
- package/dist/components/layout/header/EnvironmentDialog.vue.d.ts +0 -2
- package/dist/components/layout/header/MegaMenuDD.vue.d.ts +0 -2
- package/dist/components/layout/header/NotificationDD.vue.d.ts +0 -2
- package/dist/components/layout/header/ProfileDD.vue.d.ts +0 -2
- package/dist/components/layout/header/UiHeader.vue.d.ts +0 -2
- package/dist/components/layout/header/data.d.ts +0 -20
- package/dist/components/layout/sidebar/_type.d.ts +0 -11
- package/dist/index.d.ts +0 -10
- package/dist/style.css +0 -1
- /package/dist/{components/ConfirmDialog.vue.d.ts → types/components/ConfirmDialog.d.ts} +0 -0
- /package/dist/{components/CopyButton.vue.d.ts → types/components/CopyButton.d.ts} +0 -0
- /package/dist/{components/DotsMenu.vue.d.ts → types/components/DotsMenu.d.ts} +0 -0
- /package/dist/{components/GlobalDialog.vue.d.ts → types/components/GlobalDialog.d.ts} +0 -0
- /package/dist/{components/JBtn.vue.d.ts → types/components/JBtn.d.ts} +0 -0
- /package/dist/{components/JIconBtn.vue.d.ts → types/components/JIconBtn.d.ts} +0 -0
- /package/dist/{components/JTextField.vue.d.ts → types/components/JTextField.d.ts} +0 -0
- /package/dist/{components/ParentCard.vue.d.ts → types/components/ParentCard.d.ts} +0 -0
- /package/dist/{components/icon/IconSet.vue.d.ts → types/components/icon/IconSet.d.ts} +0 -0
- /package/dist/{components → types/components}/icon/tabler.d.ts +0 -0
- /package/dist/{components/table/UiTable.vue.d.ts → types/components/table/UiTable.d.ts} +0 -0
- /package/dist/{composables → types/composables}/index.d.ts +0 -0
- /package/dist/{composables → types/composables}/useCustomizer.d.ts +0 -0
- /package/dist/{composables → types/composables}/useDialog.d.ts +0 -0
- /package/dist/{constants → types/constants}/index.d.ts +0 -0
- /package/dist/{plugins → types/plugins}/pinia/pinia.d.ts +0 -0
- /package/dist/types/{UiTableHeader.d.ts → types/UiTableHeader.d.ts} +0 -0
- /package/dist/types/{sidebarItem.d.ts → types/sidebarItem.d.ts} +0 -0
- /package/dist/{utils → types/utils}/HttpCore.d.ts +0 -0
- /package/dist/{utils → types/utils}/index.d.ts +0 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
import { default as CopyButton } from './CopyButton';
|
2
|
+
import { default as JIconBtn } from './JIconBtn';
|
3
|
+
import { default as JBtn } from './JBtn';
|
4
|
+
import { default as DotsMenu } from './DotsMenu';
|
5
|
+
import { default as IconSet } from './icon/IconSet';
|
6
|
+
import { default as UiTable } from './table/UiTable';
|
7
|
+
import { default as ParentCard } from './ParentCard';
|
8
|
+
import { default as GlobalDialog } from './GlobalDialog';
|
9
|
+
import { default as ConfirmDialog } from './ConfirmDialog';
|
10
|
+
import { default as JTextField } from './JTextField';
|
11
|
+
import { TablerIcons } from './icon/tabler';
|
12
|
+
export { CopyButton, JIconBtn, JBtn, JTextField, DotsMenu, ConfirmDialog, GlobalDialog, IconSet, TablerIcons, ParentCard, UiTable, };
|
package/dist/types/index.d.ts
CHANGED
@@ -1,2 +1,10 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { App } from 'vue';
|
2
|
+
declare const _default: {
|
3
|
+
install: (app: App) => void;
|
4
|
+
};
|
5
|
+
export default _default;
|
6
|
+
export * from './components';
|
7
|
+
export * from './composables';
|
8
|
+
export * from './constants';
|
9
|
+
export * from './utils';
|
10
|
+
export * from './types';
|
package/package.json
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "jplan-pack",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.69",
|
4
4
|
"files": [
|
5
5
|
"dist"
|
6
6
|
],
|
7
|
-
"main": "
|
8
|
-
"
|
7
|
+
"main": "dist/jplan-lib.cjs.js",
|
8
|
+
"module": "dist/jplan-lib.es.js",
|
9
|
+
"types": "dist/types/index.d.ts",
|
9
10
|
"scripts": {
|
10
11
|
"build": "rimraf dist && vue-tsc && vite build",
|
11
12
|
"docs:dev": "vitepress dev docs",
|
@@ -40,7 +41,6 @@
|
|
40
41
|
"vue-cli-plugin-vuetify": "2.5.8",
|
41
42
|
"vue-tsc": "^2.1.10"
|
42
43
|
},
|
43
|
-
"module": "./dist/jplan-lib.es.js",
|
44
44
|
"repository": {
|
45
45
|
"type": "git",
|
46
46
|
"url": "git+https://github.com/wuruoyun/vue-component-lib-starter.git"
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import { default as CopyButton } from './CopyButton.vue';
|
2
|
-
import { default as JIconBtn } from './JIconBtn.vue';
|
3
|
-
import { default as JBtn } from './JBtn.vue';
|
4
|
-
import { default as DotsMenu } from './DotsMenu.vue';
|
5
|
-
import { default as IconSet } from './icon/IconSet.vue';
|
6
|
-
import { default as UiTable } from './table/UiTable.vue';
|
7
|
-
import { default as ParentCard } from './ParentCard.vue';
|
8
|
-
import { default as GlobalDialog } from './GlobalDialog.vue';
|
9
|
-
import { default as ConfirmDialog } from './ConfirmDialog.vue';
|
10
|
-
import { default as UiHeader } from './layout/header/UiHeader.vue';
|
11
|
-
import { default as JTextField } from './JTextField.vue';
|
12
|
-
import { TablerIcons } from './icon/tabler';
|
13
|
-
export { CopyButton, JIconBtn, JBtn, JTextField, DotsMenu, ConfirmDialog, GlobalDialog, IconSet, TablerIcons, ParentCard, UiTable, UiHeader, };
|
@@ -1,2 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
@@ -1,2 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
@@ -1,2 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
@@ -1,2 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
@@ -1,2 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
@@ -1,20 +0,0 @@
|
|
1
|
-
declare const message: {
|
2
|
-
image: string;
|
3
|
-
avatarstatus: string;
|
4
|
-
title: string;
|
5
|
-
desc: string;
|
6
|
-
time: string;
|
7
|
-
}[];
|
8
|
-
declare const notification: {
|
9
|
-
color: string;
|
10
|
-
icon: string;
|
11
|
-
title: string;
|
12
|
-
desc: string;
|
13
|
-
}[];
|
14
|
-
declare const profile: {
|
15
|
-
color: string;
|
16
|
-
icon: string;
|
17
|
-
title: string;
|
18
|
-
desc: string;
|
19
|
-
}[];
|
20
|
-
export { message, profile, notification };
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { TablerIconComponent } from 'vue-tabler-icons';
|
2
|
-
export interface Context {
|
3
|
-
name: string;
|
4
|
-
icon: TablerIconComponent | string | object;
|
5
|
-
}
|
6
|
-
export interface SidebarItem {
|
7
|
-
header?: string;
|
8
|
-
title?: string;
|
9
|
-
divider?: boolean;
|
10
|
-
children?: SidebarItem[];
|
11
|
-
}
|
package/dist/index.d.ts
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
import { App } from 'vue';
|
2
|
-
declare const _default: {
|
3
|
-
install: (app: App) => void;
|
4
|
-
};
|
5
|
-
export default _default;
|
6
|
-
export * from './components';
|
7
|
-
export * from './composables';
|
8
|
-
export * from './constants';
|
9
|
-
export * from './utils';
|
10
|
-
export * from './types';
|
package/dist/style.css
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
.height[data-v-79fc3f82]{height:100px;transition:height .3s ease}.col-1-w[data-v-79fc3f82]{width:40px}.circle-wrapper[data-v-79fc3f82]{display:inline-flex;align-items:center;justify-content:center;padding:5px;width:50px;height:50px;border-radius:50%;background-color:#353636}.border-left[data-v-79fc3f82]{border-left:3px rgb(var(--v-theme-secondary)) solid}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|