fix: DockerSecretsResolver - don't normalize absolute paths like /var/www/html/...
Some checks failed
Deploy Application / deploy (push) Has been cancelled
Some checks failed
Deploy Application / deploy (push) Has been cancelled
This commit is contained in:
@@ -772,10 +772,15 @@ interface Component {
|
||||
|
||||
### Data Attributes
|
||||
|
||||
> **Note**: All data attributes are centrally managed through PHP Enums and JavaScript Constants. See [Data Attributes Reference](../../framework/data-attributes-reference.md) for complete documentation.
|
||||
|
||||
#### `data-component-id`
|
||||
|
||||
Identifies component root element. **Required** on component container.
|
||||
|
||||
**PHP Enum**: `LiveComponentCoreAttribute::COMPONENT_ID`
|
||||
**JavaScript Constant**: `LiveComponentCoreAttributes.COMPONENT_ID`
|
||||
|
||||
```html
|
||||
<div data-component-id="{component_id}" data-component-name="SearchComponent">
|
||||
<!-- Component content -->
|
||||
@@ -788,6 +793,9 @@ Identifies component root element. **Required** on component container.
|
||||
|
||||
Two-way data binding for inputs.
|
||||
|
||||
**PHP Enum**: `LiveComponentFeatureAttribute::LC_MODEL`
|
||||
**JavaScript Constant**: `LiveComponentFeatureAttributes.LC_MODEL`
|
||||
|
||||
```html
|
||||
<input
|
||||
type="text"
|
||||
@@ -817,6 +825,9 @@ Two-way data binding for inputs.
|
||||
|
||||
Trigger action on click.
|
||||
|
||||
**PHP Enum**: `LiveComponentCoreAttribute::LIVE_ACTION`
|
||||
**JavaScript Constant**: `LiveComponentCoreAttributes.LIVE_ACTION`
|
||||
|
||||
```html
|
||||
<button data-lc-action="search">Search</button>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user