@dereekb/dbx-form 9.24.18 → 9.24.19
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/calendar/lib/calendar.schedule.selection.store.d.ts +16 -3
- package/calendar/lib/field/schedule/calendar.schedule.field.component.d.ts +7 -1
- package/esm2020/calendar/lib/calendar.schedule.selection.days.component.mjs +6 -4
- package/esm2020/calendar/lib/calendar.schedule.selection.range.component.mjs +3 -3
- package/esm2020/calendar/lib/calendar.schedule.selection.store.mjs +60 -19
- package/esm2020/calendar/lib/field/schedule/calendar.schedule.field.component.mjs +9 -2
- package/esm2020/calendar/lib/field/schedule/calendar.schedule.field.mjs +3 -2
- package/esm2020/lib/formly/field/value/date/datetime.field.component.mjs +3 -3
- package/esm2020/lib/formly/field/value/date/datetime.field.mjs +3 -1
- package/fesm2015/dereekb-dbx-form-calendar.mjs +75 -24
- package/fesm2015/dereekb-dbx-form-calendar.mjs.map +1 -1
- package/fesm2015/dereekb-dbx-form.mjs +4 -4
- package/fesm2015/dereekb-dbx-form.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-form-calendar.mjs +76 -24
- package/fesm2020/dereekb-dbx-form-calendar.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-form.mjs +4 -2
- package/fesm2020/dereekb-dbx-form.mjs.map +1 -1
- package/lib/extension/calendar/_calendar.scss +0 -7
- package/lib/formly/field/value/date/_date.scss +14 -0
- package/mapbox/package.json +4 -4
- package/package.json +4 -4
|
@@ -109,13 +109,6 @@
|
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
@mixin color($theme-config) {
|
|
112
|
-
$color-config: theming.get-color-config($theme-config);
|
|
113
|
-
$background: map.get($color-config, 'background');
|
|
114
|
-
$background-color: theming.get-color-from-palette($background, 'hover');
|
|
115
|
-
|
|
116
|
-
.dbx-schedule-selection-calendar-date-range-field .mat-datepicker-toggle .mat-icon-button {
|
|
117
|
-
background-color: rgba($background-color, 0.08);
|
|
118
|
-
}
|
|
119
112
|
}
|
|
120
113
|
|
|
121
114
|
@mixin typography($typography-config) {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
@use '../../../../style/theming';
|
|
2
3
|
|
|
3
4
|
// MARK: Variables
|
|
@@ -50,6 +51,10 @@ $dbx-datetime-row-width: 40px + ($dbx-datetime-button-spacing * 2); // times 2 f
|
|
|
50
51
|
}
|
|
51
52
|
|
|
52
53
|
.dbx-datetime-row {
|
|
54
|
+
display: flex;
|
|
55
|
+
justify-content: center;
|
|
56
|
+
align-items: center;
|
|
57
|
+
|
|
53
58
|
.dbx-datetime-row-field {
|
|
54
59
|
width: calc(100% - #{$dbx-datetime-button-width});
|
|
55
60
|
}
|
|
@@ -122,6 +127,15 @@ $dbx-datetime-row-width: 40px + ($dbx-datetime-button-spacing * 2); // times 2 f
|
|
|
122
127
|
}
|
|
123
128
|
|
|
124
129
|
@mixin color($theme-config) {
|
|
130
|
+
$color-config: theming.get-color-config($theme-config);
|
|
131
|
+
$background: map.get($color-config, 'background');
|
|
132
|
+
$background-color: theming.get-color-from-palette($background, 'hover');
|
|
133
|
+
|
|
134
|
+
// affect both the direct button or a child button
|
|
135
|
+
.mat-datepicker-button-highlight .mat-icon-button,
|
|
136
|
+
.mat-datepicker-button-highlight.mat-icon-button {
|
|
137
|
+
background-color: rgba($background-color, 0.08);
|
|
138
|
+
}
|
|
125
139
|
}
|
|
126
140
|
|
|
127
141
|
@mixin typography($typography-config) {
|
package/mapbox/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-form/mapbox",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.19",
|
|
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.24.
|
|
8
|
+
"@dereekb/dbx-web": "9.24.19",
|
|
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.24.
|
|
14
|
-
"@dereekb/dbx-form": "9.24.
|
|
13
|
+
"@dereekb/dbx-web/mapbox": "9.24.19",
|
|
14
|
+
"@dereekb/dbx-form": "9.24.19"
|
|
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.24.
|
|
3
|
+
"version": "9.24.19",
|
|
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.24.
|
|
8
|
+
"@dereekb/dbx-core": "9.24.19",
|
|
9
9
|
"@angular/material": "^14.2.0",
|
|
10
|
-
"@dereekb/dbx-web": "9.24.
|
|
10
|
+
"@dereekb/dbx-web": "9.24.19",
|
|
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.24.
|
|
16
|
+
"@dereekb/model": "9.24.19"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0"
|