@tipp/ui 0.1.0 → 1.0.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.
@@ -1,5 +1,6 @@
1
+ import { default as React } from 'react';
1
2
  import { EChartProps } from '@kbox-labs/react-echarts';
2
3
 
3
4
  export type ChartProps = EChartProps;
4
- export declare function Chart(props: ChartProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function Chart(props: ChartProps): React.ReactNode;
5
6
  //# sourceMappingURL=chart.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"chart.d.ts","sourceRoot":"","sources":["../../lib/charts/chart.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAI5D,MAAM,MAAM,UAAU,GAAG,WAAW,CAAC;AAErC,wBAAgB,KAAK,CAAC,KAAK,EAAE,UAAU,2CAYtC"}
1
+ {"version":3,"file":"chart.d.ts","sourceRoot":"","sources":["../../lib/charts/chart.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAI5D,MAAM,MAAM,UAAU,GAAG,WAAW,CAAC;AAErC,wBAAgB,KAAK,CAAC,KAAK,EAAE,UAAU,GAAG,KAAK,CAAC,SAAS,CAYxD"}
@@ -1,3 +1,3 @@
1
- import * as uiProps from "@radix-ui/themes/dist/cjs/props/index.js";
1
+ import * as uiProps from '@radix-ui/themes/dist/cjs/props/index.js';
2
2
  export { uiProps };
3
3
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@tipp/ui",
3
+ "version": "1.0.0",
3
4
  "private": false,
4
- "version": "0.1.0",
5
+ "sideEffects": [
6
+ "**/*.css"
7
+ ],
5
8
  "type": "module",
6
9
  "main": "dist/main.js",
7
10
  "types": "dist/main.d.ts",
8
11
  "files": [
9
12
  "dist"
10
13
  ],
11
- "sideEffects": [
12
- "**/*.css"
13
- ],
14
14
  "dependencies": {
15
15
  "@kbox-labs/react-echarts": "^1.2.0",
16
16
  "@radix-ui/react-icons": "^1.3.0",
@@ -35,14 +35,15 @@
35
35
  "vite": "^5.3.4",
36
36
  "vite-plugin-dts": "4.0.0-beta.1",
37
37
  "vite-plugin-lib-inject-css": "^2.1.1",
38
- "@tipp/eslint-config": "0.1.0",
39
- "@tipp/typescript-config": "0.0.0"
38
+ "@tipp/eslint-config": "0.2.0",
39
+ "@tipp/typescript-config": "0.1.0"
40
40
  },
41
41
  "scripts": {
42
- "dev": "vite build --watch",
43
42
  "build": "vite build",
44
- "type-check": "tsc --noEmit",
45
- "lint-staged": "npx lint-staged",
46
- "preview": "vite preview"
43
+ "dev": "vite build --watch",
44
+ "lint": "eslint . --max-warnings 0",
45
+ "lint-staged": "npx lint-staged .",
46
+ "preview": "vite preview",
47
+ "type-check": "tsc --noEmit"
47
48
  }
48
49
  }