|
|
@ -128,6 +128,28 @@ Get the drag mode of the component. |
|
|
|
|
|
|
|
|
Returns **[String][1]** Drag mode value, options: `'absolute'` | `'translate'` | `''` |
|
|
Returns **[String][1]** Drag mode value, options: `'absolute'` | `'translate'` | `''` |
|
|
|
|
|
|
|
|
|
|
|
## setSymbolOverride |
|
|
|
|
|
|
|
|
|
|
|
Set symbol override. |
|
|
|
|
|
By setting override to `true`, none of its property changes will be propagated to relative symbols. |
|
|
|
|
|
By setting override to specific properties, changes of those properties will be skipped from propagation. |
|
|
|
|
|
|
|
|
|
|
|
### Parameters |
|
|
|
|
|
|
|
|
|
|
|
* `value` **([Boolean][3] | [String][1] | [Array][5]<[String][1]>)** |
|
|
|
|
|
|
|
|
|
|
|
### Examples |
|
|
|
|
|
|
|
|
|
|
|
```javascript |
|
|
|
|
|
component.setSymbolOverride(['children', 'classes']); |
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
## getSymbolOverride |
|
|
|
|
|
|
|
|
|
|
|
Get symbol override value. |
|
|
|
|
|
|
|
|
|
|
|
Returns **([Boolean][3] | [Array][5]<[String][1]>)** |
|
|
|
|
|
|
|
|
## find |
|
|
## find |
|
|
|
|
|
|
|
|
Find inner components by query string. |
|
|
Find inner components by query string. |
|
|
@ -238,7 +260,7 @@ Update attributes of the component |
|
|
### Parameters |
|
|
### Parameters |
|
|
|
|
|
|
|
|
* `attrs` **[Object][2]** Key value attributes |
|
|
* `attrs` **[Object][2]** Key value attributes |
|
|
* `opts` **SetOptions** (optional, default `{}`) |
|
|
* `opts` **SetAttrOptions** (optional, default `{}`) |
|
|
* `options` **[Object][2]** Options for the model update |
|
|
* `options` **[Object][2]** Options for the model update |
|
|
|
|
|
|
|
|
### Examples |
|
|
### Examples |
|
|
@ -256,7 +278,7 @@ Add attributes to the component |
|
|
### Parameters |
|
|
### Parameters |
|
|
|
|
|
|
|
|
* `attrs` **[Object][2]** Key value attributes |
|
|
* `attrs` **[Object][2]** Key value attributes |
|
|
* `opts` **SetOptions** (optional, default `{}`) |
|
|
* `opts` **SetAttrOptions** (optional, default `{}`) |
|
|
* `options` **[Object][2]** Options for the model update |
|
|
* `options` **[Object][2]** Options for the model update |
|
|
|
|
|
|
|
|
### Examples |
|
|
### Examples |
|
|
@ -304,7 +326,7 @@ Set the style on the component |
|
|
### Parameters |
|
|
### Parameters |
|
|
|
|
|
|
|
|
* `prop` **[Object][2]** Key value style object (optional, default `{}`) |
|
|
* `prop` **[Object][2]** Key value style object (optional, default `{}`) |
|
|
* `opts` **any** (optional, default `{}`) |
|
|
* `opts` **UpdateStyleOptions** (optional, default `{}`) |
|
|
|
|
|
|
|
|
### Examples |
|
|
### Examples |
|
|
|
|
|
|
|
|
|