lowcoder-comps 0.0.9 → 0.0.11
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/index.js +91356 -0
- package/package.json +5 -12
- package/README.md +0 -27
- package/index.html +0 -26
- package/index.tsx +0 -19
- package/jest.config.js +0 -5
- package/src/__test__/allComp.test.tsx +0 -61
- package/src/app-env.d.ts +0 -3
- package/src/comps/calendarComp/calendarComp.tsx +0 -442
- package/src/comps/calendarComp/calendarConstants.tsx +0 -897
- package/src/comps/chartComp/chartComp.tsx +0 -249
- package/src/comps/chartComp/chartConfigs/barChartConfig.tsx +0 -51
- package/src/comps/chartComp/chartConfigs/cartesianAxisConfig.tsx +0 -307
- package/src/comps/chartComp/chartConfigs/chartUrls.tsx +0 -6
- package/src/comps/chartComp/chartConfigs/legendConfig.tsx +0 -55
- package/src/comps/chartComp/chartConfigs/lineChartConfig.tsx +0 -96
- package/src/comps/chartComp/chartConfigs/pieChartConfig.tsx +0 -83
- package/src/comps/chartComp/chartConfigs/scatterChartConfig.tsx +0 -62
- package/src/comps/chartComp/chartConstants.tsx +0 -243
- package/src/comps/chartComp/chartPropertyView.tsx +0 -161
- package/src/comps/chartComp/chartUtils.ts +0 -240
- package/src/comps/chartComp/reactEcharts/core.tsx +0 -187
- package/src/comps/chartComp/reactEcharts/index.ts +0 -20
- package/src/comps/chartComp/reactEcharts/types.ts +0 -70
- package/src/comps/chartComp/seriesComp.tsx +0 -119
- package/src/comps/imageEditorComp/imageEditorClass.tsx +0 -52
- package/src/comps/imageEditorComp/imageEditorConstants.tsx +0 -109
- package/src/comps/imageEditorComp/index.tsx +0 -184
- package/src/comps/mermaidComp/index.tsx +0 -44
- package/src/comps/mermaidComp/mermaid.tsx +0 -29
- package/src/global.ts +0 -1
- package/src/i18n/comps/index.tsx +0 -29
- package/src/i18n/comps/locales/en.ts +0 -142
- package/src/i18n/comps/locales/enObj.tsx +0 -120
- package/src/i18n/comps/locales/index.ts +0 -7
- package/src/i18n/comps/locales/types.tsx +0 -9
- package/src/i18n/comps/locales/zh.ts +0 -4
- package/src/i18n/comps/locales/zhObj.tsx +0 -4
- package/src/index.ts +0 -11
- package/tsconfig.json +0 -22
- package/vite.config.js +0 -10
package/src/index.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ChartCompWithDefault } from "./comps/chartComp/chartComp";
|
|
2
|
-
import { ImageEditorComp } from "./comps/imageEditorComp/index";
|
|
3
|
-
import { CalendarComp } from "./comps/calendarComp/calendarComp";
|
|
4
|
-
import { MermaidComp } from "./comps/mermaidComp";
|
|
5
|
-
|
|
6
|
-
export default {
|
|
7
|
-
chart: ChartCompWithDefault,
|
|
8
|
-
imageEditor: ImageEditorComp,
|
|
9
|
-
calendar: CalendarComp,
|
|
10
|
-
mermaid: MermaidComp,
|
|
11
|
-
};
|
package/tsconfig.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es5",
|
|
4
|
-
"experimentalDecorators": true,
|
|
5
|
-
"lib": ["dom", "dom.iterable", "esnext"],
|
|
6
|
-
"allowJs": true,
|
|
7
|
-
"skipLibCheck": true,
|
|
8
|
-
"esModuleInterop": true,
|
|
9
|
-
"allowSyntheticDefaultImports": true,
|
|
10
|
-
"strict": true,
|
|
11
|
-
"forceConsistentCasingInFileNames": true,
|
|
12
|
-
"noFallthroughCasesInSwitch": true,
|
|
13
|
-
"module": "esnext",
|
|
14
|
-
"moduleResolution": "node",
|
|
15
|
-
"resolveJsonModule": true,
|
|
16
|
-
"isolatedModules": true,
|
|
17
|
-
"noEmit": true,
|
|
18
|
-
"jsx": "react-jsx",
|
|
19
|
-
"baseUrl": "./src"
|
|
20
|
-
},
|
|
21
|
-
"include": ["src", "index.tsx"]
|
|
22
|
-
}
|
package/vite.config.js
DELETED