jplan-pack 0.1.0 → 0.1.1

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.
@@ -17,8 +17,8 @@ declare const _default: <T>(__VLS_props: {
17
17
  attrs: any;
18
18
  slots: {
19
19
  button?(_: {
20
- isActive: boolean;
21
- props: Record<string, any>;
20
+ isActive: any;
21
+ props: any;
22
22
  }): any;
23
23
  };
24
24
  emit: {};
@@ -35,8 +35,8 @@ declare const _default: <T>(__VLS_props: {
35
35
  attrs: any;
36
36
  slots: {
37
37
  button?(_: {
38
- isActive: boolean;
39
- props: Record<string, any>;
38
+ isActive: any;
39
+ props: any;
40
40
  }): any;
41
41
  };
42
42
  emit: {};
@@ -56,8 +56,8 @@ declare const _default: <T>(__VLS_props: {
56
56
  attrs: any;
57
57
  slots: {
58
58
  button?(_: {
59
- isActive: boolean;
60
- props: Record<string, any>;
59
+ isActive: any;
60
+ props: any;
61
61
  }): any;
62
62
  };
63
63
  emit: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jplan-pack",
3
- "version": "0.1.0",
3
+ "version": "0.1.01",
4
4
  "files": ["dist"],
5
5
  "main": "./dist/jplan-lib.es.js",
6
6
  "types": "./dist/types/index.d.ts",
@@ -29,8 +29,8 @@
29
29
  "vuetify": "^3.7.4"
30
30
  },
31
31
  "peerDependencies": {
32
- "@vueuse/core": "^11.2.0",
33
- "vue": "^3.3.4"
32
+ "vue": "^3.0.0",
33
+ "@vueuse/core": "^9.0.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^20.3.3",
@@ -44,7 +44,7 @@
44
44
  "vue-cli-plugin-vuetify": "2.5.8",
45
45
  "vue-tsc": "^2.1.10"
46
46
  },
47
- "module": "./dist/jplan-lib.es.js",
47
+ "module": "./dist/jplan-pack.es.js",
48
48
  "repository": {
49
49
  "type": "git",
50
50
  "url": "git+https://github.com/wuruoyun/vue-component-lib-starter.git"
@@ -1,5 +0,0 @@
1
- import { ThemeTypes } from './_type';
2
- declare const DarkJPLANTheme: ThemeTypes;
3
- declare const DarkBlueJPLANTheme: ThemeTypes;
4
- declare const DarkOliveGreenTheme: ThemeTypes;
5
- export { DarkJPLANTheme, DarkBlueJPLANTheme, DarkOliveGreenTheme };
@@ -1,4 +0,0 @@
1
- import { ThemeTypes } from './_type';
2
- declare const LightJPLANTheme: ThemeTypes;
3
- declare const GreenTheme: ThemeTypes;
4
- export { LightJPLANTheme, GreenTheme };
@@ -1,41 +0,0 @@
1
- export type ThemeTypes = {
2
- name: string;
3
- dark: boolean;
4
- variables?: object;
5
- colors: {
6
- primary?: string;
7
- secondary?: string;
8
- info?: string;
9
- success?: string;
10
- accent?: string;
11
- warning?: string;
12
- error?: string;
13
- lightprimary?: string;
14
- lightsecondary?: string;
15
- lightsuccess?: string;
16
- lighterror?: string;
17
- lightwarning?: string;
18
- darkprimary?: string;
19
- darksecondary?: string;
20
- darkText?: string;
21
- lightText?: string;
22
- borderLight?: string;
23
- inputBorder?: string;
24
- containerBg?: string;
25
- surface?: string;
26
- background?: string;
27
- 'on-surface-variant'?: string;
28
- blue?: string;
29
- facebook?: string;
30
- twitter?: string;
31
- linkedin?: string;
32
- whatsapp?: string;
33
- telegram?: string;
34
- instagram?: string;
35
- gray100?: string;
36
- primary200?: string;
37
- secondary200?: string;
38
- scroll?: string;
39
- faded?: string;
40
- };
41
- };
@@ -1,3 +0,0 @@
1
- export * from './DarkTheme';
2
- export * from './LightTheme';
3
- export * from './_type';
@@ -1,82 +0,0 @@
1
- declare const _default: {
2
- install: (app: import('vue').App<any>) => void;
3
- defaults: import('vue').Ref<import('vuetify').DefaultsInstance, import('vuetify').DefaultsInstance>;
4
- display: import('vuetify').DisplayInstance;
5
- theme: import('vuetify').ThemeInstance & {
6
- install: (app: import('vue').App<any>) => void;
7
- };
8
- icons: {
9
- defaultSet: string;
10
- aliases: Partial<import('vuetify').IconAliases>;
11
- sets: Record<string, import('vuetify').IconSet>;
12
- };
13
- locale: {
14
- isRtl: import('vue').Ref<boolean, boolean>;
15
- rtl: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
16
- rtlClasses: import('vue').Ref<string, string>;
17
- name: string;
18
- messages: import('vue').Ref<import('vuetify').LocaleMessages, import('vuetify').LocaleMessages>;
19
- current: import('vue').Ref<string, string>;
20
- fallback: import('vue').Ref<string, string>;
21
- t: (key: string, ...params: unknown[]) => string;
22
- n: (value: number) => string;
23
- provide: (props: import('vuetify').LocaleOptions) => import('vuetify').LocaleInstance;
24
- };
25
- date: {
26
- options: {
27
- adapter: (new (options: {
28
- locale: any;
29
- formats?: any;
30
- }) => import('vuetify').DateInstance) | import('vuetify').DateInstance;
31
- formats?: Record<string, any> | undefined;
32
- locale: Record<string, any>;
33
- };
34
- instance: {
35
- locale?: any;
36
- date: (value?: any) => unknown;
37
- format: (date: unknown, formatString: string) => string;
38
- toJsDate: (value: unknown) => Date;
39
- parseISO: (date: string) => unknown;
40
- toISO: (date: unknown) => string;
41
- startOfDay: (date: unknown) => unknown;
42
- endOfDay: (date: unknown) => unknown;
43
- startOfWeek: (date: unknown, firstDayOfWeek?: string | number | undefined) => unknown;
44
- endOfWeek: (date: unknown) => unknown;
45
- startOfMonth: (date: unknown) => unknown;
46
- endOfMonth: (date: unknown) => unknown;
47
- startOfYear: (date: unknown) => unknown;
48
- endOfYear: (date: unknown) => unknown;
49
- isAfter: (date: unknown, comparing: unknown) => boolean;
50
- isAfterDay: (value: unknown, comparing: unknown) => boolean;
51
- isSameDay: (date: unknown, comparing: unknown) => boolean;
52
- isSameMonth: (date: unknown, comparing: unknown) => boolean;
53
- isSameYear: (value: unknown, comparing: unknown) => boolean;
54
- isBefore: (date: unknown, comparing: unknown) => boolean;
55
- isEqual: (date: unknown, comparing: unknown) => boolean;
56
- isValid: (date: any) => boolean;
57
- isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
58
- addMinutes: (date: unknown, amount: number) => unknown;
59
- addHours: (date: unknown, amount: number) => unknown;
60
- addDays: (date: unknown, amount: number) => unknown;
61
- addWeeks: (date: unknown, amount: number) => unknown;
62
- addMonths: (date: unknown, amount: number) => unknown;
63
- getYear: (date: unknown) => number;
64
- setYear: (date: unknown, year: number) => unknown;
65
- getDiff: (date: unknown, comparing: unknown, unit?: string | undefined) => number;
66
- getWeekArray: (date: unknown, firstDayOfWeek?: string | number | undefined) => unknown[][];
67
- getWeekdays: (firstDayOfWeek?: string | number | undefined) => string[];
68
- getMonth: (date: unknown) => number;
69
- setMonth: (date: unknown, month: number) => unknown;
70
- getDate: (date: unknown) => number;
71
- setDate: (date: unknown, day: number) => unknown;
72
- getNextMonth: (date: unknown) => unknown;
73
- getPreviousMonth: (date: unknown) => unknown;
74
- getHours: (date: unknown) => number;
75
- setHours: (date: unknown, hours: number) => unknown;
76
- getMinutes: (date: unknown) => number;
77
- setMinutes: (date: unknown, minutes: number) => unknown;
78
- };
79
- };
80
- goTo: import('vuetify').GoToInstance;
81
- };
82
- export default _default;