@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.107.1",
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": "927a6a6ed15f4202468c8a636dcf4d77d1a950ec"
54
+ "gitHead": "3b851815bcbce0ed87be3194f213b3a4e1335b01"
55
55
  }
@@ -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,6 +0,0 @@
1
- import { IComponentRender } from '@zeedhi/common';
2
- import Vue from 'vue';
3
- export default class ZdGridFooter extends Vue {
4
- footerSlot: IComponentRender[];
5
- instance: any;
6
- }
@@ -1,8 +0,0 @@
1
- import { IComponentRender } from '@zeedhi/common';
2
- import Vue from 'vue';
3
- export default class ZdGridNoData extends Vue {
4
- errorSlot: IComponentRender[];
5
- noDataSlot: IComponentRender[];
6
- noResultSlot: IComponentRender[];
7
- instance: any;
8
- }
@@ -1,6 +0,0 @@
1
- import { IComponentRender } from '@zeedhi/common';
2
- import Vue from 'vue';
3
- export default class ZdGridTop extends Vue {
4
- toolbarSlot: IComponentRender[];
5
- instance: any;
6
- }
@@ -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
- }
@@ -1,2 +0,0 @@
1
- declare const _default: (name: string) => string;
2
- export default _default;