@oracle/oraclejet-webdriver 12.0.4 → 12.1.2

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.
@@ -791,7 +791,7 @@ export interface Translations {
791
791
  */
792
792
  "labelSortRowAsc": string;
793
793
  /**
794
- * Action menu item in the row context menu to sort column in descending order.
794
+ * Action menu item in the row context menu to sort row in descending order.
795
795
  */
796
796
  "labelSortRowDsc": string;
797
797
  /**
@@ -15,12 +15,21 @@ class OjDrawerLayoutBase extends __1.OjWebElement {
15
15
  getEndOpened() {
16
16
  return this.getProperty('endOpened');
17
17
  }
18
+ changeBottomOpened(bottomOpened) {
19
+ return this.setProperty('bottomOpened', bottomOpened);
20
+ }
21
+ getBottomOpened() {
22
+ return this.getProperty('bottomOpened');
23
+ }
18
24
  getStartDisplay() {
19
25
  return this.getProperty('startDisplay');
20
26
  }
21
27
  getEndDisplay() {
22
28
  return this.getProperty('endDisplay');
23
29
  }
30
+ getBottomDisplay() {
31
+ return this.getProperty('bottomDisplay');
32
+ }
24
33
  }
25
34
  exports.OjDrawerLayoutBase = OjDrawerLayoutBase;
26
35
  //# sourceMappingURL=OjDrawerLayoutBase.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"OjDrawerLayoutBase.js","sourceRoot":"","sources":["OjDrawerLayoutBase.ts"],"names":[],"mappings":";;;AAAA,2BAAmC;AASnC,MAAa,kBAAmB,SAAQ,gBAAY;IAO3C,iBAAiB,CAAC,WAAoB;QAC3C,OAAO,IAAI,CAAC,WAAW,CAAU,aAAa,EAAE,WAAW,CAAC,CAAC;IAC/D,CAAC;IAQM,cAAc;QACnB,OAAO,IAAI,CAAC,WAAW,CAAU,aAAa,CAAC,CAAC;IAClD,CAAC;IAQM,eAAe,CAAC,SAAkB;QACvC,OAAO,IAAI,CAAC,WAAW,CAAU,WAAW,EAAE,SAAS,CAAC,CAAC;IAC3D,CAAC;IAQM,YAAY;QACjB,OAAO,IAAI,CAAC,WAAW,CAAU,WAAW,CAAC,CAAC;IAChD,CAAC;IAQM,eAAe;QACpB,OAAO,IAAI,CAAC,WAAW,CAAS,cAAc,CAAC,CAAC;IAClD,CAAC;IAQM,aAAa;QAClB,OAAO,IAAI,CAAC,WAAW,CAAS,YAAY,CAAC,CAAC;IAChD,CAAC;CAEF;AA7DD,gDA6DC"}
1
+ {"version":3,"file":"OjDrawerLayoutBase.js","sourceRoot":"","sources":["OjDrawerLayoutBase.ts"],"names":[],"mappings":";;;AAAA,2BAAmC;AASnC,MAAa,kBAAmB,SAAQ,gBAAY;IAO3C,iBAAiB,CAAC,WAAoB;QAC3C,OAAO,IAAI,CAAC,WAAW,CAAU,aAAa,EAAE,WAAW,CAAC,CAAC;IAC/D,CAAC;IAQM,cAAc;QACnB,OAAO,IAAI,CAAC,WAAW,CAAU,aAAa,CAAC,CAAC;IAClD,CAAC;IAQM,eAAe,CAAC,SAAkB;QACvC,OAAO,IAAI,CAAC,WAAW,CAAU,WAAW,EAAE,SAAS,CAAC,CAAC;IAC3D,CAAC;IAQM,YAAY;QACjB,OAAO,IAAI,CAAC,WAAW,CAAU,WAAW,CAAC,CAAC;IAChD,CAAC;IAQM,kBAAkB,CAAC,YAAqB;QAC7C,OAAO,IAAI,CAAC,WAAW,CAAU,cAAc,EAAE,YAAY,CAAC,CAAC;IACjE,CAAC;IAQM,eAAe;QACpB,OAAO,IAAI,CAAC,WAAW,CAAU,cAAc,CAAC,CAAC;IACnD,CAAC;IAQM,eAAe;QACpB,OAAO,IAAI,CAAC,WAAW,CAAS,cAAc,CAAC,CAAC;IAClD,CAAC;IAQM,aAAa;QAClB,OAAO,IAAI,CAAC,WAAW,CAAS,YAAY,CAAC,CAAC;IAChD,CAAC;IAQM,gBAAgB;QACrB,OAAO,IAAI,CAAC,WAAW,CAAS,eAAe,CAAC,CAAC;IACnD,CAAC;CAEF;AA3FD,gDA2FC"}
@@ -48,6 +48,26 @@ export class OjDrawerLayoutBase extends OjWebElement {
48
48
  return this.getProperty<boolean>('endOpened');
49
49
  }
50
50
 
51
+ /**
52
+ * Sets the value of <code>bottomOpened</code> property.
53
+ * Specifies the 'opened' state of the Bottom drawer.
54
+ * @param bottomOpened The value to set for <code>bottomOpened</code>
55
+ *
56
+ */
57
+ public changeBottomOpened(bottomOpened: boolean): Promise<void> {
58
+ return this.setProperty<boolean>('bottomOpened', bottomOpened);
59
+ }
60
+
61
+ /**
62
+ * Gets the value of <code>bottomOpened</code> property.
63
+ * Specifies the 'opened' state of the Bottom drawer.
64
+ * @return The value of <code>bottomOpened</code> property.
65
+ *
66
+ */
67
+ public getBottomOpened(): Promise<boolean> {
68
+ return this.getProperty<boolean>('bottomOpened');
69
+ }
70
+
51
71
  /**
52
72
  * Gets the value of <code>startDisplay</code> property.
53
73
  * Specifies the display mode of the Start drawer.
@@ -68,5 +88,15 @@ export class OjDrawerLayoutBase extends OjWebElement {
68
88
  return this.getProperty<string>('endDisplay');
69
89
  }
70
90
 
91
+ /**
92
+ * Gets the value of <code>bottomDisplay</code> property.
93
+ * Specifies the display mode of the Bottom drawer.
94
+ * @return The value of <code>bottomDisplay</code> property.
95
+ *
96
+ */
97
+ public getBottomDisplay(): Promise<string> {
98
+ return this.getProperty<string>('bottomDisplay');
99
+ }
100
+
71
101
  }
72
102
 
@@ -32,7 +32,7 @@ export class OjLedGaugeBase extends OjWebElement {
32
32
  * Gets the value of <code>label</code> property.
33
33
  * An object defining the label.
34
34
  * @return The value of <code>label</code> property.
35
- *
35
+ * @deprecated Since 12.1.0. This attribute is deprecated. Use metric-label instead.
36
36
  */
37
37
  public getLabel(): Promise<Label> {
38
38
  return this.getProperty<Label>('label');
@@ -192,7 +192,7 @@ export class OjLedGaugeBase extends OjWebElement {
192
192
  * Gets the value of <code>visualEffects</code> property.
193
193
  * Defines whether the theme specific visual effects such as overlays and gradients are applied to the gauge.
194
194
  * @return The value of <code>visualEffects</code> property.
195
- *
195
+ * @deprecated Since 12.1.0. Overlays and gradients are not supported in Redwood theme and are not recommended. As such, this attribute is deprecated.
196
196
  */
197
197
  public getVisualEffects(): Promise<string> {
198
198
  return this.getProperty<string>('visualEffects');
@@ -152,7 +152,7 @@ export class OjLegendBase extends OjWebElement {
152
152
  * Gets the value of <code>scrolling</code> property.
153
153
  * Defines whether scrolling is enabled for the legend.
154
154
  * @return The value of <code>scrolling</code> property.
155
- *
155
+ * @deprecated Since 12.1.0. Setting scrolling to off is not supported in Redwood theme and it is not recommended. As such, this attribute is deprecated.
156
156
  */
157
157
  public getScrolling(): Promise<string> {
158
158
  return this.getProperty<string>('scrolling');
@@ -358,6 +358,10 @@ export interface Translations {
358
358
  * Provides properties to customize the context menu paste before label.
359
359
  */
360
360
  "labelPasteBefore": string;
361
+ /**
362
+ * Provides properties to customize the message text used by ListView when all items are fetched.
363
+ */
364
+ "msgFetchCompleted": string;
361
365
  /**
362
366
  * Provides properties to customize the message text used by ListView when waiting for data.
363
367
  */
@@ -242,7 +242,7 @@ export class OjRatingGaugeBase extends OjWebElement {
242
242
  * Gets the value of <code>visualEffects</code> property.
243
243
  * Defines whether theme specific visual effects such as overlays and gradients are applied to the gauge.
244
244
  * @return The value of <code>visualEffects</code> property.
245
- *
245
+ * @deprecated Since 12.1.0. Overlays and gradients are not supported in Redwood theme and are not recommended. As such, this attribute is deprecated.
246
246
  */
247
247
  public getVisualEffects(): Promise<string> {
248
248
  return this.getProperty<string>('visualEffects');
@@ -122,7 +122,7 @@ export class OjStatusMeterGaugeBase extends OjWebElement {
122
122
  * Gets the value of <code>label</code> property.
123
123
  * An object defining the label.
124
124
  * @return The value of <code>label</code> property.
125
- *
125
+ * @deprecated Since 12.1.0. This attribute is deprecated. Use metric-label instead.
126
126
  */
127
127
  public getLabel(): Promise<Label> {
128
128
  return this.getProperty<Label>('label');
@@ -342,7 +342,7 @@ export class OjStatusMeterGaugeBase extends OjWebElement {
342
342
  * Gets the value of <code>visualEffects</code> property.
343
343
  * Defines whether the theme specific visual effects such as overlays and gradients are applied to the gauge.
344
344
  * @return The value of <code>visualEffects</code> property.
345
- *
345
+ * @deprecated Since 12.1.0. Overlays and gradients are not supported in Redwood theme and are not recommended. As such, this attribute is deprecated.
346
346
  */
347
347
  public getVisualEffects(): Promise<string> {
348
348
  return this.getProperty<string>('visualEffects');
@@ -385,7 +385,7 @@ export interface Columns {
385
385
  */
386
386
  "headerText": string|null;
387
387
  /**
388
- * The identifier for the column.
388
+ * The identifier for the column. This property is required when column selection is enabled.
389
389
  */
390
390
  "id": string|null;
391
391
  /**
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@oracle/oraclejet-webdriver",
3
- "version": "12.0.4",
3
+ "version": "12.1.2",
4
4
  "description": "Oracle JET WebDriverJS WebElements",
5
5
  "config": {
6
- "revision": "2022-05-18_10-36-51"
6
+ "revision": "2022-05-18_10-35-23"
7
7
  },
8
8
  "dependencies": {},
9
9
  "devDependencies": {