cleek 2.8.6 → 2.8.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.
Files changed (57) hide show
  1. package/dist/main.cjs.js +3101 -0
  2. package/dist/main.css +1 -0
  3. package/dist/main.es.js +93574 -0
  4. package/dist/types/components/ck-button.vue.d.ts +66 -0
  5. package/dist/types/components/ck-card.vue.d.ts +42 -0
  6. package/dist/types/components/ck-checkbox.vue.d.ts +40 -0
  7. package/dist/types/components/ck-chip.vue.d.ts +44 -0
  8. package/dist/types/components/ck-circle.vue.d.ts +40 -0
  9. package/dist/types/components/ck-div.vue.d.ts +34 -0
  10. package/dist/types/components/ck-dropdown/ck-dropdown.vue.d.ts +31 -0
  11. package/dist/types/components/ck-icon.vue.d.ts +37 -0
  12. package/dist/types/components/ck-img.vue.d.ts +47 -0
  13. package/dist/types/components/ck-input/ck-input-date.vue.d.ts +41 -0
  14. package/dist/types/components/ck-input/ck-input-time.vue.d.ts +32 -0
  15. package/dist/types/components/ck-input.vue.d.ts +96 -0
  16. package/dist/types/components/ck-label.vue.d.ts +30 -0
  17. package/dist/types/components/ck-navbar/ck-navbar.vue.d.ts +30 -0
  18. package/dist/types/components/ck-notify/ck-notify.d.ts +27 -0
  19. package/dist/types/components/ck-notify/components/CkAlert.vue.d.ts +6 -0
  20. package/dist/types/components/ck-notify/components/CkConfirm.vue.d.ts +9 -0
  21. package/dist/types/components/ck-notify/components/CkNotify.vue.d.ts +10 -0
  22. package/dist/types/components/ck-popup.vue.d.ts +78 -0
  23. package/dist/types/components/ck-radio.vue.d.ts +39 -0
  24. package/dist/types/components/ck-select.vue.d.ts +95 -0
  25. package/dist/types/components/ck-sidebar.vue.d.ts +47 -0
  26. package/dist/types/components/ck-switch-options.vue.d.ts +42 -0
  27. package/dist/types/components/ck-switch.vue.d.ts +47 -0
  28. package/dist/types/components/ck-table/ck-pagination/ck-pagination.vue.d.ts +25 -0
  29. package/dist/types/components/ck-table/ck-table.vue.d.ts +99 -0
  30. package/dist/types/components/ck-table/ck-td.vue.d.ts +47 -0
  31. package/dist/types/components/ck-table/ck-th.vue.d.ts +32 -0
  32. package/dist/types/components/ck-table/ck-tr.vue.d.ts +11 -0
  33. package/dist/types/components/ck-table/inner-components/ck-table__columns-manager.vue.d.ts +25 -0
  34. package/dist/types/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +51 -0
  35. package/dist/types/components/ck-table/inner-components/ck-table__pagination.vue.d.ts +31 -0
  36. package/dist/types/components/ck-table/inner-components/ck-table__title.vue.d.ts +22 -0
  37. package/dist/types/components/ck-textarea.vue.d.ts +65 -0
  38. package/dist/types/components/index.d.ts +39 -0
  39. package/dist/types/components/showers/ck-datetime-shower.vue.d.ts +29 -0
  40. package/dist/types/components/showers/ck-time-shower.vue.d.ts +18 -0
  41. package/dist/types/default-cleek-options.d.ts +4 -0
  42. package/dist/types/hooks/rainbow.d.ts +4 -0
  43. package/dist/types/hooks/windowWidth.d.ts +3 -0
  44. package/dist/types/main.d.ts +5 -0
  45. package/dist/types/package-config.d.ts +3 -0
  46. package/dist/types/types/cleek-options.d.ts +62 -0
  47. package/dist/types/types/table.d.ts +19 -0
  48. package/dist/types/utils/events.d.ts +7 -0
  49. package/dist/types/utils/global-hooks.d.ts +15 -0
  50. package/dist/types/utils/globalVariables.d.ts +6 -0
  51. package/dist/types/utils/mitt.d.ts +2 -0
  52. package/dist/types/utils/scrollLock.d.ts +3 -0
  53. package/dist/types/utils/windowWidth.d.ts +11 -0
  54. package/package.json +37 -37
  55. package/dist/cleek.es.js +0 -60442
  56. package/dist/cleek.umd.js +0 -1554
  57. package/dist/style.css +0 -1
@@ -0,0 +1,31 @@
1
+ import { Align, Layout } from '../../../types/cleek-options';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
4
+ currentPage: number;
5
+ align: Align;
6
+ itemsPerPage: number;
7
+ listLength: number;
8
+ layout: Layout;
9
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ refreshList: () => void;
11
+ "update:currentPage": (value: number) => void;
12
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
13
+ currentPage: number;
14
+ align: Align;
15
+ itemsPerPage: number;
16
+ listLength: number;
17
+ layout: Layout;
18
+ }>>> & {
19
+ onRefreshList?: () => any;
20
+ "onUpdate:currentPage"?: (value: number) => any;
21
+ }, {}, {}>;
22
+ export default _default;
23
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
24
+ type __VLS_TypePropsToRuntimeProps<T> = {
25
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
26
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
27
+ } : {
28
+ type: import('vue').PropType<T[K]>;
29
+ required: true;
30
+ };
31
+ };
@@ -0,0 +1,22 @@
1
+ import { Color } from '../../../types/cleek-options';
2
+ import { ColumnItem } from '../../../types/table';
3
+
4
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
5
+ col: ColumnItem;
6
+ textColor?: Color;
7
+ backgroundColor?: Color;
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
+ col: ColumnItem;
10
+ textColor?: Color;
11
+ backgroundColor?: Color;
12
+ }>>>, {}, {}>;
13
+ export default _default;
14
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
+ type __VLS_TypePropsToRuntimeProps<T> = {
16
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
17
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
+ } : {
19
+ type: import('vue').PropType<T[K]>;
20
+ required: true;
21
+ };
22
+ };
@@ -0,0 +1,65 @@
1
+ import { Align, AlignVertical, Color, Layout, SizeInCSS } from '../types/cleek-options';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
4
+ modelValue: string;
5
+ disabled?: boolean;
6
+ placeholder?: string;
7
+ resize?: true | "none" | "vertical" | "horizontal";
8
+ layout?: Layout;
9
+ borderColor?: Color;
10
+ align?: Align;
11
+ group?: Align;
12
+ groupVertical?: AlignVertical;
13
+ borderRadius?: SizeInCSS;
14
+ fontSize?: SizeInCSS;
15
+ textColor?: Color;
16
+ width?: SizeInCSS;
17
+ height?: SizeInCSS;
18
+ capitalize?: boolean;
19
+ autoSelect?: boolean;
20
+ delayChangeTime?: number;
21
+ label?: string;
22
+ labelAlign?: Align;
23
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
24
+ "update:modelValue": (value: string) => void;
25
+ input: (event: Event) => void;
26
+ change: (event: Event) => void;
27
+ click: (event: Event) => void;
28
+ delayChange: (value: string) => void;
29
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
30
+ modelValue: string;
31
+ disabled?: boolean;
32
+ placeholder?: string;
33
+ resize?: true | "none" | "vertical" | "horizontal";
34
+ layout?: Layout;
35
+ borderColor?: Color;
36
+ align?: Align;
37
+ group?: Align;
38
+ groupVertical?: AlignVertical;
39
+ borderRadius?: SizeInCSS;
40
+ fontSize?: SizeInCSS;
41
+ textColor?: Color;
42
+ width?: SizeInCSS;
43
+ height?: SizeInCSS;
44
+ capitalize?: boolean;
45
+ autoSelect?: boolean;
46
+ delayChangeTime?: number;
47
+ label?: string;
48
+ labelAlign?: Align;
49
+ }>>> & {
50
+ onClick?: (event: Event) => any;
51
+ onChange?: (event: Event) => any;
52
+ onInput?: (event: Event) => any;
53
+ "onUpdate:modelValue"?: (value: string) => any;
54
+ onDelayChange?: (value: string) => any;
55
+ }, {}, {}>;
56
+ export default _default;
57
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
58
+ type __VLS_TypePropsToRuntimeProps<T> = {
59
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
60
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
61
+ } : {
62
+ type: import('vue').PropType<T[K]>;
63
+ required: true;
64
+ };
65
+ };
@@ -0,0 +1,39 @@
1
+ export { default as CkDatetimeShower } from './showers/ck-datetime-shower.vue';
2
+ export { default as CkTimeShower } from './showers/ck-time-shower.vue';
3
+ export { default as CkDropdown } from './ck-dropdown/ck-dropdown.vue';
4
+ export { default as CkNavbar } from './ck-navbar/ck-navbar.vue';
5
+ export { default as CkTable } from './ck-table/ck-table.vue';
6
+ export { default as CkPagination } from './ck-table/ck-pagination/ck-pagination.vue';
7
+ export { default as CkTd } from './ck-table/ck-td.vue';
8
+ export { default as CkTh } from './ck-table/ck-th.vue';
9
+ export { default as CkTr } from './ck-table/ck-tr.vue';
10
+ export { default as CkInputDate } from './ck-input/ck-input-date.vue';
11
+ export { default as CkInputTime } from './ck-input/ck-input-time.vue';
12
+ export { default as CkButton } from './ck-button.vue';
13
+ export { default as CkCard } from './ck-card.vue';
14
+ export { default as CkCheckbox } from './ck-checkbox.vue';
15
+ export { default as CkChip } from './ck-chip.vue';
16
+ export { default as CkCircle } from './ck-circle.vue';
17
+ export { default as CkDiv } from './ck-div.vue';
18
+ export { default as CkIcon } from './ck-icon.vue';
19
+ export { default as CkImg } from './ck-img.vue';
20
+ export { default as CkInput } from './ck-input.vue';
21
+ export { default as CkLabel } from './ck-label.vue';
22
+ export { default as CkPopup } from './ck-popup.vue';
23
+ export { default as CkRadio } from './ck-radio.vue';
24
+ export { default as CkSelect } from './ck-select.vue';
25
+ export { default as CkSidebar } from './ck-sidebar.vue';
26
+ export { default as CkSwitch } from './ck-switch.vue';
27
+ export { default as CkSwitchOptions } from './ck-switch-options.vue';
28
+ export { default as CkTextarea } from './ck-textarea.vue';
29
+ export { default as useWindowWidth } from '../hooks/windowWidth';
30
+ export { default as ckNotify } from './ck-notify/ck-notify';
31
+ export declare class TableData {
32
+ search: string;
33
+ currentPage: number;
34
+ listLength: number;
35
+ itemsPerPage: number;
36
+ isLoading: boolean;
37
+ isEmpty: boolean;
38
+ constructor(itemsPerPage: number);
39
+ }
@@ -0,0 +1,29 @@
1
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ datetime?: string | null;
3
+ date?: string | null;
4
+ time?: string | number | null;
5
+ timeInMinutes?: boolean;
6
+ noDateMsg?: string;
7
+ split?: boolean;
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ click: (event: Event) => void;
10
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
11
+ datetime?: string | null;
12
+ date?: string | null;
13
+ time?: string | number | null;
14
+ timeInMinutes?: boolean;
15
+ noDateMsg?: string;
16
+ split?: boolean;
17
+ }>>> & {
18
+ onClick?: (event: Event) => any;
19
+ }, {}, {}>;
20
+ export default _default;
21
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
22
+ type __VLS_TypePropsToRuntimeProps<T> = {
23
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
24
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
25
+ } : {
26
+ type: import('vue').PropType<T[K]>;
27
+ required: true;
28
+ };
29
+ };
@@ -0,0 +1,18 @@
1
+ type TsTime = string;
2
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ time?: TsTime;
4
+ minutes?: number;
5
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ time?: TsTime;
7
+ minutes?: number;
8
+ }>>>, {}, {}>;
9
+ export default _default;
10
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
+ type __VLS_TypePropsToRuntimeProps<T> = {
12
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
13
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14
+ } : {
15
+ type: import('vue').PropType<T[K]>;
16
+ required: true;
17
+ };
18
+ };
@@ -0,0 +1,4 @@
1
+ import { CleekOptions } from './types/cleek-options';
2
+
3
+ declare const cleekOptions: CleekOptions;
4
+ export default cleekOptions;
@@ -0,0 +1,4 @@
1
+ export default function useRainbow(): {
2
+ rainbow: import('vue').Ref<string>;
3
+ colors: string[];
4
+ };
@@ -0,0 +1,3 @@
1
+ export default function useWindowWidth(): {
2
+ windowWidth: import('vue').Ref<number>;
3
+ };
@@ -0,0 +1,5 @@
1
+ import { Plugin } from 'vue';
2
+
3
+ declare const install: Exclude<Plugin['install'], undefined>;
4
+ export default install;
5
+ export * from './components/index.js';
@@ -0,0 +1,3 @@
1
+ export declare const packageConfig: {
2
+ lang: string;
3
+ };
@@ -0,0 +1,62 @@
1
+ export type Align = 'left' | 'center' | 'right';
2
+ export type AlignVertical = 'top' | 'bottom' | 'center';
3
+ export type Color = string;
4
+ export type Icon = string | [string, string];
5
+ export type IconPack = 'font-awesome' | 'feather' | 'cleek';
6
+ export type Lang = 'es' | 'en';
7
+ export type Layout = 'base' | 'rounded' | 'squared';
8
+ export type ButtonType = 'filled' | 'outlined' | 'flat';
9
+ export type WidthBreaks = [number, string][];
10
+ export type InputType = 'text' | 'number' | 'date' | 'time' | 'password';
11
+ export type Size = 'xs' | 's' | 'm' | 'l' | 'xl';
12
+ export type SizeInCSS = string;
13
+ export type TableVersion = 'default' | 'colored';
14
+ export type CleekOptions = {
15
+ lang: Lang;
16
+ darkMode: boolean;
17
+ darkModeColorText: Color;
18
+ darkModeColorBackground: Color;
19
+ darkModeColorItems: Color;
20
+ colors: {
21
+ primary: Color;
22
+ secondary: Color;
23
+ };
24
+ styles: {
25
+ layout: Layout;
26
+ borderColor: Color;
27
+ };
28
+ button: {
29
+ type: ButtonType;
30
+ layout: Layout;
31
+ backgroundColor: Color;
32
+ textColor: Color;
33
+ };
34
+ div: {
35
+ gap: 0;
36
+ };
37
+ img: {
38
+ basePath: string;
39
+ basePathStatic: string;
40
+ basePathDynamic: string;
41
+ };
42
+ popup: {
43
+ textColor: string;
44
+ headerAlign: Align;
45
+ backgroundColor: Color;
46
+ headerColor: Color;
47
+ acceptBtnType: ButtonType;
48
+ cancelBtnType: ButtonType;
49
+ maxWidth: string;
50
+ fontSize: string;
51
+ };
52
+ select: {
53
+ clearValue: any;
54
+ backgroundColor: Color;
55
+ };
56
+ table: {
57
+ striped: boolean;
58
+ version: TableVersion;
59
+ headerTextColor?: Color;
60
+ headerBackgroundColor?: Color;
61
+ };
62
+ };
@@ -0,0 +1,19 @@
1
+ import { Align, AlignVertical } from './cleek-options';
2
+
3
+ export type ColumnItem = {
4
+ name: string;
5
+ title: string;
6
+ unchangeable: boolean;
7
+ isDisplayed: boolean;
8
+ neverDisplay?: boolean;
9
+ nowrap?: boolean;
10
+ block?: boolean;
11
+ overflowAuto?: boolean;
12
+ align?: Align;
13
+ verticalAlign?: AlignVertical;
14
+ fixedWidth?: string;
15
+ autoWidth?: boolean;
16
+ minWidth?: string;
17
+ maxWidth?: string;
18
+ maxHeight?: string;
19
+ };
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ OPEN_MODAL: string;
3
+ CLOSE_MODAL: string;
4
+ OPEN_SIDEBAR: string;
5
+ CLOSE_SIDEBAR: string;
6
+ };
7
+ export default _default;
@@ -0,0 +1,15 @@
1
+ import { ColumnItem } from '../types/table';
2
+ import { Align, AlignVertical, WidthBreaks } from '../types/cleek-options';
3
+
4
+ declare const _default: {
5
+ getCleekOptions(getCurrentInstance: any): any;
6
+ getGroupClass({ group, groupVertical, widthBreaks, }: {
7
+ group?: Align;
8
+ groupVertical?: AlignVertical;
9
+ widthBreaks?: WidthBreaks;
10
+ }, windowWidth: number): string[];
11
+ getWidthByWidthBreaks(widthBreaks?: [number, string][], windowWidth?: number): string;
12
+ isColorTemplateVariable(color: string): boolean;
13
+ isColumnDisplayed(column: ColumnItem): boolean;
14
+ };
15
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ defaultFailImg: string;
3
+ imagesFolderPath: string;
4
+ defaultImgBorderColor: string;
5
+ };
6
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('mitt').Emitter<Record<import('mitt').EventType, unknown>>;
2
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const lockScroll: () => void;
2
+ declare const unlockScroll: () => void;
3
+ export { lockScroll, unlockScroll };
@@ -0,0 +1,11 @@
1
+ declare const _default: {
2
+ data(): {
3
+ windowWidth: number;
4
+ };
5
+ mounted(): void;
6
+ methods: {
7
+ handleWindowResize(event: any): void;
8
+ };
9
+ beforeUnmount(): void;
10
+ };
11
+ export default _default;
package/package.json CHANGED
@@ -1,24 +1,26 @@
1
1
  {
2
2
  "name": "cleek",
3
- "version": "2.8.6",
4
3
  "description": "Complete UX Vue library",
5
- "repository": "",
4
+ "version": "2.8.9",
6
5
  "author": "Quantic Onion",
7
6
  "license": "MIT",
7
+ "repository": "",
8
+ "type": "module",
8
9
  "files": [
9
10
  "dist"
10
11
  ],
11
- "main": "./dist/cleek.umd.js",
12
- "module": "./dist/cleek.es.js",
13
- "types": "./dist/main.d.ts",
12
+ "main": "./dist/main.cjs.js",
13
+ "module": "./dist/main.es.js",
14
14
  "exports": {
15
15
  ".": {
16
- "import": "./dist/cleek.es.js",
17
- "require": "./dist/cleek.umd.js"
18
- }
16
+ "require": "./dist/main.cjs.js",
17
+ "import": "./dist/main.es.js",
18
+ "types": "./dist/types/main.d.ts"
19
+ },
20
+ "./main.css": "./dist/main.css",
21
+ "./package.json": "./package.json"
19
22
  },
20
- "unpkg": "./dist/cleek.umd.js",
21
- "jsdelivr": "./dist/cleek.umd.js",
23
+ "types": "./dist/types/main.d.ts",
22
24
  "scripts": {
23
25
  "dev": "vitepress dev docs",
24
26
  "typecheck": "vue-tsc --noEmit -p tsconfig.json --composite false",
@@ -30,11 +32,30 @@
30
32
  "patch-publish": "npm run build && npm version patch && npm publish",
31
33
  "lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
32
34
  "stylelint": "stylelint . --fix --ignore-path .stylelintignore",
33
- "format": "prettier . --write"
35
+ "format": "prettier . --write",
36
+ "deploy": "node deploy.js"
37
+ },
38
+ "dependencies": {
39
+ "@fortawesome/fontawesome-svg-core": "^6.1.1",
40
+ "@fortawesome/free-brands-svg-icons": "^6.1.1",
41
+ "@fortawesome/free-regular-svg-icons": "^6.1.1",
42
+ "@fortawesome/free-solid-svg-icons": "^6.1.1",
43
+ "@fortawesome/vue-fontawesome": "^3.0.0-5",
44
+ "@vitejs/plugin-vue": "^5.0.5",
45
+ "@vuepic/vue-datepicker": "^3.5.3",
46
+ "floating-vue": "^5.2.2",
47
+ "mitt": "^3.0.0",
48
+ "quantic-methods": "^1.6.38",
49
+ "tabbable": "^5.2.0",
50
+ "tippy.js": "^6.3.1",
51
+ "vite-plugin-dts": "^3.9.1",
52
+ "vue": "^3.4.31",
53
+ "vue-perfect-scrollbar": "^0.2.1",
54
+ "vue3-datepicker": "^0.4.0"
34
55
  },
35
56
  "devDependencies": {
36
57
  "@prettier/plugin-pug": "^2.5.1",
37
- "@vitejs/plugin-vue": "^1.2.5",
58
+ "@types/node": "^20.14.9",
38
59
  "@vue/compiler-sfc": "^3.1.5",
39
60
  "@vue/eslint-config-prettier": "^7.1.0",
40
61
  "@vue/eslint-config-typescript": "^11.0.3",
@@ -44,7 +65,7 @@
44
65
  "eslint-config-prettier": "^8.3.0",
45
66
  "eslint-plugin-vue": "^7.14.0",
46
67
  "prettier": "^2.3.2",
47
- "prettier-plugin-stylus": "^0.0.1-beta.9",
68
+ "prettier-plugin-stylus": "^0.1.0",
48
69
  "pug": "^3.0.2",
49
70
  "pug-plain-loader": "^1.1.0",
50
71
  "rollup-plugin-visualizer": "^5.5.2",
@@ -53,30 +74,9 @@
53
74
  "stylelint-config-recommended": "^12.0.0",
54
75
  "stylelint-stylus": "^0.18.0",
55
76
  "stylus": "^0.59.0",
56
- "typescript": "~5.0.4",
57
- "vite": "^2.4.3",
77
+ "typescript": "^5.5.3",
78
+ "vite": "^5.3.2",
58
79
  "vitepress": "^0.21.4",
59
80
  "vue-tsc": "^0.38.2"
60
- },
61
- "dependencies": {
62
- "@fortawesome/fontawesome-svg-core": "^6.1.1",
63
- "@fortawesome/free-brands-svg-icons": "^6.1.1",
64
- "@fortawesome/free-regular-svg-icons": "^6.1.1",
65
- "@fortawesome/free-solid-svg-icons": "^6.1.1",
66
- "@fortawesome/vue-fontawesome": "^3.0.0-5",
67
- "@vuepic/vue-datepicker": "^3.5.3",
68
- "floating-vue": "^2.0.0-beta.16",
69
- "mitt": "^3.0.0",
70
- "pug": "^3.0.2",
71
- "quantic-methods": "^1.6.38",
72
- "rollup-plugin-typescript2": "^0.31.2",
73
- "stylus": "^0.56.0",
74
- "tabbable": "^5.2.0",
75
- "tippy.js": "^6.3.1",
76
- "typescript": "^4.6.4",
77
- "vue": "^3.2.31",
78
- "vue-perfect-scrollbar": "^0.2.1",
79
- "vue3-datepicker": "^0.4.0",
80
- "vuex": "^4.0.2"
81
81
  }
82
- }
82
+ }