@oracle/oraclejet-webdriver 16.1.6 → 17.0.1
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/elements/OjWebElement.js +2 -26
- package/elements/OjWebElement.js.map +1 -1
- package/elements/OjWebElement.ts +6 -40
- package/elements/oj-chart/OjChartBase.ts +8 -0
- package/elements/oj-checkboxset/OjCheckboxset.js +11 -12
- package/elements/oj-checkboxset/OjCheckboxset.js.map +1 -1
- package/elements/oj-checkboxset/OjCheckboxset.ts +14 -14
- package/elements/oj-combobox-many/OjComboboxMany.js +11 -20
- package/elements/oj-combobox-many/OjComboboxMany.js.map +1 -1
- package/elements/oj-combobox-many/OjComboboxMany.ts +14 -22
- package/elements/oj-combobox-one/OjComboboxOne.js +9 -18
- package/elements/oj-combobox-one/OjComboboxOne.js.map +1 -1
- package/elements/oj-combobox-one/OjComboboxOne.ts +12 -20
- package/elements/oj-data-grid/OjDataGridBase.ts +24 -0
- package/elements/oj-date-picker/OjDatePickerBase.js +20 -20
- package/elements/oj-date-picker/OjDatePickerBase.ts +53 -20
- package/elements/oj-date-time-picker/OjDateTimePickerBase.js +16 -16
- package/elements/oj-date-time-picker/OjDateTimePickerBase.ts +48 -16
- package/elements/oj-diagram/OjDiagramBase.ts +4 -0
- package/elements/oj-file-picker/OjFilePicker.js +90 -24
- package/elements/oj-file-picker/OjFilePicker.js.map +1 -1
- package/elements/oj-file-picker/OjFilePicker.ts +101 -27
- package/elements/oj-input-date/OjInputDateBase.js +7 -7
- package/elements/oj-input-date/OjInputDateBase.ts +37 -7
- package/elements/oj-input-date-time/OjInputDateTimeBase.js +7 -7
- package/elements/oj-input-date-time/OjInputDateTimeBase.ts +37 -7
- package/elements/oj-list-view/OjListView.js +6 -6
- package/elements/oj-list-view/OjListView.js.map +1 -1
- package/elements/oj-list-view/OjListView.ts +9 -8
- package/elements/oj-navigation-list/OjNavigationList.js +8 -10
- package/elements/oj-navigation-list/OjNavigationList.js.map +1 -1
- package/elements/oj-navigation-list/OjNavigationList.ts +11 -12
- package/elements/oj-navigation-list/OjNavigationListBase.js +2 -2
- package/elements/oj-navigation-list/OjNavigationListBase.ts +3 -2
- package/elements/oj-popup/OjPopupBase.js +1 -1
- package/elements/oj-popup/OjPopupBase.ts +1 -1
- package/elements/oj-row-expander/OjRowExpanderBase.ts +4 -0
- package/elements/oj-select-many/OjSelectMany.js +11 -20
- package/elements/oj-select-many/OjSelectMany.js.map +1 -1
- package/elements/oj-select-many/OjSelectMany.ts +14 -22
- package/elements/oj-select-one/OjSelectOne.js +9 -17
- package/elements/oj-select-one/OjSelectOne.js.map +1 -1
- package/elements/oj-select-one/OjSelectOne.ts +12 -19
- package/elements/oj-select-single/OjSelectSingle.js +7 -14
- package/elements/oj-select-single/OjSelectSingle.js.map +1 -1
- package/elements/oj-select-single/OjSelectSingle.ts +10 -16
- package/elements/oj-stream-list/OjStreamList.js +28 -33
- package/elements/oj-stream-list/OjStreamList.js.map +1 -1
- package/elements/oj-stream-list/OjStreamList.ts +28 -34
- package/elements/oj-sunburst/OjSunburstBase.ts +8 -0
- package/elements/oj-swipe-actions/OjSwipeActions.js +7 -10
- package/elements/oj-swipe-actions/OjSwipeActions.js.map +1 -1
- package/elements/oj-swipe-actions/OjSwipeActions.ts +11 -15
- package/elements/oj-tab-bar/OjTabBarBase.ts +1 -0
- package/elements/oj-table/OjTable.js +100 -81
- package/elements/oj-table/OjTable.js.map +1 -1
- package/elements/oj-table/OjTable.ts +146 -97
- package/elements/oj-table/OjTableBase.js +9 -0
- package/elements/oj-table/OjTableBase.js.map +1 -1
- package/elements/oj-table/OjTableBase.ts +10 -0
- package/elements/oj-tree-view/OjTreeView.js +25 -29
- package/elements/oj-tree-view/OjTreeView.js.map +1 -1
- package/elements/oj-tree-view/OjTreeView.ts +34 -35
- package/elements/oj-treemap/OjTreemapBase.ts +8 -0
- package/index.js +28 -139
- package/index.js.map +1 -1
- package/index.ts +29 -151
- package/lib/busy-context-utils.js +28 -46
- package/lib/busy-context-utils.js.map +1 -1
- package/lib/busy-context-utils.ts +39 -48
- package/lib/dataprovider-utils.js +24 -28
- package/lib/dataprovider-utils.js.map +1 -1
- package/lib/dataprovider-utils.ts +28 -31
- package/lib/no-require-jet.js +12 -0
- package/lib/no-require-jet.js.map +1 -0
- package/lib/no-require-jet.ts +8 -0
- package/lib/oj-module-proxy.js +113 -0
- package/lib/oj-module-proxy.js.map +1 -0
- package/lib/oj-module-proxy.ts +123 -0
- package/lib/viewmodel-utils.js +99 -0
- package/lib/viewmodel-utils.js.map +1 -0
- package/lib/viewmodel-utils.ts +107 -0
- package/package.json +6 -6
- package/tsconfig.json +2 -1
- package/wdtsdoc/assets/navigation.js +1 -1
- package/wdtsdoc/assets/search.js +1 -1
- package/wdtsdoc/classes/elements.OjAccordion.html +2 -2
- package/wdtsdoc/classes/elements.OjActionCard.html +2 -2
- package/wdtsdoc/classes/elements.OjButton.html +2 -2
- package/wdtsdoc/classes/elements.OjButtonsetMany.html +2 -2
- package/wdtsdoc/classes/elements.OjButtonsetOne.html +2 -2
- package/wdtsdoc/classes/elements.OjChart.html +2 -2
- package/wdtsdoc/classes/elements.OjCheckboxset.html +2 -2
- package/wdtsdoc/classes/elements.OjCollapsible.html +2 -2
- package/wdtsdoc/classes/elements.OjColorPalette.html +2 -2
- package/wdtsdoc/classes/elements.OjColorSpectrum.html +2 -2
- package/wdtsdoc/classes/elements.OjComboboxMany.html +2 -2
- package/wdtsdoc/classes/elements.OjComboboxOne.html +2 -2
- package/wdtsdoc/classes/elements.OjConveyorBelt.html +2 -2
- package/wdtsdoc/classes/elements.OjDataGrid.html +2 -2
- package/wdtsdoc/classes/elements.OjDatePicker.html +67 -49
- package/wdtsdoc/classes/elements.OjDateTimePicker.html +57 -42
- package/wdtsdoc/classes/elements.OjDiagram.html +2 -2
- package/wdtsdoc/classes/elements.OjDialog.html +2 -2
- package/wdtsdoc/classes/elements.OjDrawerLayout.html +2 -2
- package/wdtsdoc/classes/elements.OjDrawerPopup.html +2 -2
- package/wdtsdoc/classes/elements.OjFilePicker.html +11 -2
- package/wdtsdoc/classes/elements.OjFilmStrip.html +2 -2
- package/wdtsdoc/classes/elements.OjGantt.html +2 -2
- package/wdtsdoc/classes/elements.OjIndexer.html +2 -2
- package/wdtsdoc/classes/elements.OjInputDate.html +28 -21
- package/wdtsdoc/classes/elements.OjInputDateTime.html +28 -21
- package/wdtsdoc/classes/elements.OjInputNumber.html +2 -2
- package/wdtsdoc/classes/elements.OjInputPassword.html +2 -2
- package/wdtsdoc/classes/elements.OjInputSearch.html +2 -2
- package/wdtsdoc/classes/elements.OjInputText.html +2 -2
- package/wdtsdoc/classes/elements.OjInputTime.html +2 -2
- package/wdtsdoc/classes/elements.OjLabel.html +2 -2
- package/wdtsdoc/classes/elements.OjLedGauge.html +2 -2
- package/wdtsdoc/classes/elements.OjLegend.html +2 -2
- package/wdtsdoc/classes/elements.OjListView.html +4 -4
- package/wdtsdoc/classes/elements.OjMasonryLayout.html +2 -2
- package/wdtsdoc/classes/elements.OjMenu.html +2 -2
- package/wdtsdoc/classes/elements.OjMenuButton.html +2 -2
- package/wdtsdoc/classes/elements.OjMessage.html +2 -2
- package/wdtsdoc/classes/elements.OjMessageBanner.html +2 -2
- package/wdtsdoc/classes/elements.OjNBox.html +2 -2
- package/wdtsdoc/classes/elements.OjNavigationList.html +14 -12
- package/wdtsdoc/classes/elements.OjPagingControl.html +2 -2
- package/wdtsdoc/classes/elements.OjPictoChart.html +2 -2
- package/wdtsdoc/classes/elements.OjPopup.html +6 -5
- package/wdtsdoc/classes/elements.OjProgress.html +2 -2
- package/wdtsdoc/classes/elements.OjProgressList.html +2 -2
- package/wdtsdoc/classes/elements.OjRadioset.html +2 -2
- package/wdtsdoc/classes/elements.OjRatingGauge.html +2 -2
- package/wdtsdoc/classes/elements.OjRefresher.html +2 -2
- package/wdtsdoc/classes/elements.OjRowExpander.html +2 -2
- package/wdtsdoc/classes/elements.OjSelectMany.html +2 -2
- package/wdtsdoc/classes/elements.OjSelectOne.html +2 -2
- package/wdtsdoc/classes/elements.OjSelectSingle.html +2 -2
- package/wdtsdoc/classes/elements.OjSelector.html +2 -2
- package/wdtsdoc/classes/elements.OjSlider.html +2 -2
- package/wdtsdoc/classes/elements.OjSparkChart.html +2 -2
- package/wdtsdoc/classes/elements.OjStatusMeterGauge.html +2 -2
- package/wdtsdoc/classes/elements.OjStreamList.html +2 -2
- package/wdtsdoc/classes/elements.OjSunburst.html +2 -2
- package/wdtsdoc/classes/elements.OjSwipeActions.html +2 -2
- package/wdtsdoc/classes/elements.OjSwitch.html +2 -2
- package/wdtsdoc/classes/elements.OjTabBar.html +2 -2
- package/wdtsdoc/classes/elements.OjTable.html +27 -9
- package/wdtsdoc/classes/elements.OjTagCloud.html +2 -2
- package/wdtsdoc/classes/elements.OjTextArea.html +2 -2
- package/wdtsdoc/classes/elements.OjThematicMap.html +2 -2
- package/wdtsdoc/classes/elements.OjTimeAxis.html +2 -2
- package/wdtsdoc/classes/elements.OjTimeline.html +2 -2
- package/wdtsdoc/classes/elements.OjTrain.html +2 -2
- package/wdtsdoc/classes/elements.OjTreeView.html +5 -5
- package/wdtsdoc/classes/elements.OjTreemap.html +2 -2
- package/wdtsdoc/classes/elements.OjWaterfallLayout.html +2 -2
- package/wdtsdoc/classes/elements.OjWebElement.html +2 -2
- package/wdtsdoc/classes/index.DriverManager.html +2 -2
- package/wdtsdoc/classes/index.Expectation.html +2 -2
- package/wdtsdoc/functions/elements.ojAccordion-1.html +2 -2
- package/wdtsdoc/functions/elements.ojActionCard-1.html +2 -2
- package/wdtsdoc/functions/elements.ojButton-1.html +2 -2
- package/wdtsdoc/functions/elements.ojButtonsetMany-1.html +2 -2
- package/wdtsdoc/functions/elements.ojButtonsetOne-1.html +2 -2
- package/wdtsdoc/functions/elements.ojChart-1.html +2 -2
- package/wdtsdoc/functions/elements.ojCheckboxset-1.html +2 -2
- package/wdtsdoc/functions/elements.ojCollapsible-1.html +2 -2
- package/wdtsdoc/functions/elements.ojColorPalette-1.html +2 -2
- package/wdtsdoc/functions/elements.ojColorSpectrum-1.html +2 -2
- package/wdtsdoc/functions/elements.ojComboboxMany-1.html +2 -2
- package/wdtsdoc/functions/elements.ojComboboxOne-1.html +2 -2
- package/wdtsdoc/functions/elements.ojConveyorBelt-1.html +2 -2
- package/wdtsdoc/functions/elements.ojDataGrid-1.html +2 -2
- package/wdtsdoc/functions/elements.ojDatePicker-1.html +2 -2
- package/wdtsdoc/functions/elements.ojDateTimePicker-1.html +2 -2
- package/wdtsdoc/functions/elements.ojDiagram-1.html +2 -2
- package/wdtsdoc/functions/elements.ojDialog-1.html +2 -2
- package/wdtsdoc/functions/elements.ojDrawerLayout-1.html +2 -2
- package/wdtsdoc/functions/elements.ojDrawerPopup-1.html +2 -2
- package/wdtsdoc/functions/elements.ojFilePicker-1.html +2 -2
- package/wdtsdoc/functions/elements.ojFilmStrip-1.html +2 -2
- package/wdtsdoc/functions/elements.ojGantt-1.html +2 -2
- package/wdtsdoc/functions/elements.ojIndexer-1.html +2 -2
- package/wdtsdoc/functions/elements.ojInputDate-1.html +2 -2
- package/wdtsdoc/functions/elements.ojInputDateTime-1.html +2 -2
- package/wdtsdoc/functions/elements.ojInputNumber-1.html +2 -2
- package/wdtsdoc/functions/elements.ojInputPassword-1.html +2 -2
- package/wdtsdoc/functions/elements.ojInputSearch-1.html +2 -2
- package/wdtsdoc/functions/elements.ojInputText-1.html +2 -2
- package/wdtsdoc/functions/elements.ojInputTime-1.html +2 -2
- package/wdtsdoc/functions/elements.ojLabel-1.html +2 -2
- package/wdtsdoc/functions/elements.ojLedGauge-1.html +2 -2
- package/wdtsdoc/functions/elements.ojLegend-1.html +2 -2
- package/wdtsdoc/functions/elements.ojListView-1.html +2 -2
- package/wdtsdoc/functions/elements.ojMasonryLayout-1.html +2 -2
- package/wdtsdoc/functions/elements.ojMenu-1.html +2 -2
- package/wdtsdoc/functions/elements.ojMenuButton-1.html +2 -2
- package/wdtsdoc/functions/elements.ojMessage-1.html +2 -2
- package/wdtsdoc/functions/elements.ojMessageBanner-1.html +2 -2
- package/wdtsdoc/functions/elements.ojNBox-1.html +2 -2
- package/wdtsdoc/functions/elements.ojNavigationList-1.html +2 -2
- package/wdtsdoc/functions/elements.ojPagingControl-1.html +2 -2
- package/wdtsdoc/functions/elements.ojPictoChart-1.html +2 -2
- package/wdtsdoc/functions/elements.ojPopup-1.html +2 -2
- package/wdtsdoc/functions/elements.ojProgress-1.html +2 -2
- package/wdtsdoc/functions/elements.ojProgressList-1.html +2 -2
- package/wdtsdoc/functions/elements.ojRadioset-1.html +2 -2
- package/wdtsdoc/functions/elements.ojRatingGauge-1.html +2 -2
- package/wdtsdoc/functions/elements.ojRefresher-1.html +2 -2
- package/wdtsdoc/functions/elements.ojRowExpander-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSelectMany-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSelectOne-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSelectSingle-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSelector-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSlider-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSparkChart-1.html +2 -2
- package/wdtsdoc/functions/elements.ojStatusMeterGauge-1.html +2 -2
- package/wdtsdoc/functions/elements.ojStreamList-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSunburst-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSwipeActions-1.html +2 -2
- package/wdtsdoc/functions/elements.ojSwitch-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTabBar-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTable-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTagCloud-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTextArea-1.html +2 -2
- package/wdtsdoc/functions/elements.ojThematicMap-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTimeAxis-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTimeline-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTrain-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTreeView-1.html +2 -2
- package/wdtsdoc/functions/elements.ojTreemap-1.html +2 -2
- package/wdtsdoc/functions/elements.ojWaterfallLayout-1.html +2 -2
- package/wdtsdoc/functions/elements.ojWebElement-1.html +2 -2
- package/wdtsdoc/functions/index.ScreenshotManager.create.html +2 -2
- package/wdtsdoc/functions/index.ScreenshotManager.get.html +2 -2
- package/wdtsdoc/functions/index.ScreenshotManager.set.html +2 -2
- package/wdtsdoc/functions/index.fetchKeyByFilter.html +2 -2
- package/wdtsdoc/functions/index.register.html +2 -2
- package/wdtsdoc/functions/index.slotProxy-1.html +2 -2
- package/wdtsdoc/index.html +2 -2
- package/wdtsdoc/interfaces/index.DriverLike.html +2 -2
- package/wdtsdoc/interfaces/index.SlotProxy.html +2 -2
- package/wdtsdoc/modules/elements.html +2 -2
- package/wdtsdoc/modules/index.ScreenshotManager.html +2 -2
- package/wdtsdoc/modules/index.html +2 -2
- package/wdtsdoc/variables/index.default.html +7 -4
|
@@ -22,7 +22,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
22
22
|
* Gets the value of <code>autofocus</code> property.
|
|
23
23
|
* Specifies whether the component will get input focus when the page is loaded. See the Help documentation for more information.
|
|
24
24
|
* @return The value of <code>autofocus</code> property.
|
|
25
|
-
*
|
|
25
|
+
* @deprecated Since 17.0.0. This is not recommended for accessibility reasons.
|
|
26
26
|
*/
|
|
27
27
|
getAutofocus() {
|
|
28
28
|
return this.getProperty('autofocus');
|
|
@@ -58,7 +58,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
58
58
|
* Gets the value of <code>dayMetaData</code> property.
|
|
59
59
|
* Specifies additional information to be used when rendering the day. See the Help documentation for more information.
|
|
60
60
|
* @return The value of <code>dayMetaData</code> property.
|
|
61
|
-
*
|
|
61
|
+
* @deprecated Since 17.0.0. Use dayFormatter instead, as it is more flexible.
|
|
62
62
|
*/
|
|
63
63
|
getDayMetaData() {
|
|
64
64
|
return this.getProperty('dayMetaData');
|
|
@@ -67,7 +67,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
67
67
|
* Gets the value of <code>describedBy</code> property.
|
|
68
68
|
* The form component's oj-label automatically sets described-by to make it accessible. It is not meant to be set by application developer.
|
|
69
69
|
* @return The value of <code>describedBy</code> property.
|
|
70
|
-
*
|
|
70
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
71
71
|
*/
|
|
72
72
|
getDescribedBy() {
|
|
73
73
|
return this.getProperty('describedBy');
|
|
@@ -76,16 +76,16 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
76
76
|
* Gets the value of <code>disabled</code> property.
|
|
77
77
|
* Specifies whether the component is disabled. The default is false.
|
|
78
78
|
* @return The value of <code>disabled</code> property.
|
|
79
|
-
*
|
|
79
|
+
* @deprecated Since 17.0.0. Disabled is not supported by the Date Picker UX specification, use readonly property instead.
|
|
80
80
|
*/
|
|
81
81
|
getDisabled() {
|
|
82
82
|
return this.getProperty('disabled');
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* Gets the value of <code>displayOptions</code> property.
|
|
86
|
-
*
|
|
86
|
+
* Form component display options.
|
|
87
87
|
* @return The value of <code>displayOptions</code> property.
|
|
88
|
-
*
|
|
88
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
89
89
|
*/
|
|
90
90
|
getDisplayOptions() {
|
|
91
91
|
return this.getProperty('displayOptions');
|
|
@@ -94,7 +94,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
94
94
|
* Gets the value of <code>help</code> property.
|
|
95
95
|
* Form component help information.
|
|
96
96
|
* @return The value of <code>help</code> property.
|
|
97
|
-
*
|
|
97
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
98
98
|
*/
|
|
99
99
|
getHelp() {
|
|
100
100
|
return this.getProperty('help');
|
|
@@ -103,7 +103,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
103
103
|
* Gets the value of <code>helpHints</code> property.
|
|
104
104
|
* Represents hints for an oj-form-layout element to render help information on the label of the editable component.
|
|
105
105
|
* @return The value of <code>helpHints</code> property.
|
|
106
|
-
*
|
|
106
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
107
107
|
*/
|
|
108
108
|
getHelpHints() {
|
|
109
109
|
return this.getProperty('helpHints');
|
|
@@ -112,7 +112,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
112
112
|
* Gets the value of <code>keyboardEdit</code> property.
|
|
113
113
|
* Determines if keyboard entry of the text is allowed. When the datepicker is inline, the only supported value is "disabled".
|
|
114
114
|
* @return The value of <code>keyboardEdit</code> property.
|
|
115
|
-
*
|
|
115
|
+
* @deprecated Since 17.0.0. This was never intended for oj-date-picker.
|
|
116
116
|
*/
|
|
117
117
|
getKeyboardEdit() {
|
|
118
118
|
return this.getProperty('keyboardEdit');
|
|
@@ -121,7 +121,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
121
121
|
* Gets the value of <code>labelEdge</code> property.
|
|
122
122
|
* Defines how the label of a component is created. See the Help documentation for more information.
|
|
123
123
|
* @return The value of <code>labelEdge</code> property.
|
|
124
|
-
*
|
|
124
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
125
125
|
*/
|
|
126
126
|
getLabelEdge() {
|
|
127
127
|
return this.getProperty('labelEdge');
|
|
@@ -130,7 +130,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
130
130
|
* Gets the value of <code>labelHint</code> property.
|
|
131
131
|
* Represents a hint for oj-form-layout element to render a label on the editable component.
|
|
132
132
|
* @return The value of <code>labelHint</code> property.
|
|
133
|
-
*
|
|
133
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
134
134
|
*/
|
|
135
135
|
getLabelHint() {
|
|
136
136
|
return this.getProperty('labelHint');
|
|
@@ -139,7 +139,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
139
139
|
* Gets the value of <code>labelledBy</code> property.
|
|
140
140
|
* The oj-label sets the labelledBy property programmatically on the form component. See the Help documentation for more information.
|
|
141
141
|
* @return The value of <code>labelledBy</code> property.
|
|
142
|
-
*
|
|
142
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
143
143
|
*/
|
|
144
144
|
getLabelledBy() {
|
|
145
145
|
return this.getProperty('labelledBy');
|
|
@@ -157,7 +157,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
157
157
|
* Sets the value of <code>messagesCustom</code> property.
|
|
158
158
|
* A list of messages added by an application to the component. See the Help documentation for more information.
|
|
159
159
|
* @param messagesCustom The value to set for <code>messagesCustom</code>
|
|
160
|
-
*
|
|
160
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
161
161
|
*/
|
|
162
162
|
changeMessagesCustom(messagesCustom) {
|
|
163
163
|
return this.setProperty('messagesCustom', messagesCustom);
|
|
@@ -166,7 +166,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
166
166
|
* Gets the value of <code>messagesCustom</code> property.
|
|
167
167
|
* A list of messages added by an application to the component. See the Help documentation for more information.
|
|
168
168
|
* @return The value of <code>messagesCustom</code> property.
|
|
169
|
-
*
|
|
169
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
170
170
|
*/
|
|
171
171
|
getMessagesCustom() {
|
|
172
172
|
return this.getProperty('messagesCustom');
|
|
@@ -193,7 +193,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
193
193
|
* Gets the value of <code>pickerAttributes</code> property.
|
|
194
194
|
* Specifies attributes to be set on the picker DOM element when it is launched. See the Help documentation for more information.
|
|
195
195
|
* @return The value of <code>pickerAttributes</code> property.
|
|
196
|
-
*
|
|
196
|
+
* @deprecated Since 17.0.0. Changing the Class or Style property is not recommended, as it leads to an inconsistent UI.
|
|
197
197
|
*/
|
|
198
198
|
getPickerAttributes() {
|
|
199
199
|
return this.getProperty('pickerAttributes');
|
|
@@ -202,7 +202,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
202
202
|
* Gets the value of <code>placeholder</code> property.
|
|
203
203
|
* The placeholder text to set on the element.
|
|
204
204
|
* @return The value of <code>placeholder</code> property.
|
|
205
|
-
*
|
|
205
|
+
* @deprecated Since 17.0.0. oj-date-picker doesn't have a text input, so this was never needed.
|
|
206
206
|
*/
|
|
207
207
|
getPlaceholder() {
|
|
208
208
|
return this.getProperty('placeholder');
|
|
@@ -238,7 +238,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
238
238
|
* Gets the value of <code>required</code> property.
|
|
239
239
|
* Specifies whether the component is required or optional. See the Help documentation for more information.
|
|
240
240
|
* @return The value of <code>required</code> property.
|
|
241
|
-
*
|
|
241
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
242
242
|
*/
|
|
243
243
|
getRequired() {
|
|
244
244
|
return this.getProperty('required');
|
|
@@ -256,7 +256,7 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
256
256
|
* Gets the value of <code>userAssistanceDensity</code> property.
|
|
257
257
|
* Specifies the density of the form component's user assistance presentation.
|
|
258
258
|
* @return The value of <code>userAssistanceDensity</code> property.
|
|
259
|
-
*
|
|
259
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
260
260
|
*/
|
|
261
261
|
getUserAssistanceDensity() {
|
|
262
262
|
return this.getProperty('userAssistanceDensity');
|
|
@@ -265,14 +265,14 @@ class OjDatePickerBase extends __1.OjWebElement {
|
|
|
265
265
|
* Gets the value of <code>valid</code> property.
|
|
266
266
|
* The validity state of the component
|
|
267
267
|
* @return The value of <code>valid</code> property.
|
|
268
|
-
*
|
|
268
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to be validated, display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
269
269
|
*/
|
|
270
270
|
getValid() {
|
|
271
271
|
return this.getProperty('valid');
|
|
272
272
|
}
|
|
273
273
|
/**
|
|
274
274
|
* Gets the value of <code>validators</code> property.
|
|
275
|
-
*
|
|
275
|
+
* Specifies a list of synchronous validators for performing validation by the element. See the Help documentation for more information.
|
|
276
276
|
* @return The value of <code>validators</code> property.
|
|
277
277
|
*
|
|
278
278
|
*/
|
|
@@ -21,7 +21,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
21
21
|
* Gets the value of <code>autofocus</code> property.
|
|
22
22
|
* Specifies whether the component will get input focus when the page is loaded. See the Help documentation for more information.
|
|
23
23
|
* @return The value of <code>autofocus</code> property.
|
|
24
|
-
*
|
|
24
|
+
* @deprecated Since 17.0.0. This is not recommended for accessibility reasons.
|
|
25
25
|
*/
|
|
26
26
|
public getAutofocus(): Promise<boolean> {
|
|
27
27
|
return this.getProperty<boolean>('autofocus');
|
|
@@ -61,7 +61,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
61
61
|
* Gets the value of <code>dayMetaData</code> property.
|
|
62
62
|
* Specifies additional information to be used when rendering the day. See the Help documentation for more information.
|
|
63
63
|
* @return The value of <code>dayMetaData</code> property.
|
|
64
|
-
*
|
|
64
|
+
* @deprecated Since 17.0.0. Use dayFormatter instead, as it is more flexible.
|
|
65
65
|
*/
|
|
66
66
|
public getDayMetaData(): Promise<object> {
|
|
67
67
|
return this.getProperty<object>('dayMetaData');
|
|
@@ -71,7 +71,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
71
71
|
* Gets the value of <code>describedBy</code> property.
|
|
72
72
|
* The form component's oj-label automatically sets described-by to make it accessible. It is not meant to be set by application developer.
|
|
73
73
|
* @return The value of <code>describedBy</code> property.
|
|
74
|
-
*
|
|
74
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
75
75
|
*/
|
|
76
76
|
public getDescribedBy(): Promise<string> {
|
|
77
77
|
return this.getProperty<string>('describedBy');
|
|
@@ -81,7 +81,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
81
81
|
* Gets the value of <code>disabled</code> property.
|
|
82
82
|
* Specifies whether the component is disabled. The default is false.
|
|
83
83
|
* @return The value of <code>disabled</code> property.
|
|
84
|
-
*
|
|
84
|
+
* @deprecated Since 17.0.0. Disabled is not supported by the Date Picker UX specification, use readonly property instead.
|
|
85
85
|
*/
|
|
86
86
|
public getDisabled(): Promise<boolean> {
|
|
87
87
|
return this.getProperty<boolean>('disabled');
|
|
@@ -89,9 +89,9 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
91
|
* Gets the value of <code>displayOptions</code> property.
|
|
92
|
-
*
|
|
92
|
+
* Form component display options.
|
|
93
93
|
* @return The value of <code>displayOptions</code> property.
|
|
94
|
-
*
|
|
94
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
95
95
|
*/
|
|
96
96
|
public getDisplayOptions(): Promise<DisplayOptions> {
|
|
97
97
|
return this.getProperty<DisplayOptions>('displayOptions');
|
|
@@ -101,7 +101,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
101
101
|
* Gets the value of <code>help</code> property.
|
|
102
102
|
* Form component help information.
|
|
103
103
|
* @return The value of <code>help</code> property.
|
|
104
|
-
*
|
|
104
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
105
105
|
*/
|
|
106
106
|
public getHelp(): Promise<Help> {
|
|
107
107
|
return this.getProperty<Help>('help');
|
|
@@ -111,7 +111,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
111
111
|
* Gets the value of <code>helpHints</code> property.
|
|
112
112
|
* Represents hints for an oj-form-layout element to render help information on the label of the editable component.
|
|
113
113
|
* @return The value of <code>helpHints</code> property.
|
|
114
|
-
*
|
|
114
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
115
115
|
*/
|
|
116
116
|
public getHelpHints(): Promise<HelpHints> {
|
|
117
117
|
return this.getProperty<HelpHints>('helpHints');
|
|
@@ -121,7 +121,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
121
121
|
* Gets the value of <code>keyboardEdit</code> property.
|
|
122
122
|
* Determines if keyboard entry of the text is allowed. When the datepicker is inline, the only supported value is "disabled".
|
|
123
123
|
* @return The value of <code>keyboardEdit</code> property.
|
|
124
|
-
*
|
|
124
|
+
* @deprecated Since 17.0.0. This was never intended for oj-date-picker.
|
|
125
125
|
*/
|
|
126
126
|
public getKeyboardEdit(): Promise<string> {
|
|
127
127
|
return this.getProperty<string>('keyboardEdit');
|
|
@@ -131,7 +131,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
131
131
|
* Gets the value of <code>labelEdge</code> property.
|
|
132
132
|
* Defines how the label of a component is created. See the Help documentation for more information.
|
|
133
133
|
* @return The value of <code>labelEdge</code> property.
|
|
134
|
-
*
|
|
134
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
135
135
|
*/
|
|
136
136
|
public getLabelEdge(): Promise<string> {
|
|
137
137
|
return this.getProperty<string>('labelEdge');
|
|
@@ -141,7 +141,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
141
141
|
* Gets the value of <code>labelHint</code> property.
|
|
142
142
|
* Represents a hint for oj-form-layout element to render a label on the editable component.
|
|
143
143
|
* @return The value of <code>labelHint</code> property.
|
|
144
|
-
*
|
|
144
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
145
145
|
*/
|
|
146
146
|
public getLabelHint(): Promise<string> {
|
|
147
147
|
return this.getProperty<string>('labelHint');
|
|
@@ -151,7 +151,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
151
151
|
* Gets the value of <code>labelledBy</code> property.
|
|
152
152
|
* The oj-label sets the labelledBy property programmatically on the form component. See the Help documentation for more information.
|
|
153
153
|
* @return The value of <code>labelledBy</code> property.
|
|
154
|
-
*
|
|
154
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
155
155
|
*/
|
|
156
156
|
public getLabelledBy(): Promise<string | null> {
|
|
157
157
|
return this.getProperty<string | null>('labelledBy');
|
|
@@ -171,7 +171,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
171
171
|
* Sets the value of <code>messagesCustom</code> property.
|
|
172
172
|
* A list of messages added by an application to the component. See the Help documentation for more information.
|
|
173
173
|
* @param messagesCustom The value to set for <code>messagesCustom</code>
|
|
174
|
-
*
|
|
174
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
175
175
|
*/
|
|
176
176
|
public changeMessagesCustom(messagesCustom: Array<object>): Promise<void> {
|
|
177
177
|
return this.setProperty<Array<object>>('messagesCustom', messagesCustom);
|
|
@@ -181,7 +181,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
181
181
|
* Gets the value of <code>messagesCustom</code> property.
|
|
182
182
|
* A list of messages added by an application to the component. See the Help documentation for more information.
|
|
183
183
|
* @return The value of <code>messagesCustom</code> property.
|
|
184
|
-
*
|
|
184
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
185
185
|
*/
|
|
186
186
|
public getMessagesCustom(): Promise<Array<object>> {
|
|
187
187
|
return this.getProperty<Array<object>>('messagesCustom');
|
|
@@ -211,7 +211,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
211
211
|
* Gets the value of <code>pickerAttributes</code> property.
|
|
212
212
|
* Specifies attributes to be set on the picker DOM element when it is launched. See the Help documentation for more information.
|
|
213
213
|
* @return The value of <code>pickerAttributes</code> property.
|
|
214
|
-
*
|
|
214
|
+
* @deprecated Since 17.0.0. Changing the Class or Style property is not recommended, as it leads to an inconsistent UI.
|
|
215
215
|
*/
|
|
216
216
|
public getPickerAttributes(): Promise<PickerAttributes> {
|
|
217
217
|
return this.getProperty<PickerAttributes>('pickerAttributes');
|
|
@@ -221,7 +221,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
221
221
|
* Gets the value of <code>placeholder</code> property.
|
|
222
222
|
* The placeholder text to set on the element.
|
|
223
223
|
* @return The value of <code>placeholder</code> property.
|
|
224
|
-
*
|
|
224
|
+
* @deprecated Since 17.0.0. oj-date-picker doesn't have a text input, so this was never needed.
|
|
225
225
|
*/
|
|
226
226
|
public getPlaceholder(): Promise<string> {
|
|
227
227
|
return this.getProperty<string>('placeholder');
|
|
@@ -261,7 +261,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
261
261
|
* Gets the value of <code>required</code> property.
|
|
262
262
|
* Specifies whether the component is required or optional. See the Help documentation for more information.
|
|
263
263
|
* @return The value of <code>required</code> property.
|
|
264
|
-
*
|
|
264
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
265
265
|
*/
|
|
266
266
|
public getRequired(): Promise<boolean> {
|
|
267
267
|
return this.getProperty<boolean>('required');
|
|
@@ -281,7 +281,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
281
281
|
* Gets the value of <code>userAssistanceDensity</code> property.
|
|
282
282
|
* Specifies the density of the form component's user assistance presentation.
|
|
283
283
|
* @return The value of <code>userAssistanceDensity</code> property.
|
|
284
|
-
*
|
|
284
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
285
285
|
*/
|
|
286
286
|
public getUserAssistanceDensity(): Promise<string> {
|
|
287
287
|
return this.getProperty<string>('userAssistanceDensity');
|
|
@@ -291,7 +291,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
291
291
|
* Gets the value of <code>valid</code> property.
|
|
292
292
|
* The validity state of the component
|
|
293
293
|
* @return The value of <code>valid</code> property.
|
|
294
|
-
*
|
|
294
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to be validated, display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
295
295
|
*/
|
|
296
296
|
public getValid(): Promise<string> {
|
|
297
297
|
return this.getProperty<string>('valid');
|
|
@@ -299,7 +299,7 @@ export class OjDatePickerBase extends OjWebElement {
|
|
|
299
299
|
|
|
300
300
|
/**
|
|
301
301
|
* Gets the value of <code>validators</code> property.
|
|
302
|
-
*
|
|
302
|
+
* Specifies a list of synchronous validators for performing validation by the element. See the Help documentation for more information.
|
|
303
303
|
* @return The value of <code>validators</code> property.
|
|
304
304
|
*
|
|
305
305
|
*/
|
|
@@ -338,6 +338,7 @@ export interface DatePicker {
|
|
|
338
338
|
changeYear: string;
|
|
339
339
|
/**
|
|
340
340
|
* Specifies the position in multiple months at which to show the current month (starting at 0).
|
|
341
|
+
* @deprecated Since 17.0.0. This is required when date-picker.number-of-months > 1, which is now deprecated, so this is no longer needed.
|
|
341
342
|
*/
|
|
342
343
|
currentMonthPos: number;
|
|
343
344
|
/**
|
|
@@ -351,18 +352,22 @@ export interface DatePicker {
|
|
|
351
352
|
footerLayout: string;
|
|
352
353
|
/**
|
|
353
354
|
* Specifies the number of months to show at once. See the Help documentation for more information.
|
|
355
|
+
* @deprecated Since 17.0.0. This is not supported in the Redwood UX specification for Date Picker. See the Range Picker UX specification.
|
|
354
356
|
*/
|
|
355
357
|
numberOfMonths: number;
|
|
356
358
|
/**
|
|
357
359
|
* Specifies when the date picker should be shown.
|
|
360
|
+
* @deprecated Since 17.0.0. This is not supported in the Redwood UX specification.
|
|
358
361
|
*/
|
|
359
362
|
showOn: string;
|
|
360
363
|
/**
|
|
361
364
|
* Specifies the number of months to step backwards and forwards for the Ctrl+Alt+Page Up and Ctrl+Alt+Page Down keystrokes.
|
|
365
|
+
* @deprecated Since 17.0.0. This is not in the Redwood UX specification.
|
|
362
366
|
*/
|
|
363
367
|
stepBigMonths: number;
|
|
364
368
|
/**
|
|
365
369
|
* Specifies how the prev and next keys will step backwards and forwards through the months. See the Help documentation for more information.
|
|
370
|
+
* @deprecated Since 17.0.0. This is not in the Redwood UX specification.
|
|
366
371
|
*/
|
|
367
372
|
stepMonths: string | number;
|
|
368
373
|
/**
|
|
@@ -371,6 +376,7 @@ export interface DatePicker {
|
|
|
371
376
|
weekDisplay: string;
|
|
372
377
|
/**
|
|
373
378
|
* Specifies the range of years displayed in the year drop-down. See the Help documentation for more information.
|
|
379
|
+
* @deprecated Since 17.0.0. This is not in the Redwood UX specification. The 'min' and 'max' properties should be used instead.
|
|
374
380
|
*/
|
|
375
381
|
yearRange: string;
|
|
376
382
|
}
|
|
@@ -396,22 +402,26 @@ export interface DisplayOptions {
|
|
|
396
402
|
export interface Help {
|
|
397
403
|
/**
|
|
398
404
|
* Represents advisory information for the component, such as would be appropriate for a tooltip.
|
|
405
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
399
406
|
*/
|
|
400
407
|
instruction: string;
|
|
401
408
|
}
|
|
402
409
|
export interface HelpHints {
|
|
403
410
|
/**
|
|
404
411
|
* Hint for help definition text associated with the label.
|
|
412
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
405
413
|
*/
|
|
406
414
|
definition: string;
|
|
407
415
|
/**
|
|
408
416
|
* Help source URL associated with the component.
|
|
417
|
+
* @deprecated Since 17.0.0. The oj-date-picker is used internally by the input date component and is not meant to display messages, be labelled, or be in a form layout by itself. Per the Redwood UX specification, the oj-date-picker is not intended to be a form component.
|
|
409
418
|
*/
|
|
410
419
|
source: string;
|
|
411
420
|
}
|
|
412
421
|
export interface PickerAttributes {
|
|
413
422
|
/**
|
|
414
423
|
*
|
|
424
|
+
* @deprecated Since 17.0.0. We are recommending not to change the Class property of pickerAttribute as it leads to an inconsistent UI.
|
|
415
425
|
*/
|
|
416
426
|
class: string;
|
|
417
427
|
/**
|
|
@@ -423,14 +433,17 @@ export interface PickerAttributes {
|
|
|
423
433
|
export interface Translations {
|
|
424
434
|
/**
|
|
425
435
|
* Message to announce to AT via aria-live when the length.max is exceeded.
|
|
436
|
+
* @deprecated Since 17.0.0. This is not supported by the component.
|
|
426
437
|
*/
|
|
427
438
|
accessibleMaxLengthExceeded: string;
|
|
428
439
|
/**
|
|
429
440
|
* Message to annnouce to AT via aria-live for the remaining character count.
|
|
441
|
+
* @deprecated Since 17.0.0. This is not supported by the component.
|
|
430
442
|
*/
|
|
431
443
|
accessibleMaxLengthRemaining: string;
|
|
432
444
|
/**
|
|
433
445
|
* The text to display for the current day link.
|
|
446
|
+
* @deprecated Since 17.0.0. The Redwood UX specification does not allow this to be configurable.
|
|
434
447
|
*/
|
|
435
448
|
currentText: string;
|
|
436
449
|
/**
|
|
@@ -443,14 +456,17 @@ export interface Translations {
|
|
|
443
456
|
dateTimeRange: TranslationsDateTimeRange;
|
|
444
457
|
/**
|
|
445
458
|
* The text to display for the next month link.
|
|
459
|
+
* @deprecated Since 17.0.0. The Redwood UX specification does not allow this to be configurable.
|
|
446
460
|
*/
|
|
447
461
|
nextText: string;
|
|
448
462
|
/**
|
|
449
463
|
* The text to display for the previous month link.
|
|
464
|
+
* @deprecated Since 17.0.0. The Redwood UX specification does not allow this to be configurable.
|
|
450
465
|
*/
|
|
451
466
|
prevText: string;
|
|
452
467
|
/**
|
|
453
468
|
* Provides properties to customize the message text used by the implicit regexp validator associated to the InputText and TextArea components.
|
|
469
|
+
* @deprecated Since 17.0.0. This is not supported by the component.
|
|
454
470
|
*/
|
|
455
471
|
regexp: TranslationsRegexp;
|
|
456
472
|
/**
|
|
@@ -459,28 +475,34 @@ export interface Translations {
|
|
|
459
475
|
required: TranslationsRequired;
|
|
460
476
|
/**
|
|
461
477
|
* Tooltip text for the calendar icon.
|
|
478
|
+
* @deprecated Since 17.0.0. This is not configurable per component instance in the Redwood UX specification.
|
|
462
479
|
*/
|
|
463
480
|
tooltipCalendar: string;
|
|
464
481
|
/**
|
|
465
482
|
* Tooltip text for the calendar icon when the component is disabled.
|
|
483
|
+
* @deprecated Since 17.0.0. This is not configurable per component instance in the Redwood UX specification.
|
|
466
484
|
*/
|
|
467
485
|
tooltipCalendarDisabled: string;
|
|
468
486
|
/**
|
|
469
487
|
* Tooltip text for the calendar + time icon.
|
|
488
|
+
* @deprecated Since 17.0.0. This is not configurable per component instance in the Redwood UX specification.
|
|
470
489
|
*/
|
|
471
490
|
tooltipCalendarTime: string;
|
|
472
491
|
/**
|
|
473
492
|
* Tooltip text for the calendar + time icon when the component is disabled.
|
|
493
|
+
* @deprecated Since 17.0.0. This is not configurable per component instance in the Redwood UX specification.
|
|
474
494
|
*/
|
|
475
495
|
tooltipCalendarTimeDisabled: string;
|
|
476
496
|
/**
|
|
477
497
|
* The text to display for the week of the year column heading.
|
|
498
|
+
* @deprecated Since 17.0.0. The Redwood UX specification does not allow this to be configurable.
|
|
478
499
|
*/
|
|
479
500
|
weekHeader: string;
|
|
480
501
|
}
|
|
481
502
|
export interface TranslationsDateRestriction {
|
|
482
503
|
/**
|
|
483
504
|
* Hint text used by the implicit date restriction validator associated to the InputDateTime and InputDate components.
|
|
505
|
+
* @deprecated Since 17.0.0. Please use help-hints instead.
|
|
484
506
|
*/
|
|
485
507
|
hint: string;
|
|
486
508
|
/**
|
|
@@ -489,12 +511,14 @@ export interface TranslationsDateRestriction {
|
|
|
489
511
|
messageDetail: string;
|
|
490
512
|
/**
|
|
491
513
|
* Message summary for the implicit date restriction validator associated to the InputDateTime and InputDate components.
|
|
514
|
+
* @deprecated Since 17.0.0. This is not supported in the Redwood UX specification.
|
|
492
515
|
*/
|
|
493
516
|
messageSummary: string;
|
|
494
517
|
}
|
|
495
518
|
export interface TranslationsDateTimeRange {
|
|
496
519
|
/**
|
|
497
520
|
* Provides properties to customize the hint text used by the implicit datetime range validator associated to the InputDateTime, InputDate, and InputTime components.
|
|
521
|
+
* @deprecated Since 17.0.0. Please use help-hints instead.
|
|
498
522
|
*/
|
|
499
523
|
hint: TranslationsDateTimeRangeHint;
|
|
500
524
|
/**
|
|
@@ -503,20 +527,24 @@ export interface TranslationsDateTimeRange {
|
|
|
503
527
|
messageDetail: TranslationsDateTimeRangeMessageDetail;
|
|
504
528
|
/**
|
|
505
529
|
* Provides properties to customize the error message summary text used by the implicit datetime range validator associated to the InputDateTime, InputDate, and InputTime components.
|
|
530
|
+
* @deprecated Since 17.0.0. This is not supported in the Redwood UX specification.
|
|
506
531
|
*/
|
|
507
532
|
messageSummary: TranslationsDateTimeRangeMessageSummary;
|
|
508
533
|
}
|
|
509
534
|
export interface TranslationsDateTimeRangeHint {
|
|
510
535
|
/**
|
|
511
536
|
* Hint text used by the implicit datetime range validator associated to the InputDateTime, InputDate, and InputTime components. hint.inRange is shown when both min and max are set, and is used to tell the user the allowed number range.
|
|
537
|
+
* @deprecated Since 17.0.0. Please use help-hints instead.
|
|
512
538
|
*/
|
|
513
539
|
inRange: string;
|
|
514
540
|
/**
|
|
515
541
|
* Hint text used by the implicit datetime range validator associated to the InputDateTime, InputDate, and InputTime components. hint.max is shown when max is set and min is not set, and is used to tell the user the allowed maximum.
|
|
542
|
+
* @deprecated Since 17.0.0. Please use help-hints instead.
|
|
516
543
|
*/
|
|
517
544
|
max: string;
|
|
518
545
|
/**
|
|
519
546
|
* Hint text used by the implicit datetime range validator associated to the InputDateTime, InputDate, and InputTime components. hint.min is shown when min is set and max is not set, and is used to tell the user the allowed minimum.
|
|
547
|
+
* @deprecated Since 17.0.0. Please use help-hints instead.
|
|
520
548
|
*/
|
|
521
549
|
min: string;
|
|
522
550
|
}
|
|
@@ -533,26 +561,31 @@ export interface TranslationsDateTimeRangeMessageDetail {
|
|
|
533
561
|
export interface TranslationsDateTimeRangeMessageSummary {
|
|
534
562
|
/**
|
|
535
563
|
* Error message summary text used by the implicit datetime range validator associated to the InputDateTime, InputDate, and InputTime components. messageSummary.rangeOverflow is shown when max is set, and the value is greater than the maximum.
|
|
564
|
+
* @deprecated Since 17.0.0. This is not supported in the Redwood UX specification.
|
|
536
565
|
*/
|
|
537
566
|
rangeOverflow: string;
|
|
538
567
|
/**
|
|
539
568
|
* Error message summary text used by the implicit datetime range validator associated to the InputDateTime, InputDate, and InputTime components. messageSummary.rangeUnderflow is shown when min is set, and the value is less than the minimum.
|
|
569
|
+
* @deprecated Since 17.0.0. This is not supported in the Redwood UX specification.
|
|
540
570
|
*/
|
|
541
571
|
rangeUnderflow: string;
|
|
542
572
|
}
|
|
543
573
|
export interface TranslationsRegexp {
|
|
544
574
|
/**
|
|
545
575
|
* Provides properties to customize the error message detail used by the implicit regexp validator associated to the InputText and TextArea components.
|
|
576
|
+
* @deprecated Since 17.0.0. This is not supported by the component.
|
|
546
577
|
*/
|
|
547
578
|
messageDetail: string;
|
|
548
579
|
/**
|
|
549
580
|
* Provides properties to customize the error message summary used by the implicit regexp validator associated to the InputText and TextArea components.
|
|
581
|
+
* @deprecated Since 17.0.0. This is not supported by the component.
|
|
550
582
|
*/
|
|
551
583
|
messageSummary: string;
|
|
552
584
|
}
|
|
553
585
|
export interface TranslationsRequired {
|
|
554
586
|
/**
|
|
555
587
|
* Hint text used by required validation error.
|
|
588
|
+
* @deprecated Since 17.0.0. Please use help-hints instead.
|
|
556
589
|
*/
|
|
557
590
|
hint: string;
|
|
558
591
|
/**
|