Skip to content

Commit affce5b

Browse files
committed
fix: exports
1 parent 2cfb628 commit affce5b

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"focus-trap": "^7.2.0",
117117
"focus-trap-vue": "^4.0.1",
118118
"husky": "^8.0.3",
119-
"indexit": "2.0.1",
119+
"indexit": "beta",
120120
"madge": "^6.0.0",
121121
"react": "^18.2.0",
122122
"react-dom": "^18.2.0",

src/helpers/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ export { copy } from "./copy.js"
77
export { NotificationHandler } from "./NotificationHandler.js"
88
export { parseClasses } from "./parseClasses.js"
99
export { setGlobalCssVars } from "./globalCssVars.js"
10-
export { theme } from "./theme.js"
1110
export { vModel } from "./vModel.js"

src/helpers/theme.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -160,37 +160,36 @@ export const defaultTheme = {
160160
opacity5: new Color(0, 0, 0, 0.5),
161161
// bg: new Color(10, 10, 10, 1),
162162
bg: new Color(253, 253, 253, 1),
163-
bgNormal: "var(--cGray1)",
163+
bgElement: "var(--cGray1)",
164164
bgFocused: "var(--cBlue2)",
165165
bgHover: "var(--cBlue1)",
166166
bgDisabled: "var(--cGray1)",
167167
bgTableRow: "var(--cGray1)",
168-
textNormal: "var(--cGray8)",
168+
textDefault: "var(--cGray8)",
169169
textSecondary: "var(--cGray6)",
170170
textFocused: "var(--cBlue6)",
171171
textDisabled: "var(--cGray5)",
172172
textPlaceholder: "var(--cGray5)",
173173
textPlaceholderFocused: "var(--cGray3)",
174174
textActive: "var(--cGray6)",
175-
textHover: "var(--cBlue6)",
176175
textLink: "var(--cBlue7)",
177176
textLinkFocused: "var(--cBlue5)",
178177
textLinkVisited: "var(--cPurple6)",
179178
textShadowWidth: new Unit(1, "px"),
180179
textShadowHover: "var(--cGray3)",
181180
borderFocused: "var(--cBlue5)",
182181
borderSoftFocused: "var(--cBlue3)",
183-
borderNormal: "var(--cGray4)",
182+
borderDefault: "var(--cGray4)",
184183
borderDark: "var(--cGray8)",
185-
borderNormalSoft: "var(--cGray3)",
184+
borderSoft: "var(--cGray3)",
186185
borderDisabled: "var(--cGray3)",
187186
borderActive: "var(--cGray3)",
188187
borderHover: "var(--cGray3)",
189188
borderWidth: new Unit(1, "px"),
190189
borderWidthDark: new Unit(2, "px"),
191190
borderRadius: new Unit(5, "px"),
192191
shadowWidth: new Unit(2, "px"),
193-
shadowRegular: "var(--cGray3)",
192+
shadowDefault: "var(--cGray3)",
194193
shadowActive: "var(--cGray4)",
195194
shadowHover: "var(--cGray5)",
196195
shadowFocused: "var(--cBlue2)",
@@ -202,7 +201,7 @@ export const defaultTheme = {
202201
paddingXL: new Unit(1.5, "rem"),
203202
anim: new Unit(0.2, "s"),
204203
fontSizeSmall: new Unit(0.8, "rem"),
205-
fontSizeNormal: new Unit(1, "rem"),
204+
fontSizeMedium: new Unit(1, "rem"),
206205
fontSizeLarge: new Unit(1.5, "rem"),
207206
fontLineHeight: new Unit(1.2, ""),
208207
fontFamily: "Arial, Helvetica, sans-serif",

0 commit comments

Comments
 (0)