@phoenix-cg/v-tabs 0.1.22 → 0.2.0-beta.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.
- package/.editorconfig +9 -0
- package/.gitattributes +1 -0
- package/.vscode/extensions.json +8 -0
- package/.vscode/settings.json +11 -0
- package/README.md +27 -15
- package/dist/favicon.ico +0 -0
- package/dist/v-tabs.css +1 -1
- package/dist/v-tabs.es.js +2040 -0
- package/dist/v-tabs.umd.js +21 -6480
- package/eslint.config.js +32 -0
- package/index.html +13 -0
- package/jsconfig.json +8 -0
- package/package.json +22 -30
- package/src/App.vue +18 -35
- package/src/assets/base.css +86 -0
- package/src/assets/main.css +21 -0
- package/src/components/VTabs.vue +107 -103
- package/src/export.js +1 -1
- package/src/main.js +4 -6
- package/vite.config.js +25 -0
- package/vitest.config.js +14 -0
- package/.browserslistrc +0 -3
- package/.eslintrc.js +0 -26
- package/babel.config.js +0 -3
- package/dist/demo.html +0 -10
- package/dist/v-tabs.common.js +0 -6470
- package/dist/v-tabs.common.js.map +0 -1
- package/dist/v-tabs.umd.js.map +0 -1
- package/dist/v-tabs.umd.min.js +0 -2
- package/dist/v-tabs.umd.min.js.map +0 -1
- package/jest.config.js +0 -3
- package/public/index.html +0 -17
- package/src/assets/logo.png +0 -0
- package/tests/unit/VTabs.spec.js +0 -12
package/jest.config.js
DELETED
package/public/index.html
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
8
|
-
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<noscript>
|
|
12
|
-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
-
</noscript>
|
|
14
|
-
<div id="app"></div>
|
|
15
|
-
<!-- built files will be auto injected -->
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
package/src/assets/logo.png
DELETED
|
Binary file
|
package/tests/unit/VTabs.spec.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// import { shallowMount } from '@vue/test-utils'
|
|
2
|
-
// import HelloWorld from '@/components/VTabs.vue'
|
|
3
|
-
|
|
4
|
-
// describe('VTabs.vue', () => {
|
|
5
|
-
// it('renders props.msg when passed', () => {
|
|
6
|
-
// const msg = 'new message'
|
|
7
|
-
// const wrapper = shallowMount(HelloWorld, {
|
|
8
|
-
// propsData: { msg }
|
|
9
|
-
// })
|
|
10
|
-
// expect(wrapper.text()).toMatch(msg)
|
|
11
|
-
// })
|
|
12
|
-
// })
|