@bizy/core 20.2.4 → 20.2.6
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 +6 -6
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +1 -1
- package/styles/variables.css +1 -0
package/index.d.ts
CHANGED
|
@@ -1916,12 +1916,12 @@ declare class BizyPipesModule {
|
|
|
1916
1916
|
|
|
1917
1917
|
declare class BizyReloadDirective {
|
|
1918
1918
|
#private;
|
|
1919
|
-
|
|
1919
|
+
bizyReloadThreshold: number;
|
|
1920
1920
|
bizyReload: EventEmitter<void>;
|
|
1921
1921
|
onTouchStart(event: TouchEvent): void;
|
|
1922
1922
|
onTouchMove(event: TouchEvent): void;
|
|
1923
1923
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyReloadDirective, never>;
|
|
1924
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BizyReloadDirective, "[bizyReload]", never, { "
|
|
1924
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BizyReloadDirective, "[bizyReload]", never, { "bizyReloadThreshold": { "alias": "bizyReloadThreshold"; "required": false; }; }, { "bizyReload": "bizyReload"; }, never, never, true, never>;
|
|
1925
1925
|
}
|
|
1926
1926
|
|
|
1927
1927
|
declare class BizyCopyToClipboardDirective {
|
|
@@ -1970,7 +1970,7 @@ declare class BizyLoadingDirective {
|
|
|
1970
1970
|
declare class BizyLongPressDirective implements OnDestroy {
|
|
1971
1971
|
#private;
|
|
1972
1972
|
threshold: number;
|
|
1973
|
-
bizyLongPress: EventEmitter<
|
|
1973
|
+
bizyLongPress: EventEmitter<TouchEvent | MouseEvent>;
|
|
1974
1974
|
onPressStart(event: MouseEvent | TouchEvent): void;
|
|
1975
1975
|
onPressEnd(): void;
|
|
1976
1976
|
private clearTimeout;
|
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -132,6 +132,7 @@
|
|
|
132
132
|
--bizy-input-option-hover-background-color: var(--bizy-hover-color);
|
|
133
133
|
--bizy-input-option-selected-color: #fff;
|
|
134
134
|
--bizy-input-option-selected-background-color: var(--bizy-info-color);
|
|
135
|
+
--bizy-input-font-size: 1rem;
|
|
135
136
|
|
|
136
137
|
--bizy-list-height: fit-content;
|
|
137
138
|
--bizy-list-width: 100%;
|