pace-table-lib 1.0.22 → 1.0.23
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/dist/components/StaticTable/HelperFunctions.d.ts +1 -0
- package/dist/components/StaticTable/StaticTableConst.d.ts +0 -1
- package/dist/pace-table-lib.es.js +210 -86
- package/dist/pace-table-lib.es.js.map +1 -1
- package/dist/pace-table-lib.umd.js +210 -86
- package/dist/pace-table-lib.umd.js.map +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -13,3 +13,4 @@ export declare function compareVal(a: number, op: string, b: number): boolean;
|
|
|
13
13
|
export declare function applyConditionalFormatting(style: CSSProperties, conFormat?: any): CSSProperties;
|
|
14
14
|
export declare function applyFormat(obj: any, format: any): void;
|
|
15
15
|
export declare function getPercentageBy(dataValue: any, totalValue: any): number;
|
|
16
|
+
export declare function createBorder(bWidth: number, bType: string, bColor: string): string;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { CONDITIONAL_FORMAT_FOR } from "./StaticTableTypeDec.types";
|
|
2
2
|
export declare const TOTAL = "Total";
|
|
3
|
-
export declare const BORDER_STYLE = "1px solid #ccc";
|
|
4
3
|
export declare const MONTHS_SHORT: string[];
|
|
5
4
|
export declare const MONTHS_FULL: string[];
|
|
6
5
|
export declare const DATE_FORMATS: string[];
|