@seniorsistemas/angular-components 17.9.6 → 17.10.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/bundles/seniorsistemas-angular-components.umd.js +883 -90
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/button/button.component.d.ts +1 -0
- package/components/dynamic-form/services/IAssist/models/index.d.ts +2 -0
- package/components/index.d.ts +2 -0
- package/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.d.ts +17 -0
- package/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.d.ts +10 -0
- package/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.d.ts +18 -0
- package/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.d.ts +9 -0
- package/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.d.ts +10 -0
- package/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.d.ts +9 -0
- package/components/inline-edit/components/index.d.ts +7 -0
- package/components/inline-edit/components/inline-edit-item/inline-edit-item.component.d.ts +27 -0
- package/components/inline-edit/fields/index.d.ts +7 -0
- package/components/inline-edit/fields/inline-edit-calendar-field.d.ts +44 -0
- package/components/inline-edit/fields/inline-edit-field.d.ts +13 -0
- package/components/inline-edit/fields/inline-edit-lookup-field.d.ts +79 -0
- package/components/inline-edit/fields/inline-edit-number-field.d.ts +38 -0
- package/components/inline-edit/fields/inline-edit-text-area-field.d.ts +14 -0
- package/components/inline-edit/fields/inline-edit-text-area-ia-field.d.ts +6 -0
- package/components/inline-edit/fields/inline-edit-text-field.d.ts +6 -0
- package/components/inline-edit/index.d.ts +3 -0
- package/components/inline-edit/inline-edit.component.d.ts +14 -0
- package/components/inline-edit/inline-edit.module.d.ts +2 -0
- package/components/locale/index.d.ts +1 -0
- package/components/text-area-ia/index.d.ts +2 -0
- package/components/text-area-ia/text-area-ia.component.d.ts +39 -0
- package/components/text-area-ia/text-area-ia.module.d.ts +2 -0
- package/esm2015/components/button/button.component.js +5 -2
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +1 -1
- package/esm2015/components/dynamic-form/services/IAssist/models/index.js +1 -0
- package/esm2015/components/index.js +3 -1
- package/esm2015/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.js +51 -0
- package/esm2015/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.js +30 -0
- package/esm2015/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.js +75 -0
- package/esm2015/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.js +30 -0
- package/esm2015/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.js +30 -0
- package/esm2015/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.js +30 -0
- package/esm2015/components/inline-edit/components/index.js +8 -0
- package/esm2015/components/inline-edit/components/inline-edit-item/inline-edit-item.component.js +98 -0
- package/esm2015/components/inline-edit/fields/index.js +8 -0
- package/esm2015/components/inline-edit/fields/inline-edit-calendar-field.js +26 -0
- package/esm2015/components/inline-edit/fields/inline-edit-field.js +9 -0
- package/esm2015/components/inline-edit/fields/inline-edit-lookup-field.js +32 -0
- package/esm2015/components/inline-edit/fields/inline-edit-number-field.js +24 -0
- package/esm2015/components/inline-edit/fields/inline-edit-text-area-field.js +11 -0
- package/esm2015/components/inline-edit/fields/inline-edit-text-area-ia-field.js +7 -0
- package/esm2015/components/inline-edit/fields/inline-edit-text-field.js +7 -0
- package/esm2015/components/inline-edit/index.js +4 -0
- package/esm2015/components/inline-edit/inline-edit.component.js +70 -0
- package/esm2015/components/inline-edit/inline-edit.module.js +62 -0
- package/esm2015/components/locale/index.js +2 -1
- package/esm2015/components/locale/services/numeric.service.js +4 -3
- package/esm2015/components/text-area-ia/index.js +3 -0
- package/esm2015/components/text-area-ia/text-area-ia.component.js +128 -0
- package/esm2015/components/text-area-ia/text-area-ia.module.js +32 -0
- package/esm2015/locale/fallback.js +3 -1
- package/esm2015/seniorsistemas-angular-components.js +94 -87
- package/esm5/components/button/button.component.js +5 -2
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +1 -1
- package/esm5/components/dynamic-form/services/IAssist/models/index.js +1 -0
- package/esm5/components/index.js +3 -1
- package/esm5/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.js +53 -0
- package/esm5/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.js +33 -0
- package/esm5/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.js +99 -0
- package/esm5/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.js +33 -0
- package/esm5/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.js +33 -0
- package/esm5/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.js +33 -0
- package/esm5/components/inline-edit/components/index.js +8 -0
- package/esm5/components/inline-edit/components/inline-edit-item/inline-edit-item.component.js +112 -0
- package/esm5/components/inline-edit/fields/index.js +8 -0
- package/esm5/components/inline-edit/fields/inline-edit-calendar-field.js +31 -0
- package/esm5/components/inline-edit/fields/inline-edit-field.js +11 -0
- package/esm5/components/inline-edit/fields/inline-edit-lookup-field.js +50 -0
- package/esm5/components/inline-edit/fields/inline-edit-number-field.js +29 -0
- package/esm5/components/inline-edit/fields/inline-edit-text-area-field.js +16 -0
- package/esm5/components/inline-edit/fields/inline-edit-text-area-ia-field.js +11 -0
- package/esm5/components/inline-edit/fields/inline-edit-text-field.js +11 -0
- package/esm5/components/inline-edit/index.js +4 -0
- package/esm5/components/inline-edit/inline-edit.component.js +84 -0
- package/esm5/components/inline-edit/inline-edit.module.js +65 -0
- package/esm5/components/locale/index.js +2 -1
- package/esm5/components/locale/services/numeric.service.js +4 -3
- package/esm5/components/text-area-ia/index.js +3 -0
- package/esm5/components/text-area-ia/text-area-ia.component.js +131 -0
- package/esm5/components/text-area-ia/text-area-ia.module.js +35 -0
- package/esm5/locale/fallback.js +3 -1
- package/esm5/seniorsistemas-angular-components.js +94 -87
- package/fesm2015/seniorsistemas-angular-components.js +674 -5
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +779 -5
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +93 -86
- package/seniorsistemas-angular-components.metadata.json +1 -1
package/components/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export * from "./global-search/index";
|
|
|
20
20
|
export * from "./ia-insight/index";
|
|
21
21
|
export * from "./image-cropper/index";
|
|
22
22
|
export * from "./info-sign/index";
|
|
23
|
+
export * from "./inline-edit/index";
|
|
23
24
|
export * from "./kanban/index";
|
|
24
25
|
export * from "./loading-state/index";
|
|
25
26
|
export * from "./locale/index";
|
|
@@ -44,6 +45,7 @@ export * from "./steps/index";
|
|
|
44
45
|
export * from "./switch/index";
|
|
45
46
|
export * from "./table/index";
|
|
46
47
|
export * from "./table-header/index";
|
|
48
|
+
export * from "./text-area-ia/index";
|
|
47
49
|
export * from "./thumbnail/index";
|
|
48
50
|
export * from "./tiered-menu/index";
|
|
49
51
|
export * from "./tile/index";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FormGroup } from "@angular/forms";
|
|
2
|
+
import { Calendar } from "primeng/calendar";
|
|
3
|
+
import { InlineEditCalendarField } from "../../../fields/inline-edit-calendar-field";
|
|
4
|
+
import { CalendarLocaleOptions, LocaleService } from "../../../../locale";
|
|
5
|
+
export declare class InlineEditCalendarComponent {
|
|
6
|
+
private readonly localeService;
|
|
7
|
+
field: InlineEditCalendarField;
|
|
8
|
+
formGroup: FormGroup;
|
|
9
|
+
calendar: Calendar;
|
|
10
|
+
tempValue: string;
|
|
11
|
+
calendarLocaleOptions: CalendarLocaleOptions;
|
|
12
|
+
constructor(localeService: LocaleService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
saveValue(): void;
|
|
15
|
+
getValueAsText(): string;
|
|
16
|
+
private _getLocaleOptions;
|
|
17
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { FormGroup } from "@angular/forms";
|
|
3
|
+
import { InlineEditLookupField } from "../../../fields/inline-edit-lookup-field";
|
|
4
|
+
export declare class InlineEditLookupComponent implements OnInit {
|
|
5
|
+
field: InlineEditLookupField;
|
|
6
|
+
formGroup: FormGroup;
|
|
7
|
+
tempValue: string;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
saveValue(): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FormGroup } from "@angular/forms";
|
|
2
|
+
import { InlineEditNumberField } from "../../../fields/inline-edit-number-field";
|
|
3
|
+
import { LocaleService } from "../../../../locale";
|
|
4
|
+
export declare class InlineEditNumberComponent {
|
|
5
|
+
private readonly localeService;
|
|
6
|
+
field: InlineEditNumberField;
|
|
7
|
+
formGroup: FormGroup;
|
|
8
|
+
tempValue: string;
|
|
9
|
+
constructor(localeService: LocaleService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
saveValue(): void;
|
|
12
|
+
get mask(): string;
|
|
13
|
+
get leftAddonDisabled(): boolean;
|
|
14
|
+
get rightAddonDisabled(): boolean;
|
|
15
|
+
get precision(): number;
|
|
16
|
+
get scale(): number;
|
|
17
|
+
private _onLocaleService;
|
|
18
|
+
}
|
package/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FormGroup } from "@angular/forms";
|
|
2
|
+
import { InlineEditTextField } from "../../../fields/inline-edit-text-field";
|
|
3
|
+
export declare class InlineEditTextComponent {
|
|
4
|
+
field: InlineEditTextField;
|
|
5
|
+
formGroup: FormGroup;
|
|
6
|
+
tempValue: string;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
saveValue(): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { FormGroup } from "@angular/forms";
|
|
3
|
+
import { InlineEditTextAreaField } from "../../../fields/inline-edit-text-area-field";
|
|
4
|
+
export declare class InlineEditTextAreaComponent implements OnInit {
|
|
5
|
+
field: InlineEditTextAreaField;
|
|
6
|
+
formGroup: FormGroup;
|
|
7
|
+
tempValue: string;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
saveValue(): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FormGroup } from "@angular/forms";
|
|
2
|
+
import { InlineEditTextAreaIAField } from "../../../fields/inline-edit-text-area-ia-field";
|
|
3
|
+
export declare class InlineEditTextAreaIAComponent {
|
|
4
|
+
field: InlineEditTextAreaIAField;
|
|
5
|
+
formGroup: FormGroup;
|
|
6
|
+
tempValue: string;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
saveValue(): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { InlineEditItemComponent } from "./inline-edit-item/inline-edit-item.component";
|
|
2
|
+
export { InlineEditCalendarComponent } from "./fields/inline-edit-calendar/inline-edit-calendar.component";
|
|
3
|
+
export { InlineEditLookupComponent } from "./fields/inline-edit-lookup/inline-edit-lookup.component";
|
|
4
|
+
export { InlineEditNumberComponent } from "./fields/inline-edit-number/inline-edit-number.component";
|
|
5
|
+
export { InlineEditTextAreaComponent } from "./fields/inline-edit-text-area/inline-edit-text-area.component";
|
|
6
|
+
export { InlineEditTextComponent } from "./fields/inline-edit-text/inline-edit-text.component";
|
|
7
|
+
export { InlineEditTextAreaIAComponent } from "./fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ComponentRef, OnInit, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { FormGroup } from "@angular/forms";
|
|
3
|
+
import { LocaleService } from "../../../locale";
|
|
4
|
+
import { InlineEditField } from "../../fields/inline-edit-field";
|
|
5
|
+
export declare class InlineEditItemComponent implements OnInit {
|
|
6
|
+
private readonly localeService;
|
|
7
|
+
viewContainerRef: ViewContainerRef;
|
|
8
|
+
label: string;
|
|
9
|
+
formGroup: FormGroup;
|
|
10
|
+
field: InlineEditField;
|
|
11
|
+
errorMessages?: any;
|
|
12
|
+
isEditing: boolean;
|
|
13
|
+
private _locale;
|
|
14
|
+
private dynamicComponentRef;
|
|
15
|
+
constructor(localeService: LocaleService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
get showEmptyValueButton(): boolean;
|
|
18
|
+
get showEditButton(): any;
|
|
19
|
+
get showValue(): any;
|
|
20
|
+
onEdit(): void;
|
|
21
|
+
onCancel(): void;
|
|
22
|
+
onSave(): void;
|
|
23
|
+
setDynamicComponentRef(ref: ComponentRef<any>): void;
|
|
24
|
+
getErrorMessages(errorMessages: any): any;
|
|
25
|
+
getFormattedValue(value: any): string;
|
|
26
|
+
private _getCalendarLocaleOptions;
|
|
27
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { InlineEditCalendarField, InlineEditCalendarFieldOptions } from "./inline-edit-calendar-field";
|
|
2
|
+
export { InlineEditField, InlineEditFieldOptions } from "./inline-edit-field";
|
|
3
|
+
export { InlineEditLookupField, InlineEditLookupFieldOptions } from "./inline-edit-lookup-field";
|
|
4
|
+
export { InlineEditNumberField, InlineEditNumberFieldOptions } from "./inline-edit-number-field";
|
|
5
|
+
export { InlineEditTextAreaFieldOptions, InlineEditTextAreaField } from "./inline-edit-text-area-field";
|
|
6
|
+
export { InlineEditTextField, InlineEditTextFieldOptions } from "./inline-edit-text-field";
|
|
7
|
+
export { InlineEditTextAreaIAField, InlineEditTextAreaIAFieldOptions } from "./inline-edit-text-area-ia-field";
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { InlineEditField, InlineEditFieldOptions } from "./inline-edit-field";
|
|
2
|
+
export interface InlineEditCalendarFieldOptions extends InlineEditFieldOptions {
|
|
3
|
+
view?: string;
|
|
4
|
+
minDate?: Date;
|
|
5
|
+
maxDate?: Date;
|
|
6
|
+
defaultDate?: Date;
|
|
7
|
+
appendTo?: string;
|
|
8
|
+
showOnFocus?: boolean;
|
|
9
|
+
onBlur?: (event: FocusEvent) => void;
|
|
10
|
+
onFocus?: (event: FocusEvent) => void;
|
|
11
|
+
onSelect?: (event: any) => void;
|
|
12
|
+
onInput?: (event: any) => void;
|
|
13
|
+
onClose?: (event: any) => void;
|
|
14
|
+
onTodayClick?: (event: any) => void;
|
|
15
|
+
onClearClick?: (event: any) => void;
|
|
16
|
+
onMonthChange?: (event: any) => void;
|
|
17
|
+
onYearChange?: (event: any) => void;
|
|
18
|
+
selectionMode?: string;
|
|
19
|
+
rangeSeparator?: string;
|
|
20
|
+
showSeconds?: boolean;
|
|
21
|
+
placeholder?: string;
|
|
22
|
+
}
|
|
23
|
+
export declare class InlineEditCalendarField extends InlineEditField {
|
|
24
|
+
view?: string;
|
|
25
|
+
appendTo: string;
|
|
26
|
+
minDate?: Date;
|
|
27
|
+
maxDate?: Date;
|
|
28
|
+
defaultDate?: Date;
|
|
29
|
+
showOnFocus?: boolean;
|
|
30
|
+
onBlur?: (event: FocusEvent) => void;
|
|
31
|
+
onFocus?: (event: FocusEvent) => void;
|
|
32
|
+
onSelect?: (event: any) => void;
|
|
33
|
+
onInput?: (event: any) => void;
|
|
34
|
+
onClose?: (event: any) => void;
|
|
35
|
+
onTodayClick?: (event: any) => void;
|
|
36
|
+
onClearClick?: (event: any) => void;
|
|
37
|
+
onMonthChange?: (event: any) => void;
|
|
38
|
+
onYearChange?: (event: any) => void;
|
|
39
|
+
selectionMode?: string;
|
|
40
|
+
rangeSeparator?: string;
|
|
41
|
+
showSeconds: boolean;
|
|
42
|
+
placeholder?: string;
|
|
43
|
+
constructor(options: InlineEditCalendarFieldOptions);
|
|
44
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface InlineEditFieldOptions {
|
|
2
|
+
label: string;
|
|
3
|
+
name: string;
|
|
4
|
+
tooltip?: string;
|
|
5
|
+
errorMessages?: () => ({}) | {};
|
|
6
|
+
}
|
|
7
|
+
export declare abstract class InlineEditField {
|
|
8
|
+
label: string;
|
|
9
|
+
name: string;
|
|
10
|
+
tooltip?: string;
|
|
11
|
+
errorMessages: () => ({}) | {};
|
|
12
|
+
constructor(options: InlineEditFieldOptions);
|
|
13
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { Observable } from "rxjs";
|
|
2
|
+
import { InlineEditField, InlineEditFieldOptions } from "./inline-edit-field";
|
|
3
|
+
import { DefaultFilter } from "../../dynamic-form/index";
|
|
4
|
+
export interface InlineEditLookupFieldOptions extends InlineEditFieldOptions {
|
|
5
|
+
multiple?: boolean;
|
|
6
|
+
showSearch?: boolean;
|
|
7
|
+
searchFields: any[];
|
|
8
|
+
searchGridFields: any[];
|
|
9
|
+
lookupSuggestions?: any[];
|
|
10
|
+
suggestionsObservable: Observable<any[]>;
|
|
11
|
+
searchObservable: Observable<{
|
|
12
|
+
gridData: any[];
|
|
13
|
+
totalRecords: number;
|
|
14
|
+
searchTotalRecordsLabel?: string;
|
|
15
|
+
}>;
|
|
16
|
+
dataKey: string;
|
|
17
|
+
lookupDisplayField: string;
|
|
18
|
+
searchTitle?: string;
|
|
19
|
+
searchEmptyTitle?: string;
|
|
20
|
+
filterTitle?: string;
|
|
21
|
+
emptyMessage?: string;
|
|
22
|
+
appendTo?: string;
|
|
23
|
+
autocompleteForceSelection?: boolean;
|
|
24
|
+
showAddOption?: boolean;
|
|
25
|
+
showEditOption?: boolean;
|
|
26
|
+
showRemoveOption?: boolean;
|
|
27
|
+
placeholder?: string;
|
|
28
|
+
onLookupRequest: (query: string) => void;
|
|
29
|
+
onSearchRequest: (event: any) => void;
|
|
30
|
+
onSelect?: (event: any) => void;
|
|
31
|
+
onUnselect?: (event: any) => void;
|
|
32
|
+
onClear?: (event: any) => void;
|
|
33
|
+
onBlur?: (event: FocusEvent) => void;
|
|
34
|
+
onAdd?: () => void;
|
|
35
|
+
onEdit?: (selectedItem: unknown) => void;
|
|
36
|
+
onRemove?: (selectedItems: unknown[]) => void;
|
|
37
|
+
}
|
|
38
|
+
export declare class InlineEditLookupField extends InlineEditField {
|
|
39
|
+
multiple: boolean;
|
|
40
|
+
showSearch: boolean;
|
|
41
|
+
searchFields: any[];
|
|
42
|
+
searchGridFields: any[];
|
|
43
|
+
lookupSuggestions: any[];
|
|
44
|
+
suggestionsObservable: Observable<any[]>;
|
|
45
|
+
searchObservable: Observable<{
|
|
46
|
+
gridData: any[];
|
|
47
|
+
totalRecords: number;
|
|
48
|
+
searchTotalRecordsLabel?: string;
|
|
49
|
+
}>;
|
|
50
|
+
dataKey: string;
|
|
51
|
+
lookupDisplayField: string;
|
|
52
|
+
searchTitle: string;
|
|
53
|
+
searchEmptyTitle: string;
|
|
54
|
+
filterTitle: string;
|
|
55
|
+
emptyMessage: string;
|
|
56
|
+
appendTo?: string;
|
|
57
|
+
autocompleteForceSelection: boolean;
|
|
58
|
+
showAddOption: boolean;
|
|
59
|
+
showEditOption: boolean;
|
|
60
|
+
showRemoveOption: boolean;
|
|
61
|
+
defaultFilter: DefaultFilter[];
|
|
62
|
+
onLookupRequest: (query: string) => void;
|
|
63
|
+
onSearchRequest: (event: any) => void;
|
|
64
|
+
onClear?: (event: any) => void;
|
|
65
|
+
onBlur?: (event: FocusEvent) => void;
|
|
66
|
+
onAdd?: () => void;
|
|
67
|
+
onEdit?: (selectedItem: unknown) => void;
|
|
68
|
+
onRemove?: (selectedItems: unknown[]) => void;
|
|
69
|
+
placeholder?: string;
|
|
70
|
+
private _gridData;
|
|
71
|
+
private _searchTotalRecords;
|
|
72
|
+
private _searchTotalRecordsLabel;
|
|
73
|
+
onSelect: (event: any) => void;
|
|
74
|
+
onUnselect: (event: any) => void;
|
|
75
|
+
get gridData(): any[];
|
|
76
|
+
get searchTotalRecords(): number;
|
|
77
|
+
get searchTotalRecordsLabel(): string;
|
|
78
|
+
constructor(options: InlineEditLookupFieldOptions);
|
|
79
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { AlignmentOptions } from "@seniorsistemas/ng2-currency-mask";
|
|
2
|
+
import { AddonConfig } from "../../dynamic-form/index";
|
|
3
|
+
import { NumberLocaleOptions } from "../../locale/options/number";
|
|
4
|
+
import { InlineEditField, InlineEditFieldOptions } from "./inline-edit-field";
|
|
5
|
+
export interface InlineEditNumberFieldOptions extends InlineEditFieldOptions {
|
|
6
|
+
allowNegative?: boolean;
|
|
7
|
+
numberLocaleOptions?: NumberLocaleOptions;
|
|
8
|
+
browserAutocomplete?: boolean;
|
|
9
|
+
precision?: Function | number;
|
|
10
|
+
scale?: Function | number;
|
|
11
|
+
mask?: () => string | string;
|
|
12
|
+
leftAddon?: AddonConfig;
|
|
13
|
+
rightAddon?: AddonConfig;
|
|
14
|
+
placeholder?: string;
|
|
15
|
+
autoClear?: boolean;
|
|
16
|
+
onBlur?: (event: FocusEvent) => void;
|
|
17
|
+
onFocus?: (event: FocusEvent) => void;
|
|
18
|
+
onComplete?: (event: FocusEvent) => void;
|
|
19
|
+
onInput?: (event: FocusEvent) => void;
|
|
20
|
+
}
|
|
21
|
+
export declare class InlineEditNumberField extends InlineEditField {
|
|
22
|
+
allowNegative?: boolean;
|
|
23
|
+
numberLocaleOptions?: NumberLocaleOptions;
|
|
24
|
+
browserAutocomplete?: boolean;
|
|
25
|
+
precision?: Function | number;
|
|
26
|
+
scale?: Function | number;
|
|
27
|
+
alignTo: AlignmentOptions;
|
|
28
|
+
mask?: () => string | string;
|
|
29
|
+
leftAddon?: AddonConfig;
|
|
30
|
+
rightAddon?: AddonConfig;
|
|
31
|
+
placeholder?: string;
|
|
32
|
+
autoClear?: boolean;
|
|
33
|
+
onBlur?: (event: FocusEvent) => void;
|
|
34
|
+
onFocus?: (event: FocusEvent) => void;
|
|
35
|
+
onComplete?: (event: FocusEvent) => void;
|
|
36
|
+
onInput?: (event: FocusEvent) => void;
|
|
37
|
+
constructor(options: InlineEditNumberFieldOptions);
|
|
38
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { InlineEditFieldOptions, InlineEditField } from "./inline-edit-field";
|
|
2
|
+
export interface InlineEditTextAreaFieldOptions extends InlineEditFieldOptions {
|
|
3
|
+
cols?: number;
|
|
4
|
+
rows?: number;
|
|
5
|
+
keyFilter?: any;
|
|
6
|
+
readonly?: () => boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class InlineEditTextAreaField extends InlineEditField {
|
|
9
|
+
cols?: number;
|
|
10
|
+
rows?: number;
|
|
11
|
+
keyFilter?: any;
|
|
12
|
+
readonly?: () => boolean;
|
|
13
|
+
constructor(options: InlineEditTextAreaFieldOptions);
|
|
14
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { InlineEditField, InlineEditFieldOptions } from "./inline-edit-field";
|
|
2
|
+
export interface InlineEditTextAreaIAFieldOptions extends InlineEditFieldOptions {
|
|
3
|
+
}
|
|
4
|
+
export declare class InlineEditTextAreaIAField extends InlineEditField {
|
|
5
|
+
constructor(options: InlineEditTextAreaIAFieldOptions);
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { InlineEditField, InlineEditFieldOptions } from "./inline-edit-field";
|
|
2
|
+
export interface InlineEditTextFieldOptions extends InlineEditFieldOptions {
|
|
3
|
+
}
|
|
4
|
+
export declare class InlineEditTextField extends InlineEditField {
|
|
5
|
+
constructor(options: InlineEditTextFieldOptions);
|
|
6
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { InlineEditComponent } from "./inline-edit.component";
|
|
2
|
+
export { InlineEditModule } from "./inline-edit.module";
|
|
3
|
+
export { InlineEditCalendarField, InlineEditCalendarFieldOptions, InlineEditField, InlineEditFieldOptions, InlineEditLookupField, InlineEditLookupFieldOptions, InlineEditNumberField, InlineEditNumberFieldOptions, InlineEditTextAreaField, InlineEditTextAreaFieldOptions, InlineEditTextAreaIAField, InlineEditTextAreaIAFieldOptions, InlineEditTextField, InlineEditTextFieldOptions, } from "./fields/index";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ComponentFactoryResolver, OnInit, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { FormGroup } from "@angular/forms";
|
|
3
|
+
import { InlineEditField } from "./fields/index";
|
|
4
|
+
export declare class InlineEditComponent implements OnInit {
|
|
5
|
+
private resolver;
|
|
6
|
+
formGroup: FormGroup;
|
|
7
|
+
fields: InlineEditField[];
|
|
8
|
+
errorMessages?: any;
|
|
9
|
+
container: ViewContainerRef;
|
|
10
|
+
constructor(resolver: ComponentFactoryResolver);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
private _componentMap;
|
|
13
|
+
private _createFields;
|
|
14
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./options/index";
|
|
2
2
|
export * from "./locale.module";
|
|
3
3
|
export * from "./locale.service";
|
|
4
|
+
export * from "./services/numeric.service";
|
|
4
5
|
export * from "./pipes/localized-currency.pipe";
|
|
5
6
|
export * from "./pipes/localized-date.pipe";
|
|
6
7
|
export * from "./pipes/localized-date-impure.pipe";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { ControlValueAccessor, FormBuilder, FormGroup } from "@angular/forms";
|
|
3
|
+
import { TranslateService } from "@ngx-translate/core";
|
|
4
|
+
import { FormField } from "../dynamic-form";
|
|
5
|
+
import { IAssistService } from "../dynamic-form/services/IAssist/iassist.service";
|
|
6
|
+
export declare class TextAreaIAComponent implements OnInit, ControlValueAccessor {
|
|
7
|
+
private readonly _iassistService;
|
|
8
|
+
private readonly _formBuilder;
|
|
9
|
+
private readonly _translateService;
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
prompt: string;
|
|
14
|
+
readonly: boolean;
|
|
15
|
+
rows: number;
|
|
16
|
+
cols: number;
|
|
17
|
+
fields: FormField[];
|
|
18
|
+
formGroup: FormGroup;
|
|
19
|
+
isVisible: boolean;
|
|
20
|
+
isLoading: boolean;
|
|
21
|
+
value: string;
|
|
22
|
+
private _isDisabled;
|
|
23
|
+
private _onChange;
|
|
24
|
+
private _onTouched;
|
|
25
|
+
constructor(_iassistService: IAssistService, // Mover pra uma pasta global
|
|
26
|
+
_formBuilder: FormBuilder, _translateService: TranslateService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
writeValue(value: string): void;
|
|
29
|
+
registerOnChange(onChange: (value: string) => void): void;
|
|
30
|
+
registerOnTouched(onTouched: () => void): void;
|
|
31
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
32
|
+
onValueChange(value: string): void;
|
|
33
|
+
showDialog(): void;
|
|
34
|
+
hideDialog(): void;
|
|
35
|
+
onHideDialog(): void;
|
|
36
|
+
submitContext(): void;
|
|
37
|
+
private _createDialogFields;
|
|
38
|
+
private _createDialogFormGroup;
|
|
39
|
+
}
|
|
@@ -109,6 +109,9 @@ __decorate([
|
|
|
109
109
|
__decorate([
|
|
110
110
|
Input()
|
|
111
111
|
], ButtonComponent.prototype, "badge", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
Input()
|
|
114
|
+
], ButtonComponent.prototype, "iconColor", void 0);
|
|
112
115
|
__decorate([
|
|
113
116
|
Output()
|
|
114
117
|
], ButtonComponent.prototype, "onClick", void 0);
|
|
@@ -118,9 +121,9 @@ __decorate([
|
|
|
118
121
|
ButtonComponent = ButtonComponent_1 = __decorate([
|
|
119
122
|
Component({
|
|
120
123
|
selector: "s-button",
|
|
121
|
-
template: "<p-tieredMenu\n [id]=\"id + '-menu'\"\n [popup]=\"true\"\n appendTo=\"body\"\n [baseZIndex]=\"baseZIndex\">\n</p-tieredMenu>\n\n<button\n [id]=\"id\"\n [type]=\"type\"\n [class]=\"styleClass\"\n [ngClass]=\"{\n 's-button-auxiliary': auxiliary,\n 's-button-with-icon': iconClass,\n 's-button-with-text': label,\n 's-button-empty': !iconClass && !label,\n 's-button-size-default': size === 'default',\n 's-button-size-small': size === 'small',\n 's-button-priority-default': priority === 'default',\n 's-button-priority-primary': priority === 'primary',\n 's-button-priority-secondary': priority === 'secondary',\n 's-button-priority-link': priority === 'link',\n 's-button-priority-danger': priority === 'danger',\n 's-button-multiple': (caret && (model && model.length)) || rightIconClass,\n 's-button-active': isOpen(),\n 's-button--slide': validateSlideButton(),\n 's-button--rotate-animation': isRotateAnimation()\n }\"\n [disabled]=\"disabled\"\n [pTooltip]=\"tooltip\"\n [tooltipPosition]=\"tooltipPosition\"\n showDelay=\"500\"\n [tooltipZIndex]=\"tooltipZIndex\"\n (click)=\"onClick.emit($event)\"\n (mouseenter)=\"updateTooltipZIndex()\">\n <div *ngIf=\"badge\" class=\"badge\">\n <s-badge\n [color]=\"badge.color\"\n [text]=\"badge.text\"\n [iconClass]=\"badge.iconClass\">\n </s-badge>\n </div>\n <span \n *ngIf=\"iconClass\" \n [class]=\"iconClass\" \n [ngClass]=\"{ \n 's-button-icon': true,\n 's-button-icon-margin-right': !label && model && model.length\n }\" \n aria-hidden=\"true\">\n </span>\n <span \n *ngIf=\"label\" \n class=\"s-button-text\"\n [ngClass]=\"{\n 's-button-icon-margin-right': !!rightIconClass || (model && model.length),\n 's-button-icon-margin-left': !!iconClass\n }\">\n {{ label }}\n </span>\n <ng-content></ng-content>\n <span \n *ngIf=\"rightIconClass\" \n [class]=\"rightIconClass\" \n [ngClass]=\"{ 's-button-right-icon': true }\" \n aria-hidden=\"true\">\n </span>\n <span\n *ngIf=\"caret && (model && model.length)\" \n class=\"fa fa-fw fa-caret-down\"\n aria-hidden=\"true\">\n </span>\n</button>\n",
|
|
124
|
+
template: "<p-tieredMenu\n [id]=\"id + '-menu'\"\n [popup]=\"true\"\n appendTo=\"body\"\n [baseZIndex]=\"baseZIndex\">\n</p-tieredMenu>\n\n<button\n [id]=\"id\"\n [type]=\"type\"\n [class]=\"styleClass\"\n [ngClass]=\"{\n 's-button-auxiliary': auxiliary,\n 's-button-with-icon': iconClass,\n 's-button-with-text': label,\n 's-button-empty': !iconClass && !label,\n 's-button-size-default': size === 'default',\n 's-button-size-small': size === 'small',\n 's-button-priority-default': priority === 'default',\n 's-button-priority-primary': priority === 'primary',\n 's-button-priority-secondary': priority === 'secondary',\n 's-button-priority-link': priority === 'link',\n 's-button-priority-danger': priority === 'danger',\n 's-button-multiple': (caret && (model && model.length)) || rightIconClass,\n 's-button-active': isOpen(),\n 's-button--slide': validateSlideButton(),\n 's-button--rotate-animation': isRotateAnimation()\n }\"\n [disabled]=\"disabled\"\n [pTooltip]=\"tooltip\"\n [tooltipPosition]=\"tooltipPosition\"\n showDelay=\"500\"\n [tooltipZIndex]=\"tooltipZIndex\"\n (click)=\"onClick.emit($event)\"\n (mouseenter)=\"updateTooltipZIndex()\">\n <div *ngIf=\"badge\" class=\"badge\">\n <s-badge\n [color]=\"badge.color\"\n [text]=\"badge.text\"\n [iconClass]=\"badge.iconClass\">\n </s-badge>\n </div>\n <span \n *ngIf=\"iconClass\" \n [class]=\"iconClass\" \n [ngClass]=\"{ \n 's-button-icon': true,\n 's-button-icon-margin-right': !label && model && model.length\n }\"\n [ngStyle]=\"{ color: iconColor }\"\n aria-hidden=\"true\">\n </span>\n <span \n *ngIf=\"label\" \n class=\"s-button-text\"\n [ngClass]=\"{\n 's-button-icon-margin-right': !!rightIconClass || (model && model.length),\n 's-button-icon-margin-left': !!iconClass\n }\">\n {{ label }}\n </span>\n <ng-content></ng-content>\n <span \n *ngIf=\"rightIconClass\" \n [class]=\"rightIconClass\" \n [ngClass]=\"{ 's-button-right-icon': true }\"\n [ngStyle]=\"{ color: iconColor }\"\n aria-hidden=\"true\">\n </span>\n <span\n *ngIf=\"caret && (model && model.length)\" \n class=\"fa fa-fw fa-caret-down\"\n aria-hidden=\"true\">\n </span>\n</button>\n",
|
|
122
125
|
styles: ["button{-ms-flex-align:center;align-items:center;border:1px solid;border-radius:4px;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:34px;-ms-flex-pack:center;justify-content:center;max-width:100%;min-width:40px;outline:0;overflow:visible;padding:5px 10px;position:relative;text-decoration:none;text-transform:none;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out;vertical-align:bottom}button:disabled{opacity:.5;filter:Alpha(Opacity=50);background-image:none}button:disabled,button:disabled *{cursor:text!important}button.s-button-auxiliary{border-radius:20px}button.s-button-size-small{height:25px;padding:0 20px}button.s-button-with-icon.s-button-multiple,button.s-button-with-text{min-width:80px}button.s-button-with-icon.s-button-with-text.s-button-multiple{min-width:100px}button .s-button-icon,button .s-button-menu-icon,button .s-button-right-icon,button.s-button-with-icon.s-button-multiple:not(.s-button-with-text) .s-button-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}button.s-button-multiple .s-button-text{-ms-flex-align:left;align-items:left;display:-ms-flexbox;display:flex;-ms-flex-pack:left;justify-content:left}button.s-button-with-icon .s-button-text{-ms-flex-align:right;align-items:right;display:-ms-flexbox;display:flex;-ms-flex-pack:right;justify-content:right}.s-button-text{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.s-button-menu-icon{right:10px;transition:transform .2s ease-out}.s-button-icon-margin-left{margin-left:10px}.s-button-icon-margin-right{margin-right:10px}.s-button-active .s-button-menu-icon{transform:rotateX(180deg)}button,button.s-button-priority-primary{background-color:#428bca;border-color:#428bca}button .s-button-icon,button .s-button-menu-icon,button .s-button-right-icon,button .s-button-text,button.s-button-priority-primary .s-button-icon,button.s-button-priority-primary .s-button-menu-icon,button.s-button-priority-primary .s-button-right-icon,button.s-button-priority-primary .s-button-text{color:#fff}button.s-button-priority-primary:hover,button:hover{background-color:#2a6496}button.s-button-priority-primary:focus,button:focus{background-color:#2a6496;border-color:#22dce6}button.s-button-active:not(:disabled),button.s-button-priority-primary.s-button-active:not(:disabled),button.s-button-priority-primary:active:not(:disabled),button:active:not(:disabled){background-color:#245682;border-color:#245682}button.s-button-priority-secondary{background-color:#7892a1;border-color:#7892a1}button.s-button-priority-secondary .s-button-icon,button.s-button-priority-secondary .s-button-menu-icon,button.s-button-priority-secondary .s-button-right-icon,button.s-button-priority-secondary .s-button-text{color:#fff}button.s-button-priority-secondary:hover{background-color:#546b79}button.s-button-priority-secondary:focus{background-color:#546b79;border-color:#22dce6}button.s-button-priority-secondary.s-button-active:not(:disabled),button.s-button-priority-secondary:active:not(:disabled){background-color:#495e6a;border-color:#495e6a}button.s-button-priority-default{background-color:#fff;border-color:#ccc}button.s-button-priority-default .s-button-icon,button.s-button-priority-default .s-button-menu-icon,button.s-button-priority-default .s-button-right-icon,button.s-button-priority-default .s-button-text{color:#333}button.s-button-priority-default:hover{background-color:#d9d9d9}button.s-button-priority-default:focus{background-color:#d9d9d9;border-color:#22dce6}button.s-button-priority-default.s-button-active:not(:disabled),button.s-button-priority-default:active:not(:disabled){background-color:#ccc;border-color:#ccc}.s-button-priority-danger{background-color:#9c3a3a;border-color:#9c3a3a}.s-button-priority-danger .s-button-icon,.s-button-priority-danger .s-button-menu-icon,.s-button-priority-danger .s-button-right-icon,.s-button-priority-danger .s-button-text{color:#fff}.s-button-priority-danger:hover{background-color:#642525}.s-button-priority-danger:focus{background-color:#642525;border-color:#22dce6}.s-button-priority-danger.s-button-active:not(:disabled),.s-button-priority-danger:active:not(:disabled){background-color:#521e1e;border-color:#521e1e}button.s-button-priority-link{background-color:transparent;border-color:transparent}button.s-button-priority-link .s-button-icon,button.s-button-priority-link .s-button-menu-icon,button.s-button-priority-link .s-button-right-icon,button.s-button-priority-link .s-button-text{color:#428bca}button.s-button-priority-link:hover{background-color:transparent}button.s-button-priority-link:hover .s-button-icon,button.s-button-priority-link:hover .s-button-menu-icon,button.s-button-priority-link:hover .s-button-right-icon,button.s-button-priority-link:hover .s-button-text{color:#2a6496}button.s-button-priority-link:focus{border-color:#22dce6;background-color:transparent}button.s-button-priority-link:focus .s-button-icon,button.s-button-priority-link:focus .s-button-menu-icon,button.s-button-priority-link:focus .s-button-right-icon,button.s-button-priority-link:focus .s-button-text{color:#2a6496}button.s-button-priority-link.s-button-active:not(:disabled),button.s-button-priority-link:active:not(:disabled){background-color:transparent;border-color:transparent}button.s-button-priority-link.s-button-active:not(:disabled) .s-button-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-menu-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-right-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-text,button.s-button-priority-link:active:not(:disabled) .s-button-icon,button.s-button-priority-link:active:not(:disabled) .s-button-menu-icon,button.s-button-priority-link:active:not(:disabled) .s-button-right-icon,button.s-button-priority-link:active:not(:disabled) .s-button-text{color:#245682}.s-button--slide.s-button-with-icon.s-button-multiple,.s-button--slide.s-button-with-text{min-width:40px}.s-button--slide .s-button-text{position:absolute;opacity:0;width:0}.s-button--slide:hover .s-button-text{opacity:1;position:relative;transition:1s;width:auto}.s-button--slide:hover.s-button--rotate-animation .s-button-icon,.s-button--slide:hover.s-button--rotate-animation .s-button-right-icon{transform:rotate(360deg);transition:1.5s}.badge{position:absolute;top:-10px;right:-10px;z-index:99}"]
|
|
123
126
|
})
|
|
124
127
|
], ButtonComponent);
|
|
125
128
|
export { ButtonComponent };
|
|
126
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
129
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BzZW5pb3JzaXN0ZW1hcy9hbmd1bGFyLWNvbXBvbmVudHMvIiwic291cmNlcyI6WyJjb21wb25lbnRzL2J1dHRvbi9idXR0b24uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBcUIsTUFBTSxFQUFpQixTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHakksT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUN6QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFFaEQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFFckUsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzFELE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQU1sRCxJQUFhLGVBQWUsdUJBQTVCLE1BQWEsZUFBZTtJQUE1QjtRQUlXLGFBQVEsR0FBRyxNQUFNLENBQUM7UUFHbEIsT0FBRSxHQUFHLFlBQVksaUJBQWUsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUFDO1FBUzVDLG9CQUFlLEdBQXdDLEtBQUssQ0FBQztRQVM3RCxVQUFLLEdBQUcsSUFBSSxDQUFDO1FBTWIsZUFBVSxHQUFHLENBQUMsQ0FBQztRQUdmLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFHakIsY0FBUyxHQUFHLEtBQUssQ0FBQztRQUdsQixTQUFJLEdBQUcsUUFBUSxDQUFDO1FBR2hCLGFBQVEsR0FBbUIsY0FBYyxDQUFDLE9BQU8sQ0FBQztRQUdsRCxVQUFLLEdBQWUsRUFBRSxDQUFDO1FBR3ZCLFNBQUksR0FBRyxVQUFVLENBQUMsT0FBTyxDQUFDO1FBZTFCLFlBQU8sR0FBc0IsSUFBSSxZQUFZLEVBQUUsQ0FBQztJQXdDM0QsQ0FB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O1FBQ1AsUUFBUSxFQUFFLFVBQVU7UUFDcEIseStFQUFzQzs7S0FFekMsQ0FBQztHQUNXLGVBQWUsQ0F3RzNCO1NBeEdZLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSG9zdEJpbmRpbmcsIElucHV0LCBPbkNoYW5nZXMsIE9uSW5pdCwgT3V0cHV0LCBTaW1wbGVDaGFuZ2VzLCBWaWV3Q2hpbGQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuXG5pbXBvcnQgeyBNZW51SXRlbSB9IGZyb20gXCJwcmltZW5nL2FwaVwiO1xuaW1wb3J0IHsgRG9tSGFuZGxlciB9IGZyb20gXCJwcmltZW5nL2RvbVwiO1xuaW1wb3J0IHsgVGllcmVkTWVudSB9IGZyb20gXCJwcmltZW5nL3RpZXJlZG1lbnVcIjtcblxuaW1wb3J0IHsgRW51bUJ1dHRvbkFuaW1hdGlvbiB9IGZyb20gXCIuL21vZGVscy9idXR0b24tYW5pbWF0aW9uLXR5cGVcIjtcbmltcG9ydCB7IEJ1dHRvbkJhZGdlQ29uZmlnIH0gZnJvbSBcIi4vbW9kZWxzL2J1dHRvbi1iYWRnZS1jb25maWdcIjtcbmltcG9ydCB7IEJ1dHRvblByaW9yaXR5IH0gZnJvbSBcIi4vbW9kZWxzL2J1dHRvbi1wcmlvcml0eVwiO1xuaW1wb3J0IHsgQnV0dG9uU2l6ZSB9IGZyb20gXCIuL21vZGVscy9idXR0b24tc2l6ZVwiO1xuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6IFwicy1idXR0b25cIixcbiAgICB0ZW1wbGF0ZVVybDogXCIuL2J1dHRvbi5jb21wb25lbnQuaHRtbFwiLFxuICAgIHN0eWxlVXJsczogW1wiLi9idXR0b24uY29tcG9uZW50LnNjc3NcIl0sXG59KVxuZXhwb3J0IGNsYXNzIEJ1dHRvbkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25DaGFuZ2VzIHtcbiAgICBwdWJsaWMgc3RhdGljIG5leHRJZCA9IDA7XG5cbiAgICBASG9zdEJpbmRpbmcoXCJzdHlsZS5taW4td2lkdGhcIilcbiAgICBwdWJsaWMgbWluV2lkdGggPSBcIjQwcHhcIjtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGlkID0gYHMtYnV0dG9uLSR7QnV0dG9uQ29tcG9uZW50Lm5leHRJZCsrfWA7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBsYWJlbDogc3RyaW5nO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgdG9vbHRpcDogc3RyaW5nO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgdG9vbHRpcFBvc2l0aW9uOiBcInRvcFwiIHwgXCJyaWdodFwiIHwgXCJib3R0b21cIiB8IFwibGVmdFwiID0gXCJ0b3BcIjtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGljb25DbGFzczogc3RyaW5nO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgcmlnaHRJY29uQ2xhc3M6IHN0cmluZztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGNhcmV0ID0gdHJ1ZTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHN0eWxlQ2xhc3M6IHN0cmluZztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGJhc2VaSW5kZXggPSAwO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgZGlzYWJsZWQgPSBmYWxzZTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGF1eGlsaWFyeSA9IGZhbHNlO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgdHlwZSA9IFwiYnV0dG9uXCI7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBwcmlvcml0eTogQnV0dG9uUHJpb3JpdHkgPSBCdXR0b25Qcmlvcml0eS5QcmltYXJ5O1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgbW9kZWw6IE1lbnVJdGVtW10gPSBbXTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHNpemUgPSBCdXR0b25TaXplLkRlZmF1bHQ7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBzbGlkZTogYm9vbGVhbjtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGFuaW1hdGlvbjogRW51bUJ1dHRvbkFuaW1hdGlvbjtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGJhZGdlOiBCdXR0b25CYWRnZUNvbmZpZztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGljb25Db2xvcjogc3RyaW5nO1xuXG4gICAgQE91dHB1dCgpXG4gICAgcHVibGljIG9uQ2xpY2s6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgcHVibGljIHRvb2x0aXBaSW5kZXg6IG51bWJlcjtcblxuICAgIEBWaWV3Q2hpbGQoVGllcmVkTWVudSwgeyBzdGF0aWM6IHRydWUgfSlcbiAgICBwcml2YXRlIG1lbnU6IFRpZXJlZE1lbnU7XG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgICAgIHRoaXMub25DbGljay5zdWJzY3JpYmUoKGV2ZW50OiBhbnkpID0+IHtcbiAgICAgICAgICAgIGlmICghdGhpcy5tb2RlbCB8fCAhdGhpcy5tb2RlbC5sZW5ndGgpIHJldHVybjtcblxuICAgICAgICAgICAgdGhpcy5tZW51Lm1vZGVsID0gdGhpcy5tb2RlbDtcbiAgICAgICAgICAgIHRoaXMubWVudS50b2dnbGUoZXZlbnQpO1xuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBwdWJsaWMgdmFsaWRhdGVTbGlkZUJ1dHRvbigpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuc2xpZGUgJiYgKHRoaXMucHJpb3JpdHkgPT0gQnV0dG9uUHJpb3JpdHkuRGVmYXVsdCB8fCB0aGlzLnByaW9yaXR5ID09IEJ1dHRvblByaW9yaXR5LkxpbmspICYmIHRoaXMubGFiZWwubGVuZ3RoO1xuICAgIH1cblxuICAgIHB1YmxpYyBpc09wZW4oKSB7XG4gICAgICAgIHJldHVybiB0aGlzLm1vZGVsICYmIHRoaXMubW9kZWwubGVuZ3RoICYmIHRoaXMubWVudS52aXNpYmxlO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKSB7XG4gICAgICAgIGNvbnN0IGhhc0ljb24gPSB0aGlzLmljb25DbGFzcztcbiAgICAgICAgY29uc3QgaGFzVGV4dCA9IHRoaXMubGFiZWw7XG4gICAgICAgIGNvbnN0IGlzTXVsdGlwbGUgPSB0aGlzLm1vZGVsICYmIHRoaXMubW9kZWwubGVuZ3RoO1xuXG4gICAgICAgIGlmIChoYXNUZXh0IHx8IChoYXNJY29uICYmIGlzTXVsdGlwbGUpKSB0aGlzLm1pbldpZHRoID0gXCI4MHB4XCI7XG4gICAgICAgIGlmIChoYXNUZXh0ICYmIGhhc0ljb24gJiYgaXNNdWx0aXBsZSkgdGhpcy5taW5XaWR0aCA9IFwiMTAwcHhcIjtcbiAgICB9XG5cbiAgICBwdWJsaWMgdXBkYXRlVG9vbHRpcFpJbmRleCgpIHtcbiAgICAgICAgdGhpcy50b29sdGlwWkluZGV4ID0gdGhpcy5iYXNlWkluZGV4ICsgKytEb21IYW5kbGVyLnppbmRleDtcbiAgICB9XG5cbiAgICBwdWJsaWMgaXNSb3RhdGVBbmltYXRpb24oKSB7XG4gICAgICAgIHJldHVybiB0aGlzLmFuaW1hdGlvbiA9PT0gRW51bUJ1dHRvbkFuaW1hdGlvbi5yb3RhdGU7XG4gICAgfVxufVxuIl19
|
|
@@ -566,7 +566,7 @@ LookupComponent = LookupComponent_1 = __decorate([
|
|
|
566
566
|
transition("* <=> *", animate("{{transitionParams}}")),
|
|
567
567
|
]),
|
|
568
568
|
],
|
|
569
|
-
styles: ["s-lookup.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-lookup .ui-inputtext{border-top-right-radius:0;border-bottom-right-radius:0}s-lookup .inputgroup p-autocomplete+button,s-lookup p-autocomplete .ui-autocomplete-dropdown.ui-button{background-color:#fff;border-color:#ccc;border-width:1px 1px 1px 0;color:#333;min-height:34px;height:auto!important;min-width:auto;width:34px!important;overflow:hidden;border-top-left-radius:0;border-bottom-left-radius:0}
|
|
569
|
+
styles: ["s-lookup.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-lookup .ui-inputtext{border-top-right-radius:0;border-bottom-right-radius:0}s-lookup .inputgroup p-autocomplete+button,s-lookup p-autocomplete .ui-autocomplete-dropdown.ui-button{background-color:#fff;border-color:#ccc;border-width:1px 1px 1px 0;color:#333;min-height:34px;height:auto!important;min-width:auto;width:34px!important;overflow:hidden;border-top-left-radius:0;border-bottom-left-radius:0}s-lookup .inputgroup,s-lookup p-autocomplete span.ui-autocomplete-multiple{display:-ms-flexbox;display:flex}s-lookup .inputgroup p-autocomplete{display:inline-block}s-lookup .inputgroup p-autocomplete,s-lookup p-autocomplete .ui-autocomplete-input{width:calc(100% - 34px)}s-lookup .inputgroup p-autocomplete .ui-autocomplete-input{width:100%}s-lookup .inputgroup p-autocomplete+button:enabled:hover,s-lookup .inputgroup p-autocomplete+button:focus{background-color:#e6e6e6;border-color:#ccc}s-lookup .inputgroup p-autocomplete .ui-widget .ui-inputtext{border-right-width:1px;border-right-style:solid}s-lookup .ui-autocomplete-input-token,s-lookup .ui-autocomplete-input-token input{width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token{max-width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body .s-lookup-modal.ui-dialog .ui-dialog-content{padding:0;margin-bottom:0;max-height:none}s-lookup .ui-table-scrollable-body{min-width:100%}.s-lookup-modal{height:80%!important;max-width:100%!important;max-height:inherit!important;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-direction:column;flex-direction:column}.s-lookup-modal .ui-dialog-content{height:auto!important;-ms-flex:1;flex:1;overflow:auto}.s-lookup-modal .ui-dialog-footer,.s-lookup-modal .ui-dialog-header{-ms-flex-negative:0;flex-shrink:0;border-radius:0 0 4px 4px}.s-lookup-modal .s-lookup-modal-container{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;height:100%;width:100%}.s-lookup-modal .s-lookup-modal-container .filter{position:relative;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:85%;background-color:rgba(229,234,234,.5);height:100%;padding:.571rem}.s-lookup-modal .s-lookup-modal-container .filter form{width:100%;height:100%}.s-lookup-modal .s-lookup-modal-container .filter form .form-content{height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .filter-title{padding-left:.5rem}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .form-fields{overflow-y:auto}.s-lookup-modal .s-lookup-modal-container .filter-toggle{-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:34px;border-radius:0 4px 4px 0}.s-lookup-modal .s-lookup-modal-container .filter-toggle button{-ms-flex-align:center;align-items:center;position:relative;background-color:rgba(229,234,234,.5);height:34px;width:100%;border:1px solid #e5eaea;outline:0;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;text-decoration:none;text-transform:none;padding:7px;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out}.s-lookup-modal .s-lookup-modal-container .filter-toggle button:focus,.s-lookup-modal .s-lookup-modal-container .filter-toggle button:hover{background-color:rgba(201,211,211,.5);border-color:#c9d3d3}.s-lookup-modal .s-lookup-modal-container .filter-toggle--start-border-mask{height:15px;border-left:1px solid #e5eaea}.s-lookup-modal .s-lookup-modal-container .filter-toggle--end-border-mask{height:calc(100% - 49px);border-left:1px solid #e5eaea}.s-lookup-modal .s-lookup-modal-container .content{-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:auto;flex-basis:auto;overflow-x:auto;padding:.5rem}.s-lookup-modal .s-lookup-modal-container .content.empty-content{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.s-lookup-modal .s-lookup-modal-container .content .s-loading-state-container,.s-lookup-modal .s-lookup-modal-container .content .s-loading-state-container .contents{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table{position:relative;height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper{height:calc(100% - 60px)}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper .ui-table-scrollable-view{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper .ui-table-scrollable-view .ui-table-scrollable-body{position:relative;height:calc(100% - 60px)}@media (max-width:767px){.s-lookup-modal{border:none!important;top:0!important;left:0!important;width:100%!important;height:100%!important}}@media (min-width:768px){.s-lookup-modal{width:80%!important}.s-lookup-modal .s-lookup-modal-container .filter{width:40%}}@media (min-width:1200px){.s-lookup-modal{width:60%!important}.s-lookup-modal .s-lookup-modal-container .filter{width:30%}}"]
|
|
570
570
|
})
|
|
571
571
|
], LookupComponent);
|
|
572
572
|
export { LookupComponent };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290Ijoibmc6Ly9Ac2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzLyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy9keW5hbWljLWZvcm0vc2VydmljZXMvSUFzc2lzdC9tb2RlbHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IElBc3Npc3RJbnB1dERhdGEgfSBmcm9tIFwiLi9pYXNzaXN0LWlucHV0LWRhdGFcIjtcbmV4cG9ydCB7IElBc3Npc3RSZXNwb25zZSB9IGZyb20gXCIuL2lhc3Npc3QtcmVzcG9uc2VcIjtcbiJdfQ==
|
|
@@ -20,6 +20,7 @@ export * from "./global-search/index";
|
|
|
20
20
|
export * from "./ia-insight/index";
|
|
21
21
|
export * from "./image-cropper/index";
|
|
22
22
|
export * from "./info-sign/index";
|
|
23
|
+
export * from "./inline-edit/index";
|
|
23
24
|
export * from "./kanban/index";
|
|
24
25
|
export * from "./loading-state/index";
|
|
25
26
|
export * from "./locale/index";
|
|
@@ -44,6 +45,7 @@ export * from "./steps/index";
|
|
|
44
45
|
export * from "./switch/index";
|
|
45
46
|
export * from "./table/index";
|
|
46
47
|
export * from "./table-header/index";
|
|
48
|
+
export * from "./text-area-ia/index";
|
|
47
49
|
export * from "./thumbnail/index";
|
|
48
50
|
export * from "./tiered-menu/index";
|
|
49
51
|
export * from "./tile/index";
|
|
@@ -56,4 +58,4 @@ export * from "./workspace-switch/index";
|
|
|
56
58
|
* @deprecated Will be removed on a major update
|
|
57
59
|
*/
|
|
58
60
|
export * from "./number-input/index";
|
|
59
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290Ijoibmc6Ly9Ac2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzLyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLDBCQUEwQixDQUFDO0FBRXpDOztHQUVHO0FBQ0gsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL2FjY29yZGlvbi9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vYWxlcnQvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2JhZGdlL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9iaWdudW1iZXItaW5wdXQvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2JyZWFkY3J1bWIvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2J1dHRvbi9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY2FsZW5kYXItbWFzay9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY2FyZC9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29kZS1lZGl0b3IvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbGxhcHNlLWxpbmsvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbnRyb2wtZXJyb3JzL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb3VudHJ5LXBob25lLXBpY2tlci9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY3VzdG9tLWZpZWxkcy9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vZHluYW1pYy1mb3JtL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9lZGl0YWJsZS1vdmVybGF5L2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9lbXB0eS1zdGF0ZS9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vZmlsZS11cGxvYWQvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2dhbnR0L2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9nbG9iYWwtc2VhcmNoL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9pYS1pbnNpZ2h0L2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9pbWFnZS1jcm9wcGVyL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9pbmZvLXNpZ24vaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2lubGluZS1lZGl0L2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9rYW5iYW4vaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2xvYWRpbmctc3RhdGUvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2xvY2FsZS9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vbG9jYWxpemVkLW51bWJlci1pbnB1dC9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vbWFzay9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vbW91c2UtZXZlbnRzL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9uYXZpZ2F0aW9uLWJ1dHRvbi9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vb2JqZWN0LWNhcmQvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3Bhc3N3b3JkLXN0cmVuZ3RoL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9wcm9kdWN0LWhlYWRlci9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcHJvZmlsZS1waWN0dXJlLXBpY2tlci9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcHJvZ3Jlc3NiYXIvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3BhbmVsL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9yYXRpbmctc2NhbGUvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3NlbGVjdC1idXR0b24vaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3NoYXJlZC9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc2lkZWJhci9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc2xpZGUtcGFuZWwvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3NwbGl0LWJ1dHRvbi9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc3RhdHMtY2FyZC9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc3RlcHMvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3N3aXRjaC9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdGFibGUvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3RhYmxlLWhlYWRlci9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdGV4dC1hcmVhLWlhL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi90aHVtYm5haWwvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3RpZXJlZC1tZW51L2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi90aWxlL2luZGV4XCI7XG5leHBvcnQgKiBmcm9tIFwiLi90aW1lbGluZS9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdG9rZW4tbGlzdC9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdG9vbHRpcC9pbmRleFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdXRpbHMvaW5kZXhcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3dvcmtzcGFjZS1zd2l0Y2gvaW5kZXhcIjtcblxuLyoqXG4gKiBAZGVwcmVjYXRlZCBXaWxsIGJlIHJlbW92ZWQgb24gYSBtYWpvciB1cGRhdGVcbiAqL1xuZXhwb3J0ICogZnJvbSBcIi4vbnVtYmVyLWlucHV0L2luZGV4XCI7XG4iXX0=
|