@dronico/droni-kit 1.5.6 → 1.5.8
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/CHANGELOG.md +14 -0
- package/dist/index.d.ts +5 -4
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.5.8](https://github.com/Droni-app/droni-kit/compare/v1.5.7...v1.5.8) (2025-04-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* export types ([e269fe3](https://github.com/Droni-app/droni-kit/commit/e269fe30177d7f83ae6f023f2bfa7b369bde5f71))
|
|
7
|
+
|
|
8
|
+
## [1.5.7](https://github.com/Droni-app/droni-kit/compare/v1.5.6...v1.5.7) (2025-04-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* package.json export css ([0ff4ad4](https://github.com/Droni-app/droni-kit/commit/0ff4ad482fec2eeeb17b3e9f8758e01a084abf74))
|
|
14
|
+
|
|
1
15
|
## [1.5.6](https://github.com/Droni-app/droni-kit/compare/v1.5.5...v1.5.6) (2025-04-22)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { default as DuiButton } from './stories/Forms/DuiButton.vue';
|
|
2
|
+
import { default as DuiInput } from './stories/Forms/DuiInput.vue';
|
|
3
|
+
import { default as DuiTextarea } from './stories/Forms/DuiTextarea.vue';
|
|
4
|
+
import { default as DuiAction } from './stories/Elements/DuiAction.vue';
|
|
5
|
+
export { DuiButton, DuiInput, DuiTextarea, DuiAction };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dronico/droni-kit",
|
|
3
3
|
"author": "Gustavo Barragan <dev@droni.co>",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.8",
|
|
5
5
|
"private": false,
|
|
6
6
|
"access": "public",
|
|
7
7
|
"publishConfig": {
|
|
@@ -19,9 +19,11 @@
|
|
|
19
19
|
".": {
|
|
20
20
|
"import": "./dist/droni-kit.es.js",
|
|
21
21
|
"require": "./dist/droni-kit.cjs"
|
|
22
|
-
}
|
|
22
|
+
},
|
|
23
|
+
"./dist/droni-kit.css": "./dist/droni-kit.css",
|
|
24
|
+
"./dist/index.d.ts": "./dist/index.d.ts"
|
|
23
25
|
},
|
|
24
|
-
"types": "dist/index.d.ts",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
25
27
|
"scripts": {
|
|
26
28
|
"dev": "vite",
|
|
27
29
|
"build": "vue-tsc -b && vite build",
|