@kigi/components 1.43.0 → 1.44.0-alpha.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kigi/components",
3
- "version": "1.43.0",
3
+ "version": "1.44.0-alpha.1",
4
4
  "description": "@kigi/components",
5
5
  "main": "src/components/index.ts",
6
6
  "scripts": {
@@ -17,7 +17,7 @@ class MbgInputDateController {
17
17
  public betweenText: string
18
18
  public filterDate: Function
19
19
  public onlyMonthYear: boolean
20
-
20
+ private nameOfTheDay
21
21
 
22
22
  constructor(public $scope, public $element, public $attrs, public $timeout) {
23
23
  if ($attrs.ngRequired === '') {
@@ -45,6 +45,7 @@ class MbgInputDateController {
45
45
  })
46
46
  })
47
47
  }
48
+ this.format = `${this.format}-${this.nameOfTheDay}`
48
49
  }
49
50
 
50
51
  onChange() {
@@ -133,6 +134,7 @@ const mbgInputDate = {
133
134
  filterDate: '&?',
134
135
  onlyMonthYear: '=?',
135
136
  titleMode: '=?',
137
+ nameOfTheDay: '=?',
136
138
  },
137
139
  template,
138
140
  controller: MbgInputDateController,