@openremote/or-mwc-components 1.8.0-snapshot.20250725074716 → 1.8.0-snapshot.20250725120000
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/README.md +32 -32
- package/build.gradle +19 -19
- package/custom-elements.json +4 -4
- package/lib/or-mwc-dialog.js +329 -76
- package/lib/or-mwc-drawer.js +114 -10
- package/lib/or-mwc-input.js +1760 -439
- package/lib/or-mwc-list.js +283 -71
- package/lib/or-mwc-menu.js +237 -45
- package/lib/or-mwc-snackbar.d.ts +1 -1
- package/lib/or-mwc-snackbar.js +141 -17
- package/lib/or-mwc-table.js +685 -245
- package/lib/or-mwc-tabs.js +173 -53
- package/lib/style.js +125 -121
- package/package.json +5 -5
- package/rspack.config.js +7 -7
- package/src/or-mwc-dialog.ts +374 -374
- package/src/or-mwc-drawer.ts +100 -100
- package/src/or-mwc-input.ts +1876 -1876
- package/src/or-mwc-list.ts +335 -335
- package/src/or-mwc-menu.ts +279 -279
- package/src/or-mwc-snackbar.ts +157 -157
- package/src/or-mwc-table.ts +712 -712
- package/src/or-mwc-tabs.ts +175 -175
- package/src/style.ts +125 -125
- package/tsconfig.json +15 -15
- package/tsconfig.tsbuildinfo +1 -1
package/lib/or-mwc-tabs.js
CHANGED
|
@@ -1,57 +1,177 @@
|
|
|
1
|
-
var __decorate=this&&this.__decorate
|
|
2
|
-
.
|
|
3
|
-
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
import { MDCTabBar } from "@material/tab-bar";
|
|
8
|
+
import { css, html, LitElement, unsafeCSS } from "lit";
|
|
9
|
+
import { customElement, property, state } from "lit/decorators.js";
|
|
10
|
+
import { DefaultColor4, DefaultColor8 } from "@openremote/core";
|
|
11
|
+
import { unsafeHTML } from 'lit/directives/unsafe-html.js';
|
|
12
|
+
// Material Styling import
|
|
13
|
+
const tabStyle = require("@material/tab/dist/mdc.tab.css");
|
|
14
|
+
const tabBarStyle = require("@material/tab-bar/dist/mdc.tab-bar.css");
|
|
15
|
+
const tabIndicatorStyle = require("@material/tab-indicator/dist/mdc.tab-indicator.css");
|
|
16
|
+
const tabScrollerStyle = require("@material/tab-scroller/dist/mdc.tab-scroller.css");
|
|
17
|
+
//language=css
|
|
18
|
+
const tabStyling = css `
|
|
19
|
+
.mdc-tab {
|
|
20
|
+
background: var(--or-app-color4, ${unsafeCSS(DefaultColor4)});
|
|
21
|
+
}
|
|
22
|
+
.mdc-tab .mdc-tab__text-label {
|
|
23
|
+
color: var(--or-app-color8, ${unsafeCSS(DefaultColor8)});
|
|
24
|
+
}
|
|
25
|
+
.mdc-tab .mdc-tab__icon {
|
|
26
|
+
color: var(--or-app-color8, ${unsafeCSS(DefaultColor8)})
|
|
27
|
+
}
|
|
28
|
+
.mdc-tab-indicator .mdc-tab-indicator__content--underline {
|
|
29
|
+
border-color: var(--or-app-color8, ${unsafeCSS(DefaultColor8)})
|
|
30
|
+
}
|
|
31
|
+
.mdc-tab__ripple::before, .mdc-tab__ripple::after {
|
|
32
|
+
background-color: var(--ripplecolor, ${unsafeCSS(DefaultColor8)});
|
|
33
|
+
}
|
|
34
|
+
.mdc-tab-vertical {
|
|
35
|
+
height: 72px !important; /* 72px is original Material spec */
|
|
36
|
+
}
|
|
37
|
+
.mdc-tab-vertical__content {
|
|
38
|
+
flex-direction: column;
|
|
39
|
+
gap: 6px; /* 6px is original Material spec */
|
|
40
|
+
}
|
|
41
|
+
.mdc-tab-vertical__text-label {
|
|
42
|
+
padding-left: 0 !important;
|
|
43
|
+
}
|
|
44
|
+
`;
|
|
45
|
+
/* ----------------- */
|
|
46
|
+
let OrMwcTabs = class OrMwcTabs extends LitElement {
|
|
47
|
+
static get styles() {
|
|
48
|
+
return [unsafeCSS(tabStyle), unsafeCSS(tabBarStyle), unsafeCSS(tabIndicatorStyle), unsafeCSS(tabScrollerStyle), tabStyling];
|
|
4
49
|
}
|
|
5
|
-
|
|
6
|
-
|
|
50
|
+
constructor() {
|
|
51
|
+
super();
|
|
52
|
+
// default values
|
|
53
|
+
if (this.index == null) {
|
|
54
|
+
this.index = 0;
|
|
55
|
+
}
|
|
56
|
+
if (this.items == null) {
|
|
57
|
+
this.items = [];
|
|
58
|
+
}
|
|
59
|
+
if (this.iconPosition == null) {
|
|
60
|
+
this.iconPosition = "left";
|
|
61
|
+
}
|
|
62
|
+
if (this.noScroll == null) {
|
|
63
|
+
this.noScroll = false;
|
|
64
|
+
}
|
|
65
|
+
this.updateComplete.then(() => {
|
|
66
|
+
var _a, _b;
|
|
67
|
+
const tabBarElement = (_a = this.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector('.mdc-tab-bar');
|
|
68
|
+
if (tabBarElement != null) {
|
|
69
|
+
this.mdcTabBar = new MDCTabBar(tabBarElement); // init of material component
|
|
70
|
+
this.mdcTabBar.listen("MDCTabBar:activated", (event) => {
|
|
71
|
+
this.index = event.detail.index;
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
if (tabBarElement != null) {
|
|
75
|
+
// Adding classes for Icon top position or not.
|
|
76
|
+
if (this.iconPosition === "top") {
|
|
77
|
+
if (((_b = this.items) === null || _b === void 0 ? void 0 : _b.find((item) => { return (item.name != null && item.icon != null); })) != undefined) {
|
|
78
|
+
tabBarElement.querySelectorAll('.mdc-tab').forEach((value) => { value.classList.add('mdc-tab-vertical'); });
|
|
79
|
+
tabBarElement.querySelectorAll('.mdc-tab__content').forEach((value) => { value.classList.add('mdc-tab-vertical__content'); });
|
|
80
|
+
tabBarElement.querySelectorAll('.mdc-tab__text-label').forEach((value) => { value.classList.add('mdc-tab-vertical__text-label'); });
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
// Apply colors if set differently
|
|
84
|
+
if (this.bgColor != null) {
|
|
85
|
+
tabBarElement.querySelectorAll('.mdc-tab').forEach((value) => {
|
|
86
|
+
value.style.background = this.bgColor;
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
if (this.color != null) {
|
|
90
|
+
tabBarElement.querySelectorAll('.mdc-tab__text-label').forEach((value) => { value.style.color = this.color; });
|
|
91
|
+
tabBarElement.querySelectorAll('.mdc-tab__icon').forEach((value) => { value.style.color = this.color; });
|
|
92
|
+
tabBarElement.querySelectorAll('.mdc-tab-indicator__content--underline').forEach((value) => { value.style.borderColor = this.color; });
|
|
93
|
+
tabBarElement.querySelectorAll('.mdc-tab__ripple').forEach((value) => { value.style.setProperty('--ripplecolor', this.color); });
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
});
|
|
7
97
|
}
|
|
8
|
-
|
|
9
|
-
|
|
98
|
+
// If an update happens on either the Index or mdcTabBar object.
|
|
99
|
+
updated(changedProperties) {
|
|
100
|
+
if (changedProperties.has('index') || changedProperties.has('mdcTabBar')) {
|
|
101
|
+
if (this.mdcTabBar != null && this.index != null) {
|
|
102
|
+
this.mdcTabBar.activateTab(this.index);
|
|
103
|
+
this.dispatchEvent(new CustomEvent("activated", { detail: { index: this.index } }));
|
|
104
|
+
}
|
|
105
|
+
}
|
|
10
106
|
}
|
|
11
|
-
|
|
12
|
-
|
|
107
|
+
render() {
|
|
108
|
+
var _a;
|
|
109
|
+
let selectedItem;
|
|
110
|
+
if (this.items != null && this.index != null) {
|
|
111
|
+
selectedItem = this.items[this.index];
|
|
112
|
+
}
|
|
113
|
+
return html `
|
|
114
|
+
${typeof (this.styles) === "string" ? html `<style>${this.styles}</style>` : this.styles || ``}
|
|
115
|
+
<div>
|
|
116
|
+
<div class="mdc-tab-bar" role="tablist" id="tab-bar">
|
|
117
|
+
<div class="mdc-tab-scroller">
|
|
118
|
+
<div class="mdc-tab-scroller__scroll-area" style="overflow-x: ${this.noScroll ? 'hidden' : undefined}">
|
|
119
|
+
<div class="mdc-tab-scroller__scroll-content">
|
|
120
|
+
${(_a = this.items) === null || _a === void 0 ? void 0 : _a.map((menuItem => {
|
|
121
|
+
var _a;
|
|
122
|
+
return html `
|
|
123
|
+
<button class="mdc-tab" role="tab" aria-selected="false" tabindex="${(_a = this.items) === null || _a === void 0 ? void 0 : _a.indexOf(menuItem)}">
|
|
124
|
+
<span class="mdc-tab__content">
|
|
125
|
+
${menuItem.icon != null ? html `<or-icon icon="${menuItem.icon}" class="mdc-tab__icon"></or-icon>` : null}
|
|
126
|
+
${menuItem.name != null ? html `<span class="mdc-tab__text-label">${menuItem.name}</span>` : null}
|
|
127
|
+
</span>
|
|
128
|
+
<span class="mdc-tab-indicator">
|
|
129
|
+
<span class="mdc-tab-indicator__content mdc-tab-indicator__content--underline"></span>
|
|
130
|
+
</span>
|
|
131
|
+
<span class="mdc-tab__ripple"></span>
|
|
132
|
+
</button>
|
|
133
|
+
`;
|
|
134
|
+
}))}
|
|
135
|
+
</div>
|
|
136
|
+
</div>
|
|
137
|
+
</div>
|
|
138
|
+
</div>
|
|
139
|
+
<div>
|
|
140
|
+
<div>
|
|
141
|
+
<!-- Content of menu Item. Using either unsafeHTML or HTML depending on input type -->
|
|
142
|
+
${(selectedItem != null && selectedItem.content != null) ? (typeof selectedItem.content == "string" ? unsafeHTML(selectedItem.content) : html `${selectedItem.content}`) : undefined}
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
`;
|
|
13
147
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
</button>
|
|
45
|
-
`})}
|
|
46
|
-
</div>
|
|
47
|
-
</div>
|
|
48
|
-
</div>
|
|
49
|
-
</div>
|
|
50
|
-
<div>
|
|
51
|
-
<div>
|
|
52
|
-
<!-- Content of menu Item. Using either unsafeHTML or HTML depending on input type -->
|
|
53
|
-
${null!=e&&null!=e.content?"string"==typeof e.content?d(e.content):r`${e.content}`:void 0}
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
</div>
|
|
57
|
-
`}};__decorate([i({type:Number})],OrMwcTabs.prototype,"index",void 0),__decorate([i({type:Array})],OrMwcTabs.prototype,"items",void 0),__decorate([i({type:String})],OrMwcTabs.prototype,"iconPosition",void 0),__decorate([i({type:Boolean})],OrMwcTabs.prototype,"noScroll",void 0),__decorate([i({type:String})],OrMwcTabs.prototype,"bgColor",void 0),__decorate([i({type:String})],OrMwcTabs.prototype,"color",void 0),__decorate([i()],OrMwcTabs.prototype,"styles",void 0),__decorate([c()],OrMwcTabs.prototype,"mdcTabBar",void 0),OrMwcTabs=__decorate([l("or-mwc-tabs")],OrMwcTabs);export{OrMwcTabs};
|
|
148
|
+
};
|
|
149
|
+
__decorate([
|
|
150
|
+
property({ type: Number }) // Selected tab index from the items array
|
|
151
|
+
], OrMwcTabs.prototype, "index", void 0);
|
|
152
|
+
__decorate([
|
|
153
|
+
property({ type: Array })
|
|
154
|
+
], OrMwcTabs.prototype, "items", void 0);
|
|
155
|
+
__decorate([
|
|
156
|
+
property({ type: String })
|
|
157
|
+
], OrMwcTabs.prototype, "iconPosition", void 0);
|
|
158
|
+
__decorate([
|
|
159
|
+
property({ type: Boolean })
|
|
160
|
+
], OrMwcTabs.prototype, "noScroll", void 0);
|
|
161
|
+
__decorate([
|
|
162
|
+
property({ type: String })
|
|
163
|
+
], OrMwcTabs.prototype, "bgColor", void 0);
|
|
164
|
+
__decorate([
|
|
165
|
+
property({ type: String })
|
|
166
|
+
], OrMwcTabs.prototype, "color", void 0);
|
|
167
|
+
__decorate([
|
|
168
|
+
property() // Custom styling that gets injected in render()
|
|
169
|
+
], OrMwcTabs.prototype, "styles", void 0);
|
|
170
|
+
__decorate([
|
|
171
|
+
state()
|
|
172
|
+
], OrMwcTabs.prototype, "mdcTabBar", void 0);
|
|
173
|
+
OrMwcTabs = __decorate([
|
|
174
|
+
customElement("or-mwc-tabs")
|
|
175
|
+
], OrMwcTabs);
|
|
176
|
+
export { OrMwcTabs };
|
|
177
|
+
//# sourceMappingURL=or-mwc-tabs.js.map
|
package/lib/style.js
CHANGED
|
@@ -1,121 +1,125 @@
|
|
|
1
|
-
import{css
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
transform: rotate(
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
transform: rotate(
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
transform: rotate(
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
transform: rotate(
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
}
|
|
106
|
-
29.
|
|
107
|
-
border-left-color:
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
border-
|
|
111
|
-
}
|
|
112
|
-
64.
|
|
113
|
-
border-bottom-color:
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
border-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
1
|
+
import { css, unsafeCSS } from "lit";
|
|
2
|
+
import { DefaultColor4 } from "@openremote/core";
|
|
3
|
+
// language=CSS
|
|
4
|
+
export const progressCircular = css `
|
|
5
|
+
|
|
6
|
+
/* https://codepen.io/finnhvman/pen/bmNdNr */
|
|
7
|
+
.pure-material-progress-circular {
|
|
8
|
+
-webkit-appearance: none;
|
|
9
|
+
-moz-appearance: none;
|
|
10
|
+
appearance: none;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
border: none;
|
|
13
|
+
border-radius: 50%;
|
|
14
|
+
padding: 0.25em;
|
|
15
|
+
width: 3em;
|
|
16
|
+
height: 3em;
|
|
17
|
+
color: var(--or-app-color4, ${unsafeCSS(DefaultColor4)});
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
font-size: 16px;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.pure-material-progress-circular::-webkit-progress-bar {
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* Indeterminate */
|
|
28
|
+
.pure-material-progress-circular:indeterminate {
|
|
29
|
+
-webkit-mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
|
|
30
|
+
mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
|
|
31
|
+
animation: pure-material-progress-circular 6s infinite cubic-bezier(0.3, 0.6, 1, 1);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
:-ms-lang(x), .pure-material-progress-circular:indeterminate {
|
|
35
|
+
animation: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.pure-material-progress-circular:indeterminate::before,
|
|
39
|
+
.pure-material-progress-circular:indeterminate::-webkit-progress-value {
|
|
40
|
+
content: "";
|
|
41
|
+
display: block;
|
|
42
|
+
box-sizing: border-box;
|
|
43
|
+
margin-bottom: 0.25em;
|
|
44
|
+
border: solid 0.25em transparent;
|
|
45
|
+
border-top-color: currentColor;
|
|
46
|
+
border-radius: 50%;
|
|
47
|
+
width: 100% !important;
|
|
48
|
+
height: 100%;
|
|
49
|
+
background-color: transparent;
|
|
50
|
+
animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.pure-material-progress-circular:indeterminate::-moz-progress-bar {
|
|
54
|
+
box-sizing: border-box;
|
|
55
|
+
border: solid 0.25em transparent;
|
|
56
|
+
border-top-color: currentColor;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
width: 100%;
|
|
59
|
+
height: 100%;
|
|
60
|
+
background-color: transparent;
|
|
61
|
+
animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.pure-material-progress-circular:indeterminate::-ms-fill {
|
|
65
|
+
animation-name: -ms-ring;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@keyframes pure-material-progress-circular {
|
|
69
|
+
0% {
|
|
70
|
+
transform: rotate(0deg);
|
|
71
|
+
}
|
|
72
|
+
12.5% {
|
|
73
|
+
transform: rotate(180deg);
|
|
74
|
+
animation-timing-function: linear;
|
|
75
|
+
}
|
|
76
|
+
25% {
|
|
77
|
+
transform: rotate(630deg);
|
|
78
|
+
}
|
|
79
|
+
37.5% {
|
|
80
|
+
transform: rotate(810deg);
|
|
81
|
+
animation-timing-function: linear;
|
|
82
|
+
}
|
|
83
|
+
50% {
|
|
84
|
+
transform: rotate(1260deg);
|
|
85
|
+
}
|
|
86
|
+
62.5% {
|
|
87
|
+
transform: rotate(1440deg);
|
|
88
|
+
animation-timing-function: linear;
|
|
89
|
+
}
|
|
90
|
+
75% {
|
|
91
|
+
transform: rotate(1890deg);
|
|
92
|
+
}
|
|
93
|
+
87.5% {
|
|
94
|
+
transform: rotate(2070deg);
|
|
95
|
+
animation-timing-function: linear;
|
|
96
|
+
}
|
|
97
|
+
100% {
|
|
98
|
+
transform: rotate(2520deg);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@keyframes pure-material-progress-circular-pseudo {
|
|
103
|
+
0% {
|
|
104
|
+
transform: rotate(-30deg);
|
|
105
|
+
}
|
|
106
|
+
29.4% {
|
|
107
|
+
border-left-color: transparent;
|
|
108
|
+
}
|
|
109
|
+
29.41% {
|
|
110
|
+
border-left-color: currentColor;
|
|
111
|
+
}
|
|
112
|
+
64.7% {
|
|
113
|
+
border-bottom-color: transparent;
|
|
114
|
+
}
|
|
115
|
+
64.71% {
|
|
116
|
+
border-bottom-color: currentColor;
|
|
117
|
+
}
|
|
118
|
+
100% {
|
|
119
|
+
border-left-color: currentColor;
|
|
120
|
+
border-bottom-color: currentColor;
|
|
121
|
+
transform: rotate(225deg);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
`;
|
|
125
|
+
//# sourceMappingURL=style.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openremote/or-mwc-components",
|
|
3
|
-
"version": "1.8.0-snapshot.
|
|
3
|
+
"version": "1.8.0-snapshot.20250725120000",
|
|
4
4
|
"description": "Material Design Components packaged as web components (The official components are hardcoded to use Material Design font which has limited icons)",
|
|
5
5
|
"customElements": "custom-elements.json",
|
|
6
6
|
"main": "dist/umd/index.bundle.js",
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"@material/switch": "^9.0.0",
|
|
45
45
|
"@material/tab-bar": "^9.0.0",
|
|
46
46
|
"@material/textfield": "^9.0.0",
|
|
47
|
-
"@openremote/core": "1.8.0-snapshot.
|
|
48
|
-
"@openremote/or-icon": "1.8.0-snapshot.
|
|
49
|
-
"@openremote/or-translate": "1.8.0-snapshot.
|
|
47
|
+
"@openremote/core": "1.8.0-snapshot.20250725120000",
|
|
48
|
+
"@openremote/or-icon": "1.8.0-snapshot.20250725120000",
|
|
49
|
+
"@openremote/or-translate": "1.8.0-snapshot.20250725120000",
|
|
50
50
|
"lit": "^2.0.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@openremote/util": "1.8.0-snapshot.
|
|
53
|
+
"@openremote/util": "1.8.0-snapshot.20250725120000"
|
|
54
54
|
},
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
package/rspack.config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
const util = require("@openremote/util");
|
|
2
|
-
|
|
3
|
-
bundles = {
|
|
4
|
-
"index.bundle": undefined
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
module.exports = util.generateExports(__dirname);
|
|
1
|
+
const util = require("@openremote/util");
|
|
2
|
+
|
|
3
|
+
bundles = {
|
|
4
|
+
"index.bundle": undefined
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
module.exports = util.generateExports(__dirname);
|