@momentum-design/components 0.53.7 → 0.53.8
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/browser/index.js +1 -1
- package/dist/browser/index.js.map +2 -2
- package/dist/components/buttonsimple/buttonsimple.component.d.ts +2 -2
- package/dist/components/buttonsimple/buttonsimple.component.js +5 -14
- package/dist/custom-elements.json +764 -722
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
@@ -237,7 +237,7 @@
|
|
237
237
|
:host([size="20"]){
|
238
238
|
height: var(--mdc-button-height-size-20);
|
239
239
|
}
|
240
|
-
`,...N()],cs=cc;var ge=class extends po(le(g)){constructor(){super();this.size=Er.SIZE;this.role=Er.ROLE;this.
|
240
|
+
`,...N()],cs=cc;var ge=class extends po(le(g)){constructor(){super();this.size=Er.SIZE;this.role=Er.ROLE;this.type=Er.TYPE;this.prevTabindex=0;this.internals=this.attachInternals(),this.addEventListener("click",this.executeAction.bind(this)),this.addEventListener("keydown",this.handleKeyDown.bind(this)),this.addEventListener("keyup",this.handleKeyUp.bind(this)),this.addEventListener("blur",this.handleBlur.bind(this))}get form(){return this.internals.form}update(e){super.update(e),e.has("disabled")&&this.setDisabled(this,this.disabled),e.has("softDisabled")&&this.setSoftDisabled(this,this.softDisabled),e.has("active")&&(this.active&&(this.ariaStateKey=this.ariaStateKey||Er.ARIA_STATE_KEY),this.setActive(this,this.active))}executeAction(){this.type===Ft.SUBMIT&&this.form&&this.form.requestSubmit(),this.type===Ft.RESET&&this.form&&this.form.reset()}setActive(e,r){this.ariaStateKey&&this.ariaStateKey.split(",").filter(a=>a.trim().startsWith("aria-")).forEach(a=>{r===!0?e.setAttribute(a.trim(),"true"):r===!1?e.setAttribute(a.trim(),"false"):e.removeAttribute(a.trim())})}setSoftDisabled(e,r){r?e.setAttribute("aria-disabled","true"):e.removeAttribute("aria-disabled")}setDisabled(e,r){r?(e.setAttribute("aria-disabled","true"),this.prevTabindex=this.tabIndex,this.tabIndex=-1):(this.tabIndex===-1&&(this.tabIndex=this.prevTabindex),e.removeAttribute("aria-disabled"))}triggerClickEvent(){let e=new MouseEvent("click",{bubbles:!0,cancelable:!0,view:window});this.dispatchEvent(e)}handleBlur(){this.classList.contains("pressed")&&this.classList.remove("pressed")}handleKeyDown(e){["Enter"," "].includes(e.key)&&(this.classList.add("pressed"),e.key==="Enter"&&this.triggerClickEvent(),e.key===" "&&e.preventDefault())}handleKeyUp(e){["Enter"," "].includes(e.key)&&(this.classList.remove("pressed"),e.key===" "&&this.triggerClickEvent())}render(){return m` <slot></slot> `}};ge.formAssociated=!0,ge.styles=[...g.styles,...cs],l([c({type:Boolean,reflect:!0})],ge.prototype,"active",2),l([c({type:Boolean,attribute:"soft-disabled"})],ge.prototype,"softDisabled",2),l([c({type:Number,reflect:!0})],ge.prototype,"size",2),l([c({type:String,reflect:!0})],ge.prototype,"role",2),l([c({type:String,reflect:!0})],ge.prototype,"ariaStateKey",2),l([c({reflect:!0})],ge.prototype,"type",2);var ce=ge;var Ht=class extends ce{constructor(){super(...arguments);this.variant=Bt.VARIANT;this.label=""}connectedCallback(){super.connectedCallback(),this.disabled=void 0,this.softDisabled=void 0,this.active=void 0,this.size=Bt.SIZE,this.role=Bt.ROLE}render(){return m`
|
241
241
|
<mdc-icon part="icon" name="${ls(this.variant)}" length-unit="rem" size="1"></mdc-icon>
|
242
242
|
<mdc-text part="label" type="${Bt.TEXT_TYPE}" tagname="${Bt.TAG_NAME}">${this.label}</mdc-text>
|
243
243
|
`}};Ht.styles=[...g.styles,...ts],l([c({type:String})],Ht.prototype,"variant",2),l([c({type:String})],Ht.prototype,"label",2);var vi=Ht;var ds=f`
|