@datametria/vue-components 1.1.2 → 1.1.3
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/README.md +590 -472
- package/dist/index.es.js +1879 -669
- package/dist/index.umd.js +74 -1
- package/dist/vue-components.css +1 -1
- package/package.json +98 -98
- package/src/components/DatametriaMenu.vue +620 -0
- package/src/components/DatametriaSkeleton.vue +240 -0
- package/src/components/DatametriaSlider.vue +408 -0
- package/src/components/DatametriaTimePicker.vue +286 -0
- package/src/components/DatametriaTooltip.vue +409 -0
- package/src/composables/useAccessibilityScale.ts +95 -0
- package/src/composables/useBreakpoints.ts +83 -0
- package/src/composables/useHapticFeedback.ts +440 -0
- package/src/composables/useRipple.ts +219 -0
- package/src/index.ts +61 -52
- package/src/styles/design-tokens.css +623 -31
- package/ACCESSIBILITY.md +0 -78
- package/DESIGN-SYSTEM.md +0 -70
- package/PROGRESS.md +0 -327
package/package.json
CHANGED
|
@@ -1,98 +1,98 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@datametria/vue-components",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "DATAMETRIA Vue.js 3 Component Library with
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.umd.js",
|
|
7
|
-
"module": "./dist/index.es.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/index.es.js",
|
|
12
|
-
"require": "./dist/index.umd.js",
|
|
13
|
-
"types": "./dist/index.d.ts"
|
|
14
|
-
},
|
|
15
|
-
"./style.css": "./dist/style.css"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"src",
|
|
20
|
-
"README.md",
|
|
21
|
-
"ACCESSIBILITY.md",
|
|
22
|
-
"DESIGN-SYSTEM.md",
|
|
23
|
-
"PROGRESS.md"
|
|
24
|
-
],
|
|
25
|
-
"sideEffects": [
|
|
26
|
-
"*.css",
|
|
27
|
-
"*.vue"
|
|
28
|
-
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"dev": "vite",
|
|
31
|
-
"build": "vue-tsc && vite build",
|
|
32
|
-
"preview": "vite preview",
|
|
33
|
-
"test": "vitest",
|
|
34
|
-
"test:ui": "vitest --ui",
|
|
35
|
-
"test:coverage": "vitest --coverage",
|
|
36
|
-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
|
|
37
|
-
"type-check": "vue-tsc --noEmit",
|
|
38
|
-
"prepublishOnly": "npm run build"
|
|
39
|
-
},
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"axios": "^1.12.2",
|
|
42
|
-
"vue": "^3.4.0"
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@eslint/config-array": "^0.19.0",
|
|
46
|
-
"@eslint/object-schema": "^2.1.4",
|
|
47
|
-
"@testing-library/jest-dom": "^6.1.5",
|
|
48
|
-
"@testing-library/vue": "^8.0.1",
|
|
49
|
-
"@types/node": "^22.0.0",
|
|
50
|
-
"@vitejs/plugin-vue": "^5.0.0",
|
|
51
|
-
"@vitest/coverage-v8": "^2.1.0",
|
|
52
|
-
"@vue/eslint-config-prettier": "^10.0.0",
|
|
53
|
-
"@vue/eslint-config-typescript": "^14.0.0",
|
|
54
|
-
"@vue/test-utils": "^2.4.0",
|
|
55
|
-
"@vue/tsconfig": "^0.5.0",
|
|
56
|
-
"eslint": "^9.17.0",
|
|
57
|
-
"eslint-plugin-vue": "^9.31.0",
|
|
58
|
-
"jsdom": "^25.0.0",
|
|
59
|
-
"prettier": "^3.4.0",
|
|
60
|
-
"typescript": "~5.7.0",
|
|
61
|
-
"vite": "^6.0.0",
|
|
62
|
-
"vitest": "^2.1.0",
|
|
63
|
-
"vue-tsc": "^2.2.0"
|
|
64
|
-
},
|
|
65
|
-
"peerDependencies": {
|
|
66
|
-
"vue": "^3.4.0"
|
|
67
|
-
},
|
|
68
|
-
"keywords": [
|
|
69
|
-
"vue",
|
|
70
|
-
"vue3",
|
|
71
|
-
"vuejs",
|
|
72
|
-
"components",
|
|
73
|
-
"design-system",
|
|
74
|
-
"datametria",
|
|
75
|
-
"typescript",
|
|
76
|
-
"enterprise",
|
|
77
|
-
"ui-library",
|
|
78
|
-
"component-library",
|
|
79
|
-
"composition-api",
|
|
80
|
-
"wcag",
|
|
81
|
-
"accessibility",
|
|
82
|
-
"a11y",
|
|
83
|
-
"responsive",
|
|
84
|
-
"mobile-first",
|
|
85
|
-
"dark-mode"
|
|
86
|
-
],
|
|
87
|
-
"author": "DATAMETRIA Team <dev@datametria.io>",
|
|
88
|
-
"license": "MIT",
|
|
89
|
-
"repository": {
|
|
90
|
-
"type": "git",
|
|
91
|
-
"url": "https://github.com/datametria/DATAMETRIA-common-libraries",
|
|
92
|
-
"directory": "packages/vue-components"
|
|
93
|
-
},
|
|
94
|
-
"bugs": {
|
|
95
|
-
"url": "https://github.com/datametria/DATAMETRIA-common-libraries/issues"
|
|
96
|
-
},
|
|
97
|
-
"homepage": "https://github.com/datametria/DATAMETRIA-common-libraries#readme"
|
|
98
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@datametria/vue-components",
|
|
3
|
+
"version": "1.1.3",
|
|
4
|
+
"description": "DATAMETRIA Vue.js 3 Component Library - 40 modules (30 components + 10 composables) with 100% UX/UI compliance, WCAG 2.1 AA, dark mode, responsive system, micro-interactions",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.umd.js",
|
|
7
|
+
"module": "./dist/index.es.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.es.js",
|
|
12
|
+
"require": "./dist/index.umd.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./style.css": "./dist/style.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"src",
|
|
20
|
+
"README.md",
|
|
21
|
+
"ACCESSIBILITY.md",
|
|
22
|
+
"DESIGN-SYSTEM.md",
|
|
23
|
+
"PROGRESS.md"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": [
|
|
26
|
+
"*.css",
|
|
27
|
+
"*.vue"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "vite",
|
|
31
|
+
"build": "vue-tsc && vite build",
|
|
32
|
+
"preview": "vite preview",
|
|
33
|
+
"test": "vitest",
|
|
34
|
+
"test:ui": "vitest --ui",
|
|
35
|
+
"test:coverage": "vitest --coverage",
|
|
36
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
|
|
37
|
+
"type-check": "vue-tsc --noEmit",
|
|
38
|
+
"prepublishOnly": "npm run build"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"axios": "^1.12.2",
|
|
42
|
+
"vue": "^3.4.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@eslint/config-array": "^0.19.0",
|
|
46
|
+
"@eslint/object-schema": "^2.1.4",
|
|
47
|
+
"@testing-library/jest-dom": "^6.1.5",
|
|
48
|
+
"@testing-library/vue": "^8.0.1",
|
|
49
|
+
"@types/node": "^22.0.0",
|
|
50
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
51
|
+
"@vitest/coverage-v8": "^2.1.0",
|
|
52
|
+
"@vue/eslint-config-prettier": "^10.0.0",
|
|
53
|
+
"@vue/eslint-config-typescript": "^14.0.0",
|
|
54
|
+
"@vue/test-utils": "^2.4.0",
|
|
55
|
+
"@vue/tsconfig": "^0.5.0",
|
|
56
|
+
"eslint": "^9.17.0",
|
|
57
|
+
"eslint-plugin-vue": "^9.31.0",
|
|
58
|
+
"jsdom": "^25.0.0",
|
|
59
|
+
"prettier": "^3.4.0",
|
|
60
|
+
"typescript": "~5.7.0",
|
|
61
|
+
"vite": "^6.0.0",
|
|
62
|
+
"vitest": "^2.1.0",
|
|
63
|
+
"vue-tsc": "^2.2.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"vue": "^3.4.0"
|
|
67
|
+
},
|
|
68
|
+
"keywords": [
|
|
69
|
+
"vue",
|
|
70
|
+
"vue3",
|
|
71
|
+
"vuejs",
|
|
72
|
+
"components",
|
|
73
|
+
"design-system",
|
|
74
|
+
"datametria",
|
|
75
|
+
"typescript",
|
|
76
|
+
"enterprise",
|
|
77
|
+
"ui-library",
|
|
78
|
+
"component-library",
|
|
79
|
+
"composition-api",
|
|
80
|
+
"wcag",
|
|
81
|
+
"accessibility",
|
|
82
|
+
"a11y",
|
|
83
|
+
"responsive",
|
|
84
|
+
"mobile-first",
|
|
85
|
+
"dark-mode"
|
|
86
|
+
],
|
|
87
|
+
"author": "DATAMETRIA Team <dev@datametria.io>",
|
|
88
|
+
"license": "MIT",
|
|
89
|
+
"repository": {
|
|
90
|
+
"type": "git",
|
|
91
|
+
"url": "https://github.com/datametria/DATAMETRIA-common-libraries",
|
|
92
|
+
"directory": "packages/vue-components"
|
|
93
|
+
},
|
|
94
|
+
"bugs": {
|
|
95
|
+
"url": "https://github.com/datametria/DATAMETRIA-common-libraries/issues"
|
|
96
|
+
},
|
|
97
|
+
"homepage": "https://github.com/datametria/DATAMETRIA-common-libraries#readme"
|
|
98
|
+
}
|