@enigmatry/entry-components 17.0.0-preview.2 → 17.0.0-preview.5
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/package.json +2 -2
- package/styles/modules/_default-theme.scss +1 -1
- package/styles/modules/components/buttons/_radio.scss +4 -6
- package/styles/modules/components/checkboxes/_generator.scss +3 -5
- package/styles/modules/components/dialogs/_generator.scss +7 -9
- package/styles/modules/components/tables/_rows.scss +1 -1
- package/styles/partials/core/components/date-time-picker/_general.scss +1 -1
- package/styles/partials/core/components/forms/_general.scss +5 -7
- package/styles/partials/core/components/search-filter/_general.scss +1 -1
- package/styles/partials/core/components/tables/_general.scss +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enigmatry/entry-components",
|
|
3
|
-
"version": "17.0.0-preview.
|
|
3
|
+
"version": "17.0.0-preview.5",
|
|
4
4
|
"author": "Enigmatry",
|
|
5
5
|
"description": "Enigmatry entry angular material components",
|
|
6
6
|
"homepage": "https://github.com/enigmatry/entry-angular-building-blocks/tree/master/libs/entry-components#readme",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"lodash-es": "^4.17.21"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"tslib": "^2.6.
|
|
23
|
+
"tslib": "^2.6.3"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
@@ -7,13 +7,11 @@ $radio-circles-selector: '.mdc-radio__outer-circle, .mdc-radio__inner-circle';
|
|
|
7
7
|
$radio-border: map.get($theme, 'general', 'buttons', 'radio', 'background');
|
|
8
8
|
|
|
9
9
|
@if $radio-border {
|
|
10
|
-
.mat-mdc-radio-group .mat-mdc-radio-button {
|
|
11
|
-
&.mat-mdc-radio-checked .mdc-radio {
|
|
10
|
+
.mat-mdc-radio-group .mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio {
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
12
|
+
&:not(:disabled):active #{$radio-selector}, #{$radio-selector} {
|
|
13
|
+
#{$radio-circles-selector} {
|
|
14
|
+
border-color: $radio-border;
|
|
17
15
|
}
|
|
18
16
|
}
|
|
19
17
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
|
|
3
|
-
/* stylelint-disable-next-line max-line-length */
|
|
3
|
+
/* stylelint-disable-next-line @stylistic/max-line-length */
|
|
4
4
|
$checkbox-selector: '.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate = "true"]) ~ .mdc-checkbox__background';
|
|
5
5
|
|
|
6
6
|
@mixin generate-from($theme) {
|
|
@@ -10,10 +10,8 @@ $checkbox-selector: '.mdc-checkbox__native-control:enabled:not(:checked):not(:in
|
|
|
10
10
|
@if $background or $border-hover-color {
|
|
11
11
|
.mat-mdc-checkbox {
|
|
12
12
|
@if $background {
|
|
13
|
-
.mdc-form-field .mdc-checkbox {
|
|
14
|
-
|
|
15
|
-
background-color: $background;
|
|
16
|
-
}
|
|
13
|
+
.mdc-form-field .mdc-checkbox #{$checkbox-selector} {
|
|
14
|
+
background-color: $background;
|
|
17
15
|
}
|
|
18
16
|
}
|
|
19
17
|
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
|
|
3
3
|
@mixin generate-from($theme) {
|
|
4
|
-
.entry-dialog {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
font-size: map.get($theme, 'dialogs', 'title', 'size');
|
|
4
|
+
.entry-dialog .dialog-header .title {
|
|
5
|
+
$close-icon-width: map.get($theme, 'general', 'buttons', 'icon-size');
|
|
6
|
+
width: calc(100% - $close-icon-width);
|
|
7
|
+
color: map.get($theme, 'general', 'colors', 'font');
|
|
8
|
+
font-size: map.get($theme, 'dialogs', 'title', 'size');
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
10
|
+
&.without-close-icon {
|
|
11
|
+
width: 100%;
|
|
14
12
|
}
|
|
15
13
|
}
|
|
16
14
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* stylelint-disable scss/at-else-closing-brace-newline-after */
|
|
3
3
|
/* stylelint-disable max-nesting-depth */
|
|
4
4
|
@use 'sass:map';
|
|
5
|
-
@use '
|
|
5
|
+
@use 'scss-foundation/src/modules/lists/row-coloring' as list;
|
|
6
6
|
|
|
7
7
|
@mixin generate-from($theme) {
|
|
8
8
|
$odd-background: map.get($theme, 'tables', 'rows', 'odd-even-background', 'odd');
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use '
|
|
1
|
+
@use 'scss-foundation/src/modules/display/items';
|
|
2
2
|
|
|
3
3
|
.entry-form {
|
|
4
4
|
.action-buttons .mdc-button:not(:first-child) {
|
|
@@ -14,11 +14,9 @@
|
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
.datetimepicker {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
bottom: 8px;
|
|
22
|
-
}
|
|
17
|
+
.datetimepicker .mat-form-field-appearance-outline .mat-mdc-form-field-infix {
|
|
18
|
+
padding: {
|
|
19
|
+
top: 8px;
|
|
20
|
+
bottom: 8px;
|
|
23
21
|
}
|
|
24
22
|
}
|