Skip to content

Commit e3c43f0

Browse files
committed
'[CHECKPOINT]' updated package to conform with @windmillcode/wml-components-base version 18.2.7020
1 parent 47bbafd commit e3c43f0

File tree

25 files changed

+87
-82
lines changed

25 files changed

+87
-82
lines changed

package-lock.json

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

projects/wml-accordion/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"peerDependencies": {
1010
"@angular/common": "^18.0.0",
1111
"@angular/core": "^18.0.0",
12-
"@windmillcode/angular-wml-components-base": "^18.2.7010",
13-
"@windmillcode/wml-components-base": "^18.2.7010"
12+
"@windmillcode/angular-wml-components-base": "^18.2.7020",
13+
"@windmillcode/wml-components-base": "^18.2.7020"
1414
},
1515
"private": false,
1616
"schematics": "",
1717
"scripts": {
1818
"build": "npx ng build"
1919
},
20-
"version": "18.2.7010"
20+
"version": "18.2.7020"
2121
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"peerDependencies": {
1010
"@angular/common": "^18.0.0",
1111
"@angular/core": "^18.0.0",
12-
"@windmillcode/wml-components-base": "^18.2.7010"
12+
"@windmillcode/wml-components-base": "^18.2.7020"
1313
},
1414
"private": false,
1515
"schematics": "",
1616
"scripts": {
1717
"build": "npx ng build"
1818
},
19-
"version": "18.2.7010"
19+
"version": "18.2.7020"
2020
}

projects/wml-button/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"peerDependencies": {
1010
"@angular/common": "^18.0.0",
1111
"@angular/core": "^18.0.0",
12-
"@windmillcode/angular-wml-components-base": "^18.2.7010",
13-
"@windmillcode/wml-components-base": "^18.2.7010"
12+
"@windmillcode/angular-wml-components-base": "^18.2.7020",
13+
"@windmillcode/wml-components-base": "^18.2.7020"
1414
},
1515
"private": false,
1616
"schematics": "",
1717
"scripts": {
1818
"build": "npx ng build"
1919
},
20-
"version": "18.2.7010"
20+
"version": "18.2.7020"
2121
}

projects/wml-carousel/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"peerDependencies": {
1010
"@angular/common": "^18.0.0",
1111
"@angular/core": "^18.0.0",
12-
"@windmillcode/angular-wml-components-base": "^18.2.7010",
13-
"@windmillcode/wml-components-base": "^18.2.7010"
12+
"@windmillcode/angular-wml-components-base": "^18.2.7020",
13+
"@windmillcode/wml-components-base": "^18.2.7020"
1414
},
1515
"private": false,
1616
"schematics": "",
1717
"scripts": {
1818
"build": "npx ng build"
1919
},
20-
"version": "18.2.7010"
20+
"version": "18.2.7020"
2121
}

projects/wml-chips/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
"@angular/cdk": "^18.0.0",
1212
"@angular/common": "^18.0.0",
1313
"@angular/core": "^18.0.0",
14-
"@windmillcode/angular-wml-button": "^18.2.7010",
15-
"@windmillcode/angular-wml-components-base": "^18.2.7010",
16-
"@windmillcode/wml-components-base": "^18.2.7010"
14+
"@windmillcode/angular-wml-button": "^18.2.7020",
15+
"@windmillcode/angular-wml-components-base": "^18.2.7020",
16+
"@windmillcode/wml-components-base": "^18.2.7020"
1717
},
1818
"private": false,
1919
"schematics": "",
2020
"scripts": {
2121
"build": "npx ng build",
2222
"test": "npx ng test wml-chips --code-coverage"
2323
},
24-
"version": "18.2.7010"
24+
"version": "18.2.7020"
2525
}

projects/wml-components-base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"scripts": {
1111
"build": "npx ng build"
1212
},
13-
"version": "18.2.7010"
13+
"version": "18.2.7020"
1414
}

projects/wml-components-base/src/lib/models.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,16 @@ export class WMLView<V=any,T=any> extends WMLUIProperty<V,T>{
129129
)
130130
}
131131

132-
132+
/**
133+
* @description used in angular application for change detection
134+
*/
133135
get cdref(){
134136
return this.angular.cdref
135137
}
136138

139+
/**
140+
* @description used in angular application for change detection
141+
*/
137142
set cdref(val){
138143
this.angular.cdref = val
139144
}
@@ -293,7 +298,7 @@ export class WMLMotionUIProperty<V=any,T="animation" | "transition"> extends WML
293298
})
294299

295300
this.triggerMotionEndEvent()
296-
if(this.eventType === "subject"){
301+
if(["Angular"].includes(getGlobalObject().WINDMILLCODE.framework.name )){
297302
this.angular.cdref?.detectChanges()
298303
}
299304

projects/wml-field/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"peerDependencies": {
1010
"@angular/common": "^18.0.0",
1111
"@angular/core": "^18.0.0",
12-
"@windmillcode/angular-wml-components-base": "^18.2.7010",
13-
"@windmillcode/wml-components-base": "^18.2.7010"
12+
"@windmillcode/angular-wml-components-base": "^18.2.7020",
13+
"@windmillcode/wml-components-base": "^18.2.7020"
1414
},
1515
"private": false,
1616
"schematics": "",
1717
"scripts": {
1818
"build": "npx ng build"
1919
},
20-
"version": "18.2.7010"
20+
"version": "18.2.7020"
2121
}

projects/wml-file-manager/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"peerDependencies": {
1010
"@angular/common": "^18.0.0",
1111
"@angular/core": "^18.0.0",
12-
"@windmillcode/angular-wml-components-base": "^18.2.7010",
13-
"@windmillcode/wml-components-base": "^18.2.7010"
12+
"@windmillcode/angular-wml-components-base": "^18.2.7020",
13+
"@windmillcode/wml-components-base": "^18.2.7020"
1414
},
1515
"private": false,
1616
"schematics": "",
1717
"scripts": {
1818
"build": "npx ng build"
1919
},
20-
"version": "18.2.7010"
20+
"version": "18.2.7020"
2121
}

0 commit comments

Comments
 (0)