@logosphere-ui/angular 0.0.1-alpha.14 → 0.0.1-alpha.16
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-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-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-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 +431 -1
- package/fesm2022/logosphere-ui-angular.mjs.map +1 -1
- package/package.json +38 -2
- package/types/logosphere-ui-angular-src-lib-accordion.d.ts +26 -0
- 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-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-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 +228 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-table.mjs","sources":["../../projects/wrapper/src/lib/table/table.ts","../../projects/wrapper/src/lib/table/logosphere-ui-angular-src-lib-table.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, input, output } from '@angular/core';\nimport '@logosphere-ui/core/table';\n\nexport interface TableColumn {\n key: string;\n label: string;\n width?: number;\n align?: 'left' | 'center' | 'right';\n sortable?: boolean;\n searchable?: boolean;\n sticky?: boolean;\n render?: (context: TableCellContext) => unknown;\n}\n\nexport interface TableCellContext {\n value: unknown;\n row: Record<string, unknown>;\n rowIndex: number;\n column: TableColumn;\n}\n\nexport interface TableActionContext {\n row: Record<string, unknown>;\n rowIndex: number;\n}\n\nexport interface TableActionColumn {\n width?: number;\n render: (context: TableActionContext) => unknown;\n}\n\nexport interface TableSortChangeDetail {\n column: TableColumn;\n key: string;\n direction?: 'asc' | 'desc';\n sorts: Array<{ column: TableColumn; key: string; direction: 'asc' | 'desc'; order: number }>;\n multi: boolean;\n}\n\nexport interface TableSelectionChangeDetail {\n selectedRows: Record<string, unknown>[];\n selectedKeys: Array<string | number>;\n}\n\nexport interface TableSearchChangeDetail {\n values: Array<{ key: string; value: string }>;\n}\n\nexport interface TableWidthChangeDetail {\n column: TableColumn;\n key: string;\n width: number;\n}\n\n@Component({\n selector: 'lgs-table',\n imports: [],\n template: `\n <logosphere-table\n [columns]=\"columns()\"\n [actionColumn]=\"actionColumn()\"\n [rows]=\"rows()\"\n [rowKey]=\"rowKey()\"\n [emptyMessage]=\"emptyMessage()\"\n [maxHeight]=\"maxHeight()\"\n [selection]=\"selection()\"\n [stickySelection]=\"stickySelection()\"\n [resizable]=\"resizable()\"\n [borderless]=\"borderless()\"\n [onSortChange]=\"sortChangeHandler\"\n [onSelectChange]=\"selectChangeHandler\"\n [onSearch]=\"searchHandler\"\n [onWidthChange]=\"widthChangeHandler\"\n (row-click)=\"onRowClick($event)\"\n ></logosphere-table>\n `,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereTable {\n columns = input<TableColumn[]>([]);\n actionColumn = input<TableActionColumn | undefined>(undefined);\n rows = input<Record<string, unknown>[]>([]);\n rowKey = input<string>('id');\n emptyMessage = input<string>('Kayıt bulunamadı');\n maxHeight = input<number | undefined>(undefined);\n selection = input<boolean>(false);\n stickySelection = input<boolean>(false);\n resizable = input<boolean>(false);\n borderless = input<boolean>(false);\n\n rowClick = output<{ row: Record<string, unknown>; rowIndex: number }>();\n sortChange = output<TableSortChangeDetail>();\n selectChange = output<TableSelectionChangeDetail>();\n search = output<TableSearchChangeDetail>();\n widthChange = output<TableWidthChangeDetail>();\n\n sortChangeHandler = (detail: TableSortChangeDetail) => this.sortChange.emit(detail);\n selectChangeHandler = (detail: TableSelectionChangeDetail) => this.selectChange.emit(detail);\n searchHandler = (detail: TableSearchChangeDetail) => this.search.emit(detail);\n widthChangeHandler = (detail: TableWidthChangeDetail) => this.widthChange.emit(detail);\n\n onRowClick(event: Event) {\n const e = event as CustomEvent<{ row: Record<string, unknown>; rowIndex: number }>;\n this.rowClick.emit(e.detail);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -4,12 +4,20 @@ 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/slider';
|
|
7
8
|
import '@logosphere-ui/core/switch';
|
|
9
|
+
import '@logosphere-ui/core/accordion';
|
|
8
10
|
import '@logosphere-ui/core/breadcrumb';
|
|
9
11
|
import '@logosphere-ui/core/card';
|
|
12
|
+
import '@logosphere-ui/core/chip-group';
|
|
13
|
+
import '@logosphere-ui/core/collapse';
|
|
14
|
+
import '@logosphere-ui/core/icon';
|
|
10
15
|
import '@logosphere-ui/core/input';
|
|
16
|
+
import '@logosphere-ui/core/input-group';
|
|
11
17
|
import '@logosphere-ui/core/pagination';
|
|
12
18
|
import '@logosphere-ui/core/popover';
|
|
19
|
+
import '@logosphere-ui/core/split-button';
|
|
20
|
+
import '@logosphere-ui/core/stepper';
|
|
13
21
|
import '@logosphere-ui/core/textarea';
|
|
14
22
|
import '@logosphere-ui/core/timepicker';
|
|
15
23
|
import '@logosphere-ui/core/calendar';
|
|
@@ -21,6 +29,7 @@ import '@logosphere-ui/core/drawer';
|
|
|
21
29
|
import '@logosphere-ui/core/left-menu';
|
|
22
30
|
import '@logosphere-ui/core/modal';
|
|
23
31
|
import '@logosphere-ui/core/tab';
|
|
32
|
+
import '@logosphere-ui/core/table';
|
|
24
33
|
import '@logosphere-ui/core/toast';
|
|
25
34
|
import '@logosphere-ui/core/tree-menu';
|
|
26
35
|
|
|
@@ -202,6 +211,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
202
211
|
}]
|
|
203
212
|
}], 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
213
|
|
|
214
|
+
class LogosphereSlider {
|
|
215
|
+
value = input(50, ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
216
|
+
min = input(0, ...(ngDevMode ? [{ debugName: "min" }] : []));
|
|
217
|
+
max = input(100, ...(ngDevMode ? [{ debugName: "max" }] : []));
|
|
218
|
+
step = input(1, ...(ngDevMode ? [{ debugName: "step" }] : []));
|
|
219
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
220
|
+
range = input(false, ...(ngDevMode ? [{ debugName: "range" }] : []));
|
|
221
|
+
rangeStart = input(25, ...(ngDevMode ? [{ debugName: "rangeStart" }] : []));
|
|
222
|
+
rangeEnd = input(75, ...(ngDevMode ? [{ debugName: "rangeEnd" }] : []));
|
|
223
|
+
minDistance = input(0, ...(ngDevMode ? [{ debugName: "minDistance" }] : []));
|
|
224
|
+
tooltip = input('never', ...(ngDevMode ? [{ debugName: "tooltip" }] : []));
|
|
225
|
+
showScale = input(false, ...(ngDevMode ? [{ debugName: "showScale" }] : []));
|
|
226
|
+
percentage = input(false, ...(ngDevMode ? [{ debugName: "percentage" }] : []));
|
|
227
|
+
labels = input([], ...(ngDevMode ? [{ debugName: "labels" }] : []));
|
|
228
|
+
sliderChange = output();
|
|
229
|
+
onSliderChange(event) {
|
|
230
|
+
const e = event;
|
|
231
|
+
this.sliderChange.emit(e.detail);
|
|
232
|
+
}
|
|
233
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSlider, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
234
|
+
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: `
|
|
235
|
+
<logosphere-slider
|
|
236
|
+
[value]="value()"
|
|
237
|
+
[min]="min()"
|
|
238
|
+
[max]="max()"
|
|
239
|
+
[step]="step()"
|
|
240
|
+
[disabled]="disabled()"
|
|
241
|
+
[range]="range()"
|
|
242
|
+
[rangeStart]="rangeStart()"
|
|
243
|
+
[rangeEnd]="rangeEnd()"
|
|
244
|
+
[minDistance]="minDistance()"
|
|
245
|
+
[tooltip]="tooltip()"
|
|
246
|
+
[showScale]="showScale()"
|
|
247
|
+
[percentage]="percentage()"
|
|
248
|
+
[labels]="labels()"
|
|
249
|
+
(change)="onSliderChange($event)"
|
|
250
|
+
></logosphere-slider>
|
|
251
|
+
`, isInline: true });
|
|
252
|
+
}
|
|
253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSlider, decorators: [{
|
|
254
|
+
type: Component,
|
|
255
|
+
args: [{
|
|
256
|
+
selector: 'lgs-slider',
|
|
257
|
+
imports: [],
|
|
258
|
+
template: `
|
|
259
|
+
<logosphere-slider
|
|
260
|
+
[value]="value()"
|
|
261
|
+
[min]="min()"
|
|
262
|
+
[max]="max()"
|
|
263
|
+
[step]="step()"
|
|
264
|
+
[disabled]="disabled()"
|
|
265
|
+
[range]="range()"
|
|
266
|
+
[rangeStart]="rangeStart()"
|
|
267
|
+
[rangeEnd]="rangeEnd()"
|
|
268
|
+
[minDistance]="minDistance()"
|
|
269
|
+
[tooltip]="tooltip()"
|
|
270
|
+
[showScale]="showScale()"
|
|
271
|
+
[percentage]="percentage()"
|
|
272
|
+
[labels]="labels()"
|
|
273
|
+
(change)="onSliderChange($event)"
|
|
274
|
+
></logosphere-slider>
|
|
275
|
+
`,
|
|
276
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
277
|
+
}]
|
|
278
|
+
}], 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"] }] } });
|
|
279
|
+
|
|
205
280
|
class LogosphereSwitch {
|
|
206
281
|
checked = input(false, ...(ngDevMode ? [{ debugName: "checked" }] : []));
|
|
207
282
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
@@ -238,6 +313,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
238
313
|
}]
|
|
239
314
|
}], 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
315
|
|
|
316
|
+
class LogosphereAccordion {
|
|
317
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
318
|
+
multiple = input(false, ...(ngDevMode ? [{ debugName: "multiple" }] : []));
|
|
319
|
+
defaultOpen = input([], ...(ngDevMode ? [{ debugName: "defaultOpen" }] : []));
|
|
320
|
+
border = input('full', ...(ngDevMode ? [{ debugName: "border" }] : []));
|
|
321
|
+
iconPosition = input('right', ...(ngDevMode ? [{ debugName: "iconPosition" }] : []));
|
|
322
|
+
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
323
|
+
accordionChange = output();
|
|
324
|
+
onAccordionChange(event) {
|
|
325
|
+
const e = event;
|
|
326
|
+
this.accordionChange.emit(e.detail);
|
|
327
|
+
}
|
|
328
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereAccordion, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
329
|
+
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: `
|
|
330
|
+
<logosphere-accordion
|
|
331
|
+
[items]="items()"
|
|
332
|
+
[multiple]="multiple()"
|
|
333
|
+
[defaultOpen]="defaultOpen()"
|
|
334
|
+
[border]="border()"
|
|
335
|
+
[iconPosition]="iconPosition()"
|
|
336
|
+
[size]="size()"
|
|
337
|
+
(accordion-change)="onAccordionChange($event)"
|
|
338
|
+
>
|
|
339
|
+
<ng-content></ng-content>
|
|
340
|
+
</logosphere-accordion>
|
|
341
|
+
`, isInline: true });
|
|
342
|
+
}
|
|
343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereAccordion, decorators: [{
|
|
344
|
+
type: Component,
|
|
345
|
+
args: [{
|
|
346
|
+
selector: 'lgs-accordion',
|
|
347
|
+
imports: [],
|
|
348
|
+
template: `
|
|
349
|
+
<logosphere-accordion
|
|
350
|
+
[items]="items()"
|
|
351
|
+
[multiple]="multiple()"
|
|
352
|
+
[defaultOpen]="defaultOpen()"
|
|
353
|
+
[border]="border()"
|
|
354
|
+
[iconPosition]="iconPosition()"
|
|
355
|
+
[size]="size()"
|
|
356
|
+
(accordion-change)="onAccordionChange($event)"
|
|
357
|
+
>
|
|
358
|
+
<ng-content></ng-content>
|
|
359
|
+
</logosphere-accordion>
|
|
360
|
+
`,
|
|
361
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
362
|
+
}]
|
|
363
|
+
}], 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"] }] } });
|
|
364
|
+
|
|
241
365
|
class LogosphereBreadcrumb {
|
|
242
366
|
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
243
367
|
set elRef(element) {
|
|
@@ -323,6 +447,110 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
323
447
|
}]
|
|
324
448
|
}], 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
449
|
|
|
450
|
+
class LogosphereChipGroup {
|
|
451
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
452
|
+
value = input([], ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
453
|
+
theme = input('default', ...(ngDevMode ? [{ debugName: "theme" }] : []));
|
|
454
|
+
gap = input('var(--spacing-2)', ...(ngDevMode ? [{ debugName: "gap" }] : []));
|
|
455
|
+
chipGroupChange = output();
|
|
456
|
+
onChipGroupChange(event) {
|
|
457
|
+
const e = event;
|
|
458
|
+
this.chipGroupChange.emit(e.detail);
|
|
459
|
+
}
|
|
460
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereChipGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
461
|
+
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: `
|
|
462
|
+
<logosphere-chip-group
|
|
463
|
+
[items]="items()"
|
|
464
|
+
[value]="value()"
|
|
465
|
+
[theme]="theme()"
|
|
466
|
+
[gap]="gap()"
|
|
467
|
+
(chip-group-change)="onChipGroupChange($event)"
|
|
468
|
+
></logosphere-chip-group>
|
|
469
|
+
`, isInline: true });
|
|
470
|
+
}
|
|
471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereChipGroup, decorators: [{
|
|
472
|
+
type: Component,
|
|
473
|
+
args: [{
|
|
474
|
+
selector: 'lgs-chip-group',
|
|
475
|
+
imports: [],
|
|
476
|
+
template: `
|
|
477
|
+
<logosphere-chip-group
|
|
478
|
+
[items]="items()"
|
|
479
|
+
[value]="value()"
|
|
480
|
+
[theme]="theme()"
|
|
481
|
+
[gap]="gap()"
|
|
482
|
+
(chip-group-change)="onChipGroupChange($event)"
|
|
483
|
+
></logosphere-chip-group>
|
|
484
|
+
`,
|
|
485
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
486
|
+
}]
|
|
487
|
+
}], 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"] }] } });
|
|
488
|
+
|
|
489
|
+
class LogosphereCollapse {
|
|
490
|
+
title = input('', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
491
|
+
expanded = input(false, ...(ngDevMode ? [{ debugName: "expanded" }] : []));
|
|
492
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
493
|
+
border = input('full', ...(ngDevMode ? [{ debugName: "border" }] : []));
|
|
494
|
+
iconPosition = input('right', ...(ngDevMode ? [{ debugName: "iconPosition" }] : []));
|
|
495
|
+
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
496
|
+
toggle = output();
|
|
497
|
+
onToggle(event) {
|
|
498
|
+
const e = event;
|
|
499
|
+
this.toggle.emit(e.detail);
|
|
500
|
+
}
|
|
501
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCollapse, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
502
|
+
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: `
|
|
503
|
+
<logosphere-collapse
|
|
504
|
+
[title]="title()"
|
|
505
|
+
[expanded]="expanded()"
|
|
506
|
+
[disabled]="disabled()"
|
|
507
|
+
[border]="border()"
|
|
508
|
+
[iconPosition]="iconPosition()"
|
|
509
|
+
[size]="size()"
|
|
510
|
+
(toggle)="onToggle($event)"
|
|
511
|
+
>
|
|
512
|
+
<ng-content></ng-content>
|
|
513
|
+
</logosphere-collapse>
|
|
514
|
+
`, isInline: true });
|
|
515
|
+
}
|
|
516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCollapse, decorators: [{
|
|
517
|
+
type: Component,
|
|
518
|
+
args: [{
|
|
519
|
+
selector: 'lgs-collapse',
|
|
520
|
+
imports: [],
|
|
521
|
+
template: `
|
|
522
|
+
<logosphere-collapse
|
|
523
|
+
[title]="title()"
|
|
524
|
+
[expanded]="expanded()"
|
|
525
|
+
[disabled]="disabled()"
|
|
526
|
+
[border]="border()"
|
|
527
|
+
[iconPosition]="iconPosition()"
|
|
528
|
+
[size]="size()"
|
|
529
|
+
(toggle)="onToggle($event)"
|
|
530
|
+
>
|
|
531
|
+
<ng-content></ng-content>
|
|
532
|
+
</logosphere-collapse>
|
|
533
|
+
`,
|
|
534
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
535
|
+
}]
|
|
536
|
+
}], 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"] }] } });
|
|
537
|
+
|
|
538
|
+
class LogosphereIcon {
|
|
539
|
+
name = input('', ...(ngDevMode ? [{ debugName: "name" }] : []));
|
|
540
|
+
size = input(20, ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
541
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereIcon, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
542
|
+
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 });
|
|
543
|
+
}
|
|
544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereIcon, decorators: [{
|
|
545
|
+
type: Component,
|
|
546
|
+
args: [{
|
|
547
|
+
selector: 'lgs-icon',
|
|
548
|
+
imports: [],
|
|
549
|
+
template: `<ui-icon [name]="name()" [size]="size()"></ui-icon>`,
|
|
550
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
551
|
+
}]
|
|
552
|
+
}], propDecorators: { name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }] } });
|
|
553
|
+
|
|
326
554
|
class LogosphereInput {
|
|
327
555
|
value = input('', ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
328
556
|
type = input('text', ...(ngDevMode ? [{ debugName: "type" }] : []));
|
|
@@ -443,6 +671,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
443
671
|
}]
|
|
444
672
|
}], 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"] }] } });
|
|
445
673
|
|
|
674
|
+
class LogosphereInputGroup {
|
|
675
|
+
stretch = input(true, ...(ngDevMode ? [{ debugName: "stretch" }] : []));
|
|
676
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInputGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
677
|
+
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: `
|
|
678
|
+
<logosphere-input-group [stretch]="stretch()">
|
|
679
|
+
<ng-content></ng-content>
|
|
680
|
+
</logosphere-input-group>
|
|
681
|
+
`, isInline: true });
|
|
682
|
+
}
|
|
683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInputGroup, decorators: [{
|
|
684
|
+
type: Component,
|
|
685
|
+
args: [{
|
|
686
|
+
selector: 'lgs-input-group',
|
|
687
|
+
imports: [],
|
|
688
|
+
template: `
|
|
689
|
+
<logosphere-input-group [stretch]="stretch()">
|
|
690
|
+
<ng-content></ng-content>
|
|
691
|
+
</logosphere-input-group>
|
|
692
|
+
`,
|
|
693
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
694
|
+
}]
|
|
695
|
+
}], propDecorators: { stretch: [{ type: i0.Input, args: [{ isSignal: true, alias: "stretch", required: false }] }] } });
|
|
696
|
+
|
|
446
697
|
class LogospherePagination {
|
|
447
698
|
variant = input('default', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
448
699
|
page = input(1, ...(ngDevMode ? [{ debugName: "page" }] : []));
|
|
@@ -573,6 +824,112 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
573
824
|
}]
|
|
574
825
|
}], 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
826
|
|
|
827
|
+
class LogosphereSplitButton {
|
|
828
|
+
label = input('Button', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
829
|
+
size = input('md', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
830
|
+
theme = input('primary', ...(ngDevMode ? [{ debugName: "theme" }] : []));
|
|
831
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
832
|
+
dropdownDisabled = input(false, ...(ngDevMode ? [{ debugName: "dropdownDisabled" }] : []));
|
|
833
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
834
|
+
action = output();
|
|
835
|
+
dropdownOpen = output();
|
|
836
|
+
dropdownClose = output();
|
|
837
|
+
itemSelect = output();
|
|
838
|
+
onAction() {
|
|
839
|
+
this.action.emit();
|
|
840
|
+
}
|
|
841
|
+
onDropdownOpen() {
|
|
842
|
+
this.dropdownOpen.emit();
|
|
843
|
+
}
|
|
844
|
+
onDropdownClose() {
|
|
845
|
+
this.dropdownClose.emit();
|
|
846
|
+
}
|
|
847
|
+
onItemSelect(event) {
|
|
848
|
+
const e = event;
|
|
849
|
+
this.itemSelect.emit(e.detail);
|
|
850
|
+
}
|
|
851
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSplitButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
852
|
+
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: `
|
|
853
|
+
<logosphere-split-button
|
|
854
|
+
[label]="label()"
|
|
855
|
+
[size]="size()"
|
|
856
|
+
[theme]="theme()"
|
|
857
|
+
[disabled]="disabled()"
|
|
858
|
+
[dropdownDisabled]="dropdownDisabled()"
|
|
859
|
+
[items]="items()"
|
|
860
|
+
(action)="onAction()"
|
|
861
|
+
(dropdown-open)="onDropdownOpen()"
|
|
862
|
+
(dropdown-close)="onDropdownClose()"
|
|
863
|
+
(item-select)="onItemSelect($event)"
|
|
864
|
+
>
|
|
865
|
+
<ng-content></ng-content>
|
|
866
|
+
</logosphere-split-button>
|
|
867
|
+
`, isInline: true });
|
|
868
|
+
}
|
|
869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereSplitButton, decorators: [{
|
|
870
|
+
type: Component,
|
|
871
|
+
args: [{
|
|
872
|
+
selector: 'lgs-split-button',
|
|
873
|
+
imports: [],
|
|
874
|
+
template: `
|
|
875
|
+
<logosphere-split-button
|
|
876
|
+
[label]="label()"
|
|
877
|
+
[size]="size()"
|
|
878
|
+
[theme]="theme()"
|
|
879
|
+
[disabled]="disabled()"
|
|
880
|
+
[dropdownDisabled]="dropdownDisabled()"
|
|
881
|
+
[items]="items()"
|
|
882
|
+
(action)="onAction()"
|
|
883
|
+
(dropdown-open)="onDropdownOpen()"
|
|
884
|
+
(dropdown-close)="onDropdownClose()"
|
|
885
|
+
(item-select)="onItemSelect($event)"
|
|
886
|
+
>
|
|
887
|
+
<ng-content></ng-content>
|
|
888
|
+
</logosphere-split-button>
|
|
889
|
+
`,
|
|
890
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
891
|
+
}]
|
|
892
|
+
}], 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"] }] } });
|
|
893
|
+
|
|
894
|
+
class LogosphereStepper {
|
|
895
|
+
steps = input([], ...(ngDevMode ? [{ debugName: "steps" }] : []));
|
|
896
|
+
activeStep = input(0, ...(ngDevMode ? [{ debugName: "activeStep" }] : []));
|
|
897
|
+
orientation = input('horizontal', ...(ngDevMode ? [{ debugName: "orientation" }] : []));
|
|
898
|
+
clickable = input(false, ...(ngDevMode ? [{ debugName: "clickable" }] : []));
|
|
899
|
+
stepChange = output();
|
|
900
|
+
onStepChange(event) {
|
|
901
|
+
const e = event;
|
|
902
|
+
this.stepChange.emit(e.detail);
|
|
903
|
+
}
|
|
904
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereStepper, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
905
|
+
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: `
|
|
906
|
+
<logosphere-stepper
|
|
907
|
+
[steps]="steps()"
|
|
908
|
+
[activeStep]="activeStep()"
|
|
909
|
+
[orientation]="orientation()"
|
|
910
|
+
[clickable]="clickable()"
|
|
911
|
+
(step-change)="onStepChange($event)"
|
|
912
|
+
></logosphere-stepper>
|
|
913
|
+
`, isInline: true });
|
|
914
|
+
}
|
|
915
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereStepper, decorators: [{
|
|
916
|
+
type: Component,
|
|
917
|
+
args: [{
|
|
918
|
+
selector: 'lgs-stepper',
|
|
919
|
+
imports: [],
|
|
920
|
+
template: `
|
|
921
|
+
<logosphere-stepper
|
|
922
|
+
[steps]="steps()"
|
|
923
|
+
[activeStep]="activeStep()"
|
|
924
|
+
[orientation]="orientation()"
|
|
925
|
+
[clickable]="clickable()"
|
|
926
|
+
(step-change)="onStepChange($event)"
|
|
927
|
+
></logosphere-stepper>
|
|
928
|
+
`,
|
|
929
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
930
|
+
}]
|
|
931
|
+
}], 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"] }] } });
|
|
932
|
+
|
|
576
933
|
class LogosphereTextarea {
|
|
577
934
|
value = input('', ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
578
935
|
placeholder = input('', ...(ngDevMode ? [{ debugName: "placeholder" }] : []));
|
|
@@ -1311,6 +1668,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
1311
1668
|
args: ['el', { static: false }]
|
|
1312
1669
|
}] } });
|
|
1313
1670
|
|
|
1671
|
+
class LogosphereTable {
|
|
1672
|
+
columns = input([], ...(ngDevMode ? [{ debugName: "columns" }] : []));
|
|
1673
|
+
actionColumn = input(undefined, ...(ngDevMode ? [{ debugName: "actionColumn" }] : []));
|
|
1674
|
+
rows = input([], ...(ngDevMode ? [{ debugName: "rows" }] : []));
|
|
1675
|
+
rowKey = input('id', ...(ngDevMode ? [{ debugName: "rowKey" }] : []));
|
|
1676
|
+
emptyMessage = input('Kayıt bulunamadı', ...(ngDevMode ? [{ debugName: "emptyMessage" }] : []));
|
|
1677
|
+
maxHeight = input(undefined, ...(ngDevMode ? [{ debugName: "maxHeight" }] : []));
|
|
1678
|
+
selection = input(false, ...(ngDevMode ? [{ debugName: "selection" }] : []));
|
|
1679
|
+
stickySelection = input(false, ...(ngDevMode ? [{ debugName: "stickySelection" }] : []));
|
|
1680
|
+
resizable = input(false, ...(ngDevMode ? [{ debugName: "resizable" }] : []));
|
|
1681
|
+
borderless = input(false, ...(ngDevMode ? [{ debugName: "borderless" }] : []));
|
|
1682
|
+
rowClick = output();
|
|
1683
|
+
sortChange = output();
|
|
1684
|
+
selectChange = output();
|
|
1685
|
+
search = output();
|
|
1686
|
+
widthChange = output();
|
|
1687
|
+
sortChangeHandler = (detail) => this.sortChange.emit(detail);
|
|
1688
|
+
selectChangeHandler = (detail) => this.selectChange.emit(detail);
|
|
1689
|
+
searchHandler = (detail) => this.search.emit(detail);
|
|
1690
|
+
widthChangeHandler = (detail) => this.widthChange.emit(detail);
|
|
1691
|
+
onRowClick(event) {
|
|
1692
|
+
const e = event;
|
|
1693
|
+
this.rowClick.emit(e.detail);
|
|
1694
|
+
}
|
|
1695
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereTable, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1696
|
+
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: `
|
|
1697
|
+
<logosphere-table
|
|
1698
|
+
[columns]="columns()"
|
|
1699
|
+
[actionColumn]="actionColumn()"
|
|
1700
|
+
[rows]="rows()"
|
|
1701
|
+
[rowKey]="rowKey()"
|
|
1702
|
+
[emptyMessage]="emptyMessage()"
|
|
1703
|
+
[maxHeight]="maxHeight()"
|
|
1704
|
+
[selection]="selection()"
|
|
1705
|
+
[stickySelection]="stickySelection()"
|
|
1706
|
+
[resizable]="resizable()"
|
|
1707
|
+
[borderless]="borderless()"
|
|
1708
|
+
[onSortChange]="sortChangeHandler"
|
|
1709
|
+
[onSelectChange]="selectChangeHandler"
|
|
1710
|
+
[onSearch]="searchHandler"
|
|
1711
|
+
[onWidthChange]="widthChangeHandler"
|
|
1712
|
+
(row-click)="onRowClick($event)"
|
|
1713
|
+
></logosphere-table>
|
|
1714
|
+
`, isInline: true });
|
|
1715
|
+
}
|
|
1716
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereTable, decorators: [{
|
|
1717
|
+
type: Component,
|
|
1718
|
+
args: [{
|
|
1719
|
+
selector: 'lgs-table',
|
|
1720
|
+
imports: [],
|
|
1721
|
+
template: `
|
|
1722
|
+
<logosphere-table
|
|
1723
|
+
[columns]="columns()"
|
|
1724
|
+
[actionColumn]="actionColumn()"
|
|
1725
|
+
[rows]="rows()"
|
|
1726
|
+
[rowKey]="rowKey()"
|
|
1727
|
+
[emptyMessage]="emptyMessage()"
|
|
1728
|
+
[maxHeight]="maxHeight()"
|
|
1729
|
+
[selection]="selection()"
|
|
1730
|
+
[stickySelection]="stickySelection()"
|
|
1731
|
+
[resizable]="resizable()"
|
|
1732
|
+
[borderless]="borderless()"
|
|
1733
|
+
[onSortChange]="sortChangeHandler"
|
|
1734
|
+
[onSelectChange]="selectChangeHandler"
|
|
1735
|
+
[onSearch]="searchHandler"
|
|
1736
|
+
[onWidthChange]="widthChangeHandler"
|
|
1737
|
+
(row-click)="onRowClick($event)"
|
|
1738
|
+
></logosphere-table>
|
|
1739
|
+
`,
|
|
1740
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1741
|
+
}]
|
|
1742
|
+
}], 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"] }] } });
|
|
1743
|
+
|
|
1314
1744
|
class LogosphereToast {
|
|
1315
1745
|
type = input('info', ...(ngDevMode ? [{ debugName: "type" }] : []));
|
|
1316
1746
|
toastTitle = input('', { ...(ngDevMode ? { debugName: "toastTitle" } : {}), alias: 'title' });
|
|
@@ -1448,5 +1878,5 @@ const WRAPPER_VERSION = '1.0.0';
|
|
|
1448
1878
|
* Generated bundle index. Do not edit.
|
|
1449
1879
|
*/
|
|
1450
1880
|
|
|
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 };
|
|
1881
|
+
export { LogosphereAccordion, LogosphereBadge, LogosphereBreadcrumb, LogosphereButton, LogosphereCalendar, LogosphereCard, LogosphereChatbot, LogosphereCheckbox, LogosphereChipGroup, LogosphereCollapse, LogosphereCombobox, LogosphereDatePicker, LogosphereDownloadManager, LogosphereDrawer, LogosphereFormField, LogosphereIcon, LogosphereInput, LogosphereInputGroup, LogosphereLeftMenu, LogosphereLeftMenuItem, LogosphereModal, LogospherePagination, LogospherePopover, LogosphereSlider, LogosphereSplitButton, LogosphereStepper, LogosphereSwitch, LogosphereTab, LogosphereTable, LogosphereTextarea, LogosphereTimePicker, LogosphereToast, LogosphereToastContainer, LogosphereTreeMenu, WRAPPER_VERSION };
|
|
1452
1882
|
//# sourceMappingURL=logosphere-ui-angular.mjs.map
|