@kumori/aurora-wui-components 0.0.190 → 0.0.191
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.
|
@@ -14,7 +14,6 @@ export declare class AxebowServicesPanel extends LitElement {
|
|
|
14
14
|
dragDropText: string;
|
|
15
15
|
searchPlaceholder: string;
|
|
16
16
|
noServicesFoundText: string;
|
|
17
|
-
addButtonTooltip: string;
|
|
18
17
|
render(): import('lit-html').TemplateResult<1>;
|
|
19
18
|
private _renderCard;
|
|
20
19
|
private _renderServicesList;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axebow-services-panel.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-services-panel/axebow-services-panel.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,+BAA+B,CAAC;AACvC,OAAO,mCAAmC,CAAC;AAC3C,OAAO,yDAAyD,CAAC;
|
|
1
|
+
{"version":3,"file":"axebow-services-panel.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-services-panel/axebow-services-panel.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,+BAA+B,CAAC;AACvC,OAAO,mCAAmC,CAAC;AAC3C,OAAO,yDAAyD,CAAC;AAEjE,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;CAClB;AACD,qBACa,mBAAoB,SAAQ,UAAU;IACjD,MAAM,CAAC,MAAM,4BASX;IAE2B,SAAS,UAAQ;IACnB,QAAQ,EAAE,qBAAqB,EAAE,CAAM;IACtC,UAAU,SAAM;IAEhB,KAAK,SAAM;IACX,YAAY,SAAM;IAClB,iBAAiB,SAAM;IACvB,mBAAmB,SAAM;IAErD,MAAM;IAyBN,OAAO,CAAC,WAAW;IAwBnB,OAAO,CAAC,mBAAmB;IAoB3B,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,mBAAmB;CAG5B"}
|
package/dist/index.js
CHANGED
|
@@ -4073,7 +4073,6 @@ var AxebowServicesPanel = class AxebowServicesPanel extends LitElement {
|
|
|
4073
4073
|
this.dragDropText = "";
|
|
4074
4074
|
this.searchPlaceholder = "";
|
|
4075
4075
|
this.noServicesFoundText = "";
|
|
4076
|
-
this.addButtonTooltip = "";
|
|
4077
4076
|
}
|
|
4078
4077
|
static {
|
|
4079
4078
|
this.styles = [
|
|
@@ -4089,18 +4088,11 @@ var AxebowServicesPanel = class AxebowServicesPanel extends LitElement {
|
|
|
4089
4088
|
}
|
|
4090
4089
|
render() {
|
|
4091
4090
|
if (this.collapsed) return html`
|
|
4092
|
-
<div
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
>
|
|
4097
|
-
<axebow-icon iconName="add" iconColor="white"></axebow-icon>
|
|
4098
|
-
</div>
|
|
4099
|
-
<sl-tooltip content=${this.addButtonTooltip} placement="right">
|
|
4100
|
-
<div class="cursor-pointer flex items-center justify-center">
|
|
4101
|
-
<axebow-icon iconName="help" iconColor="var(--axebow-secondary)" ?filled=${true}></axebow-icon>
|
|
4102
|
-
</div>
|
|
4103
|
-
</sl-tooltip>
|
|
4091
|
+
<div
|
|
4092
|
+
class="h-10 w-10 rounded-full bg-(--axebow-tertiary) hover:bg-(--axebow-gray) transition-colors duration-200 flex items-center justify-center cursor-pointer"
|
|
4093
|
+
@click=${this._handleToggle}
|
|
4094
|
+
>
|
|
4095
|
+
<axebow-icon iconName="add" iconColor="white"></axebow-icon>
|
|
4104
4096
|
</div>
|
|
4105
4097
|
`;
|
|
4106
4098
|
return html`
|
|
@@ -4174,7 +4166,6 @@ __decorate([property({ type: String })], AxebowServicesPanel.prototype, "title",
|
|
|
4174
4166
|
__decorate([property({ type: String })], AxebowServicesPanel.prototype, "dragDropText", void 0);
|
|
4175
4167
|
__decorate([property({ type: String })], AxebowServicesPanel.prototype, "searchPlaceholder", void 0);
|
|
4176
4168
|
__decorate([property({ type: String })], AxebowServicesPanel.prototype, "noServicesFoundText", void 0);
|
|
4177
|
-
__decorate([property({ type: String })], AxebowServicesPanel.prototype, "addButtonTooltip", void 0);
|
|
4178
4169
|
AxebowServicesPanel = __decorate([customElement("axebow-services-panel")], AxebowServicesPanel);
|
|
4179
4170
|
//#endregion
|
|
4180
4171
|
//#region src/components/axebow-channel-config-panel/axebow-channel-config-panel.ts
|