Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ai button and color palette bring their own items #10517

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions packages/ai/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Provides web components implementing AI-related visual and interaction.
| Web Component | Tag name | Module import |
|--------------------------|--------------------------------|---------------------------------------------------------|
| Button | `ui5-ai-button` | `import "@ui5/webcomponents-ai/dist/Button.js";` |
| Button State | `ui5-ai-button-state` | comes with `ui5-ai-button` |
| PromptInput | `ui5-ai-prompt-input` | `import "@ui5/webcomponents-ai/dist/PromptInput.js";` |

## Provided assets
Expand Down
1 change: 1 addition & 0 deletions packages/ai/src/Button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import jsxRenderer from "@ui5/webcomponents-base/dist/renderer/JsxRenderer.js";
import type SplitButton from "@ui5/webcomponents/dist/SplitButton.js";
import type ButtonDesign from "@ui5/webcomponents/dist/types/ButtonDesign.js";
import type ButtonState from "./ButtonState.js";
import "./ButtonState.js";

import ButtonTemplate from "./ButtonTemplate.js";

Expand Down
2 changes: 1 addition & 1 deletion packages/main/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Provides general purpose UI building blocks such as buttons, labels, inputs and
| Checkbox | `ui5-checkbox` | `import "@ui5/webcomponents/dist/CheckBox.js";` |
| Color Palette | `ui5-color-palette` | `import "@ui5/webcomponents/dist/ColorPalette.js";` |
| Color Palette Item | `ui5-color-palette-item` | comes with `ui5-color-palette` |
| Color Palette Popover | `ui5-color-palette-popover` | comes with `ui5-color-palette-popover` |
| Color Palette Popover | `ui5-color-palette-popover` | `import "@ui5/webcomponents/dist/ColorPalettePopover.js";` |
| Color Picker | `ui5-color-picker` | `import "@ui5/webcomponents/dist/ComboPicker.js";` |
| ComboBox | `ui5-combobox` | `import "@ui5/webcomponents/dist/ComboBox.js";` |
| ComboBox Item | `ui5-cb-item` | comes with `ui5-combobox` |
Expand Down
1 change: 1 addition & 0 deletions packages/main/src/ColorPalette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import type Button from "./Button.js";
import type Dialog from "./Dialog.js";
import type ColorPaletteMoreColors from "./features/ColorPaletteMoreColors.js";
import type ColorPicker from "./ColorPicker.js";
import "./ColorPaletteItem.js";

import {
COLORPALETTE_CONTAINER_LABEL,
Expand Down
Loading