Skip to content

Commit

Permalink
Reworked refs to warning and error icons
Browse files Browse the repository at this point in the history
  • Loading branch information
iancharlesdouglas committed Apr 22, 2024
1 parent 347075b commit 661c2e1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
(The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).)

## [0.0.20](https://github.com/iancharlesdouglas/carbon-icons-qwik/releases/tag/0.0.20) - 2024-04-22
## [0.0.21](https://github.com/iancharlesdouglas/carbon-icons-qwik/releases/tag/0.0.21) - 2024-04-22
|Added|Fixed|Changed|Removed|
|-|-|-|-|
|Embedded source components for certain Carbon icons|-|-|References to carbon-icons-qwik icons|
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "carbon-components-qwik",
"version": "0.0.20",
"version": "0.0.21",
"description": "Carbon Design System components implemented as Qwik components",
"license": "Apache-2.0",
"main": "./lib/index.qwik.mjs",
Expand Down
3 changes: 2 additions & 1 deletion src/components/dropdown/dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { formContext } from '../../internal/contexts/form-context';
import classNames from 'classnames';
import { ListBox } from '../list-box/list-box';
import { ListBoxDimensions, ListBoxMenu } from '../list-box/list-box-menu';
import { WarningAltFilled, WarningFilled } from 'carbon-icons-qwik';
import { ListBoxMenuIcon } from '../list-box/list-box-menu-icon';
import { ListBoxMenuItem } from '../list-box/list-box-menu-item';
import { ComboboxState, qombobox } from '../../internal/qombobox/qombobox';
Expand All @@ -25,6 +24,8 @@ import { removeProps } from '../../internal/objects/remove-props';
import { itemsEqual } from '../../internal/qombobox/items-equal';
import { itemDisabled } from '../../internal/qombobox/item-disabled';
import { Checkmark } from '../../internal/icons/checkmark';
import { WarningFilled } from '../../internal/icons/warning--filled';
import { WarningAltFilled } from '../../internal/icons/warning--alt--filled';

/**
* Listbox item that has a label
Expand Down
3 changes: 2 additions & 1 deletion src/components/multi-select/multi-select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { formContext } from '../../internal/contexts/form-context';
import classNames from 'classnames';
import { ListBox } from '../list-box/list-box';
import { ListBoxDimensions, ListBoxMenu } from '../list-box/list-box-menu';
import { WarningAltFilled, WarningFilled } from 'carbon-icons-qwik';
import { ListBoxMenuIcon } from '../list-box/list-box-menu-icon';
import { ComboboxState, qombobox } from '../../internal/qombobox/qombobox';
import { Keys, handleKeyDown } from '../../internal/qombobox/handle-keydown';
Expand All @@ -26,6 +25,8 @@ import { CompareItems, SortItems, SortOptions, defaultCompareItems$, defaultSort
import { ListBoxSelection } from '../list-box/list-box-selection';
import { MultiSelectMenuItem } from './multi-select-menu-item';
import { toggleItemSelected$ } from './toggle-item-selected';
import { WarningFilled } from '../../internal/icons/warning--filled';
import { WarningAltFilled } from '../../internal/icons/warning--alt--filled';

/**
* Multi-select, a select-only combobox with multiple selection via checkboxes
Expand Down
4 changes: 3 additions & 1 deletion src/components/text-input/text-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ import { usePrefix } from '../../internal/hooks/use-prefix';
import { useNormalizedInputProps } from '../../internal/hooks/use-normalized-input-props';
import classNames from 'classnames';
import { formContext } from '../../internal/contexts/form-context';
import { IconProps, WarningAltFilled, WarningFilled } from 'carbon-icons-qwik';
import { IconProps } from 'carbon-icons-qwik';
import { uniqueId } from '../../internal/unique/unique-id';
import { removeProps } from '../../internal/objects/remove-props';
import { WarningFilled } from '../../internal/icons/warning--filled';
import { WarningAltFilled } from '../../internal/icons/warning--alt--filled';

/**
* Text input component size
Expand Down

0 comments on commit 661c2e1

Please sign in to comment.