codexly-ui 0.0.31 → 0.0.33
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 +278 -14
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/index.d.ts +45 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -467,6 +467,7 @@ declare class ClxAlertComponent implements OnInit, OnDestroy {
|
|
|
467
467
|
private readonly _animate;
|
|
468
468
|
private readonly _el;
|
|
469
469
|
private readonly _zone;
|
|
470
|
+
constructor();
|
|
470
471
|
private get _type();
|
|
471
472
|
protected readonly _icon: _angular_core.WritableSignal<string>;
|
|
472
473
|
protected readonly _iconBg: _angular_core.WritableSignal<string>;
|
|
@@ -739,6 +740,7 @@ declare class ClxToastComponent implements OnInit, OnDestroy {
|
|
|
739
740
|
private readonly _animate;
|
|
740
741
|
private readonly _el;
|
|
741
742
|
private readonly _zone;
|
|
743
|
+
constructor();
|
|
742
744
|
protected readonly _progressPct: _angular_core.WritableSignal<number>;
|
|
743
745
|
private _timerHandle;
|
|
744
746
|
private _paused;
|
|
@@ -977,7 +979,7 @@ declare class ClxBadgeComponent {
|
|
|
977
979
|
declare class ClxButtonComponent {
|
|
978
980
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
979
981
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
980
|
-
readonly size: _angular_core.InputSignal<"
|
|
982
|
+
readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
|
|
981
983
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
982
984
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
983
985
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -1152,7 +1154,7 @@ interface ClxChartOptions {
|
|
|
1152
1154
|
declare class ClxChartComponent implements AfterViewInit, OnDestroy {
|
|
1153
1155
|
canvasRef: ElementRef<HTMLCanvasElement>;
|
|
1154
1156
|
type: _angular_core.InputSignal<ClxChartType>;
|
|
1155
|
-
data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number |
|
|
1157
|
+
data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>>;
|
|
1156
1158
|
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>>>;
|
|
1157
1159
|
height: _angular_core.InputSignal<string | number>;
|
|
1158
1160
|
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
@@ -1511,7 +1513,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1511
1513
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
1512
1514
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
1513
1515
|
readonly size: _angular_core.InputSignal<ClxEditorSize>;
|
|
1514
|
-
readonly status: _angular_core.InputSignal<"
|
|
1516
|
+
readonly status: _angular_core.InputSignal<"error" | "default" | "success">;
|
|
1515
1517
|
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
1516
1518
|
readonly hint: _angular_core.InputSignal<string>;
|
|
1517
1519
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -1539,6 +1541,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1539
1541
|
private _copiedTimer;
|
|
1540
1542
|
private _onChange;
|
|
1541
1543
|
private _onTouched;
|
|
1544
|
+
constructor();
|
|
1542
1545
|
ngAfterViewInit(): void;
|
|
1543
1546
|
ngOnDestroy(): void;
|
|
1544
1547
|
protected readonly _sizeCfg: _angular_core.Signal<{
|
|
@@ -2145,6 +2148,7 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
2145
2148
|
private readonly _isMobile;
|
|
2146
2149
|
readonly collapsedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2147
2150
|
readonly expandedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2151
|
+
constructor();
|
|
2148
2152
|
protected readonly _showBackdrop: _angular_core.Signal<boolean>;
|
|
2149
2153
|
readonly _isExpanded: _angular_core.Signal<boolean>;
|
|
2150
2154
|
protected readonly _sidebarCls: _angular_core.Signal<string>;
|
|
@@ -2229,6 +2233,42 @@ declare class ClxNavGroupComponent {
|
|
|
2229
2233
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2230
2234
|
}
|
|
2231
2235
|
|
|
2236
|
+
interface ClxProfileMenuItem {
|
|
2237
|
+
label: string;
|
|
2238
|
+
icon: string;
|
|
2239
|
+
action: string;
|
|
2240
|
+
}
|
|
2241
|
+
declare class ClxProfileComponent {
|
|
2242
|
+
readonly firstName: _angular_core.InputSignal<string>;
|
|
2243
|
+
readonly lastName: _angular_core.InputSignal<string>;
|
|
2244
|
+
readonly username: _angular_core.InputSignal<string>;
|
|
2245
|
+
readonly role: _angular_core.InputSignal<string>;
|
|
2246
|
+
readonly avatarSrc: _angular_core.InputSignal<string | null>;
|
|
2247
|
+
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
2248
|
+
readonly menuItems: _angular_core.InputSignal<ClxProfileMenuItem[]>;
|
|
2249
|
+
readonly signOutLabel: _angular_core.InputSignal<string>;
|
|
2250
|
+
readonly menuAction: _angular_core.OutputEmitterRef<string>;
|
|
2251
|
+
readonly signOut: _angular_core.OutputEmitterRef<void>;
|
|
2252
|
+
private readonly _sso;
|
|
2253
|
+
readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
2254
|
+
readonly _positions: ConnectedPosition[];
|
|
2255
|
+
protected readonly _isOpen: _angular_core.WritableSignal<boolean>;
|
|
2256
|
+
readonly fullName: _angular_core.Signal<string>;
|
|
2257
|
+
protected readonly _initials: _angular_core.Signal<string>;
|
|
2258
|
+
protected readonly _ringClass: _angular_core.Signal<string>;
|
|
2259
|
+
protected readonly _headerBgClass: _angular_core.Signal<string>;
|
|
2260
|
+
protected readonly _badgeClass: _angular_core.Signal<string>;
|
|
2261
|
+
protected readonly _itemHoverClass: _angular_core.Signal<string>;
|
|
2262
|
+
protected readonly _signOutClass: _angular_core.Signal<string>;
|
|
2263
|
+
protected _toggle(): void;
|
|
2264
|
+
protected _close(): void;
|
|
2265
|
+
protected _onKeydown(event: KeyboardEvent): void;
|
|
2266
|
+
protected _onAction(action: string): void;
|
|
2267
|
+
protected _onSignOut(): void;
|
|
2268
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxProfileComponent, never>;
|
|
2269
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxProfileComponent, "clx-profile", never, { "firstName": { "alias": "firstName"; "required": false; "isSignal": true; }; "lastName": { "alias": "lastName"; "required": false; "isSignal": true; }; "username": { "alias": "username"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "avatarSrc": { "alias": "avatarSrc"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "menuItems": { "alias": "menuItems"; "required": false; "isSignal": true; }; "signOutLabel": { "alias": "signOutLabel"; "required": false; "isSignal": true; }; }, { "menuAction": "menuAction"; "signOut": "signOut"; }, never, never, true, never>;
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2232
2272
|
interface ClxTableColumn<T = any> {
|
|
2233
2273
|
key: string;
|
|
2234
2274
|
header?: string;
|
|
@@ -2767,5 +2807,5 @@ declare class ClxPageEmptyComponent {
|
|
|
2767
2807
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageEmptyComponent, "clx-page-empty", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "ctaLabel": { "alias": "ctaLabel"; "required": false; "isSignal": true; }; "ctaIcon": { "alias": "ctaIcon"; "required": false; "isSignal": true; }; "ctaColor": { "alias": "ctaColor"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "cta": "cta"; }, never, never, true, never>;
|
|
2768
2808
|
}
|
|
2769
2809
|
|
|
2770
|
-
export { CLX_ALERT_OPTIONS, CLX_ALERT_RESOLVE, CLX_COLOR_HEX, CLX_COLOR_MAP, CLX_MODAL_ANIM_CONFIG, CLX_MODAL_DATA, CLX_MODAL_REF, CLX_RADIO_GROUP, CLX_TOAST_DEFAULTS, ClxAlertComponent, ClxAlertService, ClxAnimateDirective, ClxAnimateGroupDirective, ClxAnimateService, ClxAppLayoutComponent, ClxAvatarComponent, ClxBadgeComponent, ClxBrandComponent, ClxButtonComponent, ClxButtonGroupComponent, ClxCardBodyDirective, ClxCardComponent, ClxCardFooterDirective, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxChartComponent, ClxCheckboxComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxModalComponent, ClxModalService, ClxNavGroupComponent, ClxNumberComponent, ClxPageEmptyComponent, ClxPageNotFoundComponent, ClxPageServerErrorComponent, ClxPageUnauthorizedComponent, ClxPaginationComponent, ClxProductComponent, ClxProductDetailComponent, ClxProgressBarComponent, ClxRadioComponent, ClxRadioGroupComponent, ClxRatingComponent, ClxSelectComponent, ClxSkeletonComponent, ClxSliderComponent, ClxSpinnerComponent, ClxStatCardComponent, ClxStepComponent, ClxStepperComponent, ClxSwitchComponent, ClxTabDirective, ClxTableComponent, ClxTabsComponent, ClxTagComponent, ClxTextareaComponent, ClxTimelineComponent, ClxTimelineItemComponent, ClxToastComponent, ClxToastContainerComponent, ClxToastService, ClxTooltipComponent, ClxTooltipDirective, ClxTreeComponent, ClxUploadComponent, ClxWishlistComponent, ClxWizardComponent, parseColorInput, resolveColor };
|
|
2771
|
-
export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxChartOptions, ClxChartType, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNumberSize, ClxNumberVariant, ClxPageChangeEvent, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductSize, ClxProductSpec, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
|
|
2810
|
+
export { CLX_ALERT_OPTIONS, CLX_ALERT_RESOLVE, CLX_COLOR_HEX, CLX_COLOR_MAP, CLX_MODAL_ANIM_CONFIG, CLX_MODAL_DATA, CLX_MODAL_REF, CLX_RADIO_GROUP, CLX_TOAST_DEFAULTS, ClxAlertComponent, ClxAlertService, ClxAnimateDirective, ClxAnimateGroupDirective, ClxAnimateService, ClxAppLayoutComponent, ClxAvatarComponent, ClxBadgeComponent, ClxBrandComponent, ClxButtonComponent, ClxButtonGroupComponent, ClxCardBodyDirective, ClxCardComponent, ClxCardFooterDirective, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxChartComponent, ClxCheckboxComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxModalComponent, ClxModalService, ClxNavGroupComponent, ClxNumberComponent, ClxPageEmptyComponent, ClxPageNotFoundComponent, ClxPageServerErrorComponent, ClxPageUnauthorizedComponent, ClxPaginationComponent, ClxProductComponent, ClxProductDetailComponent, ClxProfileComponent, ClxProgressBarComponent, ClxRadioComponent, ClxRadioGroupComponent, ClxRatingComponent, ClxSelectComponent, ClxSkeletonComponent, ClxSliderComponent, ClxSpinnerComponent, ClxStatCardComponent, ClxStepComponent, ClxStepperComponent, ClxSwitchComponent, ClxTabDirective, ClxTableComponent, ClxTabsComponent, ClxTagComponent, ClxTextareaComponent, ClxTimelineComponent, ClxTimelineItemComponent, ClxToastComponent, ClxToastContainerComponent, ClxToastService, ClxTooltipComponent, ClxTooltipDirective, ClxTreeComponent, ClxUploadComponent, ClxWishlistComponent, ClxWizardComponent, parseColorInput, resolveColor };
|
|
2811
|
+
export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxChartOptions, ClxChartType, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNumberSize, ClxNumberVariant, ClxPageChangeEvent, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
|