@ascentgl/ads-ui 20.19.0 → 20.21.0
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
|
@@ -209,7 +209,7 @@ declare class AdsButtonComponent {
|
|
|
209
209
|
/** Whether the button is a smaller version */
|
|
210
210
|
size: i0.InputSignal<Size>;
|
|
211
211
|
/** Sets the "type" attribute on the button */
|
|
212
|
-
type: i0.InputSignal<"
|
|
212
|
+
type: i0.InputSignal<"button" | "submit" | "reset">;
|
|
213
213
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
|
|
214
214
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsButtonComponent, "ads-button", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
215
215
|
}
|
|
@@ -222,7 +222,7 @@ declare class AdsButtonModule {
|
|
|
222
222
|
|
|
223
223
|
declare class AdsButtonContainerComponent {
|
|
224
224
|
/** How buttons in the container should be placed */
|
|
225
|
-
justify: i0.InputSignal<"
|
|
225
|
+
justify: i0.InputSignal<"flex-start" | "flex-end" | "center">;
|
|
226
226
|
/** The gap between elements */
|
|
227
227
|
gap: i0.InputSignal<number>;
|
|
228
228
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
|
|
@@ -1253,6 +1253,10 @@ declare class AdsDropdownComponent extends AbstractDropdownComponent implements
|
|
|
1253
1253
|
onCheckboxChange(option: DropdownComponentOption): void;
|
|
1254
1254
|
/** @ignore */
|
|
1255
1255
|
get panelClassList(): string;
|
|
1256
|
+
/** @ignore */
|
|
1257
|
+
isDropdownOptionObject(option: any): option is {
|
|
1258
|
+
disableDropdownOption?: boolean;
|
|
1259
|
+
};
|
|
1256
1260
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsDropdownComponent, never>;
|
|
1257
1261
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsDropdownComponent, "ads-dropdown", never, { "displayValueFormatter": { "alias": "displayValueFormatter"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "hasEmptyValue": { "alias": "hasEmptyValue"; "required": false; }; "checkSelected": { "alias": "checkSelected"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; }; "triggerTemplate": { "alias": "triggerTemplate"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; }, {}, never, never, false, never>;
|
|
1258
1262
|
}
|