@ascentgl/ads-ui 22.9.0 → 22.10.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/package.json
CHANGED
|
@@ -159,7 +159,7 @@ declare class AdsButtonComponent {
|
|
|
159
159
|
/** Whether the button is a smaller version */
|
|
160
160
|
size: i0.InputSignal<Size>;
|
|
161
161
|
/** Sets the "type" attribute on the button */
|
|
162
|
-
type: i0.InputSignal<"
|
|
162
|
+
type: i0.InputSignal<"submit" | "button" | "reset">;
|
|
163
163
|
/** Makes the button take 100% width of its container */
|
|
164
164
|
fullWidth: i0.InputSignal<boolean>;
|
|
165
165
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
|
|
@@ -168,7 +168,7 @@ declare class AdsButtonComponent {
|
|
|
168
168
|
|
|
169
169
|
declare class AdsButtonContainerComponent {
|
|
170
170
|
/** How buttons in the container should be placed */
|
|
171
|
-
justify: i0.InputSignal<"
|
|
171
|
+
justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
|
|
172
172
|
/** The gap between elements */
|
|
173
173
|
gap: i0.InputSignal<number>;
|
|
174
174
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
|
|
@@ -3939,7 +3939,7 @@ declare class AdsOrgDisplayTextComponent {
|
|
|
3939
3939
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsOrgDisplayTextComponent, "ads-org-display-text", never, { "text": { "alias": "text"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; }, {}, never, never, true, never>;
|
|
3940
3940
|
}
|
|
3941
3941
|
|
|
3942
|
-
|
|
3942
|
+
type Tab = {
|
|
3943
3943
|
text?: string;
|
|
3944
3944
|
disabled?: boolean;
|
|
3945
3945
|
template?: TemplateRef<unknown>;
|
|
@@ -3950,7 +3950,7 @@ interface Tab {
|
|
|
3950
3950
|
templateContext?: unknown;
|
|
3951
3951
|
/** When `true`, the tab content renders lazily via `matTabContent` (only while the tab is active). */
|
|
3952
3952
|
lazy?: boolean;
|
|
3953
|
-
}
|
|
3953
|
+
};
|
|
3954
3954
|
declare class AdsTabsComponent implements AfterViewInit {
|
|
3955
3955
|
tabGroup: i0.Signal<MatTabGroup>;
|
|
3956
3956
|
tabs: Tab[];
|