@cmeslib/components 0.1.3 → 0.1.5

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.
@@ -0,0 +1,3 @@
1
+ import DemoButton from './src/button.vue';
2
+ export { DemoButton };
3
+ export default DemoButton;
@@ -0,0 +1,6 @@
1
+ type __VLS_Props = {
2
+ type?: 'primary' | 'secondary' | 'danger';
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import DemoPanel from './src/panel.vue';
2
+ export { DemoPanel };
3
+ export default DemoPanel;
@@ -0,0 +1,7 @@
1
+ import './panel.scss';
2
+ type __VLS_Props = {
3
+ type?: 'primary' | 'secondary' | 'danger';
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export * from './DemoButton';
2
+ export * from './DemoPanel';
3
+ import Label from './DemoTest/label.vue';
4
+ import MyComp from './DemoTest/mycomp';
5
+ export { Label, MyComp };
@@ -0,0 +1 @@
1
+ export declare function DemoDirective(msg: string): void;
@@ -1,5 +1,5 @@
1
- function DemoDirective() {
2
- console.log("DemoDirective initialized");
1
+ function DemoDirective(msg) {
2
+ console.log("DemoDirective initialized", msg);
3
3
  }
4
4
 
5
5
  export { DemoDirective };
package/es/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './components';
2
+ export * from './directives';
@@ -0,0 +1,3 @@
1
+ import DemoButton from './src/button.vue';
2
+ export { DemoButton };
3
+ export default DemoButton;
@@ -0,0 +1,6 @@
1
+ type __VLS_Props = {
2
+ type?: 'primary' | 'secondary' | 'danger';
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import DemoPanel from './src/panel.vue';
2
+ export { DemoPanel };
3
+ export default DemoPanel;
@@ -0,0 +1,7 @@
1
+ import './panel.scss';
2
+ type __VLS_Props = {
3
+ type?: 'primary' | 'secondary' | 'danger';
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export * from './DemoButton';
2
+ export * from './DemoPanel';
3
+ import Label from './DemoTest/label.vue';
4
+ import MyComp from './DemoTest/mycomp';
5
+ export { Label, MyComp };
@@ -0,0 +1 @@
1
+ export declare function DemoDirective(msg: string): void;
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- function DemoDirective() {
4
- console.log("DemoDirective initialized");
3
+ function DemoDirective(msg) {
4
+ console.log("DemoDirective initialized", msg);
5
5
  }
6
6
 
7
7
  exports.DemoDirective = DemoDirective;
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './components';
2
+ export * from './directives';
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@cmeslib/components",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.mjs",
7
+ "types": "es/index.d.ts",
7
8
  "exports": {
8
9
  ".": {
9
10
  "import": "./es/index.mjs",
10
- "require": "./lib/index.js"
11
+ "require": "./lib/index.js",
12
+ "types": "./es/index.d.ts"
11
13
  }
12
14
  },
13
15
  "keywords": [],