Hello, I am attempting to transition my calcite date picker component to 1.4.2 from 1.0.0-beta.83 and I cannot for the life of me figure it out. I can usually figure out what I need using the sample creator despite a lack of good documentation and examples, but the sample creator seems to break when proximity-selection-disabled is true. Here is the HTML I had running previously:
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<script type="module" src=https://js.arcgis.com/calcite-components/1.0.0-beta.83/calcite.esm.js></script>
<link rel="stylesheet" type="text/css" href=https://js.arcgis.com/calcite-components/1.0.0-beta.83/calcite.css />
</head>
<body>
<calcite-date-picker id="calendar" end="2021-01-02" label="calendar" layout="vertical"
max="2500-01-01" min="1900-01-01" range scale="s" proximity-selection-disabled="true" start="2021-01-01"></calcite-date-picker>
</body>
</html> Any help would be appreciated.