@mc20230601/keep-up 1.0.11 → 1.0.13

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
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ 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>;
@@ -0,0 +1,2 @@
1
+ export { default as Button } from './button/index.vue';
2
+ export { default as Space } from './space';
@@ -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;
File without changes
package/es/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './Button'
2
+ export * from './Space'
package/es/index.mjs CHANGED
@@ -1,3 +1,2 @@
1
- export { default as Button } from './components/button/index.mjs';
2
- export { default as Space } from './components/space/index.mjs';
1
+ export * from '@KeepUp/components';
3
2
  //# sourceMappingURL=index.mjs.map
package/es/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
1
+ {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc20230601/keep-up",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "mc20230601",
@@ -13,7 +13,7 @@
13
13
  "import": "./es/index.mjs",
14
14
  "require": "./lib/index.js"
15
15
  },
16
- "./*": "./*"
16
+ "./styles.css": "./es/styles/index.css"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "vue": "^3.2.0"
@@ -23,5 +23,8 @@
23
23
  "engines": {
24
24
  "node": ">=22.17.0",
25
25
  "pnpm": ">=10.20.0"
26
+ },
27
+ "dependencies": {
28
+ "@KeepUp/components": "workspace:*"
26
29
  }
27
30
  }