beans-ui-kit 0.0.11 → 0.0.12

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.
@@ -1 +1,3 @@
1
- export {}
1
+ import { default as BaseButton } from './BaseButton.vue';
2
+ import { default as BaseSelect } from './BaseSelect.vue';
3
+ export { BaseButton, BaseSelect };
@@ -1,4 +1,5 @@
1
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
2
3
  propsClass: {
3
4
  type: StringConstructor;
4
5
  default: string;
@@ -10,7 +11,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
10
11
  propsLabel: {
11
12
  type: StringConstructor;
12
13
  };
13
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "clicked"[], "clicked", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
14
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "clicked"[], "clicked", PublicProps, Readonly< ExtractPropTypes<{
14
15
  propsClass: {
15
16
  type: StringConstructor;
16
17
  default: string;
@@ -27,5 +28,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
27
28
  }>, {
28
29
  propsClass: string;
29
30
  propsTitle: string;
30
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
31
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
31
32
  export default _default;
@@ -1,5 +1,5 @@
1
- import { Component } from 'vue';
2
- declare const _default: import('vue').DefineComponent<{
1
+ import { Component, DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{
3
3
  propsClass?: string | undefined;
4
4
  propsLabel?: string | undefined;
5
5
  propsValue?: string | number | undefined;
@@ -9,9 +9,9 @@ declare const _default: import('vue').DefineComponent<{
9
9
  selectIcon?: Component | undefined;
10
10
  markedOptions?: unknown[] | undefined;
11
11
  }, {
12
- selectValue: import('vue').Ref<string | number, string | number>;
12
+ selectValue: Ref<string | number, string | number>;
13
13
  valueChanged: () => void;
14
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "valueChanged"[], "valueChanged", import('vue').PublicProps, Readonly<{
14
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "valueChanged"[], "valueChanged", PublicProps, Readonly<{
15
15
  propsClass?: string | undefined;
16
16
  propsLabel?: string | undefined;
17
17
  propsValue?: string | number | undefined;
@@ -26,5 +26,5 @@ declare const _default: import('vue').DefineComponent<{
26
26
  propsClass: string;
27
27
  propsOptions: unknown[];
28
28
  markedOptions: unknown[];
29
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
29
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
30
30
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "beans-ui-kit",
3
3
  "private": false,
4
- "version": "0.0.11",
4
+ "version": "0.0.12",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -9,13 +9,14 @@
9
9
  "exports": {
10
10
  ".": {
11
11
  "import": "./dist/beansBaseActions.es.ts",
12
- "require": "./dist/beansBaseActions.umd.ts"
12
+ "require": "./dist/beansBaseActions.umd.ts",
13
+ "types": "./dist/beansBaseActions.es.d.ts"
13
14
  },
14
15
  "./styles": "./dist/style.css"
15
16
  },
16
17
  "scripts": {
17
18
  "dev": "vite",
18
- "build": "vue-tsc -b && vite build",
19
+ "build": "vue-tsc -b && vite build && node scripts/post-build.mjs",
19
20
  "preview": "vite preview"
20
21
  },
21
22
  "dependencies": {