@charcoal-ui/react 3.1.1 → 3.1.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@charcoal-ui/react",
3
- "version": "3.1.1",
3
+ "version": "3.1.2-beta.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",
@@ -49,10 +49,10 @@
49
49
  "typescript": "^4.9.5"
50
50
  },
51
51
  "dependencies": {
52
- "@charcoal-ui/icons": "^3.1.1",
53
- "@charcoal-ui/styled": "^3.1.1",
54
- "@charcoal-ui/theme": "^3.1.1",
55
- "@charcoal-ui/utils": "^3.1.1",
52
+ "@charcoal-ui/icons": "^3.1.2-beta.1",
53
+ "@charcoal-ui/styled": "^3.1.2-beta.1",
54
+ "@charcoal-ui/theme": "^3.1.2-beta.1",
55
+ "@charcoal-ui/utils": "^3.1.2-beta.1",
56
56
  "@react-aria/button": "^3.7.0",
57
57
  "@react-aria/checkbox": "^3.8.0",
58
58
  "@react-aria/dialog": "^3.5.0",
@@ -88,5 +88,5 @@
88
88
  "url": "https://github.com/pixiv/charcoal.git",
89
89
  "directory": "packages/react"
90
90
  },
91
- "gitHead": "33a7278e64d0177b536edb4f43a291a319ca7e2d"
91
+ "gitHead": "2ba8dc56d9badca28dc23406ca458975f5b24b05"
92
92
  }
@@ -108,6 +108,7 @@ const DropdownButton = styled.button<{ invalid?: boolean }>`
108
108
  height: 40px;
109
109
  width: 100%;
110
110
  box-sizing: border-box;
111
+ border: none;
111
112
  cursor: pointer;
112
113
 
113
114
  ${disabledSelector} {
@@ -116,7 +117,6 @@ const DropdownButton = styled.button<{ invalid?: boolean }>`
116
117
 
117
118
  ${({ invalid }) =>
118
119
  theme((o) => [
119
- o.border.default,
120
120
  o.padding.horizontal(8),
121
121
  o.outline.default.focus,
122
122
  o.bg.surface3,
@@ -48,7 +48,7 @@ const Label = styled.label`
48
48
  `
49
49
 
50
50
  const RequiredText = styled.span`
51
- ${theme((o) => [o.typography(14), o.font.text3])}
51
+ ${theme((o) => [o.typography(14), o.font.text2])}
52
52
  `
53
53
 
54
54
  const SubLabelClickable = styled.div`