@dra2020/dra-types 1.8.129 → 1.8.130

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.
@@ -0,0 +1,35 @@
1
+ export declare const DefaultColorNames: string[];
2
+ export interface ColorLookup {
3
+ [key: string]: string;
4
+ }
5
+ export declare const ColorValues: ColorLookup;
6
+ export declare const ColorBySolidWhite = 0;
7
+ export declare const ColorBySolidBlack = 1;
8
+ export declare const ColorBySolidHispanic = 2;
9
+ export declare const ColorBySolidAsian = 3;
10
+ export declare const ColorByMostlyWhite = 4;
11
+ export declare const ColorByMostlyBlack = 5;
12
+ export declare const ColorByMostlyHispanic = 6;
13
+ export declare const ColorByMostlyAsian = 7;
14
+ export declare const ColorByMostlyNative = 8;
15
+ export declare const ColorByMix = 9;
16
+ export declare const ColorByHispanicWhite = 10;
17
+ export declare const ColorByBlackWhite = 11;
18
+ export declare const ColorByHispanicBlack = 12;
19
+ export declare const ColorByAsianWhite = 13;
20
+ export declare const ColorByAsianHispanic = 14;
21
+ export declare const ColorByBlackAsian = 15;
22
+ export declare const EthnicBackgroundColor: string[];
23
+ export declare const EthnicTextColor: string[];
24
+ export declare const EthnicLabel: string[];
25
+ export declare const ColorByGreatR = 0;
26
+ export declare const ColorByGoodR = 1;
27
+ export declare const ColorByFairR = 2;
28
+ export declare const ColorByEven = 3;
29
+ export declare const ColorByFairD = 4;
30
+ export declare const ColorByGoodD = 5;
31
+ export declare const ColorByGreatD = 6;
32
+ export declare const ElectionBackgroundColor: string[];
33
+ export declare const ElectionTextColor: string[];
34
+ export declare const ElectionLabel: string[];
35
+ export declare let IntensityBackgroundColor: string[];
@@ -80,6 +80,9 @@ export interface Dataset {
80
80
  meta?: DatasetsMeta;
81
81
  groups?: G.GroupMapIndex;
82
82
  labels?: string[];
83
+ labelupdate?: {
84
+ [name: string]: boolean | null;
85
+ };
83
86
  }
84
87
  export declare function datasetRestrict(ds: Dataset): {
85
88
  [key: string]: boolean;