otimus-library 0.3.74 → 0.4.76
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/index.d.ts
CHANGED
|
@@ -432,6 +432,7 @@ declare class OcChipComponent {
|
|
|
432
432
|
ocType: 'select' | 'remove' | 'tag' | 'select_remove';
|
|
433
433
|
ocBg: 'green' | 'red' | 'yellow' | 'default';
|
|
434
434
|
ocBgHexColor?: string;
|
|
435
|
+
ocTextHexColor?: string;
|
|
435
436
|
ocText: string;
|
|
436
437
|
ocFontSize: string;
|
|
437
438
|
ocClick: EventEmitter<any>;
|
|
@@ -440,7 +441,7 @@ declare class OcChipComponent {
|
|
|
440
441
|
ocEvent(event: any): void;
|
|
441
442
|
ocRemoveEvent(event: any): void;
|
|
442
443
|
static ɵfac: i0.ɵɵFactoryDeclaration<OcChipComponent, never>;
|
|
443
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OcChipComponent, "oc-chip", never, { "ocSelected": { "alias": "ocSelected"; "required": false; }; "ocType": { "alias": "ocType"; "required": false; }; "ocBg": { "alias": "ocBg"; "required": false; }; "ocBgHexColor": { "alias": "ocBgHexColor"; "required": false; }; "ocText": { "alias": "ocText"; "required": false; }; "ocFontSize": { "alias": "ocFontSize"; "required": false; }; }, { "ocClick": "ocClick"; "ocRemove": "ocRemove"; }, never, ["*"], true, never>;
|
|
444
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OcChipComponent, "oc-chip", never, { "ocSelected": { "alias": "ocSelected"; "required": false; }; "ocType": { "alias": "ocType"; "required": false; }; "ocBg": { "alias": "ocBg"; "required": false; }; "ocBgHexColor": { "alias": "ocBgHexColor"; "required": false; }; "ocTextHexColor": { "alias": "ocTextHexColor"; "required": false; }; "ocText": { "alias": "ocText"; "required": false; }; "ocFontSize": { "alias": "ocFontSize"; "required": false; }; }, { "ocClick": "ocClick"; "ocRemove": "ocRemove"; }, never, ["*"], true, never>;
|
|
444
445
|
}
|
|
445
446
|
|
|
446
447
|
declare class OcDateSelectComponent implements AfterViewInit {
|
package/package.json
CHANGED
|
@@ -73,6 +73,24 @@
|
|
|
73
73
|
border-bottom-right-radius: 10px;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
.oc.table.rounded {
|
|
77
|
+
thead tr:first-child th:first-child {
|
|
78
|
+
border-top-left-radius: 10px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
thead tr:first-child th:last-child {
|
|
82
|
+
border-top-right-radius: 10px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
tbody tr:last-child td:first-child {
|
|
86
|
+
border-bottom-left-radius: 10px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
tbody tr:last-child td:last-child {
|
|
90
|
+
border-bottom-right-radius: 10px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
76
94
|
.oc.table tr:hover {
|
|
77
95
|
background-color: #f5f5f5 !important;
|
|
78
96
|
}
|
|
@@ -87,12 +105,14 @@
|
|
|
87
105
|
0% {
|
|
88
106
|
opacity: 0.3;
|
|
89
107
|
}
|
|
108
|
+
|
|
90
109
|
50% {
|
|
91
110
|
opacity: 0.5;
|
|
92
111
|
}
|
|
112
|
+
|
|
93
113
|
100% {
|
|
94
114
|
opacity: 0.3;
|
|
95
115
|
}
|
|
96
116
|
}
|
|
97
117
|
|
|
98
|
-
@import './table.shui.scss';
|
|
118
|
+
@import './table.shui.scss';
|