0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

LWC コーディングサンプル

Posted at

image.png

調べてみると似たような現象の解説がありますね。

LWCでテーブルの行コンポーネントがうまく表示されなかったので、display:table-row;した
https://zenn.dev/hrk623/articles/fa0770aabccb26

image.png

以下に回避策が説明されています。参考になると思います。

Is attribute 'allowfullscreen' of iframe unavailable in Lightning component?
https://salesforce.stackexchange.com/questions/161892/is-attribute-allowfullscreen-of-iframe-unavailable-in-lightning-component

lwc:if={!condition}と思ったのですが... 違うみたいですね。
何やらサポートされて無さそうな感じです。

what if we want to render if the flag is false? i am trying to set it lwc:if={!condition} OR lwc:if={condition == false} but it does not work

You will have to create yet another getter function in JavaScript.

https://salesforce.stackexchange.com/questions/327591/is-it-possible-to-use-expressions-in-iftrue-or-iffalse-tag-in-lwc

Complex expressions like !condition or object?.property?.condition aren’t supported. To evaluate complex expressions, use a getter in your JavaScript class.

https://www.apexhours.com/conditional-rendering-in-lwc-using-lwcif-and-lwcelse/

Lightning Design Systemを見てみると、Step 1 - Activeのテキスト文字のところの属性がslds-assistive-textとして定義されているので、でも同じかもしれません。

https://www.lightningdesignsystem.com/components/progress-indicator/

<div class="slds-progress">
  <ol class="slds-progress__list">
    <li class="slds-progress__item slds-is-active">
      <div class="slds-progress__marker" tabindex="0">
        <span class="slds-assistive-text">Step 1 - Active</span>
      </div>
    </li>
    <li class="slds-progress__item">
      <div class="slds-progress__marker" tabindex="0">
        <span class="slds-assistive-text">Step 2 </span>
      </div>
    </li>

slds-assistive-text、スクリーン リーダーが非表示のテキストを読み取れるようになります。このクラスは通常、テキストの代わりに画像を表示するアイコンやその他の UI 要素に使用されます。

https://www.lightningdesignsystem.com/utilities/visibility/

色を変えたいという質問があるのですが、回答としては独自にコンポーネントを作ることを提案されているので今回も独自コンポーネントになるのではないでしょうか。

How to change the color of lightning-progress-indicator for type="path"

https://salesforce.stackexchange.com/questions/407575/how-to-change-the-color-of-lightning-progress-indicator-for-type-path

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?