Skip to content

Commit

Permalink
Add missing css imports (#80)
Browse files Browse the repository at this point in the history
* Add missing css imports

* Fix beachball config to allow entering change message

* Change files
  • Loading branch information
saskliutas committed Feb 22, 2023
1 parent 0df94a3 commit 39ca07c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-dev.yml
Expand Up @@ -40,6 +40,6 @@ jobs:
run: |
git config --local user.email imodeljs-admin@users.noreply.github.com
git config --local user.name imodeljs-admin
pnpm publish-packages-dev -y --branch ${{ github.ref_name }}
pnpm publish-packages-dev -y --branch ${{ github.ref_name }} --message "Version bump [skip actions]"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLISH_ITWIN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -35,6 +35,6 @@ jobs:
run: |
git config --local user.email imodeljs-admin@users.noreply.github.com
git config --local user.name imodeljs-admin
pnpm publish-packages -y --branch ${{ github.ref_name }}
pnpm publish-packages -y --branch ${{ github.ref_name }} --message "Version bump [skip actions]"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLISH_ITWIN }}
1 change: 0 additions & 1 deletion beachball.config.js
Expand Up @@ -22,7 +22,6 @@ module.exports = {
"pnpm-lock.yaml",
],
changehint: "Run 'pnpm change' to generate a change file",
message: "Version bump [skip actions]",
changelog: {
customRenderers: {
renderEntry: (entry) => {
Expand Down
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Fixed styles in `PresentationInstanceFilterBuilder` component.",
"packageName": "@itwin/presentation-components",
"email": "24278440+saskliutas@users.noreply.github.com",
"dependentChangeType": "patch"
}
Expand Up @@ -3,6 +3,10 @@
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/

import "@itwin/itwinui-css/css/tag.css";
import "@itwin/itwinui-css/css/inputs.css";
import "@itwin/itwinui-css/css/button.css";
import "@itwin/itwinui-css/css/menu.css";
import classnames from "classnames";
import Component, {
components, ControlProps, IndicatorProps, MenuProps, MultiValueProps, OptionProps, OptionTypeBase, Props, ValueContainerProps,
Expand Down
Expand Up @@ -3,6 +3,9 @@
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/

import "@itwin/itwinui-css/css/tag.css";
import "@itwin/itwinui-css/css/inputs.css";
import "@itwin/itwinui-css/css/menu.css";
import classnames from "classnames";
import { Children, forwardRef, useCallback, useEffect, useImperativeHandle, useRef, useState } from "react";
import {
Expand Down

0 comments on commit 39ca07c

Please sign in to comment.