@logosphere-ui/angular 0.0.1-alpha.8 → 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-left-menu.mjs +4 -17
- package/fesm2022/logosphere-ui-angular-src-lib-left-menu.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 +520 -36
- 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-left-menu.d.ts +1 -7
- 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 +272 -18
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, output, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
|
|
3
|
+
import '@logosphere-ui/core/accordion';
|
|
4
|
+
|
|
5
|
+
class LogosphereAccordion {
|
|
6
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
7
|
+
multiple = input(false, ...(ngDevMode ? [{ debugName: "multiple" }] : []));
|
|
8
|
+
defaultOpen = input([], ...(ngDevMode ? [{ debugName: "defaultOpen" }] : []));
|
|
9
|
+
border = input('full', ...(ngDevMode ? [{ debugName: "border" }] : []));
|
|
10
|
+
iconPosition = input('right', ...(ngDevMode ? [{ debugName: "iconPosition" }] : []));
|
|
11
|
+
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
12
|
+
accordionChange = output();
|
|
13
|
+
onAccordionChange(event) {
|
|
14
|
+
const e = event;
|
|
15
|
+
this.accordionChange.emit(e.detail);
|
|
16
|
+
}
|
|
17
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereAccordion, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18
|
+
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: `
|
|
19
|
+
<logosphere-accordion
|
|
20
|
+
[items]="items()"
|
|
21
|
+
[multiple]="multiple()"
|
|
22
|
+
[defaultOpen]="defaultOpen()"
|
|
23
|
+
[border]="border()"
|
|
24
|
+
[iconPosition]="iconPosition()"
|
|
25
|
+
[size]="size()"
|
|
26
|
+
(accordion-change)="onAccordionChange($event)"
|
|
27
|
+
>
|
|
28
|
+
<ng-content></ng-content>
|
|
29
|
+
</logosphere-accordion>
|
|
30
|
+
`, isInline: true });
|
|
31
|
+
}
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereAccordion, decorators: [{
|
|
33
|
+
type: Component,
|
|
34
|
+
args: [{
|
|
35
|
+
selector: 'lgs-accordion',
|
|
36
|
+
imports: [],
|
|
37
|
+
template: `
|
|
38
|
+
<logosphere-accordion
|
|
39
|
+
[items]="items()"
|
|
40
|
+
[multiple]="multiple()"
|
|
41
|
+
[defaultOpen]="defaultOpen()"
|
|
42
|
+
[border]="border()"
|
|
43
|
+
[iconPosition]="iconPosition()"
|
|
44
|
+
[size]="size()"
|
|
45
|
+
(accordion-change)="onAccordionChange($event)"
|
|
46
|
+
>
|
|
47
|
+
<ng-content></ng-content>
|
|
48
|
+
</logosphere-accordion>
|
|
49
|
+
`,
|
|
50
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
51
|
+
}]
|
|
52
|
+
}], 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"] }] } });
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Generated bundle index. Do not edit.
|
|
56
|
+
*/
|
|
57
|
+
|
|
58
|
+
export { LogosphereAccordion };
|
|
59
|
+
//# sourceMappingURL=logosphere-ui-angular-src-lib-accordion.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-accordion.mjs","sources":["../../projects/wrapper/src/lib/accordion/accordion.ts","../../projects/wrapper/src/lib/accordion/logosphere-ui-angular-src-lib-accordion.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, input, output } from '@angular/core';\nimport '@logosphere-ui/core/accordion';\n\nexport interface AccordionItem {\n title: string;\n content: string;\n disabled?: boolean;\n}\n\n@Component({\n selector: 'lgs-accordion',\n imports: [],\n template: `\n <logosphere-accordion\n [items]=\"items()\"\n [multiple]=\"multiple()\"\n [defaultOpen]=\"defaultOpen()\"\n [border]=\"border()\"\n [iconPosition]=\"iconPosition()\"\n [size]=\"size()\"\n (accordion-change)=\"onAccordionChange($event)\"\n >\n <ng-content></ng-content>\n </logosphere-accordion>\n `,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereAccordion {\n items = input<AccordionItem[]>([]);\n multiple = input<boolean>(false);\n defaultOpen = input<number | number[]>([]);\n border = input<'full' | 'bottom'>('full');\n iconPosition = input<'left' | 'right'>('right');\n size = input<'default' | 'large'>('default');\n\n accordionChange = output<{ index: number; expanded: boolean; openIndices: number[] }>();\n\n onAccordionChange(event: Event) {\n const e = event as CustomEvent<{ index: number; expanded: boolean; openIndices: number[] }>;\n this.accordionChange.emit(e.detail);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MA2Ba,mBAAmB,CAAA;AAC9B,IAAA,KAAK,GAAG,KAAK,CAAkB,EAAE,iDAAC;AAClC,IAAA,QAAQ,GAAG,KAAK,CAAU,KAAK,oDAAC;AAChC,IAAA,WAAW,GAAG,KAAK,CAAoB,EAAE,uDAAC;AAC1C,IAAA,MAAM,GAAG,KAAK,CAAoB,MAAM,kDAAC;AACzC,IAAA,YAAY,GAAG,KAAK,CAAmB,OAAO,wDAAC;AAC/C,IAAA,IAAI,GAAG,KAAK,CAAsB,SAAS,gDAAC;IAE5C,eAAe,GAAG,MAAM,EAA+D;AAEvF,IAAA,iBAAiB,CAAC,KAAY,EAAA;QAC5B,MAAM,CAAC,GAAG,KAAiF;QAC3F,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACrC;uGAbW,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,WAAA,EAAA,EAAA,iBAAA,EAAA,aAAA,EAAA,UAAA,EAAA,aAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,MAAA,EAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,QAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,YAAA,EAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,UAAA,EAAA,cAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,IAAA,EAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,EAAA,eAAA,EAAA,iBAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAfpB;;;;;;;;;;;;AAYT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAGU,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAlB/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;AACzB,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,QAAQ,EAAE;;;;;;;;;;;;AAYT,EAAA,CAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;AC1BD;;AAEG;;;;"}
|
|
@@ -7,9 +7,18 @@ class LogosphereButton {
|
|
|
7
7
|
size = input('md', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
8
8
|
variant = input('primary', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
9
9
|
iconOnly = input(false, ...(ngDevMode ? [{ debugName: "iconOnly" }] : []));
|
|
10
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
11
|
+
loading = input(false, ...(ngDevMode ? [{ debugName: "loading" }] : []));
|
|
10
12
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
11
|
-
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: `
|
|
12
|
-
<logosphere-button
|
|
13
|
+
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: `
|
|
14
|
+
<logosphere-button
|
|
15
|
+
[theme]="theme()"
|
|
16
|
+
[size]="size()"
|
|
17
|
+
[variant]="variant()"
|
|
18
|
+
[iconOnly]="iconOnly()"
|
|
19
|
+
[disabled]="disabled()"
|
|
20
|
+
[loading]="loading()"
|
|
21
|
+
>
|
|
13
22
|
<ng-content></ng-content>
|
|
14
23
|
</logosphere-button>`, isInline: true });
|
|
15
24
|
}
|
|
@@ -19,12 +28,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
19
28
|
selector: 'lgs-button',
|
|
20
29
|
imports: [],
|
|
21
30
|
template: `
|
|
22
|
-
<logosphere-button
|
|
31
|
+
<logosphere-button
|
|
32
|
+
[theme]="theme()"
|
|
33
|
+
[size]="size()"
|
|
34
|
+
[variant]="variant()"
|
|
35
|
+
[iconOnly]="iconOnly()"
|
|
36
|
+
[disabled]="disabled()"
|
|
37
|
+
[loading]="loading()"
|
|
38
|
+
>
|
|
23
39
|
<ng-content></ng-content>
|
|
24
40
|
</logosphere-button>`,
|
|
25
41
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
26
42
|
}]
|
|
27
|
-
}], 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 }] }] } });
|
|
43
|
+
}], 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 }] }] } });
|
|
28
44
|
|
|
29
45
|
/**
|
|
30
46
|
* Generated bundle index. Do not edit.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logosphere-ui-angular-src-lib-button.mjs","sources":["../../projects/wrapper/src/lib/button/button.ts","../../projects/wrapper/src/lib/button/logosphere-ui-angular-src-lib-button.ts"],"sourcesContent":["import {Component, CUSTOM_ELEMENTS_SCHEMA, input} from '@angular/core';\nimport '@logosphere-ui/core/button';\n\n@Component({\n selector: 'lgs-button',\n imports: [],\n template: `\n <logosphere-button
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-button.mjs","sources":["../../projects/wrapper/src/lib/button/button.ts","../../projects/wrapper/src/lib/button/logosphere-ui-angular-src-lib-button.ts"],"sourcesContent":["import {Component, CUSTOM_ELEMENTS_SCHEMA, input} from '@angular/core';\nimport '@logosphere-ui/core/button';\n\n@Component({\n selector: 'lgs-button',\n imports: [],\n template: `\n <logosphere-button\n [theme]=\"theme()\"\n [size]=\"size()\"\n [variant]=\"variant()\"\n [iconOnly]=\"iconOnly()\"\n [disabled]=\"disabled()\"\n [loading]=\"loading()\"\n >\n <ng-content></ng-content>\n </logosphere-button>`,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereButton {\n theme = input<string>('primary');\n size = input<string>('md');\n variant = input<string>('primary');\n iconOnly = input<boolean>(false);\n disabled = input<boolean>(false);\n loading = input<boolean>(false);\n\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAmBa,gBAAgB,CAAA;AAC3B,IAAA,KAAK,GAAG,KAAK,CAAS,SAAS,iDAAC;AAChC,IAAA,IAAI,GAAG,KAAK,CAAS,IAAI,gDAAC;AAC1B,IAAA,OAAO,GAAG,KAAK,CAAS,SAAS,mDAAC;AAClC,IAAA,QAAQ,GAAG,KAAK,CAAU,KAAK,oDAAC;AAChC,IAAA,QAAQ,GAAG,KAAK,CAAU,KAAK,oDAAC;AAChC,IAAA,OAAO,GAAG,KAAK,CAAU,KAAK,mDAAC;uGANpB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAhB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,gBAAgB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,IAAA,EAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,OAAA,EAAA,EAAA,iBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,OAAA,EAAA,EAAA,iBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAbjB;;;;;;;;;;AAUa,wBAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAGZ,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAhB5B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,YAAY;AACtB,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,QAAQ,EAAE;;;;;;;;;;AAUa,wBAAA,CAAA;oBACvB,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;AClBD;;AAEG;;;;"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, output, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
|
|
3
|
+
import '@logosphere-ui/core/chip-group';
|
|
4
|
+
|
|
5
|
+
class LogosphereChipGroup {
|
|
6
|
+
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
7
|
+
value = input([], ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
8
|
+
theme = input('default', ...(ngDevMode ? [{ debugName: "theme" }] : []));
|
|
9
|
+
gap = input('var(--spacing-2)', ...(ngDevMode ? [{ debugName: "gap" }] : []));
|
|
10
|
+
chipGroupChange = output();
|
|
11
|
+
onChipGroupChange(event) {
|
|
12
|
+
const e = event;
|
|
13
|
+
this.chipGroupChange.emit(e.detail);
|
|
14
|
+
}
|
|
15
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereChipGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
16
|
+
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: `
|
|
17
|
+
<logosphere-chip-group
|
|
18
|
+
[items]="items()"
|
|
19
|
+
[value]="value()"
|
|
20
|
+
[theme]="theme()"
|
|
21
|
+
[gap]="gap()"
|
|
22
|
+
(chip-group-change)="onChipGroupChange($event)"
|
|
23
|
+
></logosphere-chip-group>
|
|
24
|
+
`, isInline: true });
|
|
25
|
+
}
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereChipGroup, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{
|
|
29
|
+
selector: 'lgs-chip-group',
|
|
30
|
+
imports: [],
|
|
31
|
+
template: `
|
|
32
|
+
<logosphere-chip-group
|
|
33
|
+
[items]="items()"
|
|
34
|
+
[value]="value()"
|
|
35
|
+
[theme]="theme()"
|
|
36
|
+
[gap]="gap()"
|
|
37
|
+
(chip-group-change)="onChipGroupChange($event)"
|
|
38
|
+
></logosphere-chip-group>
|
|
39
|
+
`,
|
|
40
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
41
|
+
}]
|
|
42
|
+
}], 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"] }] } });
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Generated bundle index. Do not edit.
|
|
46
|
+
*/
|
|
47
|
+
|
|
48
|
+
export { LogosphereChipGroup };
|
|
49
|
+
//# sourceMappingURL=logosphere-ui-angular-src-lib-chip-group.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-chip-group.mjs","sources":["../../projects/wrapper/src/lib/chip-group/chip-group.ts","../../projects/wrapper/src/lib/chip-group/logosphere-ui-angular-src-lib-chip-group.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, input, output } from '@angular/core';\nimport '@logosphere-ui/core/chip-group';\n\nexport interface ChipItem {\n label: string;\n value: string;\n disabled?: boolean;\n}\n\n@Component({\n selector: 'lgs-chip-group',\n imports: [],\n template: `\n <logosphere-chip-group\n [items]=\"items()\"\n [value]=\"value()\"\n [theme]=\"theme()\"\n [gap]=\"gap()\"\n (chip-group-change)=\"onChipGroupChange($event)\"\n ></logosphere-chip-group>\n `,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereChipGroup {\n items = input<ChipItem[]>([]);\n value = input<string[]>([]);\n theme = input<string>('default');\n gap = input<string>('var(--spacing-2)');\n\n chipGroupChange = output<{ value: string[]; item: ChipItem; selected: boolean }>();\n\n onChipGroupChange(event: Event) {\n const e = event as CustomEvent<{ value: string[]; item: ChipItem; selected: boolean }>;\n this.chipGroupChange.emit(e.detail);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAuBa,mBAAmB,CAAA;AAC9B,IAAA,KAAK,GAAG,KAAK,CAAa,EAAE,iDAAC;AAC7B,IAAA,KAAK,GAAG,KAAK,CAAW,EAAE,iDAAC;AAC3B,IAAA,KAAK,GAAG,KAAK,CAAS,SAAS,iDAAC;AAChC,IAAA,GAAG,GAAG,KAAK,CAAS,kBAAkB,+CAAC;IAEvC,eAAe,GAAG,MAAM,EAA0D;AAElF,IAAA,iBAAiB,CAAC,KAAY,EAAA;QAC5B,MAAM,CAAC,GAAG,KAA4E;QACtF,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACrC;uGAXW,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,GAAA,EAAA,EAAA,iBAAA,EAAA,KAAA,EAAA,UAAA,EAAA,KAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,EAAA,eAAA,EAAA,iBAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAXpB;;;;;;;;AAQT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAGU,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAd/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,gBAAgB;AAC1B,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,QAAQ,EAAE;;;;;;;;AAQT,EAAA,CAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACtBD;;AAEG;;;;"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, output, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
|
|
3
|
+
import '@logosphere-ui/core/collapse';
|
|
4
|
+
|
|
5
|
+
class LogosphereCollapse {
|
|
6
|
+
title = input('', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
7
|
+
expanded = input(false, ...(ngDevMode ? [{ debugName: "expanded" }] : []));
|
|
8
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
9
|
+
border = input('full', ...(ngDevMode ? [{ debugName: "border" }] : []));
|
|
10
|
+
iconPosition = input('right', ...(ngDevMode ? [{ debugName: "iconPosition" }] : []));
|
|
11
|
+
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
12
|
+
toggle = output();
|
|
13
|
+
onToggle(event) {
|
|
14
|
+
const e = event;
|
|
15
|
+
this.toggle.emit(e.detail);
|
|
16
|
+
}
|
|
17
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCollapse, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18
|
+
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: `
|
|
19
|
+
<logosphere-collapse
|
|
20
|
+
[title]="title()"
|
|
21
|
+
[expanded]="expanded()"
|
|
22
|
+
[disabled]="disabled()"
|
|
23
|
+
[border]="border()"
|
|
24
|
+
[iconPosition]="iconPosition()"
|
|
25
|
+
[size]="size()"
|
|
26
|
+
(toggle)="onToggle($event)"
|
|
27
|
+
>
|
|
28
|
+
<ng-content></ng-content>
|
|
29
|
+
</logosphere-collapse>
|
|
30
|
+
`, isInline: true });
|
|
31
|
+
}
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCollapse, decorators: [{
|
|
33
|
+
type: Component,
|
|
34
|
+
args: [{
|
|
35
|
+
selector: 'lgs-collapse',
|
|
36
|
+
imports: [],
|
|
37
|
+
template: `
|
|
38
|
+
<logosphere-collapse
|
|
39
|
+
[title]="title()"
|
|
40
|
+
[expanded]="expanded()"
|
|
41
|
+
[disabled]="disabled()"
|
|
42
|
+
[border]="border()"
|
|
43
|
+
[iconPosition]="iconPosition()"
|
|
44
|
+
[size]="size()"
|
|
45
|
+
(toggle)="onToggle($event)"
|
|
46
|
+
>
|
|
47
|
+
<ng-content></ng-content>
|
|
48
|
+
</logosphere-collapse>
|
|
49
|
+
`,
|
|
50
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
51
|
+
}]
|
|
52
|
+
}], 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"] }] } });
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Generated bundle index. Do not edit.
|
|
56
|
+
*/
|
|
57
|
+
|
|
58
|
+
export { LogosphereCollapse };
|
|
59
|
+
//# sourceMappingURL=logosphere-ui-angular-src-lib-collapse.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-collapse.mjs","sources":["../../projects/wrapper/src/lib/collapse/collapse.ts","../../projects/wrapper/src/lib/collapse/logosphere-ui-angular-src-lib-collapse.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, input, output } from '@angular/core';\nimport '@logosphere-ui/core/collapse';\n\n@Component({\n selector: 'lgs-collapse',\n imports: [],\n template: `\n <logosphere-collapse\n [title]=\"title()\"\n [expanded]=\"expanded()\"\n [disabled]=\"disabled()\"\n [border]=\"border()\"\n [iconPosition]=\"iconPosition()\"\n [size]=\"size()\"\n (toggle)=\"onToggle($event)\"\n >\n <ng-content></ng-content>\n </logosphere-collapse>\n `,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereCollapse {\n title = input<string>('');\n expanded = input<boolean>(false);\n disabled = input<boolean>(false);\n border = input<'full' | 'bottom'>('full');\n iconPosition = input<'left' | 'right'>('right');\n size = input<'default' | 'large'>('default');\n\n toggle = output<{ expanded: boolean }>();\n\n onToggle(event: Event) {\n const e = event as CustomEvent<{ expanded: boolean }>;\n this.toggle.emit(e.detail);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAqBa,kBAAkB,CAAA;AAC7B,IAAA,KAAK,GAAG,KAAK,CAAS,EAAE,iDAAC;AACzB,IAAA,QAAQ,GAAG,KAAK,CAAU,KAAK,oDAAC;AAChC,IAAA,QAAQ,GAAG,KAAK,CAAU,KAAK,oDAAC;AAChC,IAAA,MAAM,GAAG,KAAK,CAAoB,MAAM,kDAAC;AACzC,IAAA,YAAY,GAAG,KAAK,CAAmB,OAAO,wDAAC;AAC/C,IAAA,IAAI,GAAG,KAAK,CAAsB,SAAS,gDAAC;IAE5C,MAAM,GAAG,MAAM,EAAyB;AAExC,IAAA,QAAQ,CAAC,KAAY,EAAA;QACnB,MAAM,CAAC,GAAG,KAA2C;QACrD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IAC5B;uGAbW,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAlB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,kBAAkB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,MAAA,EAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,QAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,YAAA,EAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,UAAA,EAAA,cAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,IAAA,EAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,EAAA,MAAA,EAAA,QAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAfnB;;;;;;;;;;;;AAYT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAGU,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAlB9B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,cAAc;AACxB,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,QAAQ,EAAE;;;;;;;;;;;;AAYT,EAAA,CAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACpBD;;AAEG;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { input, output,
|
|
2
|
+
import { input, output, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
|
|
3
3
|
import '@logosphere-ui/core/combobox';
|
|
4
4
|
|
|
5
5
|
class LogosphereCombobox {
|
|
@@ -10,6 +10,7 @@ class LogosphereCombobox {
|
|
|
10
10
|
required = input(false, ...(ngDevMode ? [{ debugName: "required" }] : []));
|
|
11
11
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
12
12
|
readOnly = input(false, ...(ngDevMode ? [{ debugName: "readOnly" }] : []));
|
|
13
|
+
loading = input(false, ...(ngDevMode ? [{ debugName: "loading" }] : []));
|
|
13
14
|
variant = input('default', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
14
15
|
multiple = input(false, ...(ngDevMode ? [{ debugName: "multiple" }] : []));
|
|
15
16
|
filterable = input(false, ...(ngDevMode ? [{ debugName: "filterable" }] : []));
|
|
@@ -18,26 +19,40 @@ class LogosphereCombobox {
|
|
|
18
19
|
emptyMessage = input('Sonuç yok', ...(ngDevMode ? [{ debugName: "emptyMessage" }] : []));
|
|
19
20
|
size = input('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
20
21
|
items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
|
|
22
|
+
value = input(undefined, ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
23
|
+
clearable = input(true, ...(ngDevMode ? [{ debugName: "clearable" }] : []));
|
|
21
24
|
itemRenderer = input(undefined, ...(ngDevMode ? [{ debugName: "itemRenderer" }] : []));
|
|
25
|
+
onSearch = input(undefined, ...(ngDevMode ? [{ debugName: "onSearch" }] : []));
|
|
26
|
+
onFocus = input(undefined, ...(ngDevMode ? [{ debugName: "onFocus" }] : []));
|
|
27
|
+
onLoadMore = input(undefined, ...(ngDevMode ? [{ debugName: "onLoadMore" }] : []));
|
|
22
28
|
change = output();
|
|
29
|
+
lgsChange = output();
|
|
23
30
|
selected = output();
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
element.nativeElement.items = this.items();
|
|
27
|
-
}
|
|
28
|
-
}
|
|
31
|
+
searchChange = output();
|
|
32
|
+
comboboxFocus = output();
|
|
29
33
|
onChange(event) {
|
|
30
34
|
const e = event;
|
|
31
35
|
this.change.emit(e.detail);
|
|
32
36
|
}
|
|
37
|
+
onLgsChange(event) {
|
|
38
|
+
const e = event;
|
|
39
|
+
this.lgsChange.emit(e.detail);
|
|
40
|
+
}
|
|
33
41
|
onSelected(event) {
|
|
34
42
|
const e = event;
|
|
35
43
|
this.selected.emit(e.detail);
|
|
36
44
|
}
|
|
45
|
+
onSearchChange(event) {
|
|
46
|
+
const e = event;
|
|
47
|
+
this.searchChange.emit(e.detail);
|
|
48
|
+
}
|
|
49
|
+
onComboboxFocus(event) {
|
|
50
|
+
const e = event;
|
|
51
|
+
this.comboboxFocus.emit(e.detail);
|
|
52
|
+
}
|
|
37
53
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereCombobox, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
38
|
-
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 } },
|
|
54
|
+
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: `
|
|
39
55
|
<logosphere-combobox
|
|
40
|
-
#el
|
|
41
56
|
[label]="label()"
|
|
42
57
|
[helper]="helper()"
|
|
43
58
|
[error]="error()"
|
|
@@ -45,6 +60,7 @@ class LogosphereCombobox {
|
|
|
45
60
|
[required]="required()"
|
|
46
61
|
[disabled]="disabled()"
|
|
47
62
|
[readOnly]="readOnly()"
|
|
63
|
+
[loading]="loading()"
|
|
48
64
|
[variant]="variant()"
|
|
49
65
|
[multiple]="multiple()"
|
|
50
66
|
[filterable]="filterable()"
|
|
@@ -52,9 +68,18 @@ class LogosphereCombobox {
|
|
|
52
68
|
[optionValue]="optionValue()"
|
|
53
69
|
[emptyMessage]="emptyMessage()"
|
|
54
70
|
[size]="size()"
|
|
71
|
+
[items]="items()"
|
|
72
|
+
[value]="value()"
|
|
73
|
+
[clearable]="clearable()"
|
|
55
74
|
[itemRenderer]="itemRenderer()"
|
|
75
|
+
[onSearch]="onSearch()"
|
|
76
|
+
[onFocus]="onFocus()"
|
|
77
|
+
[onLoadMore]="onLoadMore()"
|
|
56
78
|
(change)="onChange($event)"
|
|
79
|
+
(lgsChange)="onLgsChange($event)"
|
|
57
80
|
(selected)="onSelected($event)"
|
|
81
|
+
(search-change)="onSearchChange($event)"
|
|
82
|
+
(combobox-focus)="onComboboxFocus($event)"
|
|
58
83
|
></logosphere-combobox>
|
|
59
84
|
`, isInline: true });
|
|
60
85
|
}
|
|
@@ -65,7 +90,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
65
90
|
imports: [],
|
|
66
91
|
template: `
|
|
67
92
|
<logosphere-combobox
|
|
68
|
-
#el
|
|
69
93
|
[label]="label()"
|
|
70
94
|
[helper]="helper()"
|
|
71
95
|
[error]="error()"
|
|
@@ -73,6 +97,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
73
97
|
[required]="required()"
|
|
74
98
|
[disabled]="disabled()"
|
|
75
99
|
[readOnly]="readOnly()"
|
|
100
|
+
[loading]="loading()"
|
|
76
101
|
[variant]="variant()"
|
|
77
102
|
[multiple]="multiple()"
|
|
78
103
|
[filterable]="filterable()"
|
|
@@ -80,17 +105,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
80
105
|
[optionValue]="optionValue()"
|
|
81
106
|
[emptyMessage]="emptyMessage()"
|
|
82
107
|
[size]="size()"
|
|
108
|
+
[items]="items()"
|
|
109
|
+
[value]="value()"
|
|
110
|
+
[clearable]="clearable()"
|
|
83
111
|
[itemRenderer]="itemRenderer()"
|
|
112
|
+
[onSearch]="onSearch()"
|
|
113
|
+
[onFocus]="onFocus()"
|
|
114
|
+
[onLoadMore]="onLoadMore()"
|
|
84
115
|
(change)="onChange($event)"
|
|
116
|
+
(lgsChange)="onLgsChange($event)"
|
|
85
117
|
(selected)="onSelected($event)"
|
|
118
|
+
(search-change)="onSearchChange($event)"
|
|
119
|
+
(combobox-focus)="onComboboxFocus($event)"
|
|
86
120
|
></logosphere-combobox>
|
|
87
121
|
`,
|
|
88
122
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
89
123
|
}]
|
|
90
|
-
}], 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"] }],
|
|
91
|
-
type: ViewChild,
|
|
92
|
-
args: ['el', { static: false }]
|
|
93
|
-
}] } });
|
|
124
|
+
}], 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"] }] } });
|
|
94
125
|
|
|
95
126
|
/**
|
|
96
127
|
* Generated bundle index. Do not edit.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logosphere-ui-angular-src-lib-combobox.mjs","sources":["../../projects/wrapper/src/lib/combobox/combobox.ts","../../projects/wrapper/src/lib/combobox/logosphere-ui-angular-src-lib-combobox.ts"],"sourcesContent":["import {\n Component,\n CUSTOM_ELEMENTS_SCHEMA,\n
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-combobox.mjs","sources":["../../projects/wrapper/src/lib/combobox/combobox.ts","../../projects/wrapper/src/lib/combobox/logosphere-ui-angular-src-lib-combobox.ts"],"sourcesContent":["import {\n Component,\n CUSTOM_ELEMENTS_SCHEMA,\n input,\n output,\n} from '@angular/core';\nimport '@logosphere-ui/core/combobox';\n\nexport type ComboboxItem = Record<string, unknown>;\nexport type ComboboxItemRenderer = (\n item: ComboboxItem,\n context: { index: number; selected: boolean; focused: boolean; multiple: boolean },\n) => unknown;\nexport type ComboboxSearchChangeDetail = { value: string };\nexport type ComboboxFocusDetail = { originalEvent: FocusEvent; value: unknown };\nexport type ComboboxLoadMoreDetail = { value: string };\nexport type ComboboxChangeDetail = { value: unknown };\nexport type ComboboxLgsChangeDetail = { value: unknown; selected: ComboboxItem[] };\n\n@Component({\n selector: 'lgs-combobox',\n imports: [],\n template: `\n <logosphere-combobox\n [label]=\"label()\"\n [helper]=\"helper()\"\n [error]=\"error()\"\n [placeholder]=\"placeholder()\"\n [required]=\"required()\"\n [disabled]=\"disabled()\"\n [readOnly]=\"readOnly()\"\n [loading]=\"loading()\"\n [variant]=\"variant()\"\n [multiple]=\"multiple()\"\n [filterable]=\"filterable()\"\n [optionLabel]=\"optionLabel()\"\n [optionValue]=\"optionValue()\"\n [emptyMessage]=\"emptyMessage()\"\n [size]=\"size()\"\n [items]=\"items()\"\n [value]=\"value()\"\n [clearable]=\"clearable()\"\n [itemRenderer]=\"itemRenderer()\"\n [onSearch]=\"onSearch()\"\n [onFocus]=\"onFocus()\"\n [onLoadMore]=\"onLoadMore()\"\n (change)=\"onChange($event)\"\n (lgsChange)=\"onLgsChange($event)\"\n (selected)=\"onSelected($event)\"\n (search-change)=\"onSearchChange($event)\"\n (combobox-focus)=\"onComboboxFocus($event)\"\n ></logosphere-combobox>\n `,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereCombobox {\n label = input<string>('');\n helper = input<string>('');\n error = input<string>('');\n placeholder = input<string>('Seçim yapınız');\n required = input<boolean>(false);\n disabled = input<boolean>(false);\n readOnly = input<boolean>(false);\n loading = input<boolean>(false);\n variant = input<'default' | 'subtle'>('default');\n multiple = input<boolean>(false);\n filterable = input<boolean>(false);\n optionLabel = input<string>('label');\n optionValue = input<string>('value');\n emptyMessage = input<string>('Sonuç yok');\n size = input<'default' | 'large'>('default');\n items = input<ComboboxItem[]>([]);\n value = input<unknown>(undefined);\n clearable = input<boolean>(true);\n itemRenderer = input<ComboboxItemRenderer | undefined>(undefined);\n onSearch = input<((detail: ComboboxSearchChangeDetail) => void | Promise<unknown>) | undefined>(undefined);\n onFocus = input<((detail: ComboboxFocusDetail) => void | Promise<unknown>) | undefined>(undefined);\n onLoadMore = input<((detail: ComboboxLoadMoreDetail) => void | Promise<unknown>) | undefined>(undefined);\n\n change = output<ComboboxChangeDetail>();\n lgsChange = output<ComboboxLgsChangeDetail>();\n selected = output<{ selected: ComboboxItem[] }>();\n searchChange = output<ComboboxSearchChangeDetail>();\n comboboxFocus = output<ComboboxFocusDetail>();\n\n onChange(event: Event) {\n const e = event as CustomEvent<ComboboxChangeDetail>;\n this.change.emit(e.detail);\n }\n\n onLgsChange(event: Event) {\n const e = event as CustomEvent<ComboboxLgsChangeDetail>;\n this.lgsChange.emit(e.detail);\n }\n\n onSelected(event: Event) {\n const e = event as CustomEvent<{ selected: ComboboxItem[] }>;\n this.selected.emit(e.detail);\n }\n\n onSearchChange(event: Event) {\n const e = event as CustomEvent<ComboboxSearchChangeDetail>;\n this.searchChange.emit(e.detail);\n }\n\n onComboboxFocus(event: Event) {\n const e = event as CustomEvent<ComboboxFocusDetail>;\n this.comboboxFocus.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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"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
|
|
3
|
+
import '@logosphere-ui/core/icon';
|
|
4
|
+
|
|
5
|
+
class LogosphereIcon {
|
|
6
|
+
name = input('', ...(ngDevMode ? [{ debugName: "name" }] : []));
|
|
7
|
+
size = input(20, ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
8
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereIcon, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
+
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 });
|
|
10
|
+
}
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereIcon, decorators: [{
|
|
12
|
+
type: Component,
|
|
13
|
+
args: [{
|
|
14
|
+
selector: 'lgs-icon',
|
|
15
|
+
imports: [],
|
|
16
|
+
template: `<ui-icon [name]="name()" [size]="size()"></ui-icon>`,
|
|
17
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
18
|
+
}]
|
|
19
|
+
}], propDecorators: { name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }] } });
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Generated bundle index. Do not edit.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
export { LogosphereIcon };
|
|
26
|
+
//# sourceMappingURL=logosphere-ui-angular-src-lib-icon.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-icon.mjs","sources":["../../projects/wrapper/src/lib/icon/icon.ts","../../projects/wrapper/src/lib/icon/logosphere-ui-angular-src-lib-icon.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, input } from '@angular/core';\nimport '@logosphere-ui/core/icon';\n\n@Component({\n selector: 'lgs-icon',\n imports: [],\n template: `<ui-icon [name]=\"name()\" [size]=\"size()\"></ui-icon>`,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereIcon {\n name = input<string>('');\n size = input<number>(20);\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MASa,cAAc,CAAA;AACzB,IAAA,IAAI,GAAG,KAAK,CAAS,EAAE,gDAAC;AACxB,IAAA,IAAI,GAAG,KAAK,CAAS,EAAE,gDAAC;uGAFb,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAd,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,cAAc,0TAHf,CAAA,mDAAA,CAAqD,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAGpD,cAAc,EAAA,UAAA,EAAA,CAAA;kBAN1B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,UAAU;AACpB,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,QAAQ,EAAE,CAAA,mDAAA,CAAqD;oBAC/D,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACRD;;AAEG;;;;"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
|
|
3
|
+
import '@logosphere-ui/core/input-group';
|
|
4
|
+
|
|
5
|
+
class LogosphereInputGroup {
|
|
6
|
+
stretch = input(true, ...(ngDevMode ? [{ debugName: "stretch" }] : []));
|
|
7
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInputGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
+
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: `
|
|
9
|
+
<logosphere-input-group [stretch]="stretch()">
|
|
10
|
+
<ng-content></ng-content>
|
|
11
|
+
</logosphere-input-group>
|
|
12
|
+
`, isInline: true });
|
|
13
|
+
}
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInputGroup, decorators: [{
|
|
15
|
+
type: Component,
|
|
16
|
+
args: [{
|
|
17
|
+
selector: 'lgs-input-group',
|
|
18
|
+
imports: [],
|
|
19
|
+
template: `
|
|
20
|
+
<logosphere-input-group [stretch]="stretch()">
|
|
21
|
+
<ng-content></ng-content>
|
|
22
|
+
</logosphere-input-group>
|
|
23
|
+
`,
|
|
24
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
25
|
+
}]
|
|
26
|
+
}], propDecorators: { stretch: [{ type: i0.Input, args: [{ isSignal: true, alias: "stretch", required: false }] }] } });
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Generated bundle index. Do not edit.
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
export { LogosphereInputGroup };
|
|
33
|
+
//# sourceMappingURL=logosphere-ui-angular-src-lib-input-group.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logosphere-ui-angular-src-lib-input-group.mjs","sources":["../../projects/wrapper/src/lib/input-group/input-group.ts","../../projects/wrapper/src/lib/input-group/logosphere-ui-angular-src-lib-input-group.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, input } from '@angular/core';\nimport '@logosphere-ui/core/input-group';\n\n@Component({\n selector: 'lgs-input-group',\n imports: [],\n template: `\n <logosphere-input-group [stretch]=\"stretch()\">\n <ng-content></ng-content>\n </logosphere-input-group>\n `,\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class LogosphereInputGroup {\n stretch = input<boolean>(true);\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAaa,oBAAoB,CAAA;AAC/B,IAAA,OAAO,GAAG,KAAK,CAAU,IAAI,mDAAC;uGADnB,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,EAAA,OAAA,EAAA,EAAA,iBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAPrB;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAGU,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAVhC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,iBAAiB;AAC3B,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,QAAQ,EAAE;;;;AAIT,EAAA,CAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACZD;;AAEG;;;;"}
|
|
@@ -22,6 +22,7 @@ class LogosphereInput {
|
|
|
22
22
|
required = input(false, ...(ngDevMode ? [{ debugName: "required" }] : []));
|
|
23
23
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
24
24
|
readonly = input(false, ...(ngDevMode ? [{ debugName: "readonly" }] : []));
|
|
25
|
+
pickOnly = input(false, ...(ngDevMode ? [{ debugName: "pickOnly" }] : []));
|
|
25
26
|
mask = input('', ...(ngDevMode ? [{ debugName: "mask" }] : []));
|
|
26
27
|
inputEvent = output({ alias: 'inputChange' });
|
|
27
28
|
change = output();
|
|
@@ -48,7 +49,7 @@ class LogosphereInput {
|
|
|
48
49
|
this.clear.emit();
|
|
49
50
|
}
|
|
50
51
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.7", ngImport: i0, type: LogosphereInput, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
51
|
-
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: `
|
|
52
|
+
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: `
|
|
52
53
|
<logosphere-input
|
|
53
54
|
[value]="value()"
|
|
54
55
|
[type]="type()"
|
|
@@ -69,6 +70,7 @@ class LogosphereInput {
|
|
|
69
70
|
[required]="required()"
|
|
70
71
|
[disabled]="disabled()"
|
|
71
72
|
[readonly]="readonly()"
|
|
73
|
+
[pickOnly]="pickOnly()"
|
|
72
74
|
[mask]="mask()"
|
|
73
75
|
(input)="onInput($event)"
|
|
74
76
|
(change)="onChange($event)"
|
|
@@ -107,6 +109,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
107
109
|
[required]="required()"
|
|
108
110
|
[disabled]="disabled()"
|
|
109
111
|
[readonly]="readonly()"
|
|
112
|
+
[pickOnly]="pickOnly()"
|
|
110
113
|
[mask]="mask()"
|
|
111
114
|
(input)="onInput($event)"
|
|
112
115
|
(change)="onChange($event)"
|
|
@@ -120,7 +123,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.7", ngImpor
|
|
|
120
123
|
`,
|
|
121
124
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
122
125
|
}]
|
|
123
|
-
}], 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"] }] } });
|
|
126
|
+
}], 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"] }] } });
|
|
124
127
|
|
|
125
128
|
/**
|
|
126
129
|
* Generated bundle index. Do not edit.
|