Skip to content

Commit 5569493

Browse files
committed
Smart UI for Angular 7.7.0
1 parent bf3f82c commit 5569493

File tree

294 files changed

+18318
-1875
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

294 files changed

+18318
-1875
lines changed

bundles/smart-webcomponents-angular-calendar.umd.js

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-calendar.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-calendar.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-calendar.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-daterangeinput.umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-daterangeinput.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-daterangeinput.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-datetimepicker.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-datetimepicker.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-form.umd.js

+1,373
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-form.umd.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-form.umd.min.js

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-form.umd.min.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-ganttchart.umd.js

+207-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-ganttchart.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-ganttchart.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-ganttchart.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-table.umd.js

+740-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-table.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-table.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/smart-webcomponents-angular-table.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

calendar/smart-webcomponents-angular-calendar.metadata.json

+1-1
Large diffs are not rendered by default.

calendar/smart.calendar.d.ts

+14-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export declare class CalendarComponent extends BaseElement implements OnInit, Af
5959
/** @description Hides the arrow of the tooltip. */
6060
hideTooltipArrow: boolean;
6161
/** @description Sets the dates that will be displayed as important. */
62-
importantDates: string[];
62+
importantDates: string[] | Date[];
6363
/** @description Sets a template for the important dates. Accepts the id of an HTMLTemplate element inside the DOM of or a reference to it. */
6464
importantDatesTemplate: any;
6565
/** @description Determines the language of the Calendar. */
@@ -89,7 +89,7 @@ export declare class CalendarComponent extends BaseElement implements OnInit, Af
8989
/** @description Determines the position of the navigation buttons located inside the header. */
9090
scrollButtonsPosition: LayoutPosition;
9191
/** @description Sets the dates that will be selected. Selected dates are styled differently than the rest. The dates can be Date objects or strings in a valid date format. */
92-
selectedDates: string[];
92+
selectedDates: string[] | Date[];
9393
/** @description Determines the date selection mode. */
9494
selectionMode: CalendarSelectionMode;
9595
/** @description Sets the delay between clicks of the date navigation buttons located in the header of the Calendar. */
@@ -150,6 +150,18 @@ export declare class CalendarComponent extends BaseElement implements OnInit, Af
150150
* type - The view type - 'month', 'decade' or 'year'.
151151
*/
152152
onNavigationChange: EventEmitter<CustomEvent>;
153+
/** @description This event is triggered when the tooltip for the important date is opened.
154+
* @param event. The custom event. Custom event was created with: event.detail( target, value)
155+
* target - The event target - tooltip.
156+
* value - The important date of the hovered cell.
157+
*/
158+
onOpen: EventEmitter<CustomEvent>;
159+
/** @description This event is triggered when the tooltip for the important date is closed.
160+
* @param event. The custom event. Custom event was created with: event.detail( target, value)
161+
* target - The event target - tooltip.
162+
* value - The important date of the hovered cell.
163+
*/
164+
onClose: EventEmitter<CustomEvent>;
153165
/** @description Clears the selection. Removes all seleceted dates.
154166
*/
155167
clearSelection(): void;

daterangeinput/smart.daterangeinput.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ export declare class DateRangeInputComponent extends BaseElement implements OnIn
7272
theme: string;
7373
/** @description If is set to true, the element cannot be focused. */
7474
unfocusable: boolean;
75-
/** @description Sets or gets the value of the element. */
76-
value: string;
75+
/** @description Sets or gets the value of the element. The type of the value depends on the valueType property. */
76+
value: any;
7777
/** @description Determines the value type returned from the `value` property. */
7878
valueType: DateRangeInputValueType;
7979
/** @description This event is triggered when the selection is changed.

datetimepicker/smart.datetimepicker.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export declare class DateTimePickerComponent extends BaseElement implements OnIn
7777
/** @description Sets additional helper text below the element that appears only when the element is focused. */
7878
hint: string;
7979
/** @description Sets dates, displayed as important in the calendar pop-up. */
80-
importantDates: string[];
80+
importantDates: string[] | Date[];
8181
/** @description Sets a template for the important dates of the calendar pop-up. Accepts the id of or a reference to an HTMLTemplateElement. */
8282
importantDatesTemplate: string | HTMLTemplateElement;
8383
/** @description Sets or gets the increment/decrement interval when a date/time segment inside the input has not been highlighted. The default interval is 1 second. If a numeric value is passed, it represents milliseconds. */

esm2015/calendar/smart.calendar.js

+29-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm2015/daterangeinput/smart.daterangeinput.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm2015/datetimepicker/smart.datetimepicker.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm2015/form/public_api.js

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm2015/form/smart-webcomponents-angular-form.js

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)