Components often need to render dynamic children in specific locations in their component tree, allowing a developer to supply child content when using our component, with our component placing that child component in the proper location. To do this, you can use the Slot tag inside of your my-component. Slots are a feature of web components that are used to make the components more dynamic. It allows additional content/elements to be supplied when using the component that can then be displayed inside of the component. Components named as a dynamic data source, provide data and notify the SharePoint Framework when the data changes. Other components on the page can subscribe to notifications issued by a dynamic data source. The SharePoint Framework notifies the consumer component that the source has notified its data has changed. Vue-table-dynamic is a vue component of dynamic table. It's designed to respond to data changes in real time, and oriented to the runtime. View Demo View Github.

  1. Web Components Dynamic Slots Software
  2. Web Components Dynamic Slots Games

To bundle styles with a component, create a style sheet in the component’s folder. The style sheet must have the same name as the component. The style sheet is applied to the component automatically.

Each component can have only one style sheet. Components can’t share style sheets. Style sheets use standard CSS syntax and you can use most selectors.

Styles defined in a component’s style sheet are scoped to the component. This rule allows a component to be reused in different contexts without losing its style. It also prevents a component’s styles from overriding styles in other parts of a page.

# CSS Scoping Examples

Important

Before we go further, we need to understand naming. A component's folder and file names are camel case, myComponent, myComponent.html, and myComponent.css. In HTML markup, camelCase maps to kebab-case. When a component renders, the <template> tag is replaced with <namespace-component-name>. Note that the tag includes the component's namespace. For example, a component with the template myComponent.html in the example namespace renders as <example-my-component>. For more information about naming, see Component Bundles.

This example demonstrates how the CSS styles defined in a parent component don’t reach into a child.

Slots

There are two components cssParent and cssChild. Each component contains text in a <p> tag. The cssParent.css style sheet defines the p style as xx-large. The style applies only to the <p> tag in the parent, not to the <p> tag in the nested child.

A parent component can style a child component, but it styles it as a single element. A parent can’t reach into the DOM of a child. In the playground, add an example-css-child selector to cssParent.css that defines the background of the child component.

Tip

To access cssParent.css in the playground, scroll to the right in the left pane header and click the filename.

In a new playground, let’s style the example-css-child component from its own style sheet, cssChild.css.

A component’s style sheet can reach up and style its own element. Instead of using a example-css-child selector, use the :host selector.

Uncomment this code in cssChild.css. By targeting the host element with :host, we apply styling to <example-css-child>, from cssChild.css.

Note

The cssParent.css file in this playground doesn't include the example-css-child selector. It’s not a good practice to style components from both the component and its parent, because it can be confusing and yield unexpected results.

Deposit

The :host selector accepts an optional list of selectors. To match, the host element must have a class that matches the passed selector. To see how the :host selector works, in a new playground, let’s rewrite our sample code to look slightly more like a real app.

Style the p in the child component x-large, which is just a notch smaller than the p in the parent component. Make each item whitesmoke except the active item, which is thistle.

Right now, the child component contains just a static title, To Do Item. Add a <slot> to cssChild.html so the parent component can pass to do item text.

In the parent, add three example-css-child components and make one active. In a real app, the active component would be the selected item. Because example-css-child contains a <slot>, we can pass text for each to do item.

For more information about <slot>, see Pass Markup into Slots.

Web Components Dynamic Slots

# Share CSS Style Rules

To share CSS style rules, create a module that contains only a CSS file. Import the module into the CSS file of any Lightning web component you want to style.You can import style rules from multiple CSS modules. The imported style rules are applied to the template just like non-imported style rules. Lightning Web Components supports the CSS cascade algorithm.

Create a Lightning web component that contains only a single CSS file. This component is your CSS module.

Important

Just like with any Lightning web component, the folder name and the filename must be identical.

Import the module into the CSS file of a Lightning web component.

Imported style rules are applied to the template just like non-imported style rules. All style rules cascade. In the cssSharing.html template, the text in the <h1> tag uses the style defined in cssLibrary.css.

For more information about @import, see MDN web docs: @import. MDN lists two syntaxes: @import url and @import url list-of-media-queries. LWC doesn’t honor the list-of-media-queries.

# CSS Support and Performance Impact

The CSS scoping matches the CSS Scoping Module Level 1 standard, with a few exceptions.

  • No support for the :host-context() pseudo-class function.
  • No support for the ::slotted pseudo-element.
  • No support for ID selectors in CSS or JavaScript.

Important

LWC uses id values for accessibility only. When the template is rendered, id values are transformed into globally unique values. Don't use ID selectors in JavaScript or in CSS. If you do, the selector won’t match the transformed ID and you get an error.

Scoped CSS affects performance, so use it with care. Each selector chain is scoped, and each compound expression passed to :host() is spread into multiple selectors. This transformation increases the size and complexity of the generated CSS. These increases mean more bits on the wire, longer parsing time, and longer style recalculation time.

Web Components Dynamic Slots

Web Components Dynamic Slots Software

To ensure CSS encapsulation, each element has an extra attribute, which also increases rendering time. For example, the <example-parent> element has a example-parent_parent-host attribute.

Web Components Dynamic Slots Games

← ES ModulesComposition →