@inera/ids-angular 3.1.4 → 4.0.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.
@@ -13,6 +13,8 @@ export declare class IDMobileMenuItem {
13
13
  get secondary(): boolean | undefined;
14
14
  get active(): boolean | undefined;
15
15
  get variation(): number | undefined;
16
+ get showtext(): string | undefined;
17
+ get hidetext(): string | undefined;
16
18
  get expansionToggled(): (() => any) | undefined;
17
19
  togleExpansion(): void;
18
20
  }
@@ -3,6 +3,8 @@ import { IDLink } from "../link/IDLink";
3
3
  import { IDMobileMenuItem } from "./MobileMenuItem";
4
4
  export interface IDMobileMenuItemProps {
5
5
  headline?: string;
6
+ showtext?: string;
7
+ hidetext?: string;
6
8
  link?: IDLink;
7
9
  prependIcon?: IDIcon;
8
10
  appendIcon?: IDIcon;
@@ -0,0 +1,11 @@
1
+ import { IDIcon } from "../icon/IDIcon";
2
+ import { IDTabProps } from "./IDTabProps";
3
+ export declare class IDTab {
4
+ private _props;
5
+ constructor(_props: IDTabProps);
6
+ get label(): string | undefined;
7
+ get selected(): boolean | undefined;
8
+ get notices(): number | undefined;
9
+ get notifications(): number | undefined;
10
+ get icon(): IDIcon | undefined;
11
+ }
@@ -0,0 +1,8 @@
1
+ import { IDIcon } from "../icon/IDIcon";
2
+ export interface IDTabProps {
3
+ label: string;
4
+ selected?: boolean;
5
+ notices?: number;
6
+ notifications?: number;
7
+ icon?: IDIcon;
8
+ }
@@ -1,9 +1,10 @@
1
+ import { IDTab } from '../../classes/tabs/IDTab';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class IDTabsComponent {
4
+ tabs: IDTab[] | undefined;
3
5
  responsive: 'm' | 's';
4
6
  unresponsive: boolean;
5
7
  selectLabel: string;
6
- constructor();
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<IDTabsComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<IDTabsComponent, "id-tabs", never, { "responsive": "responsive"; "unresponsive": "unresponsive"; "selectLabel": "selectLabel"; }, {}, never, ["*"]>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTabsComponent, "id-tabs", never, { "tabs": "tabs"; "responsive": "responsive"; "unresponsive": "unresponsive"; "selectLabel": "selectLabel"; }, {}, never, ["*", "[panel-0]", "[panel-1]", "[panel-2]", "[panel-3]", "[panel-4]", "[panel-5]", "[panel-6]", "[panel-7]", "[panel-8]", "[panel-9]"]>;
9
10
  }
package/license.md ADDED
@@ -0,0 +1,7 @@
1
+ # License
2
+
3
+ The package @inera/ids-angular is solely for the purpose of being used for and on behalf of Inera AB and its subsidiaries.
4
+
5
+ Individuals or entities that are not affiliated with or employed by Inera AB or its subsidiaries are prohibited from accessing or utilizing this package. Additionally, they may not reproduce, sell, publish any information, content, or materials available through it for any purpose.
6
+
7
+ By accessing and using this package, you agree to be bound by these terms of use.
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "3.1.4",
3
+ "version": "4.0.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "*",
6
6
  "@angular/core": "*",
7
- "@inera/ids-core": "3.1.x"
7
+ "@inera/ids-core": "4.0.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
- "license": "UNLICENSED",
12
+ "license": "SEE LICENSE IN LICENSE.md",
13
13
  "dependencies": {
14
14
  "tslib": "^2.3.0"
15
15
  },
package/public-api.d.ts CHANGED
@@ -102,6 +102,8 @@ export * from './lib/components/tabs/tabs.component';
102
102
  export * from './lib/components/tabs/panel/tab-panel.component';
103
103
  export * from './lib/components/tabs/tab/tab.component';
104
104
  export * from './lib/components/tabs/tabs.module';
105
+ export * from './lib/classes/tabs/IDTab';
106
+ export * from './lib/classes/tabs/IDTabProps';
105
107
  export * from './lib/components/tag/tag.component';
106
108
  export * from './lib/components/tag/tag.module';
107
109
  export * from './lib/components/tooltip/tooltip.component';