@dereekb/dbx-form 9.23.6 → 9.23.7
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/pickable/pickable.chip.field.component.mjs +5 -4
- package/esm2020/lib/formly/field/selection/pickable/pickable.field.directive.mjs +3 -3
- package/esm2020/lib/formly/field/selection/pickable/pickable.list.field.component.mjs +19 -4
- package/esm2020/lib/formly/field/selection/searchable/searchable.chip.field.component.mjs +3 -3
- package/esm2020/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.mjs +8 -2
- package/esm2020/lib/formly/field/selection/searchable/searchable.field.directive.mjs +3 -3
- package/esm2020/lib/formly/field/selection/searchable/searchable.field.mjs +4 -6
- package/esm2020/lib/formly/field/selection/selection.mjs +1 -1
- package/fesm2015/dereekb-dbx-form.mjs +41 -24
- package/fesm2015/dereekb-dbx-form.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-form.mjs +41 -24
- package/fesm2020/dereekb-dbx-form.mjs.map +1 -1
- package/lib/formly/field/selection/pickable/_pickable.scss +7 -0
- package/lib/formly/field/selection/pickable/pickable.list.field.component.d.ts +2 -0
- package/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.d.ts +1 -0
- package/lib/formly/field/selection/selection.d.ts +3 -3
- package/mapbox/package.json +4 -4
- package/package.json +4 -4
|
@@ -32,6 +32,8 @@ export declare class DbxPickableListFieldItemListViewComponent<T> extends Abstra
|
|
|
32
32
|
}
|
|
33
33
|
export declare class DbxPickableListFieldItemListViewItemComponent<T> extends AbstractDbxValueListViewItemComponent<PickableValueFieldDisplayValue<T>> {
|
|
34
34
|
get label(): string;
|
|
35
|
+
get sublabel(): string | undefined;
|
|
36
|
+
get icon(): string | undefined;
|
|
35
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPickableListFieldItemListViewItemComponent<any>, never>;
|
|
36
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPickableListFieldItemListViewItemComponent<any>, "ng-component", never, {}, {}, never, never, false>;
|
|
37
39
|
}
|
package/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export declare abstract class AbstractDbxSearchableFieldDisplayDirective<T> {
|
|
|
21
21
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxSearchableFieldDisplayDirective<any>, never, never, {}, {}, never, never, false>;
|
|
22
22
|
}
|
|
23
23
|
export declare class DbxDefaultSearchableFieldDisplayComponent<T> extends AbstractDbxSearchableFieldDisplayDirective<T> {
|
|
24
|
+
get icon(): string | undefined;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDefaultSearchableFieldDisplayComponent<any>, never>;
|
|
25
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDefaultSearchableFieldDisplayComponent<any>, "dbx-default-searchable-field-display", never, {}, {}, never, never, false>;
|
|
26
27
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PrimativeKey, Maybe, MapFunction } from '@dereekb/util';
|
|
1
|
+
import { PrimativeKey, Maybe, MapFunction, LabelRef } from '@dereekb/util';
|
|
2
2
|
export interface SelectionValue<T, M = unknown> {
|
|
3
3
|
/**
|
|
4
4
|
* Value associated with this field.
|
|
@@ -12,9 +12,9 @@ export interface SelectionValue<T, M = unknown> {
|
|
|
12
12
|
/**
|
|
13
13
|
* Displayed value.
|
|
14
14
|
*/
|
|
15
|
-
export interface SelectionDisplayValue<T, M = unknown> extends SelectionValue<T, M
|
|
16
|
-
label: string;
|
|
15
|
+
export interface SelectionDisplayValue<T, M = unknown> extends SelectionValue<T, M>, LabelRef {
|
|
17
16
|
sublabel?: string;
|
|
17
|
+
icon?: string;
|
|
18
18
|
/**
|
|
19
19
|
* Whether or not the value is known.
|
|
20
20
|
*/
|
package/mapbox/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form/mapbox",
|
|
3
|
-
"version": "9.23.
|
|
3
|
+
"version": "9.23.7",
|
|
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.23.
|
|
8
|
+
"@dereekb/dbx-web": "9.23.7",
|
|
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.23.
|
|
14
|
-
"@dereekb/dbx-form": "9.23.
|
|
13
|
+
"@dereekb/dbx-web/mapbox": "9.23.7",
|
|
14
|
+
"@dereekb/dbx-form": "9.23.7"
|
|
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.23.
|
|
3
|
+
"version": "9.23.7",
|
|
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.23.
|
|
8
|
+
"@dereekb/dbx-core": "9.23.7",
|
|
9
9
|
"@angular/material": "^14.2.0",
|
|
10
|
-
"@dereekb/dbx-web": "9.23.
|
|
10
|
+
"@dereekb/dbx-web": "9.23.7",
|
|
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.23.
|
|
16
|
+
"@dereekb/model": "9.23.7"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0"
|