codexly-ui 0.0.77 → 0.0.78
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/fesm2022/codexly-ui.mjs +201 -257
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +4 -9
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -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 |
|
|
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>;
|
|
@@ -2658,8 +2658,6 @@ declare class ClxTooltipDirective {
|
|
|
2658
2658
|
declare class ClxAlertService {
|
|
2659
2659
|
private readonly _overlay;
|
|
2660
2660
|
private readonly _injector;
|
|
2661
|
-
private readonly _focusTrapFactory;
|
|
2662
|
-
constructor();
|
|
2663
2661
|
open(options?: ClxAlertOptions): Promise<ClxAlertResult>;
|
|
2664
2662
|
success(title: string, message?: string, opts?: Partial<ClxAlertOptions>): Promise<ClxAlertResult>;
|
|
2665
2663
|
error(title: string, message?: string, opts?: Partial<ClxAlertOptions>): Promise<ClxAlertResult>;
|
|
@@ -2707,9 +2705,8 @@ declare class ClxAnimateService {
|
|
|
2707
2705
|
|
|
2708
2706
|
declare class ClxDrawerService {
|
|
2709
2707
|
private readonly _overlay;
|
|
2708
|
+
private readonly _animate;
|
|
2710
2709
|
private readonly _injector;
|
|
2711
|
-
private readonly _focusTrapFactory;
|
|
2712
|
-
constructor();
|
|
2713
2710
|
open<R = unknown, D = unknown>(component: new (...args: any[]) => any, config?: ClxDrawerConfig<D>): ClxDrawerRef<R>;
|
|
2714
2711
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxDrawerService, never>;
|
|
2715
2712
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxDrawerService>;
|
|
@@ -2717,19 +2714,17 @@ declare class ClxDrawerService {
|
|
|
2717
2714
|
|
|
2718
2715
|
declare class ClxModalService {
|
|
2719
2716
|
private readonly _overlay;
|
|
2717
|
+
private readonly _animate;
|
|
2720
2718
|
private readonly _injector;
|
|
2721
|
-
private readonly _focusTrapFactory;
|
|
2722
|
-
constructor();
|
|
2723
2719
|
open<R = unknown, D = unknown>(component: new (...args: any[]) => any, config?: ClxModalConfig<D>): ClxModalRef<R>;
|
|
2724
2720
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxModalService, never>;
|
|
2725
2721
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxModalService>;
|
|
2726
2722
|
}
|
|
2727
2723
|
|
|
2728
2724
|
declare class ClxToastService {
|
|
2725
|
+
private readonly _appRef;
|
|
2729
2726
|
private readonly _injector;
|
|
2730
|
-
private _toastOverlay;
|
|
2731
2727
|
private readonly _containers;
|
|
2732
|
-
private _getOverlay;
|
|
2733
2728
|
show(options: ClxToastOptions): void;
|
|
2734
2729
|
success(message: string, opts?: Partial<ClxToastOptions>): void;
|
|
2735
2730
|
error(message: string, opts?: Partial<ClxToastOptions>): void;
|