@skyux/indicators 5.2.0 → 5.3.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-indicators.umd.js +132 -68
- package/documentation.json +221 -519
- package/esm2015/modules/chevron/chevron.component.js +9 -4
- package/esm2015/modules/chevron/chevron.module.js +6 -2
- package/esm2015/modules/expansion-indicator/expansion-indicator.component.js +35 -0
- package/esm2015/modules/expansion-indicator/expansion-indicator.module.js +19 -0
- package/esm2015/public-api.js +3 -1
- package/fesm2015/skyux-indicators.js +81 -29
- package/fesm2015/skyux-indicators.js.map +1 -1
- package/modules/chevron/chevron.component.d.ts +4 -0
- package/modules/chevron/chevron.module.d.ts +2 -1
- package/modules/expansion-indicator/expansion-indicator.component.d.ts +15 -0
- package/modules/expansion-indicator/expansion-indicator.module.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './modules/alert/alert.module';
|
|
2
2
|
export * from './modules/chevron/chevron.module';
|
|
3
|
+
export * from './modules/expansion-indicator/expansion-indicator.module';
|
|
3
4
|
export * from './modules/help-inline/help-inline.module';
|
|
4
5
|
export * from './modules/icon/icon-stack-item';
|
|
5
6
|
export * from './modules/icon/icon.module';
|
|
@@ -31,3 +32,4 @@ export { SkyTextHighlightDirective as λ11 } from './modules/text-highlight/text
|
|
|
31
32
|
export { SkyTokenComponent as λ12 } from './modules/tokens/token.component';
|
|
32
33
|
export { SkyTokensComponent as λ13 } from './modules/tokens/tokens.component';
|
|
33
34
|
export { SkyWaitComponent as λ14 } from './modules/wait/wait.component';
|
|
35
|
+
export { SkyExpansionIndicatorComponent as λ15 } from './modules/expansion-indicator/expansion-indicator.component';
|