carbon-components-angular 5.14.6 → 5.14.8
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/datepicker/datepicker.component.d.ts +2 -3
- package/docs/documentation/components/DatePicker.html +116 -153
- package/docs/documentation/components/Pagination.html +7 -7
- package/docs/documentation/coverage.html +1 -1
- package/docs/documentation/interfaces/PaginationTranslations.html +3 -3
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/documentation/modules/ThemeModule/dependencies.svg +13 -13
- package/docs/documentation/modules/ThemeModule.html +13 -13
- package/docs/documentation/modules/TilesModule/dependencies.svg +98 -98
- package/docs/documentation/modules/TilesModule.html +98 -98
- package/docs/documentation/modules/TimePickerModule/dependencies.svg +42 -38
- package/docs/documentation/modules/TimePickerModule.html +42 -38
- package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +46 -50
- package/docs/documentation/modules/TimePickerSelectModule.html +46 -50
- package/docs/documentation/modules/ToggleModule/dependencies.svg +8 -8
- package/docs/documentation/modules/ToggleModule.html +8 -8
- package/docs/documentation/modules/ToggletipModule/dependencies.svg +39 -39
- package/docs/documentation/modules/ToggletipModule.html +39 -39
- package/docs/documentation/modules/TooltipModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TooltipModule.html +4 -4
- package/docs/documentation/modules/UIShellModule/dependencies.svg +4 -4
- package/docs/documentation/modules/UIShellModule.html +4 -4
- package/docs/documentation.json +68 -69
- package/docs/storybook/8341.a544f9e9.iframe.bundle.js +1 -0
- package/docs/storybook/datepicker-datepicker-stories.6255884c.iframe.bundle.js +1 -0
- package/docs/storybook/iframe.html +2 -2
- package/docs/storybook/main.7ca5dc3c.iframe.bundle.js +1 -0
- package/docs/storybook/project.json +1 -1
- package/docs/storybook/{runtime~main.226e22a8.iframe.bundle.js → runtime~main.554114ff.iframe.bundle.js} +1 -1
- package/esm2020/datepicker/datepicker.component.mjs +18 -11
- package/esm2020/pagination/pagination.component.mjs +7 -7
- package/fesm2015/carbon-components-angular-datepicker.mjs +19 -10
- package/fesm2015/carbon-components-angular-datepicker.mjs.map +1 -1
- package/fesm2015/carbon-components-angular-pagination.mjs +6 -6
- package/fesm2015/carbon-components-angular-pagination.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-datepicker.mjs +17 -10
- package/fesm2020/carbon-components-angular-datepicker.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-pagination.mjs +6 -6
- package/fesm2020/carbon-components-angular-pagination.mjs.map +1 -1
- package/package.json +1 -1
- package/docs/storybook/8341.83894870.iframe.bundle.js +0 -1
- package/docs/storybook/datepicker-datepicker-stories.178ad9bd.iframe.bundle.js +0 -1
- package/docs/storybook/main.31cef103.iframe.bundle.js +0 -1
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
import { EventEmitter, ElementRef, OnDestroy, TemplateRef, OnChanges, SimpleChanges, AfterViewChecked, AfterViewInit,
|
|
21
|
+
import { EventEmitter, ElementRef, OnDestroy, TemplateRef, OnChanges, SimpleChanges, AfterViewChecked, AfterViewInit, OnInit, SimpleChange } from "@angular/core";
|
|
22
22
|
import { DatePickerInput } from "carbon-components-angular/datepicker-input";
|
|
23
23
|
import { I18n } from "carbon-components-angular/i18n";
|
|
24
24
|
import * as i0 from "@angular/core";
|
|
25
25
|
/**
|
|
26
26
|
* [See demo](../../?path=/story/components-date-picker--single)
|
|
27
27
|
*/
|
|
28
|
-
export declare class DatePicker implements OnInit, OnDestroy, OnChanges, AfterViewChecked, AfterViewInit
|
|
28
|
+
export declare class DatePicker implements OnInit, OnDestroy, OnChanges, AfterViewChecked, AfterViewInit {
|
|
29
29
|
protected elementRef: ElementRef;
|
|
30
30
|
protected i18n: I18n;
|
|
31
31
|
private static datePickerCount;
|
|
@@ -168,7 +168,6 @@ export declare class DatePicker implements OnInit, OnDestroy, OnChanges, AfterVi
|
|
|
168
168
|
ngOnChanges(changes: SimpleChanges): void;
|
|
169
169
|
ngAfterViewInit(): void;
|
|
170
170
|
ngAfterViewChecked(): void;
|
|
171
|
-
ngAfterContentInit(): void;
|
|
172
171
|
onFocus(): void;
|
|
173
172
|
onFocusOut(): void;
|
|
174
173
|
/**
|