@softheon/armature 17.15.10 → 17.15.13
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/ag-grid-components/src/sof-table/sof-table.component.d.ts +13 -2
- package/esm2022/ag-grid-components/src/sof-table/sof-table.component.mjs +26 -6
- package/esm2022/lib/theming/services/theme.service.mjs +19 -13
- package/fesm2022/softheon-armature-ag-grid-components.mjs +24 -4
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs +17 -12
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/theming/services/theme.service.d.ts +3 -6
- package/package.json +1 -1
- package/ag-grid-components/package.json +0 -3
|
@@ -2,10 +2,7 @@ import { ThemePaletteColorsModel, ThemePaletteModel } from '../../core/client-ge
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
/** The Theme Service */
|
|
4
4
|
export declare class ThemeService {
|
|
5
|
-
|
|
6
|
-
* The theme service constructor
|
|
7
|
-
*/
|
|
8
|
-
constructor();
|
|
5
|
+
private readonly document;
|
|
9
6
|
/**
|
|
10
7
|
* Initializes the palette
|
|
11
8
|
* @param themeConfig The theme configurations
|
|
@@ -19,14 +16,14 @@ export declare class ThemeService {
|
|
|
19
16
|
*/
|
|
20
17
|
updatePalette(paletteName: string, paletteType: string, palette: ThemePaletteColorsModel): void;
|
|
21
18
|
/**
|
|
22
|
-
* Updates the color
|
|
19
|
+
* Updates the color CSS variable for the given theme
|
|
23
20
|
* @param palette Palette to update
|
|
24
21
|
* @param part Part number
|
|
25
22
|
* @param value Value to replace with
|
|
26
23
|
*/
|
|
27
24
|
updateColor(palette: string, part: string, value: string): void;
|
|
28
25
|
/**
|
|
29
|
-
* Updates the color contrast
|
|
26
|
+
* Updates the color contrast CSS variable for the given theme
|
|
30
27
|
* @param palette Palette to update
|
|
31
28
|
* @param part Part number
|
|
32
29
|
* @param value Value to replace with
|
package/package.json
CHANGED