3h1-ui 3.0.0-next.89 → 3.0.0-next.90

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/es/index.js CHANGED
@@ -31959,6 +31959,7 @@ const setConstConfig = (config) => {
31959
31959
  DEFAULT_ALIGN = config.align;
31960
31960
  };
31961
31961
  const shyTableBasicProps = reactive({
31962
+ formLabelInInput: { type: Boolean, default: true },
31962
31963
  actionColWidth: {
31963
31964
  type: Number,
31964
31965
  default: ACTION_COLUMN_WIDTH
@@ -33821,7 +33822,7 @@ const FormItem = /* @__PURE__ */ defineComponent({
33821
33822
  schema: schema2
33822
33823
  };
33823
33824
  });
33824
- const isTableForm = computed(() => !!props2.tableAction);
33825
+ const isTableForm = computed(() => !!formProps.value.formLabelInInput);
33825
33826
  const flag = ref(0);
33826
33827
  const getComponentsProps = computed(() => {
33827
33828
  var _a2;
@@ -34732,6 +34733,10 @@ async function useAutoFocus({
34732
34733
  });
34733
34734
  }
34734
34735
  const basicProps = {
34736
+ formLabelInInput: {
34737
+ type: Boolean,
34738
+ default: false
34739
+ },
34735
34740
  model: {
34736
34741
  type: Object,
34737
34742
  default: () => ({})
@@ -39454,6 +39459,7 @@ const ShyTable = /* @__PURE__ */ defineComponent({
39454
39459
  "ref": formRef
39455
39460
  }, getFormProps.value, {
39456
39461
  "tableAction": tableAction2,
39462
+ "formLabelInInput": getBindValues.value.formLabelInInput,
39457
39463
  "onRegister": registerForm,
39458
39464
  "onSubmit": handleSearchInfoChange,
39459
39465
  "onAdvancedChange": redoHeight,
package/lib/index.js CHANGED
@@ -31983,6 +31983,7 @@ const setConstConfig = (config) => {
31983
31983
  DEFAULT_ALIGN = config.align;
31984
31984
  };
31985
31985
  const shyTableBasicProps = vue.reactive({
31986
+ formLabelInInput: { type: Boolean, default: true },
31986
31987
  actionColWidth: {
31987
31988
  type: Number,
31988
31989
  default: ACTION_COLUMN_WIDTH
@@ -33845,7 +33846,7 @@ const FormItem = /* @__PURE__ */ vue.defineComponent({
33845
33846
  schema: schema2
33846
33847
  };
33847
33848
  });
33848
- const isTableForm = vue.computed(() => !!props2.tableAction);
33849
+ const isTableForm = vue.computed(() => !!formProps.value.formLabelInInput);
33849
33850
  const flag = vue.ref(0);
33850
33851
  const getComponentsProps = vue.computed(() => {
33851
33852
  var _a2;
@@ -34756,6 +34757,10 @@ async function useAutoFocus({
34756
34757
  });
34757
34758
  }
34758
34759
  const basicProps = {
34760
+ formLabelInInput: {
34761
+ type: Boolean,
34762
+ default: false
34763
+ },
34759
34764
  model: {
34760
34765
  type: Object,
34761
34766
  default: () => ({})
@@ -39478,6 +39483,7 @@ const ShyTable = /* @__PURE__ */ vue.defineComponent({
39478
39483
  "ref": formRef
39479
39484
  }, getFormProps.value, {
39480
39485
  "tableAction": tableAction2,
39486
+ "formLabelInInput": getBindValues.value.formLabelInInput,
39481
39487
  "onRegister": registerForm,
39482
39488
  "onSubmit": handleSearchInfoChange,
39483
39489
  "onAdvancedChange": redoHeight,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "3h1-ui",
3
- "version": "3.0.0-next.89",
3
+ "version": "3.0.0-next.90",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -30,8 +30,8 @@
30
30
  "vxe-table": "^4.3.6",
31
31
  "xe-utils": "^3.5.7",
32
32
  "@shy-plugins/tinymce": "^1.0.6",
33
- "@shy-plugins/use": "1.0.1-next.3",
34
- "@shy-plugins/utils": "1.0.0-next.1"
33
+ "@shy-plugins/utils": "1.0.0-next.1",
34
+ "@shy-plugins/use": "1.0.1-next.3"
35
35
  },
36
36
  "types": "es/ui/index.d.ts",
37
37
  "devDependencies": {