taxtank-core 2.0.50 → 2.0.51
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/taxtank-core.mjs +14 -7
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5476,7 +5476,9 @@ declare enum BadgeColorEnum {
|
|
|
5476
5476
|
DEFAULT = "default",
|
|
5477
5477
|
GREEN = "green",
|
|
5478
5478
|
GOLD = "gold",
|
|
5479
|
-
GRAY = "gray"
|
|
5479
|
+
GRAY = "gray",
|
|
5480
|
+
PRIMARY = "bg-primary",
|
|
5481
|
+
ERROR = "bg-error"
|
|
5480
5482
|
}
|
|
5481
5483
|
|
|
5482
5484
|
/**
|
|
@@ -5504,6 +5506,7 @@ declare class FinancialGoal extends AbstractModel implements FinancialGoalInterf
|
|
|
5504
5506
|
inCalendar: boolean;
|
|
5505
5507
|
properties: Property$1[];
|
|
5506
5508
|
file: AppFile;
|
|
5509
|
+
isCompleted(): boolean;
|
|
5507
5510
|
/**
|
|
5508
5511
|
* today's forecasted progress
|
|
5509
5512
|
*/
|