@logosphere-ui/angular 0.0.1-alpha.9 → 0.0.1-beta.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/fesm2022/logosphere-ui-angular-src-lib-accordion.mjs +59 -0
- package/fesm2022/logosphere-ui-angular-src-lib-accordion.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-button.mjs +20 -4
- package/fesm2022/logosphere-ui-angular-src-lib-button.mjs.map +1 -1
- package/fesm2022/logosphere-ui-angular-src-lib-chip-group.mjs +49 -0
- package/fesm2022/logosphere-ui-angular-src-lib-chip-group.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-collapse.mjs +59 -0
- package/fesm2022/logosphere-ui-angular-src-lib-collapse.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-combobox.mjs +44 -13
- package/fesm2022/logosphere-ui-angular-src-lib-combobox.mjs.map +1 -1
- package/fesm2022/logosphere-ui-angular-src-lib-icon.mjs +26 -0
- package/fesm2022/logosphere-ui-angular-src-lib-icon.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-input-group.mjs +33 -0
- package/fesm2022/logosphere-ui-angular-src-lib-input-group.mjs.map +1 -0
- 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-src-lib-loading.mjs +26 -0
- package/fesm2022/logosphere-ui-angular-src-lib-loading.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-slider.mjs +76 -0
- package/fesm2022/logosphere-ui-angular-src-lib-slider.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-split-button.mjs +77 -0
- package/fesm2022/logosphere-ui-angular-src-lib-split-button.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-stepper.mjs +49 -0
- package/fesm2022/logosphere-ui-angular-src-lib-stepper.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular-src-lib-table.mjs +83 -0
- package/fesm2022/logosphere-ui-angular-src-lib-table.mjs.map +1 -0
- package/fesm2022/logosphere-ui-angular.mjs +516 -19
- package/fesm2022/logosphere-ui-angular.mjs.map +1 -1
- package/package.json +42 -2
- package/types/logosphere-ui-angular-src-lib-accordion.d.ts +26 -0
- package/types/logosphere-ui-angular-src-lib-button.d.ts +3 -1
- package/types/logosphere-ui-angular-src-lib-chip-group.d.ts +24 -0
- package/types/logosphere-ui-angular-src-lib-collapse.d.ts +18 -0
- package/types/logosphere-ui-angular-src-lib-combobox.d.ts +32 -7
- package/types/logosphere-ui-angular-src-lib-icon.d.ts +10 -0
- package/types/logosphere-ui-angular-src-lib-input-group.d.ts +9 -0
- package/types/logosphere-ui-angular-src-lib-input.d.ts +2 -1
- package/types/logosphere-ui-angular-src-lib-loading.d.ts +10 -0
- package/types/logosphere-ui-angular-src-lib-slider.d.ts +27 -0
- package/types/logosphere-ui-angular-src-lib-split-button.d.ts +33 -0
- package/types/logosphere-ui-angular-src-lib-stepper.d.ts +26 -0
- package/types/logosphere-ui-angular-src-lib-table.d.ts +83 -0
- package/types/logosphere-ui-angular.d.ts +271 -11
|
@@ -4,12 +4,21 @@ import '@logosphere-ui/core/badge';
|
|
|
4
4
|
import '@logosphere-ui/core/button';
|
|
5
5
|
import '@logosphere-ui/core/checkbox';
|
|
6
6
|
import '@logosphere-ui/core/formfield';
|
|
7
|
+
import '@logosphere-ui/core/loading';
|
|
8
|
+
import '@logosphere-ui/core/slider';
|
|
7
9
|
import '@logosphere-ui/core/switch';
|
|
10
|
+
import '@logosphere-ui/core/accordion';
|
|
8
11
|
import '@logosphere-ui/core/breadcrumb';
|
|
9
12
|
import '@logosphere-ui/core/card';
|
|
13
|
+
import '@logosphere-ui/core/chip-group';
|
|
14
|
+
import '@logosphere-ui/core/collapse';
|
|
15
|
+
import '@logosphere-ui/core/icon';
|
|
10
16
|
import '@logosphere-ui/core/input';
|
|
17
|
+
import '@logosphere-ui/core/input-group';
|
|
11
18
|
import '@logosphere-ui/core/pagination';
|
|
12
19
|
import '@logosphere-ui/core/popover';
|
|
20
|
+
import '@logosphere-ui/core/split-button';
|
|
21
|
+
import '@logosphere-ui/core/stepper';
|
|
13
22
|
import '@logosphere-ui/core/textarea';
|
|
14
23
|
import '@logosphere-ui/core/timepicker';
|
|
15
24
|
import '@logosphere-ui/core/calendar';
|
|
@@ -21,6 +30,7 @@ import '@logosphere-ui/core/drawer';
|
|
|
21
30
|
import '@logosphere-ui/core/left-menu';
|
|
22
31
|
import '@logosphere-ui/core/modal';
|
|
23
32
|
import '@logosphere-ui/core/tab';
|
|
33
|
+
import '@logosphere-ui/core/table';
|
|
24
34
|
import '@logosphere-ui/core/toast';
|
|
25
35
|
import '@logosphere-ui/core/tree-menu';
|
|
26
36
|
|
|
@@ -72,9 +82,18 @@ class LogosphereButton {
|
|
|
72
82
|
size = input('md', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
73
83
|
variant = input('primary', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
74
84
|
iconOnly = input(false, ...(ngDevMode ? [{ debugName: "iconOnly" }] : []));
|
|
85
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
86
|
+
loading = input(false, ...(ngDevMode ? [{ debugName: "loading" }] : []));
|
|
75
87
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
76
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereButton, isStandalone: true, selector: "lgs-button", inputs: { theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, iconOnly: { classPropertyName: "iconOnly", publicName: "iconOnly", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
77
|
-
<logosphere-button
|
|
88
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereButton, isStandalone: true, selector: "lgs-button", inputs: { theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, iconOnly: { classPropertyName: "iconOnly", publicName: "iconOnly", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
89
|
+
<logosphere-button
|
|
90
|
+
[theme]="theme()"
|
|
91
|
+
[size]="size()"
|
|
92
|
+
[variant]="variant()"
|
|
93
|
+
[iconOnly]="iconOnly()"
|
|
94
|
+
[disabled]="disabled()"
|
|
95
|
+
[loading]="loading()"
|
|
96
|
+
>
|
|
78
97
|
<ng-content></ng-content>
|
|
79
98
|
</logosphere-button>`, isInline: true });
|
|
80
99
|
}
|
|
@@ -84,12 +103,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
84
103
|
selector: 'lgs-button',
|
|
85
104
|
imports: [],
|
|
86
105
|
template: `
|
|
87
|
-
<logosphere-button
|
|
106
|
+
<logosphere-button
|
|
107
|
+
[theme]="theme()"
|
|
108
|
+
[size]="size()"
|
|
109
|
+
[variant]="variant()"
|
|
110
|
+
[iconOnly]="iconOnly()"
|
|
111
|
+
[disabled]="disabled()"
|
|
112
|
+
[loading]="loading()"
|
|
113
|
+
>
|
|
88
114
|
<ng-content></ng-content>
|
|
89
115
|
</logosphere-button>`,
|
|
90
116
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
91
117
|
}]
|
|
92
|
-
}], propDecorators: { theme: [{ type: i0.Input, args: [{ isSignal: true, alias: "theme", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], iconOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconOnly", required: false }] }] } });
|
|
118
|
+
}], propDecorators: { theme: [{ type: i0.Input, args: [{ isSignal: true, alias: "theme", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], iconOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconOnly", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], loading: [{ type: i0.Input, args: [{ isSignal: true, alias: "loading", required: false }] }] } });
|
|
93
119
|
|
|
94
120
|
class LogosphereCheckbox {
|
|
95
121
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
@@ -202,6 +228,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
202
228
|
}]
|
|
203
229
|
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], helper: [{ type: i0.Input, args: [{ isSignal: true, alias: "helper", required: false }] }], error: [{ type: i0.Input, args: [{ isSignal: true, alias: "error", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], cursor: [{ type: i0.Input, args: [{ isSignal: true, alias: "cursor", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], readonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], multiline: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiline", required: false }] }], forceFocused: [{ type: i0.Input, args: [{ isSignal: true, alias: "forceFocused", required: false }] }] } });
|
|
204
230
|
|
|
231
|
+
class LogosphereLoading {
|
|
232
|
+
label = input('Yükleniyor', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
233
|
+
variant = input('default', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
234
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereLoading, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
235
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereLoading, isStandalone: true, selector: "lgs-loading", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `<logosphere-loading [label]="label()" [variant]="variant()"></logosphere-loading>`, isInline: true });
|
|
236
|
+
}
|
|
237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereLoading, decorators: [{
|
|
238
|
+
type: Component,
|
|
239
|
+
args: [{
|
|
240
|
+
selector: 'lgs-loading',
|
|
241
|
+
imports: [],
|
|
242
|
+
template: `<logosphere-loading [label]="label()" [variant]="variant()"></logosphere-loading>`,
|
|
243
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
244
|
+
}]
|
|
245
|
+
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }] } });
|
|
246
|
+
|
|
247
|
+
class LogosphereSlider {
|
|
248
|
+
value = input(50, ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
249
|
+
min = input(0, ...(ngDevMode ? [{ debugName: "min" }] : []));
|
|
250
|
+
max = input(100, ...(ngDevMode ? [{ debugName: "max" }] : []));
|
|
251
|
+
step = input(1, ...(ngDevMode ? [{ debugName: "step" }] : []));
|
|
252
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
253
|
+
range = input(false, ...(ngDevMode ? [{ debugName: "range" }] : []));
|
|
254
|
+
rangeStart = input(25, ...(ngDevMode ? [{ debugName: "rangeStart" }] : []));
|
|
255
|
+
rangeEnd = input(75, ...(ngDevMode ? [{ debugName: "rangeEnd" }] : []));
|
|
256
|
+
minDistance = input(0, ...(ngDevMode ? [{ debugName: "minDistance" }] : []));
|
|
257
|
+
tooltip = input('never', ...(ngDevMode ? [{ debugName: "tooltip" }] : []));
|
|
258
|
+
showScale = input(false, ...(ngDevMode ? [{ debugName: "showScale" }] : []));
|
|
259
|
+
percentage = input(false, ...(ngDevMode ? [{ debugName: "percentage" }] : []));
|
|
260
|
+
labels = input([], ...(ngDevMode ? [{ debugName: "labels" }] : []));
|
|
261
|
+
sliderChange = output();
|
|
262
|
+
onSliderChange(event) {
|
|
263
|
+
const e = event;
|
|
264
|
+
this.sliderChange.emit(e.detail);
|
|
265
|
+
}
|
|
266
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSlider, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
267
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereSlider, isStandalone: true, selector: "lgs-slider", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, range: { classPropertyName: "range", publicName: "range", isSignal: true, isRequired: false, transformFunction: null }, rangeStart: { classPropertyName: "rangeStart", publicName: "rangeStart", isSignal: true, isRequired: false, transformFunction: null }, rangeEnd: { classPropertyName: "rangeEnd", publicName: "rangeEnd", isSignal: true, isRequired: false, transformFunction: null }, minDistance: { classPropertyName: "minDistance", publicName: "minDistance", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null }, showScale: { classPropertyName: "showScale", publicName: "showScale", isSignal: true, isRequired: false, transformFunction: null }, percentage: { classPropertyName: "percentage", publicName: "percentage", isSignal: true, isRequired: false, transformFunction: null }, labels: { classPropertyName: "labels", publicName: "labels", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { sliderChange: "sliderChange" }, ngImport: i0, template: `
|
|
268
|
+
<logosphere-slider
|
|
269
|
+
[value]="value()"
|
|
270
|
+
[min]="min()"
|
|
271
|
+
[max]="max()"
|
|
272
|
+
[step]="step()"
|
|
273
|
+
[disabled]="disabled()"
|
|
274
|
+
[range]="range()"
|
|
275
|
+
[rangeStart]="rangeStart()"
|
|
276
|
+
[rangeEnd]="rangeEnd()"
|
|
277
|
+
[minDistance]="minDistance()"
|
|
278
|
+
[tooltip]="tooltip()"
|
|
279
|
+
[showScale]="showScale()"
|
|
280
|
+
[percentage]="percentage()"
|
|
281
|
+
[labels]="labels()"
|
|
282
|
+
(change)="onSliderChange($event)"
|
|
283
|
+
></logosphere-slider>
|
|
284
|
+
`, isInline: true });
|
|
285
|
+
}
|
|
286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSlider, decorators: [{
|
|
287
|
+
type: Component,
|
|
288
|
+
args: [{
|
|
289
|
+
selector: 'lgs-slider',
|
|
290
|
+
imports: [],
|
|
291
|
+
template: `
|
|
292
|
+
<logosphere-slider
|
|
293
|
+
[value]="value()"
|
|
294
|
+
[min]="min()"
|
|
295
|
+
[max]="max()"
|
|
296
|
+
[step]="step()"
|
|
297
|
+
[disabled]="disabled()"
|
|
298
|
+
[range]="range()"
|
|
299
|
+
[rangeStart]="rangeStart()"
|
|
300
|
+
[rangeEnd]="rangeEnd()"
|
|
301
|
+
[minDistance]="minDistance()"
|
|
302
|
+
[tooltip]="tooltip()"
|
|
303
|
+
[showScale]="showScale()"
|
|
304
|
+
[percentage]="percentage()"
|
|
305
|
+
[labels]="labels()"
|
|
306
|
+
(change)="onSliderChange($event)"
|
|
307
|
+
></logosphere-slider>
|
|
308
|
+
`,
|
|
309
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
310
|
+
}]
|
|
311
|
+
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], min: [{ type: i0.Input, args: [{ isSignal: true, alias: "min", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], step: [{ type: i0.Input, args: [{ isSignal: true, alias: "step", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], range: [{ type: i0.Input, args: [{ isSignal: true, alias: "range", required: false }] }], rangeStart: [{ type: i0.Input, args: [{ isSignal: true, alias: "rangeStart", required: false }] }], rangeEnd: [{ type: i0.Input, args: [{ isSignal: true, alias: "rangeEnd", required: false }] }], minDistance: [{ type: i0.Input, args: [{ isSignal: true, alias: "minDistance", required: false }] }], tooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "tooltip", required: false }] }], showScale: [{ type: i0.Input, args: [{ isSignal: true, alias: "showScale", required: false }] }], percentage: [{ type: i0.Input, args: [{ isSignal: true, alias: "percentage", required: false }] }], labels: [{ type: i0.Input, args: [{ isSignal: true, alias: "labels", required: false }] }], sliderChange: [{ type: i0.Output, args: ["sliderChange"] }] } });
|
|
312
|
+
|
|
205
313
|
class LogosphereSwitch {
|
|
206
314
|
checked = input(false, ...(ngDevMode ? [{ debugName: "checked" }] : []));
|
|
207
315
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
@@ -238,6 +346,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
238
346
|
}]
|
|
239
347
|
}], propDecorators: { checked: [{ type: i0.Input, args: [{ isSignal: true, alias: "checked", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], change: [{ type: i0.Output, args: ["change"] }] } });
|
|
240
348
|
|
|
349
|
+
class LogosphereAccordion {
|
|
350
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
351
|
+
multiple = input(false, ...(ngDevMode ? [{ debugName: "multiple" }] : []));
|
|
352
|
+
defaultOpen = input([], ...(ngDevMode ? [{ debugName: "defaultOpen" }] : []));
|
|
353
|
+
border = input('full', ...(ngDevMode ? [{ debugName: "border" }] : []));
|
|
354
|
+
iconPosition = input('right', ...(ngDevMode ? [{ debugName: "iconPosition" }] : []));
|
|
355
|
+
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
356
|
+
accordionChange = output();
|
|
357
|
+
onAccordionChange(event) {
|
|
358
|
+
const e = event;
|
|
359
|
+
this.accordionChange.emit(e.detail);
|
|
360
|
+
}
|
|
361
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereAccordion, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
362
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereAccordion, isStandalone: true, selector: "lgs-accordion", inputs: { items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, defaultOpen: { classPropertyName: "defaultOpen", publicName: "defaultOpen", isSignal: true, isRequired: false, transformFunction: null }, border: { classPropertyName: "border", publicName: "border", isSignal: true, isRequired: false, transformFunction: null }, iconPosition: { classPropertyName: "iconPosition", publicName: "iconPosition", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { accordionChange: "accordionChange" }, ngImport: i0, template: `
|
|
363
|
+
<logosphere-accordion
|
|
364
|
+
[items]="items()"
|
|
365
|
+
[multiple]="multiple()"
|
|
366
|
+
[defaultOpen]="defaultOpen()"
|
|
367
|
+
[border]="border()"
|
|
368
|
+
[iconPosition]="iconPosition()"
|
|
369
|
+
[size]="size()"
|
|
370
|
+
(accordion-change)="onAccordionChange($event)"
|
|
371
|
+
>
|
|
372
|
+
<ng-content></ng-content>
|
|
373
|
+
</logosphere-accordion>
|
|
374
|
+
`, isInline: true });
|
|
375
|
+
}
|
|
376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereAccordion, decorators: [{
|
|
377
|
+
type: Component,
|
|
378
|
+
args: [{
|
|
379
|
+
selector: 'lgs-accordion',
|
|
380
|
+
imports: [],
|
|
381
|
+
template: `
|
|
382
|
+
<logosphere-accordion
|
|
383
|
+
[items]="items()"
|
|
384
|
+
[multiple]="multiple()"
|
|
385
|
+
[defaultOpen]="defaultOpen()"
|
|
386
|
+
[border]="border()"
|
|
387
|
+
[iconPosition]="iconPosition()"
|
|
388
|
+
[size]="size()"
|
|
389
|
+
(accordion-change)="onAccordionChange($event)"
|
|
390
|
+
>
|
|
391
|
+
<ng-content></ng-content>
|
|
392
|
+
</logosphere-accordion>
|
|
393
|
+
`,
|
|
394
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
395
|
+
}]
|
|
396
|
+
}], propDecorators: { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], defaultOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "defaultOpen", required: false }] }], border: [{ type: i0.Input, args: [{ isSignal: true, alias: "border", required: false }] }], iconPosition: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconPosition", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], accordionChange: [{ type: i0.Output, args: ["accordionChange"] }] } });
|
|
397
|
+
|
|
241
398
|
class LogosphereBreadcrumb {
|
|
242
399
|
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
243
400
|
set elRef(element) {
|
|
@@ -323,6 +480,110 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
323
480
|
}]
|
|
324
481
|
}], propDecorators: { cardTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], description: [{ type: i0.Input, args: [{ isSignal: true, alias: "description", required: false }] }], header: [{ type: i0.Input, args: [{ isSignal: true, alias: "header", required: false }] }], footer: [{ type: i0.Input, args: [{ isSignal: true, alias: "footer", required: false }] }], okLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "okLabel", required: false }] }], cancelLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "cancelLabel", required: false }] }], ok: [{ type: i0.Output, args: ["ok"] }], cancel: [{ type: i0.Output, args: ["cancel"] }] } });
|
|
325
482
|
|
|
483
|
+
class LogosphereChipGroup {
|
|
484
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
485
|
+
value = input([], ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
486
|
+
theme = input('default', ...(ngDevMode ? [{ debugName: "theme" }] : []));
|
|
487
|
+
gap = input('var(--spacing-2)', ...(ngDevMode ? [{ debugName: "gap" }] : []));
|
|
488
|
+
chipGroupChange = output();
|
|
489
|
+
onChipGroupChange(event) {
|
|
490
|
+
const e = event;
|
|
491
|
+
this.chipGroupChange.emit(e.detail);
|
|
492
|
+
}
|
|
493
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereChipGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
494
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereChipGroup, isStandalone: true, selector: "lgs-chip-group", inputs: { items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, gap: { classPropertyName: "gap", publicName: "gap", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { chipGroupChange: "chipGroupChange" }, ngImport: i0, template: `
|
|
495
|
+
<logosphere-chip-group
|
|
496
|
+
[items]="items()"
|
|
497
|
+
[value]="value()"
|
|
498
|
+
[theme]="theme()"
|
|
499
|
+
[gap]="gap()"
|
|
500
|
+
(chip-group-change)="onChipGroupChange($event)"
|
|
501
|
+
></logosphere-chip-group>
|
|
502
|
+
`, isInline: true });
|
|
503
|
+
}
|
|
504
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereChipGroup, decorators: [{
|
|
505
|
+
type: Component,
|
|
506
|
+
args: [{
|
|
507
|
+
selector: 'lgs-chip-group',
|
|
508
|
+
imports: [],
|
|
509
|
+
template: `
|
|
510
|
+
<logosphere-chip-group
|
|
511
|
+
[items]="items()"
|
|
512
|
+
[value]="value()"
|
|
513
|
+
[theme]="theme()"
|
|
514
|
+
[gap]="gap()"
|
|
515
|
+
(chip-group-change)="onChipGroupChange($event)"
|
|
516
|
+
></logosphere-chip-group>
|
|
517
|
+
`,
|
|
518
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
519
|
+
}]
|
|
520
|
+
}], propDecorators: { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], theme: [{ type: i0.Input, args: [{ isSignal: true, alias: "theme", required: false }] }], gap: [{ type: i0.Input, args: [{ isSignal: true, alias: "gap", required: false }] }], chipGroupChange: [{ type: i0.Output, args: ["chipGroupChange"] }] } });
|
|
521
|
+
|
|
522
|
+
class LogosphereCollapse {
|
|
523
|
+
title = input('', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
524
|
+
expanded = input(false, ...(ngDevMode ? [{ debugName: "expanded" }] : []));
|
|
525
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
526
|
+
border = input('full', ...(ngDevMode ? [{ debugName: "border" }] : []));
|
|
527
|
+
iconPosition = input('right', ...(ngDevMode ? [{ debugName: "iconPosition" }] : []));
|
|
528
|
+
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
529
|
+
toggle = output();
|
|
530
|
+
onToggle(event) {
|
|
531
|
+
const e = event;
|
|
532
|
+
this.toggle.emit(e.detail);
|
|
533
|
+
}
|
|
534
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCollapse, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
535
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereCollapse, isStandalone: true, selector: "lgs-collapse", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, expanded: { classPropertyName: "expanded", publicName: "expanded", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, border: { classPropertyName: "border", publicName: "border", isSignal: true, isRequired: false, transformFunction: null }, iconPosition: { classPropertyName: "iconPosition", publicName: "iconPosition", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggle: "toggle" }, ngImport: i0, template: `
|
|
536
|
+
<logosphere-collapse
|
|
537
|
+
[title]="title()"
|
|
538
|
+
[expanded]="expanded()"
|
|
539
|
+
[disabled]="disabled()"
|
|
540
|
+
[border]="border()"
|
|
541
|
+
[iconPosition]="iconPosition()"
|
|
542
|
+
[size]="size()"
|
|
543
|
+
(toggle)="onToggle($event)"
|
|
544
|
+
>
|
|
545
|
+
<ng-content></ng-content>
|
|
546
|
+
</logosphere-collapse>
|
|
547
|
+
`, isInline: true });
|
|
548
|
+
}
|
|
549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCollapse, decorators: [{
|
|
550
|
+
type: Component,
|
|
551
|
+
args: [{
|
|
552
|
+
selector: 'lgs-collapse',
|
|
553
|
+
imports: [],
|
|
554
|
+
template: `
|
|
555
|
+
<logosphere-collapse
|
|
556
|
+
[title]="title()"
|
|
557
|
+
[expanded]="expanded()"
|
|
558
|
+
[disabled]="disabled()"
|
|
559
|
+
[border]="border()"
|
|
560
|
+
[iconPosition]="iconPosition()"
|
|
561
|
+
[size]="size()"
|
|
562
|
+
(toggle)="onToggle($event)"
|
|
563
|
+
>
|
|
564
|
+
<ng-content></ng-content>
|
|
565
|
+
</logosphere-collapse>
|
|
566
|
+
`,
|
|
567
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
568
|
+
}]
|
|
569
|
+
}], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], expanded: [{ type: i0.Input, args: [{ isSignal: true, alias: "expanded", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], border: [{ type: i0.Input, args: [{ isSignal: true, alias: "border", required: false }] }], iconPosition: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconPosition", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], toggle: [{ type: i0.Output, args: ["toggle"] }] } });
|
|
570
|
+
|
|
571
|
+
class LogosphereIcon {
|
|
572
|
+
name = input('', ...(ngDevMode ? [{ debugName: "name" }] : []));
|
|
573
|
+
size = input(20, ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
574
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereIcon, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
575
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereIcon, isStandalone: true, selector: "lgs-icon", inputs: { name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `<ui-icon [name]="name()" [size]="size()"></ui-icon>`, isInline: true });
|
|
576
|
+
}
|
|
577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereIcon, decorators: [{
|
|
578
|
+
type: Component,
|
|
579
|
+
args: [{
|
|
580
|
+
selector: 'lgs-icon',
|
|
581
|
+
imports: [],
|
|
582
|
+
template: `<ui-icon [name]="name()" [size]="size()"></ui-icon>`,
|
|
583
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
584
|
+
}]
|
|
585
|
+
}], propDecorators: { name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }] } });
|
|
586
|
+
|
|
326
587
|
class LogosphereInput {
|
|
327
588
|
value = input('', ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
328
589
|
type = input('text', ...(ngDevMode ? [{ debugName: "type" }] : []));
|
|
@@ -343,6 +604,7 @@ class LogosphereInput {
|
|
|
343
604
|
required = input(false, ...(ngDevMode ? [{ debugName: "required" }] : []));
|
|
344
605
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
345
606
|
readonly = input(false, ...(ngDevMode ? [{ debugName: "readonly" }] : []));
|
|
607
|
+
pickOnly = input(false, ...(ngDevMode ? [{ debugName: "pickOnly" }] : []));
|
|
346
608
|
mask = input('', ...(ngDevMode ? [{ debugName: "mask" }] : []));
|
|
347
609
|
inputEvent = output({ alias: 'inputChange' });
|
|
348
610
|
change = output();
|
|
@@ -369,7 +631,7 @@ class LogosphereInput {
|
|
|
369
631
|
this.clear.emit();
|
|
370
632
|
}
|
|
371
633
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInput, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
372
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereInput, isStandalone: true, selector: "lgs-input", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, minlength: { classPropertyName: "minlength", publicName: "minlength", isSignal: true, isRequired: false, transformFunction: null }, maxlength: { classPropertyName: "maxlength", publicName: "maxlength", isSignal: true, isRequired: false, transformFunction: null }, pattern: { classPropertyName: "pattern", publicName: "pattern", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, helper: { classPropertyName: "helper", publicName: "helper", isSignal: true, isRequired: false, transformFunction: null }, error: { classPropertyName: "error", publicName: "error", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, mask: { classPropertyName: "mask", publicName: "mask", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { inputEvent: "inputChange", change: "change", keydown: "keydown", keyup: "keyup", clear: "clear" }, ngImport: i0, template: `
|
|
634
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereInput, isStandalone: true, selector: "lgs-input", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, minlength: { classPropertyName: "minlength", publicName: "minlength", isSignal: true, isRequired: false, transformFunction: null }, maxlength: { classPropertyName: "maxlength", publicName: "maxlength", isSignal: true, isRequired: false, transformFunction: null }, pattern: { classPropertyName: "pattern", publicName: "pattern", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, helper: { classPropertyName: "helper", publicName: "helper", isSignal: true, isRequired: false, transformFunction: null }, error: { classPropertyName: "error", publicName: "error", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, pickOnly: { classPropertyName: "pickOnly", publicName: "pickOnly", isSignal: true, isRequired: false, transformFunction: null }, mask: { classPropertyName: "mask", publicName: "mask", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { inputEvent: "inputChange", change: "change", keydown: "keydown", keyup: "keyup", clear: "clear" }, ngImport: i0, template: `
|
|
373
635
|
<logosphere-input
|
|
374
636
|
[value]="value()"
|
|
375
637
|
[type]="type()"
|
|
@@ -390,6 +652,7 @@ class LogosphereInput {
|
|
|
390
652
|
[required]="required()"
|
|
391
653
|
[disabled]="disabled()"
|
|
392
654
|
[readonly]="readonly()"
|
|
655
|
+
[pickOnly]="pickOnly()"
|
|
393
656
|
[mask]="mask()"
|
|
394
657
|
(input)="onInput($event)"
|
|
395
658
|
(change)="onChange($event)"
|
|
@@ -428,6 +691,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
428
691
|
[required]="required()"
|
|
429
692
|
[disabled]="disabled()"
|
|
430
693
|
[readonly]="readonly()"
|
|
694
|
+
[pickOnly]="pickOnly()"
|
|
431
695
|
[mask]="mask()"
|
|
432
696
|
(input)="onInput($event)"
|
|
433
697
|
(change)="onChange($event)"
|
|
@@ -441,7 +705,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
441
705
|
`,
|
|
442
706
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
443
707
|
}]
|
|
444
|
-
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], type: [{ type: i0.Input, args: [{ isSignal: true, alias: "type", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], autocomplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "autocomplete", required: false }] }], minlength: [{ type: i0.Input, args: [{ isSignal: true, alias: "minlength", required: false }] }], maxlength: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxlength", required: false }] }], pattern: [{ type: i0.Input, args: [{ isSignal: true, alias: "pattern", required: false }] }], min: [{ type: i0.Input, args: [{ isSignal: true, alias: "min", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], step: [{ type: i0.Input, args: [{ isSignal: true, alias: "step", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], helper: [{ type: i0.Input, args: [{ isSignal: true, alias: "helper", required: false }] }], error: [{ type: i0.Input, args: [{ isSignal: true, alias: "error", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], readonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], mask: [{ type: i0.Input, args: [{ isSignal: true, alias: "mask", required: false }] }], inputEvent: [{ type: i0.Output, args: ["inputChange"] }], change: [{ type: i0.Output, args: ["change"] }], keydown: [{ type: i0.Output, args: ["keydown"] }], keyup: [{ type: i0.Output, args: ["keyup"] }], clear: [{ type: i0.Output, args: ["clear"] }] } });
|
|
708
|
+
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], type: [{ type: i0.Input, args: [{ isSignal: true, alias: "type", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], autocomplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "autocomplete", required: false }] }], minlength: [{ type: i0.Input, args: [{ isSignal: true, alias: "minlength", required: false }] }], maxlength: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxlength", required: false }] }], pattern: [{ type: i0.Input, args: [{ isSignal: true, alias: "pattern", required: false }] }], min: [{ type: i0.Input, args: [{ isSignal: true, alias: "min", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], step: [{ type: i0.Input, args: [{ isSignal: true, alias: "step", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], helper: [{ type: i0.Input, args: [{ isSignal: true, alias: "helper", required: false }] }], error: [{ type: i0.Input, args: [{ isSignal: true, alias: "error", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], readonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], pickOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "pickOnly", required: false }] }], mask: [{ type: i0.Input, args: [{ isSignal: true, alias: "mask", required: false }] }], inputEvent: [{ type: i0.Output, args: ["inputChange"] }], change: [{ type: i0.Output, args: ["change"] }], keydown: [{ type: i0.Output, args: ["keydown"] }], keyup: [{ type: i0.Output, args: ["keyup"] }], clear: [{ type: i0.Output, args: ["clear"] }] } });
|
|
709
|
+
|
|
710
|
+
class LogosphereInputGroup {
|
|
711
|
+
stretch = input(true, ...(ngDevMode ? [{ debugName: "stretch" }] : []));
|
|
712
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInputGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
713
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereInputGroup, isStandalone: true, selector: "lgs-input-group", inputs: { stretch: { classPropertyName: "stretch", publicName: "stretch", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
714
|
+
<logosphere-input-group [stretch]="stretch()">
|
|
715
|
+
<ng-content></ng-content>
|
|
716
|
+
</logosphere-input-group>
|
|
717
|
+
`, isInline: true });
|
|
718
|
+
}
|
|
719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInputGroup, decorators: [{
|
|
720
|
+
type: Component,
|
|
721
|
+
args: [{
|
|
722
|
+
selector: 'lgs-input-group',
|
|
723
|
+
imports: [],
|
|
724
|
+
template: `
|
|
725
|
+
<logosphere-input-group [stretch]="stretch()">
|
|
726
|
+
<ng-content></ng-content>
|
|
727
|
+
</logosphere-input-group>
|
|
728
|
+
`,
|
|
729
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
730
|
+
}]
|
|
731
|
+
}], propDecorators: { stretch: [{ type: i0.Input, args: [{ isSignal: true, alias: "stretch", required: false }] }] } });
|
|
445
732
|
|
|
446
733
|
class LogospherePagination {
|
|
447
734
|
variant = input('default', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
@@ -573,6 +860,112 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
573
860
|
}]
|
|
574
861
|
}], propDecorators: { popoverTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], trigger: [{ type: i0.Input, args: [{ isSignal: true, alias: "trigger", required: false }] }], placement: [{ type: i0.Input, args: [{ isSignal: true, alias: "placement", required: false }] }], offset: [{ type: i0.Input, args: [{ isSignal: true, alias: "offset", required: false }] }], open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }], closeOnOutsideClick: [{ type: i0.Input, args: [{ isSignal: true, alias: "closeOnOutsideClick", required: false }] }], popoverOpen: [{ type: i0.Output, args: ["popoverOpen"] }], popoverClose: [{ type: i0.Output, args: ["popoverClose"] }] } });
|
|
575
862
|
|
|
863
|
+
class LogosphereSplitButton {
|
|
864
|
+
label = input('Button', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
865
|
+
size = input('md', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
866
|
+
theme = input('primary', ...(ngDevMode ? [{ debugName: "theme" }] : []));
|
|
867
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
868
|
+
dropdownDisabled = input(false, ...(ngDevMode ? [{ debugName: "dropdownDisabled" }] : []));
|
|
869
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
870
|
+
action = output();
|
|
871
|
+
dropdownOpen = output();
|
|
872
|
+
dropdownClose = output();
|
|
873
|
+
itemSelect = output();
|
|
874
|
+
onAction() {
|
|
875
|
+
this.action.emit();
|
|
876
|
+
}
|
|
877
|
+
onDropdownOpen() {
|
|
878
|
+
this.dropdownOpen.emit();
|
|
879
|
+
}
|
|
880
|
+
onDropdownClose() {
|
|
881
|
+
this.dropdownClose.emit();
|
|
882
|
+
}
|
|
883
|
+
onItemSelect(event) {
|
|
884
|
+
const e = event;
|
|
885
|
+
this.itemSelect.emit(e.detail);
|
|
886
|
+
}
|
|
887
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSplitButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
888
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereSplitButton, isStandalone: true, selector: "lgs-split-button", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, dropdownDisabled: { classPropertyName: "dropdownDisabled", publicName: "dropdownDisabled", isSignal: true, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { action: "action", dropdownOpen: "dropdownOpen", dropdownClose: "dropdownClose", itemSelect: "itemSelect" }, ngImport: i0, template: `
|
|
889
|
+
<logosphere-split-button
|
|
890
|
+
[label]="label()"
|
|
891
|
+
[size]="size()"
|
|
892
|
+
[theme]="theme()"
|
|
893
|
+
[disabled]="disabled()"
|
|
894
|
+
[dropdownDisabled]="dropdownDisabled()"
|
|
895
|
+
[items]="items()"
|
|
896
|
+
(action)="onAction()"
|
|
897
|
+
(dropdown-open)="onDropdownOpen()"
|
|
898
|
+
(dropdown-close)="onDropdownClose()"
|
|
899
|
+
(item-select)="onItemSelect($event)"
|
|
900
|
+
>
|
|
901
|
+
<ng-content></ng-content>
|
|
902
|
+
</logosphere-split-button>
|
|
903
|
+
`, isInline: true });
|
|
904
|
+
}
|
|
905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSplitButton, decorators: [{
|
|
906
|
+
type: Component,
|
|
907
|
+
args: [{
|
|
908
|
+
selector: 'lgs-split-button',
|
|
909
|
+
imports: [],
|
|
910
|
+
template: `
|
|
911
|
+
<logosphere-split-button
|
|
912
|
+
[label]="label()"
|
|
913
|
+
[size]="size()"
|
|
914
|
+
[theme]="theme()"
|
|
915
|
+
[disabled]="disabled()"
|
|
916
|
+
[dropdownDisabled]="dropdownDisabled()"
|
|
917
|
+
[items]="items()"
|
|
918
|
+
(action)="onAction()"
|
|
919
|
+
(dropdown-open)="onDropdownOpen()"
|
|
920
|
+
(dropdown-close)="onDropdownClose()"
|
|
921
|
+
(item-select)="onItemSelect($event)"
|
|
922
|
+
>
|
|
923
|
+
<ng-content></ng-content>
|
|
924
|
+
</logosphere-split-button>
|
|
925
|
+
`,
|
|
926
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
927
|
+
}]
|
|
928
|
+
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], theme: [{ type: i0.Input, args: [{ isSignal: true, alias: "theme", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], dropdownDisabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "dropdownDisabled", required: false }] }], items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], action: [{ type: i0.Output, args: ["action"] }], dropdownOpen: [{ type: i0.Output, args: ["dropdownOpen"] }], dropdownClose: [{ type: i0.Output, args: ["dropdownClose"] }], itemSelect: [{ type: i0.Output, args: ["itemSelect"] }] } });
|
|
929
|
+
|
|
930
|
+
class LogosphereStepper {
|
|
931
|
+
steps = input([], ...(ngDevMode ? [{ debugName: "steps" }] : []));
|
|
932
|
+
activeStep = input(0, ...(ngDevMode ? [{ debugName: "activeStep" }] : []));
|
|
933
|
+
orientation = input('horizontal', ...(ngDevMode ? [{ debugName: "orientation" }] : []));
|
|
934
|
+
clickable = input(false, ...(ngDevMode ? [{ debugName: "clickable" }] : []));
|
|
935
|
+
stepChange = output();
|
|
936
|
+
onStepChange(event) {
|
|
937
|
+
const e = event;
|
|
938
|
+
this.stepChange.emit(e.detail);
|
|
939
|
+
}
|
|
940
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereStepper, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
941
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereStepper, isStandalone: true, selector: "lgs-stepper", inputs: { steps: { classPropertyName: "steps", publicName: "steps", isSignal: true, isRequired: false, transformFunction: null }, activeStep: { classPropertyName: "activeStep", publicName: "activeStep", isSignal: true, isRequired: false, transformFunction: null }, orientation: { classPropertyName: "orientation", publicName: "orientation", isSignal: true, isRequired: false, transformFunction: null }, clickable: { classPropertyName: "clickable", publicName: "clickable", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stepChange: "stepChange" }, ngImport: i0, template: `
|
|
942
|
+
<logosphere-stepper
|
|
943
|
+
[steps]="steps()"
|
|
944
|
+
[activeStep]="activeStep()"
|
|
945
|
+
[orientation]="orientation()"
|
|
946
|
+
[clickable]="clickable()"
|
|
947
|
+
(step-change)="onStepChange($event)"
|
|
948
|
+
></logosphere-stepper>
|
|
949
|
+
`, isInline: true });
|
|
950
|
+
}
|
|
951
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereStepper, decorators: [{
|
|
952
|
+
type: Component,
|
|
953
|
+
args: [{
|
|
954
|
+
selector: 'lgs-stepper',
|
|
955
|
+
imports: [],
|
|
956
|
+
template: `
|
|
957
|
+
<logosphere-stepper
|
|
958
|
+
[steps]="steps()"
|
|
959
|
+
[activeStep]="activeStep()"
|
|
960
|
+
[orientation]="orientation()"
|
|
961
|
+
[clickable]="clickable()"
|
|
962
|
+
(step-change)="onStepChange($event)"
|
|
963
|
+
></logosphere-stepper>
|
|
964
|
+
`,
|
|
965
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
966
|
+
}]
|
|
967
|
+
}], propDecorators: { steps: [{ type: i0.Input, args: [{ isSignal: true, alias: "steps", required: false }] }], activeStep: [{ type: i0.Input, args: [{ isSignal: true, alias: "activeStep", required: false }] }], orientation: [{ type: i0.Input, args: [{ isSignal: true, alias: "orientation", required: false }] }], clickable: [{ type: i0.Input, args: [{ isSignal: true, alias: "clickable", required: false }] }], stepChange: [{ type: i0.Output, args: ["stepChange"] }] } });
|
|
968
|
+
|
|
576
969
|
class LogosphereTextarea {
|
|
577
970
|
value = input('', ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
578
971
|
placeholder = input('', ...(ngDevMode ? [{ debugName: "placeholder" }] : []));
|
|
@@ -871,6 +1264,7 @@ class LogosphereCombobox {
|
|
|
871
1264
|
required = input(false, ...(ngDevMode ? [{ debugName: "required" }] : []));
|
|
872
1265
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
873
1266
|
readOnly = input(false, ...(ngDevMode ? [{ debugName: "readOnly" }] : []));
|
|
1267
|
+
loading = input(false, ...(ngDevMode ? [{ debugName: "loading" }] : []));
|
|
874
1268
|
variant = input('default', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
875
1269
|
multiple = input(false, ...(ngDevMode ? [{ debugName: "multiple" }] : []));
|
|
876
1270
|
filterable = input(false, ...(ngDevMode ? [{ debugName: "filterable" }] : []));
|
|
@@ -879,26 +1273,40 @@ class LogosphereCombobox {
|
|
|
879
1273
|
emptyMessage = input('Sonuç yok', ...(ngDevMode ? [{ debugName: "emptyMessage" }] : []));
|
|
880
1274
|
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
881
1275
|
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
1276
|
+
value = input(undefined, ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
1277
|
+
clearable = input(true, ...(ngDevMode ? [{ debugName: "clearable" }] : []));
|
|
882
1278
|
itemRenderer = input(undefined, ...(ngDevMode ? [{ debugName: "itemRenderer" }] : []));
|
|
1279
|
+
onSearch = input(undefined, ...(ngDevMode ? [{ debugName: "onSearch" }] : []));
|
|
1280
|
+
onFocus = input(undefined, ...(ngDevMode ? [{ debugName: "onFocus" }] : []));
|
|
1281
|
+
onLoadMore = input(undefined, ...(ngDevMode ? [{ debugName: "onLoadMore" }] : []));
|
|
883
1282
|
change = output();
|
|
1283
|
+
lgsChange = output();
|
|
884
1284
|
selected = output();
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
element.nativeElement.items = this.items();
|
|
888
|
-
}
|
|
889
|
-
}
|
|
1285
|
+
searchChange = output();
|
|
1286
|
+
comboboxFocus = output();
|
|
890
1287
|
onChange(event) {
|
|
891
1288
|
const e = event;
|
|
892
1289
|
this.change.emit(e.detail);
|
|
893
1290
|
}
|
|
1291
|
+
onLgsChange(event) {
|
|
1292
|
+
const e = event;
|
|
1293
|
+
this.lgsChange.emit(e.detail);
|
|
1294
|
+
}
|
|
894
1295
|
onSelected(event) {
|
|
895
1296
|
const e = event;
|
|
896
1297
|
this.selected.emit(e.detail);
|
|
897
1298
|
}
|
|
1299
|
+
onSearchChange(event) {
|
|
1300
|
+
const e = event;
|
|
1301
|
+
this.searchChange.emit(e.detail);
|
|
1302
|
+
}
|
|
1303
|
+
onComboboxFocus(event) {
|
|
1304
|
+
const e = event;
|
|
1305
|
+
this.comboboxFocus.emit(e.detail);
|
|
1306
|
+
}
|
|
898
1307
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCombobox, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
899
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereCombobox, isStandalone: true, selector: "lgs-combobox", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, helper: { classPropertyName: "helper", publicName: "helper", isSignal: true, isRequired: false, transformFunction: null }, error: { classPropertyName: "error", publicName: "error", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, filterable: { classPropertyName: "filterable", publicName: "filterable", isSignal: true, isRequired: false, transformFunction: null }, optionLabel: { classPropertyName: "optionLabel", publicName: "optionLabel", isSignal: true, isRequired: false, transformFunction: null }, optionValue: { classPropertyName: "optionValue", publicName: "optionValue", isSignal: true, isRequired: false, transformFunction: null }, emptyMessage: { classPropertyName: "emptyMessage", publicName: "emptyMessage", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, itemRenderer: { classPropertyName: "itemRenderer", publicName: "itemRenderer", isSignal: true, isRequired: false, transformFunction: null } },
|
|
1308
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereCombobox, isStandalone: true, selector: "lgs-combobox", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, helper: { classPropertyName: "helper", publicName: "helper", isSignal: true, isRequired: false, transformFunction: null }, error: { classPropertyName: "error", publicName: "error", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, filterable: { classPropertyName: "filterable", publicName: "filterable", isSignal: true, isRequired: false, transformFunction: null }, optionLabel: { classPropertyName: "optionLabel", publicName: "optionLabel", isSignal: true, isRequired: false, transformFunction: null }, optionValue: { classPropertyName: "optionValue", publicName: "optionValue", isSignal: true, isRequired: false, transformFunction: null }, emptyMessage: { classPropertyName: "emptyMessage", publicName: "emptyMessage", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, clearable: { classPropertyName: "clearable", publicName: "clearable", isSignal: true, isRequired: false, transformFunction: null }, itemRenderer: { classPropertyName: "itemRenderer", publicName: "itemRenderer", isSignal: true, isRequired: false, transformFunction: null }, onSearch: { classPropertyName: "onSearch", publicName: "onSearch", isSignal: true, isRequired: false, transformFunction: null }, onFocus: { classPropertyName: "onFocus", publicName: "onFocus", isSignal: true, isRequired: false, transformFunction: null }, onLoadMore: { classPropertyName: "onLoadMore", publicName: "onLoadMore", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { change: "change", lgsChange: "lgsChange", selected: "selected", searchChange: "searchChange", comboboxFocus: "comboboxFocus" }, ngImport: i0, template: `
|
|
900
1309
|
<logosphere-combobox
|
|
901
|
-
#el
|
|
902
1310
|
[label]="label()"
|
|
903
1311
|
[helper]="helper()"
|
|
904
1312
|
[error]="error()"
|
|
@@ -906,6 +1314,7 @@ class LogosphereCombobox {
|
|
|
906
1314
|
[required]="required()"
|
|
907
1315
|
[disabled]="disabled()"
|
|
908
1316
|
[readOnly]="readOnly()"
|
|
1317
|
+
[loading]="loading()"
|
|
909
1318
|
[variant]="variant()"
|
|
910
1319
|
[multiple]="multiple()"
|
|
911
1320
|
[filterable]="filterable()"
|
|
@@ -913,9 +1322,18 @@ class LogosphereCombobox {
|
|
|
913
1322
|
[optionValue]="optionValue()"
|
|
914
1323
|
[emptyMessage]="emptyMessage()"
|
|
915
1324
|
[size]="size()"
|
|
1325
|
+
[items]="items()"
|
|
1326
|
+
[value]="value()"
|
|
1327
|
+
[clearable]="clearable()"
|
|
916
1328
|
[itemRenderer]="itemRenderer()"
|
|
1329
|
+
[onSearch]="onSearch()"
|
|
1330
|
+
[onFocus]="onFocus()"
|
|
1331
|
+
[onLoadMore]="onLoadMore()"
|
|
917
1332
|
(change)="onChange($event)"
|
|
1333
|
+
(lgsChange)="onLgsChange($event)"
|
|
918
1334
|
(selected)="onSelected($event)"
|
|
1335
|
+
(search-change)="onSearchChange($event)"
|
|
1336
|
+
(combobox-focus)="onComboboxFocus($event)"
|
|
919
1337
|
></logosphere-combobox>
|
|
920
1338
|
`, isInline: true });
|
|
921
1339
|
}
|
|
@@ -926,7 +1344,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
926
1344
|
imports: [],
|
|
927
1345
|
template: `
|
|
928
1346
|
<logosphere-combobox
|
|
929
|
-
#el
|
|
930
1347
|
[label]="label()"
|
|
931
1348
|
[helper]="helper()"
|
|
932
1349
|
[error]="error()"
|
|
@@ -934,6 +1351,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
934
1351
|
[required]="required()"
|
|
935
1352
|
[disabled]="disabled()"
|
|
936
1353
|
[readOnly]="readOnly()"
|
|
1354
|
+
[loading]="loading()"
|
|
937
1355
|
[variant]="variant()"
|
|
938
1356
|
[multiple]="multiple()"
|
|
939
1357
|
[filterable]="filterable()"
|
|
@@ -941,17 +1359,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
941
1359
|
[optionValue]="optionValue()"
|
|
942
1360
|
[emptyMessage]="emptyMessage()"
|
|
943
1361
|
[size]="size()"
|
|
1362
|
+
[items]="items()"
|
|
1363
|
+
[value]="value()"
|
|
1364
|
+
[clearable]="clearable()"
|
|
944
1365
|
[itemRenderer]="itemRenderer()"
|
|
1366
|
+
[onSearch]="onSearch()"
|
|
1367
|
+
[onFocus]="onFocus()"
|
|
1368
|
+
[onLoadMore]="onLoadMore()"
|
|
945
1369
|
(change)="onChange($event)"
|
|
1370
|
+
(lgsChange)="onLgsChange($event)"
|
|
946
1371
|
(selected)="onSelected($event)"
|
|
1372
|
+
(search-change)="onSearchChange($event)"
|
|
1373
|
+
(combobox-focus)="onComboboxFocus($event)"
|
|
947
1374
|
></logosphere-combobox>
|
|
948
1375
|
`,
|
|
949
1376
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
950
1377
|
}]
|
|
951
|
-
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], helper: [{ type: i0.Input, args: [{ isSignal: true, alias: "helper", required: false }] }], error: [{ type: i0.Input, args: [{ isSignal: true, alias: "error", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], readOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readOnly", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], filterable: [{ type: i0.Input, args: [{ isSignal: true, alias: "filterable", required: false }] }], optionLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionLabel", required: false }] }], optionValue: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionValue", required: false }] }], emptyMessage: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyMessage", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], itemRenderer: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemRenderer", required: false }] }], change: [{ type: i0.Output, args: ["change"] }], selected: [{ type: i0.Output, args: ["selected"] }],
|
|
952
|
-
type: ViewChild,
|
|
953
|
-
args: ['el', { static: false }]
|
|
954
|
-
}] } });
|
|
1378
|
+
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], helper: [{ type: i0.Input, args: [{ isSignal: true, alias: "helper", required: false }] }], error: [{ type: i0.Input, args: [{ isSignal: true, alias: "error", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], readOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readOnly", required: false }] }], loading: [{ type: i0.Input, args: [{ isSignal: true, alias: "loading", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], filterable: [{ type: i0.Input, args: [{ isSignal: true, alias: "filterable", required: false }] }], optionLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionLabel", required: false }] }], optionValue: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionValue", required: false }] }], emptyMessage: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyMessage", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], clearable: [{ type: i0.Input, args: [{ isSignal: true, alias: "clearable", required: false }] }], itemRenderer: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemRenderer", required: false }] }], onSearch: [{ type: i0.Input, args: [{ isSignal: true, alias: "onSearch", required: false }] }], onFocus: [{ type: i0.Input, args: [{ isSignal: true, alias: "onFocus", required: false }] }], onLoadMore: [{ type: i0.Input, args: [{ isSignal: true, alias: "onLoadMore", required: false }] }], change: [{ type: i0.Output, args: ["change"] }], lgsChange: [{ type: i0.Output, args: ["lgsChange"] }], selected: [{ type: i0.Output, args: ["selected"] }], searchChange: [{ type: i0.Output, args: ["searchChange"] }], comboboxFocus: [{ type: i0.Output, args: ["comboboxFocus"] }] } });
|
|
955
1379
|
|
|
956
1380
|
class LogosphereDatePicker {
|
|
957
1381
|
value = input(null, ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
@@ -1311,6 +1735,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
1311
1735
|
args: ['el', { static: false }]
|
|
1312
1736
|
}] } });
|
|
1313
1737
|
|
|
1738
|
+
class LogosphereTable {
|
|
1739
|
+
columns = input([], ...(ngDevMode ? [{ debugName: "columns" }] : []));
|
|
1740
|
+
actionColumn = input(undefined, ...(ngDevMode ? [{ debugName: "actionColumn" }] : []));
|
|
1741
|
+
rows = input([], ...(ngDevMode ? [{ debugName: "rows" }] : []));
|
|
1742
|
+
rowKey = input('id', ...(ngDevMode ? [{ debugName: "rowKey" }] : []));
|
|
1743
|
+
emptyMessage = input('Kayıt bulunamadı', ...(ngDevMode ? [{ debugName: "emptyMessage" }] : []));
|
|
1744
|
+
maxHeight = input(undefined, ...(ngDevMode ? [{ debugName: "maxHeight" }] : []));
|
|
1745
|
+
selection = input(false, ...(ngDevMode ? [{ debugName: "selection" }] : []));
|
|
1746
|
+
stickySelection = input(false, ...(ngDevMode ? [{ debugName: "stickySelection" }] : []));
|
|
1747
|
+
resizable = input(false, ...(ngDevMode ? [{ debugName: "resizable" }] : []));
|
|
1748
|
+
borderless = input(false, ...(ngDevMode ? [{ debugName: "borderless" }] : []));
|
|
1749
|
+
rowClick = output();
|
|
1750
|
+
sortChange = output();
|
|
1751
|
+
selectChange = output();
|
|
1752
|
+
search = output();
|
|
1753
|
+
widthChange = output();
|
|
1754
|
+
sortChangeHandler = (detail) => this.sortChange.emit(detail);
|
|
1755
|
+
selectChangeHandler = (detail) => this.selectChange.emit(detail);
|
|
1756
|
+
searchHandler = (detail) => this.search.emit(detail);
|
|
1757
|
+
widthChangeHandler = (detail) => this.widthChange.emit(detail);
|
|
1758
|
+
onRowClick(event) {
|
|
1759
|
+
const e = event;
|
|
1760
|
+
this.rowClick.emit(e.detail);
|
|
1761
|
+
}
|
|
1762
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereTable, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1763
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.7", type: LogosphereTable, isStandalone: true, selector: "lgs-table", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: false, transformFunction: null }, actionColumn: { classPropertyName: "actionColumn", publicName: "actionColumn", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, rowKey: { classPropertyName: "rowKey", publicName: "rowKey", isSignal: true, isRequired: false, transformFunction: null }, emptyMessage: { classPropertyName: "emptyMessage", publicName: "emptyMessage", isSignal: true, isRequired: false, transformFunction: null }, maxHeight: { classPropertyName: "maxHeight", publicName: "maxHeight", isSignal: true, isRequired: false, transformFunction: null }, selection: { classPropertyName: "selection", publicName: "selection", isSignal: true, isRequired: false, transformFunction: null }, stickySelection: { classPropertyName: "stickySelection", publicName: "stickySelection", isSignal: true, isRequired: false, transformFunction: null }, resizable: { classPropertyName: "resizable", publicName: "resizable", isSignal: true, isRequired: false, transformFunction: null }, borderless: { classPropertyName: "borderless", publicName: "borderless", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { rowClick: "rowClick", sortChange: "sortChange", selectChange: "selectChange", search: "search", widthChange: "widthChange" }, ngImport: i0, template: `
|
|
1764
|
+
<logosphere-table
|
|
1765
|
+
[columns]="columns()"
|
|
1766
|
+
[actionColumn]="actionColumn()"
|
|
1767
|
+
[rows]="rows()"
|
|
1768
|
+
[rowKey]="rowKey()"
|
|
1769
|
+
[emptyMessage]="emptyMessage()"
|
|
1770
|
+
[maxHeight]="maxHeight()"
|
|
1771
|
+
[selection]="selection()"
|
|
1772
|
+
[stickySelection]="stickySelection()"
|
|
1773
|
+
[resizable]="resizable()"
|
|
1774
|
+
[borderless]="borderless()"
|
|
1775
|
+
[onSortChange]="sortChangeHandler"
|
|
1776
|
+
[onSelectChange]="selectChangeHandler"
|
|
1777
|
+
[onSearch]="searchHandler"
|
|
1778
|
+
[onWidthChange]="widthChangeHandler"
|
|
1779
|
+
(row-click)="onRowClick($event)"
|
|
1780
|
+
></logosphere-table>
|
|
1781
|
+
`, isInline: true });
|
|
1782
|
+
}
|
|
1783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereTable, decorators: [{
|
|
1784
|
+
type: Component,
|
|
1785
|
+
args: [{
|
|
1786
|
+
selector: 'lgs-table',
|
|
1787
|
+
imports: [],
|
|
1788
|
+
template: `
|
|
1789
|
+
<logosphere-table
|
|
1790
|
+
[columns]="columns()"
|
|
1791
|
+
[actionColumn]="actionColumn()"
|
|
1792
|
+
[rows]="rows()"
|
|
1793
|
+
[rowKey]="rowKey()"
|
|
1794
|
+
[emptyMessage]="emptyMessage()"
|
|
1795
|
+
[maxHeight]="maxHeight()"
|
|
1796
|
+
[selection]="selection()"
|
|
1797
|
+
[stickySelection]="stickySelection()"
|
|
1798
|
+
[resizable]="resizable()"
|
|
1799
|
+
[borderless]="borderless()"
|
|
1800
|
+
[onSortChange]="sortChangeHandler"
|
|
1801
|
+
[onSelectChange]="selectChangeHandler"
|
|
1802
|
+
[onSearch]="searchHandler"
|
|
1803
|
+
[onWidthChange]="widthChangeHandler"
|
|
1804
|
+
(row-click)="onRowClick($event)"
|
|
1805
|
+
></logosphere-table>
|
|
1806
|
+
`,
|
|
1807
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1808
|
+
}]
|
|
1809
|
+
}], propDecorators: { columns: [{ type: i0.Input, args: [{ isSignal: true, alias: "columns", required: false }] }], actionColumn: [{ type: i0.Input, args: [{ isSignal: true, alias: "actionColumn", required: false }] }], rows: [{ type: i0.Input, args: [{ isSignal: true, alias: "rows", required: false }] }], rowKey: [{ type: i0.Input, args: [{ isSignal: true, alias: "rowKey", required: false }] }], emptyMessage: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyMessage", required: false }] }], maxHeight: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxHeight", required: false }] }], selection: [{ type: i0.Input, args: [{ isSignal: true, alias: "selection", required: false }] }], stickySelection: [{ type: i0.Input, args: [{ isSignal: true, alias: "stickySelection", required: false }] }], resizable: [{ type: i0.Input, args: [{ isSignal: true, alias: "resizable", required: false }] }], borderless: [{ type: i0.Input, args: [{ isSignal: true, alias: "borderless", required: false }] }], rowClick: [{ type: i0.Output, args: ["rowClick"] }], sortChange: [{ type: i0.Output, args: ["sortChange"] }], selectChange: [{ type: i0.Output, args: ["selectChange"] }], search: [{ type: i0.Output, args: ["search"] }], widthChange: [{ type: i0.Output, args: ["widthChange"] }] } });
|
|
1810
|
+
|
|
1314
1811
|
class LogosphereToast {
|
|
1315
1812
|
type = input('info', ...(ngDevMode ? [{ debugName: "type" }] : []));
|
|
1316
1813
|
toastTitle = input('', { ...(ngDevMode ? { debugName: "toastTitle" } : {}), alias: 'title' });
|
|
@@ -1448,5 +1945,5 @@ const WRAPPER_VERSION = '1.0.0';
|
|
|
1448
1945
|
* Generated bundle index. Do not edit.
|
|
1449
1946
|
*/
|
|
1450
1947
|
|
|
1451
|
-
export { LogosphereBadge, LogosphereBreadcrumb, LogosphereButton, LogosphereCalendar, LogosphereCard, LogosphereChatbot, LogosphereCheckbox, LogosphereCombobox, LogosphereDatePicker, LogosphereDownloadManager, LogosphereDrawer, LogosphereFormField, LogosphereInput, LogosphereLeftMenu, LogosphereLeftMenuItem, LogosphereModal, LogospherePagination, LogospherePopover, LogosphereSwitch, LogosphereTab, LogosphereTextarea, LogosphereTimePicker, LogosphereToast, LogosphereToastContainer, LogosphereTreeMenu, WRAPPER_VERSION };
|
|
1948
|
+
export { LogosphereAccordion, LogosphereBadge, LogosphereBreadcrumb, LogosphereButton, LogosphereCalendar, LogosphereCard, LogosphereChatbot, LogosphereCheckbox, LogosphereChipGroup, LogosphereCollapse, LogosphereCombobox, LogosphereDatePicker, LogosphereDownloadManager, LogosphereDrawer, LogosphereFormField, LogosphereIcon, LogosphereInput, LogosphereInputGroup, LogosphereLeftMenu, LogosphereLeftMenuItem, LogosphereLoading, LogosphereModal, LogospherePagination, LogospherePopover, LogosphereSlider, LogosphereSplitButton, LogosphereStepper, LogosphereSwitch, LogosphereTab, LogosphereTable, LogosphereTextarea, LogosphereTimePicker, LogosphereToast, LogosphereToastContainer, LogosphereTreeMenu, WRAPPER_VERSION };
|
|
1452
1949
|
//# sourceMappingURL=logosphere-ui-angular.mjs.map
|