@bizy/core 20.2.6 → 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 +5 -5
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +4 -4
- 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;
|
|
@@ -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<MouseEvent | TouchEvent>;
|
|
1974
1974
|
onPressStart(event: MouseEvent | TouchEvent): void;
|
|
1975
1975
|
onPressEnd(): void;
|
|
1976
1976
|
private clearTimeout;
|
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);
|