@stemy/ngx-utils 19.5.10 → 19.5.11
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/stemy-ngx-utils.mjs +9 -9
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +2 -2
- package/ngx-utils/components/btn/btn.component.d.ts +3 -3
- package/ngx-utils/components/btn-default/btn-default.component.d.ts +3 -3
- package/ngx-utils/components/tabs/tabs.component.d.ts +3 -3
- package/ngx-utils/ngx-utils.imports.d.ts +2 -2
- package/package.json +1 -1
- package/public_api.d.ts +1 -1
|
@@ -189,14 +189,14 @@ export interface IconMap {
|
|
|
189
189
|
export interface IconProps {
|
|
190
190
|
name: string;
|
|
191
191
|
}
|
|
192
|
-
export type
|
|
192
|
+
export type ButtonType = "primary" | "secondary" | "transparent";
|
|
193
193
|
export type ButtonSize = "normal" | "small";
|
|
194
194
|
export interface ButtonProps {
|
|
195
195
|
label: string;
|
|
196
196
|
tooltip: string;
|
|
197
197
|
icon: string;
|
|
198
198
|
disabled: boolean;
|
|
199
|
-
|
|
199
|
+
type: ButtonType;
|
|
200
200
|
size: ButtonSize;
|
|
201
201
|
}
|
|
202
202
|
export interface TabOption extends Omit<Partial<ButtonProps>, "size" | "state" | "style"> {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ButtonProps, ButtonSize,
|
|
1
|
+
import { ButtonProps, ButtonSize, ButtonType } from "../../common-types";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class BtnComponent {
|
|
4
4
|
readonly label: import("@angular/core").InputSignal<string>;
|
|
5
5
|
readonly tooltip: import("@angular/core").InputSignal<string>;
|
|
6
6
|
readonly icon: import("@angular/core").InputSignal<string>;
|
|
7
7
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
8
|
-
readonly
|
|
8
|
+
readonly type: import("@angular/core").InputSignal<ButtonType>;
|
|
9
9
|
readonly size: import("@angular/core").InputSignal<ButtonSize>;
|
|
10
10
|
readonly buttonType: import("@angular/core").Type<ButtonProps>;
|
|
11
11
|
readonly buttonProps: import("@angular/core").Signal<ButtonProps>;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<BtnComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BtnComponent, "btn", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnComponent, "btn", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
14
14
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ButtonProps, ButtonSize,
|
|
1
|
+
import { ButtonProps, ButtonSize, ButtonType } from "../../common-types";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class BtnDefaultComponent implements ButtonProps {
|
|
4
4
|
label: string;
|
|
5
5
|
tooltip: string;
|
|
6
6
|
icon: string;
|
|
7
7
|
disabled: boolean;
|
|
8
|
-
|
|
8
|
+
type: ButtonType;
|
|
9
9
|
size: ButtonSize;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<BtnDefaultComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BtnDefaultComponent, "btn-default", never, { "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BtnDefaultComponent, "btn-default", never, { "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
12
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Renderer2 } from "@angular/core";
|
|
2
|
-
import { ButtonSize,
|
|
2
|
+
import { ButtonSize, ButtonType, TabOption } from "../../common-types";
|
|
3
3
|
import { TabsItemDirective } from "../../directives/tabs-item.directive";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class TabsComponent {
|
|
6
6
|
readonly value: import("@angular/core").ModelSignal<unknown>;
|
|
7
7
|
readonly options: import("@angular/core").InputSignal<TabOption[]>;
|
|
8
|
-
readonly
|
|
8
|
+
readonly type: import("@angular/core").InputSignal<ButtonType>;
|
|
9
9
|
readonly size: import("@angular/core").InputSignal<ButtonSize>;
|
|
10
10
|
readonly tabItems: import("@angular/core").Signal<readonly TabsItemDirective[]>;
|
|
11
11
|
readonly renderer: Renderer2;
|
|
12
12
|
readonly tabs: import("@angular/core").Signal<TabOption[]>;
|
|
13
13
|
select(value: any): void;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "tabs", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "tabs", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["tabItems"], ["*"], false, never>;
|
|
16
16
|
}
|
|
@@ -66,8 +66,8 @@ import { UnorderedListComponent } from "./components/unordered-list/unordered-li
|
|
|
66
66
|
import { UploadComponent } from "./components/upload/upload.component";
|
|
67
67
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
|
|
68
68
|
export declare const directives: (typeof AsyncMethodBase | typeof BackgroundDirective | typeof ComponentLoaderDirective | typeof DynamicTableTemplateDirective | typeof GlobalTemplateDirective | typeof IconDirective | typeof NgxTemplateOutletDirective | typeof PaginationDirective | typeof PaginationItemDirective | typeof ResourceIfDirective | typeof StickyDirective | typeof StickyClassDirective | typeof DropdownDirective | typeof DropdownContentDirective | typeof DropdownToggleDirective | typeof TabsItemDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
69
|
-
export declare const components: (typeof ChipsComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof FakeModuleComponent | typeof
|
|
70
|
-
export declare const providers: (typeof
|
|
69
|
+
export declare const components: (typeof ChipsComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof FakeModuleComponent | typeof PaginationMenuComponent | typeof InteractiveCanvasComponent | typeof InteractiveCircleComponent | typeof InteractiveRectComponent | typeof UnorderedListComponent | typeof UploadComponent)[];
|
|
70
|
+
export declare const providers: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe | typeof BaseHttpClient | typeof BaseHttpService | typeof AuthGuard | typeof AclService | typeof StaticAuthService | typeof ConfigService | typeof BaseDialogService | typeof ErrorHandlerService | typeof EventsService | typeof FormatterService | typeof GlobalTemplateService | typeof IconService | typeof StaticLanguageService | typeof OpenApiService | typeof PromiseService | typeof SocketService | typeof StateService | typeof StorageService | typeof BaseToasterService | typeof ComponentLoaderService | typeof TranslatedUrlSerializer | typeof UniversalService | typeof WasmService | typeof DeviceDetectorService | {
|
|
71
71
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
72
72
|
useClass: typeof DragDropEventPlugin;
|
|
73
73
|
multi: boolean;
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "zone.js";
|
|
2
2
|
export { MaybePromise, MaybeArray, StringKeys, CapitalizeFirst, CamelJoin, PrefixedPick } from "./ngx-utils/helper-types";
|
|
3
|
-
export { DurationUnit, TypedFactoryProvider, TypedValueProvider, CachedProvider, CachedFactory, IResolveFactory, CanvasColor, IIconService, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, IAuthService, RouteValidator, IRouteData, IRoute, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IWasi, IWasmExports, IWasm, IWasmAsync, IRouteStateInfo, NavigationUrlParam, StorageMode, ToastType, IToasterService, IAsyncMessage, AsyncMethod, IconMap, IconProps,
|
|
3
|
+
export { DurationUnit, TypedFactoryProvider, TypedValueProvider, CachedProvider, CachedFactory, IResolveFactory, CanvasColor, IIconService, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, IAuthService, RouteValidator, IRouteData, IRoute, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IWasi, IWasmExports, IWasm, IWasmAsync, IRouteStateInfo, NavigationUrlParam, StorageMode, ToastType, IToasterService, IAsyncMessage, AsyncMethod, IconMap, IconProps, ButtonType, ButtonSize, ButtonProps, TabOption, ChipValue, ChipStatus, ChipOption, DropdownAttachTo, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, UploadType, IFileUploadResult, IFileUploadProcess, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, ILoadableElement, ILoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, IShape, CanvasItemShape, CanvasItemDirection, InteractiveCanvas, InteractiveCanvasItem, InteractiveDrawFn, InteractivePanEvent, InteractiveCanvasPointer, IHttpHeaders, IHttpParams, IRequestOptions, IIssueContext, IProgress, ProgressListener, PromiseExecutor, HttpPromise, IHttpService, IApiService, IOpenApiSchemaProperty, IOpenApiSchema, IOpenApiSchemas, TableFilterType, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, DragDropEvent, DragEventHandler, ITableDragEvent, DynamicTableDragHandler, ResourceIfContext, CssSelector, CssSelectorList, DynamicComponentLocation, DynamicModuleInfo, DynamicEntryComponents, IConfiguration, IConfigService, ResizeEventStrategy, ErrorHandlerCallback, GlobalComponentModifier, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
|
|
4
4
|
export { ICON_TYPE, ICON_MAP, BUTTON_TYPE, ERROR_HANDLER, RESIZE_STRATEGY, RESIZE_DELAY, ROOT_ELEMENT, SCRIPT_PARAMS, BASE_CONFIG, CONFIG_SERVICE, APP_BASE_URL, API_SERVICE, EXPRESS_REQUEST, WASI_IMPLEMENTATION, PROMISE_SERVICE, DIALOG_SERVICE, TOASTER_SERVICE, AUTH_SERVICE, LANGUAGE_SERVICE, ICON_SERVICE, OPTIONS_TOKEN } from "./ngx-utils/tokens";
|
|
5
5
|
export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
|
|
6
6
|
export { ArrayUtils } from "./ngx-utils/utils/array.utils";
|