@typespec/html-program-viewer 0.59.0-dev.0 → 0.59.0-dev.1

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.
@@ -1428,7 +1428,7 @@ props, allowedPropNames, excludedPropNames) {
1428
1428
  const keys = Object.keys(props);
1429
1429
  for (const key of keys){
1430
1430
  const isNativeProp = !isArray && allowedPropNames[key] || isArray && allowedPropNames.indexOf(key) >= 0 || key.indexOf('data-') === 0 || key.indexOf('aria-') === 0;
1431
- if (isNativeProp && (!excludedPropNames )) {
1431
+ if (isNativeProp && (!excludedPropNames)) {
1432
1432
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
1433
1433
  result[key] = props[key];
1434
1434
  }
@@ -0,0 +1,6 @@
1
+ const manifest = {
2
+ "version": "0.58.1",
3
+ "commit": "54c6d889564a230afc1b9f13c71905171e350fb3"
4
+ };
5
+
6
+ export { manifest as default };