@dereekb/dbx-form 13.16.0 → 13.18.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-calendar.mjs +53 -316
- package/fesm2022/dereekb-dbx-form-calendar.mjs.map +1 -1
- package/fesm2022/{dereekb-dbx-form-expand.field.component-xIW9lckC.mjs → dereekb-dbx-form-expand.field.component-uqVNtX2s.mjs} +3 -3
- package/fesm2022/{dereekb-dbx-form-expand.field.component-xIW9lckC.mjs.map → dereekb-dbx-form-expand.field.component-uqVNtX2s.mjs.map} +1 -1
- package/fesm2022/dereekb-dbx-form-mapbox.mjs +10 -538
- package/fesm2022/dereekb-dbx-form-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-form-style-demo.mjs +417 -0
- package/fesm2022/dereekb-dbx-form-style-demo.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-form.mjs +1974 -9092
- package/fesm2022/dereekb-dbx-form.mjs.map +1 -1
- package/lib/extension/calendar/_calendar.scss +3 -3
- package/lib/forge/field/_field.scss +15 -0
- package/lib/forge/field/selection/pickable/_pickable.scss +11 -6
- package/lib/forge/field/selection/searchable/_searchable.scss +71 -3
- package/lib/forge/field/selection/sourceselect/_sourceselect.scss +1 -1
- package/lib/{formly → forge}/field/texteditor/_texteditor.scss +7 -3
- package/lib/{formly → forge}/field/value/array/_array.scss +4 -4
- package/lib/{formly → forge}/field/value/date/_date.scss +5 -9
- package/lib/{formly → forge}/field/value/duration/_duration.scss +7 -7
- package/lib/{formly → forge}/field/value/phone/_phone.scss +1 -1
- package/lib/forge/preset/_preset.scss +4 -4
- package/lib/forge/style/_shared.scss +9 -0
- package/lib/form/_form.scss +3 -0
- package/lib/style/_all-core.scss +0 -4
- package/lib/style/_all-theme.scss +0 -4
- package/lib/style/_all-typography.scss +0 -2
- package/package.json +12 -10
- package/style-demo/README.md +7 -0
- package/types/dereekb-dbx-form-calendar.d.ts +81 -232
- package/types/dereekb-dbx-form-mapbox.d.ts +9 -250
- package/types/dereekb-dbx-form-style-demo.d.ts +195 -0
- package/types/dereekb-dbx-form.d.ts +4191 -8496
- package/lib/formly/_formly.scss +0 -17
- package/lib/formly/field/_field.scss +0 -27
- package/lib/formly/field/checklist/_checklist.scss +0 -49
- package/lib/formly/field/component/_component.scss +0 -10
- package/lib/formly/field/selection/_selection.scss +0 -21
- package/lib/formly/field/selection/list/_list.scss +0 -15
- package/lib/formly/field/selection/pickable/_pickable.scss +0 -18
- package/lib/formly/field/selection/searchable/_searchable.scss +0 -88
- package/lib/formly/field/selection/sourceselect/_sourceselect.scss +0 -42
- package/lib/formly/field/value/_value.scss +0 -30
- package/lib/formly/field/value/boolean/_boolean.scss +0 -52
- package/lib/formly/field/value/number/_number.scss +0 -17
- package/lib/formly/field/value/text/_text.scss +0 -10
- package/lib/formly/field/wrapper/_wrapper.scss +0 -31
|
@@ -44,7 +44,7 @@ $cal-cell-min-width: 20px;
|
|
|
44
44
|
|
|
45
45
|
// Remove padding from form
|
|
46
46
|
.mat-mdc-form-field-wrapper {
|
|
47
|
-
padding-bottom:
|
|
47
|
+
padding-bottom: var(--dbx-padding-2);
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.mat-mdc-form-field-infix {
|
|
@@ -75,13 +75,13 @@ $cal-cell-min-width: 20px;
|
|
|
75
75
|
margin-right: 3px;
|
|
76
76
|
font-size: 0.8em;
|
|
77
77
|
font-weight: bold;
|
|
78
|
-
border-radius:
|
|
78
|
+
border-radius: var(--mat-sys-corner-full);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.dbx-schedule-selection-calendar-date-range-field-content {
|
|
83
83
|
width: 100%;
|
|
84
|
-
padding-right:
|
|
84
|
+
padding-right: var(--dbx-padding-3);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
.dbx-schedule-selection-calendar-cell {
|
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
@use './selection/selection';
|
|
2
|
+
@use './value/array/array';
|
|
3
|
+
@use './value/phone/phone';
|
|
4
|
+
@use './value/date/date';
|
|
5
|
+
@use './value/duration/duration';
|
|
6
|
+
@use './texteditor/texteditor';
|
|
2
7
|
@use './wrapper/wrapper';
|
|
3
8
|
|
|
4
9
|
@mixin all-field-core() {
|
|
5
10
|
@include selection.all-selection-core();
|
|
11
|
+
@include array.core();
|
|
12
|
+
@include phone.core();
|
|
13
|
+
@include date.core();
|
|
14
|
+
@include duration.core();
|
|
15
|
+
@include texteditor.core();
|
|
6
16
|
@include wrapper.core();
|
|
7
17
|
}
|
|
8
18
|
|
|
9
19
|
@mixin all-field-theme($theme-config) {
|
|
10
20
|
@include selection.all-selection-theme($theme-config);
|
|
21
|
+
@include array.theme($theme-config);
|
|
22
|
+
@include phone.theme($theme-config);
|
|
23
|
+
@include date.theme($theme-config);
|
|
24
|
+
@include duration.theme($theme-config);
|
|
25
|
+
@include texteditor.theme($theme-config);
|
|
11
26
|
@include wrapper.theme($theme-config);
|
|
12
27
|
}
|
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
// MARK: Mixin
|
|
2
2
|
@mixin core() {
|
|
3
|
-
//
|
|
4
|
-
//
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
// Shared pickable styles (migrated from the removed formly _pickable.scss). Bare input styling
|
|
4
|
+
// is provided by the .dbx-forge-bare-input class applied directly in the pickable templates.
|
|
5
|
+
.dbx-pickable-item-field-filter {
|
|
6
|
+
margin-bottom: 4px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.dbx-pickable-item-field-list-content {
|
|
10
|
+
max-height: var(--dbx-pickable-item-field-list-content-max-height, 400px);
|
|
11
|
+
overflow: auto;
|
|
12
|
+
}
|
|
8
13
|
|
|
9
14
|
// List variant styling
|
|
10
15
|
.dbx-pickable-item-field-list {
|
|
11
16
|
.dbx-pickable-item-field-list-content {
|
|
12
|
-
max-height: 300px;
|
|
17
|
+
max-height: var(--dbx-pickable-item-field-list-content-max-height, 300px);
|
|
13
18
|
overflow-y: auto;
|
|
14
19
|
}
|
|
15
20
|
|
|
@@ -16,10 +16,78 @@
|
|
|
16
16
|
|
|
17
17
|
// Bare input styling is provided by the .dbx-forge-bare-input class
|
|
18
18
|
// applied directly in the searchable templates.
|
|
19
|
+
|
|
20
|
+
// Shared searchable styles (migrated from the removed formly _searchable.scss). These class
|
|
21
|
+
// names are produced by the searchable autocomplete/display components (now in
|
|
22
|
+
// field/selection/searchable) and the searchable field templates.
|
|
23
|
+
.dbx-searchable-text-field-value {
|
|
24
|
+
width: 100%;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.dbx-searchable-text-field-autocomplete > .mat-mdc-option > .mdc-list-item__primary-text {
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// When a mat-option wraps a dbx-anchor, the anchor must cover the entire option surface so that
|
|
32
|
+
// every click lands inside the anchor's child click target (where the override click handler is
|
|
33
|
+
// attached). Otherwise clicks on the mat-option's padding/edge land on mat-option itself,
|
|
34
|
+
// bypassing dbx-anchor's onClick handler — selection still fires (via mat-option's own click
|
|
35
|
+
// listener) but the anchor click is silently dropped. Inner padding is provided by
|
|
36
|
+
// .dbx-default-searchable-field-display.
|
|
19
37
|
//
|
|
20
|
-
// The
|
|
21
|
-
//
|
|
22
|
-
|
|
38
|
+
// The .mdc-list-item compound is needed to outweigh Material's own .mat-mdc-option.mdc-list-item
|
|
39
|
+
// rule (which sets align-items: center).
|
|
40
|
+
.mat-mdc-option.mdc-list-item.dbx-searchable-field-anchor-option {
|
|
41
|
+
padding: 0;
|
|
42
|
+
align-items: stretch;
|
|
43
|
+
|
|
44
|
+
> .mdc-list-item__primary-text {
|
|
45
|
+
width: 100%;
|
|
46
|
+
margin: 0;
|
|
47
|
+
display: flex;
|
|
48
|
+
align-items: stretch;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
dbx-searchable-field-autocomplete-item,
|
|
52
|
+
dbx-anchor,
|
|
53
|
+
.dbx-anchor-a {
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: stretch;
|
|
56
|
+
flex: 1;
|
|
57
|
+
width: 100%;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.dbx-anchor-a > span {
|
|
61
|
+
display: flex;
|
|
62
|
+
align-items: center;
|
|
63
|
+
flex: 1;
|
|
64
|
+
width: 100%;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.dbx-chip-input-error {
|
|
69
|
+
display: block;
|
|
70
|
+
font-size: var(--mat-sys-body-small-size);
|
|
71
|
+
padding: 4px 0 0;
|
|
72
|
+
color: var(--mat-sys-error);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.dbx-default-searchable-field-display {
|
|
76
|
+
padding: 0 16px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.dbx-searchable-text-field-has-value.dbx-searchable-text-field-show-value {
|
|
80
|
+
.dbx-searchable-text-field-value {
|
|
81
|
+
margin-bottom: -6px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// hide without clearing display, which will prevent the input from being clickable.
|
|
85
|
+
.dbx-searchable-text-field-input {
|
|
86
|
+
margin-top: 0;
|
|
87
|
+
height: 0;
|
|
88
|
+
opacity: 0;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
23
91
|
|
|
24
92
|
// Reveal the search input when the ancestor form-field wrapper has focus.
|
|
25
93
|
// The forge wrapper uses :focus-within instead of the .mat-focused class.
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
@mixin core() {
|
|
7
7
|
.dbx-texteditor-field-compact {
|
|
8
8
|
.dbx-texteditor-field-input {
|
|
9
|
-
min-height: 120px;
|
|
10
|
-
height: 300px;
|
|
9
|
+
min-height: var(--dbx-texteditor-field-compact-min-height, 120px);
|
|
10
|
+
height: var(--dbx-texteditor-field-compact-height, 300px);
|
|
11
11
|
max-height: calc(var(--vh100) * 0.5);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.dbx-texteditor-field-input {
|
|
16
|
-
max-height: 400px;
|
|
16
|
+
max-height: var(--dbx-texteditor-field-max-height, 400px);
|
|
17
17
|
overflow: auto;
|
|
18
18
|
}
|
|
19
19
|
|
|
@@ -52,6 +52,10 @@
|
|
|
52
52
|
color: var(--mat-sys-on-surface);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
+
.NgxEditor__MenuBar svg {
|
|
56
|
+
fill: var(--mat-sys-outline);
|
|
57
|
+
}
|
|
58
|
+
|
|
55
59
|
.NgxEditor__Dropdown.NgxEditor__Dropdown--Selected .NgxEditor__Dropdown--Text {
|
|
56
60
|
color: var(--mat-sys-on-surface);
|
|
57
61
|
}
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
// MARK: Mixin
|
|
6
6
|
@mixin core() {
|
|
7
7
|
.dbx-form-repeat-array-drag-placeholder {
|
|
8
|
-
background:
|
|
9
|
-
border: dotted 3px
|
|
8
|
+
background: var(--mat-sys-surface-container-highest);
|
|
9
|
+
border: dotted 3px var(--mat-sys-outline);
|
|
10
10
|
min-height: 100px;
|
|
11
11
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
12
12
|
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
|
|
39
39
|
.dbx-form-repeat-array-field-content {
|
|
40
40
|
display: block;
|
|
41
|
-
padding:
|
|
41
|
+
padding: var(--dbx-padding-2);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.dbx-form-repeat-array-footer {
|
|
46
|
-
margin-top:
|
|
46
|
+
margin-top: var(--dbx-padding-2);
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
@use '../../../../style/theming';
|
|
2
2
|
|
|
3
3
|
// MARK: Variables
|
|
4
|
-
$dbx-datetime-button-spacing: 6px;
|
|
5
|
-
$dbx-datetime-date-and-time-spacing: 6px;
|
|
6
|
-
$dbx-datetime-button-width: 40px + ($dbx-datetime-button-spacing * 2); // times 2 for the spacing between the date and time inputs
|
|
7
|
-
$dbx-datetime-row-width: 40px + ($dbx-datetime-button-spacing * 2); // times 2 for the spacing between the date and time inputs
|
|
8
4
|
|
|
9
5
|
// MARK: Mixin
|
|
10
6
|
@mixin core() {
|
|
@@ -38,12 +34,12 @@ $dbx-datetime-row-width: 40px + ($dbx-datetime-button-spacing * 2); // times 2 f
|
|
|
38
34
|
width: 100%;
|
|
39
35
|
|
|
40
36
|
.dbx-datetime-timezone {
|
|
41
|
-
padding: 0
|
|
37
|
+
padding: 0 var(--dbx-padding-2);
|
|
42
38
|
pointer-events: none;
|
|
43
39
|
}
|
|
44
40
|
|
|
45
41
|
.dbx-datetime-timezone-button .mat-mdc-button {
|
|
46
|
-
font-size:
|
|
42
|
+
font-size: var(--mat-sys-title-medium-size);
|
|
47
43
|
}
|
|
48
44
|
}
|
|
49
45
|
|
|
@@ -68,7 +64,7 @@ $dbx-datetime-row-width: 40px + ($dbx-datetime-button-spacing * 2); // times 2 f
|
|
|
68
64
|
|
|
69
65
|
&.add-time-button-full {
|
|
70
66
|
width: 100%;
|
|
71
|
-
margin-bottom:
|
|
67
|
+
margin-bottom: var(--dbx-padding-2);
|
|
72
68
|
}
|
|
73
69
|
}
|
|
74
70
|
|
|
@@ -86,8 +82,8 @@ $dbx-datetime-row-width: 40px + ($dbx-datetime-button-spacing * 2); // times 2 f
|
|
|
86
82
|
.mat-calendar,
|
|
87
83
|
.dbx-fixeddaterange-field-input {
|
|
88
84
|
margin: auto;
|
|
89
|
-
min-width: 240px;
|
|
90
|
-
max-width: 320px;
|
|
85
|
+
min-width: var(--dbx-fixeddaterange-field-min-width, 240px);
|
|
86
|
+
max-width: var(--dbx-fixeddaterange-field-max-width, 320px);
|
|
91
87
|
}
|
|
92
88
|
}
|
|
93
89
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
flex-direction: row;
|
|
16
16
|
justify-content: center;
|
|
17
17
|
align-items: center;
|
|
18
|
-
gap:
|
|
18
|
+
gap: var(--dbx-padding-3);
|
|
19
19
|
padding: 16px 8px;
|
|
20
20
|
height: 100%;
|
|
21
21
|
box-sizing: border-box;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
align-items: center;
|
|
28
28
|
min-width: 48px;
|
|
29
29
|
gap: 8px;
|
|
30
|
-
border-radius:
|
|
30
|
+
border-radius: var(--mat-sys-corner-small);
|
|
31
31
|
padding: 4px;
|
|
32
32
|
outline: none;
|
|
33
33
|
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.dbx-duration-picker-label {
|
|
41
|
-
font-size:
|
|
42
|
-
font-weight:
|
|
41
|
+
font-size: var(--mat-sys-label-medium-size);
|
|
42
|
+
font-weight: var(--mat-sys-label-medium-weight);
|
|
43
43
|
text-transform: uppercase;
|
|
44
|
-
|
|
44
|
+
color: var(--mat-sys-on-surface-variant);
|
|
45
45
|
margin-bottom: 4px;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.dbx-duration-picker-value {
|
|
49
|
-
font-size:
|
|
50
|
-
font-weight:
|
|
49
|
+
font-size: var(--mat-sys-title-medium-size);
|
|
50
|
+
font-weight: var(--mat-sys-title-medium-weight);
|
|
51
51
|
min-height: 28px;
|
|
52
52
|
display: flex;
|
|
53
53
|
align-items: center;
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
> .mat-mdc-form-field-flex > .mdc-notched-outline {
|
|
77
77
|
.mdc-notched-outline__notch,
|
|
78
78
|
.mdc-notched-outline__trailing {
|
|
79
|
-
border-bottom: var(--
|
|
79
|
+
border-bottom: var(--mat-form-field-outlined-outline-width, 1px) solid;
|
|
80
80
|
border-radius: 0;
|
|
81
81
|
}
|
|
82
82
|
}
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
> .mat-mdc-form-field-flex > .mdc-notched-outline {
|
|
87
87
|
.mdc-notched-outline__notch,
|
|
88
88
|
.mdc-notched-outline__trailing {
|
|
89
|
-
border-bottom-width: var(--
|
|
89
|
+
border-bottom-width: var(--mat-form-field-outlined-focus-outline-width, 2px);
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
}
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
> .dbx-forge-form-field-outline {
|
|
98
98
|
.dbx-forge-form-field-outline-notch,
|
|
99
99
|
.dbx-forge-form-field-outline-trailing {
|
|
100
|
-
border-bottom: var(--
|
|
100
|
+
border-bottom: var(--mat-form-field-outlined-outline-width, 1px) solid;
|
|
101
101
|
border-radius: 0;
|
|
102
102
|
}
|
|
103
103
|
}
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
> .dbx-forge-form-field-outline {
|
|
108
108
|
.dbx-forge-form-field-outline-notch,
|
|
109
109
|
.dbx-forge-form-field-outline-trailing {
|
|
110
|
-
border-bottom-width: var(--
|
|
110
|
+
border-bottom-width: var(--mat-form-field-outlined-focus-outline-width, 2px);
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
}
|
|
@@ -4,6 +4,15 @@
|
|
|
4
4
|
//
|
|
5
5
|
// Apply by adding the class directly to <input> elements in forge templates.
|
|
6
6
|
@mixin core() {
|
|
7
|
+
// Adds a small amount of vertical padding to each Material form field (and the forge
|
|
8
|
+
// form-field wrapper, which opts in via .dbx-forge-form-field). Angular Material's
|
|
9
|
+
// dynamic-padding fields reserve no inter-field space on their own. (Migrated from the
|
|
10
|
+
// removed formly core styles; applies to all mat-form-field + forge wrapper fields.)
|
|
11
|
+
.mat-mdc-form-field,
|
|
12
|
+
.dbx-forge-form-field {
|
|
13
|
+
padding: 6px 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
7
16
|
// Resets native <input> elements that render inside the forge form-field wrapper
|
|
8
17
|
// (outside a <mat-form-field>) so they match Material body-large typography.
|
|
9
18
|
// Used by pickable filter inputs and searchable text/chip field inputs.
|
package/lib/form/_form.scss
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
// MARK: Mixin
|
|
6
6
|
@mixin core() {
|
|
7
7
|
// Generic forge disabled class for fields that only need CSS-based disabling.
|
|
8
|
+
// NOTE: the `opacity: 0.38` literal used here and in `.dbx-forge-form-disabled` below
|
|
9
|
+
// is the Material 3 disabled-state content opacity. M3 exposes no `--mat-sys-*`
|
|
10
|
+
// disabled-opacity token, so the literal is intentional (see VISUAL_CHANGES.md KEEP-2).
|
|
8
11
|
.dbx-forge-disabled {
|
|
9
12
|
opacity: 0.38;
|
|
10
13
|
pointer-events: none;
|
package/lib/style/_all-core.scss
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
@use '../form/form';
|
|
2
|
-
@use '../formly/formly';
|
|
3
2
|
@use '../layout/layout';
|
|
4
|
-
@use '../formly/field/field';
|
|
5
3
|
@use '../forge/forge';
|
|
6
4
|
@use '../extension/extension';
|
|
7
5
|
|
|
8
6
|
// Includes all theming config
|
|
9
7
|
@mixin all-component-core($theme-config) {
|
|
10
8
|
@include form.core();
|
|
11
|
-
@include formly.core();
|
|
12
|
-
@include field.all-field-core();
|
|
13
9
|
@include forge.all-forge-core();
|
|
14
10
|
@include layout.core();
|
|
15
11
|
@include extension.all-extension-core($theme-config);
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
@use '../form/form';
|
|
2
|
-
@use '../formly/formly';
|
|
3
2
|
@use '../layout/layout';
|
|
4
|
-
@use '../formly/field/field';
|
|
5
3
|
@use '../forge/forge';
|
|
6
4
|
@use '../extension/extension';
|
|
7
5
|
|
|
8
6
|
// Includes all theming config
|
|
9
7
|
@mixin all-component-themes($theme-config) {
|
|
10
8
|
@include form.theme($theme-config);
|
|
11
|
-
@include formly.theme($theme-config);
|
|
12
|
-
@include field.all-field-theme($theme-config);
|
|
13
9
|
@include forge.all-forge-theme($theme-config);
|
|
14
10
|
@include layout.theme($theme-config);
|
|
15
11
|
@include extension.all-extension-theme($theme-config);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.18.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.scss",
|
|
6
6
|
"*.css"
|
|
@@ -14,20 +14,18 @@
|
|
|
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.
|
|
18
|
-
"@dereekb/dbx-core": "13.
|
|
19
|
-
"@dereekb/dbx-web": "13.
|
|
20
|
-
"@dereekb/model": "13.
|
|
21
|
-
"@dereekb/rxjs": "13.
|
|
22
|
-
"@dereekb/util": "13.
|
|
23
|
-
"@dereekb/vitest": "13.
|
|
17
|
+
"@dereekb/date": "13.18.0",
|
|
18
|
+
"@dereekb/dbx-core": "13.18.0",
|
|
19
|
+
"@dereekb/dbx-web": "13.18.0",
|
|
20
|
+
"@dereekb/model": "13.18.0",
|
|
21
|
+
"@dereekb/rxjs": "13.18.0",
|
|
22
|
+
"@dereekb/util": "13.18.0",
|
|
23
|
+
"@dereekb/vitest": "13.18.0",
|
|
24
24
|
"@ng-forge/dynamic-forms": "0.10.0-next.4",
|
|
25
25
|
"@ng-forge/dynamic-forms-material": "0.10.0-next.4",
|
|
26
26
|
"@ng-web-apis/geolocation": "^5.2.0",
|
|
27
27
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
28
28
|
"@ngrx/component-store": "^21.1.0",
|
|
29
|
-
"@ngx-formly/core": "git+https://git@github.com/dereekb/ngx-formly#996d1041c8d2afbe429985a5ad394e59327bfa1d",
|
|
30
|
-
"@ngx-formly/material": "git+https://git@github.com/dereekb/ngx-formly#02e615006744374a587b5d35de3b2d137e2e05a8",
|
|
31
29
|
"@uirouter/core": "^6.1.2",
|
|
32
30
|
"angular-calendar": "^0.32.2",
|
|
33
31
|
"change-case-all": "^2.1.0",
|
|
@@ -52,6 +50,10 @@
|
|
|
52
50
|
"types": "./types/dereekb-dbx-form-mapbox.d.ts",
|
|
53
51
|
"default": "./fesm2022/dereekb-dbx-form-mapbox.mjs"
|
|
54
52
|
},
|
|
53
|
+
"./style-demo": {
|
|
54
|
+
"types": "./types/dereekb-dbx-form-style-demo.d.ts",
|
|
55
|
+
"default": "./fesm2022/dereekb-dbx-form-style-demo.mjs"
|
|
56
|
+
},
|
|
55
57
|
"./package.json": {
|
|
56
58
|
"default": "./package.json"
|
|
57
59
|
},
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @dereekb/dbx-form/style-demo
|
|
2
|
+
|
|
3
|
+
Plumbing entry that registers `@dereekb/dbx-form` sections with the `<dbx-style-demo>` showcase shell from `@dereekb/dbx-web/style-demo`.
|
|
4
|
+
|
|
5
|
+
Wire `provideDbxFormStyleDemo()` into an app alongside `provideDbxStyleDemo()` (the shell) and `provideDbxWebStyleDemo()` (the web sections) to add form-styling sections to the playground.
|
|
6
|
+
|
|
7
|
+
> Phase 1 ships the plumbing only (a placeholder section). Real form-styling sections arrive in a later phase.
|