Trying to extend custom AEM component
I'm trying to extend a custom site banner component in my application from another project. I've created the .content.xml, dialogExtension.xml and extendedSiteBanner.html. However I'm not seeing the hide checkbox under properties in the component that I'm trying to add.

Here's the xml for the .content.xml
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="cq:Component"
jcr:title="Extended Site Banner"
sling:resourceSuperType="other-project/components/structure/siteBanner/v1/siteBanner"
componentGroup=".hidden"
sling:resourceType = "com.mim.aem.mysite.core.models.sitebanner.ExtendedSiteBannerModel"/>
And here's the HTL:
<!-- extendedSiteBanner.html -->
<div data-sly-resource="${'/other-project/components/structure/siteBanner/siteBanner/siteBanner.html'}">
<!-- Checkbox to hide the site banner -->
<input type="checkbox" id="hideBannerCheckbox" data-sly-test="${!model.hideBanner}">
<label for="hideBannerCheckbox">Hide Site Banner</label>
</div>
