dolphin-components 2.0.4 → 2.0.6
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/dist/components/Icons.vue.d.ts +9 -0
- package/dist/dolphin-components.cjs.js +7860 -25
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +32371 -3146
- package/dist/dolphin-components.umd.js +7859 -24
- package/dist/index.d.ts +3 -2
- package/dist/types.d.ts +8 -0
- package/package.json +8 -4
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ import Switch from './components/Switch.vue';
|
|
|
5
5
|
import Tabulator from './components/Tabulator.vue';
|
|
6
6
|
import Toggle from './components/Toggle.vue';
|
|
7
7
|
import Towser from './components/Towser.vue';
|
|
8
|
-
|
|
9
|
-
export
|
|
8
|
+
import Icons from './components/Icons.vue';
|
|
9
|
+
export { ContentLayout, Modal, Switch, Tabulator, Toggle, Towser, Icons };
|
|
10
|
+
export type { ContentTitle, ContentAction, ContentProps, ModalProps, ModalTitle, ModalAction, SwitchProps, TabulatorProps, TabulatorModalSettings, TabulatorHeader, TabulatorData, TabulatorAction, TowserTitle, TowserAction, TowserProps, ToggleProps, IconProps } from './types';
|
|
10
11
|
import { InputError } from './Directives/ErrorDirective';
|
|
11
12
|
export { InputError };
|
package/dist/types.d.ts
CHANGED
|
@@ -105,3 +105,11 @@ export interface TowserAction {
|
|
|
105
105
|
title: string;
|
|
106
106
|
class?: string;
|
|
107
107
|
}
|
|
108
|
+
export interface IconProps {
|
|
109
|
+
name: string;
|
|
110
|
+
size?: number;
|
|
111
|
+
color?: string;
|
|
112
|
+
strokeWidth?: number;
|
|
113
|
+
absoluteStrokeWidth?: boolean;
|
|
114
|
+
classValue?: string;
|
|
115
|
+
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
9
9
|
"author": "<Mavorion Systems> (https://mavorion.com/)",
|
|
10
10
|
"homepage": "https://mavorion.com/",
|
|
11
|
-
"license"
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
12
|
"main": "./dist/dolphin-components.umd.cjs",
|
|
13
13
|
"module": "./dist/dolphin-components.es.js",
|
|
14
14
|
"exports": {
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@tailwindcss/vite": "^4.0.3",
|
|
30
30
|
"@types/tabulator-tables": "^6.2.3",
|
|
31
|
+
"lucide-vue-next": "^0.484.0",
|
|
31
32
|
"sweetalert2": "^11.15.10",
|
|
32
33
|
"tabulator-tables": "^6.3.1",
|
|
33
34
|
"tailwindcss": "^4.0.3",
|
|
@@ -48,5 +49,8 @@
|
|
|
48
49
|
"vite-plugin-dts": "^4.5.0",
|
|
49
50
|
"vue-tsc": "^2.2.0"
|
|
50
51
|
},
|
|
51
|
-
"keywords": [
|
|
52
|
-
|
|
52
|
+
"keywords": [
|
|
53
|
+
"mavorion",
|
|
54
|
+
"dolphin"
|
|
55
|
+
]
|
|
56
|
+
}
|