Skip to content

Commit

Permalink
Smart UI for Angular 7.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarkov committed Jun 29, 2020
1 parent bf3f82c commit 5569493
Show file tree
Hide file tree
Showing 294 changed files with 18,318 additions and 1,875 deletions.
28 changes: 28 additions & 0 deletions bundles/smart-webcomponents-angular-calendar.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-calendar.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-calendar.umd.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-daterangeinput.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1,373 changes: 1,373 additions & 0 deletions bundles/smart-webcomponents-angular-form.umd.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bundles/smart-webcomponents-angular-form.umd.js.map

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions bundles/smart-webcomponents-angular-form.umd.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bundles/smart-webcomponents-angular-form.umd.min.js.map

Large diffs are not rendered by default.

212 changes: 207 additions & 5 deletions bundles/smart-webcomponents-angular-ganttchart.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-ganttchart.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-ganttchart.umd.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

769 changes: 740 additions & 29 deletions bundles/smart-webcomponents-angular-table.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-table.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-table.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/smart-webcomponents-angular-table.umd.min.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

16 changes: 14 additions & 2 deletions calendar/smart.calendar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export declare class CalendarComponent extends BaseElement implements OnInit, Af
/** @description Hides the arrow of the tooltip. */
hideTooltipArrow: boolean;
/** @description Sets the dates that will be displayed as important. */
importantDates: string[];
importantDates: string[] | Date[];
/** @description Sets a template for the important dates. Accepts the id of an HTMLTemplate element inside the DOM of or a reference to it. */
importantDatesTemplate: any;
/** @description Determines the language of the Calendar. */
Expand Down Expand Up @@ -89,7 +89,7 @@ export declare class CalendarComponent extends BaseElement implements OnInit, Af
/** @description Determines the position of the navigation buttons located inside the header. */
scrollButtonsPosition: LayoutPosition;
/** @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. */
selectedDates: string[];
selectedDates: string[] | Date[];
/** @description Determines the date selection mode. */
selectionMode: CalendarSelectionMode;
/** @description Sets the delay between clicks of the date navigation buttons located in the header of the Calendar. */
Expand Down Expand Up @@ -150,6 +150,18 @@ export declare class CalendarComponent extends BaseElement implements OnInit, Af
* type - The view type - 'month', 'decade' or 'year'.
*/
onNavigationChange: EventEmitter<CustomEvent>;
/** @description This event is triggered when the tooltip for the important date is opened.
* @param event. The custom event. Custom event was created with: event.detail( target, value)
* target - The event target - tooltip.
* value - The important date of the hovered cell.
*/
onOpen: EventEmitter<CustomEvent>;
/** @description This event is triggered when the tooltip for the important date is closed.
* @param event. The custom event. Custom event was created with: event.detail( target, value)
* target - The event target - tooltip.
* value - The important date of the hovered cell.
*/
onClose: EventEmitter<CustomEvent>;
/** @description Clears the selection. Removes all seleceted dates.
*/
clearSelection(): void;
Expand Down
4 changes: 2 additions & 2 deletions daterangeinput/smart.daterangeinput.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ export declare class DateRangeInputComponent extends BaseElement implements OnIn
theme: string;
/** @description If is set to true, the element cannot be focused. */
unfocusable: boolean;
/** @description Sets or gets the value of the element. */
value: string;
/** @description Sets or gets the value of the element. The type of the value depends on the valueType property. */
value: any;
/** @description Determines the value type returned from the `value` property. */
valueType: DateRangeInputValueType;
/** @description This event is triggered when the selection is changed.
Expand Down
2 changes: 1 addition & 1 deletion datetimepicker/smart.datetimepicker.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export declare class DateTimePickerComponent extends BaseElement implements OnIn
/** @description Sets additional helper text below the element that appears only when the element is focused. */
hint: string;
/** @description Sets dates, displayed as important in the calendar pop-up. */
importantDates: string[];
importantDates: string[] | Date[];
/** @description Sets a template for the important dates of the calendar pop-up. Accepts the id of or a reference to an HTMLTemplateElement. */
importantDatesTemplate: string | HTMLTemplateElement;
/** @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. */
Expand Down
30 changes: 29 additions & 1 deletion esm2015/calendar/smart.calendar.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions esm2015/daterangeinput/smart.daterangeinput.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion esm2015/datetimepicker/smart.datetimepicker.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions esm2015/form/public_api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions esm2015/form/smart-webcomponents-angular-form.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5569493

Please sign in to comment.