@logosphere-ui/angular 0.0.1-alpha.16 → 0.0.1-alpha.18
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/logosphere-ui-angular-src-lib-input.mjs +5 -2
- package/fesm2022/logosphere-ui-angular-src-lib-input.mjs.map +1 -1
- package/fesm2022/logosphere-ui-angular.mjs +6 -433
- package/fesm2022/logosphere-ui-angular.mjs.map +1 -1
- package/package.json +2 -38
- package/types/logosphere-ui-angular-src-lib-input.d.ts +2 -1
- package/types/logosphere-ui-angular.d.ts +6 -229
- package/fesm2022/logosphere-ui-angular-src-lib-accordion.mjs +0 -59
- package/fesm2022/logosphere-ui-angular-src-lib-accordion.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-chip-group.mjs +0 -49
- package/fesm2022/logosphere-ui-angular-src-lib-chip-group.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-collapse.mjs +0 -59
- package/fesm2022/logosphere-ui-angular-src-lib-collapse.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-icon.mjs +0 -26
- package/fesm2022/logosphere-ui-angular-src-lib-icon.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-input-group.mjs +0 -33
- package/fesm2022/logosphere-ui-angular-src-lib-input-group.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-slider.mjs +0 -76
- package/fesm2022/logosphere-ui-angular-src-lib-slider.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-split-button.mjs +0 -77
- package/fesm2022/logosphere-ui-angular-src-lib-split-button.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-stepper.mjs +0 -49
- package/fesm2022/logosphere-ui-angular-src-lib-stepper.mjs.map +0 -1
- package/fesm2022/logosphere-ui-angular-src-lib-table.mjs +0 -83
- package/fesm2022/logosphere-ui-angular-src-lib-table.mjs.map +0 -1
- package/types/logosphere-ui-angular-src-lib-accordion.d.ts +0 -26
- package/types/logosphere-ui-angular-src-lib-chip-group.d.ts +0 -24
- package/types/logosphere-ui-angular-src-lib-collapse.d.ts +0 -18
- package/types/logosphere-ui-angular-src-lib-icon.d.ts +0 -10
- package/types/logosphere-ui-angular-src-lib-input-group.d.ts +0 -9
- package/types/logosphere-ui-angular-src-lib-slider.d.ts +0 -27
- package/types/logosphere-ui-angular-src-lib-split-button.d.ts +0 -33
- package/types/logosphere-ui-angular-src-lib-stepper.d.ts +0 -26
- package/types/logosphere-ui-angular-src-lib-table.d.ts +0 -83
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
|
|
3
|
-
type StepState = 'completed' | 'current' | 'upcoming' | 'disabled';
|
|
4
|
-
type StepperOrientation = 'horizontal' | 'vertical';
|
|
5
|
-
interface StepItem {
|
|
6
|
-
title: string;
|
|
7
|
-
description?: string;
|
|
8
|
-
state?: StepState;
|
|
9
|
-
disabled?: boolean;
|
|
10
|
-
}
|
|
11
|
-
declare class LogosphereStepper {
|
|
12
|
-
steps: _angular_core.InputSignal<StepItem[]>;
|
|
13
|
-
activeStep: _angular_core.InputSignal<number>;
|
|
14
|
-
orientation: _angular_core.InputSignal<StepperOrientation>;
|
|
15
|
-
clickable: _angular_core.InputSignal<boolean>;
|
|
16
|
-
stepChange: _angular_core.OutputEmitterRef<{
|
|
17
|
-
index: number;
|
|
18
|
-
step: StepItem;
|
|
19
|
-
}>;
|
|
20
|
-
onStepChange(event: Event): void;
|
|
21
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LogosphereStepper, never>;
|
|
22
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LogosphereStepper, "lgs-stepper", never, { "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "activeStep": { "alias": "activeStep"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; }, { "stepChange": "stepChange"; }, never, never, true, never>;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export { LogosphereStepper };
|
|
26
|
-
export type { StepItem, StepState, StepperOrientation };
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
|
|
3
|
-
interface TableColumn {
|
|
4
|
-
key: string;
|
|
5
|
-
label: string;
|
|
6
|
-
width?: number;
|
|
7
|
-
align?: 'left' | 'center' | 'right';
|
|
8
|
-
sortable?: boolean;
|
|
9
|
-
searchable?: boolean;
|
|
10
|
-
sticky?: boolean;
|
|
11
|
-
render?: (context: TableCellContext) => unknown;
|
|
12
|
-
}
|
|
13
|
-
interface TableCellContext {
|
|
14
|
-
value: unknown;
|
|
15
|
-
row: Record<string, unknown>;
|
|
16
|
-
rowIndex: number;
|
|
17
|
-
column: TableColumn;
|
|
18
|
-
}
|
|
19
|
-
interface TableActionContext {
|
|
20
|
-
row: Record<string, unknown>;
|
|
21
|
-
rowIndex: number;
|
|
22
|
-
}
|
|
23
|
-
interface TableActionColumn {
|
|
24
|
-
width?: number;
|
|
25
|
-
render: (context: TableActionContext) => unknown;
|
|
26
|
-
}
|
|
27
|
-
interface TableSortChangeDetail {
|
|
28
|
-
column: TableColumn;
|
|
29
|
-
key: string;
|
|
30
|
-
direction?: 'asc' | 'desc';
|
|
31
|
-
sorts: Array<{
|
|
32
|
-
column: TableColumn;
|
|
33
|
-
key: string;
|
|
34
|
-
direction: 'asc' | 'desc';
|
|
35
|
-
order: number;
|
|
36
|
-
}>;
|
|
37
|
-
multi: boolean;
|
|
38
|
-
}
|
|
39
|
-
interface TableSelectionChangeDetail {
|
|
40
|
-
selectedRows: Record<string, unknown>[];
|
|
41
|
-
selectedKeys: Array<string | number>;
|
|
42
|
-
}
|
|
43
|
-
interface TableSearchChangeDetail {
|
|
44
|
-
values: Array<{
|
|
45
|
-
key: string;
|
|
46
|
-
value: string;
|
|
47
|
-
}>;
|
|
48
|
-
}
|
|
49
|
-
interface TableWidthChangeDetail {
|
|
50
|
-
column: TableColumn;
|
|
51
|
-
key: string;
|
|
52
|
-
width: number;
|
|
53
|
-
}
|
|
54
|
-
declare class LogosphereTable {
|
|
55
|
-
columns: _angular_core.InputSignal<TableColumn[]>;
|
|
56
|
-
actionColumn: _angular_core.InputSignal<TableActionColumn | undefined>;
|
|
57
|
-
rows: _angular_core.InputSignal<Record<string, unknown>[]>;
|
|
58
|
-
rowKey: _angular_core.InputSignal<string>;
|
|
59
|
-
emptyMessage: _angular_core.InputSignal<string>;
|
|
60
|
-
maxHeight: _angular_core.InputSignal<number | undefined>;
|
|
61
|
-
selection: _angular_core.InputSignal<boolean>;
|
|
62
|
-
stickySelection: _angular_core.InputSignal<boolean>;
|
|
63
|
-
resizable: _angular_core.InputSignal<boolean>;
|
|
64
|
-
borderless: _angular_core.InputSignal<boolean>;
|
|
65
|
-
rowClick: _angular_core.OutputEmitterRef<{
|
|
66
|
-
row: Record<string, unknown>;
|
|
67
|
-
rowIndex: number;
|
|
68
|
-
}>;
|
|
69
|
-
sortChange: _angular_core.OutputEmitterRef<TableSortChangeDetail>;
|
|
70
|
-
selectChange: _angular_core.OutputEmitterRef<TableSelectionChangeDetail>;
|
|
71
|
-
search: _angular_core.OutputEmitterRef<TableSearchChangeDetail>;
|
|
72
|
-
widthChange: _angular_core.OutputEmitterRef<TableWidthChangeDetail>;
|
|
73
|
-
sortChangeHandler: (detail: TableSortChangeDetail) => void;
|
|
74
|
-
selectChangeHandler: (detail: TableSelectionChangeDetail) => void;
|
|
75
|
-
searchHandler: (detail: TableSearchChangeDetail) => void;
|
|
76
|
-
widthChangeHandler: (detail: TableWidthChangeDetail) => void;
|
|
77
|
-
onRowClick(event: Event): void;
|
|
78
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LogosphereTable, never>;
|
|
79
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LogosphereTable, "lgs-table", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "actionColumn": { "alias": "actionColumn"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "rowKey": { "alias": "rowKey"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; "stickySelection": { "alias": "stickySelection"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "borderless": { "alias": "borderless"; "required": false; "isSignal": true; }; }, { "rowClick": "rowClick"; "sortChange": "sortChange"; "selectChange": "selectChange"; "search": "search"; "widthChange": "widthChange"; }, never, never, true, never>;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export { LogosphereTable };
|
|
83
|
-
export type { TableActionColumn, TableActionContext, TableCellContext, TableColumn, TableSearchChangeDetail, TableSelectionChangeDetail, TableSortChangeDetail, TableWidthChangeDetail };
|