ngx-edu-sharing-ui 10.0.26 → 10.0.27
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/assets/scss/material-theme.scss +29 -0
- package/assets/scss/variables.scss +2 -1
- package/fesm2022/ngx-edu-sharing-ui.mjs +131 -75
- package/fesm2022/ngx-edu-sharing-ui.mjs.map +1 -1
- package/lib/list-items/list-text/list-text.component.d.ts +1 -1
- package/lib/list-items/list-widget.d.ts +1 -1
- package/lib/mds-viewer/mds-editor-instance-service.abstract.d.ts +2 -1
- package/lib/mds-viewer/widget/mds-widget.component.d.ts +1 -1
- package/lib/node-entries/entries-model.d.ts +3 -1
- package/lib/node-entries/node-entries-card-grid/node-entries-card-grid.component.d.ts +0 -2
- package/lib/node-entries/node-entries-table/node-entries-table.component.d.ts +9 -3
- package/lib/node-entries/node-entries-wrapper.component.d.ts +3 -1
- package/lib/node-entries/node-type-badge/node-type-badge.component.d.ts +3 -1
- package/lib/services/node-entries.service.d.ts +2 -1
- package/lib/services/node-helper.service.d.ts +1 -1
- package/lib/services/ui.service.d.ts +4 -0
- package/lib/types/option-item.d.ts +5 -0
- package/package.json +2 -2
|
@@ -50,8 +50,37 @@ $dark-disabled-text: rgba(black, 0.54); // increased contrast
|
|
|
50
50
|
$dark-secondary-text: rgba(black, 0.54);
|
|
51
51
|
|
|
52
52
|
:root {
|
|
53
|
+
--mat-sys-corner-full: 9999px;
|
|
53
54
|
--mdc-fab-container-color: #{$backgroundColor};
|
|
54
55
|
}
|
|
56
|
+
:root {
|
|
57
|
+
--mdc-switch-track-width: 48px;
|
|
58
|
+
--mdc-switch-track-height: 26px;
|
|
59
|
+
--mat-switch-with-icon-handle-size: 22px;
|
|
60
|
+
--mdc-switch-handle-width: 22px;
|
|
61
|
+
--mdc-switch-handle-height: 22px;
|
|
62
|
+
--mat-switch-pressed-handle-size: 22px;
|
|
63
|
+
--mat-switch-track-outline-color: var(--mdc-switch-unselected-handle-color);
|
|
64
|
+
--mdc-switch-handle-shape: var(--mat-sys-corner-full);
|
|
65
|
+
--mdc-switch-track-shape: var(--mat-sys-corner-full);
|
|
66
|
+
}
|
|
67
|
+
html .mat-mdc-slide-toggle {
|
|
68
|
+
--mat-switch-track-outline-width: 2px;
|
|
69
|
+
--mat-switch-unselected-with-icon-handle-horizontal-margin: 0 4px;
|
|
70
|
+
--mat-switch-unselected-pressed-handle-horizontal-margin: 0 4px;
|
|
71
|
+
--mat-switch-selected-with-icon-handle-horizontal-margin: 0 -2px;
|
|
72
|
+
--mat-switch-selected-pressed-handle-horizontal-margin: 0 -2px;
|
|
73
|
+
--mdc-switch-handle-elevation-shadow: none;
|
|
74
|
+
--mat-switch-track-outline-color: var(--mdc-switch-unselected-handle-color);
|
|
75
|
+
}
|
|
76
|
+
.mdc-switch--selected {
|
|
77
|
+
--mdc-switch-selected-icon-size: 16px;
|
|
78
|
+
--mdc-switch-selected-handle-color: var(--palette-primary-contrast-500);
|
|
79
|
+
--mdc-switch-selected-focus-handle-color: var(--palette-primary-contrast-500);
|
|
80
|
+
--mdc-switch-selected-hover-handle-color: var(--palette-primary-contrast-500);
|
|
81
|
+
--mdc-switch-selected-pressed-handle-color: var(--palette-primary-contrast-500);
|
|
82
|
+
--mdc-switch-selected-icon-color: var(--palette-primary-500);
|
|
83
|
+
}
|
|
55
84
|
|
|
56
85
|
.mdc-button {
|
|
57
86
|
span {
|