bm-admin-ui 1.0.71-alpha → 1.0.72-alpha

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.
@@ -20330,6 +20330,7 @@ var materialType = {
20330
20330
  const rule = inject.self;
20331
20331
  rule.props.value = list;
20332
20332
  inject.api.form[rule.field] = list;
20333
+ inject.api.emit('update:modelValue', inject.api.form);
20333
20334
  nextTick(() => {
20334
20335
  setTimeout(() => {
20335
20336
  inject.api.validateField(rule.field);
@@ -20365,8 +20366,9 @@ var materialType = {
20365
20366
  on: {
20366
20367
  change(inject, list) {
20367
20368
  const rule = inject.self;
20369
+ rule.value = list;
20368
20370
  rule.props.value = list;
20369
- inject.api.form[rule.field] = list;
20371
+ inject.api.emit('update:modelValue', inject.api.form);
20370
20372
  nextTick(() => {
20371
20373
  setTimeout(() => {
20372
20374
  inject.api.validateField(rule.field);
@@ -20341,6 +20341,7 @@ var materialType = {
20341
20341
  const rule = inject.self;
20342
20342
  rule.props.value = list;
20343
20343
  inject.api.form[rule.field] = list;
20344
+ inject.api.emit('update:modelValue', inject.api.form);
20344
20345
  vue.nextTick(() => {
20345
20346
  setTimeout(() => {
20346
20347
  inject.api.validateField(rule.field);
@@ -20376,8 +20377,9 @@ var materialType = {
20376
20377
  on: {
20377
20378
  change(inject, list) {
20378
20379
  const rule = inject.self;
20380
+ rule.value = list;
20379
20381
  rule.props.value = list;
20380
- inject.api.form[rule.field] = list;
20382
+ inject.api.emit('update:modelValue', inject.api.form);
20381
20383
  vue.nextTick(() => {
20382
20384
  setTimeout(() => {
20383
20385
  inject.api.validateField(rule.field);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bm-admin-ui",
3
- "version": "1.0.71-alpha",
3
+ "version": "1.0.72-alpha",
4
4
  "private": false,
5
5
  "description": "An Admin Component Library for Bm",
6
6
  "license": "UNLICENSED",