@ziadshalaby/ngx-zs-component 3.0.0 → 3.0.2
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
|
@@ -338,7 +338,7 @@ declare class Button {
|
|
|
338
338
|
readonly size: _angular_core.InputSignal<BtnSizeType>;
|
|
339
339
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
340
340
|
readonly icon: _angular_core.InputSignal<string | null>;
|
|
341
|
-
readonly type: _angular_core.InputSignal<"button" | "
|
|
341
|
+
readonly type: _angular_core.InputSignal<"button" | "reset" | "submit">;
|
|
342
342
|
readonly clickedEv: _angular_core.OutputEmitterRef<Event>;
|
|
343
343
|
readonly solidTextColor: _angular_core.Signal<string>;
|
|
344
344
|
readonly baseClasses: _angular_core.Signal<string>;
|
|
@@ -950,5 +950,16 @@ declare class Toggle {
|
|
|
950
950
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Toggle, "ZS-toggle", never, { "Id": { "alias": "Id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "isReadonly": { "alias": "isReadonly"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
951
951
|
}
|
|
952
952
|
|
|
953
|
-
|
|
954
|
-
|
|
953
|
+
interface PagesType {
|
|
954
|
+
label: string;
|
|
955
|
+
routerLink: string;
|
|
956
|
+
}
|
|
957
|
+
declare class Footer {
|
|
958
|
+
readonly showDefultContent: _angular_core.InputSignal<boolean>;
|
|
959
|
+
readonly pages: _angular_core.InputSignal<PagesType[]>;
|
|
960
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Footer, never>;
|
|
961
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Footer, "ZS-footer", never, { "showDefultContent": { "alias": "showDefultContent"; "required": false; "isSignal": true; }; "pages": { "alias": "pages"; "required": false; "isSignal": true; }; }, {}, never, ["[rights]"], true, never>;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
export { ALERT_CONFIG, Alert, AlertService, Button, Card, Carousel, Checkbox, ColorMapping, Connection, ExtractorService, FileInput, Footer, Form, Input, InputErrors, Label, Modal, NavItem, NavItemService, Navbar, NgxZsComponent, Page404, Pagination, Range, ScrollToTop, Select, Spinner, ThemeToggle, Toggle, buttonOutlinePaletteMap, buttonSolidPaletteMap, cardPaletteMap, checkboxTextPaletteMap, inputPaletteMap, modalPaletteMap, page404PaletteMap, ringPaletteMap, selectPaletteMap, unifiedPaletteMap };
|
|
965
|
+
export type { AlertFullType, AlertType, AnimationType, AuthButtonsType, BaseColorPrefixes, BaseColors, BaseSize, BtnSizeType, BtnType, BtnTypeDefault, BulkAlert, ButtonVariant, CarouselItem, ChVariantType, ChangeEventType, DateType, DropdownItem, FileData, FilesType, FormStyle, FormatterFn, InputType, ItemShapeType, LoaderType, NavbarItem, NavbarItemExport, NewAlert, OldAlertsType, PagesType, Position, PositionClassType, PositionType, ShapeType, SiteNameConfigType, UserProfile, ValidatorFn, VariantType, ZFormField, ZFormFieldMap, navItemsType, themeTypes };
|