inferred-types 0.47.8 → 0.48.0
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/inferred-types/index.cjs +194 -0
- package/dist/inferred-types/tsconfig.tsbuildinfo +1 -1
- package/dist/runtime/dictionary/get.js +1 -1
- package/dist/runtime/initializers/createCssSelector.d.ts +24 -0
- package/dist/runtime/initializers/createCssSelector.d.ts.map +1 -0
- package/dist/runtime/initializers/createCssSelector.js +15 -0
- package/dist/runtime/initializers/index.d.ts +1 -0
- package/dist/runtime/initializers/index.d.ts.map +1 -1
- package/dist/runtime/initializers/index.js +1 -0
- package/dist/runtime/lists/indexOf.d.ts.map +1 -1
- package/dist/runtime/tsconfig.tsbuildinfo +1 -1
- package/dist/types/boolean-logic/branching/If.d.ts +2 -7
- package/dist/types/boolean-logic/branching/If.d.ts.map +1 -1
- package/dist/types/boolean-logic/narrowing/AsIndexOf.d.ts +2 -2
- package/dist/types/boolean-logic/narrowing/AsIndexOf.d.ts.map +1 -1
- package/dist/types/lists/IndexOf.d.ts +2 -2
- package/dist/types/lists/ToCSV.d.ts +2 -2
- package/dist/types/lists/ToCSV.d.ts.map +1 -1
- package/dist/types/runtime-types/TokenizeStringLiteral.d.ts +2 -2
- package/dist/types/string-literals/EnsureLeadingEvery.d.ts +2 -2
- package/dist/types/string-literals/EnsureLeadingEvery.d.ts.map +1 -1
- package/dist/types/string-literals/PathJoin.d.ts +9 -12
- package/dist/types/string-literals/PathJoin.d.ts.map +1 -1
- package/dist/types/string-literals/Prepend.d.ts +2 -2
- package/dist/types/string-literals/PrependAll.d.ts +2 -2
- package/dist/types/string-literals/PrependAll.d.ts.map +1 -1
- package/dist/types/string-literals/character-sets/Optional.d.ts +12 -0
- package/dist/types/string-literals/character-sets/Optional.d.ts.map +1 -1
- package/dist/types/string-literals/character-sets/css/html-element.d.ts +31 -0
- package/dist/types/string-literals/character-sets/css/html-element.d.ts.map +1 -0
- package/dist/types/string-literals/character-sets/css/html-element.js +1 -0
- package/dist/types/string-literals/character-sets/css/index.d.ts +3 -0
- package/dist/types/string-literals/character-sets/css/index.d.ts.map +1 -1
- package/dist/types/string-literals/character-sets/css/index.js +3 -0
- package/dist/types/string-literals/character-sets/css/pseudo-classes.d.ts +82 -0
- package/dist/types/string-literals/character-sets/css/pseudo-classes.d.ts.map +1 -0
- package/dist/types/string-literals/character-sets/css/pseudo-classes.js +2 -0
- package/dist/types/string-literals/character-sets/css/selector.d.ts +35 -0
- package/dist/types/string-literals/character-sets/css/selector.d.ts.map +1 -0
- package/dist/types/string-literals/character-sets/css/selector.js +1 -0
- package/dist/types/string-literals/character-sets/index.d.ts +1 -0
- package/dist/types/string-literals/character-sets/index.d.ts.map +1 -1
- package/dist/types/string-literals/character-sets/index.js +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dist/types/type-conversion/ToStringArray.d.ts +3 -3
- package/dist/types/type-conversion/ToStringArray.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -27,6 +27,17 @@ __export(inferred_types_exports, {
|
|
|
27
27
|
DEFAULT_MANY_TO_ONE_MAPPING: () => DEFAULT_MANY_TO_ONE_MAPPING,
|
|
28
28
|
DEFAULT_ONE_TO_MANY_MAPPING: () => DEFAULT_ONE_TO_MANY_MAPPING,
|
|
29
29
|
DEFAULT_ONE_TO_ONE_MAPPING: () => DEFAULT_ONE_TO_ONE_MAPPING,
|
|
30
|
+
ExifCompression: () => ExifCompression,
|
|
31
|
+
ExifContrast: () => ExifContrast,
|
|
32
|
+
ExifEmbedPolicy: () => ExifEmbedPolicy,
|
|
33
|
+
ExifFlashValues: () => ExifFlashValues,
|
|
34
|
+
ExifGainControl: () => ExifGainControl,
|
|
35
|
+
ExifLightSource: () => ExifLightSource,
|
|
36
|
+
ExifPreviewColorSpace: () => ExifPreviewColorSpace,
|
|
37
|
+
ExifSaturation: () => ExifSaturation,
|
|
38
|
+
ExifSceneCaptureType: () => ExifSceneCaptureType,
|
|
39
|
+
ExifSharpness: () => ExifSharpness,
|
|
40
|
+
ExifSubjectDistance: () => ExifSubjectDistance,
|
|
30
41
|
FALSY_TYPE_KINDS: () => FALSY_TYPE_KINDS,
|
|
31
42
|
FALSY_VALUES: () => FALSY_VALUES,
|
|
32
43
|
GITHUB_INSIGHT_CATEGORY_LOOKUP: () => GITHUB_INSIGHT_CATEGORY_LOOKUP,
|
|
@@ -153,6 +164,7 @@ __export(inferred_types_exports, {
|
|
|
153
164
|
choices: () => choices,
|
|
154
165
|
createConstant: () => createConstant,
|
|
155
166
|
createConverter: () => createConverter,
|
|
167
|
+
createCssSelector: () => createCssSelector,
|
|
156
168
|
createErrorCondition: () => createErrorCondition,
|
|
157
169
|
createFifoQueue: () => createFifoQueue,
|
|
158
170
|
createFnWithProps: () => createFnWithProps,
|
|
@@ -1787,6 +1799,171 @@ var MapCardinality = /* @__PURE__ */ ((MapCardinality2) => {
|
|
|
1787
1799
|
return MapCardinality2;
|
|
1788
1800
|
})(MapCardinality || {});
|
|
1789
1801
|
|
|
1802
|
+
// src/types/string-literals/character-sets/images/Exif.ts
|
|
1803
|
+
var ExifCompression = /* @__PURE__ */ ((ExifCompression2) => {
|
|
1804
|
+
ExifCompression2[ExifCompression2["Uncompressed"] = 1] = "Uncompressed";
|
|
1805
|
+
ExifCompression2[ExifCompression2["CCITT"] = 2] = "CCITT";
|
|
1806
|
+
ExifCompression2[ExifCompression2["T4Group3Fax"] = 3] = "T4Group3Fax";
|
|
1807
|
+
ExifCompression2[ExifCompression2["T6Group3Fax"] = 4] = "T6Group3Fax";
|
|
1808
|
+
ExifCompression2[ExifCompression2["LZW"] = 5] = "LZW";
|
|
1809
|
+
ExifCompression2[ExifCompression2["JpgOldStyle"] = 6] = "JpgOldStyle";
|
|
1810
|
+
ExifCompression2[ExifCompression2["Jpg"] = 7] = "Jpg";
|
|
1811
|
+
ExifCompression2[ExifCompression2["AdobeDeflate"] = 8] = "AdobeDeflate";
|
|
1812
|
+
ExifCompression2[ExifCompression2["JBigBw"] = 9] = "JBigBw";
|
|
1813
|
+
ExifCompression2[ExifCompression2["JBigColor"] = 10] = "JBigColor";
|
|
1814
|
+
ExifCompression2[ExifCompression2["JpegAlt"] = 99] = "JpegAlt";
|
|
1815
|
+
ExifCompression2[ExifCompression2["Kodak262"] = 262] = "Kodak262";
|
|
1816
|
+
ExifCompression2[ExifCompression2["Next"] = 32766] = "Next";
|
|
1817
|
+
ExifCompression2[ExifCompression2["SonyRawCompressed"] = 32767] = "SonyRawCompressed";
|
|
1818
|
+
ExifCompression2[ExifCompression2["PackedRaw"] = 32769] = "PackedRaw";
|
|
1819
|
+
ExifCompression2[ExifCompression2["SamsungSrwCompressed"] = 32770] = "SamsungSrwCompressed";
|
|
1820
|
+
ExifCompression2[ExifCompression2["CCIRLEW"] = 32771] = "CCIRLEW";
|
|
1821
|
+
ExifCompression2[ExifCompression2["SamsungSrwCompressed2"] = 32772] = "SamsungSrwCompressed2";
|
|
1822
|
+
ExifCompression2[ExifCompression2["Packbits"] = 32773] = "Packbits";
|
|
1823
|
+
ExifCompression2[ExifCompression2["Thunderscan"] = 32809] = "Thunderscan";
|
|
1824
|
+
ExifCompression2[ExifCompression2["KodakKdcCompressed"] = 32867] = "KodakKdcCompressed";
|
|
1825
|
+
ExifCompression2[ExifCompression2["IT8CTPAD"] = 32895] = "IT8CTPAD";
|
|
1826
|
+
ExifCompression2[ExifCompression2["IT8LW"] = 32896] = "IT8LW";
|
|
1827
|
+
ExifCompression2[ExifCompression2["IT8MP"] = 32897] = "IT8MP";
|
|
1828
|
+
ExifCompression2[ExifCompression2["IT8BL"] = 32898] = "IT8BL";
|
|
1829
|
+
ExifCompression2[ExifCompression2["PixarFilm"] = 32908] = "PixarFilm";
|
|
1830
|
+
ExifCompression2[ExifCompression2["PixarLog"] = 32909] = "PixarLog";
|
|
1831
|
+
ExifCompression2[ExifCompression2["Deflate"] = 32946] = "Deflate";
|
|
1832
|
+
ExifCompression2[ExifCompression2["DCS"] = 32947] = "DCS";
|
|
1833
|
+
ExifCompression2[ExifCompression2["AperioJpeg2000YCbCr"] = 33003] = "AperioJpeg2000YCbCr";
|
|
1834
|
+
ExifCompression2[ExifCompression2["AperioJpeg2000RGB"] = 33005] = "AperioJpeg2000RGB";
|
|
1835
|
+
ExifCompression2[ExifCompression2["JBig"] = 34661] = "JBig";
|
|
1836
|
+
ExifCompression2[ExifCompression2["SGILog"] = 34676] = "SGILog";
|
|
1837
|
+
ExifCompression2[ExifCompression2["SGILog24"] = 34677] = "SGILog24";
|
|
1838
|
+
ExifCompression2[ExifCompression2["Jpeg2000"] = 34712] = "Jpeg2000";
|
|
1839
|
+
ExifCompression2[ExifCompression2["NikonNEFCompressed"] = 34713] = "NikonNEFCompressed";
|
|
1840
|
+
ExifCompression2[ExifCompression2["JBig2TiffFx"] = 34715] = "JBig2TiffFx";
|
|
1841
|
+
ExifCompression2[ExifCompression2["MicrosoftBinaryLevelCodec"] = 34718] = "MicrosoftBinaryLevelCodec";
|
|
1842
|
+
ExifCompression2[ExifCompression2["MicrosoftProgressiveTransformCodec"] = 34719] = "MicrosoftProgressiveTransformCodec";
|
|
1843
|
+
ExifCompression2[ExifCompression2["MicrosoftVector"] = 34720] = "MicrosoftVector";
|
|
1844
|
+
ExifCompression2[ExifCompression2["ESRCLerc"] = 34887] = "ESRCLerc";
|
|
1845
|
+
ExifCompression2[ExifCompression2["LossyJpeg"] = 34892] = "LossyJpeg";
|
|
1846
|
+
ExifCompression2[ExifCompression2["LZMA2"] = 34925] = "LZMA2";
|
|
1847
|
+
ExifCompression2[ExifCompression2["Zstd"] = 34926] = "Zstd";
|
|
1848
|
+
ExifCompression2[ExifCompression2["WepP"] = 34927] = "WepP";
|
|
1849
|
+
ExifCompression2[ExifCompression2["PNG"] = 34933] = "PNG";
|
|
1850
|
+
ExifCompression2[ExifCompression2["JpegXR"] = 34934] = "JpegXR";
|
|
1851
|
+
ExifCompression2[ExifCompression2["KodakDCRCompressed"] = 65e3] = "KodakDCRCompressed";
|
|
1852
|
+
ExifCompression2[ExifCompression2["PentaxPEFCompressed"] = 65535] = "PentaxPEFCompressed";
|
|
1853
|
+
return ExifCompression2;
|
|
1854
|
+
})(ExifCompression || {});
|
|
1855
|
+
var ExifLightSource = /* @__PURE__ */ ((ExifLightSource2) => {
|
|
1856
|
+
ExifLightSource2[ExifLightSource2["Unknown"] = 0] = "Unknown";
|
|
1857
|
+
ExifLightSource2[ExifLightSource2["Daylight"] = 1] = "Daylight";
|
|
1858
|
+
ExifLightSource2[ExifLightSource2["Fluorescent"] = 2] = "Fluorescent";
|
|
1859
|
+
ExifLightSource2[ExifLightSource2["Tungsten"] = 3] = "Tungsten";
|
|
1860
|
+
ExifLightSource2[ExifLightSource2["Flash"] = 4] = "Flash";
|
|
1861
|
+
ExifLightSource2[ExifLightSource2["FineWeather"] = 5] = "FineWeather";
|
|
1862
|
+
ExifLightSource2[ExifLightSource2["Cloudy"] = 6] = "Cloudy";
|
|
1863
|
+
ExifLightSource2[ExifLightSource2["Shade"] = 7] = "Shade";
|
|
1864
|
+
ExifLightSource2[ExifLightSource2["DaylightFluorescent"] = 8] = "DaylightFluorescent";
|
|
1865
|
+
ExifLightSource2[ExifLightSource2["DayWhiteFluorescent"] = 9] = "DayWhiteFluorescent";
|
|
1866
|
+
ExifLightSource2[ExifLightSource2["CoolWhiteFluorescent"] = 10] = "CoolWhiteFluorescent";
|
|
1867
|
+
ExifLightSource2[ExifLightSource2["WhiteFluorescent"] = 11] = "WhiteFluorescent";
|
|
1868
|
+
ExifLightSource2[ExifLightSource2["WarmWhiteFluorescent"] = 12] = "WarmWhiteFluorescent";
|
|
1869
|
+
ExifLightSource2[ExifLightSource2["StandardLightA"] = 13] = "StandardLightA";
|
|
1870
|
+
ExifLightSource2[ExifLightSource2["StandardLightB"] = 14] = "StandardLightB";
|
|
1871
|
+
ExifLightSource2[ExifLightSource2["StandardLightC"] = 15] = "StandardLightC";
|
|
1872
|
+
ExifLightSource2[ExifLightSource2["D55"] = 16] = "D55";
|
|
1873
|
+
ExifLightSource2[ExifLightSource2["D65"] = 17] = "D65";
|
|
1874
|
+
ExifLightSource2[ExifLightSource2["D75"] = 18] = "D75";
|
|
1875
|
+
ExifLightSource2[ExifLightSource2["D50"] = 19] = "D50";
|
|
1876
|
+
ExifLightSource2[ExifLightSource2["ISOStudioTungsten"] = 20] = "ISOStudioTungsten";
|
|
1877
|
+
ExifLightSource2[ExifLightSource2["Other"] = 255] = "Other";
|
|
1878
|
+
return ExifLightSource2;
|
|
1879
|
+
})(ExifLightSource || {});
|
|
1880
|
+
var ExifFlashValues = /* @__PURE__ */ ((ExifFlashValues2) => {
|
|
1881
|
+
ExifFlashValues2[ExifFlashValues2["NoFlash"] = 0] = "NoFlash";
|
|
1882
|
+
ExifFlashValues2[ExifFlashValues2["Fired"] = 1] = "Fired";
|
|
1883
|
+
ExifFlashValues2[ExifFlashValues2["FiredReturnNotDetected"] = 5] = "FiredReturnNotDetected";
|
|
1884
|
+
ExifFlashValues2[ExifFlashValues2["FiredReturnDetected"] = 7] = "FiredReturnDetected";
|
|
1885
|
+
ExifFlashValues2[ExifFlashValues2["OnDidNotFire"] = 8] = "OnDidNotFire";
|
|
1886
|
+
ExifFlashValues2[ExifFlashValues2["OnFired"] = 9] = "OnFired";
|
|
1887
|
+
ExifFlashValues2[ExifFlashValues2["OnReturnNotDetected"] = 13] = "OnReturnNotDetected";
|
|
1888
|
+
ExifFlashValues2[ExifFlashValues2["OnReturnDetected"] = 15] = "OnReturnDetected";
|
|
1889
|
+
ExifFlashValues2[ExifFlashValues2["OffDidNotFire"] = 16] = "OffDidNotFire";
|
|
1890
|
+
ExifFlashValues2[ExifFlashValues2["OffDidNotFireReturnNotDetected"] = 20] = "OffDidNotFireReturnNotDetected";
|
|
1891
|
+
ExifFlashValues2[ExifFlashValues2["AutoDidNotFire"] = 24] = "AutoDidNotFire";
|
|
1892
|
+
ExifFlashValues2[ExifFlashValues2["AutoFired"] = 25] = "AutoFired";
|
|
1893
|
+
ExifFlashValues2[ExifFlashValues2["AutoFiredReturnNotDetected"] = 29] = "AutoFiredReturnNotDetected";
|
|
1894
|
+
ExifFlashValues2[ExifFlashValues2["AutoFiredReturnDetected"] = 31] = "AutoFiredReturnDetected";
|
|
1895
|
+
ExifFlashValues2[ExifFlashValues2["NoFlashFunction"] = 32] = "NoFlashFunction";
|
|
1896
|
+
ExifFlashValues2[ExifFlashValues2["OffNoFlashFunction"] = 48] = "OffNoFlashFunction";
|
|
1897
|
+
ExifFlashValues2[ExifFlashValues2["FiredRedEyeReduction"] = 65] = "FiredRedEyeReduction";
|
|
1898
|
+
ExifFlashValues2[ExifFlashValues2["FiredRedEyeReductionReturnNotDetected"] = 69] = "FiredRedEyeReductionReturnNotDetected";
|
|
1899
|
+
ExifFlashValues2[ExifFlashValues2["FiredRedEyeReductionReturnDetected"] = 71] = "FiredRedEyeReductionReturnDetected";
|
|
1900
|
+
ExifFlashValues2[ExifFlashValues2["OnRedEyeReduction"] = 73] = "OnRedEyeReduction";
|
|
1901
|
+
ExifFlashValues2[ExifFlashValues2["OnRedEyeReductionReturnNotDetected"] = 77] = "OnRedEyeReductionReturnNotDetected";
|
|
1902
|
+
ExifFlashValues2[ExifFlashValues2["OnRedEyeReductionReturnDetected"] = 79] = "OnRedEyeReductionReturnDetected";
|
|
1903
|
+
ExifFlashValues2[ExifFlashValues2["OffRedEyeReduction"] = 80] = "OffRedEyeReduction";
|
|
1904
|
+
ExifFlashValues2[ExifFlashValues2["AutoDidNotFireRedEyeReduction"] = 88] = "AutoDidNotFireRedEyeReduction";
|
|
1905
|
+
ExifFlashValues2[ExifFlashValues2["AutoFiredRedEyeReduction"] = 89] = "AutoFiredRedEyeReduction";
|
|
1906
|
+
ExifFlashValues2[ExifFlashValues2["AutoFiredRedEyeReductionNotDetected"] = 96] = "AutoFiredRedEyeReductionNotDetected";
|
|
1907
|
+
ExifFlashValues2[ExifFlashValues2["AutoFiredRedEyeReductionDetected"] = 93] = "AutoFiredRedEyeReductionDetected";
|
|
1908
|
+
return ExifFlashValues2;
|
|
1909
|
+
})(ExifFlashValues || {});
|
|
1910
|
+
var ExifPreviewColorSpace = /* @__PURE__ */ ((ExifPreviewColorSpace2) => {
|
|
1911
|
+
ExifPreviewColorSpace2[ExifPreviewColorSpace2["Unknown"] = 0] = "Unknown";
|
|
1912
|
+
ExifPreviewColorSpace2[ExifPreviewColorSpace2["GrayGamma22"] = 1] = "GrayGamma22";
|
|
1913
|
+
ExifPreviewColorSpace2[ExifPreviewColorSpace2["sRGB"] = 2] = "sRGB";
|
|
1914
|
+
ExifPreviewColorSpace2[ExifPreviewColorSpace2["AdobeRGB"] = 3] = "AdobeRGB";
|
|
1915
|
+
ExifPreviewColorSpace2[ExifPreviewColorSpace2["ProPhotoRGB"] = 4] = "ProPhotoRGB";
|
|
1916
|
+
return ExifPreviewColorSpace2;
|
|
1917
|
+
})(ExifPreviewColorSpace || {});
|
|
1918
|
+
var ExifEmbedPolicy = /* @__PURE__ */ ((ExifEmbedPolicy2) => {
|
|
1919
|
+
ExifEmbedPolicy2[ExifEmbedPolicy2["AllowCopying"] = 0] = "AllowCopying";
|
|
1920
|
+
ExifEmbedPolicy2[ExifEmbedPolicy2["EmbedIfUsed"] = 1] = "EmbedIfUsed";
|
|
1921
|
+
ExifEmbedPolicy2[ExifEmbedPolicy2["NeverEmbed"] = 2] = "NeverEmbed";
|
|
1922
|
+
ExifEmbedPolicy2[ExifEmbedPolicy2["NoRestrictions"] = 3] = "NoRestrictions";
|
|
1923
|
+
return ExifEmbedPolicy2;
|
|
1924
|
+
})(ExifEmbedPolicy || {});
|
|
1925
|
+
var ExifSubjectDistance = /* @__PURE__ */ ((ExifSubjectDistance2) => {
|
|
1926
|
+
ExifSubjectDistance2[ExifSubjectDistance2["Unknown"] = 0] = "Unknown";
|
|
1927
|
+
ExifSubjectDistance2[ExifSubjectDistance2["Macro"] = 1] = "Macro";
|
|
1928
|
+
ExifSubjectDistance2[ExifSubjectDistance2["Close"] = 2] = "Close";
|
|
1929
|
+
ExifSubjectDistance2[ExifSubjectDistance2["Distant"] = 3] = "Distant";
|
|
1930
|
+
return ExifSubjectDistance2;
|
|
1931
|
+
})(ExifSubjectDistance || {});
|
|
1932
|
+
var ExifSharpness = /* @__PURE__ */ ((ExifSharpness2) => {
|
|
1933
|
+
ExifSharpness2[ExifSharpness2["Normal"] = 0] = "Normal";
|
|
1934
|
+
ExifSharpness2[ExifSharpness2["Soft"] = 1] = "Soft";
|
|
1935
|
+
ExifSharpness2[ExifSharpness2["Hard"] = 2] = "Hard";
|
|
1936
|
+
return ExifSharpness2;
|
|
1937
|
+
})(ExifSharpness || {});
|
|
1938
|
+
var ExifSceneCaptureType = /* @__PURE__ */ ((ExifSceneCaptureType2) => {
|
|
1939
|
+
ExifSceneCaptureType2[ExifSceneCaptureType2["Standard"] = 0] = "Standard";
|
|
1940
|
+
ExifSceneCaptureType2[ExifSceneCaptureType2["Landscape"] = 1] = "Landscape";
|
|
1941
|
+
ExifSceneCaptureType2[ExifSceneCaptureType2["Portrait"] = 2] = "Portrait";
|
|
1942
|
+
ExifSceneCaptureType2[ExifSceneCaptureType2["Night"] = 3] = "Night";
|
|
1943
|
+
ExifSceneCaptureType2[ExifSceneCaptureType2["Other"] = 4] = "Other";
|
|
1944
|
+
return ExifSceneCaptureType2;
|
|
1945
|
+
})(ExifSceneCaptureType || {});
|
|
1946
|
+
var ExifGainControl = /* @__PURE__ */ ((ExifGainControl2) => {
|
|
1947
|
+
ExifGainControl2[ExifGainControl2["None"] = 0] = "None";
|
|
1948
|
+
ExifGainControl2[ExifGainControl2["LowGainUp"] = 1] = "LowGainUp";
|
|
1949
|
+
ExifGainControl2[ExifGainControl2["HighGainUp"] = 2] = "HighGainUp";
|
|
1950
|
+
ExifGainControl2[ExifGainControl2["LowGainDown"] = 3] = "LowGainDown";
|
|
1951
|
+
ExifGainControl2[ExifGainControl2["HighGainDown"] = 4] = "HighGainDown";
|
|
1952
|
+
return ExifGainControl2;
|
|
1953
|
+
})(ExifGainControl || {});
|
|
1954
|
+
var ExifContrast = /* @__PURE__ */ ((ExifContrast2) => {
|
|
1955
|
+
ExifContrast2[ExifContrast2["Normal"] = 0] = "Normal";
|
|
1956
|
+
ExifContrast2[ExifContrast2["Low"] = 1] = "Low";
|
|
1957
|
+
ExifContrast2[ExifContrast2["High"] = 2] = "High";
|
|
1958
|
+
return ExifContrast2;
|
|
1959
|
+
})(ExifContrast || {});
|
|
1960
|
+
var ExifSaturation = /* @__PURE__ */ ((ExifSaturation2) => {
|
|
1961
|
+
ExifSaturation2[ExifSaturation2["Normal"] = 0] = "Normal";
|
|
1962
|
+
ExifSaturation2[ExifSaturation2["Low"] = 1] = "Low";
|
|
1963
|
+
ExifSaturation2[ExifSaturation2["High"] = 2] = "High";
|
|
1964
|
+
return ExifSaturation2;
|
|
1965
|
+
})(ExifSaturation || {});
|
|
1966
|
+
|
|
1790
1967
|
// src/runtime/api/defineApi.ts
|
|
1791
1968
|
var asEscapeFunction = (fn2) => createFnWithProps(fn2, { escape: true });
|
|
1792
1969
|
var asOptionalParamFunction = (fn2) => createFnWithProps(fn2, { optionalParams: true });
|
|
@@ -3130,6 +3307,11 @@ var defineTuple = (...values) => {
|
|
|
3130
3307
|
);
|
|
3131
3308
|
};
|
|
3132
3309
|
|
|
3310
|
+
// src/runtime/initializers/createCssSelector.ts
|
|
3311
|
+
var createCssSelector = (_opt) => (...selectors) => {
|
|
3312
|
+
return selectors.join(" ");
|
|
3313
|
+
};
|
|
3314
|
+
|
|
3133
3315
|
// src/runtime/lists/asArray.ts
|
|
3134
3316
|
var asArray = (thing) => {
|
|
3135
3317
|
return Array.isArray(thing) === true ? (
|
|
@@ -3754,6 +3936,17 @@ var asVueRef = (value) => ({
|
|
|
3754
3936
|
DEFAULT_MANY_TO_ONE_MAPPING,
|
|
3755
3937
|
DEFAULT_ONE_TO_MANY_MAPPING,
|
|
3756
3938
|
DEFAULT_ONE_TO_ONE_MAPPING,
|
|
3939
|
+
ExifCompression,
|
|
3940
|
+
ExifContrast,
|
|
3941
|
+
ExifEmbedPolicy,
|
|
3942
|
+
ExifFlashValues,
|
|
3943
|
+
ExifGainControl,
|
|
3944
|
+
ExifLightSource,
|
|
3945
|
+
ExifPreviewColorSpace,
|
|
3946
|
+
ExifSaturation,
|
|
3947
|
+
ExifSceneCaptureType,
|
|
3948
|
+
ExifSharpness,
|
|
3949
|
+
ExifSubjectDistance,
|
|
3757
3950
|
FALSY_TYPE_KINDS,
|
|
3758
3951
|
FALSY_VALUES,
|
|
3759
3952
|
GITHUB_INSIGHT_CATEGORY_LOOKUP,
|
|
@@ -3880,6 +4073,7 @@ var asVueRef = (value) => ({
|
|
|
3880
4073
|
choices,
|
|
3881
4074
|
createConstant,
|
|
3882
4075
|
createConverter,
|
|
4076
|
+
createCssSelector,
|
|
3883
4077
|
createErrorCondition,
|
|
3884
4078
|
createFifoQueue,
|
|
3885
4079
|
createFnWithProps,
|