@softheon/armature 21.12.0 → 21.13.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "21.12.0",
3
+ "version": "21.13.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.8.1"
6
6
  },
@@ -6603,9 +6603,10 @@ declare class SofChartSkeletonLoaderComponent {
6603
6603
  readonly type: i0.InputSignal<SkeletonChartType>;
6604
6604
  /** Animation type: 'shimmer' for gradient effect, 'pulse' for opacity fade, or false for no animation. Default: 'shimmer' */
6605
6605
  readonly animation: i0.InputSignal<SkeletonAnimation>;
6606
- /** TODO: vertical bar chart */
6607
- direction: SkeletonBarChartDirection;
6608
- /** TODO: Direction for bar chart: 'horizontal' for horizontal bars, 'vertical' for vertical bars. Default: 'horizontal' */
6606
+ /** Direction for bar chart: 'horizontal' for horizontal bars, 'vertical' for vertical bars. Default: 'horizontal' */
6607
+ readonly direction: i0.InputSignal<SkeletonBarChartDirection>;
6608
+ /** Whether vertical bar chart is grouped (2 bars per segment). Default: false */
6609
+ readonly grouped: i0.InputSignal<boolean>;
6609
6610
  /** Height of the host element. Accepts CSS units (px, %, etc). Default: '250px' */
6610
6611
  readonly height: i0.InputSignal<string | number>;
6611
6612
  /** Width of the host element. Accepts CSS units (px, %, etc). Default: '100%' */
@@ -6616,18 +6617,20 @@ declare class SofChartSkeletonLoaderComponent {
6616
6617
  readonly loadingText: i0.InputSignal<string>;
6617
6618
  /** ARIA label for the component. Used by screen readers to identify the loading region. Default: 'loading' */
6618
6619
  readonly ariaLabel: i0.InputSignal<string>;
6619
- /** Computed array of segment indices based on segments input */
6620
- readonly segmentItems: i0.Signal<number[]>;
6621
- /** Dashed line positions for bar chart background */
6622
- readonly dashedLineItems: number[];
6623
6620
  /** Whether this is a bar chart type */
6624
6621
  readonly isBar: i0.Signal<boolean>;
6625
- /** TODO: Dashed line positions for vertical bar chart background */
6626
- /** TODO: Whether this is a vertical bar chart */
6622
+ /** Whether this is a vertical bar chart */
6623
+ readonly isVertical: i0.Signal<boolean>;
6624
+ /** Whether this is a grouped vertical bar chart */
6625
+ readonly isGrouped: i0.Signal<boolean>;
6626
+ /** Dashed line positions for bar chart background */
6627
+ readonly dashedLineItems: number[];
6628
+ /** Computed array of segment indices based on segments input. Default 3 */
6629
+ readonly segmentItems: i0.Signal<number[]>;
6627
6630
  /** The .chart-skeleton-container dimensions */
6628
6631
  readonly containerDimensions: i0.Signal<Record<string, string>>;
6629
6632
  static ɵfac: i0.ɵɵFactoryDeclaration<SofChartSkeletonLoaderComponent, never>;
6630
- static ɵcmp: i0.ɵɵComponentDeclaration<SofChartSkeletonLoaderComponent, "sof-chart-skeleton-loader", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "segments": { "alias": "segments"; "required": false; "isSignal": true; }; "loadingText": { "alias": "loadingText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6633
+ static ɵcmp: i0.ɵɵComponentDeclaration<SofChartSkeletonLoaderComponent, "sof-chart-skeleton-loader", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "grouped": { "alias": "grouped"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "segments": { "alias": "segments"; "required": false; "isSignal": true; }; "loadingText": { "alias": "loadingText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6631
6634
  }
6632
6635
 
6633
6636
  /** Blank Pipe for strings when its blank */