Skip to content

Commit de5466a

Browse files
committed
'[CHECKPOINT]' updated package to conform with @windmillcode/wml-components-base version 19.0.5100
1 parent ca922d1 commit de5466a

File tree

31 files changed

+120
-130
lines changed

31 files changed

+120
-130
lines changed

package-lock.json

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

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@
1919
"@angular/platform-browser": "19.0.5",
2020
"@angular/platform-browser-dynamic": "19.0.5",
2121
"@angular/router": "19.0.5",
22-
"@ngx-translate/core": "^16.0.0",
23-
"@ngx-translate/http-loader": "^16.0.0",
22+
"@ngx-translate/core": "16.0.4",
23+
"@ngx-translate/http-loader": "16.0.1",
2424
"cannon-es": "^0.20.0",
2525
"copy-files-from-to": "^3.11.0",
26-
"dat.gui": "^0.7.9",
2726
"gsap": "^3.12.5",
28-
"lil-gui": "^0.19.2",
27+
"lil-gui": "0.20.0",
2928
"rxjs": "~7.8.0",
3029
"three": "^0.170.0",
3130
"tslib": "^2.3.0",

projects/wml-accordion/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"peerDependencies": {
1010
"@angular/common": "^19.0.5",
1111
"@angular/core": "^19.0.5",
12-
"@windmillcode/angular-wml-components-base": "^19.0.5000",
13-
"@windmillcode/wml-components-base": "^19.0.5000"
12+
"@windmillcode/angular-wml-components-base": "^19.0.5100",
13+
"@windmillcode/wml-components-base": "^19.0.5100"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.0.5000"
23+
"version": "19.0.5100"
2424
}

projects/wml-angular-components-base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"peerDependencies": {
1010
"@angular/common": "^19.0.5",
1111
"@angular/core": "^19.0.5",
12-
"@windmillcode/wml-components-base": "^19.0.5000"
12+
"@windmillcode/wml-components-base": "^19.0.5100"
1313
},
1414
"private": false,
1515
"repository": {
@@ -19,5 +19,5 @@
1919
"scripts": {
2020
"build": "npx ng build"
2121
},
22-
"version": "19.0.5000"
22+
"version": "19.0.5100"
2323
}

projects/wml-angular-components-base/src/lib/pipes.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// still a need for this file as of angular 19.0.5 but not a need to import
2+
13
import { Injectable, Pipe } from "@angular/core";
24
import { TranslatePipe } from "@ngx-translate/core";
35

projects/wml-button/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"peerDependencies": {
1010
"@angular/common": "^19.0.5",
1111
"@angular/core": "^19.0.5",
12-
"@windmillcode/angular-wml-components-base": "^19.0.5000",
13-
"@windmillcode/wml-components-base": "^19.0.5000"
12+
"@windmillcode/angular-wml-components-base": "^19.0.5100",
13+
"@windmillcode/wml-components-base": "^19.0.5100"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.0.5000"
23+
"version": "19.0.5100"
2424
}

projects/wml-button/src/lib/wml-button-one/wml-button-one/wml-button-one.component.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import { WMLButtonIconType, WMLButtonPropsTypeEnum } from '../../models';
99

1010
// misc
1111
@Component({
12-
selector: 'wml-button-one',
13-
templateUrl: './wml-button-one.component.html',
14-
styleUrls: ['./wml-button-one.component.scss'],
15-
changeDetection: ChangeDetectionStrategy.OnPush,
16-
encapsulation: ViewEncapsulation.None,
17-
standalone: false
12+
selector: 'wml-button-one',
13+
templateUrl: './wml-button-one.component.html',
14+
styleUrls: ['./wml-button-one.component.scss'],
15+
changeDetection: ChangeDetectionStrategy.OnPush,
16+
encapsulation: ViewEncapsulation.None,
17+
standalone: false
1818
})
1919
export class WMLButtonOneComponent {
2020

@@ -102,7 +102,6 @@ export class WMLButtonOneProps<V=any,T=WMLButtonPropsTypeEnum> extends WMLView<
102102
this.updateBtnClasses(this.type!)
103103
}
104104

105-
106105
private _iconClass:string = ""
107106
private _iconClassList:string[] = []
108107
updateIconClassString=updateClassString(this,"_iconClass","_iconClassList")

projects/wml-carousel/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"peerDependencies": {
1010
"@angular/common": "^19.0.5",
1111
"@angular/core": "^19.0.5",
12-
"@windmillcode/angular-wml-components-base": "^19.0.5000",
13-
"@windmillcode/wml-components-base": "^19.0.5000"
12+
"@windmillcode/angular-wml-components-base": "^19.0.5100",
13+
"@windmillcode/wml-components-base": "^19.0.5100"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.0.5000"
23+
"version": "19.0.5100"
2424
}

projects/wml-chips/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"@angular/cdk": "^19.0.5",
1212
"@angular/common": "^19.0.5",
1313
"@angular/core": "^19.0.5",
14-
"@windmillcode/angular-wml-button": "^19.0.5000",
15-
"@windmillcode/angular-wml-components-base": "^19.0.5000",
16-
"@windmillcode/wml-components-base": "^19.0.5000"
14+
"@windmillcode/angular-wml-button": "^19.0.5100",
15+
"@windmillcode/angular-wml-components-base": "^19.0.5100",
16+
"@windmillcode/wml-components-base": "^19.0.5100"
1717
},
1818
"private": false,
1919
"repository": {
@@ -24,5 +24,5 @@
2424
"build": "npx ng build",
2525
"test": "npx ng test wml-chips --code-coverage"
2626
},
27-
"version": "19.0.5000"
27+
"version": "19.0.5100"
2828
}

projects/wml-components-base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
"scripts": {
1414
"build": "npx ng build"
1515
},
16-
"version": "19.0.5001"
16+
"version": "19.0.5100"
1717
}

0 commit comments

Comments
 (0)