cax-design-system 1.0.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/api/treenode.d.ts +4 -0
- package/confirmdialog/confirmdialog.module.d.ts +15 -0
- package/confirmdialog/public_api.d.ts +1 -0
- package/dialog/dialog.d.ts +0 -13
- package/dialog/dialog.module.d.ts +15 -0
- package/dialog/public_api.d.ts +1 -0
- package/dropdown/dropdown.d.ts +2 -1
- package/esm2022/api/treenode.mjs +1 -1
- package/esm2022/cascadeselect/cascadeselect.mjs +3 -3
- package/esm2022/confirmdialog/confirmdialog.mjs +8 -2
- package/esm2022/confirmdialog/confirmdialog.module.mjs +25 -0
- package/esm2022/confirmdialog/public_api.mjs +2 -1
- package/esm2022/dialog/dialog.mjs +10 -234
- package/esm2022/dialog/dialog.module.mjs +25 -0
- package/esm2022/dialog/public_api.mjs +2 -1
- package/esm2022/dropdown/dropdown.mjs +7 -3
- package/esm2022/floatlabel/floatlabel.mjs +6 -22
- package/esm2022/floatlabel/floatlabel.module.mjs +20 -0
- package/esm2022/floatlabel/public_api.mjs +2 -1
- package/esm2022/inputmask/inputmask.mjs +2 -2
- package/esm2022/inputnumber/inputnumber.mjs +2 -2
- package/esm2022/inputtext/inputtext.component.mjs +49 -9
- package/esm2022/inputtext/inputtext.directive.mjs +48 -12
- package/esm2022/inputtext/inputtext.module.mjs +5 -5
- package/esm2022/multiselect/multiselect.mjs +53 -702
- package/esm2022/multiselect/multiselect.module.mjs +30 -0
- package/esm2022/multiselect/public_api.mjs +2 -1
- package/esm2022/paginator/paginator.mjs +1 -1
- package/esm2022/password/password.mjs +2 -2
- package/esm2022/table/components/column-filter/column-filter.mjs +2 -2
- package/esm2022/tabview/tabview.mjs +7 -4
- package/esm2022/tree/tree.mjs +46 -13
- package/esm2022/tree/tree.module.mjs +5 -4
- package/esm2022/treeselect/public_api.mjs +2 -1
- package/esm2022/treeselect/treeselect.mjs +37 -365
- package/esm2022/treeselect/treeselect.module.mjs +26 -0
- package/fesm2022/cax-design-system-cascadeselect.mjs +2 -2
- package/fesm2022/cax-design-system-cascadeselect.mjs.map +1 -1
- package/fesm2022/cax-design-system-confirmdialog.mjs +31 -5
- package/fesm2022/cax-design-system-confirmdialog.mjs.map +1 -1
- package/fesm2022/cax-design-system-dialog.mjs +9 -213
- package/fesm2022/cax-design-system-dialog.mjs.map +1 -1
- package/fesm2022/cax-design-system-dropdown.mjs +6 -2
- package/fesm2022/cax-design-system-dropdown.mjs.map +1 -1
- package/fesm2022/cax-design-system-floatlabel.mjs +7 -6
- package/fesm2022/cax-design-system-floatlabel.mjs.map +1 -1
- package/fesm2022/cax-design-system-inputmask.mjs +1 -1
- package/fesm2022/cax-design-system-inputmask.mjs.map +1 -1
- package/fesm2022/cax-design-system-inputnumber.mjs +1 -1
- package/fesm2022/cax-design-system-inputnumber.mjs.map +1 -1
- package/fesm2022/cax-design-system-inputtext.mjs +98 -23
- package/fesm2022/cax-design-system-inputtext.mjs.map +1 -1
- package/fesm2022/cax-design-system-multiselect.mjs +58 -681
- package/fesm2022/cax-design-system-multiselect.mjs.map +1 -1
- package/fesm2022/cax-design-system-paginator.mjs +1 -1
- package/fesm2022/cax-design-system-paginator.mjs.map +1 -1
- package/fesm2022/cax-design-system-password.mjs +1 -1
- package/fesm2022/cax-design-system-password.mjs.map +1 -1
- package/fesm2022/cax-design-system-table.mjs +1 -1
- package/fesm2022/cax-design-system-table.mjs.map +1 -1
- package/fesm2022/cax-design-system-tabview.mjs +6 -3
- package/fesm2022/cax-design-system-tabview.mjs.map +1 -1
- package/fesm2022/cax-design-system-tree.mjs +50 -16
- package/fesm2022/cax-design-system-tree.mjs.map +1 -1
- package/fesm2022/cax-design-system-treeselect.mjs +42 -348
- package/fesm2022/cax-design-system-treeselect.mjs.map +1 -1
- package/floatlabel/floatlabel.d.ts +1 -9
- package/floatlabel/floatlabel.module.d.ts +10 -0
- package/floatlabel/public_api.d.ts +1 -0
- package/inputtext/inputtext.component.d.ts +14 -3
- package/inputtext/inputtext.directive.d.ts +14 -8
- package/inputtext/inputtext.module.d.ts +1 -1
- package/multiselect/multiselect.d.ts +21 -35
- package/multiselect/multiselect.module.d.ts +20 -0
- package/multiselect/public_api.d.ts +1 -0
- package/package.json +264 -264
- package/resources/cax.min.scss +1 -1
- package/resources/cax.scss +4 -5
- package/resources/components/button/button.scss +1 -0
- package/resources/components/cascadeselect/cascadeselect.scss +1 -0
- package/resources/components/dropdown/dropdown.scss +6 -2
- package/resources/components/inputtext/inputtext.scss +3 -5
- package/resources/components/multiselect/{multiselect.css → multiselect.scss} +34 -19
- package/resources/components/tabview/tabview.scss +14 -1
- package/resources/components/treeselect/{treeselect.css → treeselect.scss} +31 -16
- package/resources/themes/cax-theme.scss +272 -260
- package/tabview/tabview.d.ts +2 -1
- package/tree/tree.d.ts +12 -3
- package/tree/tree.module.d.ts +2 -1
- package/treeselect/public_api.d.ts +1 -0
- package/treeselect/treeselect.d.ts +12 -23
- package/treeselect/treeselect.module.d.ts +16 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Cax Design System
|
|
2
2
|
|
|
3
|
-
You can access all the modules available in cax design system in the [storybook](https://673d43a5032fb6c56edd4107-
|
|
3
|
+
You can access all the modules available in cax design system in the [storybook](https://673d43a5032fb6c56edd4107-mdewdqtluf.chromatic.com/)
|
|
4
4
|
|
|
5
5
|
### Installation
|
|
6
6
|
|
package/api/treenode.d.ts
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./confirmdialog";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "cax-design-system/button";
|
|
5
|
+
import * as i4 from "cax-design-system/ripple";
|
|
6
|
+
import * as i5 from "cax-design-system/icons/times";
|
|
7
|
+
import * as i6 from "cax-design-system/icons/check";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "cax-design-system/checkbox";
|
|
10
|
+
import * as i9 from "cax-design-system/api";
|
|
11
|
+
export declare class ConfirmDialogModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ConfirmDialogModule, [typeof i1.ConfirmDialog], [typeof i2.CommonModule, typeof i3.ButtonModule, typeof i4.RippleModule, typeof i5.TimesIcon, typeof i6.CheckIcon, typeof i7.FormsModule, typeof i8.CheckboxModule], [typeof i1.ConfirmDialog, typeof i3.ButtonModule, typeof i9.SharedModule]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ConfirmDialogModule>;
|
|
15
|
+
}
|
package/dialog/dialog.d.ts
CHANGED
|
@@ -3,14 +3,6 @@ import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone,
|
|
|
3
3
|
import { Footer, Header, caxConfig, CaxTemplate } from 'cax-design-system/api';
|
|
4
4
|
import { Nullable, VoidListener } from 'cax-design-system/ts-helpers';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "@angular/common";
|
|
7
|
-
import * as i2 from "cax-design-system/focustrap";
|
|
8
|
-
import * as i3 from "cax-design-system/button";
|
|
9
|
-
import * as i4 from "cax-design-system/ripple";
|
|
10
|
-
import * as i5 from "cax-design-system/icons/times";
|
|
11
|
-
import * as i6 from "cax-design-system/icons/windowmaximize";
|
|
12
|
-
import * as i7 from "cax-design-system/icons/windowminimize";
|
|
13
|
-
import * as i8 from "cax-design-system/api";
|
|
14
6
|
/**
|
|
15
7
|
* Dialog is a container to display content in an overlay window.
|
|
16
8
|
* @group Components
|
|
@@ -366,8 +358,3 @@ export declare class Dialog implements AfterContentInit, OnInit, OnDestroy {
|
|
|
366
358
|
static ngAcceptInputType_keepInViewport: unknown;
|
|
367
359
|
static ngAcceptInputType_focusTrap: unknown;
|
|
368
360
|
}
|
|
369
|
-
export declare class DialogModule {
|
|
370
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogModule, never>;
|
|
371
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogModule, [typeof Dialog], [typeof i1.CommonModule, typeof i2.FocusTrapModule, typeof i3.ButtonModule, typeof i4.RippleModule, typeof i5.TimesIcon, typeof i6.WindowMaximizeIcon, typeof i7.WindowMinimizeIcon], [typeof Dialog, typeof i8.SharedModule]>;
|
|
372
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DialogModule>;
|
|
373
|
-
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dialog";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "cax-design-system/focustrap";
|
|
5
|
+
import * as i4 from "cax-design-system/button";
|
|
6
|
+
import * as i5 from "cax-design-system/ripple";
|
|
7
|
+
import * as i6 from "cax-design-system/icons/times";
|
|
8
|
+
import * as i7 from "cax-design-system/icons/windowmaximize";
|
|
9
|
+
import * as i8 from "cax-design-system/icons/windowminimize";
|
|
10
|
+
import * as i9 from "cax-design-system/api";
|
|
11
|
+
export declare class DialogModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogModule, [typeof i1.Dialog], [typeof i2.CommonModule, typeof i3.FocusTrapModule, typeof i4.ButtonModule, typeof i5.RippleModule, typeof i6.TimesIcon, typeof i7.WindowMaximizeIcon, typeof i8.WindowMinimizeIcon], [typeof i1.Dialog, typeof i9.SharedModule]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DialogModule>;
|
|
15
|
+
}
|
package/dialog/public_api.d.ts
CHANGED
package/dropdown/dropdown.d.ts
CHANGED
|
@@ -310,6 +310,7 @@ export declare class Dropdown implements OnInit, AfterViewInit, AfterContentInit
|
|
|
310
310
|
* When present, it specifies that the component should be disabled.
|
|
311
311
|
* @group Props
|
|
312
312
|
*/
|
|
313
|
+
labelText: string | undefined;
|
|
313
314
|
get disabled(): boolean | undefined;
|
|
314
315
|
set disabled(_disabled: boolean | undefined);
|
|
315
316
|
/**
|
|
@@ -602,7 +603,7 @@ export declare class Dropdown implements OnInit, AfterViewInit, AfterContentInit
|
|
|
602
603
|
*/
|
|
603
604
|
clear(event?: Event): void;
|
|
604
605
|
static ɵfac: i0.ɵɵFactoryDeclaration<Dropdown, never>;
|
|
605
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Dropdown, "cax-dropdown", never, { "id": { "alias": "id"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "name": { "alias": "name"; "required": false; }; "style": { "alias": "style"; "required": false; }; "panelStyle": { "alias": "panelStyle"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "panelStyleClass": { "alias": "panelStyleClass"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "loadingIcon": { "alias": "loadingIcon"; "required": false; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; "filterLocale": { "alias": "filterLocale"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "filterFields": { "alias": "filterFields"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "resetFilterOnHide": { "alias": "resetFilterOnHide"; "required": false; }; "checkmark": { "alias": "checkmark"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "optionGroupLabel": { "alias": "optionGroupLabel"; "required": false; }; "optionGroupChildren": { "alias": "optionGroupChildren"; "required": false; }; "autoDisplayFirst": { "alias": "autoDisplayFirst"; "required": false; }; "group": { "alias": "group"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "emptyFilterMessage": { "alias": "emptyFilterMessage"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "virtualScrollItemSize": { "alias": "virtualScrollItemSize"; "required": false; }; "virtualScrollOptions": { "alias": "virtualScrollOptions"; "required": false; }; "overlayOptions": { "alias": "overlayOptions"; "required": false; }; "ariaFilterLabel": { "alias": "ariaFilterLabel"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "filterMatchMode": { "alias": "filterMatchMode"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipPositionStyle": { "alias": "tooltipPositionStyle"; "required": false; }; "tooltipStyleClass": { "alias": "tooltipStyleClass"; "required": false; }; "focusOnHover": { "alias": "focusOnHover"; "required": false; }; "selectOnFocus": { "alias": "selectOnFocus"; "required": false; }; "autoOptionFocus": { "alias": "autoOptionFocus"; "required": false; }; "autofocusFilter": { "alias": "autofocusFilter"; "required": false; }; "autoShowPanelOnPrintableCharacterKeyDown": { "alias": "autoShowPanelOnPrintableCharacterKeyDown"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemSize": { "alias": "itemSize"; "required": false; }; "autoZIndex": { "alias": "autoZIndex"; "required": false; }; "baseZIndex": { "alias": "baseZIndex"; "required": false; }; "showTransitionOptions": { "alias": "showTransitionOptions"; "required": false; }; "hideTransitionOptions": { "alias": "hideTransitionOptions"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; "onFilter": "onFilter"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onClick": "onClick"; "onShow": "onShow"; "onHide": "onHide"; "onClear": "onClear"; "onLazyLoad": "onLazyLoad"; }, ["templates"], never, true, never>;
|
|
606
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Dropdown, "cax-dropdown", never, { "id": { "alias": "id"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "name": { "alias": "name"; "required": false; }; "style": { "alias": "style"; "required": false; }; "panelStyle": { "alias": "panelStyle"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "panelStyleClass": { "alias": "panelStyleClass"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "loadingIcon": { "alias": "loadingIcon"; "required": false; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; "filterLocale": { "alias": "filterLocale"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "filterFields": { "alias": "filterFields"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "resetFilterOnHide": { "alias": "resetFilterOnHide"; "required": false; }; "checkmark": { "alias": "checkmark"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "optionGroupLabel": { "alias": "optionGroupLabel"; "required": false; }; "optionGroupChildren": { "alias": "optionGroupChildren"; "required": false; }; "autoDisplayFirst": { "alias": "autoDisplayFirst"; "required": false; }; "group": { "alias": "group"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "emptyFilterMessage": { "alias": "emptyFilterMessage"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "virtualScrollItemSize": { "alias": "virtualScrollItemSize"; "required": false; }; "virtualScrollOptions": { "alias": "virtualScrollOptions"; "required": false; }; "overlayOptions": { "alias": "overlayOptions"; "required": false; }; "ariaFilterLabel": { "alias": "ariaFilterLabel"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "filterMatchMode": { "alias": "filterMatchMode"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipPositionStyle": { "alias": "tooltipPositionStyle"; "required": false; }; "tooltipStyleClass": { "alias": "tooltipStyleClass"; "required": false; }; "focusOnHover": { "alias": "focusOnHover"; "required": false; }; "selectOnFocus": { "alias": "selectOnFocus"; "required": false; }; "autoOptionFocus": { "alias": "autoOptionFocus"; "required": false; }; "autofocusFilter": { "alias": "autofocusFilter"; "required": false; }; "autoShowPanelOnPrintableCharacterKeyDown": { "alias": "autoShowPanelOnPrintableCharacterKeyDown"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemSize": { "alias": "itemSize"; "required": false; }; "autoZIndex": { "alias": "autoZIndex"; "required": false; }; "baseZIndex": { "alias": "baseZIndex"; "required": false; }; "showTransitionOptions": { "alias": "showTransitionOptions"; "required": false; }; "hideTransitionOptions": { "alias": "hideTransitionOptions"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "onChange": "onChange"; "onFilter": "onFilter"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onClick": "onClick"; "onShow": "onShow"; "onHide": "onHide"; "onClear": "onClear"; "onLazyLoad": "onLazyLoad"; }, ["templates"], never, true, never>;
|
|
606
607
|
static ngAcceptInputType_filter: unknown;
|
|
607
608
|
static ngAcceptInputType_readonly: unknown;
|
|
608
609
|
static ngAcceptInputType_required: unknown;
|
package/esm2022/api/treenode.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJlZW5vZGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXBwL2NvbXBvbmVudHMvYXBpL3RyZWVub2RlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFJlcHJlc2VudHMgYSBub2RlIGluIGEgdHJlZSBkYXRhIHN0cnVjdHVyZS5cbiAqIEBncm91cCBJbnRlcmZhY2VcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBUcmVlTm9kZTxUID0gYW55PiB7XG4gICAgY2hlY2tlZD86IGJvb2xlYW47XG4gICAgLyoqXG4gICAgICogTGFiZWwgb2YgdGhlIG5vZGUuXG4gICAgICovXG4gICAgbGFiZWw/OiBzdHJpbmc7XG4gICAgLyoqXG4gICAgICogRGF0YSByZXByZXNlbnRlZCBieSB0aGUgbm9kZS5cbiAgICAgKi9cbiAgICBkYXRhPzogVDtcbiAgICAvKipcbiAgICAgKiBJY29uIG9mIHRoZSBub2RlIHRvIGRpc3BsYXkgbmV4dCB0byBjb250ZW50LlxuICAgICAqL1xuICAgIGljb24/
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJlZW5vZGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXBwL2NvbXBvbmVudHMvYXBpL3RyZWVub2RlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFJlcHJlc2VudHMgYSBub2RlIGluIGEgdHJlZSBkYXRhIHN0cnVjdHVyZS5cbiAqIEBncm91cCBJbnRlcmZhY2VcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBUcmVlTm9kZTxUID0gYW55PiB7XG4gICAgY2hlY2tlZD86IGJvb2xlYW47XG4gICAgLyoqXG4gICAgICogTGFiZWwgb2YgdGhlIG5vZGUuXG4gICAgICovXG4gICAgbGFiZWw/OiBzdHJpbmc7XG4gICAgLyoqXG4gICAgICogRGF0YSByZXByZXNlbnRlZCBieSB0aGUgbm9kZS5cbiAgICAgKi9cbiAgICBkYXRhPzogVDtcbiAgICAvKipcbiAgICAgKiBJY29uIG9mIHRoZSBub2RlIHRvIGRpc3BsYXkgbmV4dCB0byBjb250ZW50LlxuICAgICAqL1xuICAgIGljb24/OiBzdHJpbmc7XG4gICAgLyoqXG4gICAgICogQmFkZ2UgZGlzcGxheS5cbiAgICAgKi9cbiAgICBiYWRnZT86IG51bWJlcjtcbiAgICAvKipcbiAgICAgKiBJY29uIHRvIHVzZSBpbiBleHBhbmRlZCBzdGF0ZS5cbiAgICAgKi9cbiAgICByaWdodEljb24/OiBzdHJpbmc7XG4gICAgLyoqXG4gICAgICogSWNvbiB0byB1c2UgaW4gZXhwYW5kZWQgc3RhdGUuXG4gICAgICovXG4gICAgZXhwYW5kZWRJY29uPzogc3RyaW5nO1xuICAgIC8qKlxuICAgICAqIEljb24gdG8gdXNlIGluIGNvbGxhcHNlZCBzdGF0ZS5cbiAgICAgKi9cbiAgICBjb2xsYXBzZWRJY29uPzogc3RyaW5nO1xuICAgIC8qKlxuICAgICAqIEFuIGFycmF5IG9mIHRyZWVub2RlcyBhcyBjaGlsZHJlbi5cbiAgICAgKi9cbiAgICBjaGlsZHJlbj86IFRyZWVOb2RlPFQ+W107XG4gICAgLyoqXG4gICAgICogU3BlY2lmaWVzIGlmIHRoZSBub2RlIGhhcyBjaGlsZHJlbi4gVXNlZCBpbiBsYXp5IGxvYWRpbmcuXG4gICAgICogQGRlZmF1bHRWYWx1ZSBmYWxzZVxuICAgICAqL1xuICAgIGxlYWY/OiBib29sZWFuO1xuICAgIC8qKlxuICAgICAqIEV4cGFuZGVkIHN0YXRlIG9mIHRoZSBub2RlLlxuICAgICAqIEBkZWZhdWx0VmFsdWUgZmFsc2VcbiAgICAgKi9cbiAgICBleHBhbmRlZD86IGJvb2xlYW47XG4gICAgLyoqXG4gICAgICogVHlwZSBvZiB0aGUgbm9kZSB0byBtYXRjaCBhIHRlbXBsYXRlLlxuICAgICAqL1xuICAgIHR5cGU/OiBzdHJpbmc7XG4gICAgLyoqXG4gICAgICogUGFyZW50IG9mIHRoZSBub2RlLlxuICAgICAqL1xuICAgIHBhcmVudD86IFRyZWVOb2RlPFQ+O1xuICAgIC8qKlxuICAgICAqIERlZmluZXMgaWYgdmFsdWUgaXMgcGFydGlhbGx5IHNlbGVjdGVkLlxuICAgICAqL1xuICAgIHBhcnRpYWxTZWxlY3RlZD86IGJvb2xlYW47XG4gICAgLyoqXG4gICAgICogSW5saW5lIHN0eWxlIG9mIHRoZSBub2RlLlxuICAgICAqL1xuICAgIHN0eWxlPzogYW55O1xuICAgIC8qKlxuICAgICAqIFN0eWxlIGNsYXNzIG9mIHRoZSBub2RlLlxuICAgICAqL1xuICAgIHN0eWxlQ2xhc3M/OiBzdHJpbmc7XG4gICAgLyoqXG4gICAgICogRGVmaW5lcyBpZiB0aGUgbm9kZSBpcyBkcmFnZ2FibGUuXG4gICAgICovXG4gICAgZHJhZ2dhYmxlPzogYm9vbGVhbjtcbiAgICAvKipcbiAgICAgKiBEZWZpbmVzIGlmIHRoZSBub2RlIGlzIGRyb3BwYWJsZS5cbiAgICAgKi9cbiAgICBkcm9wcGFibGU/OiBib29sZWFuO1xuICAgIC8qKlxuICAgICAqIFdoZXRoZXIgdGhlIG5vZGUgaXMgc2VsZWN0YWJsZSB3aGVuIHNlbGVjdGlvbiBtb2RlIGlzIGVuYWJsZWQuXG4gICAgICogQGRlZmF1bHRWYWx1ZSBmYWxzZVxuICAgICAqL1xuICAgIHNlbGVjdGFibGU/OiBib29sZWFuO1xuICAgIC8qKlxuICAgICAqIE1hbmRhdG9yeSB1bmlxdWUga2V5IG9mIHRoZSBub2RlLlxuICAgICAqL1xuICAgIGtleT86IHN0cmluZztcbiAgICAvKipcbiAgICAgKiBEZWZpbmVzIGlmIHRoZSBub2RlIGlzIGxvYWRpbmcuXG4gICAgICovXG4gICAgbG9hZGluZz86IGJvb2xlYW47XG59XG4iXX0=
|