Skip to content

Commit a46b260

Browse files
committed
'[CHECKPOINT]' updated package to conform with @windmillcode/wml-components-base version 19.2.14001
1 parent 10fcfe6 commit a46b260

File tree

24 files changed

+74
-71
lines changed

24 files changed

+74
-71
lines changed

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.2.14",
1111
"@angular/core": "^19.2.14",
12-
"@windmillcode/angular-wml-components-base": "^19.2.14000",
13-
"@windmillcode/wml-components-base": "^19.2.14000"
12+
"@windmillcode/angular-wml-components-base": "^19.2.14001",
13+
"@windmillcode/wml-components-base": "^19.2.14001"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.2.14000"
23+
"version": "19.2.14001"
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.2.14",
1111
"@angular/core": "^19.2.14",
12-
"@windmillcode/wml-components-base": "^19.2.14000"
12+
"@windmillcode/wml-components-base": "^19.2.14001"
1313
},
1414
"private": false,
1515
"repository": {
@@ -19,5 +19,5 @@
1919
"scripts": {
2020
"build": "npx ng build"
2121
},
22-
"version": "19.2.14000"
22+
"version": "19.2.14001"
2323
}

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.2.14",
1111
"@angular/core": "^19.2.14",
12-
"@windmillcode/angular-wml-components-base": "^19.2.14000",
13-
"@windmillcode/wml-components-base": "^19.2.14000"
12+
"@windmillcode/angular-wml-components-base": "^19.2.14001",
13+
"@windmillcode/wml-components-base": "^19.2.14001"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.2.14000"
23+
"version": "19.2.14001"
2424
}

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.2.14",
1111
"@angular/core": "^19.2.14",
12-
"@windmillcode/angular-wml-components-base": "^19.2.14000",
13-
"@windmillcode/wml-components-base": "^19.2.14000"
12+
"@windmillcode/angular-wml-components-base": "^19.2.14001",
13+
"@windmillcode/wml-components-base": "^19.2.14001"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.2.14000"
23+
"version": "19.2.14001"
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.2.14",
1212
"@angular/common": "^19.2.14",
1313
"@angular/core": "^19.2.14",
14-
"@windmillcode/angular-wml-button": "^19.2.14000",
15-
"@windmillcode/angular-wml-components-base": "^19.2.14000",
16-
"@windmillcode/wml-components-base": "^19.2.14000"
14+
"@windmillcode/angular-wml-button": "^19.2.14001",
15+
"@windmillcode/angular-wml-components-base": "^19.2.14001",
16+
"@windmillcode/wml-components-base": "^19.2.14001"
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.2.14000"
27+
"version": "19.2.14001"
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.2.14000"
16+
"version": "19.2.14001"
1717
}

projects/wml-components-base/src/lib/string-utils.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,15 @@ export class WMLStringObject {
5151
};
5252

5353
upperCase = (stripSuffix = true, suffix = "") => {
54-
return (stripSuffix ? this.prefix : this.orig).toUpperCase() + suffix;
54+
const str = stripSuffix ? this.prefix : this.orig;
55+
return str
56+
.toUpperCase() + suffix;
5557
};
5658

5759
titleCase = (stripSuffix = true, suffix = "") => {
5860
const str = stripSuffix ? this.prefix : this.orig;
5961
return str
62+
.toLowerCase()
6063
.replace(/[-_\s]+(.)?/g, (_, c) => (c ? c.toUpperCase() : ""))
6164
.replace(/^(.)/, (_, c) => c.toUpperCase()) + suffix;
6265
};

projects/wml-field/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.2.14",
1111
"@angular/core": "^19.2.14",
12-
"@windmillcode/angular-wml-components-base": "^19.2.14000",
13-
"@windmillcode/wml-components-base": "^19.2.14000"
12+
"@windmillcode/angular-wml-components-base": "^19.2.14001",
13+
"@windmillcode/wml-components-base": "^19.2.14001"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.2.14000"
23+
"version": "19.2.14001"
2424
}

projects/wml-file-manager/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.2.14",
1111
"@angular/core": "^19.2.14",
12-
"@windmillcode/angular-wml-components-base": "^19.2.14000",
13-
"@windmillcode/wml-components-base": "^19.2.14000"
12+
"@windmillcode/angular-wml-components-base": "^19.2.14001",
13+
"@windmillcode/wml-components-base": "^19.2.14001"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.2.14000"
23+
"version": "19.2.14001"
2424
}

projects/wml-form/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.2.14",
1111
"@angular/core": "^19.2.14",
12-
"@windmillcode/angular-wml-components-base": "^19.2.14000",
13-
"@windmillcode/wml-components-base": "^19.2.14000"
12+
"@windmillcode/angular-wml-components-base": "^19.2.14001",
13+
"@windmillcode/wml-components-base": "^19.2.14001"
1414
},
1515
"private": false,
1616
"repository": {
@@ -20,5 +20,5 @@
2020
"scripts": {
2121
"build": "npx ng build"
2222
},
23-
"version": "19.2.14000"
23+
"version": "19.2.14001"
2424
}

0 commit comments

Comments
 (0)