@dereekb/date 10.1.22 → 10.1.24
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/index.cjs.js +6 -0
- package/index.esm.js +7 -0
- package/package.json +1 -1
- package/src/lib/date/date.time.minute.d.ts +5 -1
package/index.cjs.js
CHANGED
|
@@ -7767,6 +7767,12 @@ class DateTimeMinuteInstance {
|
|
|
7767
7767
|
set step(step) {
|
|
7768
7768
|
this._step = step;
|
|
7769
7769
|
}
|
|
7770
|
+
/**
|
|
7771
|
+
* Returns the LimitDateTimeInstance. This does not take the schedule into consideration.
|
|
7772
|
+
*/
|
|
7773
|
+
get limitInstance() {
|
|
7774
|
+
return this._limit;
|
|
7775
|
+
}
|
|
7770
7776
|
/**
|
|
7771
7777
|
* Returns true if the input date is on the schedule and possibly holds a valid value for the limit.
|
|
7772
7778
|
*
|
package/index.esm.js
CHANGED
|
@@ -8698,6 +8698,13 @@ class DateTimeMinuteInstance {
|
|
|
8698
8698
|
this._step = step;
|
|
8699
8699
|
}
|
|
8700
8700
|
|
|
8701
|
+
/**
|
|
8702
|
+
* Returns the LimitDateTimeInstance. This does not take the schedule into consideration.
|
|
8703
|
+
*/
|
|
8704
|
+
get limitInstance() {
|
|
8705
|
+
return this._limit;
|
|
8706
|
+
}
|
|
8707
|
+
|
|
8701
8708
|
/**
|
|
8702
8709
|
* Returns true if the input date is on the schedule and possibly holds a valid value for the limit.
|
|
8703
8710
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type Minutes, type DecisionFunction, type DateRelativeDirection, type Days, type Maybe } from '@dereekb/util';
|
|
2
2
|
import { type StepRoundDateTimeDown } from './date.round';
|
|
3
3
|
import { type DateCellScheduleDateFilterConfig, type DateCellScheduleDateFilterInput } from './date.cell.schedule';
|
|
4
|
-
import { type LimitDateTimeConfig } from './date.time.limit';
|
|
4
|
+
import { type LimitDateTimeConfig, LimitDateTimeInstance } from './date.time.limit';
|
|
5
5
|
export interface DateTimeMinuteConfig extends LimitDateTimeConfig {
|
|
6
6
|
/**
|
|
7
7
|
* Default date to consider.
|
|
@@ -77,6 +77,10 @@ export declare class DateTimeMinuteInstance {
|
|
|
77
77
|
set date(date: Date);
|
|
78
78
|
get step(): Minutes;
|
|
79
79
|
set step(step: Minutes);
|
|
80
|
+
/**
|
|
81
|
+
* Returns the LimitDateTimeInstance. This does not take the schedule into consideration.
|
|
82
|
+
*/
|
|
83
|
+
get limitInstance(): LimitDateTimeInstance;
|
|
80
84
|
/**
|
|
81
85
|
* Returns true if the input date is on the schedule and possibly holds a valid value for the limit.
|
|
82
86
|
*
|