@zeedhi/common 1.120.1 → 1.120.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/LICENSE +24 -0
- 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/{types/utils → dist/types/utils/unique-by}/unique-by.d.ts +3 -3
- package/dist/zd-common.esm.js +6 -36
- package/dist/zd-common.js +13133 -0
- package/dist/zd-common.min.js +13133 -0
- package/dist/zd-common.umd.js +6 -36
- package/package.json +2 -2
- package/types/components/zd-date/date-range.d.ts +1 -1
- package/types/components/zd-date/date.d.ts +1 -1
- package/types/components/zd-date/interfaces.d.ts +1 -1
- package/types/components/zd-number/number.d.ts +1 -7
- package/types/components/zd-time/interfaces.d.ts +1 -0
- package/types/components/zd-time/time.d.ts +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Zeedhi
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
This repository includes one file originally copied from https://github.com/vuetifyjs/vuetify/
|
|
24
|
+
under /blob/v1.5.16/packages/vuetify/src/util/, mask.ts.
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
export * from './zd-alert/alert';
|
|
2
|
+
export * from './zd-alert/interfaces';
|
|
3
|
+
export * from './zd-breadcrumbs/breadcrumbs';
|
|
4
|
+
export * from './zd-breadcrumbs/interfaces';
|
|
5
|
+
export * from './zd-badge/badge';
|
|
6
|
+
export * from './zd-badge/interfaces';
|
|
7
|
+
export * from './zd-button/button';
|
|
8
|
+
export * from './zd-button/interfaces';
|
|
9
|
+
export * from './zd-date-input/date-input';
|
|
10
|
+
export * from './zd-date-input/interfaces';
|
|
11
|
+
export * from './zd-divider/divider';
|
|
12
|
+
export * from './zd-divider/interfaces';
|
|
13
|
+
export * from './zd-main/interfaces';
|
|
14
|
+
export * from './zd-main/main';
|
|
15
|
+
export * from './zd-frame/frame';
|
|
16
|
+
export * from './zd-frame/interfaces';
|
|
17
|
+
export * from './zd-frame-page/frame-page';
|
|
18
|
+
export * from './zd-frame-page/interfaces';
|
|
19
|
+
export * from './zd-image/image';
|
|
20
|
+
export * from './zd-image/interfaces';
|
|
21
|
+
export * from './zd-iterable/column';
|
|
22
|
+
export * from './zd-iterable/column-not-found';
|
|
23
|
+
export * from './zd-iterable/interfaces';
|
|
24
|
+
export * from './zd-iterable/iterable';
|
|
25
|
+
export * from './zd-iterable/iterable-page-component';
|
|
26
|
+
export * from './zd-iterable/iterable-page-info';
|
|
27
|
+
export * from './zd-iterable/iterable-page-size';
|
|
28
|
+
export * from './zd-iterable/iterable-pagination';
|
|
29
|
+
export * from './zd-iterable/search';
|
|
30
|
+
export * from './zd-iterable/conditions-manager';
|
|
31
|
+
export * from './zd-iterable/iterable-columns-button';
|
|
32
|
+
export * from './zd-iterable/iterable-columns-button-controller';
|
|
33
|
+
export * from './zd-iterable-component-render/interfaces';
|
|
34
|
+
export * from './zd-iterable-component-render/iterable-component-render';
|
|
35
|
+
export * from './zd-header/header';
|
|
36
|
+
export * from './zd-header/interfaces';
|
|
37
|
+
export * from './zd-col/col';
|
|
38
|
+
export * from './zd-col/interfaces';
|
|
39
|
+
export * from './zd-layout/interfaces';
|
|
40
|
+
export * from './zd-layout/layout';
|
|
41
|
+
export * from './zd-loading/loading';
|
|
42
|
+
export * from './zd-loading/interfaces';
|
|
43
|
+
export * from './zd-login/login';
|
|
44
|
+
export * from './zd-login/interfaces';
|
|
45
|
+
export * from './zd-login/login-button';
|
|
46
|
+
export * from './zd-menu/interfaces';
|
|
47
|
+
export * from './zd-menu/menu';
|
|
48
|
+
export * from './zd-menu/menu-button';
|
|
49
|
+
export * from './zd-menu/menu-group';
|
|
50
|
+
export * from './zd-menu/menu-link';
|
|
51
|
+
export * from './zd-menu/menu-separator';
|
|
52
|
+
export * from './zd-card/card';
|
|
53
|
+
export * from './zd-card/interfaces';
|
|
54
|
+
export * from './zd-collapse-card/collapse-card';
|
|
55
|
+
export * from './zd-collapse-card/interfaces';
|
|
56
|
+
export * from './zd-carousel/carousel';
|
|
57
|
+
export * from './zd-carousel/interfaces';
|
|
58
|
+
export * from './zd-table/interfaces';
|
|
59
|
+
export * from './zd-table/table';
|
|
60
|
+
export * from './zd-tabs/interfaces';
|
|
61
|
+
export * from './zd-tabs/tab';
|
|
62
|
+
export * from './zd-tabs/tab-not-found';
|
|
63
|
+
export * from './zd-tabs/tabs';
|
|
64
|
+
export * from './zd-tag/interfaces';
|
|
65
|
+
export * from './zd-tag/tag';
|
|
66
|
+
export * from './zd-text/interfaces';
|
|
67
|
+
export * from './zd-text/text';
|
|
68
|
+
export * from './zd-input/input';
|
|
69
|
+
export * from './zd-input/interfaces';
|
|
70
|
+
export * from './zd-input/input-factory';
|
|
71
|
+
export * from './zd-icon/icon';
|
|
72
|
+
export * from './zd-icon/interfaces';
|
|
73
|
+
export * from './zd-text-input/interfaces';
|
|
74
|
+
export * from './zd-text-input/text-input';
|
|
75
|
+
export * from './zd-component/child-not-found';
|
|
76
|
+
export * from './zd-component/component';
|
|
77
|
+
export * from './zd-component/component-render';
|
|
78
|
+
export * from './zd-component/interfaces';
|
|
79
|
+
export * from './zd-container/container';
|
|
80
|
+
export * from './zd-container/interfaces';
|
|
81
|
+
export * from './zd-code-viewer/code-viewer';
|
|
82
|
+
export * from './zd-code-viewer/interfaces';
|
|
83
|
+
export * from './zd-radio/radio';
|
|
84
|
+
export * from './zd-radio/interfaces';
|
|
85
|
+
export * from './zd-row/interfaces';
|
|
86
|
+
export * from './zd-row/row';
|
|
87
|
+
export * from './zd-form/form';
|
|
88
|
+
export * from './zd-form/interfaces';
|
|
89
|
+
export * from './zd-footer/footer';
|
|
90
|
+
export * from './zd-footer/interfaces';
|
|
91
|
+
export * from './zd-textarea/textarea';
|
|
92
|
+
export * from './zd-textarea/interfaces';
|
|
93
|
+
export * from './zd-toggleable/toggleable';
|
|
94
|
+
export * from './zd-toggleable/interfaces';
|
|
95
|
+
export * from './zd-switch/switch';
|
|
96
|
+
export * from './zd-switch/interfaces';
|
|
97
|
+
export * from './zd-checkbox/checkbox';
|
|
98
|
+
export * from './zd-checkbox/interfaces';
|
|
99
|
+
export * from './zd-tooltip/tooltip';
|
|
100
|
+
export * from './zd-tooltip/interfaces';
|
|
101
|
+
export * from './zd-dropdown/dropdown';
|
|
102
|
+
export * from './zd-dropdown/interfaces';
|
|
103
|
+
export * from './zd-select/select';
|
|
104
|
+
export * from './zd-select/interfaces';
|
|
105
|
+
export * from './zd-select-multiple/select-multiple';
|
|
106
|
+
export * from './zd-select-multiple/interfaces';
|
|
107
|
+
export * from './zd-dropdown/dropdown';
|
|
108
|
+
export * from './zd-dropdown/interfaces';
|
|
109
|
+
export * from './zd-dialog/dialog';
|
|
110
|
+
export * from './zd-dialog/interfaces';
|
|
111
|
+
export * from './zd-password/password';
|
|
112
|
+
export * from './zd-password/interfaces';
|
|
113
|
+
export * from './zd-list/list';
|
|
114
|
+
export * from './zd-list/list-item';
|
|
115
|
+
export * from './zd-list/list-group';
|
|
116
|
+
export * from './zd-list/interfaces';
|
|
117
|
+
export * from './zd-modal/modal';
|
|
118
|
+
export * from './zd-modal/modal-close-button';
|
|
119
|
+
export * from './zd-modal/interfaces';
|
|
120
|
+
export * from './zd-number-input/number-input';
|
|
121
|
+
export * from './zd-number-input/interfaces';
|
|
122
|
+
export * from './zd-grid';
|
|
123
|
+
export * from './zd-grid-editable';
|
|
124
|
+
export * from './zd-tree-grid';
|
|
125
|
+
export * from './zd-checkbox-multiple/checkbox-multiple';
|
|
126
|
+
export * from './zd-checkbox-multiple/interfaces';
|
|
127
|
+
export * from './zd-chip/chip';
|
|
128
|
+
export * from './zd-chip/interfaces';
|
|
129
|
+
export * from './zd-progress/interfaces';
|
|
130
|
+
export * from './zd-progress/progress';
|
|
131
|
+
export * from './zd-button-group/button-group';
|
|
132
|
+
export * from './zd-button-group/interfaces';
|
|
133
|
+
export * from './zd-master-detail/detail-not-found';
|
|
134
|
+
export * from './zd-master-detail/interfaces';
|
|
135
|
+
export * from './zd-master-detail/master-detail';
|
|
136
|
+
export * from './zd-master-detail/master-not-found';
|
|
137
|
+
export * from './zd-svg-map/interfaces';
|
|
138
|
+
export * from './zd-svg-map/svg-map';
|
|
139
|
+
export * from './zd-tree/interfaces';
|
|
140
|
+
export * from './zd-tree/tree';
|
|
141
|
+
export * from './zd-increment/increment';
|
|
142
|
+
export * from './zd-increment/interfaces';
|
|
143
|
+
export * from './zd-currency/currency';
|
|
144
|
+
export * from './zd-currency/interfaces';
|
|
145
|
+
export * from './zd-month/interfaces';
|
|
146
|
+
export * from './zd-month/month';
|
|
147
|
+
export * from './zd-time/interfaces';
|
|
148
|
+
export * from './zd-time/time';
|
|
149
|
+
export * from './zd-time/time-format-selector';
|
|
150
|
+
export * from './zd-date-range/interfaces';
|
|
151
|
+
export * from './zd-date-range/date-range';
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { IButton } from '../zd-button/interfaces';
|
|
2
|
+
import { Component } from '../zd-component/component';
|
|
3
|
+
import { IAlert } from './interfaces';
|
|
4
|
+
/**
|
|
5
|
+
* Base class for Alert component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class Alert extends Component implements IAlert {
|
|
8
|
+
/**
|
|
9
|
+
* Align the component towards the bottom
|
|
10
|
+
*/
|
|
11
|
+
bottom: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Slot to display flat buttons
|
|
14
|
+
*/
|
|
15
|
+
buttonsSlot: IButton[];
|
|
16
|
+
/**
|
|
17
|
+
* Applies specified color to the control.
|
|
18
|
+
* It can be the name of material color or an hexadecimal color
|
|
19
|
+
*/
|
|
20
|
+
color: string;
|
|
21
|
+
/**
|
|
22
|
+
* Applies specified color to the dismiss button.
|
|
23
|
+
* It can be the name of material color or an hexadecimal color
|
|
24
|
+
*/
|
|
25
|
+
dismissColor: string;
|
|
26
|
+
/**
|
|
27
|
+
* Align the component towards the left
|
|
28
|
+
*/
|
|
29
|
+
left: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Creates a better spacing for multiple content lines
|
|
32
|
+
*/
|
|
33
|
+
multiLine: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Align the component towards the right
|
|
36
|
+
*/
|
|
37
|
+
right: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Controls dismiss button visibility
|
|
40
|
+
*/
|
|
41
|
+
showDismiss: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Time (in milliseconds) to wait until alert is automatically hidden.
|
|
44
|
+
* Use 0 to keep open indefinitely.
|
|
45
|
+
*/
|
|
46
|
+
timeout: number;
|
|
47
|
+
/**
|
|
48
|
+
* Text displayed on alert
|
|
49
|
+
*/
|
|
50
|
+
text: string;
|
|
51
|
+
/**
|
|
52
|
+
* Align the content towards the top
|
|
53
|
+
*/
|
|
54
|
+
top: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Stacks alert content and actions vertically
|
|
57
|
+
*/
|
|
58
|
+
vertical: boolean;
|
|
59
|
+
id: number;
|
|
60
|
+
protected defaultValues: {
|
|
61
|
+
name: string;
|
|
62
|
+
color: string;
|
|
63
|
+
text: string;
|
|
64
|
+
timeout: number;
|
|
65
|
+
top: boolean;
|
|
66
|
+
right: boolean;
|
|
67
|
+
bottom: boolean;
|
|
68
|
+
left: boolean;
|
|
69
|
+
vertical: boolean;
|
|
70
|
+
multiLine: boolean;
|
|
71
|
+
showDismiss: boolean;
|
|
72
|
+
dismissColor: string;
|
|
73
|
+
buttonsSlot: IButton[];
|
|
74
|
+
id: number;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Creates a new Alert
|
|
78
|
+
* @param props Alert structure
|
|
79
|
+
*/
|
|
80
|
+
constructor(props: IAlert);
|
|
81
|
+
/**
|
|
82
|
+
* Assign all alert properties
|
|
83
|
+
* @param alert Alert structure
|
|
84
|
+
*/
|
|
85
|
+
assignAlertProperties(alert: IAlert): void;
|
|
86
|
+
/**
|
|
87
|
+
* Displays alert
|
|
88
|
+
*/
|
|
89
|
+
show(): void;
|
|
90
|
+
/**
|
|
91
|
+
* Hides alert
|
|
92
|
+
*/
|
|
93
|
+
hide(): void;
|
|
94
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IButton } from '../zd-button/interfaces';
|
|
2
|
+
import { IComponent } from '../zd-component/interfaces';
|
|
3
|
+
export interface IAlert extends IComponent {
|
|
4
|
+
id?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
text?: string;
|
|
7
|
+
timeout?: number;
|
|
8
|
+
type?: string;
|
|
9
|
+
top?: boolean;
|
|
10
|
+
right?: boolean;
|
|
11
|
+
bottom?: boolean;
|
|
12
|
+
left?: boolean;
|
|
13
|
+
vertical?: boolean;
|
|
14
|
+
multiLine?: boolean;
|
|
15
|
+
showDismiss?: boolean;
|
|
16
|
+
dismissColor?: string;
|
|
17
|
+
buttonsSlot?: IButton[];
|
|
18
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IBadge, IBadgeEvents } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for Badge component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class Badge extends ComponentRender implements IBadge {
|
|
7
|
+
/**
|
|
8
|
+
* Wrap a number to badge
|
|
9
|
+
*/
|
|
10
|
+
badge: number;
|
|
11
|
+
/**
|
|
12
|
+
* Events registered to the badge
|
|
13
|
+
*/
|
|
14
|
+
events: IBadgeEvents;
|
|
15
|
+
/**
|
|
16
|
+
* Highlight information to a user or to just draw attention
|
|
17
|
+
*/
|
|
18
|
+
showBadgeCounter: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Create a new Badge
|
|
21
|
+
* @param props Badge definition
|
|
22
|
+
*/
|
|
23
|
+
constructor(props: IBadge);
|
|
24
|
+
/**
|
|
25
|
+
* Returns a string with the badge counter
|
|
26
|
+
*/
|
|
27
|
+
getBadgeText(): string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IEventParam } from '@zeedhi/core';
|
|
2
|
+
import { IComponentEvents, IComponentRender } from '../zd-component/interfaces';
|
|
3
|
+
import { Badge } from './badge';
|
|
4
|
+
export type IBadgeEvent = IEventParam<Badge>;
|
|
5
|
+
export type IBadgeEvents = IComponentEvents<IBadgeEvent>;
|
|
6
|
+
export interface IBadge extends IComponentRender {
|
|
7
|
+
badge?: number;
|
|
8
|
+
events?: IBadgeEvents;
|
|
9
|
+
showBadgeCounter?: boolean;
|
|
10
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IBreadcrumbs, IBreadcrumbsItem } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for Breadcrumbs component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class Breadcrumbs extends ComponentRender implements IBreadcrumbs {
|
|
7
|
+
/**
|
|
8
|
+
* Specifies the dividing string between items.
|
|
9
|
+
*/
|
|
10
|
+
divider: string;
|
|
11
|
+
/**
|
|
12
|
+
* Array of objects for each breadcrumb.
|
|
13
|
+
*/
|
|
14
|
+
items: IBreadcrumbsItem[];
|
|
15
|
+
/**
|
|
16
|
+
* Defines the divider icon name.
|
|
17
|
+
*/
|
|
18
|
+
iconName: string;
|
|
19
|
+
/**
|
|
20
|
+
* Increase the font-size of the breadcrumb item text to 16px.
|
|
21
|
+
*/
|
|
22
|
+
large: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Decrease the font-size of the breadcrumb item text to 12px.
|
|
25
|
+
*/
|
|
26
|
+
small: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Create a new Breadcrumbs
|
|
29
|
+
* @param props Breadcrumbs definition
|
|
30
|
+
*/
|
|
31
|
+
constructor(props: IBreadcrumbs);
|
|
32
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { IComponentRender } from '../zd-component/interfaces';
|
|
2
|
+
export interface IBreadcrumbs extends IComponentRender {
|
|
3
|
+
dark?: boolean;
|
|
4
|
+
divider?: string;
|
|
5
|
+
iconName?: string;
|
|
6
|
+
items?: IBreadcrumbsItem[];
|
|
7
|
+
large?: boolean;
|
|
8
|
+
light?: boolean;
|
|
9
|
+
small?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface IBreadcrumbsItem {
|
|
12
|
+
activeClass?: string;
|
|
13
|
+
append?: boolean;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
exact?: boolean;
|
|
16
|
+
exactActiveClass?: string;
|
|
17
|
+
href?: string | object;
|
|
18
|
+
link?: boolean;
|
|
19
|
+
replace?: boolean;
|
|
20
|
+
ripple?: boolean | object;
|
|
21
|
+
text?: string | number;
|
|
22
|
+
to?: string | object;
|
|
23
|
+
title?: string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IButton, IButtonEvents } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for Button component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class Button extends ComponentRender implements IButton {
|
|
7
|
+
absolute: boolean;
|
|
8
|
+
block: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Aligns the button towards the bottom.
|
|
11
|
+
* This should be used with the absolute or fixed props
|
|
12
|
+
*/
|
|
13
|
+
bottom: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Applies specified color to the control.
|
|
16
|
+
* It can be the name of material or css color in hexa
|
|
17
|
+
*/
|
|
18
|
+
color: string;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
events: IButtonEvents;
|
|
21
|
+
fab: boolean;
|
|
22
|
+
fixed: boolean;
|
|
23
|
+
flat: boolean;
|
|
24
|
+
href: string;
|
|
25
|
+
icon: boolean;
|
|
26
|
+
iconName: string;
|
|
27
|
+
label: string;
|
|
28
|
+
large: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Aligns the button towards the left.
|
|
31
|
+
* This should be used with the absolute or fixed props
|
|
32
|
+
*/
|
|
33
|
+
left: boolean;
|
|
34
|
+
outline: boolean;
|
|
35
|
+
reverse: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Aligns the button towards the right.
|
|
38
|
+
* This should be used with the absolute or fixed props
|
|
39
|
+
*/
|
|
40
|
+
right: boolean;
|
|
41
|
+
round: string | number | boolean;
|
|
42
|
+
small: boolean;
|
|
43
|
+
target: string;
|
|
44
|
+
tile: boolean;
|
|
45
|
+
to: string;
|
|
46
|
+
/**
|
|
47
|
+
* Aligns the content towards the top.
|
|
48
|
+
* This should be used with the absolute or fixed props
|
|
49
|
+
*/
|
|
50
|
+
top: boolean;
|
|
51
|
+
type: string;
|
|
52
|
+
/**
|
|
53
|
+
* Sets the width for the card.
|
|
54
|
+
* Possible values for width can be 'auto', '100%', '400px' or 400
|
|
55
|
+
*/
|
|
56
|
+
width: number | string;
|
|
57
|
+
active?: boolean;
|
|
58
|
+
appendIcon?: string;
|
|
59
|
+
border: string | number | boolean;
|
|
60
|
+
/**
|
|
61
|
+
* Adjusts the vertical height of the component
|
|
62
|
+
* Possible values: 'default', 'comfortable' and 'compact'
|
|
63
|
+
*/
|
|
64
|
+
density: 'default' | 'comfortable' | 'compact';
|
|
65
|
+
elevation?: string | number;
|
|
66
|
+
loading: string | boolean;
|
|
67
|
+
/**
|
|
68
|
+
* Defines the position of the component.
|
|
69
|
+
* Possible values: 'relative' | 'absolute' | 'static' | 'fixed' | 'sticky'
|
|
70
|
+
*/
|
|
71
|
+
position?: 'relative' | 'absolute' | 'static' | 'fixed' | 'sticky';
|
|
72
|
+
prependIcon?: string;
|
|
73
|
+
replace: boolean;
|
|
74
|
+
ripple: boolean;
|
|
75
|
+
selectedClass?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Defines the height and width of the component
|
|
78
|
+
* Possible values: x-small, small, default, large, and x-large
|
|
79
|
+
*/
|
|
80
|
+
size?: 'x-small' | 'small' | 'default' | 'large' | 'x-large';
|
|
81
|
+
stacked: boolean;
|
|
82
|
+
tag?: string;
|
|
83
|
+
variant?: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain';
|
|
84
|
+
/**
|
|
85
|
+
* Create a new Button
|
|
86
|
+
* @param props Button definition
|
|
87
|
+
*/
|
|
88
|
+
constructor(props: IButton);
|
|
89
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { IEventParam } from '@zeedhi/core';
|
|
2
|
+
import { IComponentEvents, IComponentRender } from '../zd-component/interfaces';
|
|
3
|
+
import { Button } from './button';
|
|
4
|
+
export type IButtonEvent = IEventParam<Button>;
|
|
5
|
+
export type IButtonEvents = IComponentEvents<IButtonEvent>;
|
|
6
|
+
export interface IButton extends IComponentRender {
|
|
7
|
+
absolute?: boolean;
|
|
8
|
+
block?: boolean;
|
|
9
|
+
bottom?: boolean;
|
|
10
|
+
color?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
events?: IButtonEvents;
|
|
13
|
+
fab?: boolean;
|
|
14
|
+
fixed?: boolean;
|
|
15
|
+
flat?: boolean;
|
|
16
|
+
href?: string;
|
|
17
|
+
icon?: boolean;
|
|
18
|
+
iconName?: string;
|
|
19
|
+
label?: string;
|
|
20
|
+
large?: boolean;
|
|
21
|
+
left?: boolean;
|
|
22
|
+
outline?: boolean;
|
|
23
|
+
reverse?: boolean;
|
|
24
|
+
right?: boolean;
|
|
25
|
+
round?: string | number | boolean;
|
|
26
|
+
small?: boolean;
|
|
27
|
+
target?: string;
|
|
28
|
+
tile?: boolean;
|
|
29
|
+
to?: string;
|
|
30
|
+
top?: boolean;
|
|
31
|
+
type?: string;
|
|
32
|
+
width?: number | string;
|
|
33
|
+
active?: boolean;
|
|
34
|
+
appendIcon?: string;
|
|
35
|
+
border?: string | number | boolean;
|
|
36
|
+
density?: 'default' | 'comfortable' | 'compact';
|
|
37
|
+
elevation?: string | number;
|
|
38
|
+
loading?: boolean | string;
|
|
39
|
+
position?: 'relative' | 'absolute' | 'static' | 'fixed' | 'sticky';
|
|
40
|
+
prependIcon?: string;
|
|
41
|
+
replace?: boolean;
|
|
42
|
+
ripple?: boolean;
|
|
43
|
+
selectedClass?: string;
|
|
44
|
+
size?: 'x-small' | 'small' | 'default' | 'large' | 'x-large';
|
|
45
|
+
stacked?: boolean;
|
|
46
|
+
tag?: string;
|
|
47
|
+
variant?: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain';
|
|
48
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { ComponentRender } from '../zd-component/component-render';
|
|
2
|
+
import { IButtonGroup } from './interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for Button Group component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class ButtonGroup extends ComponentRender implements IButtonGroup {
|
|
7
|
+
/**
|
|
8
|
+
* Changes the background-color for the component.
|
|
9
|
+
*/
|
|
10
|
+
backgroundColor: string;
|
|
11
|
+
/**
|
|
12
|
+
* Removes the group's border.
|
|
13
|
+
*/
|
|
14
|
+
borderless: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Applies specified color to the control.
|
|
17
|
+
* It can be the name of material or css color in hexa
|
|
18
|
+
*/
|
|
19
|
+
color: string;
|
|
20
|
+
/**
|
|
21
|
+
* Reduces the button size and padding.
|
|
22
|
+
*/
|
|
23
|
+
dense: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Applies mandatory selected button
|
|
26
|
+
*/
|
|
27
|
+
mandatory: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* The multiple prop will allow a user to select multiple
|
|
30
|
+
* return values as an array.
|
|
31
|
+
*/
|
|
32
|
+
multiple: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Round edge buttons
|
|
35
|
+
*/
|
|
36
|
+
rounded: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Applies a large border radius on the top left and
|
|
39
|
+
* bottom right of the card.
|
|
40
|
+
*/
|
|
41
|
+
shaped: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Specify a custom tag used on the root element.
|
|
44
|
+
*/
|
|
45
|
+
tag: string;
|
|
46
|
+
/**
|
|
47
|
+
* Removes the component's border-radius.
|
|
48
|
+
*/
|
|
49
|
+
tile: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Buttons selected.
|
|
52
|
+
*/
|
|
53
|
+
selectedButtons: number | string | number[] | null;
|
|
54
|
+
large: boolean;
|
|
55
|
+
small: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Create a new ButtonGroup
|
|
58
|
+
* @param props ButtonGroup definition
|
|
59
|
+
*/
|
|
60
|
+
constructor(props: IButtonGroup);
|
|
61
|
+
/**
|
|
62
|
+
* Triggered when the input value changes.
|
|
63
|
+
* @param event DOM event
|
|
64
|
+
* @param element Element clicked
|
|
65
|
+
*/
|
|
66
|
+
change(event?: Event, element?: any): void;
|
|
67
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { IEventParam } from '@zeedhi/core';
|
|
2
|
+
import { IButton } from '../zd-button/interfaces';
|
|
3
|
+
import { EventDef, IComponentEvents, IComponentRender } from '../zd-component/interfaces';
|
|
4
|
+
import { ButtonGroup } from './button-group';
|
|
5
|
+
export type IButtonGroupEvent = IEventParam<ButtonGroup>;
|
|
6
|
+
export interface IButtonGroupEvents<T = IEventParam<any>> extends IComponentEvents<T> {
|
|
7
|
+
change?: EventDef<T>;
|
|
8
|
+
}
|
|
9
|
+
export interface IButtonGroup extends IComponentRender {
|
|
10
|
+
children?: IButton[];
|
|
11
|
+
backgroundColor?: string;
|
|
12
|
+
borderless?: boolean;
|
|
13
|
+
color?: string;
|
|
14
|
+
dense?: boolean;
|
|
15
|
+
events?: IButtonGroupEvents;
|
|
16
|
+
mandatory?: boolean;
|
|
17
|
+
multiple?: boolean;
|
|
18
|
+
rounded?: boolean;
|
|
19
|
+
shaped?: boolean;
|
|
20
|
+
large?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
|
+
tag?: string;
|
|
23
|
+
tile?: boolean;
|
|
24
|
+
selectedButtons?: number | string | number[] | null;
|
|
25
|
+
}
|