@spothero/ui 14.7.6 → 14.8.0-beta.0
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/CHANGELOG.md +5 -0
- package/CHANGELOG.tmp +3 -4
- package/package.json +1 -1
- package/styles/v2/components/Button/Button.styles.js +0 -47
- package/v1/index-bundled.cjs.js +1 -1
- package/v1/index-bundled.cjs.js.map +1 -1
- package/v1/index-bundled.esm.js +1 -1
- package/v1/index-bundled.esm.js.map +1 -1
- package/v1/index-unbundled.cjs.js +35 -35
- package/v1/index-unbundled.esm.js +35 -35
- package/v2/index-bundled.cjs.js +1 -1
- package/v2/index-bundled.cjs.js.map +1 -1
- package/v2/index-bundled.esm.js +1 -1
- package/v2/index-bundled.esm.js.map +1 -1
- package/v2/index-unbundled.cjs.js +154 -201
- package/v2/index-unbundled.cjs.js.map +1 -1
- package/v2/index-unbundled.esm.js +154 -201
- package/v2/index-unbundled.esm.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
# 14.8.0-beta.0 - 05/18/2022
|
|
2
|
+
|
|
3
|
+
## New Features
|
|
4
|
+
* [[f1f7a8a](https://github.com/spothero/fe-ui/commit/f1f7a8a)] - Removed textButton and textButtonOnDark from fe-ui. Also removed underline for now (Max Rashes)
|
|
5
|
+
|
|
1
6
|
# 14.7.6 - 05/18/2022
|
|
2
7
|
|
|
3
8
|
## Miscellaneous Updates
|
package/CHANGELOG.tmp
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
# 14.
|
|
1
|
+
# 14.8.0-beta.0 - 05/18/2022
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
* [[
|
|
5
|
-
* `fix:` Removed icon from select component to fix rollup issues
|
|
3
|
+
## New Features
|
|
4
|
+
* [[f1f7a8a](https://github.com/spothero/fe-ui/commit/f1f7a8a)] - Removed textButton and textButtonOnDark from fe-ui. Also removed underline for now (Max Rashes)
|
|
6
5
|
|
package/package.json
CHANGED
|
@@ -93,56 +93,11 @@ export const variants = {
|
|
|
93
93
|
boxShadow: '0 0 0 3px rgba(255, 255, 255, 0.7)',
|
|
94
94
|
},
|
|
95
95
|
},
|
|
96
|
-
textButton: {
|
|
97
|
-
bg: 'none',
|
|
98
|
-
borderWidth: 'none',
|
|
99
|
-
borderRadius: 'unset',
|
|
100
|
-
color: 'primary.default',
|
|
101
|
-
h: 'unset',
|
|
102
|
-
m: 'unset',
|
|
103
|
-
minW: 'unset',
|
|
104
|
-
p: 'unset',
|
|
105
|
-
lineHeight: 1,
|
|
106
|
-
_disabled: {
|
|
107
|
-
bg: 'none',
|
|
108
|
-
color: 'gray.dark',
|
|
109
|
-
},
|
|
110
|
-
_hover: {
|
|
111
|
-
color: 'primary.700',
|
|
112
|
-
_disabled: {
|
|
113
|
-
color: 'gray.dark',
|
|
114
|
-
},
|
|
115
|
-
},
|
|
116
|
-
},
|
|
117
|
-
textButtonOnDark: {
|
|
118
|
-
bg: 'none',
|
|
119
|
-
borderRadius: 'unset',
|
|
120
|
-
borderWidth: 'none',
|
|
121
|
-
color: 'white',
|
|
122
|
-
h: 'unset',
|
|
123
|
-
m: 'unset',
|
|
124
|
-
minW: 'unset',
|
|
125
|
-
p: 'unset',
|
|
126
|
-
_disabled: {
|
|
127
|
-
bg: 'none',
|
|
128
|
-
color: 'white',
|
|
129
|
-
opacity: '.7',
|
|
130
|
-
},
|
|
131
|
-
_hover: {
|
|
132
|
-
color: 'white',
|
|
133
|
-
opacity: '.8',
|
|
134
|
-
_disabled: {
|
|
135
|
-
opacity: '.7',
|
|
136
|
-
},
|
|
137
|
-
},
|
|
138
|
-
},
|
|
139
96
|
tertiary: {
|
|
140
97
|
bg: 'none',
|
|
141
98
|
borderWidth: 'none',
|
|
142
99
|
borderRadius: 'unset',
|
|
143
100
|
color: 'primary.default',
|
|
144
|
-
textDecoration: 'underline',
|
|
145
|
-
textUnderlineOffset: '1px',
|
|
146
101
|
h: 'unset',
|
|
147
102
|
m: 'unset',
|
|
148
103
|
minW: 'unset',
|
|
@@ -164,8 +119,6 @@ export const variants = {
|
|
|
164
119
|
borderRadius: 'unset',
|
|
165
120
|
borderWidth: 'none',
|
|
166
121
|
color: 'white',
|
|
167
|
-
textDecoration: 'underline',
|
|
168
|
-
textUnderlineOffset: '1px',
|
|
169
122
|
h: 'unset',
|
|
170
123
|
m: 'unset',
|
|
171
124
|
minW: 'unset',
|