physical-quantity 1.1.28 → 1.1.30
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/README.md +54 -55
- package/dist/pq.es.js +422 -339
- package/dist/pq.umd.js +472 -1
- package/package.json +4 -2
package/dist/pq.es.js
CHANGED
|
@@ -1,373 +1,456 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"SELECT",
|
|
6
|
-
"\x0a\x20\x20\x20\x20\x20\x20<style>\x0a\x20\x20\x20\x20\x20\x20\x20\x20:host\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20inline-block;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.quantity\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20flex;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20align-items:\x20center;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20relative;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.value\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20margin-left:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20margin-right:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20cursor:\x20pointer;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20relative;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20text-decoration:\x20underline;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.unit-container\x20select\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20relative;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20inline-flex;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20align-items:\x20center;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20color:\x20blue;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20background-color:\x20lightgray;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20border-radius:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20border:\x20none;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20margin:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20cursor:\x20pointer;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20.tooltip\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20absolute;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20bottom:\x2075%;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20left:\x2085%;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20transform:\x20translateX(-50%);\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20background-color:\x20#f5f5f5;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20border:\x201px\x20solid\x20#ccc;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20padding:\x200;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20border-radius:\x204px;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20none;\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20font-size:\x2012px;\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.tooltip\x20a\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20text-decoration:\x20none;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20color:\x20blue;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.tooltip\x20a:hover\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20text-decoration:\x20underline;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20</style>\x0a\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20<div\x20class=\x22quantity\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20<span\x20class=\x22value\x22\x20style=\x22position:\x20relative;\x22>",
|
|
7
|
-
"mm\x20W.C.",
|
|
8
|
-
"MPa",
|
|
9
|
-
"e3dLogoUrl",
|
|
10
|
-
"\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</select>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<a\x20class=\x22tooltip\x22\x20href=\x22https://v2-docs.donwen.com/daily-calculations/unit-converter.html\x22\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title=\x22Unit\x20Converter\x20for\x20All\x20Categories\x22\x20target=\x22_blank\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<img\x20src=\x22",
|
|
11
|
-
"disconnectedCallback",
|
|
12
|
-
"unitCategory",
|
|
13
|
-
"toString",
|
|
14
|
-
"select",
|
|
15
|
-
"in\x20HG",
|
|
16
|
-
"getUnitCategory",
|
|
17
|
-
"lbm/in³",
|
|
18
|
-
"day",
|
|
19
|
-
"</option>",
|
|
20
|
-
"ksi",
|
|
21
|
-
"kPa",
|
|
22
|
-
"isInteger",
|
|
23
|
-
"mbar",
|
|
24
|
-
"Length",
|
|
25
|
-
"\x22\x20width=\x2212\x22\x20/>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</a>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20</div>\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20</div>\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20",
|
|
26
|
-
"5586031gXaKwN",
|
|
27
|
-
"open",
|
|
28
|
-
"handleArrowClick",
|
|
29
|
-
"toPrecision",
|
|
30
|
-
"none",
|
|
31
|
-
"m\x20W.C.",
|
|
32
|
-
"1052112JyJynC",
|
|
33
|
-
"esu/s",
|
|
34
|
-
"shadowRoot",
|
|
35
|
-
"includes",
|
|
36
|
-
"decimal-places",
|
|
37
|
-
"change",
|
|
38
|
-
"kg/L",
|
|
39
|
-
"in\x20W.C.",
|
|
40
|
-
"h[hour]",
|
|
41
|
-
"display",
|
|
42
|
-
"bar",
|
|
43
|
-
"3639132yqLVJT",
|
|
44
|
-
"1662FoCryp",
|
|
45
|
-
"616eqDTxh",
|
|
46
|
-
"555BnxWir",
|
|
47
|
-
"3lSKTpX",
|
|
48
|
-
"week",
|
|
49
|
-
"lbm/ft³",
|
|
50
|
-
"define",
|
|
51
|
-
"243wuNgTe",
|
|
52
|
-
"minute",
|
|
53
|
-
"removeEventListener",
|
|
54
|
-
"pow",
|
|
55
|
-
"render",
|
|
56
|
-
"formatValue",
|
|
57
|
-
"unit",
|
|
58
|
-
"kg/m³",
|
|
59
|
-
"550qSUYFW",
|
|
60
|
-
"addEventListener",
|
|
61
|
-
"tagName",
|
|
62
|
-
"style",
|
|
63
|
-
"mouseout",
|
|
64
|
-
"tooltipTimeout",
|
|
65
|
-
"ksi[kip/in²]",
|
|
66
|
-
"lbm",
|
|
67
|
-
"bind",
|
|
68
|
-
"replace",
|
|
69
|
-
"connectedCallback",
|
|
70
|
-
"Ampere[amp]",
|
|
71
|
-
"decimalPlaces",
|
|
72
|
-
"s[second]",
|
|
73
|
-
"map",
|
|
74
|
-
"19686ZRCLXs",
|
|
75
|
-
"g/cm³",
|
|
76
|
-
"psi",
|
|
77
|
-
"querySelector",
|
|
78
|
-
"block",
|
|
79
|
-
".unit-container",
|
|
80
|
-
"986410YDaVbP",
|
|
81
|
-
"unitConversion",
|
|
82
|
-
"observedAttributes",
|
|
83
|
-
"join",
|
|
84
|
-
"value",
|
|
85
|
-
"GPa",
|
|
86
|
-
"uc-qty",
|
|
87
|
-
"floor",
|
|
88
|
-
"units",
|
|
89
|
-
"target",
|
|
90
|
-
"handleUnitChange",
|
|
91
|
-
"focus",
|
|
92
|
-
"g/mm³",
|
|
93
|
-
"physical-quantity",
|
|
94
|
-
];
|
|
95
|
-
_0x1f76 = function () {
|
|
96
|
-
return _0x102e4b;
|
|
97
|
-
};
|
|
98
|
-
return _0x1f76();
|
|
99
|
-
}
|
|
100
|
-
const _0x4b6c41 = _0x4250;
|
|
101
|
-
function _0x4250(_0x17483a, _0x249ee0) {
|
|
102
|
-
const _0x1f76b8 = _0x1f76();
|
|
103
|
-
return (
|
|
104
|
-
(_0x4250 = function (_0x4250f4, _0x4dc54e) {
|
|
105
|
-
_0x4250f4 = _0x4250f4 - 0xfb;
|
|
106
|
-
let _0x50e178 = _0x1f76b8[_0x4250f4];
|
|
107
|
-
return _0x50e178;
|
|
108
|
-
}),
|
|
109
|
-
_0x4250(_0x17483a, _0x249ee0)
|
|
110
|
-
);
|
|
111
|
-
}
|
|
112
|
-
(function (_0x2decea, _0x2c8163) {
|
|
113
|
-
const _0x333bb7 = _0x4250,
|
|
114
|
-
_0x50ea67 = _0x2decea();
|
|
1
|
+
const _0x3ab5ea = _0x5953;
|
|
2
|
+
(function (_0x191888, _0x11c5a5) {
|
|
3
|
+
const _0x25b7de = _0x5953,
|
|
4
|
+
_0x3981ef = _0x191888();
|
|
115
5
|
while (!![]) {
|
|
116
6
|
try {
|
|
117
|
-
const
|
|
118
|
-
(-parseInt(
|
|
119
|
-
(
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
(-parseInt(
|
|
123
|
-
(parseInt(
|
|
124
|
-
parseInt(
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
-parseInt(
|
|
129
|
-
if (
|
|
130
|
-
else
|
|
131
|
-
} catch (
|
|
132
|
-
|
|
7
|
+
const _0x141277 =
|
|
8
|
+
(-parseInt(_0x25b7de(0x109)) / 0x1) *
|
|
9
|
+
(parseInt(_0x25b7de(0x12b)) / 0x2) +
|
|
10
|
+
-parseInt(_0x25b7de(0x132)) / 0x3 +
|
|
11
|
+
(parseInt(_0x25b7de(0x111)) / 0x4) * (parseInt(_0x25b7de(0xdf)) / 0x5) +
|
|
12
|
+
(-parseInt(_0x25b7de(0xfa)) / 0x6) *
|
|
13
|
+
(-parseInt(_0x25b7de(0xf8)) / 0x7) +
|
|
14
|
+
(parseInt(_0x25b7de(0x122)) / 0x8) *
|
|
15
|
+
(parseInt(_0x25b7de(0x107)) / 0x9) +
|
|
16
|
+
(-parseInt(_0x25b7de(0xdb)) / 0xa) *
|
|
17
|
+
(-parseInt(_0x25b7de(0xfe)) / 0xb) +
|
|
18
|
+
(-parseInt(_0x25b7de(0x129)) / 0xc) * (parseInt(_0x25b7de(0xe5)) / 0xd);
|
|
19
|
+
if (_0x141277 === _0x11c5a5) break;
|
|
20
|
+
else _0x3981ef["push"](_0x3981ef["shift"]());
|
|
21
|
+
} catch (_0x55fb3d) {
|
|
22
|
+
_0x3981ef["push"](_0x3981ef["shift"]());
|
|
133
23
|
}
|
|
134
24
|
}
|
|
135
|
-
})(
|
|
25
|
+
})(_0x3902, 0x681f1);
|
|
136
26
|
const s = 0.45359237,
|
|
137
27
|
o = 25.4 / 0x3e8,
|
|
138
28
|
n = 0xc * o,
|
|
139
29
|
c = 0x18bcd,
|
|
140
|
-
a = 133.322387415
|
|
141
|
-
|
|
30
|
+
a = 133.322387415,
|
|
31
|
+
d = {
|
|
32
|
+
Length: ["m", "km", "cm", "mm", "in", "ft"],
|
|
33
|
+
Mass: ["g", "kg", _0x3ab5ea(0xdd)],
|
|
34
|
+
Pressure: [
|
|
35
|
+
"Pa",
|
|
36
|
+
_0x3ab5ea(0xfd),
|
|
37
|
+
_0x3ab5ea(0x101),
|
|
38
|
+
_0x3ab5ea(0xd7),
|
|
39
|
+
_0x3ab5ea(0xeb),
|
|
40
|
+
_0x3ab5ea(0xc4),
|
|
41
|
+
_0x3ab5ea(0x12e),
|
|
42
|
+
_0x3ab5ea(0xe2),
|
|
43
|
+
"cm\x20HG",
|
|
44
|
+
_0x3ab5ea(0x131),
|
|
45
|
+
_0x3ab5ea(0xcc),
|
|
46
|
+
_0x3ab5ea(0xe4),
|
|
47
|
+
_0x3ab5ea(0xf0),
|
|
48
|
+
_0x3ab5ea(0xf4),
|
|
49
|
+
_0x3ab5ea(0xde),
|
|
50
|
+
_0x3ab5ea(0xea),
|
|
51
|
+
"ksi[kip/in²]",
|
|
52
|
+
],
|
|
53
|
+
Density: [
|
|
54
|
+
_0x3ab5ea(0xd1),
|
|
55
|
+
_0x3ab5ea(0xbd),
|
|
56
|
+
"g/cm³",
|
|
57
|
+
_0x3ab5ea(0x123),
|
|
58
|
+
_0x3ab5ea(0x10f),
|
|
59
|
+
_0x3ab5ea(0xc5),
|
|
60
|
+
],
|
|
61
|
+
Time: [
|
|
62
|
+
_0x3ab5ea(0xec),
|
|
63
|
+
"s",
|
|
64
|
+
_0x3ab5ea(0xcd),
|
|
65
|
+
"h",
|
|
66
|
+
_0x3ab5ea(0x128),
|
|
67
|
+
_0x3ab5ea(0x127),
|
|
68
|
+
_0x3ab5ea(0x11e),
|
|
69
|
+
],
|
|
70
|
+
ElectricalCurrent: [
|
|
71
|
+
"A",
|
|
72
|
+
"Ampere[amp]",
|
|
73
|
+
"mA",
|
|
74
|
+
"µA",
|
|
75
|
+
"kA",
|
|
76
|
+
"MA",
|
|
77
|
+
_0x3ab5ea(0xf5),
|
|
78
|
+
],
|
|
79
|
+
},
|
|
80
|
+
m = {
|
|
81
|
+
Length: { m: 0x1, km: 0x3e8, cm: 0.01, mm: 0.001, in: o, ft: n },
|
|
82
|
+
Mass: { kg: 0x1, g: 0.001, lbm: s },
|
|
83
|
+
Pressure: {
|
|
84
|
+
Pa: 0x1,
|
|
85
|
+
kPa: 0x3e8,
|
|
86
|
+
MPa: 0xf4240,
|
|
87
|
+
GPa: 0x3b9aca00,
|
|
88
|
+
bar: 0x64 * 0x3e8,
|
|
89
|
+
mbar: 0x64,
|
|
90
|
+
atm: c,
|
|
91
|
+
"mm\x20HG": a,
|
|
92
|
+
"cm\x20HG": a * 0xa,
|
|
93
|
+
"in\x20HG": a * 25.4,
|
|
94
|
+
"mm\x20W.C.": (0x1 / 0x3e8) * 0x3e8 * 9.80665,
|
|
95
|
+
"m\x20W.C.": 0x1 * 0x3e8 * 9.80665,
|
|
96
|
+
"in\x20W.C.": o * 0x3e8 * 9.80665,
|
|
97
|
+
psf: (s * 9.80665) / Math[_0x3ab5ea(0xdc)](n, 0x2),
|
|
98
|
+
psi: (s * 9.80665) / Math[_0x3ab5ea(0xdc)](o, 0x2),
|
|
99
|
+
ksi: ((s * 9.80665) / Math[_0x3ab5ea(0xdc)](o, 0x2)) * 0x3e8,
|
|
100
|
+
"ksi[kip/in²]": ((s * 9.80665) / Math[_0x3ab5ea(0xdc)](o, 0x2)) * 0x3e8,
|
|
101
|
+
},
|
|
102
|
+
Density: {
|
|
103
|
+
"kg/m³": 0x1,
|
|
104
|
+
"kg/L": 0x3e8,
|
|
105
|
+
"g/cm³": 0x1 / 0x3e8 / Math[_0x3ab5ea(0xdc)](0.01, 0x3),
|
|
106
|
+
"g/mm³": 0x1 / 0x3e8 / Math["pow"](0.001, 0x3),
|
|
107
|
+
"lbm/ft³": s / Math[_0x3ab5ea(0xdc)](n, 0x3),
|
|
108
|
+
"lbm/in³": s / Math["pow"](o, 0x3),
|
|
109
|
+
},
|
|
110
|
+
Time: {
|
|
111
|
+
"s[second]": 0x1,
|
|
112
|
+
s: 0x1,
|
|
113
|
+
minute: 0x3c,
|
|
114
|
+
h: 0xe10,
|
|
115
|
+
"h[hour]": 0xe10,
|
|
116
|
+
day: 0xe10 * 0x18,
|
|
117
|
+
week: 0xe10 * 0x18 * 0x7,
|
|
118
|
+
},
|
|
119
|
+
ElectricalCurrent: {
|
|
120
|
+
A: 0x1,
|
|
121
|
+
"Ampere[amp]": 0x1,
|
|
122
|
+
mA: 0.001,
|
|
123
|
+
µA: 0.000001,
|
|
124
|
+
kA: 0x3e8,
|
|
125
|
+
MA: 0xf4240,
|
|
126
|
+
"esu/s": 0x1 / 0xb2d05e00,
|
|
127
|
+
},
|
|
128
|
+
};
|
|
129
|
+
class h extends HTMLElement {
|
|
142
130
|
constructor() {
|
|
143
|
-
const
|
|
131
|
+
const _0x27a547 = _0x3ab5ea;
|
|
144
132
|
super(),
|
|
145
|
-
this["attachShadow"]({ mode:
|
|
146
|
-
(this[
|
|
147
|
-
(this[
|
|
148
|
-
(this[
|
|
149
|
-
(this[
|
|
150
|
-
(this[
|
|
151
|
-
(this["
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
Pressure: [
|
|
157
|
-
"Pa",
|
|
158
|
-
_0x431f05(0x141),
|
|
159
|
-
_0x431f05(0x134),
|
|
160
|
-
_0x431f05(0x126),
|
|
161
|
-
_0x431f05(0xfb),
|
|
162
|
-
_0x431f05(0x143),
|
|
163
|
-
"atm",
|
|
164
|
-
"mm\x20HG",
|
|
165
|
-
"cm\x20HG",
|
|
166
|
-
_0x431f05(0x13b),
|
|
167
|
-
_0x431f05(0x133),
|
|
168
|
-
_0x431f05(0x14b),
|
|
169
|
-
_0x431f05(0x153),
|
|
170
|
-
"psf",
|
|
171
|
-
_0x431f05(0x11d),
|
|
172
|
-
_0x431f05(0x140),
|
|
173
|
-
_0x431f05(0x112),
|
|
174
|
-
],
|
|
175
|
-
Density: [
|
|
176
|
-
_0x431f05(0x10b),
|
|
177
|
-
_0x431f05(0x152),
|
|
178
|
-
_0x431f05(0x11c),
|
|
179
|
-
_0x431f05(0x12d),
|
|
180
|
-
_0x431f05(0x102),
|
|
181
|
-
_0x431f05(0x13d),
|
|
182
|
-
],
|
|
183
|
-
Time: [
|
|
184
|
-
_0x431f05(0x119),
|
|
185
|
-
"s",
|
|
186
|
-
_0x431f05(0x105),
|
|
187
|
-
"h",
|
|
188
|
-
_0x431f05(0x154),
|
|
189
|
-
_0x431f05(0x13e),
|
|
190
|
-
_0x431f05(0x101),
|
|
191
|
-
],
|
|
192
|
-
ElectricalCurrent: [
|
|
193
|
-
"A",
|
|
194
|
-
_0x431f05(0x117),
|
|
195
|
-
"mA",
|
|
196
|
-
"µA",
|
|
197
|
-
"kA",
|
|
198
|
-
"MA",
|
|
199
|
-
_0x431f05(0x14d),
|
|
200
|
-
],
|
|
201
|
-
}),
|
|
202
|
-
(this[_0x431f05(0x122)] = {
|
|
203
|
-
Length: { m: 0x1, km: 0x3e8, cm: 0.01, mm: 0.001, in: o, ft: n },
|
|
204
|
-
Mass: { kg: 0x1, g: 0.001, lbm: s },
|
|
205
|
-
Pressure: {
|
|
206
|
-
Pa: 0x1,
|
|
207
|
-
kPa: 0x3e8,
|
|
208
|
-
MPa: 0xf4240,
|
|
209
|
-
GPa: 0x3b9aca00,
|
|
210
|
-
bar: 0x64 * 0x3e8,
|
|
211
|
-
mbar: 0x64,
|
|
212
|
-
atm: c,
|
|
213
|
-
"mm\x20HG": a,
|
|
214
|
-
"cm\x20HG": a * 0xa,
|
|
215
|
-
"in\x20HG": a * 25.4,
|
|
216
|
-
"mm\x20W.C.": (0x1 / 0x3e8) * 0x3e8 * 9.80665,
|
|
217
|
-
"m\x20W.C.": 0x1 * 0x3e8 * 9.80665,
|
|
218
|
-
"in\x20W.C.": o * 0x3e8 * 9.80665,
|
|
219
|
-
psf: (s * 9.80665) / Math[_0x431f05(0x107)](n, 0x2),
|
|
220
|
-
psi: (s * 9.80665) / Math[_0x431f05(0x107)](o, 0x2),
|
|
221
|
-
ksi: ((s * 9.80665) / Math[_0x431f05(0x107)](o, 0x2)) * 0x3e8,
|
|
222
|
-
"ksi[kip/in²]":
|
|
223
|
-
((s * 9.80665) / Math[_0x431f05(0x107)](o, 0x2)) * 0x3e8,
|
|
224
|
-
},
|
|
225
|
-
Density: {
|
|
226
|
-
"kg/m³": 0x1,
|
|
227
|
-
"kg/L": 0x3e8,
|
|
228
|
-
"g/cm³": 0x1 / 0x3e8 / Math[_0x431f05(0x107)](0.01, 0x3),
|
|
229
|
-
"g/mm³": 0x1 / 0x3e8 / Math["pow"](0.001, 0x3),
|
|
230
|
-
"lbm/ft³": s / Math[_0x431f05(0x107)](n, 0x3),
|
|
231
|
-
"lbm/in³": s / Math["pow"](o, 0x3),
|
|
232
|
-
},
|
|
233
|
-
Time: {
|
|
234
|
-
"s[second]": 0x1,
|
|
235
|
-
s: 0x1,
|
|
236
|
-
minute: 0x3c,
|
|
237
|
-
h: 0xe10,
|
|
238
|
-
"h[hour]": 0xe10,
|
|
239
|
-
day: 0xe10 * 0x18,
|
|
240
|
-
week: 0xe10 * 0x18 * 0x7,
|
|
241
|
-
},
|
|
242
|
-
ElectricalCurrent: {
|
|
243
|
-
A: 0x1,
|
|
244
|
-
"Ampere[amp]": 0x1,
|
|
245
|
-
mA: 0.001,
|
|
246
|
-
µA: 0.000001,
|
|
247
|
-
kA: 0x3e8,
|
|
248
|
-
MA: 0xf4240,
|
|
249
|
-
"esu/s": 0x1 / 0xb2d05e00,
|
|
250
|
-
},
|
|
251
|
-
}),
|
|
252
|
-
this[_0x431f05(0x108)]();
|
|
133
|
+
this["attachShadow"]({ mode: _0x27a547(0xe6) }),
|
|
134
|
+
(this[_0x27a547(0xc2)] = 0x0),
|
|
135
|
+
(this[_0x27a547(0x117)] = null),
|
|
136
|
+
(this[_0x27a547(0xf1)] = 0x3),
|
|
137
|
+
(this[_0x27a547(0x110)] = _0x27a547(0xc6)),
|
|
138
|
+
(this[_0x27a547(0x108)] = d),
|
|
139
|
+
(this["unitConversion"] = m),
|
|
140
|
+
(this[_0x27a547(0xee)] =
|
|
141
|
+
!this[_0x27a547(0x115)](_0x27a547(0xf9)) ||
|
|
142
|
+
this[_0x27a547(0x125)](_0x27a547(0xf9)) === _0x27a547(0xf2)),
|
|
143
|
+
this[_0x27a547(0xd5)]();
|
|
253
144
|
}
|
|
254
|
-
static get [
|
|
255
|
-
const
|
|
256
|
-
return [
|
|
145
|
+
static get [_0x3ab5ea(0x112)]() {
|
|
146
|
+
const _0x51741d = _0x3ab5ea;
|
|
147
|
+
return [_0x51741d(0xc2), "unit", _0x51741d(0x124), _0x51741d(0xf9)];
|
|
257
148
|
}
|
|
258
|
-
[
|
|
259
|
-
const
|
|
260
|
-
|
|
261
|
-
? (this[
|
|
262
|
-
:
|
|
263
|
-
? ((this[
|
|
264
|
-
(this[
|
|
265
|
-
:
|
|
266
|
-
|
|
267
|
-
|
|
149
|
+
[_0x3ab5ea(0xf6)](_0x31ddd1, _0x295704, _0x4c9632) {
|
|
150
|
+
const _0x4080f8 = _0x3ab5ea;
|
|
151
|
+
_0x31ddd1 === _0x4080f8(0xc2)
|
|
152
|
+
? (this[_0x4080f8(0xc2)] = parseFloat(_0x4c9632))
|
|
153
|
+
: _0x31ddd1 === "unit"
|
|
154
|
+
? ((this[_0x4080f8(0xf7)] = _0x4c9632),
|
|
155
|
+
(this[_0x4080f8(0xb7)] = this[_0x4080f8(0xcf)](_0x4c9632)))
|
|
156
|
+
: _0x31ddd1 === "decimal-places"
|
|
157
|
+
? (this["decimalPlaces"] = parseInt(_0x4c9632) || 0x3)
|
|
158
|
+
: _0x31ddd1 === _0x4080f8(0xf9) &&
|
|
159
|
+
(this[_0x4080f8(0xee)] =
|
|
160
|
+
_0x4c9632 === null || _0x4c9632 === _0x4080f8(0xf2)),
|
|
161
|
+
this[_0x4080f8(0xd5)]();
|
|
268
162
|
}
|
|
269
|
-
[
|
|
270
|
-
const
|
|
271
|
-
for (const
|
|
272
|
-
if (this[
|
|
273
|
-
return
|
|
274
|
-
return
|
|
163
|
+
[_0x3ab5ea(0xcf)](_0x37c907) {
|
|
164
|
+
const _0x3f3cdb = _0x3ab5ea;
|
|
165
|
+
for (const _0x5f1307 in this["units"])
|
|
166
|
+
if (this["units"][_0x5f1307][_0x3f3cdb(0xd4)](_0x37c907))
|
|
167
|
+
return _0x5f1307;
|
|
168
|
+
return (
|
|
169
|
+
(this["units"][_0x3f3cdb(0xd6)] = this[_0x3f3cdb(0x108)]["Custom"] || []),
|
|
170
|
+
this[_0x3f3cdb(0x108)]["Custom"][_0x3f3cdb(0xc8)](_0x37c907),
|
|
171
|
+
(this[_0x3f3cdb(0x10d)][_0x3f3cdb(0xd6)] =
|
|
172
|
+
this[_0x3f3cdb(0x10d)][_0x3f3cdb(0xd6)] || {}),
|
|
173
|
+
(this[_0x3f3cdb(0x10d)][_0x3f3cdb(0xd6)][_0x37c907] = 0x1),
|
|
174
|
+
"Custom"
|
|
175
|
+
);
|
|
275
176
|
}
|
|
276
|
-
[
|
|
277
|
-
const
|
|
278
|
-
this[
|
|
279
|
-
|
|
280
|
-
this[
|
|
177
|
+
["connectedCallback"]() {
|
|
178
|
+
const _0x350ca3 = _0x3ab5ea;
|
|
179
|
+
this[_0x350ca3(0xe1)][_0x350ca3(0xd8)](
|
|
180
|
+
_0x350ca3(0x134),
|
|
181
|
+
this[_0x350ca3(0xff)][_0x350ca3(0xe0)](this)
|
|
281
182
|
),
|
|
282
|
-
this[
|
|
183
|
+
(this[_0x350ca3(0xf7)] = this["getAttribute"]("unit") || "mm"),
|
|
184
|
+
(this[_0x350ca3(0xb7)] = this[_0x350ca3(0xcf)](this[_0x350ca3(0xf7)])),
|
|
185
|
+
(this["showUnitArrow"] = this[_0x350ca3(0x115)](_0x350ca3(0xf9))
|
|
186
|
+
? this[_0x350ca3(0x125)]("show-unit-arrow") === _0x350ca3(0xf2)
|
|
187
|
+
: this["unitCategory"] !== _0x350ca3(0xd6)),
|
|
188
|
+
this[_0x350ca3(0xd5)]();
|
|
283
189
|
}
|
|
284
|
-
[
|
|
285
|
-
const
|
|
286
|
-
this[
|
|
287
|
-
|
|
288
|
-
this[
|
|
190
|
+
[_0x3ab5ea(0x11f)]() {
|
|
191
|
+
const _0x2ef633 = _0x3ab5ea;
|
|
192
|
+
this[_0x2ef633(0xe1)][_0x2ef633(0xda)](
|
|
193
|
+
_0x2ef633(0x134),
|
|
194
|
+
this["handleUnitChange"][_0x2ef633(0xe0)](this)
|
|
289
195
|
);
|
|
290
196
|
}
|
|
291
|
-
[
|
|
292
|
-
const
|
|
293
|
-
if (
|
|
294
|
-
const
|
|
295
|
-
|
|
197
|
+
[_0x3ab5ea(0xd3)](_0x2b812a) {
|
|
198
|
+
const _0xeea94a = _0x3ab5ea;
|
|
199
|
+
if (_0x2b812a[_0xeea94a(0x11a)][_0xeea94a(0xb5)](_0xeea94a(0x104))) {
|
|
200
|
+
const _0xd05440 = this[_0xeea94a(0xe1)][_0xeea94a(0x133)](
|
|
201
|
+
_0xeea94a(0xe9)
|
|
296
202
|
);
|
|
297
|
-
|
|
203
|
+
_0xd05440 && (_0xd05440[_0xeea94a(0xc0)](), _0xd05440["click"]());
|
|
298
204
|
}
|
|
299
205
|
}
|
|
300
|
-
[
|
|
301
|
-
const
|
|
302
|
-
if (
|
|
303
|
-
const
|
|
304
|
-
|
|
305
|
-
this[
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
this["render"]();
|
|
206
|
+
["handleUnitChange"](_0x2f6b2c) {
|
|
207
|
+
const _0x38ab54 = _0x3ab5ea;
|
|
208
|
+
if (_0x2f6b2c[_0x38ab54(0x11a)][_0x38ab54(0x12a)] === _0x38ab54(0x113)) {
|
|
209
|
+
const _0x5f13da = _0x2f6b2c[_0x38ab54(0x11a)][_0x38ab54(0xc2)],
|
|
210
|
+
_0x6ae195 =
|
|
211
|
+
this[_0x38ab54(0x10d)][this[_0x38ab54(0xb7)]][this[_0x38ab54(0xf7)]] /
|
|
212
|
+
this[_0x38ab54(0x10d)][this[_0x38ab54(0xb7)]][_0x5f13da];
|
|
213
|
+
(this[_0x38ab54(0xc2)] = this[_0x38ab54(0xc2)] * _0x6ae195),
|
|
214
|
+
(this["unit"] = _0x5f13da),
|
|
215
|
+
this[_0x38ab54(0xd5)]();
|
|
311
216
|
}
|
|
217
|
+
this["updateDropdownWidth"]();
|
|
312
218
|
}
|
|
313
|
-
[
|
|
314
|
-
const
|
|
315
|
-
return Number[
|
|
316
|
-
?
|
|
317
|
-
: Math[
|
|
318
|
-
?
|
|
319
|
-
[
|
|
320
|
-
[
|
|
321
|
-
:
|
|
219
|
+
[_0x3ab5ea(0xfb)](_0x464336) {
|
|
220
|
+
const _0x5f2ad8 = _0x3ab5ea;
|
|
221
|
+
return Number[_0x5f2ad8(0x119)](_0x464336)
|
|
222
|
+
? _0x464336[_0x5f2ad8(0xd0)]()
|
|
223
|
+
: Math[_0x5f2ad8(0xef)](_0x464336) !== 0x0
|
|
224
|
+
? _0x464336[_0x5f2ad8(0x12f)](this[_0x5f2ad8(0xf1)])
|
|
225
|
+
["replace"](/0+$/, "")
|
|
226
|
+
[_0x5f2ad8(0xc9)](/\.$/, "")
|
|
227
|
+
: _0x464336[_0x5f2ad8(0xf3)](0x3);
|
|
322
228
|
}
|
|
323
|
-
[
|
|
324
|
-
const
|
|
325
|
-
this[
|
|
326
|
-
|
|
327
|
-
this[
|
|
229
|
+
[_0x3ab5ea(0xd5)]() {
|
|
230
|
+
const _0x3d41d3 = _0x3ab5ea;
|
|
231
|
+
this[_0x3d41d3(0xe1)]["innerHTML"] =
|
|
232
|
+
_0x3d41d3(0xc7) +
|
|
233
|
+
(this[_0x3d41d3(0xee)] ? "auto" : _0x3d41d3(0x12c)) +
|
|
234
|
+
_0x3d41d3(0x105) +
|
|
235
|
+
(this[_0x3d41d3(0xee)] ? _0x3d41d3(0xcb) : _0x3d41d3(0x12c)) +
|
|
236
|
+
_0x3d41d3(0xb8) +
|
|
237
|
+
(this[_0x3d41d3(0xee)] ? _0x3d41d3(0xcb) : _0x3d41d3(0x12c)) +
|
|
238
|
+
_0x3d41d3(0xe7) +
|
|
239
|
+
this[_0x3d41d3(0xfb)](this["value"]) +
|
|
328
240
|
"</span>\x0a\x20\x20\x20\x20\x20\x20\x20\x20<div\x20class=\x22unit-container\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<select>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20" +
|
|
329
|
-
this[
|
|
330
|
-
[
|
|
331
|
-
(
|
|
332
|
-
|
|
333
|
-
|
|
241
|
+
(this[_0x3d41d3(0x108)][this[_0x3d41d3(0xb7)]] || [this[_0x3d41d3(0xf7)]])
|
|
242
|
+
[_0x3d41d3(0x103)](
|
|
243
|
+
(_0x598c6e) =>
|
|
244
|
+
_0x3d41d3(0xbc) +
|
|
245
|
+
_0x598c6e +
|
|
334
246
|
"\x22\x20" +
|
|
335
|
-
(
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
247
|
+
(_0x598c6e === this["unit"] ? _0x3d41d3(0xbe) : "") +
|
|
248
|
+
_0x3d41d3(0x12d) +
|
|
249
|
+
_0x598c6e +
|
|
250
|
+
_0x3d41d3(0xc3)
|
|
339
251
|
)
|
|
340
|
-
[
|
|
341
|
-
|
|
342
|
-
this[
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
252
|
+
[_0x3d41d3(0x10c)]("") +
|
|
253
|
+
_0x3d41d3(0x102) +
|
|
254
|
+
(this[_0x3d41d3(0xee)] && this["unitCategory"] !== _0x3d41d3(0xd6)
|
|
255
|
+
? _0x3d41d3(0x116) + this[_0x3d41d3(0x110)] + _0x3d41d3(0xbf)
|
|
256
|
+
: "") +
|
|
257
|
+
_0x3d41d3(0x135);
|
|
258
|
+
const _0x574502 = this[_0x3d41d3(0xe1)][_0x3d41d3(0x133)](_0x3d41d3(0x104)),
|
|
259
|
+
_0x163f05 = this[_0x3d41d3(0xe1)][_0x3d41d3(0x118)](_0x3d41d3(0xb9))[0x0];
|
|
260
|
+
_0x574502 &&
|
|
261
|
+
_0x163f05 &&
|
|
262
|
+
(_0x574502[_0x3d41d3(0xd8)](_0x3d41d3(0xd2), () => {
|
|
263
|
+
const _0x39ce69 = _0x3d41d3;
|
|
264
|
+
this[_0x39ce69(0x117)] = setTimeout(() => {
|
|
265
|
+
const _0x55903d = _0x39ce69;
|
|
266
|
+
_0x163f05["style"][_0x55903d(0xba)] = _0x55903d(0xd9);
|
|
267
|
+
}, 0x3e8);
|
|
268
|
+
}),
|
|
269
|
+
_0x574502["addEventListener"](_0x3d41d3(0x130), () => {
|
|
270
|
+
const _0x3065e1 = _0x3d41d3;
|
|
356
271
|
setTimeout(() => {
|
|
357
|
-
const
|
|
358
|
-
|
|
272
|
+
const _0x598df4 = _0x5953;
|
|
273
|
+
_0x163f05[_0x598df4(0x120)][_0x598df4(0xba)] = _0x598df4(0x12c);
|
|
359
274
|
}, 0x7d0),
|
|
360
|
-
clearTimeout(this[
|
|
275
|
+
clearTimeout(this[_0x3065e1(0x117)]);
|
|
361
276
|
}),
|
|
362
|
-
|
|
277
|
+
_0x163f05["addEventListener"]("mouseout", () => {
|
|
363
278
|
setTimeout(() => {
|
|
364
|
-
const
|
|
365
|
-
|
|
279
|
+
const _0x558ffc = _0x5953;
|
|
280
|
+
_0x163f05[_0x558ffc(0x120)][_0x558ffc(0xba)] = _0x558ffc(0x12c);
|
|
366
281
|
}, 0x7d0);
|
|
367
|
-
})
|
|
282
|
+
})),
|
|
283
|
+
this["updateDropdownWidth"]();
|
|
284
|
+
}
|
|
285
|
+
[_0x3ab5ea(0x106)]() {
|
|
286
|
+
const _0x59d23f = _0x3ab5ea,
|
|
287
|
+
_0x40f2c2 = this["shadowRoot"][_0x59d23f(0x133)](_0x59d23f(0xe9)),
|
|
288
|
+
_0x147d8c = _0x40f2c2[_0x59d23f(0x114)][_0x40f2c2[_0x59d23f(0xe3)]],
|
|
289
|
+
_0x263e52 = document[_0x59d23f(0x10a)]("span");
|
|
290
|
+
(_0x263e52["style"][_0x59d23f(0x126)] = _0x59d23f(0xce)),
|
|
291
|
+
(_0x263e52[_0x59d23f(0x120)][_0x59d23f(0x11c)] = _0x59d23f(0x11d)),
|
|
292
|
+
(_0x263e52["style"]["font"] = getComputedStyle(_0x40f2c2)["font"]),
|
|
293
|
+
document[_0x59d23f(0xed)][_0x59d23f(0xc1)](_0x263e52),
|
|
294
|
+
(_0x263e52[_0x59d23f(0x11b)] = _0x147d8c[_0x59d23f(0x10e)]);
|
|
295
|
+
const _0x4e251e = _0x263e52[_0x59d23f(0x121)];
|
|
296
|
+
document[_0x59d23f(0xed)][_0x59d23f(0xb6)](_0x263e52);
|
|
297
|
+
const _0x20cdac =
|
|
298
|
+
parseInt(getComputedStyle(_0x40f2c2)[_0x59d23f(0x100)]) +
|
|
299
|
+
parseInt(getComputedStyle(_0x40f2c2)[_0x59d23f(0xfc)]);
|
|
300
|
+
_0x40f2c2[_0x59d23f(0x120)][_0x59d23f(0xca)] = this[_0x59d23f(0xee)]
|
|
301
|
+
? _0x4e251e + _0x20cdac + 0x16 + "px"
|
|
302
|
+
: _0x4e251e + _0x20cdac + 0x4 + "px";
|
|
368
303
|
}
|
|
369
304
|
}
|
|
370
|
-
customElements[
|
|
371
|
-
class
|
|
372
|
-
|
|
373
|
-
|
|
305
|
+
customElements[_0x3ab5ea(0xbb)](_0x3ab5ea(0x10b), h);
|
|
306
|
+
class p extends h {}
|
|
307
|
+
function _0x5953(_0x5dc1fe, _0x3807a2) {
|
|
308
|
+
const _0x3902e2 = _0x3902();
|
|
309
|
+
return (
|
|
310
|
+
(_0x5953 = function (_0x5953ee, _0x432830) {
|
|
311
|
+
_0x5953ee = _0x5953ee - 0xb5;
|
|
312
|
+
let _0x3650bd = _0x3902e2[_0x5953ee];
|
|
313
|
+
return _0x3650bd;
|
|
314
|
+
}),
|
|
315
|
+
_0x5953(_0x5dc1fe, _0x3807a2)
|
|
316
|
+
);
|
|
317
|
+
}
|
|
318
|
+
customElements[_0x3ab5ea(0xbb)](_0x3ab5ea(0xe8), p);
|
|
319
|
+
export { h as default };
|
|
320
|
+
function _0x3902() {
|
|
321
|
+
const _0x333112 = [
|
|
322
|
+
"join",
|
|
323
|
+
"unitConversion",
|
|
324
|
+
"text",
|
|
325
|
+
"lbm/ft³",
|
|
326
|
+
"e3dLogoUrl",
|
|
327
|
+
"599988ZUJgGz",
|
|
328
|
+
"observedAttributes",
|
|
329
|
+
"SELECT",
|
|
330
|
+
"options",
|
|
331
|
+
"hasAttribute",
|
|
332
|
+
"\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<a\x20class=\x22tooltip\x22\x20href=\x22https://v2-docs.donwen.com/daily-calculations/unit-converter.html\x22\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title=\x22Unit\x20Converter\x20for\x20All\x20Categories\x22\x20target=\x22_blank\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<img\x20src=\x22",
|
|
333
|
+
"tooltipTimeout",
|
|
334
|
+
"querySelectorAll",
|
|
335
|
+
"isInteger",
|
|
336
|
+
"target",
|
|
337
|
+
"textContent",
|
|
338
|
+
"visibility",
|
|
339
|
+
"hidden",
|
|
340
|
+
"week",
|
|
341
|
+
"disconnectedCallback",
|
|
342
|
+
"style",
|
|
343
|
+
"offsetWidth",
|
|
344
|
+
"4385704SWYsuF",
|
|
345
|
+
"g/mm³",
|
|
346
|
+
"decimal-places",
|
|
347
|
+
"getAttribute",
|
|
348
|
+
"position",
|
|
349
|
+
"day",
|
|
350
|
+
"h[hour]",
|
|
351
|
+
"70020mkmsHH",
|
|
352
|
+
"tagName",
|
|
353
|
+
"2fxukKi",
|
|
354
|
+
"none",
|
|
355
|
+
">\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20",
|
|
356
|
+
"atm",
|
|
357
|
+
"toFixed",
|
|
358
|
+
"mouseout",
|
|
359
|
+
"in\x20HG",
|
|
360
|
+
"1274700DzbENP",
|
|
361
|
+
"querySelector",
|
|
362
|
+
"change",
|
|
363
|
+
"\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20</div>\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20</div>\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20",
|
|
364
|
+
"closest",
|
|
365
|
+
"removeChild",
|
|
366
|
+
"unitCategory",
|
|
367
|
+
";\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-webkit-appearance:\x20",
|
|
368
|
+
".tooltip",
|
|
369
|
+
"display",
|
|
370
|
+
"define",
|
|
371
|
+
"<option\x20value=\x22",
|
|
372
|
+
"kg/L",
|
|
373
|
+
"selected",
|
|
374
|
+
"\x22\x20width=\x2212\x22\x20/>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</a>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20",
|
|
375
|
+
"focus",
|
|
376
|
+
"appendChild",
|
|
377
|
+
"value",
|
|
378
|
+
"</option>",
|
|
379
|
+
"mbar",
|
|
380
|
+
"lbm/in³",
|
|
381
|
+
"https://firebasestorage.googleapis.com/v0/b/auto-calc-80237.appspot.com/o/shared%2Fassets%2Fimages%2Fe3d-logo2.png?alt=media&token=7064f466-6168-4b8a-b921-4e86115cb492",
|
|
382
|
+
"\x0a\x20\x20\x20\x20\x20\x20<style>\x0a\x20\x20\x20\x20\x20\x20\x20\x20:host\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20inline-block;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.quantity\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20flex;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20align-items:\x20center;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20relative;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.value\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20margin-left:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20margin-right:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20relative;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.unit-container\x20select\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20relative;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20inline-flex;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20align-items:\x20center;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20color:\x20blue;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20background-color:\x20lightgray;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20border-radius:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20border:\x20none;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20margin:\x200.25em;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20padding:\x201px\x203px;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20cursor:\x20pointer;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20appearance:\x20",
|
|
383
|
+
"push",
|
|
384
|
+
"replace",
|
|
385
|
+
"width",
|
|
386
|
+
"auto",
|
|
387
|
+
"mm\x20W.C.",
|
|
388
|
+
"minute",
|
|
389
|
+
"absolute",
|
|
390
|
+
"getUnitCategory",
|
|
391
|
+
"toString",
|
|
392
|
+
"kg/m³",
|
|
393
|
+
"mouseover",
|
|
394
|
+
"handleArrowClick",
|
|
395
|
+
"includes",
|
|
396
|
+
"render",
|
|
397
|
+
"Custom",
|
|
398
|
+
"GPa",
|
|
399
|
+
"addEventListener",
|
|
400
|
+
"block",
|
|
401
|
+
"removeEventListener",
|
|
402
|
+
"50lMgCvO",
|
|
403
|
+
"pow",
|
|
404
|
+
"lbm",
|
|
405
|
+
"psi",
|
|
406
|
+
"15XmQvpl",
|
|
407
|
+
"bind",
|
|
408
|
+
"shadowRoot",
|
|
409
|
+
"mm\x20HG",
|
|
410
|
+
"selectedIndex",
|
|
411
|
+
"m\x20W.C.",
|
|
412
|
+
"897NRVWCY",
|
|
413
|
+
"open",
|
|
414
|
+
";\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20.tooltip\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20position:\x20absolute;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20bottom:\x2075%;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20left:\x2085%;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20transform:\x20translateX(-50%);\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20padding:\x200;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20display:\x20none;\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20font-size:\x2012px;\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.tooltip\x20a\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20text-decoration:\x20none;\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20color:\x20blue;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20.tooltip\x20a:hover\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20text-decoration:\x20underline;\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20</style>\x0a\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20<div\x20class=\x22quantity\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20<span\x20class=\x22value\x22\x20style=\x22position:\x20relative;\x22>",
|
|
415
|
+
"uc-qty",
|
|
416
|
+
"select",
|
|
417
|
+
"ksi",
|
|
418
|
+
"bar",
|
|
419
|
+
"s[second]",
|
|
420
|
+
"body",
|
|
421
|
+
"showUnitArrow",
|
|
422
|
+
"floor",
|
|
423
|
+
"in\x20W.C.",
|
|
424
|
+
"decimalPlaces",
|
|
425
|
+
"true",
|
|
426
|
+
"toPrecision",
|
|
427
|
+
"psf",
|
|
428
|
+
"esu/s",
|
|
429
|
+
"attributeChangedCallback",
|
|
430
|
+
"unit",
|
|
431
|
+
"3799061qyximD",
|
|
432
|
+
"show-unit-arrow",
|
|
433
|
+
"6FmHHsF",
|
|
434
|
+
"formatValue",
|
|
435
|
+
"paddingRight",
|
|
436
|
+
"kPa",
|
|
437
|
+
"937541uOnjPr",
|
|
438
|
+
"handleUnitChange",
|
|
439
|
+
"paddingLeft",
|
|
440
|
+
"MPa",
|
|
441
|
+
"\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</select>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20",
|
|
442
|
+
"map",
|
|
443
|
+
".unit-container",
|
|
444
|
+
";\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-moz-appearance:\x20",
|
|
445
|
+
"updateDropdownWidth",
|
|
446
|
+
"9jJTxcl",
|
|
447
|
+
"units",
|
|
448
|
+
"713086vCIfcE",
|
|
449
|
+
"createElement",
|
|
450
|
+
"physical-quantity",
|
|
451
|
+
];
|
|
452
|
+
_0x3902 = function () {
|
|
453
|
+
return _0x333112;
|
|
454
|
+
};
|
|
455
|
+
return _0x3902();
|
|
456
|
+
}
|