dolphin-components 2.2.18 → 2.2.20
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/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ endDate: string;
|
|
|
166
166
|
dateType: string;
|
|
167
167
|
isBS: boolean;
|
|
168
168
|
};
|
|
169
|
+
searchOnLoad: boolean;
|
|
169
170
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
170
171
|
|
|
171
172
|
export declare interface DateRangeProps {
|
|
@@ -175,6 +176,7 @@ export declare interface DateRangeProps {
|
|
|
175
176
|
dateType: string;
|
|
176
177
|
isBS: boolean;
|
|
177
178
|
};
|
|
179
|
+
searchOnLoad: boolean;
|
|
178
180
|
}
|
|
179
181
|
|
|
180
182
|
export declare const DateSelector: DefineComponent<DateSelectorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
package/package.json
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"name": "dolphin-components",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "2.2.20",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"author": "<Mavorion Systems> (https://mavorion.com/)",
|
|
10
|
+
"homepage": "https://mavorion.com/",
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"main": "./dist/dolphin-components.umd.cjs",
|
|
13
|
+
"module": "./dist/dolphin-components.es.js",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/dolphin-components.es.js",
|
|
18
|
+
"require": "./dist/dolphin-components.umd.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./dolphin-components.css": "./dist/dolphin-components.css"
|
|
19
21
|
},
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"dolphin"
|
|
64
|
-
]
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite --host",
|
|
25
|
+
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly",
|
|
26
|
+
"format": "prettier --write src/",
|
|
27
|
+
"format:check": "prettier --check src/",
|
|
28
|
+
"preview": "vite preview"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
32
|
+
"@types/tabulator-tables": "^6.2.7",
|
|
33
|
+
"axios": "^1.10.0",
|
|
34
|
+
"lucide-vue-next": "^0.525.0",
|
|
35
|
+
"moment": "^2.30.1",
|
|
36
|
+
"nepali-datepicker-vue": "^1.0.7",
|
|
37
|
+
"sweetalert2": "^11.22.2",
|
|
38
|
+
"tabulator-tables": "^6.3.1",
|
|
39
|
+
"tailwindcss": "^4.1.11",
|
|
40
|
+
"utility-types": "^3.11.0",
|
|
41
|
+
"vue": "^3.5.17",
|
|
42
|
+
"vue-datepicker-next": "^1.0.3",
|
|
43
|
+
"vue-multiselect": "^3.2.0",
|
|
44
|
+
"xlsx": "^0.18.5"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"vue-router": "^4.5.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^24.0.15",
|
|
51
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
52
|
+
"@vue/tsconfig": "^0.7.0",
|
|
53
|
+
"path": "^0.12.7",
|
|
54
|
+
"prettier": "3.6.2",
|
|
55
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
56
|
+
"typescript": "~5.8.3",
|
|
57
|
+
"vite": "^7.0.5",
|
|
58
|
+
"vite-plugin-dts": "^4.5.4",
|
|
59
|
+
"vue-tsc": "^3.0.3"
|
|
60
|
+
},
|
|
61
|
+
"keywords": [
|
|
62
|
+
"mavorion",
|
|
63
|
+
"dolphin"
|
|
64
|
+
]
|
|
65
65
|
}
|