@gct-paas/core-web 0.1.5-dev.0 → 0.1.5-dev.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.
@@ -1,3 +1,4 @@
1
+ import { BasicModal } from "./modules/global-modal/index.mjs";
1
2
  import components_default from "./components/index.mjs";
2
3
  import gct_form_default from "./modules/gct-form/index.mjs";
3
4
  import gct_table_default from "./modules/gct-table/index.mjs";
@@ -27,6 +28,7 @@ async function coreWebCreateAppVue(app) {
27
28
  app.component(OverlayScrollbarsComponent.__name, OverlayScrollbarsComponent);
28
29
  app.use(gct_form_default);
29
30
  app.use(gct_table_default);
31
+ app.use(BasicModal);
30
32
  }
31
33
  //#endregion
32
34
  export { coreWebCreateAppVue };
@@ -6,6 +6,7 @@ import { useNamespace } from "@gct-paas/core";
6
6
  import { Checkbox, CheckboxGroup } from "ant-design-vue";
7
7
  import Draggable from "vuedraggable";
8
8
  //#region src/modules/gct-form/editor/gct-form-checkbox/gct-form-checkbox.tsx
9
+ var DragComp = Draggable;
9
10
  var GctFormCheckbox = /* @__PURE__ */ defineComponent({
10
11
  name: "GctFormCheckbox",
11
12
  props: {
@@ -81,7 +82,7 @@ var GctFormCheckbox = /* @__PURE__ */ defineComponent({
81
82
  return [withDirectives(createVNode(CheckboxGroup, mergeProps({
82
83
  "value": this.checked,
83
84
  "onUpdate:value": ($event) => this.checked = $event
84
- }, attrs, { "onChange": this.onChange }), { default: () => [createVNode(Draggable, {
85
+ }, attrs, { "onChange": this.onChange }), { default: () => [createVNode(DragComp, {
85
86
  "modelValue": this.options,
86
87
  "onUpdate:modelValue": ($event) => this.options = $event,
87
88
  "handle": ".cursor-move",
@@ -1,6 +1,6 @@
1
1
  import { useGctFormValue } from "../../../gct-form/hooks/use-gct-form-value/use-gct-form-value.mjs";
2
2
  import "../../../gct-form/index.mjs";
3
- import './gct-table-date.css';/* empty css */
3
+ import '../gct-table-text/gct-table-text.css';/* empty css */
4
4
  import { createVNode, defineComponent, mergeProps, resolveComponent } from "vue";
5
5
  import { useNamespace } from "@gct-paas/core";
6
6
  //#region src/modules/gct-table/editor/gct-table-date/gct-table-date.tsx
@@ -1,6 +1,6 @@
1
1
  import { useGctFormValueByText } from "../../../gct-form/hooks/use-gct-form-value/use-gct-form-value.mjs";
2
2
  import "../../../gct-form/index.mjs";
3
- import '../gct-table-date/gct-table-date.css';/* empty css */
3
+ import './gct-table-text.css';/* empty css */
4
4
  import { createVNode, defineComponent, mergeProps, resolveComponent } from "vue";
5
5
  import { useNamespace } from "@gct-paas/core";
6
6
  //#region src/modules/gct-table/editor/gct-table-text/gct-table-text.tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gct-paas/core-web",
3
- "version": "0.1.5-dev.0",
3
+ "version": "0.1.5-dev.2",
4
4
  "type": "module",
5
5
  "description": "paas 平台网页端核心包",
6
6
  "loader": "dist/loader.esm.min.js",
@@ -46,11 +46,11 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@ant-design/icons-vue": "^6.1.0",
49
- "@gct-paas/api": "^0.1.2-dev.3",
50
- "@gct-paas/core": "0.1.5-dev.0",
51
- "@gct-paas/flow": "0.0.1-dev.0",
49
+ "@gct-paas/api": "^0.1.3",
50
+ "@gct-paas/core": "0.1.5-dev.2",
51
+ "@gct-paas/flow": "0.0.1-dev.1",
52
52
  "@gct-paas/platform-icons": "^0.0.2",
53
- "@gct-paas/scss": "0.1.5-dev.0",
53
+ "@gct-paas/scss": "0.1.5-dev.2",
54
54
  "@icon-park/vue-next": "^1.4.2",
55
55
  "@monaco-editor/loader": "^1.7.0",
56
56
  "@vueuse/core": "^14.1.0",
@@ -72,11 +72,11 @@
72
72
  "wujie-vue3": "^1.0.29"
73
73
  },
74
74
  "peerDependencies": {
75
- "@gct-paas/api": "*",
76
- "@gct-paas/core": "*",
77
- "@gct-paas/scss": "*",
75
+ "@gct-paas/api": "^0.1.3",
76
+ "@gct-paas/core": "^0.1.5-dev.2",
77
+ "@gct-paas/scss": "^0.1.5-dev.2",
78
78
  "vant": ">=4",
79
79
  "vue": ">=3"
80
80
  },
81
- "gitHead": "d5a1badfd34c55ceefd2cf33f2ee659454076e37"
81
+ "gitHead": "d31b0686f336fec88dca4ed977ae15fd87f185cc"
82
82
  }