ngx-dsxlibrary 2.21.49 → 2.21.50
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/fesm2022/ngx-dsxlibrary-src-lib-components.mjs +12 -1
- package/fesm2022/ngx-dsxlibrary-src-lib-components.mjs.map +1 -1
- package/fesm2022/ngx-dsxlibrary-src-lib-primengdsx.mjs +2 -2
- package/fesm2022/ngx-dsxlibrary-src-lib-primengdsx.mjs.map +1 -1
- package/fesm2022/ngx-dsxlibrary.mjs +14 -3
- package/fesm2022/ngx-dsxlibrary.mjs.map +1 -1
- package/ngx-dsxlibrary-2.21.50.tgz +0 -0
- package/package.json +1 -1
- package/src/assets/css/fonts.css +52 -2
- package/src/assets/css/primeng_dsx_fieldset.css +41 -24
- package/types/ngx-dsxlibrary-src-lib-components.d.ts +8 -1
- package/types/ngx-dsxlibrary.d.ts +8 -1
- package/ngx-dsxlibrary-2.21.49.tgz +0 -0
|
@@ -850,6 +850,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImpo
|
|
|
850
850
|
type: Output
|
|
851
851
|
}] } });
|
|
852
852
|
|
|
853
|
+
class IcoLabel {
|
|
854
|
+
ico = input.required(...(ngDevMode ? [{ debugName: "ico" }] : /* istanbul ignore next */ []));
|
|
855
|
+
label = input.required(...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
856
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.13", ngImport: i0, type: IcoLabel, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
857
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.13", type: IcoLabel, isStandalone: true, selector: "dsx-ico-label", inputs: { ico: { classPropertyName: "ico", publicName: "ico", isSignal: true, isRequired: true, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<div class=\"flex\">\r\n <span class=\"material-symbols-outlined text-sm\">{{ ico() }}</span>\r\n <span class=\"myLabel\">{{ label() }}</span>\r\n</div>\r\n", styles: [".myLabel{font-family:Dosis,sans-serif}.material-symbols-outlined{font-size:1.3em;color:#696666}\n"] });
|
|
858
|
+
}
|
|
859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImport: i0, type: IcoLabel, decorators: [{
|
|
860
|
+
type: Component,
|
|
861
|
+
args: [{ selector: 'dsx-ico-label', imports: [], template: "<div class=\"flex\">\r\n <span class=\"material-symbols-outlined text-sm\">{{ ico() }}</span>\r\n <span class=\"myLabel\">{{ label() }}</span>\r\n</div>\r\n", styles: [".myLabel{font-family:Dosis,sans-serif}.material-symbols-outlined{font-size:1.3em;color:#696666}\n"] }]
|
|
862
|
+
}], propDecorators: { ico: [{ type: i0.Input, args: [{ isSignal: true, alias: "ico", required: true }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: true }] }] } });
|
|
863
|
+
|
|
853
864
|
class DateIndicator {
|
|
854
865
|
date = input('', ...(ngDevMode ? [{ debugName: "date" }] : /* istanbul ignore next */ []));
|
|
855
866
|
minDays = input(1, ...(ngDevMode ? [{ debugName: "minDays" }] : /* istanbul ignore next */ []));
|
|
@@ -1245,5 +1256,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImpo
|
|
|
1245
1256
|
* Generated bundle index. Do not edit.
|
|
1246
1257
|
*/
|
|
1247
1258
|
|
|
1248
|
-
export { AppMessageErrorComponent, AppMessageHelpComponent, DateIndicator, DocxPreviewComponent, DsxEnableDisable, DsxStatusToggle, FileComponent, JsonViewerComponent, KpicardComponent, PdfPreviewComponent, TemplateHighlight };
|
|
1259
|
+
export { AppMessageErrorComponent, AppMessageHelpComponent, DateIndicator, DocxPreviewComponent, DsxEnableDisable, DsxStatusToggle, FileComponent, IcoLabel, JsonViewerComponent, KpicardComponent, PdfPreviewComponent, TemplateHighlight };
|
|
1249
1260
|
//# sourceMappingURL=ngx-dsxlibrary-src-lib-components.mjs.map
|