codexly-ui 0.0.77 → 0.0.79

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": "codexly-ui",
3
- "version": "0.0.77",
3
+ "version": "0.0.79",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0",
@@ -982,7 +982,7 @@ declare class ClxBadgeComponent {
982
982
  declare class ClxButtonComponent {
983
983
  readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
984
984
  readonly color: _angular_core.InputSignal<ClxColorInput>;
985
- readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
985
+ readonly size: _angular_core.InputSignal<"xs" | "sm" | "md" | "lg" | "xxs">;
986
986
  readonly shape: _angular_core.InputSignal<ClxShape>;
987
987
  readonly loading: _angular_core.InputSignal<boolean>;
988
988
  readonly disabled: _angular_core.InputSignal<boolean>;
@@ -1160,7 +1160,7 @@ interface ClxChartOptions {
1160
1160
  declare class ClxChartComponent implements AfterViewInit, OnDestroy {
1161
1161
  canvasRef: ElementRef<HTMLCanvasElement>;
1162
1162
  type: _angular_core.InputSignal<ClxChartType>;
1163
- data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number | chart_js.Point | [number, number] | chart_js.BubbleDataPoint | null)[], unknown>>;
1163
+ data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>>;
1164
1164
  options: _angular_core.InputSignal<node_modules_chart_js_dist_types_utils._DeepPartialObject<chart_js.CoreChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ElementChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.PluginChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.DatasetChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ScaleChartOptions<keyof chart_js.ChartTypeRegistry>>>;
1165
1165
  height: _angular_core.InputSignal<string | number>;
1166
1166
  ariaLabel: _angular_core.InputSignal<string | undefined>;
@@ -1920,7 +1920,7 @@ declare class ClxSliderComponent implements ControlValueAccessor {
1920
1920
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxSliderComponent, "clx-slider", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "activeColor": { "alias": "activeColor"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "showTooltip": { "alias": "showTooltip"; "required": false; "isSignal": true; }; "showMinMax": { "alias": "showMinMax"; "required": false; "isSignal": true; }; "marks": { "alias": "marks"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1921
1921
  }
1922
1922
 
1923
- type ClxSwitchSize = 'sm' | 'md' | 'lg';
1923
+ type ClxSwitchSize = 'xs' | 'sm' | 'md' | 'lg';
1924
1924
  declare class ClxSwitchComponent implements ControlValueAccessor {
1925
1925
  readonly color: _angular_core.InputSignal<ClxColorInput>;
1926
1926
  readonly size: _angular_core.InputSignal<ClxSwitchSize>;
@@ -1937,6 +1937,11 @@ declare class ClxSwitchComponent implements ControlValueAccessor {
1937
1937
  private _onChange;
1938
1938
  private _onTouched;
1939
1939
  protected readonly _sizeConfig: _angular_core.Signal<{
1940
+ readonly track: "w-7 h-4";
1941
+ readonly thumb: "w-3 h-3";
1942
+ readonly translate: "translate-x-3";
1943
+ readonly label: "text-xs";
1944
+ } | {
1940
1945
  readonly track: "w-9 h-5";
1941
1946
  readonly thumb: "w-4 h-4";
1942
1947
  readonly translate: "translate-x-4";
@@ -2658,8 +2663,6 @@ declare class ClxTooltipDirective {
2658
2663
  declare class ClxAlertService {
2659
2664
  private readonly _overlay;
2660
2665
  private readonly _injector;
2661
- private readonly _focusTrapFactory;
2662
- constructor();
2663
2666
  open(options?: ClxAlertOptions): Promise<ClxAlertResult>;
2664
2667
  success(title: string, message?: string, opts?: Partial<ClxAlertOptions>): Promise<ClxAlertResult>;
2665
2668
  error(title: string, message?: string, opts?: Partial<ClxAlertOptions>): Promise<ClxAlertResult>;
@@ -2707,9 +2710,8 @@ declare class ClxAnimateService {
2707
2710
 
2708
2711
  declare class ClxDrawerService {
2709
2712
  private readonly _overlay;
2713
+ private readonly _animate;
2710
2714
  private readonly _injector;
2711
- private readonly _focusTrapFactory;
2712
- constructor();
2713
2715
  open<R = unknown, D = unknown>(component: new (...args: any[]) => any, config?: ClxDrawerConfig<D>): ClxDrawerRef<R>;
2714
2716
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxDrawerService, never>;
2715
2717
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxDrawerService>;
@@ -2717,19 +2719,17 @@ declare class ClxDrawerService {
2717
2719
 
2718
2720
  declare class ClxModalService {
2719
2721
  private readonly _overlay;
2722
+ private readonly _animate;
2720
2723
  private readonly _injector;
2721
- private readonly _focusTrapFactory;
2722
- constructor();
2723
2724
  open<R = unknown, D = unknown>(component: new (...args: any[]) => any, config?: ClxModalConfig<D>): ClxModalRef<R>;
2724
2725
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxModalService, never>;
2725
2726
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxModalService>;
2726
2727
  }
2727
2728
 
2728
2729
  declare class ClxToastService {
2730
+ private readonly _appRef;
2729
2731
  private readonly _injector;
2730
- private _toastOverlay;
2731
2732
  private readonly _containers;
2732
- private _getOverlay;
2733
2733
  show(options: ClxToastOptions): void;
2734
2734
  success(message: string, opts?: Partial<ClxToastOptions>): void;
2735
2735
  error(message: string, opts?: Partial<ClxToastOptions>): void;