@dereekb/dbx-form 13.6.17 → 13.8.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.
- package/fesm2022/dereekb-dbx-form-array.field.component-1wYSd4d3.mjs +169 -0
- package/fesm2022/dereekb-dbx-form-array.field.component-1wYSd4d3.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-calendar.mjs +440 -147
- package/fesm2022/dereekb-dbx-form-calendar.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-form-expand.field.component-Bp5_uO1A.mjs +56 -0
- package/fesm2022/dereekb-dbx-form-expand.field.component-Bp5_uO1A.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-formfield.field.component-BQyujXe3.mjs +70 -0
- package/fesm2022/dereekb-dbx-form-formfield.field.component-BQyujXe3.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-info.field.component-B0cFprvc.mjs +50 -0
- package/fesm2022/dereekb-dbx-form-info.field.component-B0cFprvc.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-info.wrapper.field.component-Crm4wVr5.mjs +35 -0
- package/fesm2022/dereekb-dbx-form-info.wrapper.field.component-Crm4wVr5.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-mapbox.mjs +629 -32
- package/fesm2022/dereekb-dbx-form-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-form-quiz.mjs +46 -55
- package/fesm2022/dereekb-dbx-form-quiz.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-form-section.field.component-DliafLqL.mjs +63 -0
- package/fesm2022/dereekb-dbx-form-section.field.component-DliafLqL.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-style.field.component-C3ZNiotx.mjs +71 -0
- package/fesm2022/dereekb-dbx-form-style.field.component-C3ZNiotx.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-working.field.component-CO8vK2bH.mjs +53 -0
- package/fesm2022/dereekb-dbx-form-working.field.component-CO8vK2bH.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-working.wrapper.field.component-BtD7_5i5.mjs +54 -0
- package/fesm2022/dereekb-dbx-form-working.wrapper.field.component-BtD7_5i5.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form-wrapper.content.component-Cy4ND_se.mjs +87 -0
- package/fesm2022/dereekb-dbx-form-wrapper.content.component-Cy4ND_se.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form.mjs +11793 -4852
- package/fesm2022/dereekb-dbx-form.mjs.map +1 -1
- package/lib/forge/field/_field.scss +14 -0
- package/lib/forge/field/selection/_selection.scss +15 -0
- package/lib/forge/field/selection/pickable/_pickable.scss +11 -0
- package/lib/forge/field/selection/searchable/_searchable.scss +34 -0
- package/lib/forge/field/selection/sourceselect/_sourceselect.scss +46 -0
- package/lib/forge/field/wrapper/_wrapper.scss +62 -0
- package/lib/forge/style/_shared.scss +26 -0
- package/lib/form/_form.scss +95 -0
- package/lib/formly/field/texteditor/_texteditor.scss +8 -0
- package/lib/formly/field/value/array/_array.scss +6 -0
- package/lib/formly/field/value/phone/_phone.scss +4 -1
- package/lib/style/_all-core.scss +2 -0
- package/lib/style/_all-theme.scss +2 -0
- package/package.json +16 -13
- package/types/dereekb-dbx-form-calendar.d.ts +313 -96
- package/types/dereekb-dbx-form-mapbox.d.ts +297 -4
- package/types/dereekb-dbx-form.d.ts +8013 -2481
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@use './selection/selection';
|
|
2
|
+
@use './wrapper/wrapper';
|
|
3
|
+
@use '../style/shared';
|
|
4
|
+
|
|
5
|
+
@mixin all-field-core() {
|
|
6
|
+
@include shared.core();
|
|
7
|
+
@include selection.all-selection-core();
|
|
8
|
+
@include wrapper.core();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@mixin all-field-theme($theme-config) {
|
|
12
|
+
@include selection.all-selection-theme($theme-config);
|
|
13
|
+
@include wrapper.theme($theme-config);
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@use './pickable/pickable';
|
|
2
|
+
@use './searchable/searchable';
|
|
3
|
+
@use './sourceselect/sourceselect';
|
|
4
|
+
|
|
5
|
+
@mixin all-selection-core() {
|
|
6
|
+
@include pickable.core();
|
|
7
|
+
@include searchable.core();
|
|
8
|
+
@include sourceselect.core();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@mixin all-selection-theme($theme-config) {
|
|
12
|
+
@include pickable.theme($theme-config);
|
|
13
|
+
@include searchable.theme($theme-config);
|
|
14
|
+
@include sourceselect.theme($theme-config);
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// MARK: Mixin
|
|
2
|
+
@mixin core() {
|
|
3
|
+
// Container margin and list max-height are defined in formly's _pickable.scss
|
|
4
|
+
// and apply to both formly and forge contexts (same class names).
|
|
5
|
+
//
|
|
6
|
+
// Bare input styling is provided by the .dbx-forge-bare-input class
|
|
7
|
+
// applied directly in the pickable templates.
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@mixin theme($theme-config) {
|
|
11
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
@mixin core() {
|
|
2
|
+
dbx-forge-searchable-text-field,
|
|
3
|
+
dbx-forge-searchable-chip-field {
|
|
4
|
+
display: block;
|
|
5
|
+
width: 100%;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.dbx-searchable-field {
|
|
9
|
+
width: 100%;
|
|
10
|
+
|
|
11
|
+
> .dbx-searchable-text-field-input,
|
|
12
|
+
> .dbx-searchable-chip-field-input {
|
|
13
|
+
width: 100%;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// Bare input styling is provided by the .dbx-forge-bare-input class
|
|
18
|
+
// applied directly in the searchable templates.
|
|
19
|
+
//
|
|
20
|
+
// The show/hide pattern (.dbx-searchable-text-field-has-value) and
|
|
21
|
+
// .dbx-searchable-text-field-value width are defined in formly's _searchable.scss
|
|
22
|
+
// and apply to both formly and forge contexts (same class names).
|
|
23
|
+
|
|
24
|
+
// Reveal the search input when the ancestor form-field wrapper has focus.
|
|
25
|
+
// The forge wrapper uses :focus-within instead of the .mat-focused class.
|
|
26
|
+
.dbx-forge-form-field-wrapper:focus-within .dbx-searchable-text-field-has-value.dbx-searchable-text-field-show-value .dbx-searchable-text-field-input {
|
|
27
|
+
margin-top: 8px;
|
|
28
|
+
opacity: unset;
|
|
29
|
+
height: unset;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@mixin theme($theme-config) {
|
|
34
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// MARK: Mixin
|
|
2
|
+
@mixin core() {
|
|
3
|
+
// The forge source select renders inside the forgeFormFieldWrapper content area.
|
|
4
|
+
// The wrapper provides padding and the outlined border. Override the shared formly
|
|
5
|
+
// styles that were designed for the mat-form-field context.
|
|
6
|
+
dbx-forge-source-select-field {
|
|
7
|
+
// Position the loading bar at the very bottom of the wrapper outline
|
|
8
|
+
// by stretching the field container to fill the wrapper content area.
|
|
9
|
+
.dbx-source-select-field {
|
|
10
|
+
position: relative;
|
|
11
|
+
// Negate the wrapper's content padding so the field fills edge-to-edge,
|
|
12
|
+
// allowing the loading bar to sit at the bottom of the outline.
|
|
13
|
+
margin: calc(-1 * var(--mat-form-field-container-vertical-padding, 16px)) -16px -8px;
|
|
14
|
+
padding: var(--mat-form-field-container-vertical-padding, 16px) 16px 8px;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
border-radius: var(--mdc-outlined-text-field-container-shape, 8px);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.dbx-source-select-field-loading {
|
|
20
|
+
left: 1px;
|
|
21
|
+
right: 1px;
|
|
22
|
+
bottom: 1px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Override formly button styles that were tuned for the mat-form-field context.
|
|
26
|
+
// In the forge wrapper, the button sits inside the outline alongside the select.
|
|
27
|
+
.dbx-source-select-field-select {
|
|
28
|
+
flex: 1;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.mat-mdc-select {
|
|
32
|
+
display: inline-flex;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.dbx-source-select-field-content .dbx-source-select-field-button {
|
|
36
|
+
margin-top: 0;
|
|
37
|
+
height: auto;
|
|
38
|
+
overflow: visible;
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@mixin theme($theme-config) {
|
|
46
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
@use '../../../style/theming';
|
|
2
|
+
|
|
3
|
+
// MARK: Variables
|
|
4
|
+
$dbx-forge-form-field-slider-thumb-margin: 22px;
|
|
5
|
+
|
|
6
|
+
// MARK: Mixin
|
|
7
|
+
@mixin core() {
|
|
8
|
+
// Forge form-field wrapper: suppress child field label/hint/error inside the wrapper.
|
|
9
|
+
// The wrapper provides its own label (notched outline), hint, and error subscript.
|
|
10
|
+
dbx-forge-form-field-wrapper {
|
|
11
|
+
.slider-label,
|
|
12
|
+
mat-error,
|
|
13
|
+
[matError],
|
|
14
|
+
.mat-hint,
|
|
15
|
+
.df-mat-error,
|
|
16
|
+
.df-mat-hint {
|
|
17
|
+
display: none !important;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// Slider margin fix for the form-field wrapper (mirrors the formly number slider fix).
|
|
22
|
+
// Adds margin so the slider thumb doesn't overlap the outlined border.
|
|
23
|
+
dbx-forge-form-field-wrapper .mat-mdc-slider {
|
|
24
|
+
margin: $dbx-forge-form-field-slider-thumb-margin $dbx-forge-form-field-slider-thumb-margin 0;
|
|
25
|
+
width: calc(100% - #{$dbx-forge-form-field-slider-thumb-margin * 2}) !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// List selection field inside the form-field wrapper: reduce padding so the list
|
|
29
|
+
// items render at full width within the outlined border. Uses !important to
|
|
30
|
+
// override the component's scoped inline styles (ViewEncapsulation.Emulated
|
|
31
|
+
// adds attribute selectors that raise specificity above global rules).
|
|
32
|
+
dbx-forge-form-field-wrapper .dbx-forge-form-field-content:has(dbx-forge-list-selection-field) {
|
|
33
|
+
padding-left: 0 !important;
|
|
34
|
+
padding-right: 0 !important;
|
|
35
|
+
padding-bottom: 0 !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// When a child field shows an inline error (e.g. searchable chip input validation),
|
|
39
|
+
// hide the wrapper's subscript hint so the error effectively replaces it.
|
|
40
|
+
dbx-forge-form-field-wrapper:has(.dbx-chip-input-error) .mat-mdc-form-field-hint-wrapper {
|
|
41
|
+
display: none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// The wrapper's mat-mdc-form-field host class causes Angular Material's
|
|
45
|
+
// form-field line-height (24px) and letter-spacing (0.496px) to cascade
|
|
46
|
+
// into all descendants. For list selection fields this distorts the list
|
|
47
|
+
// item layout. Reset typography on the list field element so descendant
|
|
48
|
+
// components inherit normal values instead of the form-field overrides.
|
|
49
|
+
dbx-forge-form-field-wrapper dbx-forge-list-selection-field {
|
|
50
|
+
display: block;
|
|
51
|
+
line-height: normal;
|
|
52
|
+
letter-spacing: normal;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// Shared working bar spacing used by both the working field and working wrapper field.
|
|
56
|
+
.dbx-forge-working-bar {
|
|
57
|
+
margin-top: 4px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@mixin theme($theme-config) {
|
|
62
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// Bare input class for forge fields rendered outside <mat-form-field>.
|
|
2
|
+
// Resets the native input and applies Material body-large typography so
|
|
3
|
+
// inputs inside the forge wrapper match their formly/mat-form-field counterparts.
|
|
4
|
+
//
|
|
5
|
+
// Apply by adding the class directly to <input> elements in forge templates.
|
|
6
|
+
@mixin core() {
|
|
7
|
+
// Resets native <input> elements that render inside the forge form-field wrapper
|
|
8
|
+
// (outside a <mat-form-field>) so they match Material body-large typography.
|
|
9
|
+
// Used by pickable filter inputs and searchable text/chip field inputs.
|
|
10
|
+
.dbx-forge-bare-input {
|
|
11
|
+
border: none;
|
|
12
|
+
outline: none;
|
|
13
|
+
width: 100%;
|
|
14
|
+
background: transparent;
|
|
15
|
+
color: var(--mat-sys-on-surface);
|
|
16
|
+
font-family: var(--mat-sys-body-large-font);
|
|
17
|
+
font-size: var(--mat-sys-body-large-size);
|
|
18
|
+
line-height: var(--mat-sys-body-large-line-height);
|
|
19
|
+
letter-spacing: var(--mat-sys-body-large-tracking);
|
|
20
|
+
padding: 4px 0;
|
|
21
|
+
|
|
22
|
+
&::placeholder {
|
|
23
|
+
color: var(--mat-sys-on-surface-variant);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
package/lib/form/_form.scss
CHANGED
|
@@ -4,6 +4,101 @@
|
|
|
4
4
|
|
|
5
5
|
// MARK: Mixin
|
|
6
6
|
@mixin core() {
|
|
7
|
+
// Forge flex row relative mode: override ng-forge grid column count
|
|
8
|
+
@for $i from 1 through 12 {
|
|
9
|
+
.dbx-forge-flex-#{$i} {
|
|
10
|
+
--df-grid-columns: #{$i};
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Forge styled box: outlined box around fields that don't use mat-form-field (checkbox, toggle, slider).
|
|
15
|
+
// Mirrors the Material outlined form-field appearance (border-radius, padding, min-height, hint styling).
|
|
16
|
+
.dbx-forge-styled-box {
|
|
17
|
+
mat-checkbox,
|
|
18
|
+
mat-slide-toggle {
|
|
19
|
+
border: 1px solid var(--mdc-outlined-text-field-outline-color, var(--mat-sys-outline, rgba(0, 0, 0, 0.38)));
|
|
20
|
+
border-radius: var(--mdc-outlined-text-field-container-shape, 8px);
|
|
21
|
+
padding: 0 16px;
|
|
22
|
+
display: block;
|
|
23
|
+
|
|
24
|
+
&:hover {
|
|
25
|
+
border-color: var(--mdc-outlined-text-field-hover-outline-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
mat-checkbox,
|
|
30
|
+
mat-slide-toggle {
|
|
31
|
+
.mdc-form-field {
|
|
32
|
+
width: 100%;
|
|
33
|
+
|
|
34
|
+
.mdc-label {
|
|
35
|
+
user-select: none;
|
|
36
|
+
width: 100%;
|
|
37
|
+
min-height: 56px;
|
|
38
|
+
display: inline-flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
padding-top: 6px;
|
|
41
|
+
padding-bottom: 6px;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Style the hint to match Material's .mat-mdc-form-field-subscript-wrapper / .mat-mdc-form-field-bottom-align / .mat-mdc-form-field-hint-wrapper.
|
|
47
|
+
// We can't add those classes directly since ng-forge renders the element, so we mirror their styles.
|
|
48
|
+
.mat-hint {
|
|
49
|
+
display: block;
|
|
50
|
+
padding: 0 16px;
|
|
51
|
+
-moz-osx-font-smoothing: grayscale;
|
|
52
|
+
-webkit-font-smoothing: antialiased;
|
|
53
|
+
font-family: var(--mat-form-field-subscript-text-font, var(--mat-sys-body-small-font));
|
|
54
|
+
line-height: var(--mat-form-field-subscript-text-line-height, var(--mat-sys-body-small-line-height));
|
|
55
|
+
font-size: var(--mat-form-field-subscript-text-size, var(--mat-sys-body-small-size));
|
|
56
|
+
letter-spacing: var(--mat-form-field-subscript-text-tracking, var(--mat-sys-body-small-tracking));
|
|
57
|
+
font-weight: var(--mat-form-field-subscript-text-weight, var(--mat-sys-body-small-weight));
|
|
58
|
+
color: var(--mat-form-field-subscript-text-color, var(--mat-sys-on-surface-variant, rgba(0, 0, 0, 0.6)));
|
|
59
|
+
|
|
60
|
+
// Matches .mat-mdc-form-field-bottom-align::before spacing
|
|
61
|
+
&::before {
|
|
62
|
+
content: '';
|
|
63
|
+
display: inline-block;
|
|
64
|
+
height: 16px;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Generic forge disabled class for fields that only need CSS-based disabling.
|
|
70
|
+
.dbx-forge-disabled {
|
|
71
|
+
opacity: 0.38;
|
|
72
|
+
pointer-events: none;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// Form-level disabled state: disables all interactive elements inside a forge form.
|
|
76
|
+
// Applied to <dbx-forge> host when the form is disabled. This handles built-in ng-forge
|
|
77
|
+
// material fields (input, textarea, select, datepicker, toggle, checkbox) that don't
|
|
78
|
+
// have custom disabled propagation. Custom forge field components additionally use
|
|
79
|
+
// inject(FORM_OPTIONS) for programmatic disabled handling (e.g. disabling FormControls).
|
|
80
|
+
.dbx-forge-form-disabled {
|
|
81
|
+
// Disable pointer events on all standard interactive elements
|
|
82
|
+
input,
|
|
83
|
+
textarea,
|
|
84
|
+
select,
|
|
85
|
+
button,
|
|
86
|
+
mat-select,
|
|
87
|
+
mat-slider,
|
|
88
|
+
mat-checkbox,
|
|
89
|
+
mat-slide-toggle,
|
|
90
|
+
mat-chip-listbox,
|
|
91
|
+
mat-chip-grid,
|
|
92
|
+
.mat-mdc-form-field {
|
|
93
|
+
pointer-events: none;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// Reduce opacity on form fields to indicate disabled state
|
|
97
|
+
.mat-mdc-form-field,
|
|
98
|
+
.dbx-forge-styled-box {
|
|
99
|
+
opacity: 0.38;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
7
102
|
}
|
|
8
103
|
|
|
9
104
|
@mixin theme($theme-config) {
|
|
@@ -9,6 +9,12 @@
|
|
|
9
9
|
border: dotted 3px #999;
|
|
10
10
|
min-height: 100px;
|
|
11
11
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
12
|
+
|
|
13
|
+
// Hide the placeholder by default; CDK adds .cdk-drag-placeholder
|
|
14
|
+
// when it activates the element during a drag operation.
|
|
15
|
+
&:not(.cdk-drag-placeholder) {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
12
18
|
}
|
|
13
19
|
|
|
14
20
|
.dbx-form-repeat-array {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
@use '../../../../style/theming';
|
|
2
2
|
|
|
3
3
|
// MARK: Variables
|
|
4
|
+
$extension-input-width: 40px !default;
|
|
5
|
+
$country-selector-width: 85px !default;
|
|
4
6
|
|
|
5
7
|
// MARK: Mixin
|
|
6
8
|
@mixin core() {
|
|
@@ -12,7 +14,7 @@
|
|
|
12
14
|
|
|
13
15
|
.dbx-form-phone-field-phone-content button.country-selector {
|
|
14
16
|
opacity: 100;
|
|
15
|
-
width:
|
|
17
|
+
width: var(--dbx-phone-field-country-selector-width, #{$country-selector-width});
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
.dbx-form-phone-field .ngx-mat-tel-input-container input:not(.country-search) {
|
|
@@ -27,6 +29,7 @@
|
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
.dbx-form-phone-field-extension-input {
|
|
32
|
+
width: var(--dbx-phone-field-extension-input-width, #{$extension-input-width});
|
|
30
33
|
border: 0;
|
|
31
34
|
border-bottom: 1px solid var(--mat-sys-outline);
|
|
32
35
|
background: none;
|
package/lib/style/_all-core.scss
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
@use '../layout/layout';
|
|
4
4
|
@use '../formly/field/field';
|
|
5
5
|
@use '../formly/form/form' as forms;
|
|
6
|
+
@use '../forge/field/field' as forge-field;
|
|
6
7
|
@use '../extension/extension';
|
|
7
8
|
|
|
8
9
|
// Includes all theming config
|
|
@@ -10,6 +11,7 @@
|
|
|
10
11
|
@include form.core();
|
|
11
12
|
@include formly.core();
|
|
12
13
|
@include field.all-field-core();
|
|
14
|
+
@include forge-field.all-field-core();
|
|
13
15
|
@include forms.core();
|
|
14
16
|
@include layout.core();
|
|
15
17
|
@include extension.all-extension-core($theme-config);
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
@use '../layout/layout';
|
|
4
4
|
@use '../formly/field/field';
|
|
5
5
|
@use '../formly/form/form' as forms;
|
|
6
|
+
@use '../forge/field/field' as forge-field;
|
|
6
7
|
@use '../extension/extension';
|
|
7
8
|
|
|
8
9
|
// Includes all theming config
|
|
@@ -10,6 +11,7 @@
|
|
|
10
11
|
@include form.theme($theme-config);
|
|
11
12
|
@include formly.theme($theme-config);
|
|
12
13
|
@include field.all-field-theme($theme-config);
|
|
14
|
+
@include forge-field.all-field-theme($theme-config);
|
|
13
15
|
@include forms.theme($theme-config);
|
|
14
16
|
@include layout.theme($theme-config);
|
|
15
17
|
@include extension.all-extension-theme($theme-config);
|
package/package.json
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.8.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/cdk": "21.2.3",
|
|
6
|
-
"@angular/common": "21.2.
|
|
7
|
-
"@angular/core": "21.2.
|
|
8
|
-
"@angular/forms": "21.2.
|
|
9
|
-
"@angular/material": "21.2.3",
|
|
5
|
+
"@angular/cdk": "^21.2.3",
|
|
6
|
+
"@angular/common": "21.2.4",
|
|
7
|
+
"@angular/core": "21.2.4",
|
|
8
|
+
"@angular/forms": "21.2.4",
|
|
9
|
+
"@angular/material": "^21.2.3",
|
|
10
10
|
"@angular/material-date-fns-adapter": "21.2.3",
|
|
11
|
-
"@angular/platform-browser": "21.2.
|
|
11
|
+
"@angular/platform-browser": "21.2.4",
|
|
12
12
|
"@bobbyquantum/ngx-editor": "21.0.0",
|
|
13
|
-
"@dereekb/date": "13.
|
|
14
|
-
"@dereekb/dbx-core": "13.
|
|
15
|
-
"@dereekb/dbx-web": "13.
|
|
16
|
-
"@dereekb/model": "13.
|
|
17
|
-
"@dereekb/rxjs": "13.
|
|
18
|
-
"@dereekb/util": "13.
|
|
13
|
+
"@dereekb/date": "13.8.0",
|
|
14
|
+
"@dereekb/dbx-core": "13.8.0",
|
|
15
|
+
"@dereekb/dbx-web": "13.8.0",
|
|
16
|
+
"@dereekb/model": "13.8.0",
|
|
17
|
+
"@dereekb/rxjs": "13.8.0",
|
|
18
|
+
"@dereekb/util": "13.8.0",
|
|
19
|
+
"@dereekb/vitest": "13.8.0",
|
|
20
|
+
"@ng-forge/dynamic-forms": "^0.7.0",
|
|
21
|
+
"@ng-forge/dynamic-forms-material": "^0.7.0",
|
|
19
22
|
"@ng-web-apis/geolocation": "^5.1.0",
|
|
20
23
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
21
24
|
"@ngrx/component-store": "^21.0.0",
|