tickera-angular-components 0.0.1-dev.204 → 0.0.1-dev.205

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/index.d.ts CHANGED
@@ -4255,6 +4255,13 @@ declare class DaySelectorGridComponent {
4255
4255
  protected listEventService: PerformancesListEventsService;
4256
4256
  protected toastService: ToastService;
4257
4257
  displayMode: 'grid' | 'carousel';
4258
+ /**
4259
+ * true cuando este selector se usa desde el canal backoffice: en ese
4260
+ * caso también deben aparecer las funciones PRIVATE (nunca PEDAGOGIC,
4261
+ * que siempre usa su propio flujo). false (por defecto) es el canal
4262
+ * ecommerce, que solo ve funciones PUBLIC.
4263
+ */
4264
+ isAdmin: boolean;
4258
4265
  loadingData: WritableSignal<boolean>;
4259
4266
  days: WritableSignal<PerformanceAvailableDay[]>;
4260
4267
  carouselTrack?: ElementRef<HTMLElement>;
@@ -4264,7 +4271,7 @@ declare class DaySelectorGridComponent {
4264
4271
  onToggle(day: PerformanceAvailableDay): void;
4265
4272
  scrollCarousel(direction: 1 | -1): void;
4266
4273
  static ɵfac: i0.ɵɵFactoryDeclaration<DaySelectorGridComponent, never>;
4267
- static ɵcmp: i0.ɵɵComponentDeclaration<DaySelectorGridComponent, "day-selector-grid", never, { "displayMode": { "alias": "displayMode"; "required": false; }; }, {}, never, never, true, never>;
4274
+ static ɵcmp: i0.ɵɵComponentDeclaration<DaySelectorGridComponent, "day-selector-grid", never, { "displayMode": { "alias": "displayMode"; "required": false; }; "isAdmin": { "alias": "isAdmin"; "required": false; }; }, {}, never, never, true, never>;
4268
4275
  }
4269
4276
 
4270
4277
  declare class PerformanceCardComponent {
@@ -4273,6 +4280,7 @@ declare class PerformanceCardComponent {
4273
4280
  linkText: string;
4274
4281
  linkUrlFn?: (card: DailyPerformanceItem) => string;
4275
4282
  linkQueryParams?: Record<string, any>;
4283
+ readonly PerformanceVisibilityType: typeof PerformanceVisibilityType;
4276
4284
  constructor(listEventService: PerformancesListEventsService);
4277
4285
  get badgeColor(): 'success' | 'error';
4278
4286
  onSelect(): void;
@@ -4289,6 +4297,13 @@ declare class PerformanceCardListComponent {
4289
4297
  linkText: string;
4290
4298
  linkUrlFn?: (card: DailyPerformanceItem) => string;
4291
4299
  linkQueryParams?: Record<string, any>;
4300
+ /**
4301
+ * true cuando esta lista se usa desde el canal backoffice: en ese caso
4302
+ * también deben aparecer las funciones PRIVATE (nunca PEDAGOGIC, que
4303
+ * siempre usa su propio flujo). false (por defecto) es el canal
4304
+ * ecommerce, que solo ve funciones PUBLIC.
4305
+ */
4306
+ isAdmin: boolean;
4292
4307
  loadingData: WritableSignal<boolean>;
4293
4308
  performances: WritableSignal<DailyPerformanceItem[]>;
4294
4309
  constructor(platformId: object, performanceService: PerformanceService, listEventService: PerformancesListEventsService, toastService: ToastService);
@@ -4296,7 +4311,7 @@ declare class PerformanceCardListComponent {
4296
4311
  private loadData;
4297
4312
  get selectedDayDate(): string | null;
4298
4313
  static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceCardListComponent, never>;
4299
- static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardListComponent, "performance-card-list", never, { "linkText": { "alias": "linkText"; "required": false; }; "linkUrlFn": { "alias": "linkUrlFn"; "required": false; }; "linkQueryParams": { "alias": "linkQueryParams"; "required": false; }; }, {}, never, never, true, never>;
4314
+ static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardListComponent, "performance-card-list", never, { "linkText": { "alias": "linkText"; "required": false; }; "linkUrlFn": { "alias": "linkUrlFn"; "required": false; }; "linkQueryParams": { "alias": "linkQueryParams"; "required": false; }; "isAdmin": { "alias": "isAdmin"; "required": false; }; }, {}, never, never, true, never>;
4300
4315
  }
4301
4316
 
4302
4317
  declare class PerformanceStepperComponent {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickera-angular-components",
3
- "version": "0.0.1-dev.204",
3
+ "version": "0.0.1-dev.205",
4
4
  "description": "Angular 20 standalone component library for Tickera backoffice system",
5
5
  "license": "MIT",
6
6
  "repository": {