@record-evolution/widget-form 1.0.32 → 1.0.34
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/dist/widget-form.d.ts +9 -0
- package/dist/widget-form.js +562 -511
- package/dist/widget-form.js.map +1 -1
- package/package.json +1 -1
- package/src/widget-form.ts +104 -12
package/dist/widget-form.d.ts
CHANGED
|
@@ -60,6 +60,15 @@ export declare class WidgetForm extends LitElement {
|
|
|
60
60
|
resolveRoute(item?: any): string | undefined;
|
|
61
61
|
cancelEdit(event: Event): void;
|
|
62
62
|
static styles: CSSResult;
|
|
63
|
+
/**
|
|
64
|
+
* Resolved background colour, for the alpha-stripping below.
|
|
65
|
+
*
|
|
66
|
+
* themeBgColor holds a var() chain so the tile tracks the host's
|
|
67
|
+
* --re-tile-background-color live, but a chain cannot be picked apart in
|
|
68
|
+
* JS. The opaque variant therefore resolves the colour here, at render
|
|
69
|
+
* time, instead of reading a value cached at the last theme change.
|
|
70
|
+
*/
|
|
71
|
+
private resolvedBgColor;
|
|
63
72
|
render(): TemplateResult<1>;
|
|
64
73
|
renderForm(): DirectiveResult<Keyed>;
|
|
65
74
|
}
|