@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
|
@@ -9098,6 +9098,20 @@
|
|
|
9098
9098
|
contentPosition: [{ type: i0.Input }]
|
|
9099
9099
|
};
|
|
9100
9100
|
|
|
9101
|
+
var LinkButtonComponent = /** @class */ (function () {
|
|
9102
|
+
function LinkButtonComponent() {
|
|
9103
|
+
}
|
|
9104
|
+
return LinkButtonComponent;
|
|
9105
|
+
}());
|
|
9106
|
+
LinkButtonComponent.decorators = [
|
|
9107
|
+
{ type: i0.Component, args: [{
|
|
9108
|
+
selector: 'button[ecLinkButton]',
|
|
9109
|
+
template: "<ng-content></ng-content>",
|
|
9110
|
+
host: { class: 'text-link' },
|
|
9111
|
+
styles: [":host{background-color:transparent;border:none;display:inline;font-size:inherit;padding:0;text-align:start}"]
|
|
9112
|
+
},] }
|
|
9113
|
+
];
|
|
9114
|
+
|
|
9101
9115
|
var ComponentsModule = /** @class */ (function () {
|
|
9102
9116
|
function ComponentsModule() {
|
|
9103
9117
|
}
|
|
@@ -9181,7 +9195,8 @@
|
|
|
9181
9195
|
HighlightTextPipe,
|
|
9182
9196
|
FormControlLabelComponent,
|
|
9183
9197
|
ItemPickerComponent,
|
|
9184
|
-
HelpPopoverComponent
|
|
9198
|
+
HelpPopoverComponent,
|
|
9199
|
+
LinkButtonComponent
|
|
9185
9200
|
],
|
|
9186
9201
|
imports: [
|
|
9187
9202
|
common.CommonModule,
|
|
@@ -9259,7 +9274,8 @@
|
|
|
9259
9274
|
HighlightTextPipe,
|
|
9260
9275
|
FormControlLabelComponent,
|
|
9261
9276
|
ItemPickerComponent,
|
|
9262
|
-
HelpPopoverComponent
|
|
9277
|
+
HelpPopoverComponent,
|
|
9278
|
+
LinkButtonComponent
|
|
9263
9279
|
]
|
|
9264
9280
|
},] }
|
|
9265
9281
|
];
|
|
@@ -10434,6 +10450,7 @@
|
|
|
10434
10450
|
exports.ItemPickerSelectableContext = ItemPickerSelectableContext;
|
|
10435
10451
|
exports.JsonDisplayComponent = JsonDisplayComponent;
|
|
10436
10452
|
exports.JsonHelper = JsonHelper;
|
|
10453
|
+
exports.LinkButtonComponent = LinkButtonComponent;
|
|
10437
10454
|
exports.MenuComponent = MenuComponent;
|
|
10438
10455
|
exports.MockActivatedRoute = MockActivatedRoute;
|
|
10439
10456
|
exports.MockDateDisplayPipe = MockDateDisplayPipe;
|