@bizy/core 21.9.1 → 21.9.2
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/bizy-core.mjs +18 -7
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/normalize.css +7 -4
- package/types/bizy-core.d.ts +3 -2
package/package.json
CHANGED
package/styles/normalize.css
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
font-size: var(--bizy-font-size);
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
html,
|
|
2
6
|
body {
|
|
3
7
|
height: 100%;
|
|
8
|
+
font-family: var(--bizy-font-family);
|
|
4
9
|
}
|
|
5
10
|
|
|
6
11
|
body {
|
|
7
12
|
margin: 0;
|
|
8
|
-
font-family: var(--bizy-font-family);
|
|
9
|
-
font-size: var(--bizy-font-size);
|
|
10
13
|
padding-top: env(safe-area-inset-top);
|
|
11
14
|
padding-right: env(safe-area-inset-right);
|
|
12
15
|
padding-bottom: env(safe-area-inset-bottom);
|
|
@@ -61,8 +64,8 @@ h6 {
|
|
|
61
64
|
}
|
|
62
65
|
|
|
63
66
|
p {
|
|
64
|
-
font-size: 0.
|
|
65
|
-
line-height:
|
|
67
|
+
font-size: 0.7rem !important;
|
|
68
|
+
line-height: 0.9rem !important;
|
|
66
69
|
}
|
|
67
70
|
|
|
68
71
|
ul {
|
package/types/bizy-core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnChanges, OnInit, AfterContentInit, QueryList, TemplateRef, ViewContainerRef, AfterViewChecked, ChangeDetectorRef, RendererFactory2, Renderer2 } from '@angular/core';
|
|
2
|
+
import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnChanges, OnInit, AfterContentInit, QueryList, TemplateRef, SimpleChanges, ViewContainerRef, AfterViewChecked, ChangeDetectorRef, RendererFactory2, Renderer2 } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable, Subject, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { CalendarEvent, CalendarMonthViewDay } from 'angular-calendar';
|
|
@@ -867,7 +867,7 @@ declare class BizyInputOptionComponent {
|
|
|
867
867
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyInputOptionComponent, "bizy-input-option", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["*"], true, never>;
|
|
868
868
|
}
|
|
869
869
|
|
|
870
|
-
declare class BizyInputComponent implements OnDestroy {
|
|
870
|
+
declare class BizyInputComponent implements OnChanges, OnDestroy {
|
|
871
871
|
#private;
|
|
872
872
|
options: QueryList<BizyInputOptionComponent>;
|
|
873
873
|
bizyInputWrapper: ElementRef;
|
|
@@ -892,6 +892,7 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
892
892
|
onFocus: EventEmitter<FocusEvent>;
|
|
893
893
|
onPaste: EventEmitter<ClipboardEvent>;
|
|
894
894
|
set bizyInput(inputElement: ElementRef);
|
|
895
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
895
896
|
set value(value: string | number | null);
|
|
896
897
|
focused: boolean;
|
|
897
898
|
touched: boolean;
|