Read more now resets to collapsed when the value is changed.
This commit is contained in:
parent
1e0200facb
commit
5f909f08e9
@ -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 { IgniteElement } from "../ignite-html/ignite-element.js";
|
||||||
import { IgniteTemplate, slot, list, div, text, button } from "../ignite-html/ignite-template.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 {
|
class ReadMore extends IgniteElement {
|
||||||
constructor() {
|
constructor() {
|
||||||
@ -23,7 +22,11 @@ class ReadMore extends IgniteElement {
|
|||||||
get properties() {
|
get properties() {
|
||||||
return {
|
return {
|
||||||
limit: 125,
|
limit: 125,
|
||||||
value: null,
|
value: new IgniteProperty(null, {
|
||||||
|
onChange: (oldValue, newValue) => {
|
||||||
|
this.collapsed = true;
|
||||||
|
}
|
||||||
|
}),
|
||||||
collapsed: true,
|
collapsed: true,
|
||||||
collapsedValue: null,
|
collapsedValue: null,
|
||||||
collapseButtonClass: "btn btn-none ps-2 text-primary"
|
collapseButtonClass: "btn btn-none ps-2 text-primary"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user