@zeedhi/vuetify 1.107.1 → 1.107.3
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/README.md +9 -9
- package/dist/zd-vuetify.esm.js +10996 -2180
- package/dist/zd-vuetify.umd.js +11076 -2260
- package/package.json +2 -2
- package/rollup.scss.config.js +13 -13
- package/types/components/zd-grid/ZdGridFooter.d.ts +0 -6
- package/types/components/zd-grid/ZdGridNoData.d.ts +0 -8
- package/types/components/zd-grid/ZdGridTop.d.ts +0 -6
- package/types/components/zd-iterable/ZdIterableColumnsButton.d.ts +0 -23
- package/types/components/zd-iterable/ZdIterablePageInfo.d.ts +0 -9
- package/types/components/zd-iterable/ZdIterablePageSize.d.ts +0 -20
- package/types/components/zd-iterable/ZdIterablePagination.d.ts +0 -35
- package/types/components/zd-iterable/ZdSearch.d.ts +0 -16
- package/types/utils/getIconPlugin.d.ts +0 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.107.
|
3
|
+
"version": "1.107.3",
|
4
4
|
"description": "Zeedhi Components based on Vuetify",
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
6
6
|
"license": "ISC",
|
@@ -51,5 +51,5 @@
|
|
51
51
|
"@types/prismjs": "1.26.*",
|
52
52
|
"@types/sortablejs": "1.15.*"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "3b851815bcbce0ed87be3194f213b3a4e1335b01"
|
55
55
|
}
|
package/rollup.scss.config.js
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
import scss from 'rollup-plugin-scss';
|
2
|
-
|
3
|
-
export default {
|
4
|
-
input: './src/styles/index.scss',
|
5
|
-
output: {
|
6
|
-
format: 'esm',
|
7
|
-
},
|
8
|
-
plugins: [
|
9
|
-
scss({
|
10
|
-
output: 'dist/zd-style.css',
|
11
|
-
}),
|
12
|
-
],
|
13
|
-
};
|
1
|
+
import scss from 'rollup-plugin-scss';
|
2
|
+
|
3
|
+
export default {
|
4
|
+
input: './src/styles/index.scss',
|
5
|
+
output: {
|
6
|
+
format: 'esm',
|
7
|
+
},
|
8
|
+
plugins: [
|
9
|
+
scss({
|
10
|
+
output: 'dist/zd-style.css',
|
11
|
+
}),
|
12
|
+
],
|
13
|
+
};
|
@@ -1,23 +0,0 @@
|
|
1
|
-
import { IterableColumnsButton } from '@zeedhi/common';
|
2
|
-
import ZdButton from '../zd-button/ZdButton.vue';
|
3
|
-
/**
|
4
|
-
* Iterable Columns Button component
|
5
|
-
*/
|
6
|
-
export default class ZdIterableColumnsButton extends ZdButton {
|
7
|
-
iterableComponentName: string;
|
8
|
-
iconName: string;
|
9
|
-
icon: boolean | string;
|
10
|
-
instance: IterableColumnsButton;
|
11
|
-
instanceType: typeof IterableColumnsButton;
|
12
|
-
getEvents(on: any): {
|
13
|
-
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
14
|
-
blur?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
15
|
-
click?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
16
|
-
focus?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
17
|
-
onCreated?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
18
|
-
onBeforeMount?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
19
|
-
onMounted?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
20
|
-
onBeforeDestroy?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
21
|
-
onDestroyed?: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined;
|
22
|
-
};
|
23
|
-
}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import { IterablePageInfo } from '@zeedhi/common';
|
2
|
-
import ZdIterablePageComponent from './ZdIterablePageComponent';
|
3
|
-
/**
|
4
|
-
* Iterable page info component
|
5
|
-
*/
|
6
|
-
export default class ZdIterablePageInfo extends ZdIterablePageComponent {
|
7
|
-
instance: IterablePageInfo;
|
8
|
-
instanceType: typeof IterablePageInfo;
|
9
|
-
}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { IDictionary } from '@zeedhi/core';
|
2
|
-
import { IterablePageSize } from '@zeedhi/common';
|
3
|
-
import ZdSelect from '../zd-select/ZdSelect.vue';
|
4
|
-
/**
|
5
|
-
* Iterable page size component
|
6
|
-
*/
|
7
|
-
export default class ZdIterablePageSize extends ZdSelect {
|
8
|
-
iterableComponentName: string;
|
9
|
-
clearable: boolean | string;
|
10
|
-
dataText: string | string[];
|
11
|
-
dataValue: string;
|
12
|
-
dense: boolean | string;
|
13
|
-
autocomplete: boolean | string;
|
14
|
-
showHelper: boolean | string;
|
15
|
-
showLabel: boolean | string;
|
16
|
-
validations: IDictionary<IDictionary<string | number>>;
|
17
|
-
instance: IterablePageSize;
|
18
|
-
instanceType: typeof IterablePageSize;
|
19
|
-
mounted(): void;
|
20
|
-
}
|
@@ -1,35 +0,0 @@
|
|
1
|
-
import { IterablePagination } from '@zeedhi/common';
|
2
|
-
import ZdIterablePageComponent from './ZdIterablePageComponent';
|
3
|
-
/**
|
4
|
-
* Iterable pagination component
|
5
|
-
*/
|
6
|
-
export default class ZdIterablePagination extends ZdIterablePageComponent {
|
7
|
-
circle: boolean;
|
8
|
-
maxButtons?: number;
|
9
|
-
nextIcon: string;
|
10
|
-
prevIcon: string;
|
11
|
-
instance: IterablePagination;
|
12
|
-
instanceType: typeof IterablePagination;
|
13
|
-
private lastLength?;
|
14
|
-
private element;
|
15
|
-
private paginationComponent;
|
16
|
-
mounted(): void;
|
17
|
-
private initRefs;
|
18
|
-
/**
|
19
|
-
* Vuetify doesn't wait for nextTick to calculate maxButtons when resizing,
|
20
|
-
* so we have to refresh it
|
21
|
-
*/
|
22
|
-
private refreshMaxButtons;
|
23
|
-
private updateIterableEvent;
|
24
|
-
/**
|
25
|
-
* Fix maxButtons when pagination is not visible initially
|
26
|
-
*/
|
27
|
-
private initMaxButtons;
|
28
|
-
private lengthChange;
|
29
|
-
growPagination(): void;
|
30
|
-
/**
|
31
|
-
* Approach to "width: auto + 17px", because vuetify pagination requires parent element
|
32
|
-
* to have 17px of extra width relative to children to calculate the number of buttons displayed
|
33
|
-
*/
|
34
|
-
updateWidth(): void;
|
35
|
-
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { Search } from '@zeedhi/common';
|
2
|
-
import ZdTextInput from '../zd-text-input/ZdTextInput.vue';
|
3
|
-
/**
|
4
|
-
* Search component
|
5
|
-
*/
|
6
|
-
export default class ZdSearch extends ZdTextInput {
|
7
|
-
iterableComponentName: string;
|
8
|
-
showLabel: string;
|
9
|
-
showHelper: string;
|
10
|
-
appendIcon: string;
|
11
|
-
placeholder: string;
|
12
|
-
cssClass: string;
|
13
|
-
instance: Search;
|
14
|
-
instanceType: typeof Search;
|
15
|
-
getSearchValue(): string;
|
16
|
-
}
|