Read more now resets to collapsed when the value is changed.

This commit is contained in:
Matt Mo 2022-12-17 09:29:45 -08:00
parent 1e0200facb
commit 5f909f08e9

View File

@ -1,7 +1,6 @@
import { IgniteHtml } from '../ignite-html/ignite-html.js';
import { IgniteHtml, IgniteProperty } from '../ignite-html/ignite-html.js';
import { IgniteElement } from "../ignite-html/ignite-element.js";
import { IgniteTemplate, slot, list, div, text, button } from "../ignite-html/ignite-template.js";
import { IgniteProperty } from "../ignite-html/ignite-html.js";
class ReadMore extends IgniteElement {
constructor() {
@ -23,7 +22,11 @@ class ReadMore extends IgniteElement {
get properties() {
return {
limit: 125,
value: null,
value: new IgniteProperty(null, {
onChange: (oldValue, newValue) => {
this.collapsed = true;
}
}),
collapsed: true,
collapsedValue: null,
collapseButtonClass: "btn btn-none ps-2 text-primary"