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

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