@ziadshalaby/ngx-zs-component 3.1.1 → 3.1.3
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/index.d.ts
CHANGED
|
@@ -322,11 +322,11 @@ declare class Form<T extends Record<string, any>> {
|
|
|
322
322
|
value: T[K] | null;
|
|
323
323
|
valid: boolean;
|
|
324
324
|
};
|
|
325
|
-
|
|
325
|
+
allFilled(): Record<keyof T, boolean>;
|
|
326
326
|
private markAllTouched;
|
|
327
327
|
getValues(): T;
|
|
328
328
|
getValidations(): Record<keyof T, boolean>;
|
|
329
|
-
submit(callback: (values: T) => void,
|
|
329
|
+
submit(callback: (values: T) => void, allowEmptyFields?: (keyof T)[], allowInvalidFields?: (keyof T)[]): void;
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
type ButtonVariant = 'solid' | 'outline';
|
package/output.css
CHANGED
|
@@ -603,12 +603,12 @@
|
|
|
603
603
|
.zs\:h-16 {
|
|
604
604
|
height: calc(var(--zs-spacing) * 16);
|
|
605
605
|
}
|
|
606
|
-
.zs\:h-\[88vh\] {
|
|
607
|
-
height: 88vh;
|
|
608
|
-
}
|
|
609
606
|
.zs\:h-full {
|
|
610
607
|
height: 100%;
|
|
611
608
|
}
|
|
609
|
+
.zs\:h-screen {
|
|
610
|
+
height: 100vh;
|
|
611
|
+
}
|
|
612
612
|
.zs\:max-h-60 {
|
|
613
613
|
max-height: calc(var(--zs-spacing) * 60);
|
|
614
614
|
}
|
|
@@ -666,6 +666,9 @@
|
|
|
666
666
|
.zs\:w-\[75vw\] {
|
|
667
667
|
width: 75vw;
|
|
668
668
|
}
|
|
669
|
+
.zs\:w-\[360px\] {
|
|
670
|
+
width: 360px;
|
|
671
|
+
}
|
|
669
672
|
.zs\:w-auto {
|
|
670
673
|
width: auto;
|
|
671
674
|
}
|