@ascentgl/ads-ui 0.0.146 → 0.0.148
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/ascentgl-ads-ui.mjs +8 -4
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
- package/lib/components/modal/modal.component.d.ts +3 -0
- package/lib/components/steppers/wizard-stepper/wizard-step.type.d.ts +1 -1
- package/lib/components/steppers/wizard-stepper/wizard-stepper.component.d.ts +5 -1
- package/package.json +5 -5
|
@@ -14,7 +14,10 @@ export type AdsModalData = {
|
|
|
14
14
|
showDeleteButton?: boolean;
|
|
15
15
|
cancelButtonText?: string;
|
|
16
16
|
confirmButtonText?: string;
|
|
17
|
+
deleteButtonText?: string;
|
|
17
18
|
disabledConfirmButton?: boolean;
|
|
19
|
+
deleteButtonVariant?: Variant;
|
|
20
|
+
cancelButtonVariant?: Variant;
|
|
18
21
|
confirmButtonVariant?: Variant;
|
|
19
22
|
actionHint?: string;
|
|
20
23
|
headerTemplate?: TemplateRef<unknown>;
|
|
@@ -2,7 +2,7 @@ import { adsIcon } from '@ascentgl/ads-icons/icons';
|
|
|
2
2
|
import { WizardStepStatus } from './wizard-stepper.component';
|
|
3
3
|
export type WizardStep = {
|
|
4
4
|
title: string;
|
|
5
|
-
date?:
|
|
5
|
+
date?: string;
|
|
6
6
|
icon: adsIcon;
|
|
7
7
|
status: WizardStepStatus;
|
|
8
8
|
onClick?: (step: WizardStep) => void;
|
|
@@ -14,6 +14,10 @@ export declare class AdsWizardStepperComponent extends AbstractWindowResizeCompo
|
|
|
14
14
|
* The steps to display
|
|
15
15
|
*/
|
|
16
16
|
steps: import("@angular/core").InputSignal<WizardStep[]>;
|
|
17
|
+
/**
|
|
18
|
+
* Make stepper horizontal manually
|
|
19
|
+
*/
|
|
20
|
+
horizontalView: import("@angular/core").InputSignal<boolean>;
|
|
17
21
|
/** @ignore */
|
|
18
22
|
focusedStepIndex: number;
|
|
19
23
|
/** @ignore */
|
|
@@ -21,5 +25,5 @@ export declare class AdsWizardStepperComponent extends AbstractWindowResizeCompo
|
|
|
21
25
|
/** @ignore */
|
|
22
26
|
ngOnInit(): void;
|
|
23
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsWizardStepperComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsWizardStepperComponent, "ads-wizard-stepper", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsWizardStepperComponent, "ads-wizard-stepper", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; "horizontalView": { "alias": "horizontalView"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
25
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ascentgl/ads-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.148",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@ascentgl/ads-icons": ">=0.0.0",
|
|
6
6
|
"@ascentgl/ads-utils": ">=0.0.0",
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"types": "./src/lib/components/header/index.d.ts",
|
|
45
45
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs"
|
|
46
46
|
},
|
|
47
|
-
"./src/lib/components/shell-layout": {
|
|
48
|
-
"types": "./src/lib/components/shell-layout/index.d.ts",
|
|
49
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs"
|
|
50
|
-
},
|
|
51
47
|
"./src/lib/components/splash-page": {
|
|
52
48
|
"types": "./src/lib/components/splash-page/index.d.ts",
|
|
53
49
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs"
|
|
54
50
|
},
|
|
51
|
+
"./src/lib/components/shell-layout": {
|
|
52
|
+
"types": "./src/lib/components/shell-layout/index.d.ts",
|
|
53
|
+
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs"
|
|
54
|
+
},
|
|
55
55
|
"./src/lib/components/buttons/button-container": {
|
|
56
56
|
"types": "./src/lib/components/buttons/button-container/index.d.ts",
|
|
57
57
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs"
|