@devjuliovilla/jv-ui 1.5.2 → 1.5.3
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": "@devjuliovilla/jv-ui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "Accessibility-first Angular component library — components, forms, data grids, dialogs, layout, services, and i18n infrastructure built with signals and standalone APIs.",
|
|
5
5
|
"author": "@devjuliovilla",
|
|
6
6
|
"license": "MIT",
|
|
@@ -372,9 +372,13 @@ declare class JvIconComponent {
|
|
|
372
372
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<JvIconComponent, "jv-icon", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; "decorative": { "alias": "decorative"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
373
373
|
}
|
|
374
374
|
|
|
375
|
+
interface JvIconElement {
|
|
376
|
+
tag: 'path' | 'circle' | 'line' | 'polyline' | 'rect' | 'ellipse' | 'polygon';
|
|
377
|
+
attrs: Record<string, string>;
|
|
378
|
+
}
|
|
375
379
|
interface JvIconDefinition {
|
|
376
380
|
viewBox: string;
|
|
377
|
-
|
|
381
|
+
elements: JvIconElement[];
|
|
378
382
|
}
|
|
379
383
|
declare const JV_FALLBACK_ICON_NAME = "circle-alert";
|
|
380
384
|
declare const JV_LUCIDE_ICON_REGISTRY: Record<string, JvIconDefinition>;
|
|
@@ -706,5 +710,30 @@ declare class JvGridComponent<T = any> {
|
|
|
706
710
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<JvGridComponent<any>, "jv-grid", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; "selectedIds": { "alias": "selectedIds"; "required": false; "isSignal": true; }; }, { "rowClick": "rowClick"; "actionClick": "actionClick"; "selectionChange": "selectionChange"; "pageChange": "pageChange"; "searchChange": "searchChange"; "sortChange": "sortChange"; }, never, never, true, never>;
|
|
707
711
|
}
|
|
708
712
|
|
|
709
|
-
|
|
710
|
-
|
|
713
|
+
interface JvPaginationEvent {
|
|
714
|
+
pageIndex: number;
|
|
715
|
+
pageSize: number;
|
|
716
|
+
}
|
|
717
|
+
declare class JvPaginationComponent {
|
|
718
|
+
private readonly translationService;
|
|
719
|
+
readonly totalItems: _angular_core.InputSignal<number>;
|
|
720
|
+
readonly pageSize: _angular_core.InputSignal<number>;
|
|
721
|
+
readonly pageSizeOptions: _angular_core.InputSignal<number[]>;
|
|
722
|
+
readonly pageIndex: _angular_core.InputSignal<number>;
|
|
723
|
+
readonly maxVisiblePages: _angular_core.InputSignal<number>;
|
|
724
|
+
readonly pageChange: _angular_core.OutputEmitterRef<JvPaginationEvent>;
|
|
725
|
+
protected readonly totalPages: _angular_core.Signal<number>;
|
|
726
|
+
protected readonly pageStart: _angular_core.Signal<number>;
|
|
727
|
+
protected readonly pageEnd: _angular_core.Signal<number>;
|
|
728
|
+
protected readonly pageRange: _angular_core.Signal<number[]>;
|
|
729
|
+
protected readonly pageSizeStr: _angular_core.Signal<string>;
|
|
730
|
+
protected readonly pageSizeOptionsList: _angular_core.Signal<JvSelectOption<string>[]>;
|
|
731
|
+
protected readonly t: (key: string, params?: Record<string, string | number>) => string;
|
|
732
|
+
protected goToPage(page: number): void;
|
|
733
|
+
protected onPageSizeChange(value: string): void;
|
|
734
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<JvPaginationComponent, never>;
|
|
735
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<JvPaginationComponent, "jv-pagination", never, { "totalItems": { "alias": "totalItems"; "required": true; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "pageIndex": { "alias": "pageIndex"; "required": false; "isSignal": true; }; "maxVisiblePages": { "alias": "maxVisiblePages"; "required": false; "isSignal": true; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
export { EN, ES, JV_DEFAULT_LOCALE, JV_FALLBACK_ICON_NAME, JV_GRID_DEFAULT_OPTIONS, JV_LOCALE_DICTIONARIES, JV_LUCIDE_ICON_REGISTRY, JV_UI_CONFIG, JV_UI_CONFIG_DEFAULTS, JV_UI_DEFAULT_CONFIG, JvAlertComponent, JvAnnouncementService, JvBadgeComponent, JvBreadcrumbComponent, JvButtonComponent, JvButtonGroupComponent, JvCardComponent, JvChangePasswordPageComponent, JvCheckboxComponent, JvConfirmDialogComponent, JvDashboardShellComponent, JvDialogComponent, JvDialogService, JvDividerComponent, JvForgotPasswordPageComponent, JvFormContainerComponent, JvGridComponent, JvIconButtonComponent, JvIconComponent, JvInputComponent, JvLoaderComponent, JvLoaderService, JvLoginPageComponent, JvPageComponent, JvPaginationComponent, JvRadioComponent, JvSectionComponent, JvSelectComponent, JvSidebarComponent, JvSwitchComponent, JvThemeService, JvToastComponent, JvToastService, JvTopbarComponent, JvTranslationService, provideJvUi };
|
|
739
|
+
export type { JvActiveConfirmDialog, JvBreadcrumbItem, JvChangePasswordSubmitEvent, JvConfirmOptions, JvDensity, JvForgotPasswordSubmitEvent, JvGridAction, JvGridColumn, JvGridOptions, JvGridPageEvent, JvGridRowId, JvGridSortDirection, JvGridSortState, JvGridTrackBy, JvIconDefinition, JvIconElement, JvIntent, JvLoaderState, JvLocale, JvLoginSubmitEvent, JvNavItem, JvPaginationEvent, JvSelectOption, JvTheme, JvThemeOption, JvToastItem, JvToastPosition, JvToastViewport, JvTone, JvTopbarAction, JvUiConfig };
|