mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 11:34:17 +00:00 
			
		
		
		
	* feat: implement database database service by functions * feat: define database data type * feat: basic grid store and component * feat: data communication mechanism and simple table ui. Can add new filed and update field name. * feat: add grid text cell and grid checkbox cell * feat: single select cell and multiselect cell * refactor: fix code review problems * feat: add new row * feat: fix tsc error
		
			
				
	
	
		
			21 lines
		
	
	
		
			473 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			473 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const colors = require('./style-dictionary/tailwind/colors.cjs');
 | 
						|
const boxShadow = require('./style-dictionary/tailwind/box-shadow.cjs');
 | 
						|
 | 
						|
/** @type {import('tailwindcss').Config} */
 | 
						|
module.exports = {
 | 
						|
  content: [
 | 
						|
    './index.html',
 | 
						|
    './src/**/*.{js,ts,jsx,tsx}',
 | 
						|
    './node_modules/react-tailwindcss-datepicker/dist/index.esm.js',
 | 
						|
  ],
 | 
						|
  important: '#body',
 | 
						|
  darkMode: 'class',
 | 
						|
  theme: {
 | 
						|
    extend: {
 | 
						|
      colors,
 | 
						|
      boxShadow,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  plugins: [],
 | 
						|
};
 |