@deot/vc 1.0.33 → 1.0.35

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.
@@ -30974,7 +30974,7 @@ var Vc = (function (exports, vue) {
30974
30974
  };
30975
30975
  const createPicker = (name, pickerProps, usePicker2) => /* @__PURE__ */ vue.defineComponent({
30976
30976
  name,
30977
- props: Object.assign(props$Y, pickerProps),
30977
+ props: Object.assign({}, props$Y, pickerProps),
30978
30978
  inheritAttrs: false,
30979
30979
  emits: ["update:modelValue", "change", "clear", "error", "close", "input", "ready", "visible-change", "ok"],
30980
30980
  setup(props2, {
@@ -33926,6 +33926,12 @@ var Vc = (function (exports, vue) {
33926
33926
  content,
33927
33927
  scrollTo,
33928
33928
  refresh,
33929
+ scrollLeft: scrollX,
33930
+ scrollTop: scrollY,
33931
+ clientWidth: wrapperW,
33932
+ clientHeight: wrapperH,
33933
+ scrollHeight: contentH,
33934
+ scrollWidth: contentW,
33929
33935
  setScrollTop: (value) => {
33930
33936
  scrollTo({ y: value });
33931
33937
  },
@@ -34014,7 +34020,7 @@ var Vc = (function (exports, vue) {
34014
34020
  const COMPONENT_NAME$17 = "vc-scroller-wheel";
34015
34021
  const ScrollerWheel = /* @__PURE__ */ vue.defineComponent({
34016
34022
  name: COMPONENT_NAME$17,
34017
- props: Object.assign(props$Q, {
34023
+ props: Object.assign({}, props$Q, {
34018
34024
  stopPropagation: {
34019
34025
  type: Boolean,
34020
34026
  default: true
@@ -43506,7 +43512,7 @@ var Vc = (function (exports, vue) {
43506
43512
  const COMPONENT_NAME$c = "vc-textarea";
43507
43513
  const Textarea = /* @__PURE__ */ vue.defineComponent({
43508
43514
  name: COMPONENT_NAME$c,
43509
- props: Object.assign(props$7, {
43515
+ props: Object.assign({}, props$7, {
43510
43516
  indicator: {
43511
43517
  type: [Boolean, Object],
43512
43518
  default: false
@@ -43561,7 +43567,7 @@ var Vc = (function (exports, vue) {
43561
43567
  const COMPONENT_NAME$b = "vcm-textarea";
43562
43568
  const MTextarea = /* @__PURE__ */ vue.defineComponent({
43563
43569
  name: COMPONENT_NAME$b,
43564
- props: Object.assign(props$7, {
43570
+ props: Object.assign({}, props$7, {
43565
43571
  align: {
43566
43572
  type: String,
43567
43573
  default: "left"
@@ -30977,7 +30977,7 @@
30977
30977
  };
30978
30978
  const createPicker = (name, pickerProps, usePicker2) => /* @__PURE__ */ vue.defineComponent({
30979
30979
  name,
30980
- props: Object.assign(props$Y, pickerProps),
30980
+ props: Object.assign({}, props$Y, pickerProps),
30981
30981
  inheritAttrs: false,
30982
30982
  emits: ["update:modelValue", "change", "clear", "error", "close", "input", "ready", "visible-change", "ok"],
30983
30983
  setup(props2, {
@@ -33929,6 +33929,12 @@
33929
33929
  content,
33930
33930
  scrollTo,
33931
33931
  refresh,
33932
+ scrollLeft: scrollX,
33933
+ scrollTop: scrollY,
33934
+ clientWidth: wrapperW,
33935
+ clientHeight: wrapperH,
33936
+ scrollHeight: contentH,
33937
+ scrollWidth: contentW,
33932
33938
  setScrollTop: (value) => {
33933
33939
  scrollTo({ y: value });
33934
33940
  },
@@ -34017,7 +34023,7 @@
34017
34023
  const COMPONENT_NAME$17 = "vc-scroller-wheel";
34018
34024
  const ScrollerWheel = /* @__PURE__ */ vue.defineComponent({
34019
34025
  name: COMPONENT_NAME$17,
34020
- props: Object.assign(props$Q, {
34026
+ props: Object.assign({}, props$Q, {
34021
34027
  stopPropagation: {
34022
34028
  type: Boolean,
34023
34029
  default: true
@@ -43509,7 +43515,7 @@
43509
43515
  const COMPONENT_NAME$c = "vc-textarea";
43510
43516
  const Textarea = /* @__PURE__ */ vue.defineComponent({
43511
43517
  name: COMPONENT_NAME$c,
43512
- props: Object.assign(props$7, {
43518
+ props: Object.assign({}, props$7, {
43513
43519
  indicator: {
43514
43520
  type: [Boolean, Object],
43515
43521
  default: false
@@ -43564,7 +43570,7 @@
43564
43570
  const COMPONENT_NAME$b = "vcm-textarea";
43565
43571
  const MTextarea = /* @__PURE__ */ vue.defineComponent({
43566
43572
  name: COMPONENT_NAME$b,
43567
- props: Object.assign(props$7, {
43573
+ props: Object.assign({}, props$7, {
43568
43574
  align: {
43569
43575
  type: String,
43570
43576
  default: "left"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/vc",
3
- "version": "1.0.33",
3
+ "version": "1.0.35",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@deot/vc-components": "^1.0.33",
23
- "@deot/vc-hooks": "^1.0.33",
24
- "@deot/vc-shared": "^1.0.33"
22
+ "@deot/vc-components": "^1.0.35",
23
+ "@deot/vc-hooks": "^1.0.35",
24
+ "@deot/vc-shared": "^1.0.35"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "vue": "*"