ysyt-react-agent-lib 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.
@@ -0,0 +1 @@
1
+ export { default as YsytBarPhone } from './es/YsytBarPhone';
@@ -0,0 +1,4 @@
1
+ declare module '*.mp3' {
2
+ const src: string;
3
+ export default src;
4
+ }
File without changes
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-DZfpPJgy.js");exports.YsytBarPhone=e.YsytBarPhone;
@@ -0,0 +1 @@
1
+ .svgIcon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}.call-number-popover .ant-popover-inner{padding:0!important}
@@ -0,0 +1,4 @@
1
+ import { an as r } from "./index-DTX4tP2H.mjs";
2
+ export {
3
+ r as YsytBarPhone
4
+ };
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "ysyt-react-agent-lib",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "dist/ysyt-react-agent-lib.cjs.js",
6
+ "module": "dist/ysyt-react-agent-lib.es.js",
7
+ "types": "dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "npm run tsc && vite build",
10
+ "dev:example": "vite --config example/vite.config.ts",
11
+ "tsc": "tsc"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "exports": {
17
+ ".": {
18
+ "import": "./dist/ysyt-react-agent-lib.es.js",
19
+ "require": "./dist/ysyt-react-agent-lib.cjs.js"
20
+ }
21
+ },
22
+ "keywords": [],
23
+ "author": "",
24
+ "license": "ISC",
25
+ "dependencies": {
26
+ "antd": "5.24.0",
27
+ "styled-components": "^6.1.13",
28
+ "ysyt-agent-sdk": "1.0.60"
29
+ },
30
+ "peerDependencies": {
31
+ "dayjs": "^1.11.13",
32
+ "react": "^18.2.0",
33
+ "react-dom": "^18.2.0"
34
+ },
35
+ "devDependencies": {
36
+ "@svgr/rollup": "^7.0.0",
37
+ "@types/react": "^18.0.27",
38
+ "@types/react-dom": "^18.0.10",
39
+ "@types/styled-components": "^5.1.34",
40
+ "@typescript-eslint/eslint-plugin": "^8.19.0",
41
+ "@typescript-eslint/parser": "^8.19.0",
42
+ "@vitejs/plugin-react": "^4.3.4",
43
+ "eslint": "^9.17.0",
44
+ "eslint-config-airbnb-base": "^15.0.0",
45
+ "eslint-config-prettier": "^9.1.0",
46
+ "eslint-plugin-import": "^2.31.0",
47
+ "eslint-plugin-prettier": "^5.2.1",
48
+ "eslint-plugin-react": "^7.37.2",
49
+ "eslint-plugin-react-hooks": "^5.1.0",
50
+ "prettier": "^3.4.2",
51
+ "typescript": "^5.7.2",
52
+ "vite": "^6.0.5",
53
+ "vite-plugin-dts": "^4.4.0",
54
+ "vite-plugin-svg-icons": "^2.0.1"
55
+ }
56
+ }