@pepperi-addons/ngx-composite-lib 0.0.10-beta.4 → 0.0.10-beta.42

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.
Files changed (114) hide show
  1. package/bundles/pepperi-addons-ngx-composite-lib-color-settings.umd.js +2 -1
  2. package/bundles/pepperi-addons-ngx-composite-lib-color-settings.umd.js.map +1 -1
  3. package/bundles/pepperi-addons-ngx-composite-lib-dimx-export.umd.js +771 -0
  4. package/bundles/pepperi-addons-ngx-composite-lib-dimx-export.umd.js.map +1 -0
  5. package/bundles/pepperi-addons-ngx-composite-lib-file-status-panel.umd.js +119 -0
  6. package/bundles/pepperi-addons-ngx-composite-lib-file-status-panel.umd.js.map +1 -0
  7. package/bundles/pepperi-addons-ngx-composite-lib-generic-list.umd.js +493 -105
  8. package/bundles/pepperi-addons-ngx-composite-lib-generic-list.umd.js.map +1 -1
  9. package/bundles/pepperi-addons-ngx-composite-lib-group-buttons-settings.umd.js +4 -1
  10. package/bundles/pepperi-addons-ngx-composite-lib-group-buttons-settings.umd.js.map +1 -1
  11. package/bundles/pepperi-addons-ngx-composite-lib-shadow-settings.umd.js.map +1 -1
  12. package/bundles/pepperi-addons-ngx-composite-lib.umd.js +586 -51
  13. package/bundles/pepperi-addons-ngx-composite-lib.umd.js.map +1 -1
  14. package/color-settings/package.json +0 -3
  15. package/core/common/directives/index.d.ts +1 -0
  16. package/core/common/directives/public-api.d.ts +1 -0
  17. package/core/common/directives/reset-configuration-field.directive.d.ts +38 -0
  18. package/core/common/index.d.ts +1 -0
  19. package/core/common/public-api.d.ts +2 -0
  20. package/core/common/services/index.d.ts +1 -0
  21. package/core/common/services/public-api.d.ts +1 -0
  22. package/core/common/services/utilities.service.d.ts +6 -0
  23. package/core/index.d.ts +1 -0
  24. package/core/public-api.d.ts +1 -0
  25. package/dimx-export/dimx.component.d.ts +73 -0
  26. package/dimx-export/dimx.model.d.ts +7 -0
  27. package/dimx-export/dimx.module.d.ts +15 -0
  28. package/dimx-export/dimx.service.d.ts +20 -0
  29. package/dimx-export/package.json +16 -0
  30. package/{draggable-item/pepperi-addons-ngx-composite-lib-draggable-item.d.ts → dimx-export/pepperi-addons-ngx-composite-lib-dimx-export.d.ts} +1 -1
  31. package/dimx-export/public-api.d.ts +3 -0
  32. package/esm2015/color-settings/color-settings.component.js +9 -8
  33. package/esm2015/color-settings/color-settings.model.js +1 -1
  34. package/esm2015/core/common/directives/index.js +5 -0
  35. package/esm2015/core/common/directives/public-api.js +5 -0
  36. package/esm2015/core/common/directives/reset-configuration-field.directive.js +153 -0
  37. package/esm2015/core/common/index.js +5 -0
  38. package/esm2015/core/common/public-api.js +6 -0
  39. package/esm2015/core/common/services/index.js +5 -0
  40. package/esm2015/core/common/services/public-api.js +5 -0
  41. package/esm2015/core/common/services/utilities.service.js +19 -0
  42. package/esm2015/core/index.js +5 -0
  43. package/esm2015/core/public-api.js +5 -0
  44. package/esm2015/dimx-export/dimx.component.js +241 -0
  45. package/esm2015/dimx-export/dimx.model.js +8 -0
  46. package/esm2015/dimx-export/dimx.module.js +49 -0
  47. package/esm2015/dimx-export/dimx.service.js +50 -0
  48. package/esm2015/dimx-export/pepperi-addons-ngx-composite-lib-dimx-export.js +5 -0
  49. package/esm2015/dimx-export/public-api.js +7 -0
  50. package/esm2015/file-status-panel/file-status-panel.component.js +34 -0
  51. package/esm2015/file-status-panel/file-status-panel.model.js +8 -0
  52. package/esm2015/file-status-panel/file-status-panel.module.js +40 -0
  53. package/esm2015/file-status-panel/pepperi-addons-ngx-composite-lib-file-status-panel.js +5 -0
  54. package/esm2015/file-status-panel/public-api.js +7 -0
  55. package/esm2015/generic-list/generic-list.component.js +337 -80
  56. package/esm2015/generic-list/generic-list.model.js +1 -1
  57. package/esm2015/generic-list/generic-list.module.js +18 -6
  58. package/esm2015/generic-list/generic-list.service.js +42 -0
  59. package/esm2015/generic-list/public-api.js +2 -1
  60. package/esm2015/group-buttons-settings/group-buttons-settings.component.js +5 -2
  61. package/esm2015/ngx-composite-lib.module.js +28 -9
  62. package/esm2015/public-api.js +2 -1
  63. package/esm2015/shadow-settings/shadow-settings.model.js +1 -1
  64. package/fesm2015/pepperi-addons-ngx-composite-lib-color-settings.js +8 -7
  65. package/fesm2015/pepperi-addons-ngx-composite-lib-color-settings.js.map +1 -1
  66. package/fesm2015/pepperi-addons-ngx-composite-lib-dimx-export.js +350 -0
  67. package/fesm2015/pepperi-addons-ngx-composite-lib-dimx-export.js.map +1 -0
  68. package/fesm2015/pepperi-addons-ngx-composite-lib-file-status-panel.js +90 -0
  69. package/fesm2015/pepperi-addons-ngx-composite-lib-file-status-panel.js.map +1 -0
  70. package/fesm2015/pepperi-addons-ngx-composite-lib-generic-list.js +391 -85
  71. package/fesm2015/pepperi-addons-ngx-composite-lib-generic-list.js.map +1 -1
  72. package/fesm2015/pepperi-addons-ngx-composite-lib-group-buttons-settings.js +4 -1
  73. package/fesm2015/pepperi-addons-ngx-composite-lib-group-buttons-settings.js.map +1 -1
  74. package/fesm2015/pepperi-addons-ngx-composite-lib-shadow-settings.js.map +1 -1
  75. package/fesm2015/pepperi-addons-ngx-composite-lib.js +225 -13
  76. package/fesm2015/pepperi-addons-ngx-composite-lib.js.map +1 -1
  77. package/file-status-panel/file-status-panel.component.d.ts +14 -0
  78. package/file-status-panel/file-status-panel.model.d.ts +6 -0
  79. package/file-status-panel/file-status-panel.module.d.ts +12 -0
  80. package/file-status-panel/package.json +10 -0
  81. package/file-status-panel/pepperi-addons-ngx-composite-lib-file-status-panel.d.ts +5 -0
  82. package/file-status-panel/public-api.d.ts +3 -0
  83. package/generic-list/generic-list.component.d.ts +68 -22
  84. package/generic-list/generic-list.model.d.ts +35 -5
  85. package/generic-list/generic-list.module.d.ts +2 -1
  86. package/generic-list/generic-list.service.d.ts +13 -0
  87. package/generic-list/package.json +0 -1
  88. package/generic-list/public-api.d.ts +1 -0
  89. package/group-buttons-settings/group-buttons-settings.component.d.ts +2 -1
  90. package/group-buttons-settings/package.json +0 -3
  91. package/ngx-composite-lib.module.d.ts +6 -1
  92. package/package.json +2 -2
  93. package/public-api.d.ts +1 -0
  94. package/shadow-settings/package.json +0 -3
  95. package/src/assets/i18n/en.ngx-composite-lib.json +5 -2
  96. package/src/core/style/abstracts/functions.scss +0 -0
  97. package/src/core/style/abstracts/mixins.scss +0 -0
  98. package/src/core/style/abstracts/variables.scss +0 -0
  99. package/src/core/style/base/helpers.scss +0 -0
  100. package/src/core/style/components/general.scss +0 -0
  101. package/styling.scss +11 -0
  102. package/bundles/pepperi-addons-ngx-composite-lib-draggable-item.umd.js +0 -112
  103. package/bundles/pepperi-addons-ngx-composite-lib-draggable-item.umd.js.map +0 -1
  104. package/draggable-item/draggable-item.component.d.ts +0 -11
  105. package/draggable-item/draggable-item.module.d.ts +0 -11
  106. package/draggable-item/package.json +0 -13
  107. package/draggable-item/public-api.d.ts +0 -2
  108. package/esm2015/draggable-item/draggable-item.component.js +0 -40
  109. package/esm2015/draggable-item/draggable-item.module.js +0 -36
  110. package/esm2015/draggable-item/pepperi-addons-ngx-composite-lib-draggable-item.js +0 -5
  111. package/esm2015/draggable-item/public-api.js +0 -6
  112. package/fesm2015/pepperi-addons-ngx-composite-lib-draggable-item.js +0 -84
  113. package/fesm2015/pepperi-addons-ngx-composite-lib-draggable-item.js.map +0 -1
  114. package/styles.scss +0 -38
@@ -1,84 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Component, HostBinding, Input, NgModule } from '@angular/core';
3
- import * as i2 from '@angular/common';
4
- import { CommonModule } from '@angular/common';
5
- import { PepNgxLibModule } from '@pepperi-addons/ngx-lib';
6
- import * as i1 from '@pepperi-addons/ngx-lib/button';
7
- import { PepButtonModule } from '@pepperi-addons/ngx-lib/button';
8
- import { DragDropModule } from '@angular/cdk/drag-drop';
9
-
10
- class DraggableItemComponent {
11
- // private _isDraggable = false;
12
- // @Input()
13
- // set isDraggable(value: boolean) {
14
- // this._isDraggable = value;
15
- // this._cursor = value ? 'move' : 'inherit'
16
- // }
17
- // get isDraggable(): boolean {
18
- // return this._isDraggable;
19
- // }
20
- constructor() {
21
- this._cursor = 'move';
22
- this.title = '';
23
- this.disabled = false;
24
- }
25
- ngOnInit() {
26
- }
27
- }
28
- DraggableItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.0.5", ngImport: i0, type: DraggableItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
29
- DraggableItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.0.5", type: DraggableItemComponent, selector: "pep-draggable-item", inputs: { title: "title", disabled: "disabled" }, host: { properties: { "style.cursor": "this._cursor" } }, ngImport: i0, template: "<div class=\"draggable-item-container\" [ngClass]=\"{ 'disabled': disabled }\">\n <div class=\"\">\n <pep-button classNames=\"lock-events\" sizeType=\"xs\" iconName=\"system_move\"></pep-button>\n </div>\n <div *ngIf=\"title !== ''\" class=\"title-container\">\n <span class=\"body-sm bold ellipsis title\" title=\"{{title}}\">{{title}}</span>\n </div>\n <div class=\"actions\">\n <ng-content select=\"[pep-actions]\"></ng-content>\n </div>\n</div>", styles: [":host{display:block;cursor:grab}.draggable-item-container{height:2.5rem;width:100%;display:grid;grid-template-columns:auto 1fr auto;align-items:center;border-radius:var(--pep-border-radius-md, .25rem);padding-inline:var(--pep-spacing-sm, .5rem);background:hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),98%);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);border:1px solid hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),calc(var(--pep-color-regular-l, 10%) + 30%))}.title-container{overflow-x:hidden;margin-inline:var(--pep-spacing-sm, .5rem)}.title-container .title{display:block}.actions{display:inline-flex;grid-gap:var(--pep-spacing-xs, .25rem);gap:var(--pep-spacing-xs, .25rem)}\n"], components: [{ type: i1.PepButtonComponent, selector: "pep-button", inputs: ["styleType", "styleStateType", "sizeType", "classNames", "disabled", "iconPosition", "visible", "key", "value", "iconName"], outputs: ["buttonClick"] }], directives: [{ type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.0.5", ngImport: i0, type: DraggableItemComponent, decorators: [{
31
- type: Component,
32
- args: [{
33
- selector: 'pep-draggable-item',
34
- templateUrl: './draggable-item.component.html',
35
- styleUrls: ['./draggable-item.component.scss']
36
- }]
37
- }], ctorParameters: function () { return []; }, propDecorators: { _cursor: [{
38
- type: HostBinding,
39
- args: ['style.cursor']
40
- }], title: [{
41
- type: Input
42
- }], disabled: [{
43
- type: Input
44
- }] } });
45
-
46
- class DraggableItemModule {
47
- }
48
- DraggableItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.0.5", ngImport: i0, type: DraggableItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
49
- DraggableItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.0.5", ngImport: i0, type: DraggableItemModule, declarations: [DraggableItemComponent], imports: [CommonModule,
50
- PepNgxLibModule,
51
- PepButtonModule,
52
- DragDropModule], exports: [DraggableItemComponent] });
53
- DraggableItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.0.5", ngImport: i0, type: DraggableItemModule, imports: [[
54
- CommonModule,
55
- PepNgxLibModule,
56
- PepButtonModule,
57
- DragDropModule
58
- ]] });
59
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.0.5", ngImport: i0, type: DraggableItemModule, decorators: [{
60
- type: NgModule,
61
- args: [{
62
- declarations: [
63
- DraggableItemComponent
64
- ],
65
- imports: [
66
- CommonModule,
67
- PepNgxLibModule,
68
- PepButtonModule,
69
- DragDropModule
70
- ],
71
- exports: [DraggableItemComponent],
72
- }]
73
- }] });
74
-
75
- /*
76
- * Public API Surface of ngx-composite-lib/draggable-item
77
- */
78
-
79
- /**
80
- * Generated bundle index. Do not edit.
81
- */
82
-
83
- export { DraggableItemComponent, DraggableItemModule };
84
- //# sourceMappingURL=pepperi-addons-ngx-composite-lib-draggable-item.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"pepperi-addons-ngx-composite-lib-draggable-item.js","sources":["../../../projects/ngx-composite-lib/draggable-item/draggable-item.component.ts","../../../projects/ngx-composite-lib/draggable-item/draggable-item.component.html","../../../projects/ngx-composite-lib/draggable-item/draggable-item.module.ts","../../../projects/ngx-composite-lib/draggable-item/public-api.ts","../../../projects/ngx-composite-lib/draggable-item/pepperi-addons-ngx-composite-lib-draggable-item.ts"],"sourcesContent":["import { Component, EventEmitter, HostBinding, Input, OnInit, Output } from '@angular/core';\n\n@Component({\n selector: 'pep-draggable-item',\n templateUrl: './draggable-item.component.html',\n styleUrls: ['./draggable-item.component.scss']\n})\nexport class DraggableItemComponent implements OnInit {\n\n @HostBinding('style.cursor') _cursor = 'move';\n\n @Input() title = '';\n \n @Input() disabled = false;\n\n // private _isDraggable = false;\n // @Input()\n // set isDraggable(value: boolean) {\n // this._isDraggable = value;\n\n // this._cursor = value ? 'move' : 'inherit'\n // }\n // get isDraggable(): boolean {\n // return this._isDraggable;\n // }\n\n constructor() { }\n\n ngOnInit(): void {\n }\n}\n","<div class=\"draggable-item-container\" [ngClass]=\"{ 'disabled': disabled }\">\n <div class=\"\">\n <pep-button classNames=\"lock-events\" sizeType=\"xs\" iconName=\"system_move\"></pep-button>\n </div>\n <div *ngIf=\"title !== ''\" class=\"title-container\">\n <span class=\"body-sm bold ellipsis title\" title=\"{{title}}\">{{title}}</span>\n </div>\n <div class=\"actions\">\n <ng-content select=\"[pep-actions]\"></ng-content>\n </div>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PepNgxLibModule } from '@pepperi-addons/ngx-lib';\nimport { PepButtonModule } from '@pepperi-addons/ngx-lib/button';\n\nimport { DragDropModule } from '@angular/cdk/drag-drop';\n\nimport { DraggableItemComponent } from './draggable-item.component';\n\n@NgModule({\n declarations: [\n DraggableItemComponent\n ],\n imports: [\n CommonModule,\n PepNgxLibModule,\n PepButtonModule,\n DragDropModule\n ],\n exports: [DraggableItemComponent],\n})\nexport class DraggableItemModule { }\n","/*\n * Public API Surface of ngx-composite-lib/draggable-item\n */\nexport * from './draggable-item.module';\nexport * from './draggable-item.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;MAOa,sBAAsB;;;;;;;;;;IAmB/B;QAjB6B,YAAO,GAAG,MAAM,CAAC;QAErC,UAAK,GAAG,EAAE,CAAC;QAEX,aAAQ,GAAG,KAAK,CAAC;KAaT;IAEjB,QAAQ;KACP;;mHAtBQ,sBAAsB;uGAAtB,sBAAsB,sKCPnC,yeAUM;2FDHO,sBAAsB;kBALlC,SAAS;mBAAC;oBACP,QAAQ,EAAE,oBAAoB;oBAC9B,WAAW,EAAE,iCAAiC;oBAC9C,SAAS,EAAE,CAAC,iCAAiC,CAAC;iBACjD;0EAGgC,OAAO;sBAAnC,WAAW;uBAAC,cAAc;gBAElB,KAAK;sBAAb,KAAK;gBAEG,QAAQ;sBAAhB,KAAK;;;MEQG,mBAAmB;;gHAAnB,mBAAmB;iHAAnB,mBAAmB,iBAVxB,sBAAsB,aAGtB,YAAY;QACZ,eAAe;QACf,eAAe;QACf,cAAc,aAER,sBAAsB;iHAEvB,mBAAmB,YARnB;YACL,YAAY;YACZ,eAAe;YACf,eAAe;YACf,cAAc;SACjB;2FAGQ,mBAAmB;kBAZ/B,QAAQ;mBAAC;oBACN,YAAY,EAAE;wBACV,sBAAsB;qBACzB;oBACD,OAAO,EAAE;wBACL,YAAY;wBACZ,eAAe;wBACf,eAAe;wBACf,cAAc;qBACjB;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;iBACpC;;;ACpBD;;;;ACAA;;;;;;"}
package/styles.scss DELETED
@@ -1,38 +0,0 @@
1
-
2
- .checkbox-as-title {
3
- margin-bottom: 0.5rem !important;
4
- min-height: unset !important;
5
-
6
- .pep-checkbox-container {
7
- background: unset !important;
8
- padding-left: unset !important;
9
- padding-right: unset !important;
10
-
11
- .mat-checkbox-inner-container {
12
- margin-left: 0 !important;
13
- margin-right: 0 !important;
14
- }
15
-
16
- .mat-checkbox-layout {
17
- @include font-body($fs-xl, $lh-xl);
18
- font-weight: $font-weight-bold !important;
19
-
20
- .mat-checkbox-label span {
21
- margin: 0 0.5rem;
22
- }
23
- }
24
- }
25
-
26
- // &.sub-title {
27
- // .pep-checkbox-container {
28
- // .mat-checkbox-layout {
29
- // @include font-body($fs-xl, $lh-xl);
30
- // font-weight: $font-weight-bold !important;
31
-
32
- // .mat-checkbox-label span {
33
- // margin: 0 0.5rem;
34
- // }
35
- // }
36
- // }
37
- // }
38
- }