@lm_fe/components 0.2.2
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.
- package/README.md +47 -0
- package/dist/keep-alive/common.d.ts +46 -0
- package/dist/keep-alive/components/AsyncComponent.d.ts +27 -0
- package/dist/keep-alive/components/Comment.d.ts +18 -0
- package/dist/keep-alive/components/Consumer.d.ts +20 -0
- package/dist/keep-alive/components/keepAlive.d.ts +4 -0
- package/dist/keep-alive/components/provider.d.ts +31 -0
- package/dist/keep-alive/contexts/IdentificationContext.d.ts +12 -0
- package/dist/keep-alive/contexts/KeepAliveContext.d.ts +5 -0
- package/dist/keep-alive/index.d.ts +7 -0
- package/dist/keep-alive/index.js +1901 -0
- package/dist/keep-alive/utils/bindLifecycle.d.ts +3 -0
- package/dist/keep-alive/utils/changePositionByComment.d.ts +1 -0
- package/dist/keep-alive/utils/createEventEmitter.d.ts +11 -0
- package/dist/keep-alive/utils/createStoreElement.d.ts +1 -0
- package/dist/keep-alive/utils/createUniqueIdentification.d.ts +8 -0
- package/dist/keep-alive/utils/debug.d.ts +3 -0
- package/dist/keep-alive/utils/getDisplayName.d.ts +2 -0
- package/dist/keep-alive/utils/getKeepAlive.d.ts +3 -0
- package/dist/keep-alive/utils/getKeyByFiberNode.d.ts +1 -0
- package/dist/keep-alive/utils/isRegExp.d.ts +1 -0
- package/dist/keep-alive/utils/keepAliveDecorator.d.ts +17 -0
- package/dist/keep-alive/utils/md5.d.ts +1 -0
- package/dist/keep-alive/utils/noop.d.ts +2 -0
- package/dist/keep-alive/utils/shallowEqual.d.ts +2 -0
- package/dist/keep-alive/utils/useKeepAliveEffect.d.ts +2 -0
- package/dist/keep-alive/utils/withIdentificationContextConsumer.d.ts +10 -0
- package/dist/keep-alive/utils/withKeepAliveContextConsumer.d.ts +10 -0
- package/dist/src/ArraySingle/Inner.d.ts +3 -0
- package/dist/src/ArraySingle/index.d.ts +2 -0
- package/dist/src/CaseTempleteEdit/Inner.d.ts +4 -0
- package/dist/src/CaseTempleteEdit/config.d.ts +20 -0
- package/dist/src/CaseTempleteEdit/index.d.ts +4 -0
- package/dist/src/CaseTempleteEdit/types.d.ts +19 -0
- package/dist/src/CaseTempleteEdit/utils.d.ts +2 -0
- package/dist/src/CaseTempleteEditEmr/Inner.d.ts +3 -0
- package/dist/src/CaseTempleteEditEmr/demo_text.d.ts +1 -0
- package/dist/src/CaseTempleteEditEmr/index.d.ts +2 -0
- package/dist/src/CaseTempleteEditEmr/types.d.ts +6 -0
- package/dist/src/CaseTempleteEditEmr/utils.d.ts +3 -0
- package/dist/src/ContainerDimensions/index.d.ts +10 -0
- package/dist/src/GlobalModal/index.d.ts +8 -0
- package/dist/src/GlobalModal/utils.d.ts +65 -0
- package/dist/src/Monaco/Inner.d.ts +12 -0
- package/dist/src/Monaco/index.d.ts +1 -0
- package/dist/src/MyAddress/Inner.d.ts +3 -0
- package/dist/src/MyAddress/Old/InnerOld.d.ts +3 -0
- package/dist/src/MyAddress/Old/index.d.ts +3 -0
- package/dist/src/MyAddress/Old/options.d.ts +25 -0
- package/dist/src/MyAddress/index.d.ts +6 -0
- package/dist/src/MyAddress/type.d.ts +16 -0
- package/dist/src/MyAddress/utils.d.ts +6 -0
- package/dist/src/MyImageEditor/Inner.d.ts +4 -0
- package/dist/src/MyImageEditor/index.d.ts +16 -0
- package/dist/src/MyImageEditor/init_delete_control.d.ts +1 -0
- package/dist/src/MyImageEditor/utils.d.ts +36 -0
- package/dist/src/MyInput/index.d.ts +5 -0
- package/dist/src/MyInput/types.d.ts +9 -0
- package/dist/src/MyLazyComponent/index.d.ts +6 -0
- package/dist/src/PDF_Frame_View/Inner.d.ts +3 -0
- package/dist/src/PDF_Frame_View/index.d.ts +5 -0
- package/dist/src/PDF_Frame_View/types.d.ts +32 -0
- package/dist/src/PDF_Frame_View/utils.d.ts +9 -0
- package/dist/src/PatientSelect/Inner.d.ts +16 -0
- package/dist/src/PatientSelect/index.d.ts +3 -0
- package/dist/src/SimpleForm/Inner.d.ts +5 -0
- package/dist/src/SimpleForm/components/TabForm/index.d.ts +15 -0
- package/dist/src/SimpleForm/components/extra/Custom.d.ts +8 -0
- package/dist/src/SimpleForm/components/extra/MultiInput.d.ts +6 -0
- package/dist/src/SimpleForm/components/extra/SimpleSelect.d.ts +6 -0
- package/dist/src/SimpleForm/components/extra/SwitchSelect.d.ts +4 -0
- package/dist/src/SimpleForm/components/index.d.ts +34 -0
- package/dist/src/SimpleForm/index.d.ts +17 -0
- package/dist/src/SimpleForm/types/help.d.ts +3 -0
- package/dist/src/SimpleForm/types/metaTypes.d.ts +29 -0
- package/dist/src/SimpleForm/types.d.ts +24 -0
- package/dist/src/a_chunks/index.js +550 -0
- package/dist/src/a_chunks/root..js +187 -0
- package/dist/src/a_chunks/root.2.js +318 -0
- package/dist/src/a_chunks/root.3.js +622 -0
- package/dist/src/a_chunks/root.4.js +235 -0
- package/dist/src/a_chunks/root.5.js +156 -0
- package/dist/src/a_chunks/root.6.js +310 -0
- package/dist/src/a_chunks/root.7.js +867 -0
- package/dist/src/a_chunks/root.8.js +281 -0
- package/dist/src/a_chunks/root.9.js +19 -0
- package/dist/src/a_chunks/style-inject.es.js +25 -0
- package/dist/src/config.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +3 -0
- package/dist/src/hooks/useMchcDriverStatus.d.ts +3 -0
- package/dist/src/hooks/useMyEffect.d.ts +4 -0
- package/dist/src/hooks/use_fuck.d.ts +5 -0
- package/dist/src/index.d.ts +11 -0
- package/dist/src/index.js +10 -0
- package/dist/src/pack_components.d.ts +213 -0
- package/dist/src/style/index.d.ts +1 -0
- package/dist/src/utils/getInputStyle.d.ts +1 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/src/utils/other.d.ts +3 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lm_fe/components",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
|
+
"build": "rollup -c rollup.config.js",
|
|
8
|
+
"build:watch": "rollup -c rollup.config.js --watch",
|
|
9
|
+
"clean": "rimraf dist",
|
|
10
|
+
"prebuild": "pnpm clean"
|
|
11
|
+
},
|
|
12
|
+
"main": "dist/src/index.js",
|
|
13
|
+
"directories": {
|
|
14
|
+
"lib": "dist"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"types": "dist/src/index.d.ts",
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@lm_fe/scripts": "*",
|
|
22
|
+
"@monaco-editor/react": "^4.5.1",
|
|
23
|
+
"axios": ">=0.26.0",
|
|
24
|
+
"braft-editor": ">=2.3.9",
|
|
25
|
+
"classnames": "*",
|
|
26
|
+
"dayjs": "^1.11.13",
|
|
27
|
+
"echarts": "^5.0.1",
|
|
28
|
+
"fabric": "5.*",
|
|
29
|
+
"history": "^4.9.0",
|
|
30
|
+
"monaco-editor": "^0.39.0",
|
|
31
|
+
"quill": "1.*",
|
|
32
|
+
"quill-image-resize-module": "3.*",
|
|
33
|
+
"react": "*",
|
|
34
|
+
"react-container-dimensions": "1.4.1",
|
|
35
|
+
"react-dnd": "^11.1.3",
|
|
36
|
+
"react-dnd-html5-backend": "^11.1.3",
|
|
37
|
+
"react-keep-alive-pro": "*",
|
|
38
|
+
"react-resizable": "3.0.4",
|
|
39
|
+
"react-router-dom": "^5.2.0",
|
|
40
|
+
"react-to-print": "^2.14.7",
|
|
41
|
+
"reconnecting-websocket": "4.x"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [],
|
|
44
|
+
"author": "",
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@babel/preset-env": "^7.16.11",
|
|
47
|
+
"@babel/preset-react": "^7.16.7",
|
|
48
|
+
"acorn-jsx": "^5.3.2",
|
|
49
|
+
"less": "^4.1.2",
|
|
50
|
+
"rollup": "^2.70.2",
|
|
51
|
+
"rollup-plugin-monaco-editor": "^0.2.1",
|
|
52
|
+
"rollup-plugin-postcss": "^4.0.2"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@lm_fe/env": "0.2.2",
|
|
56
|
+
"@lm_fe/provoke": "0.2.2",
|
|
57
|
+
"@lm_fe/scripts": "*",
|
|
58
|
+
"@lm_fe/service": "0.2.2",
|
|
59
|
+
"@lm_fe/utils": "0.2.2",
|
|
60
|
+
"@noah-libjs/components": "*"
|
|
61
|
+
},
|
|
62
|
+
"publishConfig": {
|
|
63
|
+
"access": "public"
|
|
64
|
+
},
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"gitHead": "1ff13bdf8a20c78515bef188000c3855aa4663a5"
|
|
67
|
+
}
|