Skip to content

Commit

Permalink
Merge pull request #1917 from Kajabi/develop
Browse files Browse the repository at this point in the history
Version Bump
  • Loading branch information
pixelflips authored Jul 31, 2024
2 parents 9d07f0b + e66bd24 commit dc726d3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ end
<%= component.generated_css_classes %>
"
size="<%= "#{component.size}" if component.size.present? %>"
<%= component.generated_html_attributes.html_safe %>
></pds-icon>
<% if component.card_color.present? %>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"sassdocs": "cd packages/sage-assets && yarn run start",
"setup": "bin/setup.sh",
"setup:init": "yarn install && yarn docs:initialize",
"start": "yarn npm-run-all --parallel build:sd watch docs storybook sassdocs",
"start": "NODE_OPTIONS=--openssl-legacy-provider yarn npm-run-all --parallel build:sd watch docs storybook sassdocs",
"storybook": "cd packages/sage-react && yarn storybook",
"test": "yarn npm-run-all test:prod:*",
"test:dev": "yarn npm-run-all test:dev:*",
Expand Down
9 changes: 8 additions & 1 deletion packages/sage-react/lib/Select/Select.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import { SageTokens } from '../configs';

export const Select = ({
className,
Expand Down Expand Up @@ -78,7 +79,13 @@ export const Select = ({
: buildOption(option, i)
))}
</select>
<i className="sage-select__arrow" aria-hidden="true" />
<pds-icon
aria-hidden="true"
class="sage-select__arrow"
color={SageTokens.COLOR_PALETTE.CHARCOAL_100}
name="caret-down"
size=""
/>
{label && (
<label htmlFor={id} className="sage-select__label">{label}</label>
)}
Expand Down

0 comments on commit dc726d3

Please sign in to comment.