Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

Commit a2a2c68

Browse files
committed
chore: 修改atom字样为any
1 parent be515ac commit a2a2c68

File tree

8 files changed

+34
-34
lines changed

8 files changed

+34
-34
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# vue-any-ui [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url]
1+
# any-ui [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url]
22
:whale: 更快更简单
33

44

5-
[npm-image]: https://img.shields.io/npm/v/vue-atom-ui.svg
6-
[npm-url]: https://npmjs.org/package/vue-atom-ui
5+
[npm-image]: https://img.shields.io/npm/v/any-ui.svg
6+
[npm-url]: https://npmjs.org/package/any-ui
77

8-
[downloads-image]: https://img.shields.io/npm/dm/vue-atom-ui.svg
9-
[downloads-url]: https://npmjs.org/package/vue-atom-ui
8+
[downloads-image]: https://img.shields.io/npm/dm/any-ui.svg
9+
[downloads-url]: https://npmjs.org/package/any-ui
1010

1111

1212
## 演示
1313
[预览地址](https://383514580.github.io/atom/#/index)
1414

1515
## 文档
1616

17-
[查看](https://atom-h.github.io/atom-ui/)
17+
[查看](https://atom-h.github.io/any-ui/)
1818

1919
## 在手机上看
2020

@@ -25,7 +25,7 @@
2525

2626
推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用。
2727
```shell
28-
npm i vue-atom-ui -S
28+
npm i any-ui -S
2929
```
3030

3131
## 引入组件
@@ -43,7 +43,7 @@ npm i babel-plugin-import -d
4343
{
4444
"plugins": [
4545
["import", {
46-
"libraryName": "vue-atom-ui",
46+
"libraryName": "any-ui",
4747
"libraryDirectory": "es",
4848
"style": true
4949
}]
@@ -54,8 +54,8 @@ npm i babel-plugin-import -d
5454
### 方式2: 全部引入
5555
```javascript
5656
import Vue from 'vue';
57-
import Atom from 'vue-atom-ui';
58-
import 'vue-atom-ui/index.css';
57+
import Atom from 'any-ui';
58+
import 'any-ui/index.css';
5959
Vue.use(Atom);
6060
```
6161

@@ -64,9 +64,9 @@ Vue.use(Atom);
6464
### CDN
6565
```javascript
6666
<!-- 引入css -->
67-
<link rel="stylesheet" href="https://unpkg.com/vue-atom-ui/index.css">
67+
<link rel="stylesheet" href="https://unpkg.com/any-ui/index.css">
6868
<!-- 引入js -->
69-
<script src="https://unpkg.com/vue-atom-ui/index.js"></script>
69+
<script src="https://unpkg.com/any-ui/index.js"></script>
7070
```
7171

7272
### Hello world

docs/.vuepress/config.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
module.exports = {
2-
demoURL: 'https://atom-h.github.io/atom-ui/demo/',
3-
base: '/atom-ui/',
2+
demoURL: 'https://any86.github.io/any-ui/demo/',
3+
base: '/any-ui/',
44
dest: './docs/dist',
5-
title: 'Atom UI',
5+
title: 'Any UI',
66
description: '更快更简单!',
77
themeConfig: {
88

99
// 假定是 GitHub. 同时也可以是一个完整的 GitLab URL
10-
repo: 'Atom-H/atom-ui',
10+
repo: 'any-ui',
1111
// 自定义仓库链接文字。默认从 `themeConfig.repo` 中自动推断为
1212
// "GitHub"/"GitLab"/"Bitbucket" 其中之一,或是 "Source"。
1313
repoLabel: 'GitHub',
1414

1515
// 假如你的文档仓库和项目本身不在一个仓库:
16-
docsRepo: 'Atom-H/atom-ui',
16+
docsRepo: 'any-ui',
1717
// 假如文档不是放在仓库的根目录下:
1818
docsDir: 'docs',
1919
// 假如文档放在一个特定的分支下:
@@ -94,7 +94,7 @@ module.exports = {
9494
nav: [
9595
// {
9696
// text: 'github',
97-
// link: 'https://github.com/Atom-H/atom-ui'
97+
// link: 'https://github.com/any-ui'
9898
// },
9999
// {
100100
// text: 'Guide',

docs/components/install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### 安装
22
```bash
3-
npm i vue-atom-ui --save
3+
npm i any-ui --save
44
```
55

66

docs/install.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### 安装
22
推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用。
33
```shell
4-
npm i vue-atom-ui -S
4+
npm i any-ui -S
55
```
66

77
### 引入组件
@@ -19,7 +19,7 @@ npm i babel-plugin-import -d
1919
{
2020
"plugins": [
2121
["import", {
22-
"libraryName": "vue-atom-ui",
22+
"libraryName": "any-ui",
2323
"libraryDirectory": "es",
2424
"style": true
2525
}]
@@ -30,8 +30,8 @@ npm i babel-plugin-import -d
3030
#### 方式2: 全部引入
3131
```javascript
3232
import Vue from 'vue';
33-
import Atom from 'vue-atom-ui';
34-
import 'vue-atom-ui/index.css';
33+
import Atom from 'any-ui';
34+
import 'any-ui/index.css';
3535
Vue.use(Atom);
3636
```
3737

@@ -43,9 +43,9 @@ Vue.use(Atom);
4343
### CDN
4444
```javascript
4545
<!-- 引入css -->
46-
<link rel="stylesheet" href="https://unpkg.com/vue-atom-ui/index.css">
46+
<link rel="stylesheet" href="https://unpkg.com/any-ui/index.css">
4747
<!-- 引入js -->
48-
<script src="https://unpkg.com/vue-atom-ui/index.js"></script>
48+
<script src="https://unpkg.com/any-ui/index.js"></script>
4949
```
5050

5151
### Hello world

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@
112112
}
113113
</style>
114114

115-
<title>Atom-UI</title>
115+
<title>any-ui</title>
116116
</head>
117117

118118
<body>
119119
<div id="app">
120120
<i class="atom-spinner-ripple"></i>
121-
<p align="center" class="loading-tip">Atom-UI, 更快更简单</p>
121+
<p align="center" class="loading-tip">any-ui, 更快更简单</p>
122122
</div>
123123
</body>
124124

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "vue-atom-ui",
2+
"name": "any-ui",
33
"version": "1.0.309",
4-
"description": "vue-atom-ui",
4+
"description": "any-ui",
55
"author": "宁宁 <[email protected]>",
6-
"homepage": "https://atom-h.github.io/atom-ui/",
6+
"homepage": "https://atom-h.github.io/any-ui/",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/Atom-H/atom-ui.git"
9+
"url": "https://github.com/Atom-H/any-ui.git"
1010
},
1111
"main": "dist/atom.min.js",
1212
"scripts": {

src/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<main class="app">
3-
<v-app-bar @click-arrow="$router.back()" :has-arrow="'index' !== $route.name"><a @click="$router.push({'path': '/'})">Atom-UI</a></v-app-bar>
3+
<v-app-bar @click-arrow="$router.back()" :has-arrow="'index' !== $route.name"><a @click="$router.push({'path': '/'})">any-ui</a></v-app-bar>
44
<transition name="slide-left" mode="out-in">
55
<!-- <keep-alive> -->
66
<router-view class="app-main"></router-view>

src/scss/components/ActionSheet.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
position: absolute;
44
left: 0;
55
bottom: 0;
6-
bottom: calc($gutter + constant(safe-area-inset-bottom));
7-
bottom: cale($gutter + env(safe-area-inset-bottom));
6+
// bottom: calc($gutter + constant(safe-area-inset-bottom));
7+
// bottom: cale($gutter + env(safe-area-inset-bottom));
88
right: 0;
99
padding: $gutter/2;
1010

0 commit comments

Comments
 (0)