@energycap/components 0.30.2 → 0.30.3
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/energycap-components.umd.js +19 -2
- package/bundles/energycap-components.umd.js.map +1 -1
- package/bundles/energycap-components.umd.min.js +1 -1
- package/bundles/energycap-components.umd.min.js.map +1 -1
- package/energycap-components.metadata.json +1 -1
- package/esm2015/lib/components.module.js +6 -3
- package/esm2015/lib/controls/button/button.component.js +1 -1
- package/esm2015/lib/controls/link-button/link-button.component.js +12 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/energycap-components.js +16 -3
- package/fesm2015/energycap-components.js.map +1 -1
- package/lib/controls/button/button.component.d.ts +2 -0
- package/lib/controls/link-button/link-button.component.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -2,6 +2,8 @@ import { EventEmitter, OnInit, ElementRef, TemplateRef, AfterViewInit } from '@a
|
|
|
2
2
|
/**
|
|
3
3
|
* "Submit" button type is deprecated. Use the isSubmit input instead.
|
|
4
4
|
* This allows you to make any button type a submit button.
|
|
5
|
+
*
|
|
6
|
+
* "Link" button type is deprecated. Use the LinkButtonComponent instead.
|
|
5
7
|
*/
|
|
6
8
|
export declare type ButtonType = "primary" | "secondary" | "common" | "icon" | "link" | "text" | "submit" | "danger" | "danger-text";
|
|
7
9
|
export declare class ButtonComponent implements OnInit, AfterViewInit {
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './lib/components.module';
|
|
2
2
|
export * from './lib/controls/banner/banner.component';
|
|
3
3
|
export * from './lib/controls/button/button.component';
|
|
4
|
+
export * from './lib/controls/link-button/link-button.component';
|
|
4
5
|
export * from './lib/controls/checkbox/checkbox.component';
|
|
5
6
|
export * from './lib/controls/collapsible-toggle/collapsible-toggle.component';
|
|
6
7
|
export * from './lib/controls/combobox/combobox.component';
|