otimus-library 0.2.77 → 0.2.80
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/README.md +26 -26
- package/esm2022/lib/components/oc-accordion/oc-accordion.component.mjs +3 -3
- package/esm2022/lib/components/oc-accordion-item/oc-accordion-item.component.mjs +3 -3
- package/esm2022/lib/components/oc-autocomplete/oc-autocomplete.component.mjs +3 -3
- package/esm2022/lib/components/oc-badge/oc-badge.component.mjs +3 -3
- package/esm2022/lib/components/oc-button-menu/oc-button-menu.component.mjs +42 -0
- package/esm2022/lib/components/oc-checkbox/oc-checkbox.component.mjs +3 -3
- package/esm2022/lib/components/oc-chip/oc-chip.component.mjs +3 -3
- package/esm2022/lib/components/oc-date-select/data/months.json +44 -0
- package/esm2022/lib/components/oc-date-select/oc-date-select.component.mjs +97 -0
- package/esm2022/lib/components/oc-filter/oc-filter.component.mjs +3 -3
- package/esm2022/lib/components/oc-input/oc-input.component.mjs +3 -3
- package/esm2022/lib/components/oc-key-value/oc-key-value.component.mjs +3 -3
- package/esm2022/lib/components/oc-log/oc-log.component.mjs +3 -3
- package/esm2022/lib/components/oc-menu/oc-menu.component.mjs +3 -3
- package/esm2022/lib/components/oc-message/oc-message.component.mjs +3 -3
- package/esm2022/lib/components/oc-modal/oc-modal.component.mjs +3 -3
- package/esm2022/lib/components/oc-modal-footer/oc-modal-footer.component.mjs +3 -3
- package/esm2022/lib/components/oc-not-found/oc-not-found.component.mjs +3 -3
- package/esm2022/lib/components/oc-pagination/oc-pagination.component.mjs +3 -3
- package/esm2022/lib/components/oc-profile/oc-profile.component.mjs +3 -3
- package/esm2022/lib/components/oc-step/oc-step.component.mjs +3 -3
- package/esm2022/lib/components/oc-stepper/oc-stepper.component.mjs +3 -3
- package/esm2022/lib/components/oc-tab/oc-tab.component.mjs +3 -3
- package/esm2022/lib/components/oc-tabs/oc-tabs.component.mjs +3 -3
- package/esm2022/lib/components/oc-toast/oc-toast.component.mjs +3 -3
- package/esm2022/lib/components/oc-toggle/oc-toggle.component.mjs +3 -3
- package/esm2022/lib/directives/oc-tooltip/oc-tooltip.directive.mjs +1 -1
- package/esm2022/lib/interfaces/oc-autocomplete.mjs +1 -1
- package/esm2022/lib/interfaces/oc-menu.mjs +1 -1
- package/esm2022/lib/interfaces/oc-style-theme.mjs +1 -1
- package/esm2022/lib/interfaces/oc-toast.mjs +1 -1
- package/esm2022/lib/otimus-library.component.mjs +9 -9
- package/esm2022/lib/otimus-library.service.mjs +1 -1
- package/esm2022/lib/services/internationalization.service.mjs +1 -1
- package/esm2022/lib/services/oc-toast.service.mjs +1 -1
- package/esm2022/lib/services/style-theme.service.mjs +1 -1
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/otimus-library.mjs +234 -55
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/lib/components/oc-button-menu/oc-button-menu.component.d.ts +13 -0
- package/lib/components/oc-date-select/oc-date-select.component.d.ts +23 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/styles/colors.scss +70 -70
- package/styles/components/buttons/buttons.scss +225 -225
- package/styles/components/buttons/buttons.shui.scss +61 -61
- package/styles/components/index.scss +2 -2
- package/styles/components/inputs/inputs.scss +248 -248
- package/styles/components/inputs/inputs.shui.scss +212 -212
- package/styles/components/table/table.scss +98 -98
- package/styles/components/table/table.shui.scss +50 -50
- package/styles/components/tooltip.scss +26 -26
- package/styles/grid.scss +1122 -1122
- package/styles/patterns/shui/colors.shui.scss +154 -154
- package/styles/patterns/shui/fonts.shui.scss +65 -65
- package/styles/patterns/shui/index.shui.scss +24 -24
- package/styles/patterns/shui/variables.shui.scss +23 -23
- package/styles/states.scss +5 -5
- package/styles/styles.scss +46 -46
- package/styles/variables.scss +47 -47
|
@@ -8,11 +8,11 @@ export class OcModalFooterComponent {
|
|
|
8
8
|
this.ocFixed = true;
|
|
9
9
|
}
|
|
10
10
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: OcModalFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: OcModalFooterComponent, isStandalone: true, selector: "oc-modal-footer", inputs: { ocSide: "ocSide", ocBgColor: "ocBgColor", ocFixed: "ocFixed" }, ngImport: i0, template: "<footer class=\"oc-modal-footer\" [ngClass]=\"{\n 'left': ocSide === 'left',\n 'right': ocSide === 'right',\n 'fixed': ocFixed\n}\"\n [ngStyle]=\"{\n 'background-color': ocBgColor\n }\"\n>\n <ng-content></ng-content>\n</footer>", styles: [".oc-modal-footer{display:flex;align-items:center;gap:1rem;width:100%;margin-top:1.5rem;padding-bottom:2px}.left{justify-content:flex-start}.right{justify-content:flex-end}.fixed{position:sticky;bottom:0;background-color:#f8f9ff}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
11
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: OcModalFooterComponent, isStandalone: true, selector: "oc-modal-footer", inputs: { ocSide: "ocSide", ocBgColor: "ocBgColor", ocFixed: "ocFixed" }, ngImport: i0, template: "<footer class=\"oc-modal-footer\" [ngClass]=\"{\r\n 'left': ocSide === 'left',\r\n 'right': ocSide === 'right',\r\n 'fixed': ocFixed\r\n}\"\r\n [ngStyle]=\"{\r\n 'background-color': ocBgColor\r\n }\"\r\n>\r\n <ng-content></ng-content>\r\n</footer>", styles: [".oc-modal-footer{display:flex;align-items:center;gap:1rem;width:100%;margin-top:1.5rem;padding-bottom:2px}.left{justify-content:flex-start}.right{justify-content:flex-end}.fixed{position:sticky;bottom:0;background-color:#f8f9ff}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
12
12
|
}
|
|
13
13
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: OcModalFooterComponent, decorators: [{
|
|
14
14
|
type: Component,
|
|
15
|
-
args: [{ selector: 'oc-modal-footer', standalone: true, imports: [CommonModule], template: "<footer class=\"oc-modal-footer\" [ngClass]=\"{\n 'left': ocSide === 'left',\n 'right': ocSide === 'right',\n 'fixed': ocFixed\n}\"\n [ngStyle]=\"{\n 'background-color': ocBgColor\n }\"\n>\n <ng-content></ng-content>\n</footer>", styles: [".oc-modal-footer{display:flex;align-items:center;gap:1rem;width:100%;margin-top:1.5rem;padding-bottom:2px}.left{justify-content:flex-start}.right{justify-content:flex-end}.fixed{position:sticky;bottom:0;background-color:#f8f9ff}\n"] }]
|
|
15
|
+
args: [{ selector: 'oc-modal-footer', standalone: true, imports: [CommonModule], template: "<footer class=\"oc-modal-footer\" [ngClass]=\"{\r\n 'left': ocSide === 'left',\r\n 'right': ocSide === 'right',\r\n 'fixed': ocFixed\r\n}\"\r\n [ngStyle]=\"{\r\n 'background-color': ocBgColor\r\n }\"\r\n>\r\n <ng-content></ng-content>\r\n</footer>", styles: [".oc-modal-footer{display:flex;align-items:center;gap:1rem;width:100%;margin-top:1.5rem;padding-bottom:2px}.left{justify-content:flex-start}.right{justify-content:flex-end}.fixed{position:sticky;bottom:0;background-color:#f8f9ff}\n"] }]
|
|
16
16
|
}], propDecorators: { ocSide: [{
|
|
17
17
|
type: Input
|
|
18
18
|
}], ocBgColor: [{
|
|
@@ -20,4 +20,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImpo
|
|
|
20
20
|
}], ocFixed: [{
|
|
21
21
|
type: Input
|
|
22
22
|
}] } });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2MtbW9kYWwtZm9vdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL290aW11cy1saWJyYXJ5L3NyYy9saWIvY29tcG9uZW50cy9vYy1tb2RhbC1mb290ZXIvb2MtbW9kYWwtZm9vdGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL290aW11cy1saWJyYXJ5L3NyYy9saWIvY29tcG9uZW50cy9vYy1tb2RhbC1mb290ZXIvb2MtbW9kYWwtZm9vdGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTs7O0FBU2hELE1BQU0sT0FBTyxzQkFBc0I7SUFQbkM7UUFRVyxXQUFNLEdBQXFCLE9BQU8sQ0FBQTtRQUVsQyxZQUFPLEdBQVksSUFBSSxDQUFBO0tBQ2pDOytHQUpZLHNCQUFzQjttR0FBdEIsc0JBQXNCLHFKQ1ZuQyxrUUFVUywrUkRKRyxZQUFZOzs0RkFJWCxzQkFBc0I7a0JBUGxDLFNBQVM7K0JBQ0UsaUJBQWlCLGNBQ2YsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDOzhCQUtkLE1BQU07c0JBQWQsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbidcclxuaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ29jLW1vZGFsLWZvb3RlcicsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vb2MtbW9kYWwtZm9vdGVyLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vb2MtbW9kYWwtZm9vdGVyLmNvbXBvbmVudC5zY3NzJyxcclxufSlcclxuZXhwb3J0IGNsYXNzIE9jTW9kYWxGb290ZXJDb21wb25lbnQge1xyXG4gIEBJbnB1dCgpIG9jU2lkZTogJ2xlZnQnIHwgJ3JpZ2h0JyA9ICdyaWdodCdcclxuICBASW5wdXQoKSBvY0JnQ29sb3I/OiBzdHJpbmdcclxuICBASW5wdXQoKSBvY0ZpeGVkOiBib29sZWFuID0gdHJ1ZVxyXG59XHJcbiIsIjxmb290ZXIgY2xhc3M9XCJvYy1tb2RhbC1mb290ZXJcIiBbbmdDbGFzc109XCJ7XHJcbiAgJ2xlZnQnOiBvY1NpZGUgPT09ICdsZWZ0JyxcclxuICAncmlnaHQnOiBvY1NpZGUgPT09ICdyaWdodCcsXHJcbiAgJ2ZpeGVkJzogb2NGaXhlZFxyXG59XCJcclxuICBbbmdTdHlsZV09XCJ7XHJcbiAgICAnYmFja2dyb3VuZC1jb2xvcic6IG9jQmdDb2xvclxyXG4gIH1cIlxyXG4+XHJcbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxyXG48L2Zvb3Rlcj4iXX0=
|