jplan-pack 0.4.33 → 0.4.35
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/jplan-pack.cjs.js +38 -12
- package/dist/jplan-pack.css +1 -1
- package/dist/jplan-pack.es.js +32863 -28418
- package/dist/types/components/index.d.ts +2 -1
- package/dist/types/components/spinner/SpinnerLoader.d.ts +2 -0
- package/dist/types/composables/index.d.ts +2 -1
- package/dist/types/composables/spinner.d.ts +3 -0
- package/dist/types/plugins/toast/toast.d.ts +2 -0
- package/dist/types/utils/helpers/filterQuery.d.ts +1 -0
- package/dist/types/utils/index.d.ts +2 -1
- package/package.json +4 -2
@@ -11,8 +11,9 @@ import { default as JTextField } from './form/JTextField';
|
|
11
11
|
import { default as JSelect } from './form/JSelect';
|
12
12
|
import { default as JTextArea } from './form/JTextArea';
|
13
13
|
import { default as JForm } from './form/JForm';
|
14
|
+
import { default as SpinnerLoader } from './spinner/SpinnerLoader';
|
14
15
|
import { TablerIcons } from './icon/tabler';
|
15
|
-
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TablerIcons, ParentCard, ColumnSettingsDialog, };
|
16
|
+
export { UiTable, ConfirmDialog, CopyButton, DotsMenu, FormMetadata, JBtn, JDialog, JIconBtn, JSelect, JTextArea, JTextField, JForm, TablerIcons, ParentCard, ColumnSettingsDialog, SpinnerLoader, };
|
16
17
|
declare const _default: {
|
17
18
|
IconSet: import('vue').DefineComponent<{
|
18
19
|
item: import('..').IconType | string;
|
@@ -0,0 +1,2 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export default function filterQuery(data: any[], query: string, properties?: string[]): any[];
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jplan-pack",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.35",
|
4
4
|
"main": "./dist/jplan-pack.cjs.js",
|
5
5
|
"module": "./dist/jplan-pack.es.js",
|
6
6
|
"types": "dist/types/index.d.ts",
|
@@ -25,6 +25,7 @@
|
|
25
25
|
"@tabler/icons-vue": "^3.21.0",
|
26
26
|
"@vitejs/plugin-vue": "^5.1.5",
|
27
27
|
"@vue/compiler-core": "^3.3.4",
|
28
|
+
"@vue/runtime-dom": "^3.5.13",
|
28
29
|
"@vueuse/core": "^11.2.0",
|
29
30
|
"axios": "^1.7.9",
|
30
31
|
"lodash": "^4.17.21",
|
@@ -36,10 +37,11 @@
|
|
36
37
|
"peerDependencies": {
|
37
38
|
"@mdi/font": "^7.4.47",
|
38
39
|
"@vueuse/core": "^11.2.0",
|
39
|
-
"vue": "^3.
|
40
|
+
"vue": "^3.5.13",
|
40
41
|
"vuetify": "^3.7.4"
|
41
42
|
},
|
42
43
|
"devDependencies": {
|
44
|
+
"@types/lodash": "^4.17.15",
|
43
45
|
"@types/node": "^20.3.3",
|
44
46
|
"rimraf": "^5.0.1",
|
45
47
|
"sass": "^1.63.6",
|