Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
192d070
docs(badge): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
edee131
docs(banner): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
60ad322
docs(button-group): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
a6d1e4b
docs(checkbox): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
d4b7e64
docs(chip-set): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
02bf50a
docs(circular-progress): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
20b0df6
docs(code-editor): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
0309ba8
docs(dialog): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
6eef78f
docs(dynamic-label): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
ea3ac08
docs(file-dropzone): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
6f7d684
docs(file-input): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
c2e72cf
docs(file): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
557fcbc
docs(header): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
30b17d7
docs(help): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
3cbc506
docs(helper-line): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
7896aaa
docs(info-tile): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
023c832
docs(linear-progress): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
0c71746
docs(list): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
0c448cb
docs(select): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
33595ca
docs(shortcut): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
35e0db1
docs(snackbar): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
08e6fc9
docs(spinner): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
419b282
docs(switch): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
5f1052c
docs(tab-bar): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
61d1907
docs(tab-panel): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
8e5e4cf
docs(table): rename basic example filename and tag name
adrianschmidt-bot Mar 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/badge/badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { abbreviate } from './format';
* The Badge component can be used to display a notification badge,
* optionally with a number or a text label.
*
* @exampleComponent limel-example-badge
* @exampleComponent limel-example-badge-basic
* @exampleComponent limel-example-badge-number
* @exampleComponent limel-example-badge-string
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:host(limel-example-badge) {
:host(limel-example-badge-basic) {
--badge-background-color: rgb(var(--color-red-default));
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import { Component, h } from '@stencil/core';
*:::
*/
@Component({
tag: 'limel-example-badge',
styleUrl: 'badge.scss',
tag: 'limel-example-badge-basic',
styleUrl: 'badge-basic.scss',
shadow: true,
})
export class BadgeExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/banner/banner.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, h, Method, Prop, State } from '@stencil/core';

/**
* @exampleComponent limel-example-banner
* @exampleComponent limel-example-banner-basic
* @slot buttons - Buttons to show in the banner
*/
@Component({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Component, Element, h, State } from '@stencil/core';

@Component({
tag: 'limel-example-banner',
tag: 'limel-example-banner-basic',
shadow: true,
styleUrl: 'banner.scss',
styleUrl: 'banner-basic.scss',
})
export class BannerExample {
@Element()
private host: HTMLLimelExampleBannerElement;
private host: HTMLLimelExampleBannerBasicElement;

@State()
private disabled = false;
Expand Down
2 changes: 1 addition & 1 deletion src/components/button-group/button-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { createRandomString } from '../../util/random-string';
* inherits its width from its content.
*
* @exampleComponent limel-example-button-group-icons
* @exampleComponent limel-example-button-group
* @exampleComponent limel-example-button-group-basic
* @exampleComponent limel-example-button-group-mix
* @exampleComponent limel-example-button-group-badges
* @exampleComponent limel-example-button-group-composite
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Button, LimelButtonGroupCustomEvent } from '@limetech/lime-elements';
* descriptive enough.
*/
@Component({
tag: 'limel-example-button-group',
tag: 'limel-example-button-group-basic',
shadow: true,
})
export class ButtonGroupExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/checkbox/checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { Label } from '../dynamic-label/label.types';
* But there is an important difference between the two! Please read our guidelines about
* [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
*
* @exampleComponent limel-example-checkbox
* @exampleComponent limel-example-checkbox-basic
* @exampleComponent limel-example-checkbox-helper-text
* @exampleComponent limel-example-checkbox-readonly
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:host(limel-example-checkbox) {
:host(limel-example-checkbox-basic) {
display: flex;
flex-direction: column;
gap: 1rem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Component, h, State } from '@stencil/core';

@Component({
tag: 'limel-example-checkbox',
tag: 'limel-example-checkbox-basic',
shadow: true,
styleUrl: 'checkbox.scss',
styleUrl: 'checkbox-basic.scss',
})
export class CheckboxExample {
@State()
Expand Down
2 changes: 1 addition & 1 deletion src/components/chip-set/chip-set.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import { createRandomString } from '../../util/random-string';
* ```
* :::
*
* @exampleComponent limel-example-chip-set
* @exampleComponent limel-example-chip-set-basic
* @exampleComponent limel-example-chip-set-choice
* @exampleComponent limel-example-chip-set-filter
* @exampleComponent limel-example-chip-set-filter-badge
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Component, h, Host, State } from '@stencil/core';
* [limel-button-group](#/component/limel-button-group/).
*/
@Component({
tag: 'limel-example-chip-set',
tag: 'limel-example-chip-set-basic',
shadow: true,
})
export class ChipSetExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/circular-progress/circular-progress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PERCENT = 100;
* full progress.
* :::
*
* @exampleComponent limel-example-circular-progress
* @exampleComponent limel-example-circular-progress-basic
* @exampleComponent limel-example-circular-progress-sizes
* @exampleComponent limel-example-circular-progress-props
* @exampleComponent limel-example-circular-progress-css-variables
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Component, h, State } from '@stencil/core';

@Component({
shadow: true,
tag: 'limel-example-circular-progress',
styleUrl: 'circular-progress.scss',
tag: 'limel-example-circular-progress-basic',
styleUrl: 'circular-progress-basic.scss',
})
export class CircularProgressExample {
@State()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Component, h, State } from '@stencil/core';
@Component({
shadow: true,
tag: 'limel-example-circular-progress-percentage-colors',
styleUrl: 'circular-progress.scss',
styleUrl: 'circular-progress-basic.scss',
})
export class CircularProgressPercentageColorsExample {
@State()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Component, h } from '@stencil/core';
@Component({
shadow: true,
tag: 'limel-example-circular-progress-props',
styleUrl: 'circular-progress.scss',
styleUrl: 'circular-progress-basic.scss',
})
export class CircularProgressPropsExample {
private degree = 45;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { Component, h } from '@stencil/core';
@Component({
shadow: true,
tag: 'limel-example-circular-progress-sizes',
styleUrl: 'circular-progress.scss',
styleUrl: 'circular-progress-basic.scss',
})
export class CircularProgressSizesExample {
private value = 92.6;
Expand Down
2 changes: 1 addition & 1 deletion src/components/code-editor/code-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { Languages } from '../date-picker/date.types';
type CopyState = 'idle' | 'success' | 'failed';

/**
* @exampleComponent limel-example-code-editor
* @exampleComponent limel-example-code-editor-basic
* @exampleComponent limel-example-code-editor-readonly-with-line-numbers
* @exampleComponent limel-example-code-editor-fold-lint-wrap
* @exampleComponent limel-example-code-editor-copy
Expand Down
3 changes: 3 additions & 0 deletions src/components/code-editor/examples/code-editor-basic.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:host {
--code-editor-max-height: 20rem;
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import { data } from '../../table/examples/birds';
*/

@Component({
tag: 'limel-example-code-editor',
tag: 'limel-example-code-editor-basic',
shadow: true,
styleUrl: 'code-editor.scss',
styleUrl: 'code-editor-basic.scss',
})
export class CodeExample {
@State()
Expand Down
2 changes: 1 addition & 1 deletion src/components/dialog/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { createRandomString } from '../../util/random-string';
* from Lime Web Components to open dialogs in Lime CRM.
* :::
*
* @exampleComponent limel-example-dialog
* @exampleComponent limel-example-dialog-basic
* @exampleComponent limel-example-dialog-nested-close-events
* @exampleComponent limel-example-dialog-heading
* @exampleComponent limel-example-dialog-heading-actions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, h, State } from '@stencil/core';

@Component({
tag: 'limel-example-dialog',
tag: 'limel-example-dialog-basic',
shadow: true,
})
export class DialogExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/dynamic-label/dynamic-label.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { Icon } from '../../interface';
* provide the best way of _visualizing information_, potentially leading to
* confusion and negatively affecting the end-users' experience.
*
* @exampleComponent limel-example-dynamic-label
* @exampleComponent limel-example-dynamic-label-basic
* @exampleComponent limel-example-dynamic-label-readonly-boolean
*/
@Component({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Component, State, h } from '@stencil/core';
* while the default label (including its icon) is ignored.
*/
@Component({
tag: 'limel-example-dynamic-label',
tag: 'limel-example-dynamic-label-basic',
shadow: true,
})
export class DynamicLabelExample {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { Component, h, State } from '@stencil/core';
* Basic example
*/
@Component({
tag: 'limel-example-file-dropzone',
tag: 'limel-example-file-dropzone-basic',
shadow: true,
styleUrl: 'file-dropzone.scss',
styleUrl: 'file-dropzone-basic.scss',
})
export class FileDropzoneExample {
@State()
Expand Down
2 changes: 1 addition & 1 deletion src/components/file-dropzone/file-dropzone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { partition } from 'lodash-es';
* The event detail would be an array of `FileInfo` objects,
* each representing a file dropped into the dropzone.
*
* @exampleComponent limel-example-file-dropzone
* @exampleComponent limel-example-file-dropzone-basic
* @exampleComponent limel-example-file-dropzone-type-filtering
* @private
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Component, h, State } from '@stencil/core';
* Basic example
*/
@Component({
tag: 'limel-example-file-input',
tag: 'limel-example-file-input-basic',
shadow: true,
})
export class FileInputExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/file-input/file-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { createFileInfo } from '../../util/files';
* The event detail would be an array of `FileInfo` objects,
* each representing a file dropped into the dropzone.
*
* @exampleComponent limel-example-file-input
* @exampleComponent limel-example-file-input-basic
* @exampleComponent limel-example-file-input-type-filtering
* @private
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Component, h, State } from '@stencil/core';
* Basic example
*/
@Component({
tag: 'limel-example-file',
tag: 'limel-example-file-basic',
shadow: true,
})
export class FileExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/file/file.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const DEFAULT_FILE_CHIP: Chip = {
* and similar phrases...
* :::
*
* @exampleComponent limel-example-file
* @exampleComponent limel-example-file-basic
* @exampleComponent limel-example-file-custom-icon
* @exampleComponent limel-example-file-menu-items
* @exampleComponent limel-example-file-accepted-types
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Component, h } from '@stencil/core';
*/

@Component({
tag: 'limel-example-header',
tag: 'limel-example-header-basic',
shadow: true,
})
export class HeaderExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { getIconName } from '../icon/get-icon-props';
* and take a lot of attention from users.
* :::
*
* @exampleComponent limel-example-header
* @exampleComponent limel-example-header-basic
* @exampleComponent limel-example-header-slot-actions
* @exampleComponent limel-example-header-colors
* @exampleComponent limel-example-header-responsive
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const markdown = `
* providing a richer experience for the user.
*/
@Component({
tag: 'limel-example-help',
tag: 'limel-example-help-basic',
shadow: true,
})
export class HelpExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/help/help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Link } from '../../global/shared-types/link.types';
* of an app more effortlessly, minimizes the learning curve,
* transforming complex features into accessible opportunities for exploration.
*
* @exampleComponent limel-example-help
* @exampleComponent limel-example-help-basic
* @exampleComponent limel-example-read-more
* @exampleComponent limel-example-open-direction
* @exampleComponent limel-example-placement
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Component, h } from '@stencil/core';
* Basic example
*/
@Component({
tag: 'limel-example-helper-line',
tag: 'limel-example-helper-line-basic',
shadow: true,
})
export class HelperLineExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/helper-line/helper-line.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Component, Host, Prop, h } from '@stencil/core';
* Also this enables us to open the helper line in limel-portal,
* more easily without having to send the styles to the portal.
*
* @exampleComponent limel-example-helper-line
* @exampleComponent limel-example-helper-line-basic
* @exampleComponent limel-example-helper-line-invalid
* @exampleComponent limel-example-helper-line-long-text
* @exampleComponent limel-example-helper-line-long-text-no-counter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import { Component, h } from '@stencil/core';
* :::
*/
@Component({
tag: 'limel-example-info-tile',
tag: 'limel-example-info-tile-basic',
shadow: true,
styleUrl: 'info-tile.scss',
styleUrl: 'info-tile-basic.scss',
})
export class InfoTileExample {
public render() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { chartItems } from '../../chart/examples/chart-items-stack';
@Component({
tag: 'limel-example-info-tile-primary-slot',
shadow: true,
styleUrl: 'info-tile.scss',
styleUrl: 'info-tile-basic.scss',
})
export class InfoTilePrimarySlotExample {
public render() {
Expand Down
2 changes: 1 addition & 1 deletion src/components/info-tile/info-tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { getRel } from '../../util/link-helper';
* a new screen or web page, you need to provide a URL,
* using the `link` property.
*
* @exampleComponent limel-example-info-tile
* @exampleComponent limel-example-info-tile-basic
* @exampleComponent limel-example-info-tile-badge
* @exampleComponent limel-example-info-tile-progress
* @exampleComponent limel-example-info-tile-loading
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const FRACTION = 100;
*/
@Component({
shadow: true,
tag: 'limel-example-linear-progress',
tag: 'limel-example-linear-progress-basic',
})
export class LinearProgressExample {
@State()
Expand Down
2 changes: 1 addition & 1 deletion src/components/linear-progress/linear-progress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const PERCENT = 100;
* The linear progress component can be used to visualize the current state of a progress in a scale;
* for example percentage of completion of a task.
*
* @exampleComponent limel-example-linear-progress
* @exampleComponent limel-example-linear-progress-basic
* @exampleComponent limel-example-linear-progress-indeterminate
* @exampleComponent limel-example-linear-progress-accessible-label
* @exampleComponent limel-example-linear-progress-color
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Component, h } from '@stencil/core';
* Basic list
*/
@Component({
tag: 'limel-example-list',
tag: 'limel-example-list-basic',
shadow: true,
})
export class ListExample {
Expand Down
2 changes: 1 addition & 1 deletion src/components/list/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { ListRendererConfig } from './list-renderer-config';
const { ACTION_EVENT } = listStrings;

/**
* @exampleComponent limel-example-list
* @exampleComponent limel-example-list-basic
* @exampleComponent limel-example-list-secondary
* @exampleComponent limel-example-list-separator
* @exampleComponent limel-example-list-icons
Expand Down
Loading
Loading