@edu-tosel/design 0.1.6 → 0.1.8

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,6 +1,6 @@
1
1
  import "../globals.css";
2
2
  export declare function TableCard({ data, fields, sizes, options, }: {
3
- data: Record<string, string>[];
3
+ data: Record<string, string | number>[];
4
4
  fields: Record<string, string>;
5
5
  sizes: Record<string, string>;
6
6
  options?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edu-tosel/design",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "UI components for International TOSEL Committee",
5
5
  "keywords": [
6
6
  "jsx",
@@ -1,10 +1,9 @@
1
- import tailwindcss from "tailwindcss";
2
- import tailwindScrollbarHide from "tailwind-scrollbar-hide";
3
1
  import tailwindcssAnimate from "tailwindcss-animate";
2
+ import type { Config } from "tailwindcss";
3
+
4
4
  // import twElements from "tw-elements/dist/plugin";
5
5
  // import tailwindcssDirectionalShadows from "tailwindcss-directional-shadows";
6
6
 
7
- /** @type {import('tailwindcss').Config} */
8
7
  export default {
9
8
  content: [
10
9
  // "./node_modules/tw-elements/dist/js/**/*.js",
@@ -238,6 +237,7 @@ export default {
238
237
  2700: "2700ms",
239
238
  3000: "3000ms",
240
239
  3300: "3300ms",
240
+ 3900: "3900ms",
241
241
  4000: "4000ms",
242
242
  5000: "5000ms",
243
243
  },
@@ -385,5 +385,5 @@ export default {
385
385
  pattern: /delay-.*/,
386
386
  },
387
387
  ],
388
- plugins: [tailwindcss(), tailwindcssAnimate, tailwindScrollbarHide],
389
- };
388
+ plugins: [tailwindcssAnimate],
389
+ } satisfies Config;
package/version.txt CHANGED
@@ -1 +1 @@
1
- 0.1.6
1
+ 0.1.8