@ascentgl/ads-ui 0.0.159 → 0.0.160

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.
@@ -16,7 +16,7 @@ export declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
16
16
  /** provide icon name. NOTE: the icon must be registered in icon registry **/
17
17
  name: import("@angular/core").InputSignal<adsIcon>;
18
18
  /** choose ads icon theme **/
19
- theme: import("@angular/core").InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
19
+ theme: import("@angular/core").InputSignal<"iconPrimary" | "primary" | "success" | "warn" | "white">;
20
20
  /** set badge value as number **/
21
21
  value: import("@angular/core").InputSignal<number>;
22
22
  /** @ignore **/
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class AdsButtonContainerComponent {
3
3
  /** How buttons in the container should be placed */
4
- justify: import("@angular/core").InputSignal<"flex-start" | "flex-end" | "center">;
4
+ justify: import("@angular/core").InputSignal<"center" | "flex-start" | "flex-end">;
5
5
  /** The gap between elements */
6
6
  gap: import("@angular/core").InputSignal<number>;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
@@ -1,9 +1,9 @@
1
- import { TemplateRef } from '@angular/core';
1
+ import { AfterContentInit, TemplateRef } from '@angular/core';
2
2
  import { AdsIconRegistry, IconThemes } from '@ascentgl/ads-icons';
3
3
  import { GENERIC_COLLECTION } from '@ascentgl/ads-utils';
4
4
  import { MatExpansionPanel } from '@angular/material/expansion';
5
5
  import * as i0 from "@angular/core";
6
- export declare class AdsExpansionPanelComponent {
6
+ export declare class AdsExpansionPanelComponent implements AfterContentInit {
7
7
  private registry;
8
8
  constructor(registry: AdsIconRegistry);
9
9
  /** The unique id of the chip */
@@ -22,9 +22,16 @@ export declare class AdsExpansionPanelComponent {
22
22
  disabled: import("@angular/core").InputSignal<boolean>;
23
23
  /** Component width. Must include units of measure: px, %, em, rem, etc. */
24
24
  width: import("@angular/core").InputSignal<string>;
25
+ /** The Chevron Icon size () */
26
+ chevronSize: import("@angular/core").InputSignal<"base" | "xs">;
27
+ /** Header padding size size () */
28
+ headerPadding: import("@angular/core").InputSignal<string>;
29
+ /** Content padding size size () */
30
+ contentPadding: import("@angular/core").InputSignal<string>;
25
31
  /** @ignore */
26
32
  panel: MatExpansionPanel;
27
33
  get expanded(): boolean;
34
+ ngAfterContentInit(): void;
28
35
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsExpansionPanelComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsExpansionPanelComponent, "ads-expansion-panel", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "chevronColor": { "alias": "chevronColor"; "required": false; "isSignal": true; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; "isSignal": true; }; "headerTemplateData": { "alias": "headerTemplateData"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsExpansionPanelComponent, "ads-expansion-panel", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "chevronColor": { "alias": "chevronColor"; "required": false; "isSignal": true; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; "isSignal": true; }; "headerTemplateData": { "alias": "headerTemplateData"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "chevronSize": { "alias": "chevronSize"; "required": false; "isSignal": true; }; "headerPadding": { "alias": "headerPadding"; "required": false; "isSignal": true; }; "contentPadding": { "alias": "contentPadding"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
30
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascentgl/ads-ui",
3
- "version": "0.0.159",
3
+ "version": "0.0.160",
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/splash-page": {
48
- "types": "./src/lib/components/splash-page/index.d.ts",
49
- "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs"
50
- },
51
47
  "./src/lib/components/shell-layout": {
52
48
  "types": "./src/lib/components/shell-layout/index.d.ts",
53
49
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs"
54
50
  },
51
+ "./src/lib/components/splash-page": {
52
+ "types": "./src/lib/components/splash-page/index.d.ts",
53
+ "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.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"