@bizy/core 19.15.2 → 19.16.1

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.
@@ -25,6 +25,7 @@ export * from './slider';
25
25
  export * from './table';
26
26
  export * from './tabs';
27
27
  export * from './tag';
28
+ export * from './timeline';
28
29
  export * from './toast';
29
30
  export * from './toggle';
30
31
  export * from './toolbar';
@@ -0,0 +1,3 @@
1
+ export { BizyTimelineModule } from './timeline.module';
2
+ export { BizyTimelineComponent } from './timeline.component';
3
+ export { BizyTimelineEventComponent } from './timeline-event/timeline-event.component';
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BizyTimelineEventComponent {
4
+ id: string;
5
+ customClass: string;
6
+ showLine: boolean;
7
+ disabled: boolean;
8
+ onSelect: EventEmitter<PointerEvent>;
9
+ _focused: boolean;
10
+ _onSelect(event: PointerEvent): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BizyTimelineEventComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<BizyTimelineEventComponent, "bizy-timeline-event", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "showLine": { "alias": "showLine"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["[slot=start]", "[slot=bullet]", "[slot=end]"], true, never>;
13
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BizyTimelineComponent {
3
+ id: string;
4
+ customClass: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BizyTimelineComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<BizyTimelineComponent, "bizy-timeline", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, ["bizy-timeline-event"], true, never>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./timeline.component";
3
+ import * as i2 from "./timeline-event/timeline-event.component";
4
+ export declare class BizyTimelineModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BizyTimelineModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BizyTimelineModule, never, [typeof i1.BizyTimelineComponent, typeof i2.BizyTimelineEventComponent], [typeof i1.BizyTimelineComponent, typeof i2.BizyTimelineEventComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BizyTimelineModule>;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "19.15.2",
3
+ "version": "19.16.1",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "19.2.10",
6
6
  "@angular/cdk": "19.2.16",
@@ -325,6 +325,20 @@
325
325
  --bizy-tag-danger-color: var(--bizy-dark-danger-color);
326
326
  --bizy-tag-padding: 0.1rem 0.3rem;
327
327
 
328
+ --bizy-timeline-color: var(--bizy-info-color);
329
+ --bizy-timeline-row-gap: 0.5rem;
330
+ --bizy-timeline-line-background-color: var(--bizy-timeline-color);
331
+ --bizy-timeline-line-width: 0.2rem;
332
+ --bizy-timeline-line-min-height: 1rem;
333
+ --bizy-timeline-event-column-gap: 1rem;
334
+ --bizy-timeline-bullet-border: 0.2rem solid var(--bizy-timeline-color);
335
+ --bizy-timeline-bullet-border-color: var(--bizy-info-color);
336
+ --bizy-timeline-bullet-min-height: 2rem;
337
+ --bizy-timeline-bullet-min-width: 2rem;
338
+ --bizy-timeline-bullet-background-color: transparent;
339
+ --bizy-timeline-bullet-padding: 0.1rem;
340
+ --bizy-timeline-bullet-section-min-width: 2rem;
341
+
328
342
  --bizy-toast-debug-background-color: #fff;
329
343
  --bizy-toast-debug-color: var(--bizy-default-color);
330
344
  --bizy-toast-info-background-color: #fff;