wacom 21.1.12 → 21.1.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/README.md +44 -13
- package/fesm2022/wacom.mjs +9 -0
- package/fesm2022/wacom.mjs.map +1 -1
- package/package.json +1 -1
- package/types/wacom.d.ts +8 -5
package/package.json
CHANGED
package/types/wacom.d.ts
CHANGED
|
@@ -238,6 +238,10 @@ interface DomComponent<T> {
|
|
|
238
238
|
remove: () => void;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
+
type ThemeMode = 'light' | 'dark';
|
|
242
|
+
type ThemeDensity = 'comfortable' | 'compact';
|
|
243
|
+
type ThemeRadius = 'rounded' | 'square';
|
|
244
|
+
|
|
241
245
|
/**
|
|
242
246
|
* Centralized page meta management for SPA navigation.
|
|
243
247
|
*
|
|
@@ -1953,14 +1957,13 @@ declare class UtilService {
|
|
|
1953
1957
|
static ɵprov: i0.ɵɵInjectableDeclaration<UtilService>;
|
|
1954
1958
|
}
|
|
1955
1959
|
|
|
1956
|
-
type ThemeMode = 'light' | 'dark';
|
|
1957
|
-
type ThemeDensity = 'comfortable' | 'compact';
|
|
1958
|
-
type ThemeRadius = 'rounded' | 'square';
|
|
1959
|
-
|
|
1960
1960
|
declare class ThemeService {
|
|
1961
1961
|
private readonly doc;
|
|
1962
|
+
getRadius(): ThemeRadius | string;
|
|
1962
1963
|
setRadius(radius: ThemeRadius | string): void;
|
|
1964
|
+
getMode(): ThemeMode;
|
|
1963
1965
|
setMode(mode: ThemeMode): void;
|
|
1966
|
+
getDensity(): ThemeDensity;
|
|
1964
1967
|
setDensity(density: ThemeDensity): void;
|
|
1965
1968
|
init(): void;
|
|
1966
1969
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
@@ -1977,4 +1980,4 @@ declare class WacomModule {
|
|
|
1977
1980
|
}
|
|
1978
1981
|
|
|
1979
1982
|
export { ArrPipe, CONFIG_TOKEN, ClickOutsideDirective, CoreService, CrudComponent, CrudService, DEFAULT_CONFIG, DEFAULT_HTTP_CONFIG, DEFAULT_NETWORK_CONFIG, DomService, EmitterService, HttpService, ManualDisabledDirective, ManualNameDirective, ManualReadonlyDirective, ManualTypeDirective, MetaGuard, MetaService, MongodatePipe, NETWORK_CONFIG, NetworkService, NumberPipe, PaginationPipe, RtcService, SafePipe, SearchPipe, SocketService, SplicePipe, SplitPipe, StoreService, ThemeService, TimeService, UtilService, WacomModule, provideWacom };
|
|
1980
|
-
export type { Config, CrudDocument, CrudOptions, CrudServiceInterface, DomComponent, HttpConfig, HttpHeaderType, MetaConfig, MetaDefaults, MetaPage, NetworkConfig, NetworkStatus, StoreConfig, TableConfig, TableConfigButton };
|
|
1983
|
+
export type { Config, CrudDocument, CrudOptions, CrudServiceInterface, DomComponent, HttpConfig, HttpHeaderType, MetaConfig, MetaDefaults, MetaPage, NetworkConfig, NetworkStatus, StoreConfig, TableConfig, TableConfigButton, ThemeDensity, ThemeMode, ThemeRadius };
|