@pepperi-addons/ngx-lib 0.2.48 → 0.2.51-beta.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/bundles/pepperi-addons-ngx-lib-checkbox.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib-form.umd.js +3405 -58
- package/bundles/pepperi-addons-ngx-lib-form.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib-group-buttons.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib-icon.umd.js +9 -2
- package/bundles/pepperi-addons-ngx-lib-icon.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib-slider.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib-textbox.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib.umd.js +19 -4
- package/bundles/pepperi-addons-ngx-lib.umd.js.map +1 -1
- package/core/common/model/wapi.model.d.ts +1 -0
- package/core/customization/customization.model.d.ts +10 -0
- package/esm2015/checkbox/checkbox.component.js +1 -1
- package/esm2015/core/common/model/wapi.model.js +2 -1
- package/esm2015/core/common/services/utilities.service.js +2 -2
- package/esm2015/core/customization/customization.model.js +13 -1
- package/esm2015/form/field-generator.component.js +13 -3
- package/esm2015/form/form.component.js +36 -16
- package/esm2015/form/form.module.js +5 -1
- package/esm2015/form/internal-carusel.component.js +188 -0
- package/esm2015/form/internal-carusel.service.js +32 -0
- package/esm2015/form/internal-carusel.temp-data.js +3129 -0
- package/esm2015/form/internal-page.component.js +4 -39
- package/esm2015/form/pepperi-addons-ngx-lib-form.js +3 -1
- package/esm2015/group-buttons/group-buttons.component.js +1 -1
- package/esm2015/icon/icon-generated-all.model.js +2 -1
- package/esm2015/icon/icon-generated.model.js +5 -1
- package/esm2015/icon/icon-registry.service.js +3 -3
- package/esm2015/icon/icon.module.js +3 -1
- package/esm2015/ngx-lib.module.js +1 -4
- package/esm2015/slider/slider.component.js +1 -1
- package/esm2015/textbox/textbox.component.js +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-form.js +3394 -56
- package/fesm2015/pepperi-addons-ngx-lib-form.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-icon.js +9 -3
- package/fesm2015/pepperi-addons-ngx-lib-icon.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-slider.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-textbox.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib.js +15 -5
- package/fesm2015/pepperi-addons-ngx-lib.js.map +1 -1
- package/form/field-generator.component.d.ts +5 -0
- package/form/form.component.d.ts +4 -2
- package/form/internal-carusel.component.d.ts +46 -0
- package/form/internal-carusel.service.d.ts +12 -0
- package/form/internal-carusel.temp-data.d.ts +62 -0
- package/form/pepperi-addons-ngx-lib-form.d.ts +2 -0
- package/form/pepperi-addons-ngx-lib-form.metadata.json +1 -1
- package/icon/icon-generated-all.model.d.ts +1 -0
- package/icon/icon-generated.model.d.ts +5 -1
- package/icon/pepperi-addons-ngx-lib-icon.metadata.json +1 -1
- package/package.json +1 -1
- package/pepperi-addons-ngx-lib.metadata.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pepperi-addons-ngx-lib-group-buttons.js","sources":["../../../projects/ngx-lib/group-buttons/group-buttons.component.ts","../../../projects/ngx-lib/group-buttons/group-buttons.module.ts","../../../projects/ngx-lib/group-buttons/public-api.ts","../../../projects/ngx-lib/group-buttons/pepperi-addons-ngx-lib-group-buttons.ts"],"sourcesContent":["import {\n Component,\n OnDestroy,\n Input,\n Output,\n EventEmitter,\n} from '@angular/core';\nimport {\n PepLayoutService, PepScreenSizeType, PepStyleType, PepSizeType\n} from '@pepperi-addons/ngx-lib';\nimport {\n PepButton,\n IPepButtonClickEvent,\n} from '@pepperi-addons/ngx-lib/button';\n\nexport type PepGroupButtonsViewType = 'regular' | 'dropdown' | 'split' | 'toggle';\n@Component({\n selector: 'pep-group-buttons',\n templateUrl: './group-buttons.component.html',\n styleUrls: ['./group-buttons.component.scss'],\n})\nexport class PepGroupButtonsComponent implements OnDestroy {\n PepScreenSizeType = PepScreenSizeType;\n screenSize: PepScreenSizeType;\n\n @Input() viewType: PepGroupButtonsViewType = 'regular';\n @Input() styleType: PepStyleType = 'weak';\n @Input() sizeType: PepSizeType = 'md';\n @Input() buttons: Array<PepButton> = [];\n @Input() buttonsDisabled
|
|
1
|
+
{"version":3,"file":"pepperi-addons-ngx-lib-group-buttons.js","sources":["../../../projects/ngx-lib/group-buttons/group-buttons.component.ts","../../../projects/ngx-lib/group-buttons/group-buttons.module.ts","../../../projects/ngx-lib/group-buttons/public-api.ts","../../../projects/ngx-lib/group-buttons/pepperi-addons-ngx-lib-group-buttons.ts"],"sourcesContent":["import {\n Component,\n OnDestroy,\n Input,\n Output,\n EventEmitter,\n} from '@angular/core';\nimport {\n PepLayoutService, PepScreenSizeType, PepStyleType, PepSizeType\n} from '@pepperi-addons/ngx-lib';\nimport {\n PepButton,\n IPepButtonClickEvent,\n} from '@pepperi-addons/ngx-lib/button';\n\nexport type PepGroupButtonsViewType = 'regular' | 'dropdown' | 'split' | 'toggle';\n@Component({\n selector: 'pep-group-buttons',\n templateUrl: './group-buttons.component.html',\n styleUrls: ['./group-buttons.component.scss'],\n})\nexport class PepGroupButtonsComponent implements OnDestroy {\n PepScreenSizeType = PepScreenSizeType;\n screenSize: PepScreenSizeType;\n\n @Input() viewType: PepGroupButtonsViewType = 'regular';\n @Input() styleType: PepStyleType = 'weak';\n @Input() sizeType: PepSizeType = 'md';\n @Input() buttons: Array<PepButton> = [];\n @Input() buttonsDisabled = false;\n @Input() selectedButtonKey = '';\n @Input() stretch = false;\n\n @Output()\n buttonClick: EventEmitter<IPepButtonClickEvent> = new EventEmitter<IPepButtonClickEvent>();\n\n\n constructor(public layoutService: PepLayoutService) {\n this.layoutService.onResize$.subscribe((size) => {\n this.screenSize = size;\n });\n }\n\n ngOnDestroy(): void {\n // if (this.buttonClick) {\n // this.buttonClick.unsubscribe();\n // }\n }\n\n onButtonClicked(event: Event, button: PepButton): void {\n this.selectedButtonKey = button?.key;\n\n const buttonClick = {\n source: button,\n event,\n };\n\n if (button?.callback) {\n button.callback(buttonClick);\n } else {\n this.buttonClick.emit(buttonClick);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { MatCommonModule } from '@angular/material/core';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatMenuModule } from '@angular/material/menu';\nimport { MatIconModule } from '@angular/material/icon';\n\nimport { PepNgxLibModule } from '@pepperi-addons/ngx-lib';\nimport {\n PepIconModule,\n PepIconRegistry,\n pepIconArrowUp,\n pepIconArrowDown,\n} from '@pepperi-addons/ngx-lib/icon';\n\nimport { PepGroupButtonsComponent } from './group-buttons.component';\n\n@NgModule({\n imports: [\n CommonModule,\n // Material modules\n MatCommonModule,\n MatFormFieldModule,\n MatButtonModule,\n MatMenuModule,\n MatIconModule,\n // ngx-lib modules\n PepNgxLibModule,\n PepIconModule,\n ],\n exports: [PepGroupButtonsComponent],\n declarations: [PepGroupButtonsComponent],\n})\nexport class PepGroupButtonsModule {\n constructor(private pepIconRegistry: PepIconRegistry) {\n this.pepIconRegistry.registerIcons([pepIconArrowUp, pepIconArrowDown]);\n }\n}\n","/*\n * Public API Surface of ngx-lib/group-buttons\n */\nexport * from './group-buttons.module';\nexport * from './group-buttons.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;;MAqBa,wBAAwB;IAgBjC,YAAmB,aAA+B;QAA/B,kBAAa,GAAb,aAAa,CAAkB;QAflD,sBAAiB,GAAG,iBAAiB,CAAC;QAG7B,aAAQ,GAA4B,SAAS,CAAC;QAC9C,cAAS,GAAiB,MAAM,CAAC;QACjC,aAAQ,GAAgB,IAAI,CAAC;QAC7B,YAAO,GAAqB,EAAE,CAAC;QAC/B,oBAAe,GAAG,KAAK,CAAC;QACxB,sBAAiB,GAAG,EAAE,CAAC;QACvB,YAAO,GAAG,KAAK,CAAC;QAGzB,gBAAW,GAAuC,IAAI,YAAY,EAAwB,CAAC;QAIvF,IAAI,CAAC,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,IAAI;YACxC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;SAC1B,CAAC,CAAC;KACN;IAED,WAAW;;;;KAIV;IAED,eAAe,CAAC,KAAY,EAAE,MAAiB;QAC3C,IAAI,CAAC,iBAAiB,GAAG,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,GAAG,CAAC;QAErC,MAAM,WAAW,GAAG;YAChB,MAAM,EAAE,MAAM;YACd,KAAK;SACR,CAAC;QAEF,IAAI,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,QAAQ,EAAE;YAClB,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;SAChC;aAAM;YACH,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;SACtC;KACJ;;;YA9CJ,SAAS,SAAC;gBACP,QAAQ,EAAE,mBAAmB;gBAC7B,i+IAA6C;;aAEhD;;;YAZG,gBAAgB;;;uBAiBf,KAAK;wBACL,KAAK;uBACL,KAAK;sBACL,KAAK;8BACL,KAAK;gCACL,KAAK;sBACL,KAAK;0BAEL,MAAM;;;MCEE,qBAAqB;IAC9B,YAAoB,eAAgC;QAAhC,oBAAe,GAAf,eAAe,CAAiB;QAChD,IAAI,CAAC,eAAe,CAAC,aAAa,CAAC,CAAC,cAAc,EAAE,gBAAgB,CAAC,CAAC,CAAC;KAC1E;;;YAnBJ,QAAQ,SAAC;gBACN,OAAO,EAAE;oBACL,YAAY;;oBAEZ,eAAe;oBACf,kBAAkB;oBAClB,eAAe;oBACf,aAAa;oBACb,aAAa;;oBAEb,eAAe;oBACf,aAAa;iBAChB;gBACD,OAAO,EAAE,CAAC,wBAAwB,CAAC;gBACnC,YAAY,EAAE,CAAC,wBAAwB,CAAC;aAC3C;;;YAtBG,eAAe;;;ACZnB;;;;ACAA;;;;;;"}
|
|
@@ -58,6 +58,7 @@ const allIcons = {
|
|
|
58
58
|
system_file_upload: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M19 11a1 1 0 011 1v4a2 2 0 01-2 2H6a2 2 0 01-2-2v-4a1 1 0 012 0v3a1 1 0 001 1h10a1 1 0 001-1v-3a1 1 0 011-1zm-6.688-4.75l3.575 2.86a.5.5 0 01-.312.89H13v4a1 1 0 01-2 0v-4H8.425a.5.5 0 01-.312-.89l3.575-2.86a.5.5 0 01.624 0z"/></svg>',
|
|
59
59
|
system_filter_2: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M8 15.5a2.5 2.5 0 012.292 1.5H20a1 1 0 010 2h-9.708a2.5 2.5 0 01-4.584 0H4a1 1 0 010-2h1.708A2.5 2.5 0 018 15.5zm8-6a2.5 2.5 0 012.292 1.5H20a1 1 0 010 2h-1.708a2.5 2.5 0 01-4.584 0H4a1 1 0 010-2h9.708A2.5 2.5 0 0116 9.5zm-8-6A2.5 2.5 0 0110.292 5H20a1 1 0 010 2h-9.708a2.5 2.5 0 01-4.584 0H4a1 1 0 110-2h1.708A2.5 2.5 0 018 3.5z"/></svg>',
|
|
60
60
|
system_filter: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13.5 15a.5.5 0 01.5.5v2.86a.5.5 0 01-.621.485l-3-.75A.5.5 0 0110 17.61V15.5a.5.5 0 01.5-.5h3zm2.5-5a1 1 0 010 2H8a1 1 0 010-2h8zm3-5a1 1 0 010 2H5a1 1 0 110-2h14z"/></svg>',
|
|
61
|
+
system_folder: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M9.465 4a1 1 0 01.832.445l1.406 2.11a1 1 0 00.832.445H19a1 1 0 011 1v9a1 1 0 01-1 1H5a1 1 0 01-1-1V5a1 1 0 011-1h4.465zM17 9H7a1 1 0 00-1 1v5a1 1 0 001 1h10a1 1 0 001-1v-5a1 1 0 00-1-1z"/></svg>',
|
|
61
62
|
system_full_screen: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M10.597 13.403a.961.961 0 010 1.36L7.36 18H9a1 1 0 010 2H5a1 1 0 01-1-1v-4a1 1 0 012 0v1.64l3.238-3.237a.961.961 0 011.36 0zM19 4a1 1 0 011 1v4a1 1 0 01-2 0V7.36l-3.238 3.237a.961.961 0 11-1.36-1.36L16.642 6H15a1 1 0 010-2h4z"/></svg>',
|
|
62
63
|
system_heart: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 6.532C11.395 5.805 10.353 5 8.7 5 5.89 5 4 7.608 4 10.043c0 3.546 6.803 8.297 7.579 8.827a.75.75 0 00.842 0c.776-.53 7.579-5.282 7.579-8.827C20 7.608 18.11 5 15.299 5c-1.651 0-2.694.805-3.299 1.532zM6 10.27C6 8.9 7.028 7 8.957 7c1.755 0 2.374 1.517 2.398 1.577a.688.688 0 001.288.005c.025-.065.645-1.582 2.4-1.582C16.973 7 18 8.9 18 10.27c0 1.82-3.53 4.72-6 6.48-2.471-1.76-6-4.657-6-6.48z"/></svg>',
|
|
63
64
|
system_home: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M17 5a1 1 0 011 1v3.057l1.581 1.13a1 1 0 01.3 1.288l-.067.106a1 1 0 01-1.395.233l-.42-.3L18 19a1 1 0 01-1 1H7a1 1 0 01-1-1v-7.486l-.419.3a1 1 0 11-1.162-1.628l7-5 .014-.01a.993.993 0 01.062-.04l-.076.05a1.009 1.009 0 01.7-.179.882.882 0 01.227.055.885.885 0 01.115.05c.041.022.081.046.12.074l-.076-.05a.993.993 0 01.062.04l.014.01L16 7.628V6a1 1 0 011-1zm-5.001 2.228l-4 2.857L8 18h8v-7.914l-4.001-2.858z"/></svg>',
|
|
@@ -315,6 +316,10 @@ const pepIconSystemFilter = {
|
|
|
315
316
|
name: 'system_filter',
|
|
316
317
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13.5 15a.5.5 0 01.5.5v2.86a.5.5 0 01-.621.485l-3-.75A.5.5 0 0110 17.61V15.5a.5.5 0 01.5-.5h3zm2.5-5a1 1 0 010 2H8a1 1 0 010-2h8zm3-5a1 1 0 010 2H5a1 1 0 110-2h14z"/></svg>`
|
|
317
318
|
};
|
|
319
|
+
const pepIconSystemFolder = {
|
|
320
|
+
name: 'system_folder',
|
|
321
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M9.465 4a1 1 0 01.832.445l1.406 2.11a1 1 0 00.832.445H19a1 1 0 011 1v9a1 1 0 01-1 1H5a1 1 0 01-1-1V5a1 1 0 011-1h4.465zM17 9H7a1 1 0 00-1 1v5a1 1 0 001 1h10a1 1 0 001-1v-5a1 1 0 00-1-1z"/></svg>`
|
|
322
|
+
};
|
|
318
323
|
const pepIconSystemFullScreen = {
|
|
319
324
|
name: 'system_full_screen',
|
|
320
325
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M10.597 13.403a.961.961 0 010 1.36L7.36 18H9a1 1 0 010 2H5a1 1 0 01-1-1v-4a1 1 0 012 0v1.64l3.238-3.237a.961.961 0 011.36 0zM19 4a1 1 0 011 1v4a1 1 0 01-2 0V7.36l-3.238 3.237a.961.961 0 11-1.36-1.36L16.642 6H15a1 1 0 010-2h4z"/></svg>`
|
|
@@ -499,10 +504,10 @@ class PepIconRegistry {
|
|
|
499
504
|
return this.registry.get(iconName);
|
|
500
505
|
}
|
|
501
506
|
}
|
|
502
|
-
PepIconRegistry.ɵprov = i0.ɵɵdefineInjectable({ factory: function PepIconRegistry_Factory() { return new PepIconRegistry(); }, token: PepIconRegistry, providedIn: "
|
|
507
|
+
PepIconRegistry.ɵprov = i0.ɵɵdefineInjectable({ factory: function PepIconRegistry_Factory() { return new PepIconRegistry(); }, token: PepIconRegistry, providedIn: "root" });
|
|
503
508
|
PepIconRegistry.decorators = [
|
|
504
509
|
{ type: Injectable, args: [{
|
|
505
|
-
providedIn: '
|
|
510
|
+
providedIn: 'root',
|
|
506
511
|
},] }
|
|
507
512
|
];
|
|
508
513
|
|
|
@@ -644,6 +649,7 @@ PepIconModule.decorators = [
|
|
|
644
649
|
declarations: [PepIconComponent],
|
|
645
650
|
imports: [],
|
|
646
651
|
exports: [PepIconComponent],
|
|
652
|
+
providers: [PepIconRegistry]
|
|
647
653
|
},] }
|
|
648
654
|
];
|
|
649
655
|
|
|
@@ -655,5 +661,5 @@ PepIconModule.decorators = [
|
|
|
655
661
|
* Generated bundle index. Do not edit.
|
|
656
662
|
*/
|
|
657
663
|
|
|
658
|
-
export { PepIconComponent, PepIconModule, PepIconRegistry, allIcons, pepIconArrowBack, pepIconArrowBackLeft, pepIconArrowBackRight, pepIconArrowDown, pepIconArrowDownAlt, pepIconArrowEither, pepIconArrowLeft, pepIconArrowLeftAlt, pepIconArrowRight, pepIconArrowRightAlt, pepIconArrowTwoWaysHorL, pepIconArrowTwoWaysHorR, pepIconArrowTwoWaysVerB, pepIconArrowTwoWaysVerT, pepIconArrowUp, pepIconArrowUpAlt, pepIconBarndPepperi, pepIconDeviceDesktop, pepIconDeviceMobile, pepIconDeviceTablet, pepIconIndicatorDotPlaceholder, pepIconMiscExcel, pepIconNoImage, pepIconNoImage2, pepIconNumberCoins, pepIconNumberDecimal, pepIconNumberDollar, pepIconNumberEuro, pepIconNumberMinus, pepIconNumberNumber, pepIconNumberPercent, pepIconNumberPlus, pepIconRipplesTransparent, pepIconShoppingCart, pepIconShoppingPaper, pepIconSystemAttach, pepIconSystemAvatar, pepIconSystemBin, pepIconSystemBolt, pepIconSystemChat, pepIconSystemCircle, pepIconSystemClose, pepIconSystemDoc, pepIconSystemDoor, pepIconSystemDotEllipsis, pepIconSystemEdit, pepIconSystemEducation, pepIconSystemEmail, pepIconSystemFileDownload, pepIconSystemFileUpload, pepIconSystemFileUploadCloud, pepIconSystemFilter, pepIconSystemFilter2, pepIconSystemFullScreen, pepIconSystemHeart, pepIconSystemHome, pepIconSystemInfo, pepIconSystemInventory, pepIconSystemLink, pepIconSystemMap, pepIconSystemMenu, pepIconSystemMenuDots, pepIconSystemMove, pepIconSystemMust, pepIconSystemOffLine, pepIconSystemOk, pepIconSystemPause, pepIconSystemPhone, pepIconSystemPlay, pepIconSystemPrint, pepIconSystemProcessing, pepIconSystemQuestion, pepIconSystemRotateDevice, pepIconSystemSearch, pepIconSystemSelect, pepIconSystemSettings, pepIconSystemSignature, pepIconSystemSpinner, pepIconSystemSupport, pepIconSystemTexterea, pepIconSystemTool, pepIconSystemView, pepIconTextAlignCenter, pepIconTextAlignLeft, pepIconTextAlignRight, pepIconTimeCal, pepIconTimeDatetime, pepIconTimeDuration, pepIconTimeTime, pepIconViewCardLg, pepIconViewCardMd, pepIconViewCardSm, pepIconViewLine, pepIconViewMatrix, pepIconViewTable };
|
|
664
|
+
export { PepIconComponent, PepIconModule, PepIconRegistry, allIcons, pepIconArrowBack, pepIconArrowBackLeft, pepIconArrowBackRight, pepIconArrowDown, pepIconArrowDownAlt, pepIconArrowEither, pepIconArrowLeft, pepIconArrowLeftAlt, pepIconArrowRight, pepIconArrowRightAlt, pepIconArrowTwoWaysHorL, pepIconArrowTwoWaysHorR, pepIconArrowTwoWaysVerB, pepIconArrowTwoWaysVerT, pepIconArrowUp, pepIconArrowUpAlt, pepIconBarndPepperi, pepIconDeviceDesktop, pepIconDeviceMobile, pepIconDeviceTablet, pepIconIndicatorDotPlaceholder, pepIconMiscExcel, pepIconNoImage, pepIconNoImage2, pepIconNumberCoins, pepIconNumberDecimal, pepIconNumberDollar, pepIconNumberEuro, pepIconNumberMinus, pepIconNumberNumber, pepIconNumberPercent, pepIconNumberPlus, pepIconRipplesTransparent, pepIconShoppingCart, pepIconShoppingPaper, pepIconSystemAttach, pepIconSystemAvatar, pepIconSystemBin, pepIconSystemBolt, pepIconSystemChat, pepIconSystemCircle, pepIconSystemClose, pepIconSystemDoc, pepIconSystemDoor, pepIconSystemDotEllipsis, pepIconSystemEdit, pepIconSystemEducation, pepIconSystemEmail, pepIconSystemFileDownload, pepIconSystemFileUpload, pepIconSystemFileUploadCloud, pepIconSystemFilter, pepIconSystemFilter2, pepIconSystemFolder, pepIconSystemFullScreen, pepIconSystemHeart, pepIconSystemHome, pepIconSystemInfo, pepIconSystemInventory, pepIconSystemLink, pepIconSystemMap, pepIconSystemMenu, pepIconSystemMenuDots, pepIconSystemMove, pepIconSystemMust, pepIconSystemOffLine, pepIconSystemOk, pepIconSystemPause, pepIconSystemPhone, pepIconSystemPlay, pepIconSystemPrint, pepIconSystemProcessing, pepIconSystemQuestion, pepIconSystemRotateDevice, pepIconSystemSearch, pepIconSystemSelect, pepIconSystemSettings, pepIconSystemSignature, pepIconSystemSpinner, pepIconSystemSupport, pepIconSystemTexterea, pepIconSystemTool, pepIconSystemView, pepIconTextAlignCenter, pepIconTextAlignLeft, pepIconTextAlignRight, pepIconTimeCal, pepIconTimeDatetime, pepIconTimeDuration, pepIconTimeTime, pepIconViewCardLg, pepIconViewCardMd, pepIconViewCardSm, pepIconViewLine, pepIconViewMatrix, pepIconViewTable };
|
|
659
665
|
//# sourceMappingURL=pepperi-addons-ngx-lib-icon.js.map
|