@shival99/z-ui 1.1.4 → 1.1.6
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/fesm2022/shival99-z-ui-components-z-select.mjs +2 -0
- package/fesm2022/shival99-z-ui-components-z-select.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-toast.mjs +14 -7
- package/fesm2022/shival99-z-ui-components-z-toast.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-providers.mjs +6 -4
- package/fesm2022/shival99-z-ui-providers.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-services.mjs +2 -4
- package/fesm2022/shival99-z-ui-services.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-select.d.ts +1 -1
- package/types/shival99-z-ui-components-z-toast.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Z-UI: Modern Angular UI Component Library - A comprehensive, high-performance design system built with Angular 20+, featuring 40+ customizable components with dark mode, accessibility, and enterprise-ready features.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -256,7 +256,7 @@ declare class ZTagClassesPipe implements PipeTransform {
|
|
|
256
256
|
|
|
257
257
|
declare const zSelectVariants: (props?: ({
|
|
258
258
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
259
|
-
zStatus?: "default" | "
|
|
259
|
+
zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
|
|
260
260
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
261
261
|
declare const zSelectTagVariants: (props?: ({
|
|
262
262
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -91,6 +91,7 @@ declare class ZToastService implements OnDestroy {
|
|
|
91
91
|
private readonly _document;
|
|
92
92
|
private readonly _ngZone;
|
|
93
93
|
private readonly _providedConfig;
|
|
94
|
+
private readonly _zTranslate;
|
|
94
95
|
private _overlayRef;
|
|
95
96
|
private _toasterAttached;
|
|
96
97
|
private _mutationObserver;
|
|
@@ -112,6 +113,7 @@ declare class ZToastService implements OnDestroy {
|
|
|
112
113
|
private _disconnectObserver;
|
|
113
114
|
private _attachToaster;
|
|
114
115
|
private _createOverlay;
|
|
116
|
+
private _translate;
|
|
115
117
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZToastService, never>;
|
|
116
118
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ZToastService>;
|
|
117
119
|
}
|