@glissandoo/lib 1.53.4 → 1.53.5
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/models/Evento/index.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ export default class Evento extends EventoPromoter<EventData> {
|
|
|
70
70
|
};
|
|
71
71
|
get isSelectionMode(): boolean;
|
|
72
72
|
get selectionModeClosedAt(): import("../../types/firestore").Timestamp | null;
|
|
73
|
-
get
|
|
73
|
+
get isSelectionModeClosed(): boolean;
|
|
74
74
|
get isSelectionModeOpen(): boolean;
|
|
75
75
|
}
|
|
76
76
|
export {};
|
package/models/Evento/index.js
CHANGED
|
@@ -189,7 +189,7 @@ class Evento extends promoter_1.default {
|
|
|
189
189
|
get selectionModeClosedAt() {
|
|
190
190
|
return this.data.selectionModeClosedAt || null;
|
|
191
191
|
}
|
|
192
|
-
get
|
|
192
|
+
get isSelectionModeClosed() {
|
|
193
193
|
return (!(0, lodash_1.isNull)(this.selectionModeClosedAt) && this.selectionMode === types_1.EventSelectionMode.Closed);
|
|
194
194
|
}
|
|
195
195
|
get isSelectionModeOpen() {
|