@esfaenza/es-table 20.3.49 → 20.3.51
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.
|
@@ -7128,8 +7128,11 @@ class EsTable2Component {
|
|
|
7128
7128
|
this.Selection = linkedSignal(() => this.io(this._Selection(), this.defaults?.Selection, false), ...(ngDevMode ? [{ debugName: "Selection" }] : []));
|
|
7129
7129
|
this.SingleSelection = input(false, ...(ngDevMode ? [{ debugName: "SingleSelection" }] : []));
|
|
7130
7130
|
this.SelectionDisabled = input(false, ...(ngDevMode ? [{ debugName: "SelectionDisabled" }] : []));
|
|
7131
|
+
// Parità v1: su una tabella a celle custom (direttive) con la selezione accesa,
|
|
7132
|
+
// "seleziona tutto" è ATTIVO di default. Un valore esplicito (anche `false`) vince
|
|
7133
|
+
// sempre. Vedi `es_table.component.ts` riga 628.
|
|
7131
7134
|
this._SelectAll = input(null, ...(ngDevMode ? [{ debugName: "_SelectAll", alias: 'SelectAll' }] : [{ alias: 'SelectAll' }]));
|
|
7132
|
-
this.SelectAll = linkedSignal(() => this.io(this._SelectAll(), null,
|
|
7135
|
+
this.SelectAll = linkedSignal(() => this.io(this._SelectAll(), null, this.directivesBased() && this.Selection()), ...(ngDevMode ? [{ debugName: "SelectAll" }] : []));
|
|
7133
7136
|
/** @deprecated NO-OP di parità v1 (cache selezione cross-pagina): dichiarato per il drop-in, non usato */
|
|
7134
7137
|
/**
|
|
7135
7138
|
* Identità di una riga per la cache di selezione: nome di una proprietà (es. id)
|