Added 3/8" and common metric bit sizes.
This commit is contained in:
@@ -83,7 +83,7 @@
|
|||||||
:global {
|
:global {
|
||||||
.textfield-with-options {
|
.textfield-with-options {
|
||||||
.mdc-deprecated-list-item {
|
.mdc-deprecated-list-item {
|
||||||
height: 35px;
|
height: 32px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,8 +42,22 @@
|
|||||||
const cancelled = writable(false);
|
const cancelled = writable(false);
|
||||||
const userAcknowledged = writable(false);
|
const userAcknowledged = writable(false);
|
||||||
|
|
||||||
const imperialBits = ["1/2 in", "1/4 in", "1/8 in", "1/16 in", "1/32 in"];
|
const imperialBits: `${number}/${number} in`[] = [
|
||||||
const metricBits = ["10 mm", "8 mm", "6 mm", "3 mm"];
|
"1/2 in",
|
||||||
|
"3/8 in",
|
||||||
|
"1/4 in",
|
||||||
|
"1/8 in",
|
||||||
|
"1/16 in",
|
||||||
|
"1/32 in",
|
||||||
|
];
|
||||||
|
const metricBits: `${number} mm`[] = [
|
||||||
|
"12 mm",
|
||||||
|
"10 mm",
|
||||||
|
"8 mm",
|
||||||
|
"6 mm",
|
||||||
|
"4 mm",
|
||||||
|
"3 mm",
|
||||||
|
];
|
||||||
|
|
||||||
export let open;
|
export let open;
|
||||||
export let probeType: "xyz" | "z";
|
export let probeType: "xyz" | "z";
|
||||||
@@ -89,7 +103,7 @@
|
|||||||
"Done",
|
"Done",
|
||||||
].filter<Step>(isStep);
|
].filter<Step>(isStep);
|
||||||
|
|
||||||
await stepCompleted("CheckProbe", probeContacted);
|
// await stepCompleted("CheckProbe", probeContacted);
|
||||||
|
|
||||||
if (probeType === "xyz") {
|
if (probeType === "xyz") {
|
||||||
await stepCompleted("BitDimensions", userAcknowledged);
|
await stepCompleted("BitDimensions", userAcknowledged);
|
||||||
|
|||||||
Reference in New Issue
Block a user