cleek 3.0.0 → 3.0.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.
@@ -43,7 +43,23 @@ declare function blur(): void;
43
43
  type __VLS_PublicProps = {
44
44
  modelValue: OptionValue;
45
45
  } & __VLS_Props;
46
- declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
46
+ declare function __VLS_template(): {
47
+ attrs: Partial<{}>;
48
+ slots: {
49
+ prefix?(_: {}): any;
50
+ option?(_: {
51
+ option: any;
52
+ isSelected: boolean;
53
+ }): any;
54
+ };
55
+ refs: {
56
+ inputRef: HTMLInputElement;
57
+ dropdownRef: HTMLUListElement;
58
+ };
59
+ rootEl: HTMLDivElement;
60
+ };
61
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
62
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
47
63
  focus: typeof focus;
48
64
  blur: typeof blur;
49
65
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -66,4 +82,10 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
66
82
  inputRef: HTMLInputElement;
67
83
  dropdownRef: HTMLUListElement;
68
84
  }, HTMLDivElement>;
85
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
69
86
  export default _default;
87
+ type __VLS_WithTemplateSlots<T, S> = T & {
88
+ new (): {
89
+ $slots: S;
90
+ };
91
+ };
@@ -5,6 +5,7 @@ type __VLS_Props = {
5
5
  listLength?: number;
6
6
  isSelectionFiltered?: boolean;
7
7
  itemsLabel?: string;
8
+ variant?: 'checkbox' | 'pill';
8
9
  };
9
10
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
10
11
  selectPage: () => any;
@@ -15,6 +15,7 @@ declare const _default: <T extends string | number>(__VLS_props: NonNullable<Awa
15
15
  disabled?: boolean;
16
16
  disabledTooltip?: string;
17
17
  size?: "m" | "l";
18
+ isAlwaysExpanded?: boolean;
18
19
  columns?: number;
19
20
  changeLabel?: string;
20
21
  iconColor?: Color;
package/package.json CHANGED
@@ -1,80 +1,80 @@
1
- {
2
- "name": "cleek",
3
- "description": "Complete UX Vue library",
4
- "version": "3.0.0",
5
- "author": "Quantic Onion",
6
- "license": "MIT",
7
- "repository": "github:quantic-core/cleek",
8
- "type": "module",
9
- "files": [
10
- "dist"
11
- ],
12
- "main": "./dist/main.cjs.js",
13
- "module": "./dist/main.es.js",
14
- "exports": {
15
- ".": {
16
- "types": "./dist/types/main.d.ts",
17
- "import": "./dist/main.es.js",
18
- "require": "./dist/main.cjs.js"
19
- },
20
- "./main.css": "./dist/main.css",
21
- "./package.json": "./package.json"
22
- },
23
- "types": "./dist/types/main.d.ts",
24
- "scripts": {
25
- "typecheck": "vue-tsc --noEmit -p tsconfig.json --composite false",
26
- "build": "vite build",
27
- "build:full": "vite build && vue-tsc --declaration --emitDeclarationOnly",
28
- "analyze": "vite build --config analyze.config.js",
29
- "patch-publish": "npm run build && npm version patch && npm publish",
30
- "lint": "eslint --fix src",
31
- "stylelint": "stylelint . --fix --ignore-path .stylelintignore",
32
- "format": "prettier . --write",
33
- "deploy": "node deploy.js"
34
- },
35
- "dependencies": {
36
- "@fortawesome/fontawesome-svg-core": "^6.1.1",
37
- "@fortawesome/free-brands-svg-icons": "^6.1.1",
38
- "@fortawesome/free-regular-svg-icons": "^6.1.1",
39
- "@fortawesome/free-solid-svg-icons": "^6.1.1",
40
- "@fortawesome/vue-fontawesome": "^3.0.0-5",
41
- "@vuepic/vue-datepicker": "^3.5.3",
42
- "click-outside-vue3": "^4.0.1",
43
- "date-fns": "^2.30.0",
44
- "floating-vue": "^5.2.2",
45
- "mitt": "^3.0.0",
46
- "pinia": "^3.0.2",
47
- "tabbable": "^5.2.0",
48
- "tippy.js": "^6.3.1",
49
- "vue": "^3.5.12",
50
- "vue-perfect-scrollbar": "^0.2.1",
51
- "vue3-datepicker": "^0.4.0"
52
- },
53
- "devDependencies": {
54
- "@eslint/js": "^9.39.0",
55
- "@prettier/plugin-pug": "^3.4.2",
56
- "@types/node": "^20.14.9",
57
- "@vitejs/plugin-vue": "^5.2.4",
58
- "@vue/compiler-sfc": "^3.1.5",
59
- "@vue/eslint-config-typescript": "^14.9.0",
60
- "@vue/language-plugin-pug": "^1.8.15",
61
- "@vue/tsconfig": "^0.1.3",
62
- "ajv": "^8",
63
- "eslint": "^9.39.0",
64
- "eslint-config-prettier": "^10.1.8",
65
- "eslint-plugin-vue": "^10.10.0",
66
- "prettier": "^3.6.2",
67
- "prettier-plugin-stylus": "^0.1.0",
68
- "pug": "^3.0.2",
69
- "pug-plain-loader": "^1.1.0",
70
- "rollup-plugin-visualizer": "^6.0.5",
71
- "stylelint": "^15.9.0",
72
- "stylelint-config-recommended": "^12.0.0",
73
- "stylelint-stylus": "^0.18.0",
74
- "stylus": "^0.59.0",
75
- "typescript": "^5.5.3",
76
- "vite": "^6.3.5",
77
- "vite-plugin-dts": "^4.5.4",
78
- "vue-tsc": "^2"
79
- }
80
- }
1
+ {
2
+ "name": "cleek",
3
+ "description": "Complete UX Vue library",
4
+ "version": "3.0.1",
5
+ "author": "Quantic Onion",
6
+ "license": "MIT",
7
+ "repository": "github:quantic-core/cleek",
8
+ "type": "module",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "main": "./dist/main.cjs.js",
13
+ "module": "./dist/main.es.js",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/types/main.d.ts",
17
+ "import": "./dist/main.es.js",
18
+ "require": "./dist/main.cjs.js"
19
+ },
20
+ "./main.css": "./dist/main.css",
21
+ "./package.json": "./package.json"
22
+ },
23
+ "types": "./dist/types/main.d.ts",
24
+ "scripts": {
25
+ "typecheck": "vue-tsc --noEmit -p tsconfig.json --composite false",
26
+ "build": "vite build",
27
+ "build:full": "vite build && vue-tsc --declaration --emitDeclarationOnly",
28
+ "analyze": "vite build --config analyze.config.js",
29
+ "patch-publish": "npm run build && npm version patch && npm publish",
30
+ "lint": "eslint --fix src",
31
+ "stylelint": "stylelint . --fix --ignore-path .stylelintignore",
32
+ "format": "prettier . --write",
33
+ "deploy": "node deploy.js"
34
+ },
35
+ "dependencies": {
36
+ "@fortawesome/fontawesome-svg-core": "^6.1.1",
37
+ "@fortawesome/free-brands-svg-icons": "^6.1.1",
38
+ "@fortawesome/free-regular-svg-icons": "^6.1.1",
39
+ "@fortawesome/free-solid-svg-icons": "^6.1.1",
40
+ "@fortawesome/vue-fontawesome": "^3.0.0-5",
41
+ "@vuepic/vue-datepicker": "^3.5.3",
42
+ "click-outside-vue3": "^4.0.1",
43
+ "date-fns": "^2.30.0",
44
+ "floating-vue": "^5.2.2",
45
+ "mitt": "^3.0.0",
46
+ "pinia": "^3.0.2",
47
+ "tabbable": "^5.2.0",
48
+ "tippy.js": "^6.3.1",
49
+ "vue": "^3.5.12",
50
+ "vue-perfect-scrollbar": "^0.2.1",
51
+ "vue3-datepicker": "^0.4.0"
52
+ },
53
+ "devDependencies": {
54
+ "@eslint/js": "^9.39.0",
55
+ "@prettier/plugin-pug": "^3.4.2",
56
+ "@types/node": "^20.14.9",
57
+ "@vitejs/plugin-vue": "^5.2.4",
58
+ "@vue/compiler-sfc": "^3.1.5",
59
+ "@vue/eslint-config-typescript": "^14.9.0",
60
+ "@vue/language-plugin-pug": "^1.8.15",
61
+ "@vue/tsconfig": "^0.1.3",
62
+ "ajv": "^8",
63
+ "eslint": "^9.39.0",
64
+ "eslint-config-prettier": "^10.1.8",
65
+ "eslint-plugin-vue": "^10.10.0",
66
+ "prettier": "^3.6.2",
67
+ "prettier-plugin-stylus": "^0.1.0",
68
+ "pug": "^3.0.2",
69
+ "pug-plain-loader": "^1.1.0",
70
+ "rollup-plugin-visualizer": "^6.0.5",
71
+ "stylelint": "^15.9.0",
72
+ "stylelint-config-recommended": "^12.0.0",
73
+ "stylelint-stylus": "^0.18.0",
74
+ "stylus": "^0.59.0",
75
+ "typescript": "^5.5.3",
76
+ "vite": "^6.3.5",
77
+ "vite-plugin-dts": "^4.5.4",
78
+ "vue-tsc": "^2"
79
+ }
80
+ }