@netwin/angular-datetime-picker 18.1.0-rc.2 → 18.2.0

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.
Files changed (37) hide show
  1. package/README.md +86 -198
  2. package/esm2022/lib/date-time/adapter/native-date-time-adapter.class.mjs +3 -3
  3. package/esm2022/lib/date-time/adapter/native-date-time.module.mjs +8 -8
  4. package/esm2022/lib/date-time/adapter/unix-timestamp-adapter/unix-timestamp-date-time-adapter.class.mjs +3 -3
  5. package/esm2022/lib/date-time/calendar-body.component.mjs +3 -3
  6. package/esm2022/lib/date-time/calendar-month-view.component.mjs +3 -3
  7. package/esm2022/lib/date-time/calendar-multi-year-view.component.mjs +4 -4
  8. package/esm2022/lib/date-time/calendar-year-view.component.mjs +4 -4
  9. package/esm2022/lib/date-time/calendar.component.mjs +3 -3
  10. package/esm2022/lib/date-time/date-time-inline.component.mjs +3 -3
  11. package/esm2022/lib/date-time/date-time-picker-container.component.mjs +3 -3
  12. package/esm2022/lib/date-time/date-time-picker-input.directive.mjs +3 -3
  13. package/esm2022/lib/date-time/date-time-picker-intl.service.mjs +3 -3
  14. package/esm2022/lib/date-time/date-time-picker-trigger.directive.mjs +3 -3
  15. package/esm2022/lib/date-time/date-time-picker.component.mjs +3 -3
  16. package/esm2022/lib/date-time/date-time.class.mjs +3 -3
  17. package/esm2022/lib/date-time/date-time.module.mjs +4 -4
  18. package/esm2022/lib/date-time/numberedFixLen.pipe.mjs +4 -4
  19. package/esm2022/lib/date-time/timer-box.component.mjs +4 -4
  20. package/esm2022/lib/date-time/timer.component.mjs +3 -3
  21. package/esm2022/lib/dialog/dialog-container.component.mjs +3 -3
  22. package/esm2022/lib/dialog/dialog.module.mjs +4 -4
  23. package/esm2022/lib/dialog/dialog.service.mjs +3 -3
  24. package/esm2022/lib/utils/array.utils.mjs +2 -9
  25. package/esm2022/lib/utils/constants.mjs +1 -4
  26. package/esm2022/lib/utils/date.utils.mjs +1 -4
  27. package/esm2022/lib/utils/index.mjs +4 -4
  28. package/esm2022/lib/utils/object.utils.mjs +1 -4
  29. package/fesm2022/netwin-angular-datetime-picker.mjs +152 -172
  30. package/fesm2022/netwin-angular-datetime-picker.mjs.map +1 -1
  31. package/lib/date-time/numberedFixLen.pipe.d.ts +1 -1
  32. package/lib/utils/array.utils.d.ts +0 -3
  33. package/lib/utils/constants.d.ts +0 -3
  34. package/lib/utils/date.utils.d.ts +0 -3
  35. package/lib/utils/index.d.ts +3 -3
  36. package/lib/utils/object.utils.d.ts +0 -3
  37. package/package.json +1 -1
@@ -4,7 +4,7 @@
4
4
  import { PipeTransform } from '@angular/core';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class NumberFixedLenPipe implements PipeTransform {
7
- transform(num: number, len: number): any;
7
+ transform(num: number, len: number): string | number;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<NumberFixedLenPipe, never>;
9
9
  static ɵpipe: i0.ɵɵPipeDeclaration<NumberFixedLenPipe, "numberFixedLen", false>;
10
10
  }
@@ -1,5 +1,2 @@
1
- /**
2
- * array.utils
3
- */
4
1
  /** Creates an array and fills it with values. */
5
2
  export declare function range<T>(length: number, valueFunction: (index: number) => T): Array<T>;
@@ -1,6 +1,3 @@
1
- /**
2
- * constants
3
- */
4
1
  /** Whether the browser supports the Intl API. */
5
2
  export declare const SUPPORTS_INTL_API: boolean;
6
3
  /** The default month names to use if Intl API is not available. */
@@ -1,6 +1,3 @@
1
- /**
2
- * date.utils
3
- */
4
1
  /**
5
2
  * Creates a date with the given year, month, date, hour, minute and second. Does not allow over/under-flow of the
6
3
  * month and date.
@@ -1,4 +1,4 @@
1
- /**
2
- * index
3
- */
1
+ export * from './array.utils';
2
+ export * from './constants';
3
+ export * from './date.utils';
4
4
  export * from './object.utils';
@@ -1,6 +1,3 @@
1
- /**
2
- * object.utils
3
- */
4
1
  /**
5
2
  * Extends an object with the *enumerable* and *own* properties of one or more source objects,
6
3
  * similar to Object.assign.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netwin/angular-datetime-picker",
3
- "version": "18.1.0-rc.2",
3
+ "version": "18.2.0",
4
4
  "description": "Angular Date Time Picker",
5
5
  "keywords": [
6
6
  "Angular",