@dereekb/dbx-form 13.11.2 → 13.11.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form",
|
|
3
|
-
"version": "13.11.
|
|
3
|
+
"version": "13.11.3",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.scss",
|
|
6
6
|
"*.css"
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"@angular/material-date-fns-adapter": "21.2.9",
|
|
15
15
|
"@angular/platform-browser": "21.2.11",
|
|
16
16
|
"@bobbyquantum/ngx-editor": "21.0.0",
|
|
17
|
-
"@dereekb/date": "13.11.
|
|
18
|
-
"@dereekb/dbx-core": "13.11.
|
|
19
|
-
"@dereekb/dbx-web": "13.11.
|
|
20
|
-
"@dereekb/model": "13.11.
|
|
21
|
-
"@dereekb/rxjs": "13.11.
|
|
22
|
-
"@dereekb/util": "13.11.
|
|
23
|
-
"@dereekb/vitest": "13.11.
|
|
17
|
+
"@dereekb/date": "13.11.3",
|
|
18
|
+
"@dereekb/dbx-core": "13.11.3",
|
|
19
|
+
"@dereekb/dbx-web": "13.11.3",
|
|
20
|
+
"@dereekb/model": "13.11.3",
|
|
21
|
+
"@dereekb/rxjs": "13.11.3",
|
|
22
|
+
"@dereekb/util": "13.11.3",
|
|
23
|
+
"@dereekb/vitest": "13.11.3",
|
|
24
24
|
"@ng-forge/dynamic-forms": "0.9.0-next.6",
|
|
25
25
|
"@ng-forge/dynamic-forms-material": "0.9.0-next.6",
|
|
26
26
|
"@ng-web-apis/geolocation": "^5.2.0",
|
|
@@ -1293,6 +1293,7 @@ interface DbxForgeFieldFunctionConfig<C extends DbxForgeFieldFunctionDef<any>> {
|
|
|
1293
1293
|
* })
|
|
1294
1294
|
* });
|
|
1295
1295
|
* ```
|
|
1296
|
+
* @__NO_SIDE_EFFECTS__
|
|
1296
1297
|
*/
|
|
1297
1298
|
declare function dbxForgeFieldFunction<C extends DbxForgeFieldFunctionDef<F>, F extends FieldDef<any> = ExtractDbxForgeFieldDef<C>>(config: DbxForgeFieldFunctionConfig<C>): DbxForgeFieldFunction<C, F>;
|
|
1298
1299
|
/**
|
|
@@ -2470,6 +2471,7 @@ declare enum DbxDateTimeValueMode {
|
|
|
2470
2471
|
* const parser = dbxDateTimeInputValueParseFactory(DbxDateTimeValueMode.DATE_STRING, timezoneInstance);
|
|
2471
2472
|
* const date = parser('2024-01-15T10:00:00Z');
|
|
2472
2473
|
* ```
|
|
2474
|
+
* @__NO_SIDE_EFFECTS__
|
|
2473
2475
|
*/
|
|
2474
2476
|
declare function dbxDateTimeInputValueParseFactory(mode: DbxDateTimeValueMode, timezoneInstance: Maybe<DateTimezoneUtcNormalInstance>): (date: Maybe<Date | string | number>) => Maybe<Date>;
|
|
2475
2477
|
/**
|
|
@@ -2487,6 +2489,7 @@ declare function dbxDateTimeInputValueParseFactory(mode: DbxDateTimeValueMode, t
|
|
|
2487
2489
|
* const formatter = dbxDateTimeOutputValueFactory(DbxDateTimeValueMode.DAY_STRING, null);
|
|
2488
2490
|
* const dayString = formatter(new Date()); // e.g., '2024-01-15'
|
|
2489
2491
|
* ```
|
|
2492
|
+
* @__NO_SIDE_EFFECTS__
|
|
2490
2493
|
*/
|
|
2491
2494
|
declare function dbxDateTimeOutputValueFactory(mode: DbxDateTimeValueMode, timezoneInstance: Maybe<DateTimezoneUtcNormalInstance>): (date: Maybe<Date>) => Maybe<Date | string | number>;
|
|
2492
2495
|
/**
|
|
@@ -2915,6 +2918,7 @@ declare function dateTimeFieldCalc(): DateTimeFieldCalc;
|
|
|
2915
2918
|
*
|
|
2916
2919
|
* @param input - The datetime calculation input containing date, time, and mode information
|
|
2917
2920
|
* @returns The combined Date value, or undefined if the input is cleared or incomplete
|
|
2921
|
+
* @__NO_SIDE_EFFECTS__
|
|
2918
2922
|
*/
|
|
2919
2923
|
declare function buildCombinedDateTime(input: DateTimeCalcInput): Maybe<Date>;
|
|
2920
2924
|
/**
|
|
@@ -9885,6 +9889,7 @@ declare function formlyValueSelectionField<T>(config: ValueSelectionFieldConfig<
|
|
|
9885
9889
|
*
|
|
9886
9890
|
* @param label - Optional label for the clear option
|
|
9887
9891
|
* @returns A function that transforms selection options by prepending a clear option
|
|
9892
|
+
* @__NO_SIDE_EFFECTS__
|
|
9888
9893
|
*/
|
|
9889
9894
|
declare function formlyAddValueSelectionOptionFunction<T>(label?: string | undefined): (options: ValueSelectionOption<T>[]) => ValueSelectionOption<T>[];
|
|
9890
9895
|
/**
|