Skip to content

Commit ddbc35c

Browse files
committed
Prepare for v6.1.2
1 parent 95b1190 commit ddbc35c

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ npm i @acpaas-ui/ngx-forms
4444
Edit styles.scss to import the branding look & feel.
4545

4646
```scss
47-
@import url('https://cdn.antwerpen.be/core_branding_scss/6.6.1/main.min.css');
47+
@import url('https://cdn.antwerpen.be/core_branding_scss/6.6.6/main.min.css');
4848
```
4949

5050
You can also modify `index.html` to reference the [favicons for the city of Antwerp][branding-favicons].

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "6.1.2"
5+
"version": "6.1.1"
66
}

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@acpaas-ui/ngx-components",
33
"description": "Antwerp UI is a component interface library for building user interfaces and responsive web apps.",
4-
"version": "6.0.8",
4+
"version": "6.1.1",
55
"keywords": [
66
"Angular",
77
"Digipolis",

packages/ngx-icon/src/lib/icon.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class IconComponent implements OnInit {
3030

3131
private fetchAntwerpIcons = async () => {
3232
try {
33-
const xlinkHref = 'https://cdn.antwerpen.be/core_branding_scss/6.6.1/assets/images/ai.svg';
33+
const xlinkHref = 'https://cdn.antwerpen.be/core_branding_scss/6.6.6/assets/images/ai.svg';
3434
const response = await fetch(xlinkHref);
3535
const svgText = await response.text();
3636
const svgWrapper = this.renderer.createElement('svg');

packages/ngx-logo/src/lib/components/logo/logo.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Router } from '@angular/router';
77
})
88
export class LogoComponent {
99
@Input() title = 'Ga naar homepage.';
10-
@Input() src = 'https://cdn.antwerpen.be/core_branding_scss/6.6.1/assets/images/a-logo.svg';
10+
@Input() src = 'https://cdn.antwerpen.be/core_branding_scss/6.6.6/assets/images/a-logo.svg';
1111
@Input() link?: string;
1212
@Input() onClick?: (event: MouseEvent) => void;
1313

packages/styleguide/src/app/components/header/header.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<aui-header>
22
<div auiHeaderLogo>
3-
<aui-logo [link]="'/'" src="https://cdn.antwerpen.be/core_branding_scss/6.6.1/assets/images/a-logo.svg"
3+
<aui-logo [link]="'/'" src="https://cdn.antwerpen.be/core_branding_scss/6.6.6/assets/images/a-logo.svg"
44
title="Antwerp logo."></aui-logo>
55
</div>
66
<div auiHeaderMenuItem>

packages/styleguide/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>Antwerp UI Angular</title>
66
<base href="/">
7-
<link rel="stylesheet" href="https://cdn.antwerpen.be/core_branding_scss/6.6.1/main.min.css">
7+
<link rel="stylesheet" href="https://cdn.antwerpen.be/core_branding_scss/6.6.6/main.min.css">
88
<link rel="stylesheet" href="https://cdn.antwerpen.be/core_flexboxgrid_scss/3.0.0/flexboxgrid.min.css">
99
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/a11y-light.min.css">
1010
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn.antwerpen.be/core_branding_favicons/citizens/apple-touch-icon.png">

0 commit comments

Comments
 (0)