@zeedhi/vuetify 1.40.0 → 1.41.0
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/zd-vuetify.esm.js +331 -167
- package/dist/zd-vuetify.umd.js +332 -167
- package/package.json +4 -4
- package/types/components/zd-iterable/ZdIterable.d.ts +0 -1
- package/types/components/zd-selectable-list/ZdSelectableList.d.ts +14 -0
- package/types/index.d.ts +2 -1
- package/types/utils/icons/icons.d.ts +5 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.41.0",
|
4
4
|
"description": "Zeedhi Components based on Vuetify",
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
6
6
|
"license": "ISC",
|
@@ -25,6 +25,7 @@
|
|
25
25
|
"@types/lodash.isundefined": "^3.0.6",
|
26
26
|
"@types/lodash.kebabcase": "^4.1.6",
|
27
27
|
"@types/sortablejs": "^1.10.6",
|
28
|
+
"@zeedhi/zd-vue-treeselect": "^1.0.0",
|
28
29
|
"apexcharts": "^3.23.0",
|
29
30
|
"hooper": "^0.3.4",
|
30
31
|
"lodash.camelcase": "^4.3.0",
|
@@ -37,8 +38,7 @@
|
|
37
38
|
"vue-apexcharts": "^1.6.0",
|
38
39
|
"vue-class-component": "^7.2.6",
|
39
40
|
"vue-property-decorator": "^9.1.2",
|
40
|
-
"vuetify": "2.5.14"
|
41
|
-
"zeedhi-vue-treeselect": "^0.4.1"
|
41
|
+
"vuetify": "2.5.14"
|
42
42
|
},
|
43
43
|
"peerDependencies": {
|
44
44
|
"@zeedhi/common": "^1.0.0-alpha.0",
|
@@ -51,5 +51,5 @@
|
|
51
51
|
"@types/prismjs": "^1.16.2",
|
52
52
|
"@types/sortablejs": "^1.10.6"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "cb7c5121e9da43558e93af18549dd224d1018217"
|
55
55
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { SelectableList } from '@zeedhi/common';
|
2
|
+
import ZdList from '../zd-list/ZdList';
|
3
|
+
/**
|
4
|
+
* Selectable List component
|
5
|
+
*/
|
6
|
+
export default class ZdSelectableList extends ZdList {
|
7
|
+
activeClass?: string;
|
8
|
+
mandatory?: boolean;
|
9
|
+
max?: number;
|
10
|
+
multiple?: number;
|
11
|
+
instance: SelectableList;
|
12
|
+
instanceType: typeof SelectableList;
|
13
|
+
change(event: Event): void;
|
14
|
+
}
|
package/types/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { PluginFunction } from 'vue';
|
2
2
|
import 'sl-vue-tree/dist/sl-vue-tree-minimal.css';
|
3
3
|
import 'hooper/dist/hooper.css';
|
4
|
-
import 'zeedhi-vue-treeselect/dist/vue-treeselect.css';
|
4
|
+
import '@zeedhi/zd-vue-treeselect/dist/vue-treeselect.css';
|
5
5
|
import Vuetify from 'vuetify/lib';
|
6
6
|
import 'vuetify/dist/vuetify.min.css';
|
7
7
|
declare const Zeedhi: {
|
@@ -11,4 +11,5 @@ export default Zeedhi;
|
|
11
11
|
export * from './components';
|
12
12
|
export * from './components/public';
|
13
13
|
export * from './utils/colors';
|
14
|
+
export * from './utils/icons/icons';
|
14
15
|
export { Vuetify };
|