@bizy/core 20.2.5 → 20.2.7
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 +9 -9
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/package.json +1 -1
- package/styles/variables.css +0 -5
package/index.d.ts
CHANGED
|
@@ -1434,12 +1434,12 @@ declare class BizyToastService {
|
|
|
1434
1434
|
defaultDangerTitle?: string;
|
|
1435
1435
|
duration?: number;
|
|
1436
1436
|
}): void;
|
|
1437
|
-
debug(data
|
|
1437
|
+
debug(data?: string | {
|
|
1438
1438
|
title: string;
|
|
1439
1439
|
msg?: string;
|
|
1440
1440
|
duration?: number;
|
|
1441
1441
|
}): void;
|
|
1442
|
-
info(data
|
|
1442
|
+
info(data?: string | {
|
|
1443
1443
|
title: string;
|
|
1444
1444
|
msg?: string;
|
|
1445
1445
|
duration?: number;
|
|
@@ -1449,7 +1449,7 @@ declare class BizyToastService {
|
|
|
1449
1449
|
msg?: string;
|
|
1450
1450
|
duration?: number;
|
|
1451
1451
|
}): void;
|
|
1452
|
-
warning(data
|
|
1452
|
+
warning(data?: string | {
|
|
1453
1453
|
title: string;
|
|
1454
1454
|
msg?: string;
|
|
1455
1455
|
duration?: number;
|
|
@@ -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 {
|
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -64,11 +64,6 @@
|
|
|
64
64
|
--bizy-card-width: 100%;
|
|
65
65
|
--bizy-card-min-width: auto;
|
|
66
66
|
--bizy-card-max-width: auto;
|
|
67
|
-
--bizy-card-border: none;
|
|
68
|
-
--bizy-card-border-top: none;
|
|
69
|
-
--bizy-card-border-right: none;
|
|
70
|
-
--bizy-card-border-bottom: none;
|
|
71
|
-
--bizy-card-border-left: none;
|
|
72
67
|
--bizy-card-border-radius: 0.3rem;
|
|
73
68
|
--bizy-card-padding: 0.5rem;
|
|
74
69
|
--bizy-card-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
|