Skip to content

Commit

Permalink
fix(searchbar): fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
aesteves60 authored and dpellier committed Aug 4, 2023
1 parent 02f8440 commit 1711181
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions packages/libraries/core/src/components/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export * from './clipboard/public-api';
export * from './code/public-api';
export * from './content-addon/public-api';
export * from './flag/public-api';
export * from './form-field/public-api';
export * from './input/public-api';
export * from './location-tile/public-api';
export * from './pagination/public-api';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Component, Element, Host, h, Prop, Event, EventEmitter, Listen } from '@stencil/core';
import {
OdsButtonSize,
OdsIconName,
OdsIconSize,
OdsInputType,
OdsInputValueChangeEvent,
OdsSearchBar,
Expand All @@ -14,6 +12,7 @@ import {
} from '@ovhcloud/ods-core';
import { OdsStencilEvents, OdsStencilMethods } from '@ovhcloud/ods-stencil/libraries/stencil-core';
import { OdsThemeColorIntent } from '@ovhcloud/ods-theming';
import { ODS_ICON_NAME, ODS_ICON_SIZE } from '@ovhcloud/ods-component-icon';

/**
* @slot (unnamed) - SearchBar content
Expand Down Expand Up @@ -114,9 +113,9 @@ export class OsdsSearchBar implements OdsSearchBar<OdsStencilMethods<OdsSearchBa
contrasted={ this.contrasted }>
<osds-icon
color={ OdsThemeColorIntent.primary }
size={ OdsIconSize.sm }
size={ ODS_ICON_SIZE.sm }
contrasted={ !this.contrasted }
name={ OdsIconName.SEARCH } />
name={ ODS_ICON_NAME.SEARCH } />
</osds-button>
</Host>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/stencil/components/search-bar/src/global.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import './components';
import './global';
import { OdsLogger } from '@ovhcloud/ods-core';
import '@ovhcloud/ods-stencil/components/icon';
import '@ovhcloud/ods-component-icon';
import '@ovhcloud/ods-stencil/components/button';
import '@ovhcloud/ods-stencil/components/select';
import '@ovhcloud/ods-stencil/components/input';
Expand Down
2 changes: 1 addition & 1 deletion packages/stencil/components/search-bar/src/global.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import './global';

import '@ovhcloud/ods-stencil/components/icon';
import '@ovhcloud/ods-component-icon';
import '@ovhcloud/ods-stencil/components/button';
import '@ovhcloud/ods-stencil/components/select';
import '@ovhcloud/ods-stencil/components/input';

0 comments on commit 1711181

Please sign in to comment.