wacom 21.1.11 → 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 +44 -2
- package/fesm2022/wacom.mjs.map +1 -1
- package/package.json +1 -1
- package/types/wacom.d.ts +19 -2
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,6 +1957,19 @@ declare class UtilService {
|
|
|
1953
1957
|
static ɵprov: i0.ɵɵInjectableDeclaration<UtilService>;
|
|
1954
1958
|
}
|
|
1955
1959
|
|
|
1960
|
+
declare class ThemeService {
|
|
1961
|
+
private readonly doc;
|
|
1962
|
+
getRadius(): ThemeRadius | string;
|
|
1963
|
+
setRadius(radius: ThemeRadius | string): void;
|
|
1964
|
+
getMode(): ThemeMode;
|
|
1965
|
+
setMode(mode: ThemeMode): void;
|
|
1966
|
+
getDensity(): ThemeDensity;
|
|
1967
|
+
setDensity(density: ThemeDensity): void;
|
|
1968
|
+
init(): void;
|
|
1969
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
1970
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1956
1973
|
declare function provideWacom(config?: Config): EnvironmentProviders;
|
|
1957
1974
|
|
|
1958
1975
|
declare class WacomModule {
|
|
@@ -1962,5 +1979,5 @@ declare class WacomModule {
|
|
|
1962
1979
|
static ɵinj: i0.ɵɵInjectorDeclaration<WacomModule>;
|
|
1963
1980
|
}
|
|
1964
1981
|
|
|
1965
|
-
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, TimeService, UtilService, WacomModule, provideWacom };
|
|
1966
|
-
export type { Config, CrudDocument, CrudOptions, CrudServiceInterface, DomComponent, HttpConfig, HttpHeaderType, MetaConfig, MetaDefaults, MetaPage, NetworkConfig, NetworkStatus, StoreConfig, TableConfig, TableConfigButton };
|
|
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 };
|
|
1983
|
+
export type { Config, CrudDocument, CrudOptions, CrudServiceInterface, DomComponent, HttpConfig, HttpHeaderType, MetaConfig, MetaDefaults, MetaPage, NetworkConfig, NetworkStatus, StoreConfig, TableConfig, TableConfigButton, ThemeDensity, ThemeMode, ThemeRadius };
|