@skyux/layout 5.0.2 → 5.1.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/skyux-layout.umd.js +136 -129
- package/bundles/skyux-layout.umd.js.map +1 -1
- package/documentation.json +258 -183
- package/esm2015/modules/text-expand-repeater/text-expand-repeater.component.js +10 -3
- package/esm2015/modules/text-expand-repeater/types/text-expand-repeater-list-style-type.js +2 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/skyux-layout.js +52 -45
- package/fesm2015/skyux-layout.js.map +1 -1
- package/modules/text-expand-repeater/text-expand-repeater.component.d.ts +7 -1
- package/modules/text-expand-repeater/types/text-expand-repeater-list-style-type.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { SkyLibResourcesService } from '@skyux/i18n';
|
|
3
|
+
import { SkyTextExpandRepeaterListStyleType } from './types/text-expand-repeater-list-style-type';
|
|
3
4
|
import { SkyTextExpandRepeaterAdapterService } from './text-expand-repeater-adapter.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class SkyTextExpandRepeaterComponent implements AfterViewInit, OnChanges {
|
|
@@ -15,6 +16,11 @@ export declare class SkyTextExpandRepeaterComponent implements AfterViewInit, On
|
|
|
15
16
|
* Specifies a template for items in the list.
|
|
16
17
|
*/
|
|
17
18
|
itemTemplate: TemplateRef<any>;
|
|
19
|
+
/**
|
|
20
|
+
* Specifies the style of bullet to use
|
|
21
|
+
* @default 'unordered'
|
|
22
|
+
*/
|
|
23
|
+
listStyle: SkyTextExpandRepeaterListStyleType;
|
|
18
24
|
/**
|
|
19
25
|
* Specifies the number of items to display before truncating the list.
|
|
20
26
|
*/
|
|
@@ -37,5 +43,5 @@ export declare class SkyTextExpandRepeaterComponent implements AfterViewInit, On
|
|
|
37
43
|
private animateRepeater;
|
|
38
44
|
private setup;
|
|
39
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextExpandRepeaterComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyTextExpandRepeaterComponent, "sky-text-expand-repeater", never, { "data": "data"; "itemTemplate": "itemTemplate"; "maxItems": "maxItems"; }, {}, never, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyTextExpandRepeaterComponent, "sky-text-expand-repeater", never, { "data": "data"; "itemTemplate": "itemTemplate"; "listStyle": "listStyle"; "maxItems": "maxItems"; }, {}, never, never>;
|
|
41
47
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare type SkyTextExpandRepeaterListStyleType = 'unordered' | 'ordered' | 'unstyled';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export * from './modules/inline-delete/inline-delete.module';
|
|
|
21
21
|
export * from './modules/page/page.module';
|
|
22
22
|
export * from './modules/page-summary/page-summary.module';
|
|
23
23
|
export * from './modules/text-expand/text-expand.module';
|
|
24
|
+
export * from './modules/text-expand-repeater/types/text-expand-repeater-list-style-type';
|
|
24
25
|
export * from './modules/text-expand-repeater/text-expand-repeater.module';
|
|
25
26
|
export * from './modules/toolbar/toolbar.module';
|
|
26
27
|
export { SkyActionButtonComponent as λ1 } from './modules/action-button/action-button.component';
|