@tarojs/components 3.6.0 → 3.6.1

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 (149) hide show
  1. package/LICENSE +119 -1
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/taro-components.cjs.js +1 -1
  4. package/dist/cjs/taro-input-core.cjs.entry.js +1 -1
  5. package/dist/cjs/taro-input-core.cjs.entry.js.map +1 -1
  6. package/dist/cjs/taro-navigator-core.cjs.entry.js.map +1 -1
  7. package/dist/cjs/taro-scroll-view-core.cjs.entry.js +46 -50
  8. package/dist/cjs/taro-scroll-view-core.cjs.entry.js.map +1 -1
  9. package/dist/collection/components/input/input.js +6 -2
  10. package/dist/collection/components/input/input.js.map +1 -1
  11. package/dist/collection/components/navigator/navigator.js +0 -16
  12. package/dist/collection/components/navigator/navigator.js.map +1 -1
  13. package/dist/collection/components/scroll-view/scroll-view.js +93 -51
  14. package/dist/collection/components/scroll-view/scroll-view.js.map +1 -1
  15. package/dist/components/taro-input-core.js +1 -1
  16. package/dist/components/taro-input-core.js.map +1 -1
  17. package/dist/components/taro-navigator-core.js.map +1 -1
  18. package/dist/components/taro-scroll-view-core.js +49 -51
  19. package/dist/components/taro-scroll-view-core.js.map +1 -1
  20. package/dist/esm/loader.js +1 -1
  21. package/dist/esm/taro-components.js +1 -1
  22. package/dist/esm/taro-input-core.entry.js +1 -1
  23. package/dist/esm/taro-input-core.entry.js.map +1 -1
  24. package/dist/esm/taro-navigator-core.entry.js.map +1 -1
  25. package/dist/esm/taro-scroll-view-core.entry.js +46 -50
  26. package/dist/esm/taro-scroll-view-core.entry.js.map +1 -1
  27. package/dist/esm-es5/loader.js +1 -1
  28. package/dist/esm-es5/loader.js.map +1 -1
  29. package/dist/esm-es5/taro-components.js +1 -1
  30. package/dist/esm-es5/taro-components.js.map +1 -1
  31. package/dist/esm-es5/taro-input-core.entry.js +1 -1
  32. package/dist/esm-es5/taro-input-core.entry.js.map +1 -1
  33. package/dist/esm-es5/taro-navigator-core.entry.js.map +1 -1
  34. package/dist/esm-es5/taro-scroll-view-core.entry.js +1 -1
  35. package/dist/esm-es5/taro-scroll-view-core.entry.js.map +1 -1
  36. package/dist/taro-components/p-10046f1a.system.entry.js +2 -0
  37. package/dist/taro-components/p-10046f1a.system.entry.js.map +1 -0
  38. package/dist/taro-components/p-1c446c65.system.js +1 -1
  39. package/dist/taro-components/p-1c446c65.system.js.map +1 -1
  40. package/dist/taro-components/p-9bc9f3a0.entry.js +2 -0
  41. package/dist/taro-components/p-9bc9f3a0.entry.js.map +1 -0
  42. package/dist/taro-components/p-c6385fc2.system.entry.js +2 -0
  43. package/dist/taro-components/p-c6385fc2.system.entry.js.map +1 -0
  44. package/dist/taro-components/p-d621d190.entry.js.map +1 -1
  45. package/dist/taro-components/p-de356b29.system.entry.js.map +1 -1
  46. package/dist/taro-components/{p-5208792d.entry.js → p-fe58b450.entry.js} +2 -2
  47. package/dist/taro-components/p-fe58b450.entry.js.map +1 -0
  48. package/dist/taro-components/taro-components.esm.js +1 -1
  49. package/dist/taro-components/taro-components.esm.js.map +1 -1
  50. package/dist/types/components/input/input.d.ts +1 -1
  51. package/dist/types/components/navigator/navigator.d.ts +0 -16
  52. package/dist/types/components/scroll-view/scroll-view.d.ts +4 -1
  53. package/dist/types/components.d.ts +5 -2
  54. package/lib/react/component-lib/index.d.ts +55 -0
  55. package/lib/react/component-lib/index.js +68 -0
  56. package/lib/react/component-lib/index.js.map +1 -0
  57. package/lib/react/component-lib/input.d.ts +3 -0
  58. package/lib/react/component-lib/input.js +17 -0
  59. package/lib/react/component-lib/input.js.map +1 -0
  60. package/lib/react/component-lib/reactify-wc.d.ts +7 -0
  61. package/lib/react/component-lib/reactify-wc.js +176 -0
  62. package/lib/react/component-lib/reactify-wc.js.map +1 -0
  63. package/lib/react/react-component-lib/utils/attachProps.d.ts +1 -1
  64. package/lib/react/react-component-lib/utils/attachProps.js +1 -15
  65. package/lib/react/react-component-lib/utils/attachProps.js.map +1 -1
  66. package/lib/vue2/component-lib/components.d.ts +111 -0
  67. package/lib/vue2/component-lib/components.js +74 -0
  68. package/lib/vue2/component-lib/components.js.map +1 -0
  69. package/lib/vue2/component-lib/createComponent.d.ts +14 -0
  70. package/lib/vue2/component-lib/createComponent.js +23 -0
  71. package/lib/vue2/component-lib/createComponent.js.map +1 -0
  72. package/lib/vue2/component-lib/createFormsComponent.d.ts +22 -0
  73. package/lib/vue2/component-lib/createFormsComponent.js +53 -0
  74. package/lib/vue2/component-lib/createFormsComponent.js.map +1 -0
  75. package/lib/vue2/component-lib/icon.d.ts +16 -0
  76. package/lib/vue2/component-lib/icon.js +23 -0
  77. package/lib/vue2/component-lib/icon.js.map +1 -0
  78. package/lib/vue2/component-lib/image.d.ts +16 -0
  79. package/lib/vue2/component-lib/image.js +24 -0
  80. package/lib/vue2/component-lib/image.js.map +1 -0
  81. package/lib/vue2/component-lib/index.d.ts +1 -0
  82. package/lib/vue2/component-lib/index.js +30 -0
  83. package/lib/vue2/component-lib/index.js.map +1 -0
  84. package/lib/vue2/component-lib/mixins/listeners.d.ts +6 -0
  85. package/lib/vue2/component-lib/mixins/listeners.js +14 -0
  86. package/lib/vue2/component-lib/mixins/listeners.js.map +1 -0
  87. package/lib/vue2/component-lib/mixins/refs.d.ts +5 -0
  88. package/lib/vue2/component-lib/mixins/refs.js +53 -0
  89. package/lib/vue2/component-lib/mixins/refs.js.map +1 -0
  90. package/lib/vue2/component-lib/picker.d.ts +25 -0
  91. package/lib/vue2/component-lib/picker.js +41 -0
  92. package/lib/vue2/component-lib/picker.js.map +1 -0
  93. package/lib/vue2/component-lib/scroll-view.d.ts +17 -0
  94. package/lib/vue2/component-lib/scroll-view.js +35 -0
  95. package/lib/vue2/component-lib/scroll-view.js.map +1 -0
  96. package/lib/vue2/component-lib/text.d.ts +16 -0
  97. package/lib/vue2/component-lib/text.js +24 -0
  98. package/lib/vue2/component-lib/text.js.map +1 -0
  99. package/lib/vue2/components.d.ts +5 -2
  100. package/lib/vue2/components.js +29 -5
  101. package/lib/vue2/components.js.map +1 -1
  102. package/lib/vue2/index.js +2 -0
  103. package/lib/vue2/index.js.map +1 -1
  104. package/lib/vue2/node_modules/.pnpm/registry.npmjs.org_vue-fragment@1.6.0_vue@2.6.14/node_modules/vue-fragment/dist/vue-fragment.esm.js +4 -0
  105. package/lib/vue2/node_modules/.pnpm/registry.npmjs.org_vue-fragment@1.6.0_vue@2.6.14/node_modules/vue-fragment/dist/vue-fragment.esm.js.map +1 -0
  106. package/lib/vue2/vue-component-lib/utils.js +3 -1
  107. package/lib/vue2/vue-component-lib/utils.js.map +1 -1
  108. package/lib/vue3/component-lib/createComponent.d.ts +10 -0
  109. package/lib/vue3/component-lib/createComponent.js +21 -0
  110. package/lib/vue3/component-lib/createComponent.js.map +1 -0
  111. package/lib/vue3/component-lib/createFormsComponent.d.ts +11 -0
  112. package/lib/vue3/component-lib/createFormsComponent.js +38 -0
  113. package/lib/vue3/component-lib/createFormsComponent.js.map +1 -0
  114. package/lib/vue3/component-lib/forwardRef.d.ts +2 -0
  115. package/lib/vue3/component-lib/forwardRef.js +13 -0
  116. package/lib/vue3/component-lib/forwardRef.js.map +1 -0
  117. package/lib/vue3/component-lib/icon.d.ts +11 -0
  118. package/lib/vue3/component-lib/icon.js +20 -0
  119. package/lib/vue3/component-lib/icon.js.map +1 -0
  120. package/lib/vue3/component-lib/image.d.ts +11 -0
  121. package/lib/vue3/component-lib/image.js +21 -0
  122. package/lib/vue3/component-lib/image.js.map +1 -0
  123. package/lib/vue3/component-lib/index.d.ts +442 -0
  124. package/lib/vue3/component-lib/index.js +68 -0
  125. package/lib/vue3/component-lib/index.js.map +1 -0
  126. package/lib/vue3/component-lib/scroll-view.d.ts +11 -0
  127. package/lib/vue3/component-lib/scroll-view.js +27 -0
  128. package/lib/vue3/component-lib/scroll-view.js.map +1 -0
  129. package/lib/vue3/component-lib/text.d.ts +11 -0
  130. package/lib/vue3/component-lib/text.js +21 -0
  131. package/lib/vue3/component-lib/text.js.map +1 -0
  132. package/lib/vue3/components.d.ts +2 -2
  133. package/lib/vue3/components.js +9 -8
  134. package/lib/vue3/components.js.map +1 -1
  135. package/lib/vue3/vue-component-lib/utils.js +1 -1
  136. package/lib/vue3/vue-component-lib/utils.js.map +1 -1
  137. package/package.json +8 -8
  138. package/types/ChannelLive.d.ts +1 -1
  139. package/types/CommentList.d.ts +1 -0
  140. package/types/Form.d.ts +0 -6
  141. package/types/Navigator.d.ts +8 -8
  142. package/types/RootPortal.d.ts +0 -1
  143. package/dist/taro-components/p-5208792d.entry.js.map +0 -1
  144. package/dist/taro-components/p-5beca045.system.entry.js +0 -2
  145. package/dist/taro-components/p-5beca045.system.entry.js.map +0 -1
  146. package/dist/taro-components/p-6de64a4b.system.entry.js +0 -2
  147. package/dist/taro-components/p-6de64a4b.system.entry.js.map +0 -1
  148. package/dist/taro-components/p-71155a2c.entry.js +0 -2
  149. package/dist/taro-components/p-71155a2c.entry.js.map +0 -1
@@ -0,0 +1,35 @@
1
+ import { listeners } from './mixins/listeners.js';
2
+ import { refs } from './mixins/refs.js';
3
+
4
+ var ScrollView = {
5
+ name: 'taro-scroll-view',
6
+ mixins: [listeners, refs],
7
+ props: {
8
+ scrollX: Boolean,
9
+ scrollY: Boolean
10
+ },
11
+ render(createElement) {
12
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
13
+ const self = this;
14
+ const attrs = {};
15
+ if (self.scrollX)
16
+ attrs['scroll-x'] = true;
17
+ if (self.scrollY)
18
+ attrs['scroll-y'] = true;
19
+ return createElement('taro-scroll-view-core', {
20
+ class: ['hydrated', {
21
+ 'taro-scroll-view__scroll-x': self.scrollX,
22
+ 'taro-scroll-view__scroll-y': self.scrollY
23
+ }],
24
+ attrs,
25
+ on: Object.assign(Object.assign({}, self.listeners), { scroll(e) {
26
+ if (e instanceof CustomEvent) {
27
+ self.$emit('scroll', e);
28
+ }
29
+ } })
30
+ }, self.$slots.default);
31
+ }
32
+ };
33
+
34
+ export { ScrollView as default };
35
+ //# sourceMappingURL=scroll-view.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scroll-view.js","sources":["../../../../taro-components-library-vue2/src/component-lib/scroll-view.ts"],"sourcesContent":["import { listeners } from './mixins/listeners'\nimport { refs } from './mixins/refs'\n\nexport default {\n name: 'taro-scroll-view',\n mixins: [listeners, refs],\n props: {\n scrollX: Boolean,\n scrollY: Boolean\n },\n render (createElement) {\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const self = this\n\n const attrs = {}\n if (self.scrollX) attrs['scroll-x'] = true\n if (self.scrollY) attrs['scroll-y'] = true\n\n return createElement('taro-scroll-view-core', {\n class: ['hydrated', {\n 'taro-scroll-view__scroll-x': self.scrollX,\n 'taro-scroll-view__scroll-y': self.scrollY\n }],\n attrs,\n on: {\n ...self.listeners,\n scroll (e) {\n if (e instanceof CustomEvent) {\n self.$emit('scroll', e)\n }\n }\n }\n }, self.$slots.default)\n }\n}\n"],"names":[],"mappings":";;;AAGA,iBAAe;AACb,IAAA,IAAI,EAAE,kBAAkB;AACxB,IAAA,MAAM,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC;AACzB,IAAA,KAAK,EAAE;AACL,QAAA,OAAO,EAAE,OAAO;AAChB,QAAA,OAAO,EAAE,OAAO;AACjB,KAAA;AACD,IAAA,MAAM,CAAE,aAAa,EAAA;;QAEnB,MAAM,IAAI,GAAG,IAAI,CAAA;QAEjB,MAAM,KAAK,GAAG,EAAE,CAAA;QAChB,IAAI,IAAI,CAAC,OAAO;AAAE,YAAA,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAA;QAC1C,IAAI,IAAI,CAAC,OAAO;AAAE,YAAA,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAA;QAE1C,OAAO,aAAa,CAAC,uBAAuB,EAAE;YAC5C,KAAK,EAAE,CAAC,UAAU,EAAE;oBAClB,4BAA4B,EAAE,IAAI,CAAC,OAAO;oBAC1C,4BAA4B,EAAE,IAAI,CAAC,OAAO;iBAC3C,CAAC;YACF,KAAK;AACL,YAAA,EAAE,kCACG,IAAI,CAAC,SAAS,CACjB,EAAA,EAAA,MAAM,CAAE,CAAC,EAAA;oBACP,IAAI,CAAC,YAAY,WAAW,EAAE;AAC5B,wBAAA,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;AACxB,qBAAA;AACH,iBAAC,EACF,CAAA;AACF,SAAA,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;KACxB;CACF;;;;"}
@@ -0,0 +1,16 @@
1
+ declare const _default: {
2
+ name: string;
3
+ mixins: ({
4
+ computed: {
5
+ listeners(): any;
6
+ };
7
+ } | {
8
+ mounted(): void;
9
+ beforeDestroy(): void;
10
+ })[];
11
+ props: {
12
+ selectable: BooleanConstructor;
13
+ };
14
+ render(createElement: any): any;
15
+ };
16
+ export { _default as default };
@@ -0,0 +1,24 @@
1
+ import { listeners } from './mixins/listeners.js';
2
+ import { refs } from './mixins/refs.js';
3
+
4
+ var Text = {
5
+ name: 'taro-text',
6
+ mixins: [listeners, refs],
7
+ props: {
8
+ selectable: Boolean
9
+ },
10
+ render(createElement) {
11
+ return createElement('taro-text-core', {
12
+ class: ['hydrated', {
13
+ 'taro-text__selectable': this.selectable
14
+ }],
15
+ attrs: {
16
+ selectable: this.selectable
17
+ },
18
+ on: this.listeners
19
+ }, this.$slots.default);
20
+ }
21
+ };
22
+
23
+ export { Text as default };
24
+ //# sourceMappingURL=text.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"text.js","sources":["../../../../taro-components-library-vue2/src/component-lib/text.ts"],"sourcesContent":["import { listeners } from './mixins/listeners'\nimport { refs } from './mixins/refs'\n\nexport default {\n name: 'taro-text',\n mixins: [listeners, refs],\n props: {\n selectable: Boolean\n },\n render (createElement) {\n return createElement('taro-text-core', {\n class: ['hydrated', {\n 'taro-text__selectable': this.selectable\n }],\n attrs: {\n selectable: this.selectable\n },\n on: this.listeners\n }, this.$slots.default)\n }\n}\n"],"names":[],"mappings":";;;AAGA,WAAe;AACb,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,MAAM,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC;AACzB,IAAA,KAAK,EAAE;AACL,QAAA,UAAU,EAAE,OAAO;AACpB,KAAA;AACD,IAAA,MAAM,CAAE,aAAa,EAAA;QACnB,OAAO,aAAa,CAAC,gBAAgB,EAAE;YACrC,KAAK,EAAE,CAAC,UAAU,EAAE;oBAClB,uBAAuB,EAAE,IAAI,CAAC,UAAU;iBACzC,CAAC;AACF,YAAA,KAAK,EAAE;gBACL,UAAU,EAAE,IAAI,CAAC,UAAU;AAC5B,aAAA;YACD,EAAE,EAAE,IAAI,CAAC,SAAS;AACnB,SAAA,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;KACxB;CACF;;;;"}
@@ -214,7 +214,10 @@ declare const RichText: import("vue/types/vue").ExtendedVue<Vue, unknown, unknow
214
214
  declare const RootPortal: import("vue/types/vue").ExtendedVue<Vue, unknown, unknown, unknown, Record<never, any>>;
215
215
  declare const RtcRoom: import("vue/types/vue").ExtendedVue<Vue, unknown, unknown, unknown, Record<never, any>>;
216
216
  declare const RtcRoomItem: import("vue/types/vue").ExtendedVue<Vue, unknown, unknown, unknown, Record<never, any>>;
217
- declare const ScrollView: import("vue/types/vue").ExtendedVue<Vue, unknown, unknown, unknown, {
217
+ declare const ScrollView: import("vue/types/vue").ExtendedVue<Vue, unknown, {
218
+ mpScrollToMethod: (object: import("@tarojs/taro").ScrollViewContext.scrollTo.Option) => Promise<void>;
219
+ mpScrollIntoViewMethod: (selector: string) => Promise<void>;
220
+ }, unknown, {
218
221
  scrollX: boolean;
219
222
  scrollY: boolean;
220
223
  upperThreshold: string | number;
@@ -222,7 +225,7 @@ declare const ScrollView: import("vue/types/vue").ExtendedVue<Vue, unknown, unkn
222
225
  mpScrollTop: string | number;
223
226
  mpScrollLeft: string | number;
224
227
  mpScrollIntoView: string;
225
- scrollWithAnimation: boolean;
228
+ animated: boolean;
226
229
  }>;
227
230
  declare const ShareElement: import("vue/types/vue").ExtendedVue<Vue, unknown, unknown, unknown, Record<never, any>>;
228
231
  declare const Slider: import("vue/types/vue").ExtendedVue<Vue, unknown, unknown, unknown, {
@@ -10,7 +10,7 @@ const customElementTags = [
10
10
  'taro-ar-camera-core',
11
11
  'taro-audio-core',
12
12
  'taro-aweme-data-core',
13
- 'taro-block-core',
13
+ 'fragment',
14
14
  'taro-button-core',
15
15
  'taro-camera-core',
16
16
  'taro-canvas-core',
@@ -21,7 +21,7 @@ const customElementTags = [
21
21
  'taro-contact-button-core',
22
22
  'taro-cover-image-core',
23
23
  'taro-cover-view-core',
24
- 'taro-custom-wrapper-core',
24
+ 'fragment',
25
25
  'taro-editor-core',
26
26
  'taro-follow-swan-core',
27
27
  'taro-form-core',
@@ -111,7 +111,7 @@ const AwemeData = /*@__PURE__*/ Vue.extend({
111
111
  render: createCommonRender('taro-aweme-data-core', []),
112
112
  });
113
113
  const Block = /*@__PURE__*/ Vue.extend({
114
- render: createCommonRender('taro-block-core', []),
114
+ render: createCommonRender('fragment', []),
115
115
  });
116
116
  const Button = /*@__PURE__*/ Vue.extend({
117
117
  props: {
@@ -181,7 +181,7 @@ const CoverView = /*@__PURE__*/ Vue.extend({
181
181
  render: createCommonRender('taro-cover-view-core', ['longpress']),
182
182
  });
183
183
  const CustomWrapper = /*@__PURE__*/ Vue.extend({
184
- render: createCommonRender('taro-custom-wrapper-core', []),
184
+ render: createCommonRender('fragment', []),
185
185
  });
186
186
  const Editor = /*@__PURE__*/ Vue.extend({
187
187
  render: createCommonRender('taro-editor-core', []),
@@ -228,6 +228,10 @@ const Input = /*@__PURE__*/ Vue.extend({
228
228
  name: {},
229
229
  nativeProps: {},
230
230
  },
231
+ model: {
232
+ prop: 'value',
233
+ event: 'update:modelValue'
234
+ },
231
235
  methods: {
232
236
  focus: createCommonMethod('focus'),
233
237
  },
@@ -335,6 +339,10 @@ const Picker = /*@__PURE__*/ Vue.extend({
335
339
  fields: {},
336
340
  name: {},
337
341
  },
342
+ model: {
343
+ prop: 'value',
344
+ event: 'update:modelValue'
345
+ },
338
346
  render: createCommonRender('taro-picker-core', ['change', 'columnchange', 'cancel']),
339
347
  });
340
348
  const PickerGroup = /*@__PURE__*/ Vue.extend({
@@ -436,7 +444,11 @@ const ScrollView = /*@__PURE__*/ Vue.extend({
436
444
  mpScrollTop: {},
437
445
  mpScrollLeft: {},
438
446
  mpScrollIntoView: {},
439
- scrollWithAnimation: {},
447
+ animated: {},
448
+ },
449
+ methods: {
450
+ mpScrollToMethod: createCommonMethod('mpScrollToMethod'),
451
+ mpScrollIntoViewMethod: createCommonMethod('mpScrollIntoViewMethod'),
440
452
  },
441
453
  render: createCommonRender('taro-scroll-view-core', ['scroll', 'scrolltoupper', 'scrolltolower']),
442
454
  });
@@ -457,6 +469,10 @@ const Slider = /*@__PURE__*/ Vue.extend({
457
469
  showValue: {},
458
470
  name: {},
459
471
  },
472
+ model: {
473
+ prop: 'value',
474
+ event: 'update:modelValue'
475
+ },
460
476
  render: createCommonRender('taro-slider-core', ['change', 'changing']),
461
477
  });
462
478
  const Slot = /*@__PURE__*/ Vue.extend({
@@ -496,6 +512,10 @@ const Switch = /*@__PURE__*/ Vue.extend({
496
512
  disabled: {},
497
513
  nativeProps: {},
498
514
  },
515
+ model: {
516
+ prop: 'checked',
517
+ event: 'update:modelValue'
518
+ },
499
519
  render: createCommonRender('taro-switch-core', ['change']),
500
520
  });
501
521
  const TabItem = /*@__PURE__*/ Vue.extend({
@@ -527,6 +547,10 @@ const Textarea = /*@__PURE__*/ Vue.extend({
527
547
  name: {},
528
548
  nativeProps: {},
529
549
  },
550
+ model: {
551
+ prop: 'value',
552
+ event: 'update:modelValue'
553
+ },
530
554
  methods: {
531
555
  focus: createCommonMethod('focus'),
532
556
  },
@@ -1 +1 @@
1
- {"version":3,"file":"components.js","sources":["../../../taro-components-library-vue2/src/components.ts"],"sourcesContent":["/* eslint-disable */\n/* tslint:disable */\n/* auto-generated vue proxies */\nimport Vue, { PropOptions } from 'vue';\nimport { createCommonRender, createCommonMethod } from './vue-component-lib/utils';\n\nimport type { Components } from '@tarojs/components/dist/types/components';\n\n\n\n\nconst customElementTags: string[] = [\n 'taro-ad-core',\n 'taro-ad-custom-core',\n 'taro-animation-video-core',\n 'taro-animation-view-core',\n 'taro-ar-camera-core',\n 'taro-audio-core',\n 'taro-aweme-data-core',\n 'taro-block-core',\n 'taro-button-core',\n 'taro-camera-core',\n 'taro-canvas-core',\n 'taro-checkbox-core',\n 'taro-checkbox-group-core',\n 'taro-comment-detail-core',\n 'taro-comment-list-core',\n 'taro-contact-button-core',\n 'taro-cover-image-core',\n 'taro-cover-view-core',\n 'taro-custom-wrapper-core',\n 'taro-editor-core',\n 'taro-follow-swan-core',\n 'taro-form-core',\n 'taro-functional-page-navigator-core',\n 'taro-icon-core',\n 'taro-image-core',\n 'taro-inline-payment-panel-core',\n 'taro-input-core',\n 'taro-keyboard-accessory-core',\n 'taro-label-core',\n 'taro-lifestyle-core',\n 'taro-like-core',\n 'taro-live-player-core',\n 'taro-live-pusher-core',\n 'taro-login-core',\n 'taro-lottie-core',\n 'taro-map-core',\n 'taro-match-media-core',\n 'taro-movable-area-core',\n 'taro-movable-view-core',\n 'taro-native-slot-core',\n 'taro-navigation-bar-core',\n 'taro-navigator-core',\n 'taro-official-account-core',\n 'taro-open-data-core',\n 'taro-page-container-core',\n 'taro-page-meta-core',\n 'taro-picker-core',\n 'taro-picker-group',\n 'taro-picker-view-column-core',\n 'taro-picker-view-core',\n 'taro-progress-core',\n 'taro-pull-to-refresh',\n 'taro-radio-core',\n 'taro-radio-group-core',\n 'taro-rich-text-core',\n 'taro-root-portal-core',\n 'taro-rtc-room-core',\n 'taro-rtc-room-item-core',\n 'taro-scroll-view-core',\n 'taro-share-element-core',\n 'taro-slider-core',\n 'taro-slot-core',\n 'taro-swiper-core',\n 'taro-swiper-item-core',\n 'taro-switch-core',\n 'taro-tab-item-core',\n 'taro-tabbar',\n 'taro-tabs-core',\n 'taro-text-core',\n 'taro-textarea-core',\n 'taro-video-control',\n 'taro-video-core',\n 'taro-video-danmu',\n 'taro-view-core',\n 'taro-voip-room-core',\n 'taro-web-view-core',\n];\nVue.config.ignoredElements = [...Vue.config.ignoredElements, ...customElementTags];\n\n\nexport const Ad = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-ad-core', []),\n});\n\n\nexport const AdCustom = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-ad-custom-core', []),\n});\n\n\nexport const AnimationVideo = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-animation-video-core', []),\n});\n\n\nexport const AnimationView = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-animation-view-core', []),\n});\n\n\nexport const ArCamera = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-ar-camera-core', []),\n});\n\n\nexport const Audio = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroAudioCore['src']>,\n controls: {} as PropOptions<Components.TaroAudioCore['controls']>,\n autoplay: {} as PropOptions<Components.TaroAudioCore['autoplay']>,\n loop: {} as PropOptions<Components.TaroAudioCore['loop']>,\n muted: {} as PropOptions<Components.TaroAudioCore['muted']>,\n nativeProps: {} as PropOptions<Components.TaroAudioCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-audio-core', ['error', 'play', 'pause', 'timeupdate', 'ended']),\n});\n\n\nexport const AwemeData = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-aweme-data-core', []),\n});\n\n\nexport const Block = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-block-core', []),\n});\n\n\nexport const Button = /*@__PURE__*/ Vue.extend({\n\n props: {\n disabled: {} as PropOptions<Components.TaroButtonCore['disabled']>,\n hoverClass: {} as PropOptions<Components.TaroButtonCore['hoverClass']>,\n type: {} as PropOptions<Components.TaroButtonCore['type']>,\n hoverStartTime: {} as PropOptions<Components.TaroButtonCore['hoverStartTime']>,\n hoverStayTime: {} as PropOptions<Components.TaroButtonCore['hoverStayTime']>,\n size: {} as PropOptions<Components.TaroButtonCore['size']>,\n plain: {} as PropOptions<Components.TaroButtonCore['plain']>,\n loading: {} as PropOptions<Components.TaroButtonCore['loading']>,\n formType: {} as PropOptions<Components.TaroButtonCore['formType']>,\n },\n\n\n render: createCommonRender('taro-button-core', ['tarobuttonsubmit', 'tarobuttonreset']),\n});\n\n\nexport const Camera = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-camera-core', []),\n});\n\n\nexport const Canvas = /*@__PURE__*/ Vue.extend({\n\n props: {\n canvasId: {} as PropOptions<Components.TaroCanvasCore['canvasId']>,\n nativeProps: {} as PropOptions<Components.TaroCanvasCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-canvas-core', ['longtap']),\n});\n\n\nexport const Checkbox = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroCheckboxCore['name']>,\n value: {} as PropOptions<Components.TaroCheckboxCore['value']>,\n color: {} as PropOptions<Components.TaroCheckboxCore['color']>,\n id: {} as PropOptions<Components.TaroCheckboxCore['id']>,\n checked: {} as PropOptions<Components.TaroCheckboxCore['checked']>,\n disabled: {} as PropOptions<Components.TaroCheckboxCore['disabled']>,\n nativeProps: {} as PropOptions<Components.TaroCheckboxCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-checkbox-core', ['checkboxchange']),\n});\n\n\nexport const CheckboxGroup = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroCheckboxGroupCore['name']>,\n },\n\n\n render: createCommonRender('taro-checkbox-group-core', ['change']),\n});\n\n\nexport const CommentDetail = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-comment-detail-core', []),\n});\n\n\nexport const CommentList = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-comment-list-core', []),\n});\n\n\nexport const ContactButton = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-contact-button-core', []),\n});\n\n\nexport const CoverImage = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroCoverImageCore['src']>,\n nativeProps: {} as PropOptions<Components.TaroCoverImageCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-cover-image-core', ['load', 'error']),\n});\n\n\nexport const CoverView = /*@__PURE__*/ Vue.extend({\n\n props: {\n animation: {} as PropOptions<Components.TaroCoverViewCore['animation']>,\n hoverClass: {} as PropOptions<Components.TaroCoverViewCore['hoverClass']>,\n hoverStartTime: {} as PropOptions<Components.TaroCoverViewCore['hoverStartTime']>,\n hoverStayTime: {} as PropOptions<Components.TaroCoverViewCore['hoverStayTime']>,\n },\n\n\n render: createCommonRender('taro-cover-view-core', ['longpress']),\n});\n\n\nexport const CustomWrapper = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-custom-wrapper-core', []),\n});\n\n\nexport const Editor = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-editor-core', []),\n});\n\n\nexport const FollowSwan = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-follow-swan-core', []),\n});\n\n\nexport const Form = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-form-core', ['submit']),\n});\n\n\nexport const FunctionalPageNavigator = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-functional-page-navigator-core', []),\n});\n\n\nexport const Icon = /*@__PURE__*/ Vue.extend({\n\n props: {\n type: {} as PropOptions<Components.TaroIconCore['type']>,\n size: {} as PropOptions<Components.TaroIconCore['size']>,\n color: {} as PropOptions<Components.TaroIconCore['color']>,\n },\n\n\n render: createCommonRender('taro-icon-core', []),\n});\n\n\nexport const Image = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroImageCore['src']>,\n mode: {} as PropOptions<Components.TaroImageCore['mode']>,\n lazyLoad: {} as PropOptions<Components.TaroImageCore['lazyLoad']>,\n nativeProps: {} as PropOptions<Components.TaroImageCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-image-core', ['load', 'error']),\n});\n\n\nexport const InlinePaymentPanel = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-inline-payment-panel-core', []),\n});\n\n\nexport const Input = /*@__PURE__*/ Vue.extend({\n\n props: {\n value: {} as PropOptions<Components.TaroInputCore['value']>,\n type: {} as PropOptions<Components.TaroInputCore['type']>,\n password: {} as PropOptions<Components.TaroInputCore['password']>,\n placeholder: {} as PropOptions<Components.TaroInputCore['placeholder']>,\n disabled: {} as PropOptions<Components.TaroInputCore['disabled']>,\n maxlength: {} as PropOptions<Components.TaroInputCore['maxlength']>,\n autoFocus: {} as PropOptions<Components.TaroInputCore['autoFocus']>,\n confirmType: {} as PropOptions<Components.TaroInputCore['confirmType']>,\n name: {} as PropOptions<Components.TaroInputCore['name']>,\n nativeProps: {} as PropOptions<Components.TaroInputCore['nativeProps']>,\n },\n\n\n methods: {\n focus: createCommonMethod('focus') as Components.TaroInputCore['focus'],\n },\n render: createCommonRender('taro-input-core', ['input', 'paste', 'focus', 'blur', 'confirm', 'change', 'keydown']),\n});\n\n\nexport const KeyboardAccessory = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-keyboard-accessory-core', []),\n});\n\n\nexport const Label = /*@__PURE__*/ Vue.extend({\n\n props: {\n for: {} as PropOptions<Components.TaroLabelCore['for']>,\n },\n\n\n render: createCommonRender('taro-label-core', []),\n});\n\n\nexport const Lifestyle = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-lifestyle-core', []),\n});\n\n\nexport const Like = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-like-core', []),\n});\n\n\nexport const LivePlayer = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-live-player-core', []),\n});\n\n\nexport const LivePusher = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-live-pusher-core', []),\n});\n\n\nexport const Login = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-login-core', []),\n});\n\n\nexport const Lottie = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-lottie-core', []),\n});\n\n\nexport const Map = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-map-core', []),\n});\n\n\nexport const MatchMedia = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-match-media-core', []),\n});\n\n\nexport const MovableArea = /*@__PURE__*/ Vue.extend({\n\n props: {\n scaleArea: {} as PropOptions<Components.TaroMovableAreaCore['scaleArea']>,\n },\n\n\n render: createCommonRender('taro-movable-area-core', []),\n});\n\n\nexport const MovableView = /*@__PURE__*/ Vue.extend({\n\n props: {\n x: {} as PropOptions<Components.TaroMovableViewCore['x']>,\n y: {} as PropOptions<Components.TaroMovableViewCore['y']>,\n direction: {} as PropOptions<Components.TaroMovableViewCore['direction']>,\n outOfBounds: {} as PropOptions<Components.TaroMovableViewCore['outOfBounds']>,\n inertia: {} as PropOptions<Components.TaroMovableViewCore['inertia']>,\n friction: {} as PropOptions<Components.TaroMovableViewCore['friction']>,\n damping: {} as PropOptions<Components.TaroMovableViewCore['damping']>,\n disabled: {} as PropOptions<Components.TaroMovableViewCore['disabled']>,\n scale: {} as PropOptions<Components.TaroMovableViewCore['scale']>,\n scaleMin: {} as PropOptions<Components.TaroMovableViewCore['scaleMin']>,\n scaleMax: {} as PropOptions<Components.TaroMovableViewCore['scaleMax']>,\n scaleValue: {} as PropOptions<Components.TaroMovableViewCore['scaleValue']>,\n animation: {} as PropOptions<Components.TaroMovableViewCore['animation']>,\n },\n\n\n methods: {\n setParent: createCommonMethod('setParent') as Components.TaroMovableViewCore['setParent'],\n endScale: createCommonMethod('endScale') as Components.TaroMovableViewCore['endScale'],\n setScale: createCommonMethod('setScale') as Components.TaroMovableViewCore['setScale'],\n },\n render: createCommonRender('taro-movable-view-core', ['change', 'scale', 'htouchmove', 'vtouchmove']),\n});\n\n\nexport const NativeSlot = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-native-slot-core', []),\n});\n\n\nexport const NavigationBar = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-navigation-bar-core', []),\n});\n\n\nexport const Navigator = /*@__PURE__*/ Vue.extend({\n\n props: {\n hoverClass: {} as PropOptions<Components.TaroNavigatorCore['hoverClass']>,\n url: {} as PropOptions<Components.TaroNavigatorCore['url']>,\n openType: {} as PropOptions<Components.TaroNavigatorCore['openType']>,\n isHover: {} as PropOptions<Components.TaroNavigatorCore['isHover']>,\n delta: {} as PropOptions<Components.TaroNavigatorCore['delta']>,\n },\n\n\n render: createCommonRender('taro-navigator-core', ['cuccess', 'fail', 'Complete']),\n});\n\n\nexport const OfficialAccount = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-official-account-core', []),\n});\n\n\nexport const OpenData = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-open-data-core', []),\n});\n\n\nexport const PageContainer = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-page-container-core', []),\n});\n\n\nexport const PageMeta = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-page-meta-core', []),\n});\n\n\nexport const Picker = /*@__PURE__*/ Vue.extend({\n\n props: {\n mode: {} as PropOptions<Components.TaroPickerCore['mode']>,\n disabled: {} as PropOptions<Components.TaroPickerCore['disabled']>,\n range: {} as PropOptions<Components.TaroPickerCore['range']>,\n rangeKey: {} as PropOptions<Components.TaroPickerCore['rangeKey']>,\n value: {} as PropOptions<Components.TaroPickerCore['value']>,\n start: {} as PropOptions<Components.TaroPickerCore['start']>,\n end: {} as PropOptions<Components.TaroPickerCore['end']>,\n fields: {} as PropOptions<Components.TaroPickerCore['fields']>,\n name: {} as PropOptions<Components.TaroPickerCore['name']>,\n },\n\n\n render: createCommonRender('taro-picker-core', ['change', 'columnchange', 'cancel']),\n});\n\n\nexport const PickerGroup = /*@__PURE__*/ Vue.extend({\n\n props: {\n mode: {} as PropOptions<Components.TaroPickerGroup['mode']>,\n range: {} as PropOptions<Components.TaroPickerGroup['range']>,\n rangeKey: {} as PropOptions<Components.TaroPickerGroup['rangeKey']>,\n height: {} as PropOptions<Components.TaroPickerGroup['height']>,\n columnId: {} as PropOptions<Components.TaroPickerGroup['columnId']>,\n updateHeight: {} as PropOptions<Components.TaroPickerGroup['updateHeight']>,\n onColumnChange: {} as PropOptions<Components.TaroPickerGroup['onColumnChange']>,\n updateDay: {} as PropOptions<Components.TaroPickerGroup['updateDay']>,\n },\n\n\n methods: {\n handleMoveStart: createCommonMethod('handleMoveStart') as Components.TaroPickerGroup['handleMoveStart'],\n handleMoving: createCommonMethod('handleMoving') as Components.TaroPickerGroup['handleMoving'],\n handleMoveEnd: createCommonMethod('handleMoveEnd') as Components.TaroPickerGroup['handleMoveEnd'],\n },\n render: createCommonRender('taro-picker-group', []),\n});\n\n\nexport const PickerViewColumn = /*@__PURE__*/ Vue.extend({\n\n props: {\n col: {} as PropOptions<Components.TaroPickerViewColumnCore['col']>,\n initialPosition: {} as PropOptions<Components.TaroPickerViewColumnCore['initialPosition']>,\n paddingVertical: {} as PropOptions<Components.TaroPickerViewColumnCore['paddingVertical']>,\n },\n\n\n render: createCommonRender('taro-picker-view-column-core', ['onselect', 'onselectstart', 'onselectend']),\n});\n\n\nexport const PickerView = /*@__PURE__*/ Vue.extend({\n\n props: {\n indicatorStyle: {} as PropOptions<Components.TaroPickerViewCore['indicatorStyle']>,\n indicatorClass: {} as PropOptions<Components.TaroPickerViewCore['indicatorClass']>,\n value: {} as PropOptions<Components.TaroPickerViewCore['value']>,\n maskStyle: {} as PropOptions<Components.TaroPickerViewCore['maskStyle']>,\n maskClass: {} as PropOptions<Components.TaroPickerViewCore['maskClass']>,\n },\n\n\n render: createCommonRender('taro-picker-view-core', ['change', 'pickstart', 'pickend']),\n});\n\n\nexport const Progress = /*@__PURE__*/ Vue.extend({\n\n props: {\n percent: {} as PropOptions<Components.TaroProgressCore['percent']>,\n showInfo: {} as PropOptions<Components.TaroProgressCore['showInfo']>,\n borderRadius: {} as PropOptions<Components.TaroProgressCore['borderRadius']>,\n fontSize: {} as PropOptions<Components.TaroProgressCore['fontSize']>,\n strokeWidth: {} as PropOptions<Components.TaroProgressCore['strokeWidth']>,\n activeColor: {} as PropOptions<Components.TaroProgressCore['activeColor']>,\n backgroundColor: {} as PropOptions<Components.TaroProgressCore['backgroundColor']>,\n active: {} as PropOptions<Components.TaroProgressCore['active']>,\n },\n\n\n render: createCommonRender('taro-progress-core', []),\n});\n\n\nexport const PullToRefresh = /*@__PURE__*/ Vue.extend({\n\n props: {\n prefixCls: {} as PropOptions<Components.TaroPullToRefresh['prefixCls']>,\n distanceToRefresh: {} as PropOptions<Components.TaroPullToRefresh['distanceToRefresh']>,\n damping: {} as PropOptions<Components.TaroPullToRefresh['damping']>,\n indicator: {} as PropOptions<Components.TaroPullToRefresh['indicator']>,\n },\n\n\n render: createCommonRender('taro-pull-to-refresh', ['refresh']),\n});\n\n\nexport const Radio = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroRadioCore['name']>,\n value: {} as PropOptions<Components.TaroRadioCore['value']>,\n id: {} as PropOptions<Components.TaroRadioCore['id']>,\n checked: {} as PropOptions<Components.TaroRadioCore['checked']>,\n disabled: {} as PropOptions<Components.TaroRadioCore['disabled']>,\n nativeProps: {} as PropOptions<Components.TaroRadioCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-radio-core', ['radiochange']),\n});\n\n\nexport const RadioGroup = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroRadioGroupCore['name']>,\n },\n\n\n render: createCommonRender('taro-radio-group-core', ['change']),\n});\n\n\nexport const RichText = /*@__PURE__*/ Vue.extend({\n\n props: {\n nodes: {} as PropOptions<Components.TaroRichTextCore['nodes']>,\n },\n\n\n render: createCommonRender('taro-rich-text-core', []),\n});\n\n\nexport const RootPortal = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-root-portal-core', []),\n});\n\n\nexport const RtcRoom = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-rtc-room-core', []),\n});\n\n\nexport const RtcRoomItem = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-rtc-room-item-core', []),\n});\n\n\nexport const ScrollView = /*@__PURE__*/ Vue.extend({\n\n props: {\n scrollX: {} as PropOptions<Components.TaroScrollViewCore['scrollX']>,\n scrollY: {} as PropOptions<Components.TaroScrollViewCore['scrollY']>,\n upperThreshold: {} as PropOptions<Components.TaroScrollViewCore['upperThreshold']>,\n lowerThreshold: {} as PropOptions<Components.TaroScrollViewCore['lowerThreshold']>,\n mpScrollTop: {} as PropOptions<Components.TaroScrollViewCore['mpScrollTop']>,\n mpScrollLeft: {} as PropOptions<Components.TaroScrollViewCore['mpScrollLeft']>,\n mpScrollIntoView: {} as PropOptions<Components.TaroScrollViewCore['mpScrollIntoView']>,\n scrollWithAnimation: {} as PropOptions<Components.TaroScrollViewCore['scrollWithAnimation']>,\n },\n\n\n render: createCommonRender('taro-scroll-view-core', ['scroll', 'scrolltoupper', 'scrolltolower']),\n});\n\n\nexport const ShareElement = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-share-element-core', []),\n});\n\n\nexport const Slider = /*@__PURE__*/ Vue.extend({\n\n props: {\n min: {} as PropOptions<Components.TaroSliderCore['min']>,\n max: {} as PropOptions<Components.TaroSliderCore['max']>,\n step: {} as PropOptions<Components.TaroSliderCore['step']>,\n disabled: {} as PropOptions<Components.TaroSliderCore['disabled']>,\n value: {} as PropOptions<Components.TaroSliderCore['value']>,\n activeColor: {} as PropOptions<Components.TaroSliderCore['activeColor']>,\n backgroundColor: {} as PropOptions<Components.TaroSliderCore['backgroundColor']>,\n blockSize: {} as PropOptions<Components.TaroSliderCore['blockSize']>,\n blockColor: {} as PropOptions<Components.TaroSliderCore['blockColor']>,\n showValue: {} as PropOptions<Components.TaroSliderCore['showValue']>,\n name: {} as PropOptions<Components.TaroSliderCore['name']>,\n },\n\n\n render: createCommonRender('taro-slider-core', ['change', 'changing']),\n});\n\n\nexport const Slot = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-slot-core', []),\n});\n\n\nexport const Swiper = /*@__PURE__*/ Vue.extend({\n\n props: {\n indicatorDots: {} as PropOptions<Components.TaroSwiperCore['indicatorDots']>,\n indicatorColor: {} as PropOptions<Components.TaroSwiperCore['indicatorColor']>,\n indicatorActiveColor: {} as PropOptions<Components.TaroSwiperCore['indicatorActiveColor']>,\n autoplay: {} as PropOptions<Components.TaroSwiperCore['autoplay']>,\n current: {} as PropOptions<Components.TaroSwiperCore['current']>,\n interval: {} as PropOptions<Components.TaroSwiperCore['interval']>,\n duration: {} as PropOptions<Components.TaroSwiperCore['duration']>,\n circular: {} as PropOptions<Components.TaroSwiperCore['circular']>,\n vertical: {} as PropOptions<Components.TaroSwiperCore['vertical']>,\n previousMargin: {} as PropOptions<Components.TaroSwiperCore['previousMargin']>,\n nextMargin: {} as PropOptions<Components.TaroSwiperCore['nextMargin']>,\n displayMultipleItems: {} as PropOptions<Components.TaroSwiperCore['displayMultipleItems']>,\n full: {} as PropOptions<Components.TaroSwiperCore['full']>,\n zoom: {} as PropOptions<Components.TaroSwiperCore['zoom']>,\n },\n\n\n render: createCommonRender('taro-swiper-core', ['change', 'animationfinish']),\n});\n\n\nexport const SwiperItem = /*@__PURE__*/ Vue.extend({\n\n props: {\n itemId: {} as PropOptions<Components.TaroSwiperItemCore['itemId']>,\n },\n\n\n render: createCommonRender('taro-swiper-item-core', []),\n});\n\n\nexport const Switch = /*@__PURE__*/ Vue.extend({\n\n props: {\n type: {} as PropOptions<Components.TaroSwitchCore['type']>,\n checked: {} as PropOptions<Components.TaroSwitchCore['checked']>,\n color: {} as PropOptions<Components.TaroSwitchCore['color']>,\n name: {} as PropOptions<Components.TaroSwitchCore['name']>,\n disabled: {} as PropOptions<Components.TaroSwitchCore['disabled']>,\n nativeProps: {} as PropOptions<Components.TaroSwitchCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-switch-core', ['change']),\n});\n\n\nexport const TabItem = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-tab-item-core', []),\n});\n\n\nexport const Tabbar = /*@__PURE__*/ Vue.extend({\n\n props: {\n conf: {} as PropOptions<Components.TaroTabbar['conf']>,\n },\n\n\n render: createCommonRender('taro-tabbar', ['longpress']),\n});\n\n\nexport const Tabs = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-tabs-core', []),\n});\n\n\nexport const Text = /*@__PURE__*/ Vue.extend({\n\n props: {\n selectable: {} as PropOptions<Components.TaroTextCore['selectable']>,\n },\n\n\n render: createCommonRender('taro-text-core', []),\n});\n\n\nexport const Textarea = /*@__PURE__*/ Vue.extend({\n\n props: {\n value: {} as PropOptions<Components.TaroTextareaCore['value']>,\n placeholder: {} as PropOptions<Components.TaroTextareaCore['placeholder']>,\n disabled: {} as PropOptions<Components.TaroTextareaCore['disabled']>,\n maxlength: {} as PropOptions<Components.TaroTextareaCore['maxlength']>,\n autoFocus: {} as PropOptions<Components.TaroTextareaCore['autoFocus']>,\n autoHeight: {} as PropOptions<Components.TaroTextareaCore['autoHeight']>,\n name: {} as PropOptions<Components.TaroTextareaCore['name']>,\n nativeProps: {} as PropOptions<Components.TaroTextareaCore['nativeProps']>,\n },\n\n\n methods: {\n focus: createCommonMethod('focus') as Components.TaroTextareaCore['focus'],\n },\n render: createCommonRender('taro-textarea-core', ['input', 'focus', 'blur', 'change', 'linechange']),\n});\n\n\nexport const VideoControl = /*@__PURE__*/ Vue.extend({\n\n props: {\n controls: {} as PropOptions<Components.TaroVideoControl['controls']>,\n currentTime: {} as PropOptions<Components.TaroVideoControl['currentTime']>,\n duration: {} as PropOptions<Components.TaroVideoControl['duration']>,\n isPlaying: {} as PropOptions<Components.TaroVideoControl['isPlaying']>,\n pauseFunc: {} as PropOptions<Components.TaroVideoControl['pauseFunc']>,\n playFunc: {} as PropOptions<Components.TaroVideoControl['playFunc']>,\n seekFunc: {} as PropOptions<Components.TaroVideoControl['seekFunc']>,\n showPlayBtn: {} as PropOptions<Components.TaroVideoControl['showPlayBtn']>,\n showProgress: {} as PropOptions<Components.TaroVideoControl['showProgress']>,\n },\n\n\n methods: {\n setProgressBall: createCommonMethod('setProgressBall') as Components.TaroVideoControl['setProgressBall'],\n toggleVisibility: createCommonMethod('toggleVisibility') as Components.TaroVideoControl['toggleVisibility'],\n getIsDraggingProgressBall: createCommonMethod('getIsDraggingProgressBall') as Components.TaroVideoControl['getIsDraggingProgressBall'],\n setCurrentTime: createCommonMethod('setCurrentTime') as Components.TaroVideoControl['setCurrentTime'],\n },\n render: createCommonRender('taro-video-control', []),\n});\n\n\nexport const Video = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroVideoCore['src']>,\n duration: {} as PropOptions<Components.TaroVideoCore['duration']>,\n controls: {} as PropOptions<Components.TaroVideoCore['controls']>,\n autoplay: {} as PropOptions<Components.TaroVideoCore['autoplay']>,\n loop: {} as PropOptions<Components.TaroVideoCore['loop']>,\n muted: {} as PropOptions<Components.TaroVideoCore['muted']>,\n initialTime: {} as PropOptions<Components.TaroVideoCore['initialTime']>,\n poster: {} as PropOptions<Components.TaroVideoCore['poster']>,\n objectFit: {} as PropOptions<Components.TaroVideoCore['objectFit']>,\n showProgress: {} as PropOptions<Components.TaroVideoCore['showProgress']>,\n showFullscreenBtn: {} as PropOptions<Components.TaroVideoCore['showFullscreenBtn']>,\n showPlayBtn: {} as PropOptions<Components.TaroVideoCore['showPlayBtn']>,\n showCenterPlayBtn: {} as PropOptions<Components.TaroVideoCore['showCenterPlayBtn']>,\n showMuteBtn: {} as PropOptions<Components.TaroVideoCore['showMuteBtn']>,\n danmuList: {} as PropOptions<Components.TaroVideoCore['danmuList']>,\n danmuBtn: {} as PropOptions<Components.TaroVideoCore['danmuBtn']>,\n enableDanmu: {} as PropOptions<Components.TaroVideoCore['enableDanmu']>,\n enablePlayGesture: {} as PropOptions<Components.TaroVideoCore['enablePlayGesture']>,\n enableProgressGesture: {} as PropOptions<Components.TaroVideoCore['enableProgressGesture']>,\n vslideGesture: {} as PropOptions<Components.TaroVideoCore['vslideGesture']>,\n vslideGestureInFullscreen: {} as PropOptions<Components.TaroVideoCore['vslideGestureInFullscreen']>,\n nativeProps: {} as PropOptions<Components.TaroVideoCore['nativeProps']>,\n },\n\n\n methods: {\n getHlsObject: createCommonMethod('getHlsObject') as Components.TaroVideoCore['getHlsObject'],\n play: createCommonMethod('play') as Components.TaroVideoCore['play'],\n pause: createCommonMethod('pause') as Components.TaroVideoCore['pause'],\n stop: createCommonMethod('stop') as Components.TaroVideoCore['stop'],\n seek: createCommonMethod('seek') as Components.TaroVideoCore['seek'],\n requestFullScreen: createCommonMethod('requestFullScreen') as Components.TaroVideoCore['requestFullScreen'],\n exitFullScreen: createCommonMethod('exitFullScreen') as Components.TaroVideoCore['exitFullScreen'],\n },\n render: createCommonRender('taro-video-core', ['play', 'pause', 'ended', 'timeupdate', 'error', 'fullscreenchange', 'progress', 'loadedmetadata']),\n});\n\n\nexport const VideoDanmu = /*@__PURE__*/ Vue.extend({\n\n props: {\n enable: {} as PropOptions<Components.TaroVideoDanmu['enable']>,\n },\n\n\n methods: {\n sendDanmu: createCommonMethod('sendDanmu') as Components.TaroVideoDanmu['sendDanmu'],\n tick: createCommonMethod('tick') as Components.TaroVideoDanmu['tick'],\n },\n render: createCommonRender('taro-video-danmu', []),\n});\n\n\nexport const View = /*@__PURE__*/ Vue.extend({\n\n props: {\n animation: {} as PropOptions<Components.TaroViewCore['animation']>,\n hoverClass: {} as PropOptions<Components.TaroViewCore['hoverClass']>,\n hoverStartTime: {} as PropOptions<Components.TaroViewCore['hoverStartTime']>,\n hoverStayTime: {} as PropOptions<Components.TaroViewCore['hoverStayTime']>,\n },\n\n\n render: createCommonRender('taro-view-core', ['longpress']),\n});\n\n\nexport const VoipRoom = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-voip-room-core', []),\n});\n\n\nexport const WebView = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroWebViewCore['src']>,\n },\n\n\n render: createCommonRender('taro-web-view-core', ['load', 'error']),\n});\n\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"components.js","sources":["../../../taro-components-library-vue2/src/components.ts"],"sourcesContent":["/* eslint-disable */\n/* tslint:disable */\n/* auto-generated vue proxies */\nimport Vue, { PropOptions } from 'vue';\nimport { createCommonRender, createCommonMethod } from './vue-component-lib/utils';\n\nimport type { Components } from '@tarojs/components/dist/types/components';\n\n\n\n\nconst customElementTags: string[] = [\n 'taro-ad-core',\n 'taro-ad-custom-core',\n 'taro-animation-video-core',\n 'taro-animation-view-core',\n 'taro-ar-camera-core',\n 'taro-audio-core',\n 'taro-aweme-data-core',\n 'fragment',\n 'taro-button-core',\n 'taro-camera-core',\n 'taro-canvas-core',\n 'taro-checkbox-core',\n 'taro-checkbox-group-core',\n 'taro-comment-detail-core',\n 'taro-comment-list-core',\n 'taro-contact-button-core',\n 'taro-cover-image-core',\n 'taro-cover-view-core',\n 'fragment',\n 'taro-editor-core',\n 'taro-follow-swan-core',\n 'taro-form-core',\n 'taro-functional-page-navigator-core',\n 'taro-icon-core',\n 'taro-image-core',\n 'taro-inline-payment-panel-core',\n 'taro-input-core',\n 'taro-keyboard-accessory-core',\n 'taro-label-core',\n 'taro-lifestyle-core',\n 'taro-like-core',\n 'taro-live-player-core',\n 'taro-live-pusher-core',\n 'taro-login-core',\n 'taro-lottie-core',\n 'taro-map-core',\n 'taro-match-media-core',\n 'taro-movable-area-core',\n 'taro-movable-view-core',\n 'taro-native-slot-core',\n 'taro-navigation-bar-core',\n 'taro-navigator-core',\n 'taro-official-account-core',\n 'taro-open-data-core',\n 'taro-page-container-core',\n 'taro-page-meta-core',\n 'taro-picker-core',\n 'taro-picker-group',\n 'taro-picker-view-column-core',\n 'taro-picker-view-core',\n 'taro-progress-core',\n 'taro-pull-to-refresh',\n 'taro-radio-core',\n 'taro-radio-group-core',\n 'taro-rich-text-core',\n 'taro-root-portal-core',\n 'taro-rtc-room-core',\n 'taro-rtc-room-item-core',\n 'taro-scroll-view-core',\n 'taro-share-element-core',\n 'taro-slider-core',\n 'taro-slot-core',\n 'taro-swiper-core',\n 'taro-swiper-item-core',\n 'taro-switch-core',\n 'taro-tab-item-core',\n 'taro-tabbar',\n 'taro-tabs-core',\n 'taro-text-core',\n 'taro-textarea-core',\n 'taro-video-control',\n 'taro-video-core',\n 'taro-video-danmu',\n 'taro-view-core',\n 'taro-voip-room-core',\n 'taro-web-view-core',\n];\nVue.config.ignoredElements = [...Vue.config.ignoredElements, ...customElementTags];\n\n\nexport const Ad = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-ad-core', []),\n});\n\n\nexport const AdCustom = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-ad-custom-core', []),\n});\n\n\nexport const AnimationVideo = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-animation-video-core', []),\n});\n\n\nexport const AnimationView = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-animation-view-core', []),\n});\n\n\nexport const ArCamera = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-ar-camera-core', []),\n});\n\n\nexport const Audio = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroAudioCore['src']>,\n controls: {} as PropOptions<Components.TaroAudioCore['controls']>,\n autoplay: {} as PropOptions<Components.TaroAudioCore['autoplay']>,\n loop: {} as PropOptions<Components.TaroAudioCore['loop']>,\n muted: {} as PropOptions<Components.TaroAudioCore['muted']>,\n nativeProps: {} as PropOptions<Components.TaroAudioCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-audio-core', ['error', 'play', 'pause', 'timeupdate', 'ended']),\n});\n\n\nexport const AwemeData = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-aweme-data-core', []),\n});\n\n\nexport const Block = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('fragment', []),\n});\n\n\nexport const Button = /*@__PURE__*/ Vue.extend({\n\n props: {\n disabled: {} as PropOptions<Components.TaroButtonCore['disabled']>,\n hoverClass: {} as PropOptions<Components.TaroButtonCore['hoverClass']>,\n type: {} as PropOptions<Components.TaroButtonCore['type']>,\n hoverStartTime: {} as PropOptions<Components.TaroButtonCore['hoverStartTime']>,\n hoverStayTime: {} as PropOptions<Components.TaroButtonCore['hoverStayTime']>,\n size: {} as PropOptions<Components.TaroButtonCore['size']>,\n plain: {} as PropOptions<Components.TaroButtonCore['plain']>,\n loading: {} as PropOptions<Components.TaroButtonCore['loading']>,\n formType: {} as PropOptions<Components.TaroButtonCore['formType']>,\n },\n\n\n render: createCommonRender('taro-button-core', ['tarobuttonsubmit', 'tarobuttonreset']),\n});\n\n\nexport const Camera = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-camera-core', []),\n});\n\n\nexport const Canvas = /*@__PURE__*/ Vue.extend({\n\n props: {\n canvasId: {} as PropOptions<Components.TaroCanvasCore['canvasId']>,\n nativeProps: {} as PropOptions<Components.TaroCanvasCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-canvas-core', ['longtap']),\n});\n\n\nexport const Checkbox = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroCheckboxCore['name']>,\n value: {} as PropOptions<Components.TaroCheckboxCore['value']>,\n color: {} as PropOptions<Components.TaroCheckboxCore['color']>,\n id: {} as PropOptions<Components.TaroCheckboxCore['id']>,\n checked: {} as PropOptions<Components.TaroCheckboxCore['checked']>,\n disabled: {} as PropOptions<Components.TaroCheckboxCore['disabled']>,\n nativeProps: {} as PropOptions<Components.TaroCheckboxCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-checkbox-core', ['checkboxchange']),\n});\n\n\nexport const CheckboxGroup = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroCheckboxGroupCore['name']>,\n },\n\n\n render: createCommonRender('taro-checkbox-group-core', ['change']),\n});\n\n\nexport const CommentDetail = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-comment-detail-core', []),\n});\n\n\nexport const CommentList = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-comment-list-core', []),\n});\n\n\nexport const ContactButton = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-contact-button-core', []),\n});\n\n\nexport const CoverImage = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroCoverImageCore['src']>,\n nativeProps: {} as PropOptions<Components.TaroCoverImageCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-cover-image-core', ['load', 'error']),\n});\n\n\nexport const CoverView = /*@__PURE__*/ Vue.extend({\n\n props: {\n animation: {} as PropOptions<Components.TaroCoverViewCore['animation']>,\n hoverClass: {} as PropOptions<Components.TaroCoverViewCore['hoverClass']>,\n hoverStartTime: {} as PropOptions<Components.TaroCoverViewCore['hoverStartTime']>,\n hoverStayTime: {} as PropOptions<Components.TaroCoverViewCore['hoverStayTime']>,\n },\n\n\n render: createCommonRender('taro-cover-view-core', ['longpress']),\n});\n\n\nexport const CustomWrapper = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('fragment', []),\n});\n\n\nexport const Editor = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-editor-core', []),\n});\n\n\nexport const FollowSwan = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-follow-swan-core', []),\n});\n\n\nexport const Form = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-form-core', ['submit']),\n});\n\n\nexport const FunctionalPageNavigator = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-functional-page-navigator-core', []),\n});\n\n\nexport const Icon = /*@__PURE__*/ Vue.extend({\n\n props: {\n type: {} as PropOptions<Components.TaroIconCore['type']>,\n size: {} as PropOptions<Components.TaroIconCore['size']>,\n color: {} as PropOptions<Components.TaroIconCore['color']>,\n },\n\n\n render: createCommonRender('taro-icon-core', []),\n});\n\n\nexport const Image = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroImageCore['src']>,\n mode: {} as PropOptions<Components.TaroImageCore['mode']>,\n lazyLoad: {} as PropOptions<Components.TaroImageCore['lazyLoad']>,\n nativeProps: {} as PropOptions<Components.TaroImageCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-image-core', ['load', 'error']),\n});\n\n\nexport const InlinePaymentPanel = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-inline-payment-panel-core', []),\n});\n\n\nexport const Input = /*@__PURE__*/ Vue.extend({\n\n props: {\n value: {} as PropOptions<Components.TaroInputCore['value']>,\n type: {} as PropOptions<Components.TaroInputCore['type']>,\n password: {} as PropOptions<Components.TaroInputCore['password']>,\n placeholder: {} as PropOptions<Components.TaroInputCore['placeholder']>,\n disabled: {} as PropOptions<Components.TaroInputCore['disabled']>,\n maxlength: {} as PropOptions<Components.TaroInputCore['maxlength']>,\n autoFocus: {} as PropOptions<Components.TaroInputCore['autoFocus']>,\n confirmType: {} as PropOptions<Components.TaroInputCore['confirmType']>,\n name: {} as PropOptions<Components.TaroInputCore['name']>,\n nativeProps: {} as PropOptions<Components.TaroInputCore['nativeProps']>,\n },\n\n model: {\n prop: 'value',\n event: 'update:modelValue'\n },\n\n methods: {\n focus: createCommonMethod('focus') as Components.TaroInputCore['focus'],\n },\n render: createCommonRender('taro-input-core', ['input', 'paste', 'focus', 'blur', 'confirm', 'change', 'keydown']),\n});\n\n\nexport const KeyboardAccessory = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-keyboard-accessory-core', []),\n});\n\n\nexport const Label = /*@__PURE__*/ Vue.extend({\n\n props: {\n for: {} as PropOptions<Components.TaroLabelCore['for']>,\n },\n\n\n render: createCommonRender('taro-label-core', []),\n});\n\n\nexport const Lifestyle = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-lifestyle-core', []),\n});\n\n\nexport const Like = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-like-core', []),\n});\n\n\nexport const LivePlayer = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-live-player-core', []),\n});\n\n\nexport const LivePusher = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-live-pusher-core', []),\n});\n\n\nexport const Login = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-login-core', []),\n});\n\n\nexport const Lottie = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-lottie-core', []),\n});\n\n\nexport const Map = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-map-core', []),\n});\n\n\nexport const MatchMedia = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-match-media-core', []),\n});\n\n\nexport const MovableArea = /*@__PURE__*/ Vue.extend({\n\n props: {\n scaleArea: {} as PropOptions<Components.TaroMovableAreaCore['scaleArea']>,\n },\n\n\n render: createCommonRender('taro-movable-area-core', []),\n});\n\n\nexport const MovableView = /*@__PURE__*/ Vue.extend({\n\n props: {\n x: {} as PropOptions<Components.TaroMovableViewCore['x']>,\n y: {} as PropOptions<Components.TaroMovableViewCore['y']>,\n direction: {} as PropOptions<Components.TaroMovableViewCore['direction']>,\n outOfBounds: {} as PropOptions<Components.TaroMovableViewCore['outOfBounds']>,\n inertia: {} as PropOptions<Components.TaroMovableViewCore['inertia']>,\n friction: {} as PropOptions<Components.TaroMovableViewCore['friction']>,\n damping: {} as PropOptions<Components.TaroMovableViewCore['damping']>,\n disabled: {} as PropOptions<Components.TaroMovableViewCore['disabled']>,\n scale: {} as PropOptions<Components.TaroMovableViewCore['scale']>,\n scaleMin: {} as PropOptions<Components.TaroMovableViewCore['scaleMin']>,\n scaleMax: {} as PropOptions<Components.TaroMovableViewCore['scaleMax']>,\n scaleValue: {} as PropOptions<Components.TaroMovableViewCore['scaleValue']>,\n animation: {} as PropOptions<Components.TaroMovableViewCore['animation']>,\n },\n\n\n methods: {\n setParent: createCommonMethod('setParent') as Components.TaroMovableViewCore['setParent'],\n endScale: createCommonMethod('endScale') as Components.TaroMovableViewCore['endScale'],\n setScale: createCommonMethod('setScale') as Components.TaroMovableViewCore['setScale'],\n },\n render: createCommonRender('taro-movable-view-core', ['change', 'scale', 'htouchmove', 'vtouchmove']),\n});\n\n\nexport const NativeSlot = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-native-slot-core', []),\n});\n\n\nexport const NavigationBar = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-navigation-bar-core', []),\n});\n\n\nexport const Navigator = /*@__PURE__*/ Vue.extend({\n\n props: {\n hoverClass: {} as PropOptions<Components.TaroNavigatorCore['hoverClass']>,\n url: {} as PropOptions<Components.TaroNavigatorCore['url']>,\n openType: {} as PropOptions<Components.TaroNavigatorCore['openType']>,\n isHover: {} as PropOptions<Components.TaroNavigatorCore['isHover']>,\n delta: {} as PropOptions<Components.TaroNavigatorCore['delta']>,\n },\n\n\n render: createCommonRender('taro-navigator-core', ['cuccess', 'fail', 'Complete']),\n});\n\n\nexport const OfficialAccount = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-official-account-core', []),\n});\n\n\nexport const OpenData = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-open-data-core', []),\n});\n\n\nexport const PageContainer = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-page-container-core', []),\n});\n\n\nexport const PageMeta = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-page-meta-core', []),\n});\n\n\nexport const Picker = /*@__PURE__*/ Vue.extend({\n\n props: {\n mode: {} as PropOptions<Components.TaroPickerCore['mode']>,\n disabled: {} as PropOptions<Components.TaroPickerCore['disabled']>,\n range: {} as PropOptions<Components.TaroPickerCore['range']>,\n rangeKey: {} as PropOptions<Components.TaroPickerCore['rangeKey']>,\n value: {} as PropOptions<Components.TaroPickerCore['value']>,\n start: {} as PropOptions<Components.TaroPickerCore['start']>,\n end: {} as PropOptions<Components.TaroPickerCore['end']>,\n fields: {} as PropOptions<Components.TaroPickerCore['fields']>,\n name: {} as PropOptions<Components.TaroPickerCore['name']>,\n },\n\n model: {\n prop: 'value',\n event: 'update:modelValue'\n },\n\n render: createCommonRender('taro-picker-core', ['change', 'columnchange', 'cancel']),\n});\n\n\nexport const PickerGroup = /*@__PURE__*/ Vue.extend({\n\n props: {\n mode: {} as PropOptions<Components.TaroPickerGroup['mode']>,\n range: {} as PropOptions<Components.TaroPickerGroup['range']>,\n rangeKey: {} as PropOptions<Components.TaroPickerGroup['rangeKey']>,\n height: {} as PropOptions<Components.TaroPickerGroup['height']>,\n columnId: {} as PropOptions<Components.TaroPickerGroup['columnId']>,\n updateHeight: {} as PropOptions<Components.TaroPickerGroup['updateHeight']>,\n onColumnChange: {} as PropOptions<Components.TaroPickerGroup['onColumnChange']>,\n updateDay: {} as PropOptions<Components.TaroPickerGroup['updateDay']>,\n },\n\n\n methods: {\n handleMoveStart: createCommonMethod('handleMoveStart') as Components.TaroPickerGroup['handleMoveStart'],\n handleMoving: createCommonMethod('handleMoving') as Components.TaroPickerGroup['handleMoving'],\n handleMoveEnd: createCommonMethod('handleMoveEnd') as Components.TaroPickerGroup['handleMoveEnd'],\n },\n render: createCommonRender('taro-picker-group', []),\n});\n\n\nexport const PickerViewColumn = /*@__PURE__*/ Vue.extend({\n\n props: {\n col: {} as PropOptions<Components.TaroPickerViewColumnCore['col']>,\n initialPosition: {} as PropOptions<Components.TaroPickerViewColumnCore['initialPosition']>,\n paddingVertical: {} as PropOptions<Components.TaroPickerViewColumnCore['paddingVertical']>,\n },\n\n\n render: createCommonRender('taro-picker-view-column-core', ['onselect', 'onselectstart', 'onselectend']),\n});\n\n\nexport const PickerView = /*@__PURE__*/ Vue.extend({\n\n props: {\n indicatorStyle: {} as PropOptions<Components.TaroPickerViewCore['indicatorStyle']>,\n indicatorClass: {} as PropOptions<Components.TaroPickerViewCore['indicatorClass']>,\n value: {} as PropOptions<Components.TaroPickerViewCore['value']>,\n maskStyle: {} as PropOptions<Components.TaroPickerViewCore['maskStyle']>,\n maskClass: {} as PropOptions<Components.TaroPickerViewCore['maskClass']>,\n },\n\n\n render: createCommonRender('taro-picker-view-core', ['change', 'pickstart', 'pickend']),\n});\n\n\nexport const Progress = /*@__PURE__*/ Vue.extend({\n\n props: {\n percent: {} as PropOptions<Components.TaroProgressCore['percent']>,\n showInfo: {} as PropOptions<Components.TaroProgressCore['showInfo']>,\n borderRadius: {} as PropOptions<Components.TaroProgressCore['borderRadius']>,\n fontSize: {} as PropOptions<Components.TaroProgressCore['fontSize']>,\n strokeWidth: {} as PropOptions<Components.TaroProgressCore['strokeWidth']>,\n activeColor: {} as PropOptions<Components.TaroProgressCore['activeColor']>,\n backgroundColor: {} as PropOptions<Components.TaroProgressCore['backgroundColor']>,\n active: {} as PropOptions<Components.TaroProgressCore['active']>,\n },\n\n\n render: createCommonRender('taro-progress-core', []),\n});\n\n\nexport const PullToRefresh = /*@__PURE__*/ Vue.extend({\n\n props: {\n prefixCls: {} as PropOptions<Components.TaroPullToRefresh['prefixCls']>,\n distanceToRefresh: {} as PropOptions<Components.TaroPullToRefresh['distanceToRefresh']>,\n damping: {} as PropOptions<Components.TaroPullToRefresh['damping']>,\n indicator: {} as PropOptions<Components.TaroPullToRefresh['indicator']>,\n },\n\n\n render: createCommonRender('taro-pull-to-refresh', ['refresh']),\n});\n\n\nexport const Radio = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroRadioCore['name']>,\n value: {} as PropOptions<Components.TaroRadioCore['value']>,\n id: {} as PropOptions<Components.TaroRadioCore['id']>,\n checked: {} as PropOptions<Components.TaroRadioCore['checked']>,\n disabled: {} as PropOptions<Components.TaroRadioCore['disabled']>,\n nativeProps: {} as PropOptions<Components.TaroRadioCore['nativeProps']>,\n },\n\n\n render: createCommonRender('taro-radio-core', ['radiochange']),\n});\n\n\nexport const RadioGroup = /*@__PURE__*/ Vue.extend({\n\n props: {\n name: {} as PropOptions<Components.TaroRadioGroupCore['name']>,\n },\n\n\n render: createCommonRender('taro-radio-group-core', ['change']),\n});\n\n\nexport const RichText = /*@__PURE__*/ Vue.extend({\n\n props: {\n nodes: {} as PropOptions<Components.TaroRichTextCore['nodes']>,\n },\n\n\n render: createCommonRender('taro-rich-text-core', []),\n});\n\n\nexport const RootPortal = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-root-portal-core', []),\n});\n\n\nexport const RtcRoom = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-rtc-room-core', []),\n});\n\n\nexport const RtcRoomItem = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-rtc-room-item-core', []),\n});\n\n\nexport const ScrollView = /*@__PURE__*/ Vue.extend({\n\n props: {\n scrollX: {} as PropOptions<Components.TaroScrollViewCore['scrollX']>,\n scrollY: {} as PropOptions<Components.TaroScrollViewCore['scrollY']>,\n upperThreshold: {} as PropOptions<Components.TaroScrollViewCore['upperThreshold']>,\n lowerThreshold: {} as PropOptions<Components.TaroScrollViewCore['lowerThreshold']>,\n mpScrollTop: {} as PropOptions<Components.TaroScrollViewCore['mpScrollTop']>,\n mpScrollLeft: {} as PropOptions<Components.TaroScrollViewCore['mpScrollLeft']>,\n mpScrollIntoView: {} as PropOptions<Components.TaroScrollViewCore['mpScrollIntoView']>,\n animated: {} as PropOptions<Components.TaroScrollViewCore['animated']>,\n },\n\n\n methods: {\n mpScrollToMethod: createCommonMethod('mpScrollToMethod') as Components.TaroScrollViewCore['mpScrollToMethod'],\n mpScrollIntoViewMethod: createCommonMethod('mpScrollIntoViewMethod') as Components.TaroScrollViewCore['mpScrollIntoViewMethod'],\n },\n render: createCommonRender('taro-scroll-view-core', ['scroll', 'scrolltoupper', 'scrolltolower']),\n});\n\n\nexport const ShareElement = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-share-element-core', []),\n});\n\n\nexport const Slider = /*@__PURE__*/ Vue.extend({\n\n props: {\n min: {} as PropOptions<Components.TaroSliderCore['min']>,\n max: {} as PropOptions<Components.TaroSliderCore['max']>,\n step: {} as PropOptions<Components.TaroSliderCore['step']>,\n disabled: {} as PropOptions<Components.TaroSliderCore['disabled']>,\n value: {} as PropOptions<Components.TaroSliderCore['value']>,\n activeColor: {} as PropOptions<Components.TaroSliderCore['activeColor']>,\n backgroundColor: {} as PropOptions<Components.TaroSliderCore['backgroundColor']>,\n blockSize: {} as PropOptions<Components.TaroSliderCore['blockSize']>,\n blockColor: {} as PropOptions<Components.TaroSliderCore['blockColor']>,\n showValue: {} as PropOptions<Components.TaroSliderCore['showValue']>,\n name: {} as PropOptions<Components.TaroSliderCore['name']>,\n },\n\n model: {\n prop: 'value',\n event: 'update:modelValue'\n },\n\n render: createCommonRender('taro-slider-core', ['change', 'changing']),\n});\n\n\nexport const Slot = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-slot-core', []),\n});\n\n\nexport const Swiper = /*@__PURE__*/ Vue.extend({\n\n props: {\n indicatorDots: {} as PropOptions<Components.TaroSwiperCore['indicatorDots']>,\n indicatorColor: {} as PropOptions<Components.TaroSwiperCore['indicatorColor']>,\n indicatorActiveColor: {} as PropOptions<Components.TaroSwiperCore['indicatorActiveColor']>,\n autoplay: {} as PropOptions<Components.TaroSwiperCore['autoplay']>,\n current: {} as PropOptions<Components.TaroSwiperCore['current']>,\n interval: {} as PropOptions<Components.TaroSwiperCore['interval']>,\n duration: {} as PropOptions<Components.TaroSwiperCore['duration']>,\n circular: {} as PropOptions<Components.TaroSwiperCore['circular']>,\n vertical: {} as PropOptions<Components.TaroSwiperCore['vertical']>,\n previousMargin: {} as PropOptions<Components.TaroSwiperCore['previousMargin']>,\n nextMargin: {} as PropOptions<Components.TaroSwiperCore['nextMargin']>,\n displayMultipleItems: {} as PropOptions<Components.TaroSwiperCore['displayMultipleItems']>,\n full: {} as PropOptions<Components.TaroSwiperCore['full']>,\n zoom: {} as PropOptions<Components.TaroSwiperCore['zoom']>,\n },\n\n\n render: createCommonRender('taro-swiper-core', ['change', 'animationfinish']),\n});\n\n\nexport const SwiperItem = /*@__PURE__*/ Vue.extend({\n\n props: {\n itemId: {} as PropOptions<Components.TaroSwiperItemCore['itemId']>,\n },\n\n\n render: createCommonRender('taro-swiper-item-core', []),\n});\n\n\nexport const Switch = /*@__PURE__*/ Vue.extend({\n\n props: {\n type: {} as PropOptions<Components.TaroSwitchCore['type']>,\n checked: {} as PropOptions<Components.TaroSwitchCore['checked']>,\n color: {} as PropOptions<Components.TaroSwitchCore['color']>,\n name: {} as PropOptions<Components.TaroSwitchCore['name']>,\n disabled: {} as PropOptions<Components.TaroSwitchCore['disabled']>,\n nativeProps: {} as PropOptions<Components.TaroSwitchCore['nativeProps']>,\n },\n\n model: {\n prop: 'checked',\n event: 'update:modelValue'\n },\n\n render: createCommonRender('taro-switch-core', ['change']),\n});\n\n\nexport const TabItem = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-tab-item-core', []),\n});\n\n\nexport const Tabbar = /*@__PURE__*/ Vue.extend({\n\n props: {\n conf: {} as PropOptions<Components.TaroTabbar['conf']>,\n },\n\n\n render: createCommonRender('taro-tabbar', ['longpress']),\n});\n\n\nexport const Tabs = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-tabs-core', []),\n});\n\n\nexport const Text = /*@__PURE__*/ Vue.extend({\n\n props: {\n selectable: {} as PropOptions<Components.TaroTextCore['selectable']>,\n },\n\n\n render: createCommonRender('taro-text-core', []),\n});\n\n\nexport const Textarea = /*@__PURE__*/ Vue.extend({\n\n props: {\n value: {} as PropOptions<Components.TaroTextareaCore['value']>,\n placeholder: {} as PropOptions<Components.TaroTextareaCore['placeholder']>,\n disabled: {} as PropOptions<Components.TaroTextareaCore['disabled']>,\n maxlength: {} as PropOptions<Components.TaroTextareaCore['maxlength']>,\n autoFocus: {} as PropOptions<Components.TaroTextareaCore['autoFocus']>,\n autoHeight: {} as PropOptions<Components.TaroTextareaCore['autoHeight']>,\n name: {} as PropOptions<Components.TaroTextareaCore['name']>,\n nativeProps: {} as PropOptions<Components.TaroTextareaCore['nativeProps']>,\n },\n\n model: {\n prop: 'value',\n event: 'update:modelValue'\n },\n\n methods: {\n focus: createCommonMethod('focus') as Components.TaroTextareaCore['focus'],\n },\n render: createCommonRender('taro-textarea-core', ['input', 'focus', 'blur', 'change', 'linechange']),\n});\n\n\nexport const VideoControl = /*@__PURE__*/ Vue.extend({\n\n props: {\n controls: {} as PropOptions<Components.TaroVideoControl['controls']>,\n currentTime: {} as PropOptions<Components.TaroVideoControl['currentTime']>,\n duration: {} as PropOptions<Components.TaroVideoControl['duration']>,\n isPlaying: {} as PropOptions<Components.TaroVideoControl['isPlaying']>,\n pauseFunc: {} as PropOptions<Components.TaroVideoControl['pauseFunc']>,\n playFunc: {} as PropOptions<Components.TaroVideoControl['playFunc']>,\n seekFunc: {} as PropOptions<Components.TaroVideoControl['seekFunc']>,\n showPlayBtn: {} as PropOptions<Components.TaroVideoControl['showPlayBtn']>,\n showProgress: {} as PropOptions<Components.TaroVideoControl['showProgress']>,\n },\n\n\n methods: {\n setProgressBall: createCommonMethod('setProgressBall') as Components.TaroVideoControl['setProgressBall'],\n toggleVisibility: createCommonMethod('toggleVisibility') as Components.TaroVideoControl['toggleVisibility'],\n getIsDraggingProgressBall: createCommonMethod('getIsDraggingProgressBall') as Components.TaroVideoControl['getIsDraggingProgressBall'],\n setCurrentTime: createCommonMethod('setCurrentTime') as Components.TaroVideoControl['setCurrentTime'],\n },\n render: createCommonRender('taro-video-control', []),\n});\n\n\nexport const Video = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroVideoCore['src']>,\n duration: {} as PropOptions<Components.TaroVideoCore['duration']>,\n controls: {} as PropOptions<Components.TaroVideoCore['controls']>,\n autoplay: {} as PropOptions<Components.TaroVideoCore['autoplay']>,\n loop: {} as PropOptions<Components.TaroVideoCore['loop']>,\n muted: {} as PropOptions<Components.TaroVideoCore['muted']>,\n initialTime: {} as PropOptions<Components.TaroVideoCore['initialTime']>,\n poster: {} as PropOptions<Components.TaroVideoCore['poster']>,\n objectFit: {} as PropOptions<Components.TaroVideoCore['objectFit']>,\n showProgress: {} as PropOptions<Components.TaroVideoCore['showProgress']>,\n showFullscreenBtn: {} as PropOptions<Components.TaroVideoCore['showFullscreenBtn']>,\n showPlayBtn: {} as PropOptions<Components.TaroVideoCore['showPlayBtn']>,\n showCenterPlayBtn: {} as PropOptions<Components.TaroVideoCore['showCenterPlayBtn']>,\n showMuteBtn: {} as PropOptions<Components.TaroVideoCore['showMuteBtn']>,\n danmuList: {} as PropOptions<Components.TaroVideoCore['danmuList']>,\n danmuBtn: {} as PropOptions<Components.TaroVideoCore['danmuBtn']>,\n enableDanmu: {} as PropOptions<Components.TaroVideoCore['enableDanmu']>,\n enablePlayGesture: {} as PropOptions<Components.TaroVideoCore['enablePlayGesture']>,\n enableProgressGesture: {} as PropOptions<Components.TaroVideoCore['enableProgressGesture']>,\n vslideGesture: {} as PropOptions<Components.TaroVideoCore['vslideGesture']>,\n vslideGestureInFullscreen: {} as PropOptions<Components.TaroVideoCore['vslideGestureInFullscreen']>,\n nativeProps: {} as PropOptions<Components.TaroVideoCore['nativeProps']>,\n },\n\n\n methods: {\n getHlsObject: createCommonMethod('getHlsObject') as Components.TaroVideoCore['getHlsObject'],\n play: createCommonMethod('play') as Components.TaroVideoCore['play'],\n pause: createCommonMethod('pause') as Components.TaroVideoCore['pause'],\n stop: createCommonMethod('stop') as Components.TaroVideoCore['stop'],\n seek: createCommonMethod('seek') as Components.TaroVideoCore['seek'],\n requestFullScreen: createCommonMethod('requestFullScreen') as Components.TaroVideoCore['requestFullScreen'],\n exitFullScreen: createCommonMethod('exitFullScreen') as Components.TaroVideoCore['exitFullScreen'],\n },\n render: createCommonRender('taro-video-core', ['play', 'pause', 'ended', 'timeupdate', 'error', 'fullscreenchange', 'progress', 'loadedmetadata']),\n});\n\n\nexport const VideoDanmu = /*@__PURE__*/ Vue.extend({\n\n props: {\n enable: {} as PropOptions<Components.TaroVideoDanmu['enable']>,\n },\n\n\n methods: {\n sendDanmu: createCommonMethod('sendDanmu') as Components.TaroVideoDanmu['sendDanmu'],\n tick: createCommonMethod('tick') as Components.TaroVideoDanmu['tick'],\n },\n render: createCommonRender('taro-video-danmu', []),\n});\n\n\nexport const View = /*@__PURE__*/ Vue.extend({\n\n props: {\n animation: {} as PropOptions<Components.TaroViewCore['animation']>,\n hoverClass: {} as PropOptions<Components.TaroViewCore['hoverClass']>,\n hoverStartTime: {} as PropOptions<Components.TaroViewCore['hoverStartTime']>,\n hoverStayTime: {} as PropOptions<Components.TaroViewCore['hoverStayTime']>,\n },\n\n\n render: createCommonRender('taro-view-core', ['longpress']),\n});\n\n\nexport const VoipRoom = /*@__PURE__*/ Vue.extend({\n\n\n\n render: createCommonRender('taro-voip-room-core', []),\n});\n\n\nexport const WebView = /*@__PURE__*/ Vue.extend({\n\n props: {\n src: {} as PropOptions<Components.TaroWebViewCore['src']>,\n },\n\n\n render: createCommonRender('taro-web-view-core', ['load', 'error']),\n});\n\n"],"names":[],"mappings":"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"}
package/lib/vue2/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import Vue from 'vue';
2
+ import index from './node_modules/.pnpm/registry.npmjs.org_vue-fragment@1.6.0_vue@2.6.14/node_modules/vue-fragment/dist/vue-fragment.esm.js';
2
3
  import * as components from './components.js';
3
4
  export { Ad, AdCustom, AnimationVideo, AnimationView, ArCamera, Audio, AwemeData, Block, Button, Camera, Canvas, Checkbox, CheckboxGroup, CommentDetail, CommentList, ContactButton, CoverImage, CoverView, CustomWrapper, Editor, FollowSwan, Form, FunctionalPageNavigator, Icon, Image, InlinePaymentPanel, Input, KeyboardAccessory, Label, Lifestyle, Like, LivePlayer, LivePusher, Login, Lottie, Map, MatchMedia, MovableArea, MovableView, NativeSlot, NavigationBar, Navigator, OfficialAccount, OpenData, PageContainer, PageMeta, Picker, PickerGroup, PickerView, PickerViewColumn, Progress, PullToRefresh, Radio, RadioGroup, RichText, RootPortal, RtcRoom, RtcRoomItem, ScrollView, ShareElement, Slider, Slot, Swiper, SwiperItem, Switch, TabItem, Tabbar, Tabs, Text, Textarea, Video, VideoControl, VideoDanmu, View, VoipRoom, WebView } from './components.js';
4
5
 
@@ -8,6 +9,7 @@ function initVue2Components() {
8
9
  if (!((_a = Vue.config.ignoredElements) === null || _a === void 0 ? void 0 : _a.includes(ignoredElements[0]))) {
9
10
  Vue.config.ignoredElements = [...Vue.config.ignoredElements, ...ignoredElements];
10
11
  }
12
+ Vue.use(index.Plugin);
11
13
  Object.entries(components).forEach(params => {
12
14
  const [name, definition] = params;
13
15
  if (definition) {
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../taro-components-library-vue2/src/index.ts"],"sourcesContent":["import Vue from 'vue'\nimport { ExtendedVue } from 'vue/types/vue'\n\nimport * as components from './components'\n\nexport function initVue2Components () {\n const ignoredElements = [/^taro-/, 'root', 'block']\n if (!Vue.config.ignoredElements?.includes(ignoredElements[0])) {\n Vue.config.ignoredElements = [...Vue.config.ignoredElements, ...ignoredElements]\n }\n Object.entries(components).forEach(params => {\n const [name, definition] = params as [string, ExtendedVue<Vue, unknown, unknown, unknown, Record<string, unknown>>]\n if (definition) {\n const tagName = 'taro' + name.replace(new RegExp('([A-Z])', 'g'), '-$1').toLowerCase()\n Vue.component(tagName, definition)\n }\n })\n}\n\nexport * from './components'\n"],"names":[],"mappings":";;;;SAKgB,kBAAkB,GAAA;;IAChC,MAAM,eAAe,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAA;AACnD,IAAA,IAAI,EAAC,CAAA,EAAA,GAAA,GAAG,CAAC,MAAM,CAAC,eAAe,MAAE,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,EAAA,CAAA,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAA,EAAE;AAC7D,QAAA,GAAG,CAAC,MAAM,CAAC,eAAe,GAAG,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,eAAe,EAAE,GAAG,eAAe,CAAC,CAAA;AACjF,KAAA;IACD,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,MAAM,IAAG;AAC1C,QAAA,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,GAAG,MAAwF,CAAA;AACnH,QAAA,IAAI,UAAU,EAAE;YACd,MAAM,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC,WAAW,EAAE,CAAA;AACtF,YAAA,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,UAAU,CAAC,CAAA;AACnC,SAAA;AACH,KAAC,CAAC,CAAA;AACJ;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../../../taro-components-library-vue2/src/index.ts"],"sourcesContent":["import Vue from 'vue'\nimport { ExtendedVue } from 'vue/types/vue'\nimport Fragment from 'vue-fragment'\n\nimport * as components from './components'\n\nexport function initVue2Components () {\n const ignoredElements = [/^taro-/, 'root', 'block']\n if (!Vue.config.ignoredElements?.includes(ignoredElements[0])) {\n Vue.config.ignoredElements = [...Vue.config.ignoredElements, ...ignoredElements]\n }\n\n Vue.use(Fragment.Plugin)\n Object.entries(components).forEach(params => {\n const [name, definition] = params as [string, ExtendedVue<Vue, unknown, unknown, unknown, Record<string, unknown>>]\n if (definition) {\n const tagName = 'taro' + name.replace(new RegExp('([A-Z])', 'g'), '-$1').toLowerCase()\n Vue.component(tagName, definition)\n }\n })\n}\n\nexport * from './components'\n"],"names":["Fragment"],"mappings":";;;;;SAMgB,kBAAkB,GAAA;;IAChC,MAAM,eAAe,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAA;AACnD,IAAA,IAAI,EAAC,CAAA,EAAA,GAAA,GAAG,CAAC,MAAM,CAAC,eAAe,MAAE,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,EAAA,CAAA,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAA,EAAE;AAC7D,QAAA,GAAG,CAAC,MAAM,CAAC,eAAe,GAAG,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,eAAe,EAAE,GAAG,eAAe,CAAC,CAAA;AACjF,KAAA;AAED,IAAA,GAAG,CAAC,GAAG,CAACA,KAAQ,CAAC,MAAM,CAAC,CAAA;IACxB,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,MAAM,IAAG;AAC1C,QAAA,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,GAAG,MAAwF,CAAA;AACnH,QAAA,IAAI,UAAU,EAAE;YACd,MAAM,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC,WAAW,EAAE,CAAA;AACtF,YAAA,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,UAAU,CAAC,CAAA;AACnC,SAAA;AACH,KAAC,CAAC,CAAA;AACJ;;;;"}
@@ -0,0 +1,4 @@
1
+ function _defineProperty(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){_defineProperty(e,t,n[t]);});}return e}var freeze=function(e,t,n){Object.defineProperty(e,t,{configurable:!0,get:function(){return n},set:function(e){console.warn("tried to set frozen property ".concat(t," with ").concat(e));}});},unfreeze=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;Object.defineProperty(e,t,{configurable:!0,writable:!0,value:n});},component={abstract:!0,name:"Fragment",props:{name:{type:String,default:function(){return Math.floor(Date.now()*Math.random()).toString(16)}},html:{type:String,default:null}},mounted:function(){var e=this.$el,t=e.parentNode;e.__isFragment=!0,e.__isMounted=!1;var n=document.createComment("fragment#".concat(this.name,"#head")),r=document.createComment("fragment#".concat(this.name,"#tail"));e.__head=n,e.__tail=r;var i=document.createDocumentFragment();if(i.appendChild(n),Array.from(e.childNodes).forEach(function(t){var n=!t.hasOwnProperty("__isFragmentChild__");i.appendChild(t),n&&(freeze(t,"parentNode",e),freeze(t,"__isFragmentChild__",!0));}),i.appendChild(r),this.html){var o=document.createElement("template");o.innerHTML=this.html,Array.from(o.content.childNodes).forEach(function(e){i.appendChild(e);});}var a=e.nextSibling;t.insertBefore(i,e,!0),t.removeChild(e),freeze(e,"parentNode",t),freeze(e,"nextSibling",a),a&&freeze(a,"previousSibling",e),e.__isMounted=!0;},render:function(e){var t=this,n=this.$slots.default;return n&&n.length&&n.forEach(function(e){return e.data=_objectSpread({},e.data,{attrs:_objectSpread({fragment:t.name},(e.data||{}).attrs)})}),e("div",{attrs:{fragment:this.name}},n)}};function ssr(e,t){"production"!==process.env.NODE_ENV&&console.warn("v-fragment SSR is not implemented yet.");}var Fragment=component,SSR=ssr,Plugin={install:function(e){var t=window.Node.prototype.removeChild;window.Node.prototype.removeChild=function(e){if(!this.__isFragment){if(e.__isFragment&&e.__isMounted){for(;e.__head.nextSibling!==e.__tail;)t.call(this,e.__head.nextSibling);t.call(this,e.__head),t.call(this,e.__tail);var n=e.__head.previousSibling,r=e.__tail.nextSibling;return n&&freeze(n,"nextSibling",r),r&&freeze(r,"previousSibling",n),unfreeze(e,"parentNode"),e}var i=e.previousSibling,o=e.nextSibling,a=t.call(this,e);return i&&freeze(i,"nextSibling",o),o&&freeze(o,"previousSibling",i),a}if(this.parentNode){var l=this.parentNode.removeChild(e);return unfreeze(e,"parentNode"),l}};var n=window.Node.prototype.insertBefore;window.Node.prototype.insertBefore=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=t&&t.__isFragment&&t.__isMounted?t.__head:t;if(this.__isFragment){var o=!e.hasOwnProperty("__isFragmentChild__"),a=!r||o;o&&freeze(e,"__isFragmentChild__",!0);var l=this.parentNode?this.parentNode.insertBefore(e,t):n.call(this,e,i);return a&&freeze(e,"parentNode",this),l}if(e.__isFragment&&e.__isMounted){if(e===t)return void console.error("something must be wrong");freeze(e,"parentNode",this),e.previousSibling&&freeze(e.previousSibling,"nextSibling",e.nextSibling),e.nextSibling&&freeze(e.nextSibling,"previousSibling",e.previousSibling),freeze(e,"nextSibling",t),freeze(e,"previousSibling",t.previousSibling),t.previousSibling&&freeze(t.previousSibling,"nextSibling",e),freeze(t,"previousSibling",e);for(var d=document.createDocumentFragment(),s=e.__head;s!==e.__tail;)d.appendChild(s),s=s.nextSibling;return d.appendChild(e.__tail),n.call(this,d,i),e}return n.call(this,e,i)};var r=window.Node.prototype.appendChild;window.Node.prototype.appendChild=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!this.__isFragment)return r.call(this,e);if(this.parentNode){var n=!e.hasOwnProperty("__isFragmentChild__"),i=!t||n;n&&freeze(e,"__isFragmentChild__",!0);var o=this.parentNode.insertBefore(e,this.__tail,t);return i&&freeze(e,"parentNode",this),o}},e.component("Fragment",component);}},index={Fragment:component,Plugin:Plugin,SSR:ssr};
2
+
3
+ export { Fragment, Plugin, SSR, index as default };
4
+ //# sourceMappingURL=vue-fragment.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vue-fragment.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
@@ -3,6 +3,8 @@ const createCommonRender = (tagName, eventNames = []) => function (createElement
3
3
  const allListeners = eventNames.reduce((listeners, eventName) => {
4
4
  return Object.assign(Object.assign({}, listeners), { [eventName]: (event) => {
5
5
  vueElement.$emit(eventName, event);
6
+ if (['input', 'change'].includes(eventName))
7
+ vueElement.$emit('update:modelValue', event.detail.value);
6
8
  } });
7
9
  }, vueElement.$listeners);
8
10
  const attributes = vueElement.$props
@@ -15,7 +17,7 @@ const createCommonRender = (tagName, eventNames = []) => function (createElement
15
17
  return createElement(tagName, {
16
18
  ref: "wc",
17
19
  domProps: vueElement.$props,
18
- on: allListeners,
20
+ on: Object.assign(Object.assign({}, allListeners), { click: (event) => { typeof allListeners.click === 'function' && allListeners.click(event); vueElement.$emit('tap', event); } }),
19
21
  attrs: Object.assign(Object.assign({}, attributes), { "data-testid": tagName }),
20
22
  }, [vueElement.$slots.default]);
21
23
  };
@@ -1 +1 @@
1
- {"version":3,"file":"utils.js","sources":["../../../../taro-components-library-vue2/src/vue-component-lib/utils.ts"],"sourcesContent":["import Vue, { VNode, CreateElement } from \"vue\";\n\nexport const createCommonRender = (\n tagName: string,\n eventNames: string[] = []\n) =>\n function (createElement: CreateElement): VNode {\n const vueElement = this as Vue;\n const allListeners = eventNames.reduce((listeners, eventName) => {\n return {\n ...listeners,\n [eventName]: (event: CustomEvent<any>) => {\n vueElement.$emit(eventName, event);\n },\n };\n }, vueElement.$listeners);\n const attributes = vueElement.$props\n ? Object.keys(vueElement.$props).reduce((attrs: any, prop: string) => {\n const attributeName = toDashCase(prop);\n attrs[attributeName] = vueElement.$props[prop];\n return attrs;\n }, {})\n : {};\n return createElement(\n tagName,\n {\n ref: \"wc\",\n domProps: vueElement.$props,\n on: allListeners,\n attrs: { ...attributes, \"data-testid\": tagName },\n },\n [vueElement.$slots.default]\n );\n };\n\nexport const createCommonMethod = (methodName: string) =>\n function (...args: any[]) {\n this.$refs.wc[methodName](...args);\n } as unknown;\n\nexport const toLowerCase = (str: string) => str.toLowerCase();\n\nexport const toDashCase = (str: string) =>\n toLowerCase(\n str\n .replace(/([A-Z0-9])/g, (g) => \" \" + g[0])\n .trim()\n .replace(/ /g, \"-\")\n );\n"],"names":[],"mappings":"AAEO,MAAM,kBAAkB,GAAG,CAChC,OAAe,EACf,UAAA,GAAuB,EAAE,KAEzB,UAAU,aAA4B,EAAA;IACpC,MAAM,UAAU,GAAG,IAAW,CAAC;IAC/B,MAAM,YAAY,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,SAAS,EAAE,SAAS,KAAI;QAC9D,OACK,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,EAAA,EAAA,SAAS,KACZ,CAAC,SAAS,GAAG,CAAC,KAAuB,KAAI;AACvC,gBAAA,UAAU,CAAC,KAAK,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;AACrC,aAAC,EACD,CAAA,CAAA;AACJ,KAAC,EAAE,UAAU,CAAC,UAAU,CAAC,CAAC;AAC1B,IAAA,MAAM,UAAU,GAAG,UAAU,CAAC,MAAM;AAClC,UAAE,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,KAAU,EAAE,IAAY,KAAI;AACjE,YAAA,MAAM,aAAa,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;YACvC,KAAK,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;AAC/C,YAAA,OAAO,KAAK,CAAC;SACd,EAAE,EAAE,CAAC;UACN,EAAE,CAAC;IACP,OAAO,aAAa,CAClB,OAAO,EACP;AACE,QAAA,GAAG,EAAE,IAAI;QACT,QAAQ,EAAE,UAAU,CAAC,MAAM;AAC3B,QAAA,EAAE,EAAE,YAAY;AAChB,QAAA,KAAK,kCAAO,UAAU,CAAA,EAAA,EAAE,aAAa,EAAE,OAAO,EAAE,CAAA;KACjD,EACD,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,CAC5B,CAAC;AACJ,EAAE;AAES,MAAA,kBAAkB,GAAG,CAAC,UAAkB,KACnD,UAAU,GAAG,IAAW,EAAA;IACtB,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;AACrC,EAAa;AAER,MAAM,WAAW,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,WAAW,GAAG;AAEjD,MAAA,UAAU,GAAG,CAAC,GAAW,KACpC,WAAW,CACT,GAAG;AACA,KAAA,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,KAAA,IAAI,EAAE;AACN,KAAA,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC;;;;"}
1
+ {"version":3,"file":"utils.js","sources":["../../../../taro-components-library-vue2/src/vue-component-lib/utils.ts"],"sourcesContent":["import Vue, { VNode, CreateElement } from \"vue\";\n\nexport const createCommonRender = (\n tagName: string,\n eventNames: string[] = []\n) =>\n function (createElement: CreateElement): VNode {\n const vueElement = this as Vue;\n const allListeners = eventNames.reduce((listeners, eventName) => {\n return {\n ...listeners,\n [eventName]: (event: CustomEvent<any>) => {\n vueElement.$emit(eventName, event); if (['input', 'change'].includes(eventName)) vueElement.$emit('update:modelValue', event.detail.value);\n },\n };\n }, vueElement.$listeners);\n const attributes = vueElement.$props\n ? Object.keys(vueElement.$props).reduce((attrs: any, prop: string) => {\n const attributeName = toDashCase(prop);\n attrs[attributeName] = vueElement.$props[prop];\n return attrs;\n }, {})\n : {};\n return createElement(\n tagName,\n {\n ref: \"wc\",\n domProps: vueElement.$props,\n on: { ...allListeners, click: (event) => { typeof allListeners.click === 'function' && allListeners.click(event); vueElement.$emit('tap', event); } },\n attrs: { ...attributes, \"data-testid\": tagName },\n },\n [vueElement.$slots.default]\n );\n };\n\nexport const createCommonMethod = (methodName: string) =>\n function (...args: any[]) {\n this.$refs.wc[methodName](...args);\n } as unknown;\n\nexport const toLowerCase = (str: string) => str.toLowerCase();\n\nexport const toDashCase = (str: string) =>\n toLowerCase(\n str\n .replace(/([A-Z0-9])/g, (g) => \" \" + g[0])\n .trim()\n .replace(/ /g, \"-\")\n );\n"],"names":[],"mappings":"AAEO,MAAM,kBAAkB,GAAG,CAChC,OAAe,EACf,UAAA,GAAuB,EAAE,KAEzB,UAAU,aAA4B,EAAA;IACpC,MAAM,UAAU,GAAG,IAAW,CAAC;IAC/B,MAAM,YAAY,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,SAAS,EAAE,SAAS,KAAI;QAC9D,OACK,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,EAAA,EAAA,SAAS,KACZ,CAAC,SAAS,GAAG,CAAC,KAAuB,KAAI;AACvC,gBAAA,UAAU,CAAC,KAAK,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;gBAAC,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC;oBAAE,UAAU,CAAC,KAAK,CAAC,mBAAmB,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;AAC7I,aAAC,EACD,CAAA,CAAA;AACJ,KAAC,EAAE,UAAU,CAAC,UAAU,CAAC,CAAC;AAC1B,IAAA,MAAM,UAAU,GAAG,UAAU,CAAC,MAAM;AAClC,UAAE,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,KAAU,EAAE,IAAY,KAAI;AACjE,YAAA,MAAM,aAAa,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;YACvC,KAAK,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;AAC/C,YAAA,OAAO,KAAK,CAAC;SACd,EAAE,EAAE,CAAC;UACN,EAAE,CAAC;IACP,OAAO,aAAa,CAClB,OAAO,EACP;AACE,QAAA,GAAG,EAAE,IAAI;QACT,QAAQ,EAAE,UAAU,CAAC,MAAM;AAC3B,QAAA,EAAE,kCAAO,YAAY,CAAA,EAAA,EAAE,KAAK,EAAE,CAAC,KAAK,KAAI,EAAG,OAAO,YAAY,CAAC,KAAK,KAAK,UAAU,IAAI,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAAA;AACrJ,QAAA,KAAK,kCAAO,UAAU,CAAA,EAAA,EAAE,aAAa,EAAE,OAAO,EAAE,CAAA;KACjD,EACD,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,CAC5B,CAAC;AACJ,EAAE;AAES,MAAA,kBAAkB,GAAG,CAAC,UAAkB,KACnD,UAAU,GAAG,IAAW,EAAA;IACtB,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;AACrC,EAAa;AAER,MAAM,WAAW,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,WAAW,GAAG;AAEjD,MAAA,UAAU,GAAG,CAAC,GAAW,KACpC,WAAW,CACT,GAAG;AACA,KAAA,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,KAAA,IAAI,EAAE;AACN,KAAA,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC;;;;"}
@@ -0,0 +1,10 @@
1
+ declare function createComponent(name: any, classNames?: any[]): {
2
+ emits: string[];
3
+ setup(__props: any, { slots, emit }: {
4
+ slots: any;
5
+ emit: any;
6
+ }): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7
+ [key: string]: any;
8
+ }>;
9
+ };
10
+ export { createComponent as default };
@@ -0,0 +1,21 @@
1
+ import { h } from 'vue';
2
+ import { useForwardRef } from './forwardRef.js';
3
+
4
+ function createComponent(name, classNames = []) {
5
+ return {
6
+ emits: ['tap'],
7
+ setup(__props, { slots, emit }) {
8
+ const forwardRef = useForwardRef();
9
+ return () => (h(`${name}-core`, {
10
+ ref: forwardRef,
11
+ class: ['hydrated', ...classNames],
12
+ onClick(e) {
13
+ emit('tap', e);
14
+ }
15
+ }, slots));
16
+ }
17
+ };
18
+ }
19
+
20
+ export { createComponent as default };
21
+ //# sourceMappingURL=createComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createComponent.js","sources":["../../../../taro-components-library-vue3/src/component-lib/createComponent.ts"],"sourcesContent":["import { h } from 'vue'\n\nimport { useForwardRef } from './forwardRef'\n\nexport default function createComponent (name, classNames = []) {\n return {\n emits: ['tap'],\n setup (__props, { slots, emit }) {\n const forwardRef = useForwardRef()\n return () => (\n h(\n `${name}-core`,\n {\n ref: forwardRef,\n class: ['hydrated', ...classNames],\n onClick (e) {\n emit('tap', e)\n }\n },\n slots\n )\n )\n }\n }\n}\n"],"names":[],"mappings":";;;AAIwB,SAAA,eAAe,CAAE,IAAI,EAAE,UAAU,GAAG,EAAE,EAAA;IAC5D,OAAO;QACL,KAAK,EAAE,CAAC,KAAK,CAAC;AACd,QAAA,KAAK,CAAE,OAAO,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,EAAA;AAC7B,YAAA,MAAM,UAAU,GAAG,aAAa,EAAE,CAAA;YAClC,OAAO,OACL,CAAC,CACC,CAAA,EAAG,IAAI,CAAA,KAAA,CAAO,EACd;AACE,gBAAA,GAAG,EAAE,UAAU;AACf,gBAAA,KAAK,EAAE,CAAC,UAAU,EAAE,GAAG,UAAU,CAAC;AAClC,gBAAA,OAAO,CAAE,CAAC,EAAA;AACR,oBAAA,IAAI,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;iBACf;aACF,EACD,KAAK,CACN,CACF,CAAA;SACF;KACF,CAAA;AACH;;;;"}
@@ -0,0 +1,11 @@
1
+ declare function createFormsComponent(name: any, eventName: any, modelValue?: string, classNames?: any[]): {
2
+ emits: string[];
3
+ props: Record<string, any>;
4
+ setup(props: any, { slots, emit }: {
5
+ slots: any;
6
+ emit: any;
7
+ }): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
8
+ [key: string]: any;
9
+ }>;
10
+ };
11
+ export { createFormsComponent as default };