sprintify-ui 0.6.43 → 0.6.44

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.
@@ -1,4 +1,4 @@
1
- export default (theme) => {
1
+ module.exports = function (theme) {
2
2
  return {
3
3
  // Button
4
4
  '.btn': {
@@ -1,9 +1,9 @@
1
1
  const plugin = require('tailwindcss/plugin');
2
- const theme = require('./theme').default;
2
+ const theme = require('./theme');
3
3
 
4
- const button = require('./button').default;
5
- const overlay = require('./overlay').default;
6
- const input = require('./input').default;
4
+ const button = require('./button');
5
+ const overlay = require('./overlay');
6
+ const input = require('./input');
7
7
 
8
8
  const config = {
9
9
  theme: theme
@@ -1,7 +1,6 @@
1
1
  const { parseColor } = require("tailwindcss/lib/util/color");
2
2
 
3
-
4
- export default (theme) => {
3
+ module.exports = function (theme) {
5
4
 
6
5
  const blueColor = parseColor(theme('colors.blue.600')).color.join(", ");
7
6
  const redColor = parseColor(theme('colors.red.600')).color.join(", ");
@@ -1,4 +1,4 @@
1
- export default (theme) => {
1
+ module.exports = function (theme) {
2
2
  return {
3
3
  '.overlay': {
4
4
  position: 'absolute',
@@ -1,4 +1,4 @@
1
- export default {
1
+ module.exports = {
2
2
  extend: {
3
3
  spacing: {
4
4
  'control-xs': '1.65rem',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.43",
3
+ "version": "0.6.44",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",