@inera/ids-angular 1.4.0 → 1.5.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/bundles/inera-ids-angular.umd.js +252 -63
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/components/date-label/date-label.component.js +32 -0
- package/esm2015/lib/components/date-label/date-label.module.js +22 -0
- package/esm2015/lib/components/link/link.component.js +4 -2
- package/esm2015/lib/components/list/item/info/list-item-info.component.js +16 -0
- package/esm2015/lib/components/list/item/info/list-item-info.module.js +21 -0
- package/esm2015/lib/components/list/item/list-item.component.js +38 -0
- package/esm2015/lib/components/list/item/list-item.module.js +21 -0
- package/esm2015/lib/components/list/list.component.js +16 -0
- package/esm2015/lib/components/list/list.module.js +22 -0
- package/esm2015/lib/components/notification/badge/notification-badge.component.js +2 -5
- package/esm2015/public-api.js +11 -1
- package/fesm2015/inera-ids-angular.js +227 -62
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/components/date-label/date-label.component.d.ts +11 -0
- package/lib/components/date-label/date-label.module.d.ts +8 -0
- package/lib/components/link/link.component.d.ts +1 -1
- package/lib/components/list/item/info/list-item-info.component.d.ts +6 -0
- package/lib/components/list/item/info/list-item-info.module.d.ts +7 -0
- package/lib/components/list/item/list-item.component.d.ts +13 -0
- package/lib/components/list/item/list-item.module.d.ts +7 -0
- package/lib/components/list/list.component.d.ts +6 -0
- package/lib/components/list/list.module.d.ts +8 -0
- package/lib/components/notification/badge/notification-badge.component.d.ts +1 -2
- package/package.json +2 -2
- package/public-api.d.ts +8 -0
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inera/ids-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^12.2.0",
|
|
6
6
|
"@angular/core": "^12.2.0",
|
|
7
|
-
"@inera/ids-core": "1.
|
|
7
|
+
"@inera/ids-core": "1.5.x"
|
|
8
8
|
},
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
package/public-api.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ export * from './lib/components/button/button.component';
|
|
|
6
6
|
export * from './lib/components/button/button.module';
|
|
7
7
|
export * from './lib/components/button-group/button-group.component';
|
|
8
8
|
export * from './lib/components/button-group/button-group.module';
|
|
9
|
+
export * from './lib/components/date-label/date-label.component';
|
|
10
|
+
export * from './lib/components/date-label/date-label.module';
|
|
9
11
|
export * from './lib/classes/icon/IDIcon';
|
|
10
12
|
export * from './lib/classes/icon/IDIconProps';
|
|
11
13
|
export * from './lib/components/icon/icon.component';
|
|
@@ -45,6 +47,12 @@ export * from './lib/classes/link/IDLink';
|
|
|
45
47
|
export * from './lib/classes/link/IDLinkFunction';
|
|
46
48
|
export * from './lib/classes/link/IDLinkRoute';
|
|
47
49
|
export * from './lib/classes/link/IDLinkWeb';
|
|
50
|
+
export * from './lib/components/list/list.component';
|
|
51
|
+
export * from './lib/components/list/list.module';
|
|
52
|
+
export * from './lib/components/list/item/list-item.component';
|
|
53
|
+
export * from './lib/components/list/item/list-item.module';
|
|
54
|
+
export * from './lib/components/list/item/info/list-item-info.component';
|
|
55
|
+
export * from './lib/components/list/item/info/list-item-info.module';
|
|
48
56
|
export * from './lib/components/notification/badge/notification-badge.component';
|
|
49
57
|
export * from './lib/components/notification/badge/notification-badge.module';
|
|
50
58
|
export * from './lib/classes/notification-badge';
|