@conduction/docusaurus-preset 3.27.0 → 3.27.2
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/package.json
CHANGED
|
@@ -39,6 +39,12 @@ export default function AppGlyph({app, className, title, ...rest}) {
|
|
|
39
39
|
viewBox={glyph.viewBox}
|
|
40
40
|
className={className}
|
|
41
41
|
fill="currentColor"
|
|
42
|
+
// These are FILLED brand glyphs. Force stroke off inline so a
|
|
43
|
+
// container's line-icon rule (e.g. .iconWrap svg { stroke: currentColor;
|
|
44
|
+
// stroke-width: 2 }) can't paint a 2px outline over the fill and bloat
|
|
45
|
+
// the mark. Inline style beats module CSS, so this fixes every consumer
|
|
46
|
+
// (apps grid, detail hero, cross-links, connext) in one place.
|
|
47
|
+
style={{fill: 'currentColor', stroke: 'none'}}
|
|
42
48
|
role={title ? 'img' : undefined}
|
|
43
49
|
aria-hidden={title ? undefined : 'true'}
|
|
44
50
|
aria-label={title}
|
|
@@ -43,6 +43,12 @@ export const APPS_REGISTRY = {
|
|
|
43
43
|
openbuild: {slug: 'openbuild', name: 'OpenBuild', category: 'Processes', productHref: '/apps/openbuild', docsHref: 'https://openbuild.conduction.nl', academyHref: '/academy?app=openbuild'},
|
|
44
44
|
doriath: {slug: 'doriath', name: 'Doriath', category: 'Connectors', productHref: '/apps/doriath', docsHref: 'https://doriath.conduction.nl', academyHref: '/academy?app=doriath'},
|
|
45
45
|
'app-versions': {slug: 'app-versions', name: 'App Versions', category: 'Data', productHref: '/apps/app-versions', docsHref: 'https://app-versions.conduction.nl', academyHref: '/academy?app=app-versions'},
|
|
46
|
+
hermiq: {slug: 'hermiq', name: 'Hermiq', category: 'AI', productHref: '/apps/hermiq', docsHref: 'https://hermiq.conduction.nl', academyHref: '/academy?app=hermiq'},
|
|
47
|
+
hrmq: {slug: 'hrmq', name: 'HRMQ', category: 'Processes', productHref: '/apps/hrmq', docsHref: 'https://hrmq.conduction.nl', academyHref: '/academy?app=hrmq'},
|
|
48
|
+
openanonymiser: {slug: 'openanonymiser', name: 'OpenAnonymiser', category: 'Documents', productHref: '/apps/openanonymiser', docsHref: 'https://openanonymiser.conduction.nl', academyHref: '/academy?app=openanonymiser'},
|
|
49
|
+
planix: {slug: 'planix', name: 'Planix', category: 'Processes', productHref: '/apps/planix', docsHref: 'https://planix.conduction.nl', academyHref: '/academy?app=planix'},
|
|
50
|
+
portaliq: {slug: 'portaliq', name: 'Portaliq', category: 'Processes', productHref: '/apps/portaliq', docsHref: 'https://portaliq.conduction.nl', academyHref: '/academy?app=portaliq'},
|
|
51
|
+
scholiq: {slug: 'scholiq', name: 'Scholiq', category: 'Processes', productHref: '/apps/scholiq', docsHref: 'https://scholiq.conduction.nl', academyHref: '/academy?app=scholiq'},
|
|
46
52
|
};
|
|
47
53
|
|
|
48
54
|
/**
|