Skip to content

Commit

Permalink
chore: fix classprefix (#1303)
Browse files Browse the repository at this point in the history
* chore: fix classprefix

* feat: add new icons
  • Loading branch information
uyarn committed Aug 16, 2022
1 parent 30de0c4 commit 4d9c399
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"lodash": "^4.17.21",
"raf": "^3.4.1",
"sortablejs": "^1.15.0",
"tdesign-icons-vue": "^0.1.2",
"tdesign-icons-vue": "^0.1.4",
"tinycolor2": "^1.4.2",
"validator": "^13.5.1"
},
Expand Down Expand Up @@ -175,7 +175,7 @@
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "~7.0.2",
"rollup-plugin-vue": "^5.1.9",
"tdesign-icons-view": "^0.1.3",
"tdesign-icons-view": "^0.1.5",
"tdesign-publish-cli": "^0.0.12",
"tdesign-site-components": "^0.10.0",
"tdesign-theme-generator": "^0.3.0",
Expand Down
4 changes: 2 additions & 2 deletions src/select/optionGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export default defineComponent({
const { classPrefix } = useConfig('classPrefix');

const classes = computed<ClassName>(() => [
`${COMPONENT_NAME}-option-group`,
`${COMPONENT_NAME.value}-option-group`,
{
[sizeClassNames[tSelect.size]]: tSelect && tSelect.size,
[`${COMPONENT_NAME}-option-group__divider`]: divider,
[`${COMPONENT_NAME.value}-option-group__divider`]: divider,
},
]);
return {
Expand Down

0 comments on commit 4d9c399

Please sign in to comment.