otimus-library 0.1.31 → 0.1.33
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/esm2022/lib/components/oc-key-value/oc-key-value.component.mjs +2 -2
- package/esm2022/lib/components/oc-modal/oc-modal.component.mjs +20 -4
- package/esm2022/lib/components/oc-step/oc-step.component.mjs +7 -3
- package/esm2022/lib/components/oc-stepper/oc-stepper.component.mjs +37 -10
- package/esm2022/lib/components/oc-tab/oc-tab.component.mjs +20 -0
- package/esm2022/lib/components/oc-tabs/oc-tabs.component.mjs +30 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/otimus-library.mjs +106 -16
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/lib/components/oc-modal/oc-modal.component.d.ts +6 -1
- package/lib/components/oc-step/oc-step.component.d.ts +3 -2
- package/lib/components/oc-stepper/oc-stepper.component.d.ts +7 -4
- package/lib/components/oc-tab/oc-tab.component.d.ts +8 -0
- package/lib/components/oc-tabs/oc-tabs.component.d.ts +11 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -6,11 +6,11 @@ export class OcKeyValueComponent {
|
|
|
6
6
|
this.ocValue = '';
|
|
7
7
|
}
|
|
8
8
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: OcKeyValueComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: OcKeyValueComponent, isStandalone: true, selector: "oc-key-value", inputs: { ocKey: "ocKey", ocValue: "ocValue" }, ngImport: i0, template: "<div class=\"oc-key-value\">\r\n <!-- \u00CDcone -->\r\n <ng-content></ng-content>\r\n <p>\r\n @if (ocKey) {\r\n <span>{{ocKey}}:</span>\r\n }\r\n {{ocValue}}\r\n </p>\r\n</div>", styles: [".oc-key-value{display:flex;align-items:center;gap:.
|
|
9
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: OcKeyValueComponent, isStandalone: true, selector: "oc-key-value", inputs: { ocKey: "ocKey", ocValue: "ocValue" }, ngImport: i0, template: "<div class=\"oc-key-value\">\r\n <!-- \u00CDcone -->\r\n <ng-content></ng-content>\r\n <p>\r\n @if (ocKey) {\r\n <span>{{ocKey}}:</span>\r\n }\r\n {{ocValue}}\r\n </p>\r\n</div>", styles: [".oc-key-value{display:flex;align-items:center;gap:.1rem;font-size:1rem}.oc-key-value p{color:#7e8485;font-weight:500}.oc-key-value span{color:#5505a2;font-weight:500}.oc-key-value .material-symbols-outlined{color:#5505a2;font-size:.95rem}\n"], encapsulation: i0.ViewEncapsulation.None }); }
|
|
10
10
|
}
|
|
11
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: OcKeyValueComponent, decorators: [{
|
|
12
12
|
type: Component,
|
|
13
|
-
args: [{ selector: 'oc-key-value', standalone: true, imports: [], encapsulation: ViewEncapsulation.None, template: "<div class=\"oc-key-value\">\r\n <!-- \u00CDcone -->\r\n <ng-content></ng-content>\r\n <p>\r\n @if (ocKey) {\r\n <span>{{ocKey}}:</span>\r\n }\r\n {{ocValue}}\r\n </p>\r\n</div>", styles: [".oc-key-value{display:flex;align-items:center;gap:.
|
|
13
|
+
args: [{ selector: 'oc-key-value', standalone: true, imports: [], encapsulation: ViewEncapsulation.None, template: "<div class=\"oc-key-value\">\r\n <!-- \u00CDcone -->\r\n <ng-content></ng-content>\r\n <p>\r\n @if (ocKey) {\r\n <span>{{ocKey}}:</span>\r\n }\r\n {{ocValue}}\r\n </p>\r\n</div>", styles: [".oc-key-value{display:flex;align-items:center;gap:.1rem;font-size:1rem}.oc-key-value p{color:#7e8485;font-weight:500}.oc-key-value span{color:#5505a2;font-weight:500}.oc-key-value .material-symbols-outlined{color:#5505a2;font-size:.95rem}\n"] }]
|
|
14
14
|
}], propDecorators: { ocKey: [{
|
|
15
15
|
type: Input
|
|
16
16
|
}], ocValue: [{
|