You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,10 @@ All notable changes for each version of this project will be documented in this
7
7
-`IgxInputGroup`
8
8
-**Breaking Chage** - Removed `fluent`, `fluent_search`, `bootstrap`, and `indigo` as possible values for the `type` input property.
9
9
-**Behavioral Change** - The styling of the input group is now dictated by the theme being used. The remaining `types` - `line`, `border`, and `box` will only have effect on the styling when used with the `material` theme. The `search` type will affect styling when used with all themes. Changing the theme at runtime will not change the styling of the input group, a page refresh is required.
10
+
-`IgxSelect`
11
+
- Added `aria-labelledby` property for the items list container(marked as `role="listbox"`). This will ensure the users of assistive technologies will also know what the list items container is used for, upon opening.
12
+
-`IgxDatePicker`
13
+
-**Breaking Change** - Deprecated the `label` and `labelVisibility` properties.
10
14
11
15
### New Features
12
16
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
@@ -15,8 +19,11 @@ All notable changes for each version of this project will be documented in this
15
19
- Allows for setting an input group `type` on a global level, so all input-group instances, including components using such an instance as a template will have their input group type set to the one specified by the token. It can be overridden on a component level by explicitly setting a `type`.
16
20
-` IgxExcelExporterService`
17
21
- Added `worksheetName` property to the `IgxExcelExporterOptions`, that allows setting the name of the worksheet.
22
+
-`IgxDatePicker`
23
+
- The `labelVisibility` and the `label` property have been deprecated and now a custom label is set by nesting a <labeligxLabel></label> inside the <igx-date-picker><igx-date-picker> tags.
18
24
-`IgxTimePicker`
19
25
- Added a custom label functionality.
26
+
-`IgxCalendar` and `IgxDatePicker` - new `showWeekNumbers` input, that allows showing of the week number at left side of content area.
Copy file name to clipboardExpand all lines: projects/igniteui-angular/src/lib/date-picker/README.md
+9-3
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,12 @@ DatePicker with cancel and today buttons
41
41
</igx-date-picker>
42
42
```
43
43
44
+
The DatePicker's custom label can be set in the way shown below. If `labelVisibility` is set to `false` and a custom label is not used, a default one will be set.
45
+
````html
46
+
<igx-date-picker>
47
+
<labeligxLabel>Custom label</label>
48
+
</igx-date-picker>
49
+
44
50
You have also ability to disable the datePicker
45
51
```html
46
52
<igx-date-picker[disabled]="false">
@@ -123,8 +129,8 @@ The DatePicker action buttons could be retemplated.
123
129
| `weekStart`| `Number \| WEEKDAYS` | Sets on which day will the week start. |
124
130
| `locale` | `string` | Sets the locale used for formatting and displaying the dates in the calendar. For more information check out [this](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl) page for valid formats. |
125
131
| `formatOptions` | `Object` | The format options passed along with the `locale` property used for formatting the dates. |
126
-
|`label`|`string`| Configure the input label text. |
127
-
|`labelVisibility`|`string`| Configure the input label text visibility. |
| `labelVisibility` | `string` | Deprecated. Configure the input label text visibility. |
128
134
| `format` | `string` | Configure the date display format when in edit mode. Accepts formats using the d, M and y symbols, custom separators and the following pre-defined format options - shortDate, mediumDate, longDate and fullDate. |
129
135
| `mask` | `string` | Configure the date editor mask. Accepts the d, M and y symbols as mask - for example dd-MM-y. |
130
136
| `disabledDates` | `DateRangeDescriptor[]` | Configure the disabled dates. |
@@ -154,4 +160,4 @@ The DatePicker action buttons could be retemplated.
154
160
| `selectDate` | `date: Date` | `void` | Change the calendar selection. Calling this method will emit the `onSelection` event. |
155
161
| `deselectDate` | `void` | Deselects the calendar date and clear input field value. |
156
162
| `triggerTodaySelection` | `void` | Selects today's date in calendar and change the input field value. |
157
-
|`openDialog`|`target?: HTMLElement`|`void`| Opens the dialog or drop down, depending on the mode. |
163
+
| `openDialog` | `target?: HTMLElement` | `void` | Opens the dialog or drop down, depending on the mode. |
0 commit comments