@zeedhi/common 1.121.0 → 1.123.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/types/components/index.d.ts +151 -0
- package/dist/types/components/zd-alert/alert.d.ts +94 -0
- package/dist/types/components/zd-alert/interfaces.d.ts +18 -0
- package/dist/types/components/zd-badge/badge.d.ts +28 -0
- package/dist/types/components/zd-badge/interfaces.d.ts +10 -0
- package/dist/types/components/zd-breadcrumbs/breadcrumbs.d.ts +32 -0
- package/dist/types/components/zd-breadcrumbs/interfaces.d.ts +24 -0
- package/dist/types/components/zd-button/button.d.ts +89 -0
- package/dist/types/components/zd-button/interfaces.d.ts +48 -0
- package/dist/types/components/zd-button-group/button-group.d.ts +67 -0
- package/dist/types/components/zd-button-group/interfaces.d.ts +25 -0
- package/dist/types/components/zd-card/card.d.ts +152 -0
- package/dist/types/components/zd-card/interfaces.d.ts +40 -0
- package/dist/types/components/zd-carousel/carousel.d.ts +163 -0
- package/dist/types/components/zd-carousel/interfaces.d.ts +49 -0
- package/dist/types/components/zd-checkbox/checkbox.d.ts +12 -0
- package/dist/types/components/zd-checkbox/interfaces.d.ts +5 -0
- package/dist/types/components/zd-checkbox-multiple/checkbox-multiple.d.ts +39 -0
- package/dist/types/components/zd-checkbox-multiple/interfaces.d.ts +13 -0
- package/dist/types/components/zd-chip/chip.d.ts +60 -0
- package/dist/types/components/zd-chip/interfaces.d.ts +18 -0
- package/dist/types/components/zd-code-viewer/code-viewer.d.ts +86 -0
- package/dist/types/components/zd-code-viewer/interfaces.d.ts +13 -0
- package/dist/types/components/zd-col/col.d.ts +33 -0
- package/dist/types/components/zd-col/interfaces.d.ts +15 -0
- package/dist/types/components/zd-collapse-card/collapse-card.d.ts +56 -0
- package/dist/types/components/zd-collapse-card/interfaces.d.ts +14 -0
- package/dist/types/components/zd-component/child-not-found.d.ts +6 -0
- package/dist/types/components/zd-component/component-render.d.ts +16 -0
- package/dist/types/components/zd-component/component.d.ts +120 -0
- package/dist/types/components/zd-component/interfaces.d.ts +74 -0
- package/dist/types/components/zd-container/container.d.ts +45 -0
- package/dist/types/components/zd-container/interfaces.d.ts +12 -0
- package/dist/types/components/zd-currency/currency.d.ts +12 -0
- package/dist/types/components/zd-currency/interfaces.d.ts +6 -0
- package/dist/types/components/zd-date-input/date-input.d.ts +152 -0
- package/dist/types/components/zd-date-input/interfaces.d.ts +27 -0
- package/dist/types/components/zd-date-range/date-range.d.ts +158 -0
- package/dist/types/components/zd-date-range/interfaces.d.ts +18 -0
- package/dist/types/components/zd-dialog/dialog.d.ts +76 -0
- package/dist/types/components/zd-dialog/interfaces.d.ts +13 -0
- package/dist/types/components/zd-divider/divider.d.ts +20 -0
- package/dist/types/components/zd-divider/interfaces.d.ts +8 -0
- package/dist/types/components/zd-dropdown/dropdown.d.ts +81 -0
- package/dist/types/components/zd-dropdown/interfaces.d.ts +23 -0
- package/dist/types/components/zd-footer/footer.d.ts +80 -0
- package/dist/types/components/zd-footer/interfaces.d.ts +26 -0
- package/dist/types/components/zd-form/form.d.ts +174 -0
- package/dist/types/components/zd-form/interfaces.d.ts +36 -0
- package/dist/types/components/zd-frame/frame.d.ts +81 -0
- package/dist/types/components/zd-frame/interfaces.d.ts +23 -0
- package/dist/types/components/zd-frame-page/frame-page.d.ts +14 -0
- package/dist/types/components/zd-frame-page/interfaces.d.ts +4 -0
- package/dist/types/components/zd-grid/data-navigator.d.ts +12 -0
- package/dist/types/components/zd-grid/data-selector.d.ts +25 -0
- package/dist/types/components/zd-grid/grid-column.d.ts +47 -0
- package/dist/types/components/zd-grid/grid-events.d.ts +26 -0
- package/dist/types/components/zd-grid/grid.d.ts +85 -0
- package/dist/types/components/zd-grid/index.d.ts +11 -0
- package/dist/types/components/zd-grid/interfaces.d.ts +148 -0
- package/dist/types/components/zd-grid/iterable-table.d.ts +28 -0
- package/dist/types/components/zd-grid/keymap-merger.d.ts +26 -0
- package/dist/types/components/zd-grid/keymap-navigation.d.ts +6 -0
- package/dist/types/components/zd-grid/table-action-builder.d.ts +19 -0
- package/dist/types/components/zd-grid/view-navigator.d.ts +10 -0
- package/dist/types/components/zd-grid-editable/data-editor-with-add.d.ts +35 -0
- package/dist/types/components/zd-grid-editable/data-editor.d.ts +64 -0
- package/dist/types/components/zd-grid-editable/errors/index.d.ts +2 -0
- package/dist/types/components/zd-grid-editable/errors/not-editing.d.ts +6 -0
- package/dist/types/components/zd-grid-editable/errors/row-not-found.d.ts +6 -0
- package/dist/types/components/zd-grid-editable/grid-column-editable.d.ts +9 -0
- package/dist/types/components/zd-grid-editable/grid-editable-controller.d.ts +8 -0
- package/dist/types/components/zd-grid-editable/grid-editable-events.d.ts +32 -0
- package/dist/types/components/zd-grid-editable/grid-editable.d.ts +124 -0
- package/dist/types/components/zd-grid-editable/index.d.ts +8 -0
- package/dist/types/components/zd-grid-editable/interfaces.d.ts +66 -0
- package/dist/types/components/zd-grid-editable/keymap-editing.d.ts +7 -0
- package/dist/types/components/zd-header/header.d.ts +94 -0
- package/dist/types/components/zd-header/interfaces.d.ts +29 -0
- package/dist/types/components/zd-icon/icon.d.ts +55 -0
- package/dist/types/components/zd-icon/interfaces.d.ts +13 -0
- package/dist/types/components/zd-image/image.d.ts +73 -0
- package/dist/types/components/zd-image/interfaces.d.ts +17 -0
- package/dist/types/components/zd-increment/increment.d.ts +56 -0
- package/dist/types/components/zd-increment/interfaces.d.ts +9 -0
- package/dist/types/components/zd-input/input-factory.d.ts +6 -0
- package/dist/types/components/zd-input/input.d.ts +223 -0
- package/dist/types/components/zd-input/interfaces.d.ts +38 -0
- package/dist/types/components/zd-iterable/column-not-found.d.ts +6 -0
- package/dist/types/components/zd-iterable/column.d.ts +78 -0
- package/dist/types/components/zd-iterable/conditions-manager.d.ts +49 -0
- package/dist/types/components/zd-iterable/interfaces.d.ts +103 -0
- package/dist/types/components/zd-iterable/iterable-columns-button-controller.d.ts +9 -0
- package/dist/types/components/zd-iterable/iterable-columns-button.d.ts +35 -0
- package/dist/types/components/zd-iterable/iterable-controller.d.ts +8 -0
- package/dist/types/components/zd-iterable/iterable-page-component.d.ts +27 -0
- package/dist/types/components/zd-iterable/iterable-page-info.d.ts +7 -0
- package/dist/types/components/zd-iterable/iterable-page-size.d.ts +62 -0
- package/dist/types/components/zd-iterable/iterable-pagination.d.ts +28 -0
- package/dist/types/components/zd-iterable/iterable.d.ts +77 -0
- package/dist/types/components/zd-iterable/search.d.ts +31 -0
- package/dist/types/components/zd-iterable-component-render/interfaces.d.ts +34 -0
- package/dist/types/components/zd-iterable-component-render/iterable-component-render.d.ts +84 -0
- package/dist/types/components/zd-layout/interfaces.d.ts +7 -0
- package/dist/types/components/zd-layout/layout.d.ts +9 -0
- package/dist/types/components/zd-list/interfaces.d.ts +44 -0
- package/dist/types/components/zd-list/item-not-found.d.ts +6 -0
- package/dist/types/components/zd-list/list-group.d.ts +30 -0
- package/dist/types/components/zd-list/list-item.d.ts +46 -0
- package/dist/types/components/zd-list/list.d.ts +81 -0
- package/dist/types/components/zd-loading/interfaces.d.ts +7 -0
- package/dist/types/components/zd-loading/loading.d.ts +21 -0
- package/dist/types/components/zd-login/interfaces.d.ts +25 -0
- package/dist/types/components/zd-login/login-button.d.ts +50 -0
- package/dist/types/components/zd-login/login.d.ts +54 -0
- package/dist/types/components/zd-main/interfaces.d.ts +5 -0
- package/dist/types/components/zd-main/main.d.ts +7 -0
- package/dist/types/components/zd-master-detail/detail-not-found.d.ts +7 -0
- package/dist/types/components/zd-master-detail/interfaces.d.ts +10 -0
- package/dist/types/components/zd-master-detail/master-detail.d.ts +18 -0
- package/dist/types/components/zd-master-detail/master-not-found.d.ts +7 -0
- package/dist/types/components/zd-menu/interfaces.d.ts +68 -0
- package/dist/types/components/zd-menu/menu-button.d.ts +29 -0
- package/dist/types/components/zd-menu/menu-group.d.ts +61 -0
- package/dist/types/components/zd-menu/menu-link.d.ts +50 -0
- package/dist/types/components/zd-menu/menu-separator.d.ts +7 -0
- package/dist/types/components/zd-menu/menu.d.ts +199 -0
- package/dist/types/components/zd-modal/interfaces.d.ts +35 -0
- package/dist/types/components/zd-modal/modal-close-button.d.ts +28 -0
- package/dist/types/components/zd-modal/modal.d.ts +53 -0
- package/dist/types/components/zd-month/interfaces.d.ts +6 -0
- package/dist/types/components/zd-month/month.d.ts +33 -0
- package/dist/types/components/zd-number-input/interfaces.d.ts +8 -0
- package/dist/types/components/zd-number-input/number-input.d.ts +43 -0
- package/dist/types/components/zd-password/interfaces.d.ts +6 -0
- package/dist/types/components/zd-password/password.d.ts +17 -0
- package/dist/types/components/zd-progress/interfaces.d.ts +10 -0
- package/dist/types/components/zd-progress/progress.d.ts +41 -0
- package/dist/types/components/zd-radio/interfaces.d.ts +11 -0
- package/dist/types/components/zd-radio/radio.d.ts +35 -0
- package/dist/types/components/zd-row/interfaces.d.ts +13 -0
- package/dist/types/components/zd-row/row.d.ts +39 -0
- package/dist/types/components/zd-select/interfaces.d.ts +24 -0
- package/dist/types/components/zd-select/select.d.ts +238 -0
- package/dist/types/components/zd-select-multiple/interfaces.d.ts +18 -0
- package/dist/types/components/zd-select-multiple/select-multiple.d.ts +113 -0
- package/dist/types/components/zd-svg-map/interfaces.d.ts +26 -0
- package/dist/types/components/zd-svg-map/svg-map.d.ts +35 -0
- package/dist/types/components/zd-switch/interfaces.d.ts +7 -0
- package/dist/types/components/zd-switch/switch.d.ts +16 -0
- package/dist/types/components/zd-table/interfaces.d.ts +25 -0
- package/dist/types/components/zd-table/table.d.ts +42 -0
- package/dist/types/components/zd-tabs/interfaces.d.ts +40 -0
- package/dist/types/components/zd-tabs/tab-not-found.d.ts +11 -0
- package/dist/types/components/zd-tabs/tab.d.ts +57 -0
- package/dist/types/components/zd-tabs/tabs.d.ts +86 -0
- package/dist/types/components/zd-tag/interfaces.d.ts +7 -0
- package/dist/types/components/zd-tag/tag.d.ts +13 -0
- package/dist/types/components/zd-text/interfaces.d.ts +9 -0
- package/dist/types/components/zd-text/text.d.ts +8 -0
- package/dist/types/components/zd-text-input/interfaces.d.ts +23 -0
- package/dist/types/components/zd-text-input/text-input.d.ts +91 -0
- package/dist/types/components/zd-textarea/interfaces.d.ts +21 -0
- package/dist/types/components/zd-textarea/textarea.d.ts +71 -0
- package/dist/types/components/zd-time/interfaces.d.ts +22 -0
- package/dist/types/components/zd-time/time-format-selector.d.ts +8 -0
- package/dist/types/components/zd-time/time.d.ts +149 -0
- package/dist/types/components/zd-toggleable/interfaces.d.ts +6 -0
- package/dist/types/components/zd-toggleable/toggleable.d.ts +21 -0
- package/dist/types/components/zd-tooltip/interfaces.d.ts +18 -0
- package/dist/types/components/zd-tooltip/tooltip.d.ts +57 -0
- package/dist/types/components/zd-tree/interfaces.d.ts +107 -0
- package/dist/types/components/zd-tree/tree.d.ts +161 -0
- package/dist/types/components/zd-tree-grid/index.d.ts +6 -0
- package/dist/types/components/zd-tree-grid/interfaces.d.ts +35 -0
- package/dist/types/components/zd-tree-grid/iterable-tree.d.ts +10 -0
- package/dist/types/components/zd-tree-grid/keymap-tree.d.ts +7 -0
- package/dist/types/components/zd-tree-grid/tree-data-navigator.d.ts +10 -0
- package/dist/types/components/zd-tree-grid/tree-data-selector.d.ts +18 -0
- package/dist/types/components/zd-tree-grid/tree-grid.d.ts +119 -0
- package/dist/types/error/delete-rows.d.ts +7 -0
- package/dist/types/error/index.d.ts +3 -0
- package/dist/types/error/non-initialized.d.ts +7 -0
- package/dist/types/error/zeedhi-error.d.ts +6 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/services/index.d.ts +4 -0
- package/dist/types/services/zd-alert/alert-queue.d.ts +13 -0
- package/dist/types/services/zd-alert/alert-replace.d.ts +18 -0
- package/dist/types/services/zd-alert/alert-service.d.ts +45 -0
- package/dist/types/services/zd-alert/alert-stack.d.ts +9 -0
- package/dist/types/services/zd-alert/index.d.ts +5 -0
- package/dist/types/services/zd-alert/interfaces.d.ts +6 -0
- package/dist/types/services/zd-dialog/dialog-service.d.ts +24 -0
- package/dist/types/services/zd-loading/loading-service.d.ts +17 -0
- package/dist/types/services/zd-modal/modal-service.d.ts +39 -0
- package/dist/types/utils/data-value-out/data-value-out.d.ts +5 -0
- package/dist/types/utils/data-value-out/index.d.ts +2 -0
- package/dist/types/utils/data-value-out/interfaces.d.ts +8 -0
- package/dist/types/utils/datasource-searcher/datasource-searcher.d.ts +6 -0
- package/dist/types/utils/datasource-searcher/index.d.ts +2 -0
- package/dist/types/utils/datasource-searcher/interfaces.d.ts +5 -0
- package/dist/types/utils/icons/icons.d.ts +24 -0
- package/dist/types/utils/index.d.ts +7 -0
- package/dist/types/utils/omit/omit.d.ts +11 -0
- package/dist/types/utils/theme/theme.d.ts +34 -0
- package/dist/types/utils/tree-data-structure/index.d.ts +2 -0
- package/dist/types/utils/tree-data-structure/interfaces.d.ts +30 -0
- package/dist/types/utils/tree-data-structure/tree-data-structure.d.ts +155 -0
- package/dist/types/utils/unique-by/unique-by.d.ts +3 -0
- package/dist/zd-common.esm.js +4 -4
- package/dist/zd-common.js +13133 -0
- package/dist/zd-common.min.js +13133 -0
- package/dist/zd-common.umd.js +4 -4
- package/package.json +2 -2
- package/types/components/zd-grid/grid.d.ts +4 -4
- package/types/services/zd-json-cache/json-cache-service.d.ts +0 -12
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IComponentRender } from '../zd-component/interfaces';
|
|
3
|
+
import { ILogin } from './interfaces';
|
|
4
|
+
/**
|
|
5
|
+
* Base class for Login component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class Login extends ComponentRender implements ILogin {
|
|
8
|
+
/**
|
|
9
|
+
* Value set int the css property background.
|
|
10
|
+
*/
|
|
11
|
+
backgroundStyle: string;
|
|
12
|
+
/**
|
|
13
|
+
* An area in the bottom of the card to display a link.
|
|
14
|
+
*/
|
|
15
|
+
bottomLink: IComponentRender[];
|
|
16
|
+
/**
|
|
17
|
+
* Set card width.
|
|
18
|
+
*/
|
|
19
|
+
cardWidth: string | number;
|
|
20
|
+
/**
|
|
21
|
+
* Applies specified color to the control.
|
|
22
|
+
* It can be the name of material or css color in hexa.
|
|
23
|
+
*/
|
|
24
|
+
color: string;
|
|
25
|
+
/**
|
|
26
|
+
* Card position orientation.
|
|
27
|
+
*/
|
|
28
|
+
layout: string;
|
|
29
|
+
/**
|
|
30
|
+
* Logo displayed in the top of the card.
|
|
31
|
+
*/
|
|
32
|
+
logo: string;
|
|
33
|
+
/**
|
|
34
|
+
* Text displayed under the logo.
|
|
35
|
+
*/
|
|
36
|
+
logoMessage: string;
|
|
37
|
+
/**
|
|
38
|
+
* Image displayed out of the card.
|
|
39
|
+
*/
|
|
40
|
+
poweredByImage: string;
|
|
41
|
+
/**
|
|
42
|
+
* Image displayed in the card.
|
|
43
|
+
*/
|
|
44
|
+
poweredByImageCard: string;
|
|
45
|
+
/**
|
|
46
|
+
* If form is flat
|
|
47
|
+
*/
|
|
48
|
+
flatForm: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Buttons displayed in the bottom of the card.
|
|
51
|
+
*/
|
|
52
|
+
socialLogin: IComponentRender[];
|
|
53
|
+
constructor(props: ILogin);
|
|
54
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDictionary } from '@zeedhi/core';
|
|
2
|
+
import { IComponentRender } from '../zd-component/interfaces';
|
|
3
|
+
export interface IMasterDetail extends IComponentRender {
|
|
4
|
+
config?: IDictionary<any>;
|
|
5
|
+
lazyRelate?: boolean;
|
|
6
|
+
height?: number | string;
|
|
7
|
+
maxHeight?: number | string;
|
|
8
|
+
minHeight?: number | string;
|
|
9
|
+
fillHeight?: boolean;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IDictionary } from '@zeedhi/core';
|
|
2
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
3
|
+
import { IMasterDetail } from './interfaces';
|
|
4
|
+
/**
|
|
5
|
+
* Base class for Master Detail component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class MasterDetail extends ComponentRender implements IMasterDetail {
|
|
8
|
+
config: IDictionary<any>;
|
|
9
|
+
lazyRelate: boolean;
|
|
10
|
+
height: string | number;
|
|
11
|
+
minHeight: string | number;
|
|
12
|
+
maxHeight: string | number;
|
|
13
|
+
fillHeight: boolean;
|
|
14
|
+
constructor(props: IMasterDetail);
|
|
15
|
+
private createRelationship;
|
|
16
|
+
createRelationships(): void;
|
|
17
|
+
onMounted(element: any): void;
|
|
18
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { IEventParam } from '@zeedhi/core';
|
|
2
|
+
import { IButton } from '../zd-button/interfaces';
|
|
3
|
+
import { IComponentEvents, IComponentRender } from '../zd-component/interfaces';
|
|
4
|
+
import { MenuLink } from './menu-link';
|
|
5
|
+
export type IMenuLinkEvent = IEventParam<MenuLink>;
|
|
6
|
+
export type IMenuLinkEvents = IComponentEvents<IMenuLinkEvent>;
|
|
7
|
+
/**
|
|
8
|
+
* Interface for menu component
|
|
9
|
+
*/
|
|
10
|
+
export interface IMenu extends IComponentRender {
|
|
11
|
+
app?: boolean | string;
|
|
12
|
+
absolute?: boolean | string;
|
|
13
|
+
clipped?: boolean | string;
|
|
14
|
+
dense?: boolean | string;
|
|
15
|
+
fixed?: boolean | string;
|
|
16
|
+
floating?: boolean | string;
|
|
17
|
+
mini?: boolean | string;
|
|
18
|
+
miniWidth?: number | string;
|
|
19
|
+
temporary?: boolean | string;
|
|
20
|
+
items?: IMenuItem[];
|
|
21
|
+
itemsUrl?: string;
|
|
22
|
+
isLocal?: boolean | string;
|
|
23
|
+
closeToMini?: boolean | string;
|
|
24
|
+
showSearch?: boolean | string;
|
|
25
|
+
opened?: boolean | string;
|
|
26
|
+
topSlot?: IComponentRender[];
|
|
27
|
+
width?: number | string;
|
|
28
|
+
mobileBreakpoint?: number | string;
|
|
29
|
+
cache?: boolean;
|
|
30
|
+
disableRouteWatcher?: boolean;
|
|
31
|
+
permanent?: boolean | string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Interface for menu itens
|
|
35
|
+
*/
|
|
36
|
+
export interface IMenuItem extends IComponentRender {
|
|
37
|
+
parentMenu?: IMenu;
|
|
38
|
+
parentGroup?: IMenuGroup;
|
|
39
|
+
}
|
|
40
|
+
export interface IInteractiveMenuItem {
|
|
41
|
+
label: string;
|
|
42
|
+
icon?: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Interface for menu link
|
|
46
|
+
*/
|
|
47
|
+
export interface IMenuLink extends IMenuItem, IInteractiveMenuItem {
|
|
48
|
+
route: string;
|
|
49
|
+
events?: IMenuLinkEvents;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Interface for menu group
|
|
53
|
+
*/
|
|
54
|
+
export interface IMenuGroup extends IMenuItem, IInteractiveMenuItem {
|
|
55
|
+
items: IMenuItem[];
|
|
56
|
+
opened?: boolean | string;
|
|
57
|
+
expandIcon?: string;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Interface for menu separator
|
|
61
|
+
*/
|
|
62
|
+
export type IMenuSeparator = IMenuItem;
|
|
63
|
+
/**
|
|
64
|
+
* Interface for menu button
|
|
65
|
+
*/
|
|
66
|
+
export interface IMenuButton extends IButton {
|
|
67
|
+
menuName: string;
|
|
68
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Button } from '../zd-button/button';
|
|
2
|
+
import { IMenuButton } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for MenuButton component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class MenuButton extends Button implements IMenuButton {
|
|
7
|
+
/**
|
|
8
|
+
* Makes the background transparent (equal to text prop in Vuetify).
|
|
9
|
+
*/
|
|
10
|
+
flat: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Designates the button as icon, round and flat.
|
|
13
|
+
*/
|
|
14
|
+
icon: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Designates the button icon, that will be rendered before the label.
|
|
17
|
+
*/
|
|
18
|
+
iconName: string;
|
|
19
|
+
/**
|
|
20
|
+
* Name of the menu component controlled by this button.
|
|
21
|
+
*/
|
|
22
|
+
menuName: string;
|
|
23
|
+
/**
|
|
24
|
+
* Creates a new Menu Button.
|
|
25
|
+
* @param props Menu Button properties
|
|
26
|
+
*/
|
|
27
|
+
constructor(props: IMenuButton);
|
|
28
|
+
onCreated(): void;
|
|
29
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IMenuGroup, IMenuItem } from './interfaces';
|
|
3
|
+
import { Menu } from './menu';
|
|
4
|
+
/**
|
|
5
|
+
* Base class for MenuGroup component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class MenuGroup extends ComponentRender implements IMenuGroup {
|
|
8
|
+
/**
|
|
9
|
+
* item label
|
|
10
|
+
*/
|
|
11
|
+
label: string;
|
|
12
|
+
/**
|
|
13
|
+
* Item icon
|
|
14
|
+
*/
|
|
15
|
+
icon: string;
|
|
16
|
+
/**
|
|
17
|
+
* Items grouped
|
|
18
|
+
*/
|
|
19
|
+
items: IMenuItem[];
|
|
20
|
+
/**
|
|
21
|
+
* Group state
|
|
22
|
+
*/
|
|
23
|
+
opened: boolean | string;
|
|
24
|
+
/**
|
|
25
|
+
* Menu that contains the item
|
|
26
|
+
*/
|
|
27
|
+
parentMenu?: Menu;
|
|
28
|
+
/**
|
|
29
|
+
* Group that contains the item
|
|
30
|
+
*/
|
|
31
|
+
parentGroup?: MenuGroup;
|
|
32
|
+
/**
|
|
33
|
+
* Expansion icon
|
|
34
|
+
*/
|
|
35
|
+
expandIcon: string;
|
|
36
|
+
/**
|
|
37
|
+
* Creates a new Menu Group.
|
|
38
|
+
* @param props Menu Group properties
|
|
39
|
+
*/
|
|
40
|
+
constructor(props: IMenuGroup);
|
|
41
|
+
/**
|
|
42
|
+
* @returns item is selected or not
|
|
43
|
+
*/
|
|
44
|
+
isSelected(): boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Open group
|
|
47
|
+
*/
|
|
48
|
+
open(): void;
|
|
49
|
+
/**
|
|
50
|
+
* Close group
|
|
51
|
+
*/
|
|
52
|
+
close(): void;
|
|
53
|
+
/**
|
|
54
|
+
* Event triggered when this item is clicked
|
|
55
|
+
*/
|
|
56
|
+
click(event?: Event): void;
|
|
57
|
+
/**
|
|
58
|
+
* Event triggered when this item is focus
|
|
59
|
+
*/
|
|
60
|
+
focus(event: Event): void;
|
|
61
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IMenuLink, IMenuLinkEvents } from './interfaces';
|
|
3
|
+
import { Menu } from './menu';
|
|
4
|
+
import { MenuGroup } from './menu-group';
|
|
5
|
+
/**
|
|
6
|
+
* Base class for MenuLink component.
|
|
7
|
+
*/
|
|
8
|
+
export declare class MenuLink extends ComponentRender implements IMenuLink {
|
|
9
|
+
/**
|
|
10
|
+
* Item label
|
|
11
|
+
*/
|
|
12
|
+
label: string;
|
|
13
|
+
/**
|
|
14
|
+
* Item events
|
|
15
|
+
*/
|
|
16
|
+
events: IMenuLinkEvents;
|
|
17
|
+
/**
|
|
18
|
+
* Item icon
|
|
19
|
+
*/
|
|
20
|
+
icon: string;
|
|
21
|
+
/**
|
|
22
|
+
* Url to redirect
|
|
23
|
+
*/
|
|
24
|
+
route: string;
|
|
25
|
+
/**
|
|
26
|
+
* Menu that contains the item
|
|
27
|
+
*/
|
|
28
|
+
parentMenu?: Menu;
|
|
29
|
+
/**
|
|
30
|
+
* Group that contains the item
|
|
31
|
+
*/
|
|
32
|
+
parentGroup?: MenuGroup;
|
|
33
|
+
/**
|
|
34
|
+
* Creates a new Menu Link.
|
|
35
|
+
* @param props Menu Link properties
|
|
36
|
+
*/
|
|
37
|
+
constructor(props: IMenuLink);
|
|
38
|
+
/**
|
|
39
|
+
* Event triggered when this item is clicked
|
|
40
|
+
*/
|
|
41
|
+
click(event?: Event): void;
|
|
42
|
+
/**
|
|
43
|
+
* Event triggered when this item is focus
|
|
44
|
+
*/
|
|
45
|
+
focus(): void;
|
|
46
|
+
/**
|
|
47
|
+
* @returns item is selected or not
|
|
48
|
+
*/
|
|
49
|
+
isSelected(): boolean;
|
|
50
|
+
}
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IComponentRender } from '../zd-component/interfaces';
|
|
3
|
+
import { IMenu, IMenuItem } from './interfaces';
|
|
4
|
+
/**
|
|
5
|
+
* Base class for Menu component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class Menu extends ComponentRender implements IMenu {
|
|
8
|
+
/**
|
|
9
|
+
* Defines if the menu is an application menu
|
|
10
|
+
*/
|
|
11
|
+
app: boolean | string;
|
|
12
|
+
/**
|
|
13
|
+
* Defines if the menu must be rendered inside an absolute div
|
|
14
|
+
*/
|
|
15
|
+
absolute: boolean | string;
|
|
16
|
+
/**
|
|
17
|
+
* Defines if the menu should rests under the application toolbar
|
|
18
|
+
*/
|
|
19
|
+
clipped: boolean | string;
|
|
20
|
+
/**
|
|
21
|
+
* Applies position: fixed to the menu
|
|
22
|
+
*/
|
|
23
|
+
fixed: boolean | string;
|
|
24
|
+
/**
|
|
25
|
+
* Defines if the menu should have a visible container
|
|
26
|
+
*/
|
|
27
|
+
floating: boolean | string;
|
|
28
|
+
/**
|
|
29
|
+
* Defines if the menu should stay visible regardless of screen size
|
|
30
|
+
*/
|
|
31
|
+
permanent: boolean | string;
|
|
32
|
+
/**
|
|
33
|
+
* Create the menu with smaller items.
|
|
34
|
+
*/
|
|
35
|
+
dense: boolean | string;
|
|
36
|
+
/**
|
|
37
|
+
* Create the menu with condensed width. Only icons and no label.
|
|
38
|
+
*/
|
|
39
|
+
mini: boolean | string;
|
|
40
|
+
/**
|
|
41
|
+
* Defines the width of the menu when in mini state
|
|
42
|
+
*/
|
|
43
|
+
miniWidth: number | string;
|
|
44
|
+
/**
|
|
45
|
+
* Defines if the menu is mini
|
|
46
|
+
*/
|
|
47
|
+
miniState: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Defines if the menu is temporary. Temporary menu sits over above the application and uses a overlay div.
|
|
50
|
+
*/
|
|
51
|
+
temporary: boolean | string;
|
|
52
|
+
/**
|
|
53
|
+
* Array of menu items
|
|
54
|
+
*/
|
|
55
|
+
private menuItems;
|
|
56
|
+
/**
|
|
57
|
+
* Defines if the close event will turn menu to mini
|
|
58
|
+
*/
|
|
59
|
+
closeToMini: boolean | string;
|
|
60
|
+
/**
|
|
61
|
+
* Defines if the search is shown
|
|
62
|
+
*/
|
|
63
|
+
showSearch: boolean | string;
|
|
64
|
+
/**
|
|
65
|
+
* Defines if items are local
|
|
66
|
+
*/
|
|
67
|
+
isLocal: boolean | string;
|
|
68
|
+
/**
|
|
69
|
+
* Defines if menu is opened
|
|
70
|
+
*/
|
|
71
|
+
drawer: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Initial opened prop value
|
|
74
|
+
*/
|
|
75
|
+
openedInitialValue?: boolean;
|
|
76
|
+
/**
|
|
77
|
+
* Defines if the mouse is over the menu
|
|
78
|
+
*/
|
|
79
|
+
mouseOver: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* Defines the menu width in pixels
|
|
82
|
+
*/
|
|
83
|
+
width: number | string;
|
|
84
|
+
/**
|
|
85
|
+
* Defines the mobile breakpoint in pixels
|
|
86
|
+
*/
|
|
87
|
+
mobileBreakpoint: number | string;
|
|
88
|
+
/**
|
|
89
|
+
* Array of components to be rendered on the top part of the menu
|
|
90
|
+
*/
|
|
91
|
+
topSlot: IComponentRender[];
|
|
92
|
+
/**
|
|
93
|
+
* Object to store all the routes
|
|
94
|
+
*/
|
|
95
|
+
private routes;
|
|
96
|
+
/**
|
|
97
|
+
* Selected path
|
|
98
|
+
*/
|
|
99
|
+
private selectedPath;
|
|
100
|
+
/**
|
|
101
|
+
* Array of selected items
|
|
102
|
+
*/
|
|
103
|
+
private selectedItems;
|
|
104
|
+
/**
|
|
105
|
+
* Defines the url to get menu items
|
|
106
|
+
*/
|
|
107
|
+
private menuItemsUrl;
|
|
108
|
+
private openingMenuTimeout;
|
|
109
|
+
/** Control toolip for overflown items */
|
|
110
|
+
showTooltip: boolean;
|
|
111
|
+
/** Toolip text for overflown items */
|
|
112
|
+
tooltipText: string;
|
|
113
|
+
/** Toolip anchor */
|
|
114
|
+
tooltipAnchor?: HTMLElement;
|
|
115
|
+
/** Toolip content props */
|
|
116
|
+
tooltipContentProps?: any;
|
|
117
|
+
/** Filtered menu items */
|
|
118
|
+
private filteredMenuItems;
|
|
119
|
+
/** Search value */
|
|
120
|
+
private searchValue;
|
|
121
|
+
/** Store the current item focused */
|
|
122
|
+
currentItem: IMenuItem | null;
|
|
123
|
+
cache?: boolean;
|
|
124
|
+
disableRouteWatcher?: boolean;
|
|
125
|
+
/**
|
|
126
|
+
* Creates a new Menu.
|
|
127
|
+
* @param props Menu properties
|
|
128
|
+
*/
|
|
129
|
+
constructor(props: IMenu);
|
|
130
|
+
/**
|
|
131
|
+
* Defines the url to get menu items
|
|
132
|
+
*/
|
|
133
|
+
get itemsUrl(): string;
|
|
134
|
+
set itemsUrl(url: string);
|
|
135
|
+
/**
|
|
136
|
+
* Menu items
|
|
137
|
+
*/
|
|
138
|
+
get items(): IMenuItem[];
|
|
139
|
+
set items(items: IMenuItem[]);
|
|
140
|
+
get opened(): boolean;
|
|
141
|
+
set opened(openedValue: boolean);
|
|
142
|
+
/**
|
|
143
|
+
* Get menu items from a given url
|
|
144
|
+
* @param element Element mounted reference
|
|
145
|
+
*/
|
|
146
|
+
onMounted(element: any): void;
|
|
147
|
+
/**
|
|
148
|
+
* Load the menu metadata
|
|
149
|
+
* @param url url of the json file
|
|
150
|
+
*/
|
|
151
|
+
loadMetadata(url: string): Promise<void>;
|
|
152
|
+
/**
|
|
153
|
+
* Save all Link routes parent groups
|
|
154
|
+
*/
|
|
155
|
+
private saveLinkRoutes;
|
|
156
|
+
/**
|
|
157
|
+
* Toggle menu
|
|
158
|
+
*/
|
|
159
|
+
toggleMenu(): void;
|
|
160
|
+
/**
|
|
161
|
+
* Close all menu
|
|
162
|
+
*/
|
|
163
|
+
closeAllMenus(): void;
|
|
164
|
+
/**
|
|
165
|
+
* Saves the selected path
|
|
166
|
+
* @param path Path name
|
|
167
|
+
*/
|
|
168
|
+
selectPath(path: string): void;
|
|
169
|
+
/**
|
|
170
|
+
* Select an item
|
|
171
|
+
* @param item Menu item
|
|
172
|
+
*/
|
|
173
|
+
selectItem(items: IMenuItem[]): void;
|
|
174
|
+
/**
|
|
175
|
+
* @param item Menu item
|
|
176
|
+
* @returns Item is selected or not
|
|
177
|
+
*/
|
|
178
|
+
isSelected(item: IMenuItem): boolean;
|
|
179
|
+
menuMouseEnter(): void;
|
|
180
|
+
/**
|
|
181
|
+
* Open all selected items
|
|
182
|
+
*/
|
|
183
|
+
openSelectedTree(): void;
|
|
184
|
+
menuMouseLeave(): void;
|
|
185
|
+
/**
|
|
186
|
+
* Responds to Url changes
|
|
187
|
+
*/
|
|
188
|
+
urlChanged(current: any): void;
|
|
189
|
+
get search(): string;
|
|
190
|
+
set search(value: string);
|
|
191
|
+
clearSearch(): void;
|
|
192
|
+
/**
|
|
193
|
+
* Search inside menu items
|
|
194
|
+
*/
|
|
195
|
+
doSearch(): void;
|
|
196
|
+
private getAccessorValue;
|
|
197
|
+
private isItemVisible;
|
|
198
|
+
private searchItems;
|
|
199
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IEventParam } from '@zeedhi/core';
|
|
2
|
+
import { IButton } from '../zd-button/interfaces';
|
|
3
|
+
import { EventDef, IComponent, IComponentEvents } from '../zd-component/interfaces';
|
|
4
|
+
import { Modal } from './modal';
|
|
5
|
+
export type IModalEvent = IEventParam<Modal>;
|
|
6
|
+
export interface IModalEvents<T = IEventParam<any>> extends IComponentEvents<T> {
|
|
7
|
+
onShow?: EventDef<T>;
|
|
8
|
+
onHide?: EventDef<T>;
|
|
9
|
+
}
|
|
10
|
+
export interface IModalGrid {
|
|
11
|
+
cols?: number | string;
|
|
12
|
+
xs?: number | string;
|
|
13
|
+
sm?: number | string;
|
|
14
|
+
md?: number | string;
|
|
15
|
+
lg?: number | string;
|
|
16
|
+
xl?: number | string;
|
|
17
|
+
'offset-xs'?: number | string;
|
|
18
|
+
'offset-sm'?: number | string;
|
|
19
|
+
'offset-md'?: number | string;
|
|
20
|
+
'offset-lg'?: number | string;
|
|
21
|
+
'offset-xl'?: number | string;
|
|
22
|
+
}
|
|
23
|
+
export interface IModal extends IComponent {
|
|
24
|
+
title?: string;
|
|
25
|
+
fullscreen?: boolean;
|
|
26
|
+
grid?: IModalGrid;
|
|
27
|
+
persistent?: boolean;
|
|
28
|
+
draggable?: boolean;
|
|
29
|
+
dragHandle?: string;
|
|
30
|
+
escKeydownStop?: boolean;
|
|
31
|
+
events?: IModalEvents;
|
|
32
|
+
}
|
|
33
|
+
export interface IModalCloseButton extends IButton {
|
|
34
|
+
modalName: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Button } from '../zd-button/button';
|
|
2
|
+
import { IModalCloseButton } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for Modal Close Button component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class ModalCloseButton extends Button implements IModalCloseButton {
|
|
7
|
+
/**
|
|
8
|
+
* Name of Modal component to be closed
|
|
9
|
+
*/
|
|
10
|
+
modalName: string;
|
|
11
|
+
/**
|
|
12
|
+
* Makes the background transparent (equal to text prop in Vuetify).
|
|
13
|
+
*/
|
|
14
|
+
flat: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Designates the button as icon, round and flat.
|
|
17
|
+
*/
|
|
18
|
+
icon: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Designates the button icon, that will be rendered before the label.
|
|
21
|
+
*/
|
|
22
|
+
iconName: string;
|
|
23
|
+
/**
|
|
24
|
+
* Creates a new modal close button
|
|
25
|
+
* @param props Modal close button structure
|
|
26
|
+
*/
|
|
27
|
+
constructor(props: IModalCloseButton);
|
|
28
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Component } from '../zd-component/component';
|
|
2
|
+
import { IModal, IModalEvents, IModalGrid } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for Modal component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class Modal extends Component implements IModal {
|
|
7
|
+
/**
|
|
8
|
+
* Sets the modal's title
|
|
9
|
+
*/
|
|
10
|
+
title: string;
|
|
11
|
+
/**
|
|
12
|
+
* If true the modal will open as fullscreen
|
|
13
|
+
*/
|
|
14
|
+
fullscreen: boolean;
|
|
15
|
+
grid: IModalGrid;
|
|
16
|
+
/**
|
|
17
|
+
* If true the modal won't close when overlay is clicked
|
|
18
|
+
*/
|
|
19
|
+
persistent: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Allows modal to be dragged around in the screen
|
|
22
|
+
*/
|
|
23
|
+
draggable: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Css selector of the drag handle
|
|
26
|
+
*/
|
|
27
|
+
dragHandle?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Set if esc keydown event should to stop propagation
|
|
30
|
+
*/
|
|
31
|
+
escKeydownStop?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Defines modal events.
|
|
34
|
+
*/
|
|
35
|
+
events: IModalEvents;
|
|
36
|
+
/**
|
|
37
|
+
* Creates a new modal
|
|
38
|
+
* @param props Modal structure
|
|
39
|
+
*/
|
|
40
|
+
constructor(props: IModal);
|
|
41
|
+
/**
|
|
42
|
+
* Removes modal from modals collection
|
|
43
|
+
*/
|
|
44
|
+
destroy(): void;
|
|
45
|
+
/**
|
|
46
|
+
* Displays modal
|
|
47
|
+
*/
|
|
48
|
+
show(): void;
|
|
49
|
+
/**
|
|
50
|
+
* Closes modal
|
|
51
|
+
*/
|
|
52
|
+
hide(): void;
|
|
53
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { DateInput } from '../zd-date-input/date-input';
|
|
2
|
+
import { IMonth } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for Month Picker component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class Month extends DateInput implements IMonth {
|
|
7
|
+
/**
|
|
8
|
+
* Defines the month format.
|
|
9
|
+
*/
|
|
10
|
+
dateFormat: string;
|
|
11
|
+
/**
|
|
12
|
+
* Defines the month format displayed.
|
|
13
|
+
*/
|
|
14
|
+
displayFormat: string;
|
|
15
|
+
/**
|
|
16
|
+
* Defines the month input format.
|
|
17
|
+
*/
|
|
18
|
+
inputFormat?: string;
|
|
19
|
+
protected isoFormat: string;
|
|
20
|
+
/**
|
|
21
|
+
* Determines the type of the view mode - month for month picker.
|
|
22
|
+
*/
|
|
23
|
+
viewMode: string;
|
|
24
|
+
protected formatterFn: (...args: any) => any;
|
|
25
|
+
protected parserFn: (...args: any) => any;
|
|
26
|
+
/**
|
|
27
|
+
* Creates a new Month picker.
|
|
28
|
+
* @param props Month properties
|
|
29
|
+
*/
|
|
30
|
+
constructor(props: IMonth);
|
|
31
|
+
blur(event: Event, element: any): void;
|
|
32
|
+
focus(event: Event, element: any): void;
|
|
33
|
+
}
|