@dereekb/dbx-form 9.25.10 → 9.25.12
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/esm2020/lib/formly/field/selection/selection.field.mjs +7 -3
- package/esm2020/lib/formly/formly.context.mjs +6 -5
- package/esm2020/lib/formly/formly.form.component.mjs +16 -4
- package/fesm2015/dereekb-dbx-form.mjs +23 -9
- package/fesm2015/dereekb-dbx-form.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-form.mjs +25 -9
- package/fesm2020/dereekb-dbx-form.mjs.map +1 -1
- package/lib/extension/calendar/_calendar.scss +4 -1
- package/lib/formly/field/selection/selection.field.d.ts +6 -6
- package/lib/formly/formly.form.component.d.ts +2 -1
- package/mapbox/package.json +4 -4
- package/package.json +4 -4
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
.cal-month-view .cal-day-cell > .cal-cell-top {
|
|
107
|
+
flex: unset;
|
|
107
108
|
min-height: 32px;
|
|
108
109
|
text-align: center;
|
|
109
110
|
padding-top: 12px;
|
|
@@ -121,7 +122,9 @@
|
|
|
121
122
|
min-height: 32px;
|
|
122
123
|
|
|
123
124
|
> span {
|
|
124
|
-
height:
|
|
125
|
+
height: unset;
|
|
126
|
+
min-height: 18px;
|
|
127
|
+
line-height: 14px;
|
|
125
128
|
}
|
|
126
129
|
}
|
|
127
130
|
}
|
|
@@ -16,23 +16,23 @@ export interface ValueSelectionFieldConfig<T> extends LabeledFieldConfig, Descri
|
|
|
16
16
|
*
|
|
17
17
|
* Be sure to import FormlyMatNativeSelectModule.
|
|
18
18
|
*/
|
|
19
|
-
native?: boolean;
|
|
19
|
+
readonly native?: boolean;
|
|
20
20
|
/**
|
|
21
|
-
* Whether or not to add a clear option to the input values.
|
|
21
|
+
* Whether or not to add a clear option to the input values.
|
|
22
22
|
*/
|
|
23
|
-
addClearOption?: string | boolean;
|
|
23
|
+
readonly addClearOption?: string | boolean;
|
|
24
24
|
/**
|
|
25
25
|
* Values to select from.
|
|
26
26
|
*/
|
|
27
|
-
options: ObservableOrValue<ValueSelectionOption<T>[]>;
|
|
27
|
+
readonly options: ObservableOrValue<ValueSelectionOption<T>[]>;
|
|
28
28
|
/**
|
|
29
29
|
* Allow selecting multiple values and return an array.
|
|
30
30
|
*/
|
|
31
|
-
multiple?: boolean;
|
|
31
|
+
readonly multiple?: boolean;
|
|
32
32
|
/**
|
|
33
33
|
* The select all option configuration.
|
|
34
34
|
*/
|
|
35
|
-
selectAllOption?: true | string;
|
|
35
|
+
readonly selectAllOption?: true | string;
|
|
36
36
|
}
|
|
37
37
|
export declare function valueSelectionField<T>(config: ValueSelectionFieldConfig<T>): FormlyFieldConfig;
|
|
38
38
|
export declare function addValueSelectionOptionFunction<T>(label?: string | undefined): (options: ValueSelectionOption<T>[]) => ValueSelectionOption<T>[];
|
|
@@ -23,7 +23,8 @@ export declare class DbxFormlyFormComponent<T> extends AbstractSubscriptionDirec
|
|
|
23
23
|
private _reset;
|
|
24
24
|
private _forceUpdate;
|
|
25
25
|
private _disabledSub;
|
|
26
|
-
|
|
26
|
+
private _enforceDisabledSub;
|
|
27
|
+
readonly form: FormGroup<{}>;
|
|
27
28
|
model: T;
|
|
28
29
|
options: FormlyFormOptions;
|
|
29
30
|
readonly fields$: Observable<FormlyFieldConfig<import("@ngx-formly/core").FormlyFieldProps & {
|
package/mapbox/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form/mapbox",
|
|
3
|
-
"version": "9.25.
|
|
3
|
+
"version": "9.25.12",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.1.0",
|
|
6
6
|
"@angular/core": "^14.1.0",
|
|
7
7
|
"@angular/forms": "^14.2.0",
|
|
8
|
-
"@dereekb/dbx-web": "9.25.
|
|
8
|
+
"@dereekb/dbx-web": "9.25.12",
|
|
9
9
|
"@ngx-formly/core": "^6.0.0",
|
|
10
10
|
"@ngx-formly/material": "^6.0.0",
|
|
11
11
|
"@ng-web-apis/geolocation": "^2.0.0",
|
|
12
12
|
"mapbox-gl": "^2.9.2",
|
|
13
|
-
"@dereekb/dbx-web/mapbox": "9.25.
|
|
14
|
-
"@dereekb/dbx-form": "9.25.
|
|
13
|
+
"@dereekb/dbx-web/mapbox": "9.25.12",
|
|
14
|
+
"@dereekb/dbx-form": "9.25.12"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.3.0"
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form",
|
|
3
|
-
"version": "9.25.
|
|
3
|
+
"version": "9.25.12",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
7
7
|
"lodash.clonedeep": "^4.5.0",
|
|
8
|
-
"@dereekb/dbx-core": "9.25.
|
|
8
|
+
"@dereekb/dbx-core": "9.25.12",
|
|
9
9
|
"@angular/material": "^14.2.0",
|
|
10
|
-
"@dereekb/dbx-web": "9.25.
|
|
10
|
+
"@dereekb/dbx-web": "9.25.12",
|
|
11
11
|
"@angular/forms": "^14.2.0",
|
|
12
12
|
"@ngx-formly/core": "^6.0.0",
|
|
13
13
|
"@ngx-formly/material": "^6.0.0",
|
|
14
14
|
"ngx-editor": "^15.0.0",
|
|
15
15
|
"ngx-mat-intl-tel-input": "^5.0.0",
|
|
16
|
-
"@dereekb/model": "9.25.
|
|
16
|
+
"@dereekb/model": "9.25.12"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0"
|