@colijnit/corecomponents_v12 12.2.13 → 12.2.15
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/colijnit-corecomponents_v12.umd.js +742 -260
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.d.ts +9 -5
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/colijnit-corecomponents_v12.js +10 -6
- package/esm2015/lib/components/base/dialog-base.component.js +6 -0
- package/esm2015/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.js +79 -0
- package/esm2015/lib/components/core-dialog/core-dialog.module.js +39 -0
- package/esm2015/lib/components/core-dialog/core-dialog.service.js +67 -0
- package/esm2015/lib/components/core-dialog/core-dynamic-component.service.js +93 -0
- package/esm2015/lib/components/input-scanner/bar-code-scanner.js +23 -0
- package/esm2015/lib/components/input-scanner/input-scanner.component.js +69 -0
- package/esm2015/lib/components/input-scanner/input-scanner.module.js +21 -0
- package/esm2015/lib/components/input-scanner/scanner.service.js +28 -0
- package/esm2015/lib/components/input-search/input-search.component.js +2 -1
- package/esm2015/lib/components/input-text/input-text.component.js +2 -1
- package/esm2015/lib/components/loader/loader.component.js +84 -0
- package/esm2015/lib/components/loader/loader.module.js +19 -0
- package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +37 -27
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +55 -35
- package/esm2015/lib/components/simple-grid/simple-grid.module.js +4 -2
- package/esm2015/lib/core/enum/core-components-icon.enum.js +2 -1
- package/esm2015/lib/core/model/core-components-icon-svg.js +2 -1
- package/esm2015/lib/interfaces/dialog-response.interface.js +2 -0
- package/esm2015/lib/interfaces/scanner-input.interface.js +2 -0
- package/esm2015/lib/model/enum/app-button-type.enum.js +11 -0
- package/esm2015/lib/model/enum/app-popup-type.enum.js +8 -0
- package/esm2015/public-api.js +18 -11
- package/fesm2015/colijnit-corecomponents_v12.js +814 -270
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/dialog-base.component.d.ts +4 -0
- package/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +20 -0
- package/lib/components/core-dialog/confirmation-dialog/style/_layout.scss +30 -0
- package/lib/components/core-dialog/confirmation-dialog/style/_material-definition.scss +2 -0
- package/lib/components/core-dialog/confirmation-dialog/style/_theme.scss +6 -0
- package/lib/components/core-dialog/confirmation-dialog/style/material.scss +4 -0
- package/lib/components/core-dialog/core-dialog.module.d.ts +4 -0
- package/lib/components/core-dialog/core-dialog.service.d.ts +15 -0
- package/lib/components/core-dialog/core-dynamic-component.service.d.ts +12 -0
- package/lib/components/core-dialog/style/_layout.scss +6 -0
- package/lib/components/core-dialog/style/_material-definition.scss +0 -0
- package/lib/components/core-dialog/style/_theme.scss +6 -0
- package/lib/components/core-dialog/style/material.scss +4 -0
- package/lib/components/input-scanner/bar-code-scanner.d.ts +7 -0
- package/lib/components/input-scanner/input-scanner.component.d.ts +23 -0
- package/lib/components/input-scanner/input-scanner.module.d.ts +2 -0
- package/lib/components/input-scanner/scanner.service.d.ts +11 -0
- package/lib/components/input-scanner/style/_layout.scss +4 -0
- package/lib/components/input-scanner/style/_material-definition.scss +0 -0
- package/lib/components/input-scanner/style/_theme.scss +4 -0
- package/lib/components/input-scanner/style/material.scss +4 -0
- package/lib/components/loader/loader.component.d.ts +3 -0
- package/lib/components/loader/loader.module.d.ts +2 -0
- package/lib/components/loader/style/_layout.scss +65 -0
- package/lib/components/loader/style/_material-definition.scss +7 -0
- package/lib/components/loader/style/_theme.scss +4 -0
- package/lib/components/loader/style/material.scss +4 -0
- package/lib/components/simple-grid/simple-grid-cell.component.d.ts +4 -2
- package/lib/components/simple-grid/simple-grid.component.d.ts +5 -3
- package/lib/components/simple-grid/style/_layout.scss +30 -4
- package/lib/components/simple-grid/style/_material-definition.scss +9 -2
- package/lib/components/simple-grid/style/_theme.scss +3 -0
- package/lib/core/enum/core-components-icon.enum.d.ts +1 -0
- package/lib/interfaces/dialog-response.interface.d.ts +6 -0
- package/lib/interfaces/scanner-input.interface.d.ts +3 -0
- package/lib/model/enum/app-button-type.enum.d.ts +9 -0
- package/lib/model/enum/app-popup-type.enum.d.ts +6 -0
- package/package.json +1 -1
- package/public-api.d.ts +17 -10
|
@@ -5,16 +5,20 @@ export * from './public-api';
|
|
|
5
5
|
export { BaseModule as ɵj } from './lib/components/base/base.module';
|
|
6
6
|
export { CommitButtonsComponent as ɵt } from './lib/components/base/commit-buttons/commit-buttons.component';
|
|
7
7
|
export { CommitButtonsModule as ɵs } from './lib/components/base/commit-buttons/commit-buttons.module';
|
|
8
|
+
export { DialogBaseComponent as ɵbf } from './lib/components/base/dialog-base.component';
|
|
8
9
|
export { CalendarTemplateComponent as ɵw } from './lib/components/calendar/calendar-template.component';
|
|
9
10
|
export { CheckmarkOverlayComponent as ɵbj } from './lib/components/checkmark-overlay/checkmark-overlay.component';
|
|
11
|
+
export { ConfirmationDialogComponent as ɵbe } from './lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component';
|
|
12
|
+
export { CoreDynamicComponentService as ɵbg } from './lib/components/core-dialog/core-dynamic-component.service';
|
|
13
|
+
export { ScannerService as ɵbk } from './lib/components/input-scanner/scanner.service';
|
|
10
14
|
export { ListOfValuesMultiselectPopupComponent as ɵbd } from './lib/components/list-of-values/list-of-values-multiselect-popup.component';
|
|
11
15
|
export { PaginatePipe as ɵbb } from './lib/components/pagination/paginate.pipe';
|
|
12
16
|
export { PaginationService as ɵba } from './lib/components/pagination/pagination.service';
|
|
13
17
|
export { PopupShowerService as ɵx } from './lib/components/popup/service/popup-shower.service';
|
|
14
18
|
export { BaseSimpleGridComponent as ɵy } from './lib/components/simple-grid/base-simple-grid.component';
|
|
15
19
|
export { SimpleGridCellComponent as ɵbc } from './lib/components/simple-grid/simple-grid-cell.component';
|
|
16
|
-
export { TooltipComponent as
|
|
17
|
-
export { TooltipModule as
|
|
20
|
+
export { TooltipComponent as ɵbm } from './lib/components/tooltip/tooltip.component';
|
|
21
|
+
export { TooltipModule as ɵbl } from './lib/components/tooltip/tooltip.module';
|
|
18
22
|
export { ValidationErrorComponent as ɵr } from './lib/components/validation-error/validation-error.component';
|
|
19
23
|
export { ValidationErrorModule as ɵm } from './lib/components/validation-error/validation-error.module';
|
|
20
24
|
export { InputBoolean as ɵa } from './lib/core/decorator/input-boolean.decorator';
|
|
@@ -30,10 +34,10 @@ export { CoScrollableDirective as ɵg } from './lib/directives/ripple/scrollable
|
|
|
30
34
|
export { CoViewportRulerService as ɵe } from './lib/directives/ripple/viewport-ruler.service';
|
|
31
35
|
export { StopClickDirective as ɵi } from './lib/directives/stopclick/stop-click.directive';
|
|
32
36
|
export { StopClickModule as ɵh } from './lib/directives/stopclick/stop-click.module';
|
|
33
|
-
export { TooltipDirective as
|
|
37
|
+
export { TooltipDirective as ɵbn } from './lib/directives/tooltip/tooltip.directive';
|
|
34
38
|
export { AppendPipe as ɵl } from './lib/pipes/append.pipe';
|
|
35
39
|
export { AppendPipeModule as ɵk } from './lib/pipes/append.pipe.module';
|
|
36
|
-
export { PrependPipe as
|
|
37
|
-
export { PrependPipeModule as
|
|
40
|
+
export { PrependPipe as ɵbi } from './lib/pipes/prepend.pipe';
|
|
41
|
+
export { PrependPipeModule as ɵbh } from './lib/pipes/prepend.pipe.module';
|
|
38
42
|
export { CoreDictionaryService as ɵq } from './lib/translation/core-dictionary.service';
|
|
39
43
|
export { CoreLocalizePipe as ɵp } from './lib/translation/core-localize.pipe';
|