@oracle/oraclejet-webdriver 10.1.7
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 +21 -0
- package/README.md +16 -0
- package/bin/generate +509 -0
- package/bin/generate-jet +163 -0
- package/bin/templates/baseclass.ts-template +13 -0
- package/bin/templates/class.ts-template +12 -0
- package/bin/templates/element-test.spec.ts-template +28 -0
- package/bin/templates/index.ts-template +27 -0
- package/bin/templates/jetcomponents.json +71 -0
- package/bin/templates/package.json-template +15 -0
- package/bin/templates/tsconfig.json-template +19 -0
- package/elements/OjWebElement.js +232 -0
- package/elements/OjWebElement.js.map +1 -0
- package/elements/OjWebElement.ts +674 -0
- package/elements/index.js +214 -0
- package/elements/index.js.map +1 -0
- package/elements/index.ts +75 -0
- package/elements/oj-accordion/OjAccordion.js +8 -0
- package/elements/oj-accordion/OjAccordion.js.map +1 -0
- package/elements/oj-accordion/OjAccordion.ts +12 -0
- package/elements/oj-accordion/OjAccordionBase.js +20 -0
- package/elements/oj-accordion/OjAccordionBase.js.map +1 -0
- package/elements/oj-accordion/OjAccordionBase.ts +48 -0
- package/elements/oj-accordion/index.js +17 -0
- package/elements/oj-accordion/index.js.map +1 -0
- package/elements/oj-accordion/index.ts +27 -0
- package/elements/oj-button/OjButton.js +20 -0
- package/elements/oj-button/OjButton.js.map +1 -0
- package/elements/oj-button/OjButton.ts +35 -0
- package/elements/oj-button/OjButtonBase.js +23 -0
- package/elements/oj-button/OjButtonBase.js.map +1 -0
- package/elements/oj-button/OjButtonBase.ts +57 -0
- package/elements/oj-button/index.js +17 -0
- package/elements/oj-button/index.js.map +1 -0
- package/elements/oj-button/index.ts +27 -0
- package/elements/oj-buttonset-many/OjButtonsetMany.js +8 -0
- package/elements/oj-buttonset-many/OjButtonsetMany.js.map +1 -0
- package/elements/oj-buttonset-many/OjButtonsetMany.ts +11 -0
- package/elements/oj-buttonset-many/OjButtonsetManyBase.js +35 -0
- package/elements/oj-buttonset-many/OjButtonsetManyBase.js.map +1 -0
- package/elements/oj-buttonset-many/OjButtonsetManyBase.ts +93 -0
- package/elements/oj-buttonset-many/index.js +17 -0
- package/elements/oj-buttonset-many/index.js.map +1 -0
- package/elements/oj-buttonset-many/index.ts +27 -0
- package/elements/oj-buttonset-one/OjButtonsetOne.js +8 -0
- package/elements/oj-buttonset-one/OjButtonsetOne.js.map +1 -0
- package/elements/oj-buttonset-one/OjButtonsetOne.ts +11 -0
- package/elements/oj-buttonset-one/OjButtonsetOneBase.js +35 -0
- package/elements/oj-buttonset-one/OjButtonsetOneBase.js.map +1 -0
- package/elements/oj-buttonset-one/OjButtonsetOneBase.ts +93 -0
- package/elements/oj-buttonset-one/index.js +17 -0
- package/elements/oj-buttonset-one/index.js.map +1 -0
- package/elements/oj-buttonset-one/index.ts +27 -0
- package/elements/oj-chart/OjChart.js +8 -0
- package/elements/oj-chart/OjChart.js.map +1 -0
- package/elements/oj-chart/OjChart.ts +12 -0
- package/elements/oj-chart/OjChartBase.js +170 -0
- package/elements/oj-chart/OjChartBase.js.map +1 -0
- package/elements/oj-chart/OjChartBase.ts +2468 -0
- package/elements/oj-chart/index.js +17 -0
- package/elements/oj-chart/index.js.map +1 -0
- package/elements/oj-chart/index.ts +27 -0
- package/elements/oj-checkboxset/OjCheckboxset.js +39 -0
- package/elements/oj-checkboxset/OjCheckboxset.js.map +1 -0
- package/elements/oj-checkboxset/OjCheckboxset.ts +74 -0
- package/elements/oj-checkboxset/OjCheckboxsetBase.js +68 -0
- package/elements/oj-checkboxset/OjCheckboxsetBase.js.map +1 -0
- package/elements/oj-checkboxset/OjCheckboxsetBase.ts +262 -0
- package/elements/oj-checkboxset/index.js +17 -0
- package/elements/oj-checkboxset/index.js.map +1 -0
- package/elements/oj-checkboxset/index.ts +27 -0
- package/elements/oj-collapsible/OjCollapsible.js +23 -0
- package/elements/oj-collapsible/OjCollapsible.js.map +1 -0
- package/elements/oj-collapsible/OjCollapsible.ts +36 -0
- package/elements/oj-collapsible/OjCollapsibleBase.js +23 -0
- package/elements/oj-collapsible/OjCollapsibleBase.js.map +1 -0
- package/elements/oj-collapsible/OjCollapsibleBase.ts +57 -0
- package/elements/oj-collapsible/index.js +17 -0
- package/elements/oj-collapsible/index.js.map +1 -0
- package/elements/oj-collapsible/index.ts +27 -0
- package/elements/oj-color-palette/OjColorPalette.js +8 -0
- package/elements/oj-color-palette/OjColorPalette.js.map +1 -0
- package/elements/oj-color-palette/OjColorPalette.ts +12 -0
- package/elements/oj-color-palette/OjColorPaletteBase.js +65 -0
- package/elements/oj-color-palette/OjColorPaletteBase.js.map +1 -0
- package/elements/oj-color-palette/OjColorPaletteBase.ts +235 -0
- package/elements/oj-color-palette/index.js +17 -0
- package/elements/oj-color-palette/index.js.map +1 -0
- package/elements/oj-color-palette/index.ts +27 -0
- package/elements/oj-color-spectrum/OjColorSpectrum.js +8 -0
- package/elements/oj-color-spectrum/OjColorSpectrum.js.map +1 -0
- package/elements/oj-color-spectrum/OjColorSpectrum.ts +12 -0
- package/elements/oj-color-spectrum/OjColorSpectrumBase.js +56 -0
- package/elements/oj-color-spectrum/OjColorSpectrumBase.js.map +1 -0
- package/elements/oj-color-spectrum/OjColorSpectrumBase.ts +210 -0
- package/elements/oj-color-spectrum/index.js +17 -0
- package/elements/oj-color-spectrum/index.js.map +1 -0
- package/elements/oj-color-spectrum/index.ts +27 -0
- package/elements/oj-combobox-many/OjComboboxMany.js +51 -0
- package/elements/oj-combobox-many/OjComboboxMany.js.map +1 -0
- package/elements/oj-combobox-many/OjComboboxMany.ts +80 -0
- package/elements/oj-combobox-many/OjComboboxManyBase.js +98 -0
- package/elements/oj-combobox-many/OjComboboxManyBase.js.map +1 -0
- package/elements/oj-combobox-many/OjComboboxManyBase.ts +428 -0
- package/elements/oj-combobox-many/index.js +17 -0
- package/elements/oj-combobox-many/index.js.map +1 -0
- package/elements/oj-combobox-many/index.ts +27 -0
- package/elements/oj-combobox-one/OjComboboxOne.js +49 -0
- package/elements/oj-combobox-one/OjComboboxOne.js.map +1 -0
- package/elements/oj-combobox-one/OjComboboxOne.ts +74 -0
- package/elements/oj-combobox-one/OjComboboxOneBase.js +101 -0
- package/elements/oj-combobox-one/OjComboboxOneBase.js.map +1 -0
- package/elements/oj-combobox-one/OjComboboxOneBase.ts +437 -0
- package/elements/oj-combobox-one/index.js +17 -0
- package/elements/oj-combobox-one/index.js.map +1 -0
- package/elements/oj-combobox-one/index.ts +27 -0
- package/elements/oj-conveyor-belt/OjConveyorBelt.js +16 -0
- package/elements/oj-conveyor-belt/OjConveyorBelt.js.map +1 -0
- package/elements/oj-conveyor-belt/OjConveyorBelt.ts +30 -0
- package/elements/oj-conveyor-belt/OjConveyorBeltBase.js +29 -0
- package/elements/oj-conveyor-belt/OjConveyorBeltBase.js.map +1 -0
- package/elements/oj-conveyor-belt/OjConveyorBeltBase.ts +87 -0
- package/elements/oj-conveyor-belt/index.js +17 -0
- package/elements/oj-conveyor-belt/index.js.map +1 -0
- package/elements/oj-conveyor-belt/index.ts +27 -0
- package/elements/oj-data-grid/OjDataGrid.js +198 -0
- package/elements/oj-data-grid/OjDataGrid.js.map +1 -0
- package/elements/oj-data-grid/OjDataGrid.ts +279 -0
- package/elements/oj-data-grid/OjDataGridBase.js +65 -0
- package/elements/oj-data-grid/OjDataGridBase.js.map +1 -0
- package/elements/oj-data-grid/OjDataGridBase.ts +705 -0
- package/elements/oj-data-grid/index.js +17 -0
- package/elements/oj-data-grid/index.js.map +1 -0
- package/elements/oj-data-grid/index.ts +27 -0
- package/elements/oj-date-picker/OjDatePicker.js +8 -0
- package/elements/oj-date-picker/OjDatePicker.js.map +1 -0
- package/elements/oj-date-picker/OjDatePicker.ts +12 -0
- package/elements/oj-date-picker/OjDatePickerBase.js +104 -0
- package/elements/oj-date-picker/OjDatePickerBase.js.map +1 -0
- package/elements/oj-date-picker/OjDatePickerBase.ts +536 -0
- package/elements/oj-date-picker/index.js +17 -0
- package/elements/oj-date-picker/index.js.map +1 -0
- package/elements/oj-date-picker/index.ts +27 -0
- package/elements/oj-date-time-picker/OjDateTimePicker.js +8 -0
- package/elements/oj-date-time-picker/OjDateTimePicker.js.map +1 -0
- package/elements/oj-date-time-picker/OjDateTimePicker.ts +32 -0
- package/elements/oj-date-time-picker/OjDateTimePickerBase.js +107 -0
- package/elements/oj-date-time-picker/OjDateTimePickerBase.js.map +1 -0
- package/elements/oj-date-time-picker/OjDateTimePickerBase.ts +567 -0
- package/elements/oj-date-time-picker/index.js +17 -0
- package/elements/oj-date-time-picker/index.js.map +1 -0
- package/elements/oj-date-time-picker/index.ts +27 -0
- package/elements/oj-diagram/OjDiagram.js +8 -0
- package/elements/oj-diagram/OjDiagram.js.map +1 -0
- package/elements/oj-diagram/OjDiagram.ts +12 -0
- package/elements/oj-diagram/OjDiagramBase.js +128 -0
- package/elements/oj-diagram/OjDiagramBase.js.map +1 -0
- package/elements/oj-diagram/OjDiagramBase.ts +740 -0
- package/elements/oj-diagram/index.js +17 -0
- package/elements/oj-diagram/index.js.map +1 -0
- package/elements/oj-diagram/index.ts +27 -0
- package/elements/oj-dialog/OjDialog.js +13 -0
- package/elements/oj-dialog/OjDialog.js.map +1 -0
- package/elements/oj-dialog/OjDialog.ts +21 -0
- package/elements/oj-dialog/OjDialogBase.js +32 -0
- package/elements/oj-dialog/OjDialogBase.js.map +1 -0
- package/elements/oj-dialog/OjDialogBase.ts +144 -0
- package/elements/oj-dialog/index.js +17 -0
- package/elements/oj-dialog/index.js.map +1 -0
- package/elements/oj-dialog/index.ts +27 -0
- package/elements/oj-file-picker/OjFilePicker.js +36 -0
- package/elements/oj-file-picker/OjFilePicker.js.map +1 -0
- package/elements/oj-file-picker/OjFilePicker.ts +49 -0
- package/elements/oj-file-picker/OjFilePickerBase.js +29 -0
- package/elements/oj-file-picker/OjFilePickerBase.js.map +1 -0
- package/elements/oj-file-picker/OjFilePickerBase.ts +75 -0
- package/elements/oj-file-picker/index.js +17 -0
- package/elements/oj-file-picker/index.js.map +1 -0
- package/elements/oj-file-picker/index.ts +27 -0
- package/elements/oj-film-strip/OjFilmStrip.js +8 -0
- package/elements/oj-film-strip/OjFilmStrip.js.map +1 -0
- package/elements/oj-film-strip/OjFilmStrip.ts +12 -0
- package/elements/oj-film-strip/OjFilmStripBase.js +32 -0
- package/elements/oj-film-strip/OjFilmStripBase.js.map +1 -0
- package/elements/oj-film-strip/OjFilmStripBase.ts +118 -0
- package/elements/oj-film-strip/index.js +17 -0
- package/elements/oj-film-strip/index.js.map +1 -0
- package/elements/oj-film-strip/index.ts +27 -0
- package/elements/oj-gantt/OjGantt.js +8 -0
- package/elements/oj-gantt/OjGantt.js.map +1 -0
- package/elements/oj-gantt/OjGantt.ts +12 -0
- package/elements/oj-gantt/OjGanttBase.js +98 -0
- package/elements/oj-gantt/OjGanttBase.js.map +1 -0
- package/elements/oj-gantt/OjGanttBase.ts +996 -0
- package/elements/oj-gantt/index.js +17 -0
- package/elements/oj-gantt/index.js.map +1 -0
- package/elements/oj-gantt/index.ts +27 -0
- package/elements/oj-indexer/OjIndexer.js +8 -0
- package/elements/oj-indexer/OjIndexer.js.map +1 -0
- package/elements/oj-indexer/OjIndexer.ts +12 -0
- package/elements/oj-indexer/OjIndexerBase.js +14 -0
- package/elements/oj-indexer/OjIndexerBase.js.map +1 -0
- package/elements/oj-indexer/OjIndexerBase.ts +62 -0
- package/elements/oj-indexer/index.js +17 -0
- package/elements/oj-indexer/index.js.map +1 -0
- package/elements/oj-indexer/index.ts +27 -0
- package/elements/oj-input-date/OjInputDate.js +10 -0
- package/elements/oj-input-date/OjInputDate.js.map +1 -0
- package/elements/oj-input-date/OjInputDate.ts +14 -0
- package/elements/oj-input-date/OjInputDateBase.js +107 -0
- package/elements/oj-input-date/OjInputDateBase.js.map +1 -0
- package/elements/oj-input-date/OjInputDateBase.ts +545 -0
- package/elements/oj-input-date/index.js +17 -0
- package/elements/oj-input-date/index.js.map +1 -0
- package/elements/oj-input-date/index.ts +27 -0
- package/elements/oj-input-date-time/OjInputDateTime.js +10 -0
- package/elements/oj-input-date-time/OjInputDateTime.js.map +1 -0
- package/elements/oj-input-date-time/OjInputDateTime.ts +14 -0
- package/elements/oj-input-date-time/OjInputDateTimeBase.js +110 -0
- package/elements/oj-input-date-time/OjInputDateTimeBase.js.map +1 -0
- package/elements/oj-input-date-time/OjInputDateTimeBase.ts +576 -0
- package/elements/oj-input-date-time/index.js +17 -0
- package/elements/oj-input-date-time/index.js.map +1 -0
- package/elements/oj-input-date-time/index.ts +27 -0
- package/elements/oj-input-number/OjInputNumber.js +10 -0
- package/elements/oj-input-number/OjInputNumber.js.map +1 -0
- package/elements/oj-input-number/OjInputNumber.ts +14 -0
- package/elements/oj-input-number/OjInputNumberBase.js +98 -0
- package/elements/oj-input-number/OjInputNumberBase.js.map +1 -0
- package/elements/oj-input-number/OjInputNumberBase.ts +406 -0
- package/elements/oj-input-number/index.js +17 -0
- package/elements/oj-input-number/index.js.map +1 -0
- package/elements/oj-input-number/index.ts +27 -0
- package/elements/oj-input-password/OjInputPassword.js +10 -0
- package/elements/oj-input-password/OjInputPassword.js.map +1 -0
- package/elements/oj-input-password/OjInputPassword.ts +14 -0
- package/elements/oj-input-password/OjInputPasswordBase.js +83 -0
- package/elements/oj-input-password/OjInputPasswordBase.js.map +1 -0
- package/elements/oj-input-password/OjInputPasswordBase.ts +323 -0
- package/elements/oj-input-password/index.js +17 -0
- package/elements/oj-input-password/index.js.map +1 -0
- package/elements/oj-input-password/index.ts +27 -0
- package/elements/oj-input-search/OjInputSearch.js +41 -0
- package/elements/oj-input-search/OjInputSearch.js.map +1 -0
- package/elements/oj-input-search/OjInputSearch.ts +64 -0
- package/elements/oj-input-search/OjInputSearchBase.js +26 -0
- package/elements/oj-input-search/OjInputSearchBase.js.map +1 -0
- package/elements/oj-input-search/OjInputSearchBase.ts +66 -0
- package/elements/oj-input-search/index.js +17 -0
- package/elements/oj-input-search/index.js.map +1 -0
- package/elements/oj-input-search/index.ts +27 -0
- package/elements/oj-input-text/OjInputText.js +10 -0
- package/elements/oj-input-text/OjInputText.js.map +1 -0
- package/elements/oj-input-text/OjInputText.ts +15 -0
- package/elements/oj-input-text/OjInputTextBase.js +95 -0
- package/elements/oj-input-text/OjInputTextBase.js.map +1 -0
- package/elements/oj-input-text/OjInputTextBase.ts +361 -0
- package/elements/oj-input-text/index.js +17 -0
- package/elements/oj-input-text/index.js.map +1 -0
- package/elements/oj-input-text/index.ts +27 -0
- package/elements/oj-input-time/OjInputTime.js +10 -0
- package/elements/oj-input-time/OjInputTime.js.map +1 -0
- package/elements/oj-input-time/OjInputTime.ts +14 -0
- package/elements/oj-input-time/OjInputTimeBase.js +101 -0
- package/elements/oj-input-time/OjInputTimeBase.js.map +1 -0
- package/elements/oj-input-time/OjInputTimeBase.ts +477 -0
- package/elements/oj-input-time/index.js +17 -0
- package/elements/oj-input-time/index.js.map +1 -0
- package/elements/oj-input-time/index.ts +27 -0
- package/elements/oj-label/OjLabel.js +8 -0
- package/elements/oj-label/OjLabel.js.map +1 -0
- package/elements/oj-label/OjLabel.ts +12 -0
- package/elements/oj-label/OjLabelBase.js +23 -0
- package/elements/oj-label/OjLabelBase.js.map +1 -0
- package/elements/oj-label/OjLabelBase.ts +79 -0
- package/elements/oj-label/index.js +17 -0
- package/elements/oj-label/index.js.map +1 -0
- package/elements/oj-label/index.ts +27 -0
- package/elements/oj-led-gauge/OjLedGauge.js +8 -0
- package/elements/oj-led-gauge/OjLedGauge.js.map +1 -0
- package/elements/oj-led-gauge/OjLedGauge.ts +12 -0
- package/elements/oj-led-gauge/OjLedGaugeBase.js +62 -0
- package/elements/oj-led-gauge/OjLedGaugeBase.js.map +1 -0
- package/elements/oj-led-gauge/OjLedGaugeBase.ts +302 -0
- package/elements/oj-led-gauge/index.js +17 -0
- package/elements/oj-led-gauge/index.js.map +1 -0
- package/elements/oj-led-gauge/index.ts +27 -0
- package/elements/oj-legend/OjLegend.js +8 -0
- package/elements/oj-legend/OjLegend.js.map +1 -0
- package/elements/oj-legend/OjLegend.ts +12 -0
- package/elements/oj-legend/OjLegendBase.js +74 -0
- package/elements/oj-legend/OjLegendBase.js.map +1 -0
- package/elements/oj-legend/OjLegendBase.ts +324 -0
- package/elements/oj-legend/index.js +17 -0
- package/elements/oj-legend/index.js.map +1 -0
- package/elements/oj-legend/index.ts +27 -0
- package/elements/oj-list-view/OjListView.js +25 -0
- package/elements/oj-list-view/OjListView.js.map +1 -0
- package/elements/oj-list-view/OjListView.ts +36 -0
- package/elements/oj-list-view/OjListViewBase.js +71 -0
- package/elements/oj-list-view/OjListViewBase.js.map +1 -0
- package/elements/oj-list-view/OjListViewBase.ts +355 -0
- package/elements/oj-list-view/index.js +17 -0
- package/elements/oj-list-view/index.js.map +1 -0
- package/elements/oj-list-view/index.ts +27 -0
- package/elements/oj-masonry-layout/OjMasonryLayout.js +8 -0
- package/elements/oj-masonry-layout/OjMasonryLayout.js.map +1 -0
- package/elements/oj-masonry-layout/OjMasonryLayout.ts +12 -0
- package/elements/oj-masonry-layout/OjMasonryLayoutBase.js +14 -0
- package/elements/oj-masonry-layout/OjMasonryLayoutBase.js.map +1 -0
- package/elements/oj-masonry-layout/OjMasonryLayoutBase.ts +46 -0
- package/elements/oj-masonry-layout/index.js +17 -0
- package/elements/oj-masonry-layout/index.js.map +1 -0
- package/elements/oj-masonry-layout/index.ts +27 -0
- package/elements/oj-menu/OjMenu.js +28 -0
- package/elements/oj-menu/OjMenu.js.map +1 -0
- package/elements/oj-menu/OjMenu.ts +42 -0
- package/elements/oj-menu/OjMenuBase.js +17 -0
- package/elements/oj-menu/OjMenuBase.js.map +1 -0
- package/elements/oj-menu/OjMenuBase.ts +121 -0
- package/elements/oj-menu/index.js +17 -0
- package/elements/oj-menu/index.js.map +1 -0
- package/elements/oj-menu/index.ts +27 -0
- package/elements/oj-menu-button/OjMenuButton.js +14 -0
- package/elements/oj-menu-button/OjMenuButton.js.map +1 -0
- package/elements/oj-menu-button/OjMenuButton.ts +20 -0
- package/elements/oj-menu-button/OjMenuButtonBase.js +20 -0
- package/elements/oj-menu-button/OjMenuButtonBase.js.map +1 -0
- package/elements/oj-menu-button/OjMenuButtonBase.ts +48 -0
- package/elements/oj-menu-button/index.js +17 -0
- package/elements/oj-menu-button/index.js.map +1 -0
- package/elements/oj-menu-button/index.ts +27 -0
- package/elements/oj-message/OjMessage.js +13 -0
- package/elements/oj-message/OjMessage.js.map +1 -0
- package/elements/oj-message/OjMessage.ts +19 -0
- package/elements/oj-message/OjMessageBase.js +17 -0
- package/elements/oj-message/OjMessageBase.js.map +1 -0
- package/elements/oj-message/OjMessageBase.ts +113 -0
- package/elements/oj-message/index.js +17 -0
- package/elements/oj-message/index.js.map +1 -0
- package/elements/oj-message/index.ts +27 -0
- package/elements/oj-n-box/OjNBox.js +8 -0
- package/elements/oj-n-box/OjNBox.js.map +1 -0
- package/elements/oj-n-box/OjNBox.ts +12 -0
- package/elements/oj-n-box/OjNBoxBase.js +116 -0
- package/elements/oj-n-box/OjNBoxBase.js.map +1 -0
- package/elements/oj-n-box/OjNBoxBase.ts +880 -0
- package/elements/oj-n-box/index.js +17 -0
- package/elements/oj-n-box/index.js.map +1 -0
- package/elements/oj-n-box/index.ts +27 -0
- package/elements/oj-navigation-list/OjNavigationList.js +186 -0
- package/elements/oj-navigation-list/OjNavigationList.js.map +1 -0
- package/elements/oj-navigation-list/OjNavigationList.ts +250 -0
- package/elements/oj-navigation-list/OjNavigationListBase.js +50 -0
- package/elements/oj-navigation-list/OjNavigationListBase.js.map +1 -0
- package/elements/oj-navigation-list/OjNavigationListBase.ts +164 -0
- package/elements/oj-navigation-list/index.js +17 -0
- package/elements/oj-navigation-list/index.js.map +1 -0
- package/elements/oj-navigation-list/index.ts +27 -0
- package/elements/oj-paging-control/OjPagingControl.js +13 -0
- package/elements/oj-paging-control/OjPagingControl.js.map +1 -0
- package/elements/oj-paging-control/OjPagingControl.ts +26 -0
- package/elements/oj-paging-control/OjPagingControlBase.js +29 -0
- package/elements/oj-paging-control/OjPagingControlBase.js.map +1 -0
- package/elements/oj-paging-control/OjPagingControlBase.ts +235 -0
- package/elements/oj-paging-control/index.js +17 -0
- package/elements/oj-paging-control/index.js.map +1 -0
- package/elements/oj-paging-control/index.ts +27 -0
- package/elements/oj-picto-chart/OjPictoChart.js +8 -0
- package/elements/oj-picto-chart/OjPictoChart.js.map +1 -0
- package/elements/oj-picto-chart/OjPictoChart.ts +12 -0
- package/elements/oj-picto-chart/OjPictoChartBase.js +86 -0
- package/elements/oj-picto-chart/OjPictoChartBase.js.map +1 -0
- package/elements/oj-picto-chart/OjPictoChartBase.ts +394 -0
- package/elements/oj-picto-chart/index.js +17 -0
- package/elements/oj-picto-chart/index.js.map +1 -0
- package/elements/oj-picto-chart/index.ts +27 -0
- package/elements/oj-popup/OjPopup.js +8 -0
- package/elements/oj-popup/OjPopup.js.map +1 -0
- package/elements/oj-popup/OjPopup.ts +11 -0
- package/elements/oj-popup/OjPopupBase.js +29 -0
- package/elements/oj-popup/OjPopupBase.js.map +1 -0
- package/elements/oj-popup/OjPopupBase.ts +155 -0
- package/elements/oj-popup/index.js +17 -0
- package/elements/oj-popup/index.js.map +1 -0
- package/elements/oj-popup/index.ts +27 -0
- package/elements/oj-progress/OjProgress.js +8 -0
- package/elements/oj-progress/OjProgress.js.map +1 -0
- package/elements/oj-progress/OjProgress.ts +12 -0
- package/elements/oj-progress/OjProgressBase.js +23 -0
- package/elements/oj-progress/OjProgressBase.js.map +1 -0
- package/elements/oj-progress/OjProgressBase.ts +65 -0
- package/elements/oj-progress/index.js +17 -0
- package/elements/oj-progress/index.js.map +1 -0
- package/elements/oj-progress/index.ts +27 -0
- package/elements/oj-progress-list/OjProgressList.js +8 -0
- package/elements/oj-progress-list/OjProgressList.js.map +1 -0
- package/elements/oj-progress-list/OjProgressList.ts +12 -0
- package/elements/oj-progress-list/OjProgressListBase.js +11 -0
- package/elements/oj-progress-list/OjProgressListBase.js.map +1 -0
- package/elements/oj-progress-list/OjProgressListBase.ts +21 -0
- package/elements/oj-progress-list/index.js +17 -0
- package/elements/oj-progress-list/index.js.map +1 -0
- package/elements/oj-progress-list/index.ts +27 -0
- package/elements/oj-radioset/OjRadioset.js +32 -0
- package/elements/oj-radioset/OjRadioset.js.map +1 -0
- package/elements/oj-radioset/OjRadioset.ts +63 -0
- package/elements/oj-radioset/OjRadiosetBase.js +68 -0
- package/elements/oj-radioset/OjRadiosetBase.js.map +1 -0
- package/elements/oj-radioset/OjRadiosetBase.ts +262 -0
- package/elements/oj-radioset/index.js +17 -0
- package/elements/oj-radioset/index.js.map +1 -0
- package/elements/oj-radioset/index.ts +27 -0
- package/elements/oj-rating-gauge/OjRatingGauge.js +8 -0
- package/elements/oj-rating-gauge/OjRatingGauge.js.map +1 -0
- package/elements/oj-rating-gauge/OjRatingGauge.ts +12 -0
- package/elements/oj-rating-gauge/OjRatingGaugeBase.js +80 -0
- package/elements/oj-rating-gauge/OjRatingGaugeBase.js.map +1 -0
- package/elements/oj-rating-gauge/OjRatingGaugeBase.ts +424 -0
- package/elements/oj-rating-gauge/index.js +17 -0
- package/elements/oj-rating-gauge/index.js.map +1 -0
- package/elements/oj-rating-gauge/index.ts +27 -0
- package/elements/oj-refresher/OjRefresher.js +8 -0
- package/elements/oj-refresher/OjRefresher.js.map +1 -0
- package/elements/oj-refresher/OjRefresher.ts +12 -0
- package/elements/oj-refresher/OjRefresherBase.js +20 -0
- package/elements/oj-refresher/OjRefresherBase.js.map +1 -0
- package/elements/oj-refresher/OjRefresherBase.ts +64 -0
- package/elements/oj-refresher/index.js +17 -0
- package/elements/oj-refresher/index.js.map +1 -0
- package/elements/oj-refresher/index.ts +27 -0
- package/elements/oj-row-expander/OjRowExpander.js +8 -0
- package/elements/oj-row-expander/OjRowExpander.js.map +1 -0
- package/elements/oj-row-expander/OjRowExpander.ts +12 -0
- package/elements/oj-row-expander/OjRowExpanderBase.js +20 -0
- package/elements/oj-row-expander/OjRowExpanderBase.js.map +1 -0
- package/elements/oj-row-expander/OjRowExpanderBase.ts +76 -0
- package/elements/oj-row-expander/index.js +17 -0
- package/elements/oj-row-expander/index.js.map +1 -0
- package/elements/oj-row-expander/index.ts +27 -0
- package/elements/oj-select-many/OjSelectMany.js +51 -0
- package/elements/oj-select-many/OjSelectMany.js.map +1 -0
- package/elements/oj-select-many/OjSelectMany.ts +80 -0
- package/elements/oj-select-many/OjSelectManyBase.js +89 -0
- package/elements/oj-select-many/OjSelectManyBase.js.map +1 -0
- package/elements/oj-select-many/OjSelectManyBase.ts +387 -0
- package/elements/oj-select-many/index.js +17 -0
- package/elements/oj-select-many/index.js.map +1 -0
- package/elements/oj-select-many/index.ts +27 -0
- package/elements/oj-select-one/OjSelectOne.js +45 -0
- package/elements/oj-select-one/OjSelectOne.js.map +1 -0
- package/elements/oj-select-one/OjSelectOne.ts +70 -0
- package/elements/oj-select-one/OjSelectOneBase.js +89 -0
- package/elements/oj-select-one/OjSelectOneBase.js.map +1 -0
- package/elements/oj-select-one/OjSelectOneBase.ts +387 -0
- package/elements/oj-select-one/index.js +17 -0
- package/elements/oj-select-one/index.js.map +1 -0
- package/elements/oj-select-one/index.ts +27 -0
- package/elements/oj-select-single/OjSelectSingle.js +35 -0
- package/elements/oj-select-single/OjSelectSingle.js.map +1 -0
- package/elements/oj-select-single/OjSelectSingle.ts +51 -0
- package/elements/oj-select-single/OjSelectSingleBase.js +77 -0
- package/elements/oj-select-single/OjSelectSingleBase.js.map +1 -0
- package/elements/oj-select-single/OjSelectSingleBase.ts +303 -0
- package/elements/oj-select-single/index.js +17 -0
- package/elements/oj-select-single/index.js.map +1 -0
- package/elements/oj-select-single/index.ts +27 -0
- package/elements/oj-selector/OjSelector.js +13 -0
- package/elements/oj-selector/OjSelector.js.map +1 -0
- package/elements/oj-selector/OjSelector.ts +20 -0
- package/elements/oj-selector/OjSelectorBase.js +26 -0
- package/elements/oj-selector/OjSelectorBase.js.map +1 -0
- package/elements/oj-selector/OjSelectorBase.ts +66 -0
- package/elements/oj-selector/index.js +17 -0
- package/elements/oj-selector/index.js.map +1 -0
- package/elements/oj-selector/index.ts +27 -0
- package/elements/oj-slider/OjSlider.js +15 -0
- package/elements/oj-slider/OjSlider.js.map +1 -0
- package/elements/oj-slider/OjSlider.ts +25 -0
- package/elements/oj-slider/OjSliderBase.js +71 -0
- package/elements/oj-slider/OjSliderBase.js.map +1 -0
- package/elements/oj-slider/OjSliderBase.ts +259 -0
- package/elements/oj-slider/index.js +17 -0
- package/elements/oj-slider/index.js.map +1 -0
- package/elements/oj-slider/index.ts +27 -0
- package/elements/oj-spark-chart/OjSparkChart.js +8 -0
- package/elements/oj-spark-chart/OjSparkChart.js.map +1 -0
- package/elements/oj-spark-chart/OjSparkChart.ts +12 -0
- package/elements/oj-spark-chart/OjSparkChartBase.js +95 -0
- package/elements/oj-spark-chart/OjSparkChartBase.js.map +1 -0
- package/elements/oj-spark-chart/OjSparkChartBase.ts +431 -0
- package/elements/oj-spark-chart/index.js +17 -0
- package/elements/oj-spark-chart/index.js.map +1 -0
- package/elements/oj-spark-chart/index.ts +27 -0
- package/elements/oj-status-meter-gauge/OjStatusMeterGauge.js +8 -0
- package/elements/oj-status-meter-gauge/OjStatusMeterGauge.js.map +1 -0
- package/elements/oj-status-meter-gauge/OjStatusMeterGauge.ts +12 -0
- package/elements/oj-status-meter-gauge/OjStatusMeterGaugeBase.js +107 -0
- package/elements/oj-status-meter-gauge/OjStatusMeterGaugeBase.js.map +1 -0
- package/elements/oj-status-meter-gauge/OjStatusMeterGaugeBase.ts +491 -0
- package/elements/oj-status-meter-gauge/index.js +17 -0
- package/elements/oj-status-meter-gauge/index.js.map +1 -0
- package/elements/oj-status-meter-gauge/index.ts +27 -0
- package/elements/oj-stream-list/OjStreamList.js +70 -0
- package/elements/oj-stream-list/OjStreamList.js.map +1 -0
- package/elements/oj-stream-list/OjStreamList.ts +79 -0
- package/elements/oj-stream-list/OjStreamListBase.js +29 -0
- package/elements/oj-stream-list/OjStreamListBase.js.map +1 -0
- package/elements/oj-stream-list/OjStreamListBase.ts +109 -0
- package/elements/oj-stream-list/index.js +17 -0
- package/elements/oj-stream-list/index.js.map +1 -0
- package/elements/oj-stream-list/index.ts +27 -0
- package/elements/oj-sunburst/OjSunburst.js +8 -0
- package/elements/oj-sunburst/OjSunburst.js.map +1 -0
- package/elements/oj-sunburst/OjSunburst.ts +12 -0
- package/elements/oj-sunburst/OjSunburstBase.js +104 -0
- package/elements/oj-sunburst/OjSunburstBase.js.map +1 -0
- package/elements/oj-sunburst/OjSunburstBase.ts +512 -0
- package/elements/oj-sunburst/index.js +17 -0
- package/elements/oj-sunburst/index.js.map +1 -0
- package/elements/oj-sunburst/index.ts +27 -0
- package/elements/oj-swipe-actions/OjSwipeActions.js +19 -0
- package/elements/oj-swipe-actions/OjSwipeActions.js.map +1 -0
- package/elements/oj-swipe-actions/OjSwipeActions.ts +30 -0
- package/elements/oj-swipe-actions/OjSwipeActionsBase.js +11 -0
- package/elements/oj-swipe-actions/OjSwipeActionsBase.js.map +1 -0
- package/elements/oj-swipe-actions/OjSwipeActionsBase.ts +37 -0
- package/elements/oj-swipe-actions/index.js +17 -0
- package/elements/oj-swipe-actions/index.js.map +1 -0
- package/elements/oj-swipe-actions/index.ts +27 -0
- package/elements/oj-switch/OjSwitch.js +16 -0
- package/elements/oj-switch/OjSwitch.js.map +1 -0
- package/elements/oj-switch/OjSwitch.ts +26 -0
- package/elements/oj-switch/OjSwitchBase.js +56 -0
- package/elements/oj-switch/OjSwitchBase.js.map +1 -0
- package/elements/oj-switch/OjSwitchBase.ts +192 -0
- package/elements/oj-switch/index.js +17 -0
- package/elements/oj-switch/index.js.map +1 -0
- package/elements/oj-switch/index.ts +27 -0
- package/elements/oj-tab-bar/OjTabBar.js +8 -0
- package/elements/oj-tab-bar/OjTabBar.js.map +1 -0
- package/elements/oj-tab-bar/OjTabBar.ts +12 -0
- package/elements/oj-tab-bar/OjTabBarBase.js +50 -0
- package/elements/oj-tab-bar/OjTabBarBase.js.map +1 -0
- package/elements/oj-tab-bar/OjTabBarBase.ts +200 -0
- package/elements/oj-tab-bar/index.js +17 -0
- package/elements/oj-tab-bar/index.js.map +1 -0
- package/elements/oj-tab-bar/index.ts +27 -0
- package/elements/oj-table/OjTable.js +33 -0
- package/elements/oj-table/OjTable.js.map +1 -0
- package/elements/oj-table/OjTable.ts +52 -0
- package/elements/oj-table/OjTableBase.js +98 -0
- package/elements/oj-table/OjTableBase.js.map +1 -0
- package/elements/oj-table/OjTableBase.ts +702 -0
- package/elements/oj-table/index.js +17 -0
- package/elements/oj-table/index.js.map +1 -0
- package/elements/oj-table/index.ts +27 -0
- package/elements/oj-tag-cloud/OjTagCloud.js +8 -0
- package/elements/oj-tag-cloud/OjTagCloud.js.map +1 -0
- package/elements/oj-tag-cloud/OjTagCloud.ts +12 -0
- package/elements/oj-tag-cloud/OjTagCloudBase.js +68 -0
- package/elements/oj-tag-cloud/OjTagCloudBase.js.map +1 -0
- package/elements/oj-tag-cloud/OjTagCloudBase.ts +318 -0
- package/elements/oj-tag-cloud/index.js +17 -0
- package/elements/oj-tag-cloud/index.js.map +1 -0
- package/elements/oj-tag-cloud/index.ts +27 -0
- package/elements/oj-text-area/OjTextArea.js +10 -0
- package/elements/oj-text-area/OjTextArea.js.map +1 -0
- package/elements/oj-text-area/OjTextArea.ts +14 -0
- package/elements/oj-text-area/OjTextAreaBase.js +95 -0
- package/elements/oj-text-area/OjTextAreaBase.js.map +1 -0
- package/elements/oj-text-area/OjTextAreaBase.ts +365 -0
- package/elements/oj-text-area/index.js +17 -0
- package/elements/oj-text-area/index.js.map +1 -0
- package/elements/oj-text-area/index.ts +27 -0
- package/elements/oj-thematic-map/OjThematicMap.js +8 -0
- package/elements/oj-thematic-map/OjThematicMap.js.map +1 -0
- package/elements/oj-thematic-map/OjThematicMap.ts +12 -0
- package/elements/oj-thematic-map/OjThematicMapBase.js +119 -0
- package/elements/oj-thematic-map/OjThematicMapBase.js.map +1 -0
- package/elements/oj-thematic-map/OjThematicMapBase.ts +777 -0
- package/elements/oj-thematic-map/index.js +17 -0
- package/elements/oj-thematic-map/index.js.map +1 -0
- package/elements/oj-thematic-map/index.ts +27 -0
- package/elements/oj-time-axis/OjTimeAxis.js +8 -0
- package/elements/oj-time-axis/OjTimeAxis.js.map +1 -0
- package/elements/oj-time-axis/OjTimeAxis.ts +12 -0
- package/elements/oj-time-axis/OjTimeAxisBase.js +26 -0
- package/elements/oj-time-axis/OjTimeAxisBase.js.map +1 -0
- package/elements/oj-time-axis/OjTimeAxisBase.ts +176 -0
- package/elements/oj-time-axis/index.js +17 -0
- package/elements/oj-time-axis/index.js.map +1 -0
- package/elements/oj-time-axis/index.ts +27 -0
- package/elements/oj-timeline/OjTimeline.js +8 -0
- package/elements/oj-timeline/OjTimeline.js.map +1 -0
- package/elements/oj-timeline/OjTimeline.ts +12 -0
- package/elements/oj-timeline/OjTimelineBase.js +71 -0
- package/elements/oj-timeline/OjTimelineBase.js.map +1 -0
- package/elements/oj-timeline/OjTimelineBase.ts +715 -0
- package/elements/oj-timeline/index.js +17 -0
- package/elements/oj-timeline/index.js.map +1 -0
- package/elements/oj-timeline/index.ts +27 -0
- package/elements/oj-train/OjTrain.js +8 -0
- package/elements/oj-train/OjTrain.js.map +1 -0
- package/elements/oj-train/OjTrain.ts +12 -0
- package/elements/oj-train/OjTrainBase.js +20 -0
- package/elements/oj-train/OjTrainBase.js.map +1 -0
- package/elements/oj-train/OjTrainBase.ts +72 -0
- package/elements/oj-train/index.js +17 -0
- package/elements/oj-train/index.js.map +1 -0
- package/elements/oj-train/index.ts +27 -0
- package/elements/oj-tree-view/OjTreeView.js +80 -0
- package/elements/oj-tree-view/OjTreeView.js.map +1 -0
- package/elements/oj-tree-view/OjTreeView.ts +117 -0
- package/elements/oj-tree-view/OjTreeViewBase.js +35 -0
- package/elements/oj-tree-view/OjTreeViewBase.js.map +1 -0
- package/elements/oj-tree-view/OjTreeViewBase.ts +131 -0
- package/elements/oj-tree-view/index.js +17 -0
- package/elements/oj-tree-view/index.js.map +1 -0
- package/elements/oj-tree-view/index.ts +27 -0
- package/elements/oj-treemap/OjTreemap.js +8 -0
- package/elements/oj-treemap/OjTreemap.js.map +1 -0
- package/elements/oj-treemap/OjTreemap.ts +12 -0
- package/elements/oj-treemap/OjTreemapBase.js +110 -0
- package/elements/oj-treemap/OjTreemapBase.js.map +1 -0
- package/elements/oj-treemap/OjTreemapBase.ts +594 -0
- package/elements/oj-treemap/index.js +17 -0
- package/elements/oj-treemap/index.js.map +1 -0
- package/elements/oj-treemap/index.ts +27 -0
- package/elements/oj-waterfall-layout/OjWaterfallLayout.js +8 -0
- package/elements/oj-waterfall-layout/OjWaterfallLayout.js.map +1 -0
- package/elements/oj-waterfall-layout/OjWaterfallLayout.ts +12 -0
- package/elements/oj-waterfall-layout/OjWaterfallLayoutBase.js +23 -0
- package/elements/oj-waterfall-layout/OjWaterfallLayoutBase.js.map +1 -0
- package/elements/oj-waterfall-layout/OjWaterfallLayoutBase.ts +87 -0
- package/elements/oj-waterfall-layout/index.js +17 -0
- package/elements/oj-waterfall-layout/index.js.map +1 -0
- package/elements/oj-waterfall-layout/index.ts +27 -0
- package/index.js +164 -0
- package/index.js.map +1 -0
- package/index.ts +440 -0
- package/lib/Expectation.js +189 -0
- package/lib/Expectation.js.map +1 -0
- package/lib/Expectation.ts +272 -0
- package/lib/OjFetch.js +83 -0
- package/lib/OjFetch.js.map +1 -0
- package/lib/OjFetch.ts +158 -0
- package/lib/ScreenshotManager.js +113 -0
- package/lib/ScreenshotManager.js.map +1 -0
- package/lib/ScreenshotManager.ts +195 -0
- package/lib/driver-manager.js +89 -0
- package/lib/driver-manager.js.map +1 -0
- package/lib/driver-manager.ts +330 -0
- package/lib/driver-override.js +120 -0
- package/lib/driver-override.js.map +1 -0
- package/lib/driver-override.ts +255 -0
- package/lib/input-utils.js +24 -0
- package/lib/input-utils.js.map +1 -0
- package/lib/input-utils.ts +50 -0
- package/lib/slot-proxy.js +25 -0
- package/lib/slot-proxy.js.map +1 -0
- package/lib/slot-proxy.ts +61 -0
- package/lib/stale-element.js +29 -0
- package/lib/stale-element.js.map +1 -0
- package/lib/stale-element.ts +44 -0
- package/package.json +19 -0
- package/tsconfig.json +10 -0
|
@@ -0,0 +1,702 @@
|
|
|
1
|
+
import {OjWebElement} from "../";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* This is the base class for OjTable, and is generated from
|
|
5
|
+
* the component metadata. Do not put overrides in here as the
|
|
6
|
+
* contents are meant to be replaced by the generated functions.
|
|
7
|
+
* Put overrides into the component's default class, found in
|
|
8
|
+
* index.ts.
|
|
9
|
+
*/
|
|
10
|
+
export class OjTableBase extends OjWebElement {
|
|
11
|
+
/**
|
|
12
|
+
* Gets the value of "accessibility" property.
|
|
13
|
+
* Accessibility attributes.
|
|
14
|
+
* @return The value of "accessibility" property.
|
|
15
|
+
*/
|
|
16
|
+
public getAccessibility(): Promise<OjTableBase.Accessibility|null> {
|
|
17
|
+
return this.getProperty<OjTableBase.Accessibility|null>("accessibility");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Gets the value of "as" property.
|
|
22
|
+
* An alias for the '$current' context variable passed to the content of the cell template.
|
|
23
|
+
* @return The value of "as" property.
|
|
24
|
+
*/
|
|
25
|
+
public getAs(): Promise<string> {
|
|
26
|
+
return this.getProperty<string>("as");
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Sets the value of "columns" property.
|
|
31
|
+
* An array of column definitions. See the Help documentation for more information.
|
|
32
|
+
* @param columns The value to set for "columns"
|
|
33
|
+
*/
|
|
34
|
+
public changeColumns(columns: Array<OjTableBase.Columns>|null): Promise<void> {
|
|
35
|
+
return this.setProperty<Array<OjTableBase.Columns>|null>("columns", columns);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Gets the value of "columns" property.
|
|
40
|
+
* An array of column definitions. See the Help documentation for more information.
|
|
41
|
+
* @return The value of "columns" property.
|
|
42
|
+
*/
|
|
43
|
+
public getColumns(): Promise<Array<OjTableBase.Columns>|null> {
|
|
44
|
+
return this.getProperty<Array<OjTableBase.Columns>|null>("columns");
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Gets the value of "columnsDefault" property.
|
|
49
|
+
* Default values to apply to all column objects.
|
|
50
|
+
* @return The value of "columnsDefault" property.
|
|
51
|
+
*/
|
|
52
|
+
public getColumnsDefault(): Promise<OjTableBase.ColumnsDefault> {
|
|
53
|
+
return this.getProperty<OjTableBase.ColumnsDefault>("columnsDefault");
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Sets the value of "currentRow" property.
|
|
58
|
+
* Specifies the row that currently has keyboard focus. See the Help documentation for more information.
|
|
59
|
+
* @param currentRow The value to set for "currentRow"
|
|
60
|
+
*/
|
|
61
|
+
public changeCurrentRow(currentRow: object): Promise<void> {
|
|
62
|
+
return this.setProperty<object>("currentRow", currentRow);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Gets the value of "currentRow" property.
|
|
67
|
+
* Specifies the row that currently has keyboard focus. See the Help documentation for more information.
|
|
68
|
+
* @return The value of "currentRow" property.
|
|
69
|
+
*/
|
|
70
|
+
public getCurrentRow(): Promise<object> {
|
|
71
|
+
return this.getProperty<object>("currentRow");
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Gets the value of "data" property.
|
|
76
|
+
* Specifies the data for the table. See the Help documentation for more information.
|
|
77
|
+
* @return The value of "data" property.
|
|
78
|
+
*/
|
|
79
|
+
public getData(): Promise<object|null> {
|
|
80
|
+
return this.getProperty<object|null>("data");
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Gets the value of "display" property.
|
|
85
|
+
* Specifies whether to display this table in list or grid mode. See the Help documentation for more information.
|
|
86
|
+
* @return The value of "display" property.
|
|
87
|
+
*/
|
|
88
|
+
public getDisplay(): Promise<string> {
|
|
89
|
+
return this.getProperty<string>("display");
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Gets the value of "dnd" property.
|
|
94
|
+
* Specifies drag and drop features. See the Help documentation for more information.
|
|
95
|
+
* @return The value of "dnd" property.
|
|
96
|
+
*/
|
|
97
|
+
public getDnd(): Promise<OjTableBase.Dnd> {
|
|
98
|
+
return this.getProperty<OjTableBase.Dnd>("dnd");
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Gets the value of "editMode" property.
|
|
103
|
+
* Specifies if the table is read-only or editable. See the Help documentation for more information.
|
|
104
|
+
* @return The value of "editMode" property.
|
|
105
|
+
*/
|
|
106
|
+
public getEditMode(): Promise<string> {
|
|
107
|
+
return this.getProperty<string>("editMode");
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Sets the value of "editRow" property.
|
|
112
|
+
* Specifies the row that is currently being edited. See the Help documentation for more information.
|
|
113
|
+
* @param editRow The value to set for "editRow"
|
|
114
|
+
*/
|
|
115
|
+
public changeEditRow(editRow: object): Promise<void> {
|
|
116
|
+
return this.setProperty<object>("editRow", editRow);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Gets the value of "editRow" property.
|
|
121
|
+
* Specifies the row that is currently being edited. See the Help documentation for more information.
|
|
122
|
+
* @return The value of "editRow" property.
|
|
123
|
+
*/
|
|
124
|
+
public getEditRow(): Promise<object> {
|
|
125
|
+
return this.getProperty<object>("editRow");
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Gets the value of "firstSelectedRow" property.
|
|
130
|
+
* Read-only property used for retrieving the key and data of the first selected row. See the Help documentation for more information.
|
|
131
|
+
* @return The value of "firstSelectedRow" property.
|
|
132
|
+
*/
|
|
133
|
+
public getFirstSelectedRow(): Promise<OjTableBase.FirstSelectedRow> {
|
|
134
|
+
return this.getProperty<OjTableBase.FirstSelectedRow>("firstSelectedRow");
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Gets the value of "horizontalGridVisible" property.
|
|
139
|
+
* Specifies the visibility of the horizontal gridlines. See the Help documentation for more information.
|
|
140
|
+
* @return The value of "horizontalGridVisible" property.
|
|
141
|
+
*/
|
|
142
|
+
public getHorizontalGridVisible(): Promise<string> {
|
|
143
|
+
return this.getProperty<string>("horizontalGridVisible");
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Gets the value of "layout" property.
|
|
148
|
+
* The column sizing method used for the Table and its columns.
|
|
149
|
+
* @return The value of "layout" property.
|
|
150
|
+
*/
|
|
151
|
+
public getLayout(): Promise<string> {
|
|
152
|
+
return this.getProperty<string>("layout");
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Gets the value of "rowRenderer" property.
|
|
157
|
+
* A function that returns row content. The function takes a context argument, provided by the table. See the Help documentation for more information.
|
|
158
|
+
* @return The value of "rowRenderer" property.
|
|
159
|
+
*/
|
|
160
|
+
public getRowRenderer(): Promise<null|null> {
|
|
161
|
+
return this.getProperty<null|null>("rowRenderer");
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Gets the value of "scrollPolicy" property.
|
|
166
|
+
* Specifies how data are fetched as user scrolls down the table.
|
|
167
|
+
* @return The value of "scrollPolicy" property.
|
|
168
|
+
*/
|
|
169
|
+
public getScrollPolicy(): Promise<string> {
|
|
170
|
+
return this.getProperty<string>("scrollPolicy");
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Gets the value of "scrollPolicyOptions" property.
|
|
175
|
+
* Specifies fetch options for scrolling behaviors that trigger data fetches.
|
|
176
|
+
* @return The value of "scrollPolicyOptions" property.
|
|
177
|
+
*/
|
|
178
|
+
public getScrollPolicyOptions(): Promise<OjTableBase.ScrollPolicyOptions|null> {
|
|
179
|
+
return this.getProperty<OjTableBase.ScrollPolicyOptions|null>("scrollPolicyOptions");
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Sets the value of "scrollPosition" property.
|
|
184
|
+
* Specifies the scroll position of the table. See the Help documentation for more information.
|
|
185
|
+
* @param scrollPosition The value to set for "scrollPosition"
|
|
186
|
+
*/
|
|
187
|
+
public changeScrollPosition(scrollPosition: OjTableBase.ScrollPosition): Promise<void> {
|
|
188
|
+
return this.setProperty<OjTableBase.ScrollPosition>("scrollPosition", scrollPosition);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Gets the value of "scrollPosition" property.
|
|
193
|
+
* Specifies the scroll position of the table. See the Help documentation for more information.
|
|
194
|
+
* @return The value of "scrollPosition" property.
|
|
195
|
+
*/
|
|
196
|
+
public getScrollPosition(): Promise<OjTableBase.ScrollPosition> {
|
|
197
|
+
return this.getProperty<OjTableBase.ScrollPosition>("scrollPosition");
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Gets the value of "scrollToKey" property.
|
|
202
|
+
* Specifies the behavior when Table needs to scroll to a position based on an item key.
|
|
203
|
+
* @return The value of "scrollToKey" property.
|
|
204
|
+
*/
|
|
205
|
+
public getScrollToKey(): Promise<string|null> {
|
|
206
|
+
return this.getProperty<string|null>("scrollToKey");
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Sets the value of "selected" property.
|
|
211
|
+
* Specifies the current selected rows and/or columns in the table. See the Help documentation for more information.
|
|
212
|
+
* @param selected The value to set for "selected"
|
|
213
|
+
*/
|
|
214
|
+
public changeSelected(selected: OjTableBase.Selected): Promise<void> {
|
|
215
|
+
return this.setProperty<OjTableBase.Selected>("selected", selected);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Gets the value of "selected" property.
|
|
220
|
+
* Specifies the current selected rows and/or columns in the table. See the Help documentation for more information.
|
|
221
|
+
* @return The value of "selected" property.
|
|
222
|
+
*/
|
|
223
|
+
public getSelected(): Promise<OjTableBase.Selected> {
|
|
224
|
+
return this.getProperty<OjTableBase.Selected>("selected");
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* Sets the value of "selection" property.
|
|
229
|
+
* Specifies the current selections in the table. See the Help documentation for more information.
|
|
230
|
+
* @param selection The value to set for "selection"
|
|
231
|
+
*/
|
|
232
|
+
public changeSelection(selection: Array<object>): Promise<void> {
|
|
233
|
+
return this.setProperty<Array<object>>("selection", selection);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Gets the value of "selection" property.
|
|
238
|
+
* Specifies the current selections in the table. See the Help documentation for more information.
|
|
239
|
+
* @return The value of "selection" property.
|
|
240
|
+
*/
|
|
241
|
+
public getSelection(): Promise<Array<object>> {
|
|
242
|
+
return this.getProperty<Array<object>>("selection");
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Gets the value of "selectionMode" property.
|
|
247
|
+
* Specifies the row and column selection modes.
|
|
248
|
+
* @return The value of "selectionMode" property.
|
|
249
|
+
*/
|
|
250
|
+
public getSelectionMode(): Promise<unknown|null> {
|
|
251
|
+
return this.getProperty<unknown|null>("selectionMode");
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Gets the value of "selectionRequired" property.
|
|
256
|
+
* Specifies whether selection is required on the Table.
|
|
257
|
+
* @return The value of "selectionRequired" property.
|
|
258
|
+
*/
|
|
259
|
+
public getSelectionRequired(): Promise<boolean> {
|
|
260
|
+
return this.getProperty<boolean>("selectionRequired");
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Gets the value of "translations" property.
|
|
265
|
+
* A collection of translated resources from the translation bundle, or null if this component has no resources.
|
|
266
|
+
* @return The value of "translations" property.
|
|
267
|
+
*/
|
|
268
|
+
public getTranslations(): Promise<OjTableBase.Translations|null> {
|
|
269
|
+
return this.getProperty<OjTableBase.Translations|null>("translations");
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Gets the value of "verticalGridVisible" property.
|
|
274
|
+
* Specifies the visibility of the vertical gridlines. See the Help documentation for more information.
|
|
275
|
+
* @return The value of "verticalGridVisible" property.
|
|
276
|
+
*/
|
|
277
|
+
public getVerticalGridVisible(): Promise<string> {
|
|
278
|
+
return this.getProperty<string>("verticalGridVisible");
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
namespace OjTableBase {
|
|
284
|
+
export interface Accessibility {
|
|
285
|
+
/**
|
|
286
|
+
* Specifies the column ids to be used as the row headers by screen readers. See the Help documentation for more information.
|
|
287
|
+
*/
|
|
288
|
+
"rowHeader": string|Array<string>;
|
|
289
|
+
}
|
|
290
|
+
export interface Columns {
|
|
291
|
+
/**
|
|
292
|
+
* The CSS class to apply to the column cells.
|
|
293
|
+
*/
|
|
294
|
+
"className": string|null;
|
|
295
|
+
/**
|
|
296
|
+
* The data field that this column refers to.
|
|
297
|
+
*/
|
|
298
|
+
"field": string|null;
|
|
299
|
+
/**
|
|
300
|
+
* The CSS class to apply to the footer cell.
|
|
301
|
+
*/
|
|
302
|
+
"footerClassName": string|null;
|
|
303
|
+
/**
|
|
304
|
+
* A function that renders the content of the footer cell. The function takes a context argument, provided by the table. See the Help documentation for more information.
|
|
305
|
+
*/
|
|
306
|
+
"footerRenderer": null|null;
|
|
307
|
+
/**
|
|
308
|
+
* The CSS styling to apply to the footer cell.
|
|
309
|
+
*/
|
|
310
|
+
"footerStyle": string|null;
|
|
311
|
+
/**
|
|
312
|
+
* The slot name used to specify the template for rendering the footer cell. See the Help documentation for more information.
|
|
313
|
+
*/
|
|
314
|
+
"footerTemplate": string|null;
|
|
315
|
+
/**
|
|
316
|
+
* The CSS class to apply to the column header text.
|
|
317
|
+
*/
|
|
318
|
+
"headerClassName": string|null;
|
|
319
|
+
/**
|
|
320
|
+
* A function that renders the content of the header. The function takes a context argument, provided by the table. See the Help documentation for more information.
|
|
321
|
+
*/
|
|
322
|
+
"headerRenderer": null|null;
|
|
323
|
+
/**
|
|
324
|
+
* The CSS styling to apply to the column header text.
|
|
325
|
+
*/
|
|
326
|
+
"headerStyle": string|null;
|
|
327
|
+
/**
|
|
328
|
+
* The slot name used to specify the template for rendering the header cell. See the Help documentation for more information.
|
|
329
|
+
*/
|
|
330
|
+
"headerTemplate": string|null;
|
|
331
|
+
/**
|
|
332
|
+
* The text to display in the column header.
|
|
333
|
+
*/
|
|
334
|
+
"headerText": string|null;
|
|
335
|
+
/**
|
|
336
|
+
* The identifier for the column.
|
|
337
|
+
*/
|
|
338
|
+
"id": string|null;
|
|
339
|
+
/**
|
|
340
|
+
* The maximum width style string of the column. This value is used during initial render only, and does not apply when users resize columns. If a number is provided, pixels will be used as the size unit.
|
|
341
|
+
*/
|
|
342
|
+
"maxWidth": string|number|null;
|
|
343
|
+
/**
|
|
344
|
+
* The minimum width style string of the column. This value is used during initial render only, and does not apply when users resize columns. If a number is provided, pixels will be used as the size unit.
|
|
345
|
+
*/
|
|
346
|
+
"minWidth": string|number|null;
|
|
347
|
+
/**
|
|
348
|
+
* A function that renders the content of the cell. The function takes a context argument, provided by the table. See the Help documentation for more information.
|
|
349
|
+
*/
|
|
350
|
+
"renderer": null|null;
|
|
351
|
+
/**
|
|
352
|
+
* Enable or disable width resizing along the column end headers.
|
|
353
|
+
*/
|
|
354
|
+
"resizable": string;
|
|
355
|
+
/**
|
|
356
|
+
* Specifies the row attribute used for sorting when a sort is invoked on this column. See the Help documentation for more information.
|
|
357
|
+
*/
|
|
358
|
+
"sortProperty": string|null;
|
|
359
|
+
/**
|
|
360
|
+
* Specifies whether a column is sortable. See the Help documentation for more information.
|
|
361
|
+
*/
|
|
362
|
+
"sortable": string;
|
|
363
|
+
/**
|
|
364
|
+
* The CSS styling to apply to the column cells.
|
|
365
|
+
*/
|
|
366
|
+
"style": string|null;
|
|
367
|
+
/**
|
|
368
|
+
* The slot name used to specify the template for rendering the cell. See the Help documentation for more information.
|
|
369
|
+
*/
|
|
370
|
+
"template": string|null;
|
|
371
|
+
/**
|
|
372
|
+
* The sizing weight of the column. This must be a positive number greater than or equal to 1. When the Table's layout attribute is set to fixed, this value is used to determine the relative width of the column compared to the other columns. For example, a column with a weight of 2 will have twice as much space allocated to it as a column with a weight of 1. This value has no effect when the Table's layout attribute is set to contents.
|
|
373
|
+
*/
|
|
374
|
+
"weight": number|null;
|
|
375
|
+
/**
|
|
376
|
+
* The width style string of the column. If a number is provided, pixels will be used as the size unit.
|
|
377
|
+
*/
|
|
378
|
+
"width": string|number|null;
|
|
379
|
+
}
|
|
380
|
+
export interface ColumnsDefault {
|
|
381
|
+
/**
|
|
382
|
+
* The default CSS class for column cells.
|
|
383
|
+
*/
|
|
384
|
+
"className": string|null;
|
|
385
|
+
/**
|
|
386
|
+
* The default data field for the column.
|
|
387
|
+
*/
|
|
388
|
+
"field": string|null;
|
|
389
|
+
/**
|
|
390
|
+
* The default CSS class to apply to the footer cell.
|
|
391
|
+
*/
|
|
392
|
+
"footerClassName": string|null;
|
|
393
|
+
/**
|
|
394
|
+
* A function that renders the content of the footer cell. The function takes a context argument, provided by the table. See the Help documentation for more information.
|
|
395
|
+
*/
|
|
396
|
+
"footerRenderer": null|null;
|
|
397
|
+
/**
|
|
398
|
+
* The default CSS styling to apply to the footer cell.
|
|
399
|
+
*/
|
|
400
|
+
"footerStyle": string|null;
|
|
401
|
+
/**
|
|
402
|
+
* The slot name used to specify the template for rendering the footer cell. See the Help documentation for more information.
|
|
403
|
+
*/
|
|
404
|
+
"footerTemplate": string|null;
|
|
405
|
+
/**
|
|
406
|
+
* The default CSS class to apply to the column header.
|
|
407
|
+
*/
|
|
408
|
+
"headerClassName": string|null;
|
|
409
|
+
/**
|
|
410
|
+
* A function that renders the content of the header. The function takes a context argument, provided by the table. See the Help documentation for more information.
|
|
411
|
+
*/
|
|
412
|
+
"headerRenderer": null|null;
|
|
413
|
+
/**
|
|
414
|
+
* The default CSS styling to apply to the column header.
|
|
415
|
+
*/
|
|
416
|
+
"headerStyle": string|null;
|
|
417
|
+
/**
|
|
418
|
+
* The slot name used to specify the template for rendering the header cell. See the Help documentation for more information.
|
|
419
|
+
*/
|
|
420
|
+
"headerTemplate": string|null;
|
|
421
|
+
/**
|
|
422
|
+
* The default text to display in the column header.
|
|
423
|
+
*/
|
|
424
|
+
"headerText": string|null;
|
|
425
|
+
/**
|
|
426
|
+
* The default maximum width style string of the column. This value is used during initial render only, and does not apply when users resize columns. If a number is provided, pixels will be used as the size unit.
|
|
427
|
+
*/
|
|
428
|
+
"maxWidth": string|number|null;
|
|
429
|
+
/**
|
|
430
|
+
* The default minimum width style string of the column. This value is used during initial render only, and does not apply when users resize columns. If a number is provided, pixels will be used as the size unit.
|
|
431
|
+
*/
|
|
432
|
+
"minWidth": string|number|null;
|
|
433
|
+
/**
|
|
434
|
+
* A function that renders the content of the cell. The function takes a context argument, provided by the table. See the Help documentation for more information.
|
|
435
|
+
*/
|
|
436
|
+
"renderer": null|null;
|
|
437
|
+
/**
|
|
438
|
+
* Enable or disable width resizing along the column end headers.
|
|
439
|
+
*/
|
|
440
|
+
"resizable": string|null;
|
|
441
|
+
/**
|
|
442
|
+
* Specifies the row attribute used for sorting when a sort is invoked on this column. See the Help documentation for more information.
|
|
443
|
+
*/
|
|
444
|
+
"sortProperty": string|null;
|
|
445
|
+
/**
|
|
446
|
+
* Specifies whether a column is sortable. See the Help documentation for more information.
|
|
447
|
+
*/
|
|
448
|
+
"sortable": string|null;
|
|
449
|
+
/**
|
|
450
|
+
* The default CSS styling to apply to the column cells.
|
|
451
|
+
*/
|
|
452
|
+
"style": string|null;
|
|
453
|
+
/**
|
|
454
|
+
* The slot name used to specify the template for rendering the cell. See the Help documentation for more information.
|
|
455
|
+
*/
|
|
456
|
+
"template": string|null;
|
|
457
|
+
/**
|
|
458
|
+
* The default sizing weight of the column. This must be a positive number greater than or equal to 1. When the Table's layout attribute is set to fixed, this value is used to determine the relative width of the column compared to the other columns. For example, a column with a weight of 2 will have twice as much space allocated to it as a column with a weight of 1. This value has no effect when the Table's layout attribute is set to contents.
|
|
459
|
+
*/
|
|
460
|
+
"weight": number|null;
|
|
461
|
+
/**
|
|
462
|
+
* The default width style string of the column. If a number is provided, pixels will be used as the size unit.
|
|
463
|
+
*/
|
|
464
|
+
"width": string|number|null;
|
|
465
|
+
}
|
|
466
|
+
export interface Dnd {
|
|
467
|
+
/**
|
|
468
|
+
* An object that describes drag functionality.
|
|
469
|
+
*/
|
|
470
|
+
"drag": OjTableBase.DndDrag;
|
|
471
|
+
/**
|
|
472
|
+
* An object that describes drop functionality.
|
|
473
|
+
*/
|
|
474
|
+
"drop": OjTableBase.DndDrop;
|
|
475
|
+
/**
|
|
476
|
+
* An object that describes reorder functionality.
|
|
477
|
+
*/
|
|
478
|
+
"reorder": OjTableBase.DndReorder;
|
|
479
|
+
}
|
|
480
|
+
export interface DndDrag {
|
|
481
|
+
/**
|
|
482
|
+
* An object that describes drag functionality for a selected set of rows. See the Help documentation for more information.
|
|
483
|
+
*/
|
|
484
|
+
"rows": OjTableBase.DndDragRows;
|
|
485
|
+
}
|
|
486
|
+
export interface DndDragRows {
|
|
487
|
+
/**
|
|
488
|
+
* The MIME types to use for the dragged data in the dataTransfer object. This can be a string if there is only one type, or an array of strings if multiple types are needed.
|
|
489
|
+
*/
|
|
490
|
+
"dataTypes": string|Array<string>;
|
|
491
|
+
}
|
|
492
|
+
export interface DndDrop {
|
|
493
|
+
/**
|
|
494
|
+
* An object that describes drop functionality for a selected set of columns. See the Help documentation for more information.
|
|
495
|
+
*/
|
|
496
|
+
"columns": OjTableBase.DndDropColumns;
|
|
497
|
+
/**
|
|
498
|
+
* An object that describes drop functionality for a selected set of rows. See the Help documentation for more information.
|
|
499
|
+
*/
|
|
500
|
+
"rows": OjTableBase.DndDropRows;
|
|
501
|
+
}
|
|
502
|
+
export interface DndDropColumns {
|
|
503
|
+
/**
|
|
504
|
+
* A data type or an array of data types this element can accept.
|
|
505
|
+
*/
|
|
506
|
+
"dataTypes": string|Array<string>;
|
|
507
|
+
}
|
|
508
|
+
export interface DndDropRows {
|
|
509
|
+
/**
|
|
510
|
+
* A data type or an array of data types this element can accept.
|
|
511
|
+
*/
|
|
512
|
+
"dataTypes": string|Array<string>;
|
|
513
|
+
}
|
|
514
|
+
export interface DndReorder {
|
|
515
|
+
/**
|
|
516
|
+
* An object that describes reorder functionality for a selected column. See the Help documentation for more information.
|
|
517
|
+
*/
|
|
518
|
+
"columns": string;
|
|
519
|
+
}
|
|
520
|
+
export interface FirstSelectedRow {
|
|
521
|
+
/**
|
|
522
|
+
* The data for first selected row.
|
|
523
|
+
*/
|
|
524
|
+
"data": any;
|
|
525
|
+
/**
|
|
526
|
+
* The key of first selected row.
|
|
527
|
+
*/
|
|
528
|
+
"key": any;
|
|
529
|
+
}
|
|
530
|
+
export interface ScrollPolicyOptions {
|
|
531
|
+
/**
|
|
532
|
+
* The number of data rows to fetch in each block.
|
|
533
|
+
*/
|
|
534
|
+
"fetchSize": number;
|
|
535
|
+
/**
|
|
536
|
+
* The maximum number of rows to display before fetching more data rows will be stopped.
|
|
537
|
+
*/
|
|
538
|
+
"maxCount": number;
|
|
539
|
+
}
|
|
540
|
+
export interface ScrollPosition {
|
|
541
|
+
/**
|
|
542
|
+
* The zero-based index of the cell at the origin of the table.
|
|
543
|
+
*/
|
|
544
|
+
"columnIndex": number;
|
|
545
|
+
/**
|
|
546
|
+
* The key of the column. This corresponds to the identifier of the column specified in columns. If the column does not exists then the value is ignored.
|
|
547
|
+
*/
|
|
548
|
+
"columnKey": any;
|
|
549
|
+
/**
|
|
550
|
+
* The horizontal offset in pixels relative to the column identified by columnKey/columnIndex.
|
|
551
|
+
*/
|
|
552
|
+
"offsetX": number;
|
|
553
|
+
/**
|
|
554
|
+
* The vertical offset in pixels relative to the row identified by rowKey/rowIndex.
|
|
555
|
+
*/
|
|
556
|
+
"offsetY": number;
|
|
557
|
+
/**
|
|
558
|
+
* The zero-based index of the cell at the origin of the table. If scrollPolicy is set to 'loadMoreOnScroll and the row index is greater than maxCount set in scrollPolicyOptions, then it will scroll and fetch until the end of the table is reached and there are no more rows to fetch.
|
|
559
|
+
*/
|
|
560
|
+
"rowIndex": number;
|
|
561
|
+
/**
|
|
562
|
+
* The key of the row. If DataProvider is used for data and the key does not exists in the DataProvider, then the value is ignored. If DataProvider is not used then Table will fetch and scroll until the item is found or the end of the table is reached and there's no more items to fetch.
|
|
563
|
+
*/
|
|
564
|
+
"rowKey": any;
|
|
565
|
+
/**
|
|
566
|
+
* The horizontal position in pixels.
|
|
567
|
+
*/
|
|
568
|
+
"x": number;
|
|
569
|
+
/**
|
|
570
|
+
* The vertical position in pixels.
|
|
571
|
+
*/
|
|
572
|
+
"y": number;
|
|
573
|
+
}
|
|
574
|
+
export interface Selected {
|
|
575
|
+
}
|
|
576
|
+
export interface Translations {
|
|
577
|
+
/**
|
|
578
|
+
* Provides properties to customize the accessible context for the column index.
|
|
579
|
+
*/
|
|
580
|
+
"accessibleColumnContext": string;
|
|
581
|
+
/**
|
|
582
|
+
* Provides properties to customize the accessible context for the column footer index.
|
|
583
|
+
*/
|
|
584
|
+
"accessibleColumnFooterContext": string;
|
|
585
|
+
/**
|
|
586
|
+
* Provides properties to customize the accessible context for the column header index.
|
|
587
|
+
*/
|
|
588
|
+
"accessibleColumnHeaderContext": string;
|
|
589
|
+
/**
|
|
590
|
+
* Provides properties to customize the accessible context for the row index.
|
|
591
|
+
*/
|
|
592
|
+
"accessibleRowContext": string;
|
|
593
|
+
/**
|
|
594
|
+
* Provides properties to customize the accesible text when a header is sorted ascending.
|
|
595
|
+
*/
|
|
596
|
+
"accessibleSortAscending": string;
|
|
597
|
+
/**
|
|
598
|
+
* Provides properties to customize the accesible text when a header is sorted descending.
|
|
599
|
+
*/
|
|
600
|
+
"accessibleSortDescending": string;
|
|
601
|
+
/**
|
|
602
|
+
* Provides properties to customize the accesible text when a header is able to be sorted.
|
|
603
|
+
*/
|
|
604
|
+
"accessibleSortable": string;
|
|
605
|
+
/**
|
|
606
|
+
* Provides properties to customize the accessible context when an item has been selected.
|
|
607
|
+
*/
|
|
608
|
+
"accessibleStateSelected": string;
|
|
609
|
+
/**
|
|
610
|
+
* Label for the bottom selection affordance on touch devices.
|
|
611
|
+
*/
|
|
612
|
+
"labelAccSelectionAffordanceBottom": string;
|
|
613
|
+
/**
|
|
614
|
+
* Label for the top selection affordance on touch devices.
|
|
615
|
+
*/
|
|
616
|
+
"labelAccSelectionAffordanceTop": string;
|
|
617
|
+
/**
|
|
618
|
+
* Provides properties to customize the context menu label for exiting non-contiguous selection.
|
|
619
|
+
*/
|
|
620
|
+
"labelDisableNonContiguousSelection": string;
|
|
621
|
+
/**
|
|
622
|
+
* Edit row label.
|
|
623
|
+
*/
|
|
624
|
+
"labelEditRow": string;
|
|
625
|
+
/**
|
|
626
|
+
* Provides properties to customize the context menu label for entering non-contiguous selection.
|
|
627
|
+
*/
|
|
628
|
+
"labelEnableNonContiguousSelection": string;
|
|
629
|
+
/**
|
|
630
|
+
* Provides properties to customize the context menu label for column resize.
|
|
631
|
+
*/
|
|
632
|
+
"labelResize": string;
|
|
633
|
+
/**
|
|
634
|
+
* Provides properties to customize the resize popup cancel button.
|
|
635
|
+
*/
|
|
636
|
+
"labelResizePopupCancel": string;
|
|
637
|
+
/**
|
|
638
|
+
* Provides properties to customize the resize popup spinner label.
|
|
639
|
+
*/
|
|
640
|
+
"labelResizePopupSpinner": string;
|
|
641
|
+
/**
|
|
642
|
+
* Provides properties to customize the resize popup submit button.
|
|
643
|
+
*/
|
|
644
|
+
"labelResizePopupSubmit": string;
|
|
645
|
+
/**
|
|
646
|
+
* Select and Edit row label.
|
|
647
|
+
*/
|
|
648
|
+
"labelSelectAndEditRow": string;
|
|
649
|
+
/**
|
|
650
|
+
* Select column label.
|
|
651
|
+
*/
|
|
652
|
+
"labelSelectColum": string;
|
|
653
|
+
/**
|
|
654
|
+
* Select row label.
|
|
655
|
+
*/
|
|
656
|
+
"labelSelectRow": string;
|
|
657
|
+
/**
|
|
658
|
+
* Context menu label for sort.
|
|
659
|
+
*/
|
|
660
|
+
"labelSort": string;
|
|
661
|
+
/**
|
|
662
|
+
* Context menu label for sort ascending.
|
|
663
|
+
*/
|
|
664
|
+
"labelSortAsc": string;
|
|
665
|
+
/**
|
|
666
|
+
* Context menu label for sort descending.
|
|
667
|
+
*/
|
|
668
|
+
"labelSortDsc": string;
|
|
669
|
+
/**
|
|
670
|
+
* Column resize input width validation.
|
|
671
|
+
*/
|
|
672
|
+
"msgColumnResizeWidthValidation": string;
|
|
673
|
+
/**
|
|
674
|
+
* Fetching data message.
|
|
675
|
+
*/
|
|
676
|
+
"msgFetchingData": string;
|
|
677
|
+
/**
|
|
678
|
+
* Table initializing message.
|
|
679
|
+
*/
|
|
680
|
+
"msgInitializing": string;
|
|
681
|
+
/**
|
|
682
|
+
* No data to display message.
|
|
683
|
+
*/
|
|
684
|
+
"msgNoData": string;
|
|
685
|
+
/**
|
|
686
|
+
* Warning message detail that maxCount has been reached for scrollPolicy=loadMoreOnScroll.
|
|
687
|
+
*/
|
|
688
|
+
"msgScrollPolicyMaxCountDetail": string;
|
|
689
|
+
/**
|
|
690
|
+
* Warning message summary that maxCount has been reached for scrollPolicy=loadMoreOnScroll.
|
|
691
|
+
*/
|
|
692
|
+
"msgScrollPolicyMaxCountSummary": string;
|
|
693
|
+
/**
|
|
694
|
+
* Sort ascending status notification for accessibility.
|
|
695
|
+
*/
|
|
696
|
+
"msgStatusSortAscending": string;
|
|
697
|
+
/**
|
|
698
|
+
* Sort descending status notification for accessibility.
|
|
699
|
+
*/
|
|
700
|
+
"msgStatusSortDescending": string;
|
|
701
|
+
}
|
|
702
|
+
}
|