@finema/core 1.3.37 → 1.3.39
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 +8 -36
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/ui.css +4 -1
- package/dist/types.d.mts +3 -2
- package/dist/types.d.ts +3 -2
- package/package.json +18 -21
package/README.md
CHANGED
|
@@ -2,34 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[✨ Release Notes](/CHANGELOG.md)
|
|
4
4
|
|
|
5
|
-
## Todos
|
|
6
|
-
|
|
7
|
-
- [ ] Loader
|
|
8
|
-
- [ ] Button
|
|
9
|
-
- [ ] Table
|
|
10
|
-
- [ ] Icon
|
|
11
|
-
- [ ] Badge
|
|
12
|
-
- [ ] Status
|
|
13
|
-
- Form
|
|
14
|
-
- [ ] Static
|
|
15
|
-
- [ ] Input
|
|
16
|
-
- [ ] Textarea
|
|
17
|
-
- [ ] Select
|
|
18
|
-
- [ ] Select multi
|
|
19
|
-
- [ ] Checkbox
|
|
20
|
-
- [ ] radio
|
|
21
|
-
- [ ] toggle
|
|
22
|
-
- [ ] datetime
|
|
23
|
-
- [ ] upload
|
|
24
|
-
- [ ] upload multi
|
|
25
|
-
- [ ] Modal
|
|
26
|
-
- [ ] Notification
|
|
27
|
-
- [ ] Card
|
|
28
|
-
- [ ] Tab
|
|
29
|
-
- [ ] Alert
|
|
30
|
-
- [ ] Container
|
|
31
|
-
- [ ] Dropdown
|
|
32
|
-
|
|
33
5
|
## Features
|
|
34
6
|
|
|
35
7
|
- UI components
|
|
@@ -65,24 +37,24 @@ That's it! You can now use @finema/core in your Nuxt app ✨
|
|
|
65
37
|
|
|
66
38
|
```bash
|
|
67
39
|
# Install dependencies
|
|
68
|
-
|
|
40
|
+
pnpm install
|
|
69
41
|
|
|
70
42
|
# Generate type stubs
|
|
71
|
-
|
|
43
|
+
pnpm dev:prepare
|
|
72
44
|
|
|
73
45
|
# Develop with the playground
|
|
74
|
-
|
|
46
|
+
pnpm dev
|
|
75
47
|
|
|
76
48
|
# Build the playground
|
|
77
|
-
|
|
49
|
+
pnpm dev:build
|
|
78
50
|
|
|
79
51
|
# Run ESLint
|
|
80
|
-
|
|
52
|
+
pnpm lint
|
|
81
53
|
|
|
82
54
|
# Run Vitest
|
|
83
|
-
|
|
84
|
-
|
|
55
|
+
pnpm test
|
|
56
|
+
pnpm test:watch
|
|
85
57
|
|
|
86
58
|
# Release new version
|
|
87
|
-
|
|
59
|
+
pnpm release
|
|
88
60
|
```
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
package/dist/runtime/ui.css
CHANGED
|
@@ -13,11 +13,14 @@
|
|
|
13
13
|
--color-primary-DEFAULT: 54 117 251;
|
|
14
14
|
|
|
15
15
|
--dp-font-family: inherit !important;
|
|
16
|
+
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.dp__theme_light {
|
|
16
20
|
--dp-primary-color: rgb(var(--color-primary-DEFAULT)) !important;
|
|
17
21
|
--dp-primary-disabled-color: rgb(var(--color-primary-200)) !important;
|
|
18
22
|
}
|
|
19
23
|
|
|
20
|
-
|
|
21
24
|
::-webkit-scrollbar {
|
|
22
25
|
-webkit-appearance: none;
|
|
23
26
|
width: 10px;
|
package/dist/types.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
import { ModuleOptions } from './module'
|
|
2
|
+
import type { ModuleOptions } from './module'
|
|
3
|
+
|
|
3
4
|
|
|
4
5
|
declare module '@nuxt/schema' {
|
|
5
6
|
interface NuxtConfig { ['core']?: Partial<ModuleOptions> }
|
|
@@ -12,4 +13,4 @@ declare module 'nuxt/schema' {
|
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
|
|
15
|
-
export { core } from './module'
|
|
16
|
+
export type { core } from './module'
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
import { ModuleOptions } from './module'
|
|
2
|
+
import type { ModuleOptions } from './module'
|
|
3
|
+
|
|
3
4
|
|
|
4
5
|
declare module '@nuxt/schema' {
|
|
5
6
|
interface NuxtConfig { ['core']?: Partial<ModuleOptions> }
|
|
@@ -12,4 +13,4 @@ declare module 'nuxt/schema' {
|
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
|
|
15
|
-
export { core } from './module'
|
|
16
|
+
export type { core } from './module'
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finema/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.39",
|
|
4
4
|
"repository": "https://gitlab.finema.co/finema/ui-kit",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"author": "Finema
|
|
6
|
+
"author": "Finema Dev Core Team",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
@@ -33,21 +33,18 @@
|
|
|
33
33
|
"prepare": "husky install"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@headlessui/vue": "^1.7.16",
|
|
37
|
-
"@iconify-json/mdi": "^1.1.54",
|
|
38
|
-
"@iconify-json/simple-icons": "^1.1.76",
|
|
39
36
|
"@nuxt/kit": "^3.7.4",
|
|
40
37
|
"@nuxt/ui": "^2.11.1",
|
|
41
|
-
"@pinia/nuxt": "^0.
|
|
42
|
-
"@vee-validate/nuxt": "^4.
|
|
43
|
-
"@vee-validate/zod": "^4.
|
|
38
|
+
"@pinia/nuxt": "^0.5.1",
|
|
39
|
+
"@vee-validate/nuxt": "^4.12.3",
|
|
40
|
+
"@vee-validate/zod": "^4.12.3",
|
|
44
41
|
"@vuepic/vue-datepicker": "^7.4.0",
|
|
45
42
|
"axios": "^1.5.1",
|
|
46
|
-
"date-fns": "^3.0.
|
|
43
|
+
"date-fns": "^3.0.6",
|
|
47
44
|
"i18next": "^23.7.11",
|
|
48
45
|
"lodash-es": "^4.17.21",
|
|
49
|
-
"nuxt-security": "^0.
|
|
50
|
-
"pinia": "^2.1.
|
|
46
|
+
"nuxt-security": "^1.0.0",
|
|
47
|
+
"pinia": "^2.1.7",
|
|
51
48
|
"url-join": "^5.0.0",
|
|
52
49
|
"zod": "^3.22.4",
|
|
53
50
|
"zod-i18n-map": "^2.23.0"
|
|
@@ -56,24 +53,24 @@
|
|
|
56
53
|
"@finema/eslint-config": "^1.2.0",
|
|
57
54
|
"@nuxt/devtools": "latest",
|
|
58
55
|
"@nuxt/eslint-config": "^0.2.0",
|
|
59
|
-
"@nuxt/module-builder": "^0.5.
|
|
56
|
+
"@nuxt/module-builder": "^0.5.4",
|
|
60
57
|
"@nuxt/schema": "^3.7.4",
|
|
61
|
-
"@nuxt/test-utils": "^3.
|
|
62
|
-
"@release-it/conventional-changelog": "^
|
|
58
|
+
"@nuxt/test-utils": "^3.9.0",
|
|
59
|
+
"@release-it/conventional-changelog": "^8.0.1",
|
|
63
60
|
"@types/lodash-es": "^4.17.12",
|
|
64
61
|
"@types/node": "^18.18.1",
|
|
65
62
|
"changelogen": "^0.5.5",
|
|
66
|
-
"eslint": "^8.
|
|
63
|
+
"eslint": "^8.56.0",
|
|
67
64
|
"husky": "^8.0.3",
|
|
68
|
-
"lint-staged": "^
|
|
65
|
+
"lint-staged": "^15.2.0",
|
|
69
66
|
"nuxt": "^3.7.4",
|
|
70
|
-
"prettier": "^3.
|
|
71
|
-
"release-it": "^
|
|
67
|
+
"prettier": "^3.1.1",
|
|
68
|
+
"release-it": "^17.0.1",
|
|
72
69
|
"sass": "^1.69.5",
|
|
73
|
-
"stylelint": "^
|
|
70
|
+
"stylelint": "^16.0.2",
|
|
74
71
|
"stylelint-config-prettier-scss": "^1.0.0",
|
|
75
|
-
"stylelint-config-standard-scss": "^
|
|
76
|
-
"vitest": "^
|
|
72
|
+
"stylelint-config-standard-scss": "^12.0.0",
|
|
73
|
+
"vitest": "^1.1.0"
|
|
77
74
|
},
|
|
78
75
|
"lint-staged": {
|
|
79
76
|
"*.{ts,vue,tsx,js}": "eslint --fix",
|