@reekon-tools/boldr-utils 1.9.3 → 1.9.5
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/theme/colors.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const GeneralColors: {
|
|
2
|
-
readonly darkGrey: "#
|
|
2
|
+
readonly darkGrey: "#181A1C";
|
|
3
3
|
readonly grey1: "#2B2C2E";
|
|
4
4
|
readonly grey2: "#424345";
|
|
5
5
|
readonly grey3: "#626364";
|
|
@@ -58,7 +58,7 @@ export declare const GreenColors: {
|
|
|
58
58
|
*/
|
|
59
59
|
export declare const tailwindColors: {
|
|
60
60
|
readonly general: {
|
|
61
|
-
readonly 'dark-grey': "#
|
|
61
|
+
readonly 'dark-grey': "#181A1C";
|
|
62
62
|
readonly 'grey-1': "#2B2C2E";
|
|
63
63
|
readonly 'grey-2': "#424345";
|
|
64
64
|
readonly 'grey-3': "#626364";
|
package/dist/theme/colors.js
CHANGED
|
@@ -336,7 +336,8 @@ export interface Row {
|
|
|
336
336
|
}
|
|
337
337
|
export declare enum MeasurementType {
|
|
338
338
|
Angle = "angle",// value is signed degrees
|
|
339
|
-
Length = "length"
|
|
339
|
+
Length = "length",// value is micrometers
|
|
340
|
+
Number = "number"
|
|
340
341
|
}
|
|
341
342
|
export declare enum MeasurementSource {
|
|
342
343
|
Tape = "tape",
|
package/dist/types/firestore.js
CHANGED
|
@@ -52,15 +52,20 @@ export var ColumnType;
|
|
|
52
52
|
// change them. Absent `type` means Length (every doc written before typing
|
|
53
53
|
// existed).
|
|
54
54
|
//
|
|
55
|
-
//
|
|
56
|
-
//
|
|
57
|
-
//
|
|
58
|
-
//
|
|
59
|
-
//
|
|
55
|
+
// Where a reading CAME FROM (tape blade, laser, level sensor, manual entry) is
|
|
56
|
+
// orthogonal metadata — see MeasurementSource. Future calculation results
|
|
57
|
+
// (area, volume, point-to-point) are expected to become their own entity with
|
|
58
|
+
// measurements feeding into them, not new values here.
|
|
59
|
+
//
|
|
60
|
+
// Angle and Number are both BARE SCALARS: `value` is stored as typed and never
|
|
61
|
+
// goes through convertMicrometers. Only Length is micrometers. A consumer that
|
|
62
|
+
// branches `type === Angle ? … : <treat as length>` is wrong now that a third
|
|
63
|
+
// member exists — test for Length (or for the scalar pair) explicitly.
|
|
60
64
|
export var MeasurementType;
|
|
61
65
|
(function (MeasurementType) {
|
|
62
66
|
MeasurementType["Angle"] = "angle";
|
|
63
67
|
MeasurementType["Length"] = "length";
|
|
68
|
+
MeasurementType["Number"] = "number";
|
|
64
69
|
})(MeasurementType || (MeasurementType = {}));
|
|
65
70
|
// Provenance of a measurement: what produced the reading. Optional
|
|
66
71
|
// display/analytics metadata only — formatting, conversion, and column
|