@cccsaurora/howler-ui 2.15.0-dev.310 → 2.15.0-dev.313
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.
|
@@ -46,7 +46,15 @@ const HandlebarsMarkdown = ({ md, object = {}, disableLinks = false }) => {
|
|
|
46
46
|
setMdComponents(_components => ({ ..._components, [id]: result }));
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
-
|
|
49
|
+
/*
|
|
50
|
+
We add two newlines because:
|
|
51
|
+
|
|
52
|
+
## Hello, World
|
|
53
|
+
`123123123`
|
|
54
|
+
|
|
55
|
+
does not parse as a code object.
|
|
56
|
+
*/
|
|
57
|
+
return new Handlebars.SafeString(`\n\n\`${id}\``);
|
|
50
58
|
}
|
|
51
59
|
return helper.callback(...args);
|
|
52
60
|
});
|
package/package.json
CHANGED
package/plugins/store.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Hit } from '@cccsaurora/howler-ui/models/entities/generated/Hit';
|
|
2
2
|
import { Event } from 'react-pluggable';
|
|
3
|
-
import type HowlerPlugin from './HowlerPlugin';
|
|
4
3
|
import type { AppLeftNavElement } from '../commons/components/app/AppConfigs';
|
|
4
|
+
import type HowlerPlugin from './HowlerPlugin';
|
|
5
5
|
export declare class HitEvent extends Event {
|
|
6
6
|
hit: Hit;
|
|
7
7
|
constructor(type: string, hit: Hit);
|