@funcho/ui 1.1.37 → 1.1.39

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.
Files changed (47) hide show
  1. package/dist/cjs/business/DataTable/DataTable.vue.js +2 -0
  2. package/dist/cjs/business/EditFormCard/EditFormCard.vue.js +2 -0
  3. package/dist/cjs/business/ProForm/ProForm.vue.js +2 -0
  4. package/dist/cjs/business/QueryForm/QueryForm.vue.js +2 -0
  5. package/dist/cjs/business/SidebarMainLayout/SidebarMainLayout.vue.js +2 -0
  6. package/dist/cjs/business/TreeCheckFilter/TreeCheckFilter.vue.js +2 -0
  7. package/dist/cjs/business/TreeTransfer/TreeTransfer.vue.js +2 -0
  8. package/dist/cjs/components/Col/Col.vue.js +48 -0
  9. package/dist/cjs/components/Col/Col.vue3.js +10 -0
  10. package/dist/cjs/components/Col/index.js +12 -0
  11. package/dist/cjs/components/Notification/index.js +2 -1
  12. package/dist/cjs/components/Row/Row.vue.js +48 -0
  13. package/dist/cjs/components/Row/Row.vue3.js +10 -0
  14. package/dist/cjs/components/Row/index.js +12 -0
  15. package/dist/cjs/components/index.js +4 -0
  16. package/dist/cjs/index.js +32 -28
  17. package/dist/cjs/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/col/index.js +6 -1
  18. package/dist/cjs/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/row/index.js +6 -1
  19. package/dist/cjs/packages/ui/package.json.js +1 -1
  20. package/dist/esm/business/DataTable/DataTable.vue.mjs +2 -0
  21. package/dist/esm/business/EditFormCard/EditFormCard.vue.mjs +2 -0
  22. package/dist/esm/business/ProForm/ProForm.vue.mjs +2 -0
  23. package/dist/esm/business/QueryForm/QueryForm.vue.mjs +2 -0
  24. package/dist/esm/business/SidebarMainLayout/SidebarMainLayout.vue.mjs +2 -0
  25. package/dist/esm/business/TreeCheckFilter/TreeCheckFilter.vue.mjs +2 -0
  26. package/dist/esm/business/TreeTransfer/TreeTransfer.vue.mjs +2 -0
  27. package/dist/esm/components/Col/Col.vue.mjs +44 -0
  28. package/dist/esm/components/Col/Col.vue3.mjs +6 -0
  29. package/dist/esm/components/Col/index.mjs +7 -0
  30. package/dist/esm/components/Notification/index.mjs +2 -1
  31. package/dist/esm/components/Row/Row.vue.mjs +44 -0
  32. package/dist/esm/components/Row/Row.vue3.mjs +6 -0
  33. package/dist/esm/components/Row/index.mjs +7 -0
  34. package/dist/esm/components/index.mjs +2 -0
  35. package/dist/esm/index.mjs +2 -0
  36. package/dist/esm/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/col/index.mjs +3 -1
  37. package/dist/esm/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/row/index.mjs +3 -1
  38. package/dist/esm/packages/ui/package.json.mjs +1 -1
  39. package/dist/style.css +9 -1
  40. package/dist/types/components/Col/Col.types.d.ts +1 -0
  41. package/dist/types/components/Col/Col.vue.d.ts +481 -0
  42. package/dist/types/components/Col/index.d.ts +565 -0
  43. package/dist/types/components/Row/Row.types.d.ts +1 -0
  44. package/dist/types/components/Row/Row.vue.d.ts +276 -0
  45. package/dist/types/components/Row/index.d.ts +335 -0
  46. package/dist/types/components/index.d.ts +2 -0
  47. package/package.json +1 -1
@@ -81,6 +81,8 @@ require('../../components/CodeEditor/index.js');
81
81
  require('../../components/RichEditor/index.js');
82
82
  require('../../components/LovText/index.js');
83
83
  require('../../components/DotStatus/index.js');
84
+ require('../../components/Row/index.js');
85
+ require('../../components/Col/index.js');
84
86
  const index_vue_vue_type_script_lang = require('../../components/VNodeRenderer/index.vue.js');
85
87
  const QueryForm_vue_vue_type_script_setup_true_lang = require('../QueryForm/QueryForm.vue.js');
86
88
  ;/* empty css */
@@ -80,6 +80,8 @@ require('../../components/CodeEditor/index.js');
80
80
  require('../../components/RichEditor/index.js');
81
81
  require('../../components/LovText/index.js');
82
82
  require('../../components/DotStatus/index.js');
83
+ require('../../components/Row/index.js');
84
+ require('../../components/Col/index.js');
83
85
  const ProForm_vue_vue_type_script_setup_true_lang = require('../ProForm/ProForm.vue.js');
84
86
  ;/* empty css */
85
87
  const cloneDeep = require('../../node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/cloneDeep.js');
@@ -81,6 +81,8 @@ require('../../components/CodeEditor/index.js');
81
81
  require('../../components/RichEditor/index.js');
82
82
  require('../../components/LovText/index.js');
83
83
  require('../../components/DotStatus/index.js');
84
+ require('../../components/Row/index.js');
85
+ require('../../components/Col/index.js');
84
86
  const componentsMap = require('./componentsMap.js');
85
87
  const cloneDeep = require('../../node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/cloneDeep.js');
86
88
  const isPlainObject = require('../../node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/isPlainObject.js');
@@ -81,6 +81,8 @@ require('../../components/CodeEditor/index.js');
81
81
  require('../../components/RichEditor/index.js');
82
82
  require('../../components/LovText/index.js');
83
83
  require('../../components/DotStatus/index.js');
84
+ require('../../components/Row/index.js');
85
+ require('../../components/Col/index.js');
84
86
  const ProForm_vue_vue_type_script_setup_true_lang = require('../ProForm/ProForm.vue.js');
85
87
  ;/* empty css */
86
88
  const core = require('@vueuse/core');
@@ -81,6 +81,8 @@ require('../../components/CodeEditor/index.js');
81
81
  require('../../components/RichEditor/index.js');
82
82
  require('../../components/LovText/index.js');
83
83
  require('../../components/DotStatus/index.js');
84
+ require('../../components/Row/index.js');
85
+ require('../../components/Col/index.js');
84
86
  const useNamespace = require('../../hooks/use-namespace.js');
85
87
 
86
88
  const _sfc_main = /* @__PURE__ */ vue.defineComponent({
@@ -81,6 +81,8 @@ require('../../components/CodeEditor/index.js');
81
81
  require('../../components/RichEditor/index.js');
82
82
  require('../../components/LovText/index.js');
83
83
  require('../../components/DotStatus/index.js');
84
+ require('../../components/Row/index.js');
85
+ require('../../components/Col/index.js');
84
86
  const Icons = require('@funcho/icons-vue');
85
87
  const core = require('@vueuse/core');
86
88
 
@@ -83,6 +83,8 @@ require('../../components/CodeEditor/index.js');
83
83
  require('../../components/RichEditor/index.js');
84
84
  require('../../components/LovText/index.js');
85
85
  require('../../components/DotStatus/index.js');
86
+ require('../../components/Row/index.js');
87
+ require('../../components/Col/index.js');
86
88
 
87
89
  const _sfc_main = /* @__PURE__ */ vue.defineComponent({
88
90
  ...{
@@ -0,0 +1,48 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const vue = require('vue');
6
+ const index = require('../../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/col/index.js');
7
+ require('../../_virtual/dayjs.min.js');
8
+
9
+ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
10
+ ...{
11
+ name: "FcCol"
12
+ },
13
+ __name: "Col",
14
+ setup(__props, { expose: __expose }) {
15
+ const elRef = vue.ref();
16
+ __expose(
17
+ new Proxy(
18
+ {},
19
+ {
20
+ get(_, key) {
21
+ return elRef.value?.[key];
22
+ },
23
+ has(_, key) {
24
+ if (!elRef.value) return false;
25
+ return key in elRef.value;
26
+ }
27
+ }
28
+ )
29
+ );
30
+ return (_ctx, _cache) => {
31
+ return vue.openBlock(), vue.createBlock(vue.unref(index.ElCol), vue.mergeProps(_ctx.$attrs, {
32
+ ref_key: "elRef",
33
+ ref: elRef
34
+ }), vue.createSlots({ _: 2 }, [
35
+ vue.renderList(_ctx.$slots, (_, name) => {
36
+ return {
37
+ name,
38
+ fn: vue.withCtx((slotProps) => [
39
+ vue.renderSlot(_ctx.$slots, name, vue.normalizeProps(vue.guardReactiveProps(slotProps ?? {})))
40
+ ])
41
+ };
42
+ })
43
+ ]), 1040);
44
+ };
45
+ }
46
+ });
47
+
48
+ exports.default = _sfc_main;
@@ -0,0 +1,10 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const Col_vue_vue_type_script_setup_true_lang = require('./Col.vue.js');
6
+ ;/* empty css */
7
+
8
+
9
+
10
+ exports.default = Col_vue_vue_type_script_setup_true_lang.default;
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const Col_vue_vue_type_script_setup_true_lang = require('./Col.vue.js');
6
+ ;/* empty css */
7
+ const withInstall = require('../../_utils/with-install.js');
8
+
9
+ const FcCol = withInstall.withInstall(Col_vue_vue_type_script_setup_true_lang.default);
10
+
11
+ exports.FcCol = FcCol;
12
+ exports.default = FcCol;
@@ -20,8 +20,9 @@ notification.notificationTypes.forEach((type) => {
20
20
  onClose: () => {
21
21
  }
22
22
  }) => {
23
+ const normalizeOptions = typeof options === "string" ? { message: options } : options;
23
24
  return FcNotification({
24
- ...options,
25
+ ...normalizeOptions,
25
26
  type
26
27
  });
27
28
  };
@@ -0,0 +1,48 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const vue = require('vue');
6
+ const index = require('../../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/row/index.js');
7
+ require('../../_virtual/dayjs.min.js');
8
+
9
+ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
10
+ ...{
11
+ name: "FcRow"
12
+ },
13
+ __name: "Row",
14
+ setup(__props, { expose: __expose }) {
15
+ const elRef = vue.ref();
16
+ __expose(
17
+ new Proxy(
18
+ {},
19
+ {
20
+ get(_, key) {
21
+ return elRef.value?.[key];
22
+ },
23
+ has(_, key) {
24
+ if (!elRef.value) return false;
25
+ return key in elRef.value;
26
+ }
27
+ }
28
+ )
29
+ );
30
+ return (_ctx, _cache) => {
31
+ return vue.openBlock(), vue.createBlock(vue.unref(index.ElRow), vue.mergeProps(_ctx.$attrs, {
32
+ ref_key: "elRef",
33
+ ref: elRef
34
+ }), vue.createSlots({ _: 2 }, [
35
+ vue.renderList(_ctx.$slots, (_, name) => {
36
+ return {
37
+ name,
38
+ fn: vue.withCtx((slotProps) => [
39
+ vue.renderSlot(_ctx.$slots, name, vue.normalizeProps(vue.guardReactiveProps(slotProps ?? {})))
40
+ ])
41
+ };
42
+ })
43
+ ]), 1040);
44
+ };
45
+ }
46
+ });
47
+
48
+ exports.default = _sfc_main;
@@ -0,0 +1,10 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const Row_vue_vue_type_script_setup_true_lang = require('./Row.vue.js');
6
+ ;/* empty css */
7
+
8
+
9
+
10
+ exports.default = Row_vue_vue_type_script_setup_true_lang.default;
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const Row_vue_vue_type_script_setup_true_lang = require('./Row.vue.js');
6
+ ;/* empty css */
7
+ const withInstall = require('../../_utils/with-install.js');
8
+
9
+ const FcRow = withInstall.withInstall(Row_vue_vue_type_script_setup_true_lang.default);
10
+
11
+ exports.FcRow = FcRow;
12
+ exports.default = FcRow;
@@ -82,6 +82,8 @@ const index$1c = require('./CodeEditor/index.js');
82
82
  const index$1d = require('./RichEditor/index.js');
83
83
  const index$1e = require('./LovText/index.js');
84
84
  const index$1f = require('./DotStatus/index.js');
85
+ const index$1g = require('./Row/index.js');
86
+ const index$1h = require('./Col/index.js');
85
87
  const directive = require('../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/loading/src/directive.js');
86
88
  const service = require('../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/loading/src/service.js');
87
89
 
@@ -194,6 +196,8 @@ exports.FcRichEditor = index$1d.FcRichEditor;
194
196
  exports.FcRichEditorInput = index$1d.FcRichEditorInput;
195
197
  exports.FcLovText = index$1e.FcLovText;
196
198
  exports.FcDotStatus = index$1f.FcDotStatus;
199
+ exports.FcRow = index$1g.FcRow;
200
+ exports.FcCol = index$1h.FcCol;
197
201
  exports.FcLoadingDirective = directive.default;
198
202
  exports.vLoading = directive.default;
199
203
  exports.FcLoadingService = service.default;
package/dist/cjs/index.js CHANGED
@@ -7,8 +7,8 @@ const directive = require('./node_modules/.pnpm/element-plus@2.13.5_patch_hash_4
7
7
  const dayjs_min = require('./_virtual/dayjs.min.js');
8
8
  ;/* empty css */
9
9
  const lovIdRequestProvide = require('./config/lovId-request-provide.js');
10
- const index$1s = require('./components/index.js');
11
- const index$1t = require('./business/index.js');
10
+ const index$1u = require('./components/index.js');
11
+ const index$1v = require('./business/index.js');
12
12
  const version = require('./version.js');
13
13
  const index$1 = require('./components/Button/index.js');
14
14
  const index$2 = require('./components/Dialog/index.js');
@@ -90,23 +90,25 @@ const index$1d = require('./components/CodeEditor/index.js');
90
90
  const index$1e = require('./components/RichEditor/index.js');
91
91
  const index$1f = require('./components/LovText/index.js');
92
92
  const index$1g = require('./components/DotStatus/index.js');
93
- const index$1h = require('./business/SidebarMainLayout/index.js');
94
- const index$1i = require('./business/DataTable/index.js');
95
- const index$1j = require('./business/ProForm/index.js');
96
- const index$1k = require('./business/TreeCheckFilter/index.js');
97
- const index$1l = require('./business/TreeTransfer/index.js');
98
- const index$1m = require('./business/EditFormCard/index.js');
99
- const index$1n = require('./business/FormDialog/index.js');
100
- const index$1o = require('./business/QueryForm/index.js');
101
- const index$1p = require('./business/VerticalLayout/index.js');
102
- const index$1q = require('./business/TreeTransferDialog/index.js');
103
- const index$1r = require('./business/DataTableDialog/index.js');
93
+ const index$1h = require('./components/Row/index.js');
94
+ const index$1i = require('./components/Col/index.js');
95
+ const index$1j = require('./business/SidebarMainLayout/index.js');
96
+ const index$1k = require('./business/DataTable/index.js');
97
+ const index$1l = require('./business/ProForm/index.js');
98
+ const index$1m = require('./business/TreeCheckFilter/index.js');
99
+ const index$1n = require('./business/TreeTransfer/index.js');
100
+ const index$1o = require('./business/EditFormCard/index.js');
101
+ const index$1p = require('./business/FormDialog/index.js');
102
+ const index$1q = require('./business/QueryForm/index.js');
103
+ const index$1r = require('./business/VerticalLayout/index.js');
104
+ const index$1s = require('./business/TreeTransferDialog/index.js');
105
+ const index$1t = require('./business/DataTableDialog/index.js');
104
106
 
105
- const components = Object.keys(index$1s).map((key) => {
106
- return index$1s[key];
107
+ const components = Object.keys(index$1u).map((key) => {
108
+ return index$1u[key];
107
109
  });
108
- const proComponents = Object.keys(index$1t).map((key) => {
109
- return index$1t[key];
110
+ const proComponents = Object.keys(index$1v).map((key) => {
111
+ return index$1v[key];
110
112
  });
111
113
  const installComponents = [...components, ...proComponents].filter((comp) => {
112
114
  return typeof comp === "object" && comp.name && typeof comp.install === "function";
@@ -233,16 +235,18 @@ exports.FcRichEditor = index$1e.FcRichEditor;
233
235
  exports.FcRichEditorInput = index$1e.FcRichEditorInput;
234
236
  exports.FcLovText = index$1f.FcLovText;
235
237
  exports.FcDotStatus = index$1g.FcDotStatus;
236
- exports.FcProSidebarMainLayout = index$1h.FcProSidebarMainLayout;
237
- exports.FcProDataTable = index$1i.FcProDataTable;
238
- exports.FcProForm = index$1j.FcProForm;
239
- exports.FcProTreeCheckFilter = index$1k.FcProTreeCheckFilter;
240
- exports.FcProTreeTransfer = index$1l.FcProTreeTransfer;
241
- exports.FcProEditFormCard = index$1m.FcProEditFormCard;
242
- exports.FcProFormDialog = index$1n.FcProFormDialog;
243
- exports.FcProQueryForm = index$1o.FcProQueryForm;
244
- exports.FcProVerticalLayout = index$1p.FcProVerticalLayout;
245
- exports.FcProTreeTransferDialog = index$1q.FcProTreeTransferDialog;
246
- exports.FcProDataTableDialog = index$1r.FcProDataTableDialog;
238
+ exports.FcRow = index$1h.FcRow;
239
+ exports.FcCol = index$1i.FcCol;
240
+ exports.FcProSidebarMainLayout = index$1j.FcProSidebarMainLayout;
241
+ exports.FcProDataTable = index$1k.FcProDataTable;
242
+ exports.FcProForm = index$1l.FcProForm;
243
+ exports.FcProTreeCheckFilter = index$1m.FcProTreeCheckFilter;
244
+ exports.FcProTreeTransfer = index$1n.FcProTreeTransfer;
245
+ exports.FcProEditFormCard = index$1o.FcProEditFormCard;
246
+ exports.FcProFormDialog = index$1p.FcProFormDialog;
247
+ exports.FcProQueryForm = index$1q.FcProQueryForm;
248
+ exports.FcProVerticalLayout = index$1r.FcProVerticalLayout;
249
+ exports.FcProTreeTransferDialog = index$1s.FcProTreeTransferDialog;
250
+ exports.FcProDataTableDialog = index$1t.FcProDataTableDialog;
247
251
  exports.default = index;
248
252
  exports.install = install;
@@ -1,7 +1,12 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
3
5
  const install = require('../../utils/vue/install.js');
4
6
  const col2 = require('./src/col2.js');
5
7
 
6
8
  //#region ../../packages/components/col/index.ts
7
- install.withInstall(col2.default);
9
+ const ElCol = install.withInstall(col2.default);
10
+
11
+ exports.ElCol = ElCol;
12
+ exports.default = ElCol;
@@ -1,7 +1,12 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
3
5
  const install = require('../../utils/vue/install.js');
4
6
  const row2 = require('./src/row2.js');
5
7
 
6
8
  //#region ../../packages/components/row/index.ts
7
- install.withInstall(row2.default);
9
+ const ElRow = install.withInstall(row2.default);
10
+
11
+ exports.ElRow = ElRow;
12
+ exports.default = ElRow;
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const version = "1.1.37";
5
+ const version = "1.1.39";
6
6
 
7
7
  exports.version = version;
@@ -77,6 +77,8 @@ import '../../components/CodeEditor/index.mjs';
77
77
  import '../../components/RichEditor/index.mjs';
78
78
  import '../../components/LovText/index.mjs';
79
79
  import '../../components/DotStatus/index.mjs';
80
+ import '../../components/Row/index.mjs';
81
+ import '../../components/Col/index.mjs';
80
82
  import _sfc_main$1 from '../../components/VNodeRenderer/index.vue.mjs';
81
83
  import _sfc_main$2 from '../QueryForm/QueryForm.vue.mjs';
82
84
  /* empty css */
@@ -76,6 +76,8 @@ import '../../components/CodeEditor/index.mjs';
76
76
  import '../../components/RichEditor/index.mjs';
77
77
  import '../../components/LovText/index.mjs';
78
78
  import '../../components/DotStatus/index.mjs';
79
+ import '../../components/Row/index.mjs';
80
+ import '../../components/Col/index.mjs';
79
81
  import _sfc_main$1 from '../ProForm/ProForm.vue.mjs';
80
82
  /* empty css */
81
83
  import cloneDeep from '../../node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/cloneDeep.mjs';
@@ -77,6 +77,8 @@ import '../../components/CodeEditor/index.mjs';
77
77
  import '../../components/RichEditor/index.mjs';
78
78
  import '../../components/LovText/index.mjs';
79
79
  import '../../components/DotStatus/index.mjs';
80
+ import '../../components/Row/index.mjs';
81
+ import '../../components/Col/index.mjs';
80
82
  import { ComponentsMap } from './componentsMap.mjs';
81
83
  import cloneDeep from '../../node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/cloneDeep.mjs';
82
84
  import isPlainObject from '../../node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/isPlainObject.mjs';
@@ -77,6 +77,8 @@ import '../../components/CodeEditor/index.mjs';
77
77
  import '../../components/RichEditor/index.mjs';
78
78
  import '../../components/LovText/index.mjs';
79
79
  import '../../components/DotStatus/index.mjs';
80
+ import '../../components/Row/index.mjs';
81
+ import '../../components/Col/index.mjs';
80
82
  import _sfc_main$1 from '../ProForm/ProForm.vue.mjs';
81
83
  /* empty css */
82
84
  import { useElementSize, useResizeObserver } from '@vueuse/core';
@@ -77,6 +77,8 @@ import '../../components/CodeEditor/index.mjs';
77
77
  import '../../components/RichEditor/index.mjs';
78
78
  import '../../components/LovText/index.mjs';
79
79
  import '../../components/DotStatus/index.mjs';
80
+ import '../../components/Row/index.mjs';
81
+ import '../../components/Col/index.mjs';
80
82
  import { useNamespace } from '../../hooks/use-namespace.mjs';
81
83
 
82
84
  const _sfc_main = /* @__PURE__ */ defineComponent({
@@ -77,6 +77,8 @@ import '../../components/CodeEditor/index.mjs';
77
77
  import '../../components/RichEditor/index.mjs';
78
78
  import '../../components/LovText/index.mjs';
79
79
  import '../../components/DotStatus/index.mjs';
80
+ import '../../components/Row/index.mjs';
81
+ import '../../components/Col/index.mjs';
80
82
  import { Search } from '@funcho/icons-vue';
81
83
  import { useElementSize } from '@vueuse/core';
82
84
 
@@ -79,6 +79,8 @@ import '../../components/CodeEditor/index.mjs';
79
79
  import '../../components/RichEditor/index.mjs';
80
80
  import '../../components/LovText/index.mjs';
81
81
  import '../../components/DotStatus/index.mjs';
82
+ import '../../components/Row/index.mjs';
83
+ import '../../components/Col/index.mjs';
82
84
 
83
85
  const _sfc_main = /* @__PURE__ */ defineComponent({
84
86
  ...{
@@ -0,0 +1,44 @@
1
+ import { defineComponent, ref, createBlock, openBlock, unref, mergeProps, createSlots, renderList, withCtx, renderSlot, normalizeProps, guardReactiveProps } from 'vue';
2
+ import { ElCol } from '../../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/col/index.mjs';
3
+ import '../../_virtual/dayjs.min.mjs';
4
+
5
+ const _sfc_main = /* @__PURE__ */ defineComponent({
6
+ ...{
7
+ name: "FcCol"
8
+ },
9
+ __name: "Col",
10
+ setup(__props, { expose: __expose }) {
11
+ const elRef = ref();
12
+ __expose(
13
+ new Proxy(
14
+ {},
15
+ {
16
+ get(_, key) {
17
+ return elRef.value?.[key];
18
+ },
19
+ has(_, key) {
20
+ if (!elRef.value) return false;
21
+ return key in elRef.value;
22
+ }
23
+ }
24
+ )
25
+ );
26
+ return (_ctx, _cache) => {
27
+ return openBlock(), createBlock(unref(ElCol), mergeProps(_ctx.$attrs, {
28
+ ref_key: "elRef",
29
+ ref: elRef
30
+ }), createSlots({ _: 2 }, [
31
+ renderList(_ctx.$slots, (_, name) => {
32
+ return {
33
+ name,
34
+ fn: withCtx((slotProps) => [
35
+ renderSlot(_ctx.$slots, name, normalizeProps(guardReactiveProps(slotProps ?? {})))
36
+ ])
37
+ };
38
+ })
39
+ ]), 1040);
40
+ };
41
+ }
42
+ });
43
+
44
+ export { _sfc_main as default };
@@ -0,0 +1,6 @@
1
+ import _sfc_main from './Col.vue.mjs';
2
+ /* empty css */
3
+
4
+
5
+
6
+ export { _sfc_main as default };
@@ -0,0 +1,7 @@
1
+ import _sfc_main from './Col.vue.mjs';
2
+ /* empty css */
3
+ import { withInstall } from '../../_utils/with-install.mjs';
4
+
5
+ const FcCol = withInstall(_sfc_main);
6
+
7
+ export { FcCol, FcCol as default };
@@ -16,8 +16,9 @@ notificationTypes.forEach((type) => {
16
16
  onClose: () => {
17
17
  }
18
18
  }) => {
19
+ const normalizeOptions = typeof options === "string" ? { message: options } : options;
19
20
  return FcNotification({
20
- ...options,
21
+ ...normalizeOptions,
21
22
  type
22
23
  });
23
24
  };
@@ -0,0 +1,44 @@
1
+ import { defineComponent, ref, createBlock, openBlock, unref, mergeProps, createSlots, renderList, withCtx, renderSlot, normalizeProps, guardReactiveProps } from 'vue';
2
+ import { ElRow } from '../../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/row/index.mjs';
3
+ import '../../_virtual/dayjs.min.mjs';
4
+
5
+ const _sfc_main = /* @__PURE__ */ defineComponent({
6
+ ...{
7
+ name: "FcRow"
8
+ },
9
+ __name: "Row",
10
+ setup(__props, { expose: __expose }) {
11
+ const elRef = ref();
12
+ __expose(
13
+ new Proxy(
14
+ {},
15
+ {
16
+ get(_, key) {
17
+ return elRef.value?.[key];
18
+ },
19
+ has(_, key) {
20
+ if (!elRef.value) return false;
21
+ return key in elRef.value;
22
+ }
23
+ }
24
+ )
25
+ );
26
+ return (_ctx, _cache) => {
27
+ return openBlock(), createBlock(unref(ElRow), mergeProps(_ctx.$attrs, {
28
+ ref_key: "elRef",
29
+ ref: elRef
30
+ }), createSlots({ _: 2 }, [
31
+ renderList(_ctx.$slots, (_, name) => {
32
+ return {
33
+ name,
34
+ fn: withCtx((slotProps) => [
35
+ renderSlot(_ctx.$slots, name, normalizeProps(guardReactiveProps(slotProps ?? {})))
36
+ ])
37
+ };
38
+ })
39
+ ]), 1040);
40
+ };
41
+ }
42
+ });
43
+
44
+ export { _sfc_main as default };
@@ -0,0 +1,6 @@
1
+ import _sfc_main from './Row.vue.mjs';
2
+ /* empty css */
3
+
4
+
5
+
6
+ export { _sfc_main as default };
@@ -0,0 +1,7 @@
1
+ import _sfc_main from './Row.vue.mjs';
2
+ /* empty css */
3
+ import { withInstall } from '../../_utils/with-install.mjs';
4
+
5
+ const FcRow = withInstall(_sfc_main);
6
+
7
+ export { FcRow, FcRow as default };
@@ -78,5 +78,7 @@ export { FcCodeEditor, FcCodeEditorInput } from './CodeEditor/index.mjs';
78
78
  export { FcRichEditor, FcRichEditorInput } from './RichEditor/index.mjs';
79
79
  export { FcLovText } from './LovText/index.mjs';
80
80
  export { FcDotStatus } from './DotStatus/index.mjs';
81
+ export { FcRow } from './Row/index.mjs';
82
+ export { FcCol } from './Col/index.mjs';
81
83
  export { default as FcLoadingDirective, default as vLoading } from '../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/loading/src/directive.mjs';
82
84
  export { default as FcLoadingService } from '../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/loading/src/service.mjs';
@@ -86,6 +86,8 @@ export { FcCodeEditor, FcCodeEditorInput } from './components/CodeEditor/index.m
86
86
  export { FcRichEditor, FcRichEditorInput } from './components/RichEditor/index.mjs';
87
87
  export { FcLovText } from './components/LovText/index.mjs';
88
88
  export { FcDotStatus } from './components/DotStatus/index.mjs';
89
+ export { FcRow } from './components/Row/index.mjs';
90
+ export { FcCol } from './components/Col/index.mjs';
89
91
  export { FcProSidebarMainLayout } from './business/SidebarMainLayout/index.mjs';
90
92
  export { FcProDataTable } from './business/DataTable/index.mjs';
91
93
  export { FcProForm } from './business/ProForm/index.mjs';
@@ -2,4 +2,6 @@ import { withInstall } from '../../utils/vue/install.mjs';
2
2
  import col_default from './src/col2.mjs';
3
3
 
4
4
  //#region ../../packages/components/col/index.ts
5
- withInstall(col_default);
5
+ const ElCol = withInstall(col_default);
6
+
7
+ export { ElCol, ElCol as default };
@@ -2,4 +2,6 @@ import { withInstall } from '../../utils/vue/install.mjs';
2
2
  import row_default from './src/row2.mjs';
3
3
 
4
4
  //#region ../../packages/components/row/index.ts
5
- withInstall(row_default);
5
+ const ElRow = withInstall(row_default);
6
+
7
+ export { ElRow, ElRow as default };
@@ -1,3 +1,3 @@
1
- const version = "1.1.37";
1
+ const version = "1.1.39";
2
2
 
3
3
  export { version };