boruto-xrmui 1.0.0
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/README.md +12 -0
- package/fesm2022/boruto-xrmui.mjs +1372 -0
- package/fesm2022/boruto-xrmui.mjs.map +1 -0
- package/package.json +25 -0
- package/types/boruto-xrmui.d.ts +394 -0
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { ElementRef, AfterViewInit, OnInit, OnDestroy, AfterContentInit } from '@angular/core';
|
|
3
|
+
import * as i1 from 'xrmui';
|
|
4
|
+
import { BehaviorSubject, Subscription } from 'rxjs';
|
|
5
|
+
|
|
6
|
+
declare class KoButtonGroupComponent {
|
|
7
|
+
constructor();
|
|
8
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoButtonGroupComponent, never>;
|
|
9
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoButtonGroupComponent, "ko-button-group", never, {}, {}, never, ["*"], true, never>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare class KoDecimalDirective {
|
|
13
|
+
private el;
|
|
14
|
+
constructor(el: ElementRef);
|
|
15
|
+
decimals: _angular_core.InputSignal<number>;
|
|
16
|
+
value: _angular_core.InputSignal<number | null>;
|
|
17
|
+
valueChanged: _angular_core.OutputEmitterRef<number | null>;
|
|
18
|
+
align: _angular_core.InputSignal<string>;
|
|
19
|
+
controlDown: boolean;
|
|
20
|
+
syncThread: any;
|
|
21
|
+
onKeydown($event: KeyboardEvent): boolean;
|
|
22
|
+
onBlur(): void;
|
|
23
|
+
private setValueString;
|
|
24
|
+
private bindValueBack;
|
|
25
|
+
private doBindValueBack;
|
|
26
|
+
private numberToString;
|
|
27
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoDecimalDirective, never>;
|
|
28
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KoDecimalDirective, "[ko-decimal]", never, { "decimals": { "alias": "ko-decimals"; "required": false; "isSignal": true; }; "value": { "alias": "ko-value"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; }, { "valueChanged": "ko-valueChange"; }, never, never, true, never>;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
declare class KoFocusDirective {
|
|
32
|
+
private hostElement;
|
|
33
|
+
focus: _angular_core.InputSignal<boolean>;
|
|
34
|
+
focusChange: _angular_core.OutputEmitterRef<boolean>;
|
|
35
|
+
constructor();
|
|
36
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoFocusDirective, never>;
|
|
37
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KoFocusDirective, "[ko-focus]", never, { "focus": { "alias": "ko-focus"; "required": false; "isSignal": true; }; }, { "focusChange": "ko-focusChange"; }, never, never, true, never>;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
declare class KoAlertComponent {
|
|
41
|
+
align: string;
|
|
42
|
+
constructor();
|
|
43
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoAlertComponent, never>;
|
|
44
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoAlertComponent, "ko-alert", never, { "align": { "alias": "align"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
declare class KoHeaderComponent {
|
|
48
|
+
align: _angular_core.InputSignal<string>;
|
|
49
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoHeaderComponent, never>;
|
|
50
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoHeaderComponent, "ko-header", never, { "align": { "alias": "align"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
declare class KoWriteDirective {
|
|
54
|
+
direction: _angular_core.InputSignal<string>;
|
|
55
|
+
private hostElement;
|
|
56
|
+
constructor();
|
|
57
|
+
private render;
|
|
58
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoWriteDirective, never>;
|
|
59
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KoWriteDirective, "[ko-write]", never, { "direction": { "alias": "ko-write"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
interface KoNavigation {
|
|
63
|
+
id: string;
|
|
64
|
+
title: string | null;
|
|
65
|
+
disabled: boolean;
|
|
66
|
+
click: any;
|
|
67
|
+
over: boolean | null;
|
|
68
|
+
cssClass: string | null;
|
|
69
|
+
imgUrl: string | null;
|
|
70
|
+
}
|
|
71
|
+
declare class KoDivider implements KoNavigation {
|
|
72
|
+
id: string;
|
|
73
|
+
title: string | null;
|
|
74
|
+
disabled: boolean;
|
|
75
|
+
click: any;
|
|
76
|
+
over: boolean | null;
|
|
77
|
+
cssClass: string | null;
|
|
78
|
+
imgUrl: string | null;
|
|
79
|
+
constructor();
|
|
80
|
+
}
|
|
81
|
+
declare class KoNavigationByCssClass implements KoNavigation {
|
|
82
|
+
id: string;
|
|
83
|
+
title: string | null;
|
|
84
|
+
disabled: boolean;
|
|
85
|
+
cssClass: string;
|
|
86
|
+
click: any;
|
|
87
|
+
over: boolean | null;
|
|
88
|
+
imgUrl: string | null;
|
|
89
|
+
constructor(id: string, cssClass: string);
|
|
90
|
+
constructor(id: string, cssClass: string, disabled: boolean);
|
|
91
|
+
constructor(id: string, cssClass: string, disabled: boolean, title: string);
|
|
92
|
+
constructor(id: string, cssClass: string, disabled: boolean, title: string, click: any);
|
|
93
|
+
}
|
|
94
|
+
declare class KoNavigationByImageUrl implements KoNavigation {
|
|
95
|
+
id: string;
|
|
96
|
+
title: string | null;
|
|
97
|
+
disabled: boolean;
|
|
98
|
+
imgUrl: string;
|
|
99
|
+
click: any;
|
|
100
|
+
over: boolean | null;
|
|
101
|
+
cssClass: string | null;
|
|
102
|
+
constructor(id: string, imgUrl: string);
|
|
103
|
+
constructor(id: string, imgUrl: string, disabled: boolean);
|
|
104
|
+
constructor(id: string, imgUrl: string, disabled: boolean, title: string);
|
|
105
|
+
constructor(id: string, imgUrl: string, disabled: boolean, title: string, click: any);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
declare class KoLeftMenuComponent implements AfterViewInit {
|
|
109
|
+
private er;
|
|
110
|
+
items: _angular_core.InputSignal<KoNavigation[]>;
|
|
111
|
+
current: _angular_core.InputSignal<string | null>;
|
|
112
|
+
currentChange: _angular_core.OutputEmitterRef<string | null>;
|
|
113
|
+
private itemheight$;
|
|
114
|
+
over: _angular_core.WritableSignal<KoNavigation | null>;
|
|
115
|
+
constructor();
|
|
116
|
+
itemheight(v: KoNavigation): string;
|
|
117
|
+
ngAfterViewInit(): void;
|
|
118
|
+
setCurrent(item: KoNavigation): void;
|
|
119
|
+
overItem(v: KoNavigation | null): void;
|
|
120
|
+
outItem(): void;
|
|
121
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoLeftMenuComponent, never>;
|
|
122
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoLeftMenuComponent, "ko-left-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "current": { "alias": "current"; "required": false; "isSignal": true; }; }, { "currentChange": "currentChange"; }, never, ["*"], true, never>;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
declare class KoTopMenuComponent implements AfterViewInit {
|
|
126
|
+
private er;
|
|
127
|
+
items: _angular_core.InputSignal<KoNavigation[]>;
|
|
128
|
+
current: _angular_core.InputSignal<string | null>;
|
|
129
|
+
currentChange: _angular_core.OutputEmitterRef<string | null>;
|
|
130
|
+
over: _angular_core.WritableSignal<KoNavigation | null>;
|
|
131
|
+
topcornerwidth: _angular_core.WritableSignal<string>;
|
|
132
|
+
constructor();
|
|
133
|
+
ngAfterViewInit(): void;
|
|
134
|
+
setCurrent(item: KoNavigation): void;
|
|
135
|
+
itemwidth(v: KoNavigation): string;
|
|
136
|
+
overItem(v: KoNavigation | null): void;
|
|
137
|
+
outItem(): void;
|
|
138
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoTopMenuComponent, never>;
|
|
139
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoTopMenuComponent, "ko-top-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "current": { "alias": "current"; "required": false; "isSignal": true; }; }, { "currentChange": "currentChange"; }, never, ["*"], true, never>;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
declare class KoOverDirective {
|
|
143
|
+
private el;
|
|
144
|
+
constructor();
|
|
145
|
+
current: _angular_core.InputSignal<any>;
|
|
146
|
+
onMouseover($event: MouseEvent): void;
|
|
147
|
+
onMouseleave($event: MouseEvent): void;
|
|
148
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoOverDirective, never>;
|
|
149
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KoOverDirective, "[ko-over]", never, { "current": { "alias": "ko-over"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
declare class KoExpansionPanelComponent {
|
|
153
|
+
expanded: _angular_core.InputSignal<boolean>;
|
|
154
|
+
expandedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
155
|
+
isExpanded: _angular_core.WritableSignal<boolean>;
|
|
156
|
+
constructor();
|
|
157
|
+
toggle(): void;
|
|
158
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoExpansionPanelComponent, never>;
|
|
159
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoExpansionPanelComponent, "ko-expansion-panel", never, { "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expandedChange": "expandedChange"; }, never, ["[ko-title]", "[ko-body]"], true, never>;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
declare class KoHorizontalScrollComponent {
|
|
163
|
+
constructor();
|
|
164
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoHorizontalScrollComponent, never>;
|
|
165
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoHorizontalScrollComponent, "ko-horizontal-scroll", never, {}, {}, never, ["*"], true, never>;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
declare class KoHorizontalSplitComponent {
|
|
169
|
+
height: _angular_core.InputSignal<string>;
|
|
170
|
+
fixed: _angular_core.InputSignal<"top" | "bottom">;
|
|
171
|
+
constructor();
|
|
172
|
+
topStyle: any;
|
|
173
|
+
bottomStyle: any;
|
|
174
|
+
private init;
|
|
175
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoHorizontalSplitComponent, never>;
|
|
176
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoHorizontalSplitComponent, "ko-horizontal-split", never, { "height": { "alias": "height"; "required": false; "isSignal": true; }; "fixed": { "alias": "fixed"; "required": false; "isSignal": true; }; }, {}, never, ["[ko-top]", "[ko-bottom]"], true, never>;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
declare class KoMainComponent {
|
|
180
|
+
constructor();
|
|
181
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoMainComponent, never>;
|
|
182
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoMainComponent, "ko-main", never, {}, {}, never, ["*"], true, never>;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
declare class KoTablePanelComponent implements AfterViewInit {
|
|
186
|
+
tableheader: ElementRef;
|
|
187
|
+
tablebody: ElementRef;
|
|
188
|
+
tablefooter: ElementRef;
|
|
189
|
+
height: _angular_core.InputSignal<string>;
|
|
190
|
+
private cdRef;
|
|
191
|
+
constructor();
|
|
192
|
+
private topHeight;
|
|
193
|
+
private fotHeight;
|
|
194
|
+
private hasTop;
|
|
195
|
+
private hasFot;
|
|
196
|
+
topStyle: _angular_core.WritableSignal<any>;
|
|
197
|
+
bodStyle: _angular_core.WritableSignal<any>;
|
|
198
|
+
fotStyle: _angular_core.WritableSignal<any>;
|
|
199
|
+
ngAfterViewInit(): void;
|
|
200
|
+
updateScroll(): void;
|
|
201
|
+
private setStyle;
|
|
202
|
+
private doSetStyle;
|
|
203
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoTablePanelComponent, never>;
|
|
204
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoTablePanelComponent, "ko-table-panel", never, { "height": { "alias": "height"; "required": false; "isSignal": true; }; }, {}, never, ["[ko-table-header]", "[ko-table-body]", "[ko-table-footer]"], true, never>;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
declare class KoTitlePanelComponent {
|
|
208
|
+
constructor();
|
|
209
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoTitlePanelComponent, never>;
|
|
210
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoTitlePanelComponent, "ko-title-panel", never, {}, {}, never, ["[ko-title]", "[ko-body]"], true, never>;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
declare class KoVerticalScrollComponent {
|
|
214
|
+
constructor();
|
|
215
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoVerticalScrollComponent, never>;
|
|
216
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoVerticalScrollComponent, "ko-vertical-scroll", never, {}, {}, never, ["*"], true, never>;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
declare class KoViewComponent {
|
|
220
|
+
constructor();
|
|
221
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoViewComponent, never>;
|
|
222
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoViewComponent, "ko-view", never, {}, {}, never, ["*"], true, never>;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
declare class KoVerticalSplitComponent {
|
|
226
|
+
width: _angular_core.InputSignal<string>;
|
|
227
|
+
fixed: _angular_core.InputSignal<"right" | "left">;
|
|
228
|
+
constructor();
|
|
229
|
+
leftStyle: _angular_core.WritableSignal<any>;
|
|
230
|
+
rightStyle: _angular_core.WritableSignal<any>;
|
|
231
|
+
private init;
|
|
232
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KoVerticalSplitComponent, never>;
|
|
233
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KoVerticalSplitComponent, "ko-vertical-split", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "fixed": { "alias": "fixed"; "required": false; "isSignal": true; }; }, {}, never, ["[ko-left]", "[ko-right]"], true, never>;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
declare class KiponUiModule {
|
|
237
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KiponUiModule, never>;
|
|
238
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<KiponUiModule, never, [typeof i1.KoHorizontalScrollComponent, typeof i1.KoHorizontalSplitComponent, typeof i1.KoMainComponent, typeof i1.KoTitlePanelComponent, typeof i1.KoVerticalScrollComponent, typeof i1.KoVerticalSplitComponent, typeof i1.KoViewComponent, typeof i1.KoExpansionPanelComponent, typeof i1.KoTablePanelComponent, typeof i1.KoButtonGroupComponent, typeof i1.KoDecimalDirective, typeof i1.KoFocusDirective, typeof i1.KoAlertComponent, typeof i1.KoHeaderComponent, typeof i1.KoOverDirective, typeof i1.KoTopMenuComponent, typeof i1.KoLeftMenuComponent, typeof i1.KoWriteDirective], [typeof i1.KoHorizontalScrollComponent, typeof i1.KoHorizontalSplitComponent, typeof i1.KoMainComponent, typeof i1.KoTitlePanelComponent, typeof i1.KoVerticalScrollComponent, typeof i1.KoVerticalSplitComponent, typeof i1.KoViewComponent, typeof i1.KoExpansionPanelComponent, typeof i1.KoTablePanelComponent, typeof i1.KoButtonGroupComponent, typeof i1.KoDecimalDirective, typeof i1.KoFocusDirective, typeof i1.KoAlertComponent, typeof i1.KoHeaderComponent, typeof i1.KoOverDirective, typeof i1.KoTopMenuComponent, typeof i1.KoLeftMenuComponent, typeof i1.KoWriteDirective]>;
|
|
239
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<KiponUiModule>;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
interface IMenu {
|
|
243
|
+
id: number;
|
|
244
|
+
label?: string;
|
|
245
|
+
icon?: string;
|
|
246
|
+
disabled?: boolean;
|
|
247
|
+
badget?: number;
|
|
248
|
+
key?: string;
|
|
249
|
+
click?(): void;
|
|
250
|
+
clickAsync?(): Promise<void>;
|
|
251
|
+
effects?: string[];
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
interface OptionSetValue {
|
|
255
|
+
value?: number;
|
|
256
|
+
name?: string;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
interface ISelectable {
|
|
260
|
+
id: string;
|
|
261
|
+
name?: string;
|
|
262
|
+
selected?: boolean;
|
|
263
|
+
disabled?: boolean;
|
|
264
|
+
badget?: number;
|
|
265
|
+
statecode?: OptionSetValue;
|
|
266
|
+
group?: string;
|
|
267
|
+
color?: string;
|
|
268
|
+
latitude?: number;
|
|
269
|
+
longitude?: number;
|
|
270
|
+
coorcolor?: string;
|
|
271
|
+
}
|
|
272
|
+
interface ISelectableService {
|
|
273
|
+
key: string;
|
|
274
|
+
empty: boolean;
|
|
275
|
+
items(): BehaviorSubject<ISelectable[]>;
|
|
276
|
+
clearAllSelections(): void;
|
|
277
|
+
toggled?(id: string): void;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
interface OptionValue {
|
|
281
|
+
Name: string;
|
|
282
|
+
Value: number;
|
|
283
|
+
Color: string;
|
|
284
|
+
Sort: number;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
interface IGroupedSelectable {
|
|
288
|
+
group?: string;
|
|
289
|
+
items: ISelectable[];
|
|
290
|
+
}
|
|
291
|
+
declare class XrmuiInfo implements OnInit, OnDestroy {
|
|
292
|
+
private selectedService;
|
|
293
|
+
label: _angular_core.InputSignal<string | undefined>;
|
|
294
|
+
onlyshowselected: _angular_core.InputSignal<boolean>;
|
|
295
|
+
items: _angular_core.InputSignal<ISelectableService | undefined>;
|
|
296
|
+
icon: _angular_core.InputSignal<string | undefined>;
|
|
297
|
+
click: _angular_core.OutputEmitterRef<void>;
|
|
298
|
+
clear: _angular_core.OutputEmitterRef<void>;
|
|
299
|
+
badget: _angular_core.InputSignal<number | undefined>;
|
|
300
|
+
list$?: Subscription;
|
|
301
|
+
list: ISelectable[];
|
|
302
|
+
select$?: Subscription;
|
|
303
|
+
grouped: IGroupedSelectable[];
|
|
304
|
+
over: ISelectable | null;
|
|
305
|
+
isnot: boolean;
|
|
306
|
+
isnot$?: Subscription;
|
|
307
|
+
constructor();
|
|
308
|
+
ngOnInit(): void;
|
|
309
|
+
ngOnDestroy(): void;
|
|
310
|
+
onClick(): void;
|
|
311
|
+
doClear(): void;
|
|
312
|
+
isover(v: ISelectable): void;
|
|
313
|
+
isout(): void;
|
|
314
|
+
remove(e: Event, v: ISelectable): void;
|
|
315
|
+
private doGrouping;
|
|
316
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XrmuiInfo, never>;
|
|
317
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XrmuiInfo, "xrmui-info", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "onlyshowselected": { "alias": "onlyshowselected"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "badget": { "alias": "badget"; "required": false; "isSignal": true; }; }, { "click": "click"; "clear": "clear"; }, never, ["*"], true, never>;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
declare class XrmuiPanel$1 {
|
|
321
|
+
orientation: 'horizontal' | 'vertical';
|
|
322
|
+
top: string;
|
|
323
|
+
bottom: string;
|
|
324
|
+
height: string;
|
|
325
|
+
left: string;
|
|
326
|
+
right: string;
|
|
327
|
+
width: string;
|
|
328
|
+
style: string;
|
|
329
|
+
resizeStyle: string;
|
|
330
|
+
dyn: boolean;
|
|
331
|
+
index: number;
|
|
332
|
+
private initialWidth;
|
|
333
|
+
private initialHeight;
|
|
334
|
+
render(isresize?: boolean): void;
|
|
335
|
+
private add;
|
|
336
|
+
moveTo(pixel: number, next: XrmuiPanel$1): void;
|
|
337
|
+
endResize(): void;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
declare class XrmuiLayout implements AfterViewInit, OnDestroy {
|
|
341
|
+
_panels: _angular_core.InputSignal<string>;
|
|
342
|
+
_orientation: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
343
|
+
_resizeable: _angular_core.InputSignal<boolean>;
|
|
344
|
+
panels: _angular_core.WritableSignal<string>;
|
|
345
|
+
orientation: _angular_core.WritableSignal<"horizontal" | "vertical">;
|
|
346
|
+
resizeable: _angular_core.WritableSignal<boolean>;
|
|
347
|
+
private totalHeight;
|
|
348
|
+
private totalWidth;
|
|
349
|
+
private unit;
|
|
350
|
+
private panellist$;
|
|
351
|
+
panellist: _angular_core.Signal<XrmuiPanel$1[]>;
|
|
352
|
+
private element;
|
|
353
|
+
constructor();
|
|
354
|
+
private resizeObserver?;
|
|
355
|
+
ngAfterViewInit(): void;
|
|
356
|
+
ngOnDestroy(): void;
|
|
357
|
+
private render;
|
|
358
|
+
resize(e: any, panel: XrmuiPanel$1): void;
|
|
359
|
+
drop(e: any, panel: XrmuiPanel$1): void;
|
|
360
|
+
private toUnit;
|
|
361
|
+
private getNumbers;
|
|
362
|
+
private sizeToNumber;
|
|
363
|
+
private sumAfter;
|
|
364
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XrmuiLayout, never>;
|
|
365
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XrmuiLayout, "xrmui-layout", never, { "_panels": { "alias": "panels"; "required": false; "isSignal": true; }; "_orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "_resizeable": { "alias": "resizeable"; "required": false; "isSignal": true; }; }, {}, never, ["[C1]", "[C2]", "[C3]", "[C4]", "[C5]"], true, never>;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
declare class XrmuiPanel {
|
|
369
|
+
constructor();
|
|
370
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XrmuiPanel, never>;
|
|
371
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XrmuiPanel, "xrmui-panel", never, {}, {}, never, ["*"], true, never>;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
declare class XrmuiIcon implements AfterContentInit {
|
|
375
|
+
private host;
|
|
376
|
+
_icon: _angular_core.InputSignal<string>;
|
|
377
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
378
|
+
type: _angular_core.InputSignal<"mat" | "fa">;
|
|
379
|
+
icon: _angular_core.WritableSignal<string>;
|
|
380
|
+
classes: _angular_core.Signal<string[]>;
|
|
381
|
+
constructor();
|
|
382
|
+
ngAfterContentInit(): void;
|
|
383
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XrmuiIcon, never>;
|
|
384
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XrmuiIcon, "xrmui-icon", never, { "_icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
declare class BorutoXrmUIModule {
|
|
388
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BorutoXrmUIModule, never>;
|
|
389
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<BorutoXrmUIModule, never, [typeof i1.XrmuiInfo, typeof XrmuiLayout, typeof i1.XrmuiPanel, typeof i1.XrmuiIcon], [typeof i1.XrmuiInfo, typeof XrmuiLayout, typeof i1.XrmuiPanel, typeof i1.XrmuiIcon]>;
|
|
390
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<BorutoXrmUIModule>;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export { BorutoXrmUIModule, KiponUiModule, KoAlertComponent, KoButtonGroupComponent, KoDecimalDirective, KoDivider, KoExpansionPanelComponent, KoFocusDirective, KoHeaderComponent, KoHorizontalScrollComponent, KoHorizontalSplitComponent, KoLeftMenuComponent, KoMainComponent, KoNavigationByCssClass, KoNavigationByImageUrl, KoOverDirective, KoTablePanelComponent, KoTitlePanelComponent, KoTopMenuComponent, KoVerticalScrollComponent, KoVerticalSplitComponent, KoViewComponent, KoWriteDirective, XrmuiIcon, XrmuiInfo, XrmuiLayout, XrmuiPanel };
|
|
394
|
+
export type { IGroupedSelectable, IMenu, ISelectable, ISelectableService, KoNavigation, OptionSetValue, OptionValue };
|