@rc-component/trigger 1.16.0 → 1.16.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/es/interface.d.ts CHANGED
@@ -12,6 +12,10 @@ export interface AlignType {
12
12
  * Such as ['tr','cc'], align top right point of source node with center point of target node.
13
13
  * Point can be 't'(top), 'b'(bottom), 'c'(center), 'l'(left), 'r'(right) */
14
14
  points?: (string | AlignPoint)[];
15
+ /**
16
+ * @private Do not use in your production code
17
+ */
18
+ _experimental?: Record<string, any>;
15
19
  /**
16
20
  * offset source node by offset[0] in x and offset[1] in y.
17
21
  * If offset contains percentage string value, it is relative to sourceNode region.
@@ -12,6 +12,10 @@ export interface AlignType {
12
12
  * Such as ['tr','cc'], align top right point of source node with center point of target node.
13
13
  * Point can be 't'(top), 'b'(bottom), 'c'(center), 'l'(left), 'r'(right) */
14
14
  points?: (string | AlignPoint)[];
15
+ /**
16
+ * @private Do not use in your production code
17
+ */
18
+ _experimental?: Record<string, any>;
15
19
  /**
16
20
  * offset source node by offset[0] in x and offset[1] in y.
17
21
  * If offset contains percentage string value, it is relative to sourceNode region.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rc-component/trigger",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "description": "base abstract trigger component for react",
5
5
  "engines": {
6
6
  "node": ">=8.x"