@arco-themes/vue-rocket-projection 0.0.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/README.md +23 -0
- package/component.less +17 -0
- package/components/Badge/index.css +1 -0
- package/components/Badge/index.less +27 -0
- package/components/Button/index.css +1 -0
- package/components/Button/index.less +10 -0
- package/components/Drawer/index.css +1 -0
- package/components/Drawer/index.less +31 -0
- package/components/Form/index.css +1 -0
- package/components/Form/index.less +9 -0
- package/components/Menu/index.css +0 -0
- package/components/Menu/index.less +4 -0
- package/components/Modal/index.css +1 -0
- package/components/Modal/index.less +17 -0
- package/components/PageHeader/index.css +1 -0
- package/components/PageHeader/index.less +7 -0
- package/components/Popconfirm/index.css +1 -0
- package/components/Popconfirm/index.less +6 -0
- package/components/Radio/index.css +0 -0
- package/components/Radio/index.less +3 -0
- package/components/Select/index.css +1 -0
- package/components/Select/index.less +10 -0
- package/components/Table/index.css +1 -0
- package/components/Table/index.less +11 -0
- package/components/Tabs/index.css +0 -0
- package/components/Tabs/index.less +3 -0
- package/components/Timeline/index.css +1 -0
- package/components/Timeline/index.less +4 -0
- package/components/Tooltip/index.css +1 -0
- package/components/Tooltip/index.less +5 -0
- package/components/Transfer/index.css +0 -0
- package/components/Transfer/index.less +4 -0
- package/components/Tree/index.css +1 -0
- package/components/Tree/index.less +9 -0
- package/config.d.ts +0 -0
- package/css/arco.css +6 -0
- package/index.less +12 -0
- package/package.json +19 -0
- package/theme.css +535 -0
- package/theme.less +1706 -0
- package/tokens.less +3972 -0
- package/variables.less +1965 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# @arco-themes/vue-rocket-projection
|
|
4
|
+
|
|
5
|
+
Powered By [ArcoDesign](https://arco.design/)
|
|
6
|
+
|
|
7
|
+
[Click to Preview](https://arco.design/themes/design/19039)
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
npm install @arco-themes/vue-rocket-projection
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Changelog
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
- 0.0.1
|
|
19
|
+
|
|
20
|
+
Release:
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
package/component.less
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* 自定义组件样式 */
|
|
2
|
+
@import "./components/Badge/index.less";
|
|
3
|
+
@import "./components/Button/index.less";
|
|
4
|
+
@import "./components/Drawer/index.less";
|
|
5
|
+
@import "./components/Form/index.less";
|
|
6
|
+
@import "./components/Menu/index.less";
|
|
7
|
+
@import "./components/Modal/index.less";
|
|
8
|
+
@import "./components/PageHeader/index.less";
|
|
9
|
+
@import "./components/Popconfirm/index.less";
|
|
10
|
+
@import "./components/Radio/index.less";
|
|
11
|
+
@import "./components/Select/index.less";
|
|
12
|
+
@import "./components/Table/index.less";
|
|
13
|
+
@import "./components/Tabs/index.less";
|
|
14
|
+
@import "./components/Timeline/index.less";
|
|
15
|
+
@import "./components/Tooltip/index.less";
|
|
16
|
+
@import "./components/Transfer/index.less";
|
|
17
|
+
@import "./components/Tree/index.less";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-badge-status-dot{background:#fff;border:2px solid var(--color-fill-4)}.arco-badge-status-default{border:2px solid rgb(var(--primary-3))}.arco-badge-status-processing{border:2px solid rgb(var(--primary-6))}.arco-badge-status-success{border:2px solid rgb(var(--success-6))}.arco-badge-status-warning{border:2px solid rgb(var(--warning-6))}.arco-badge-status-error{border:2px solid rgb(var(--danger-6))}.arco-badge-status-danger{border:2px solid rgb(var(--danger-6))}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.@{badge-prefix-cls} {
|
|
2
|
+
|
|
3
|
+
////状态点大小、边框及各个状态的颜色
|
|
4
|
+
&-status-dot {
|
|
5
|
+
background: #fff;
|
|
6
|
+
border: 2px solid var(--color-fill-4);
|
|
7
|
+
}
|
|
8
|
+
&-status-default {
|
|
9
|
+
border: 2px solid rgb(var(--primary-3));
|
|
10
|
+
}
|
|
11
|
+
&-status-processing {
|
|
12
|
+
border: 2px solid rgb(var(--primary-6));
|
|
13
|
+
}
|
|
14
|
+
&-status-success {
|
|
15
|
+
border: 2px solid rgb(var(--success-6));
|
|
16
|
+
}
|
|
17
|
+
&-status-warning {
|
|
18
|
+
border: 2px solid rgb(var(--warning-6));
|
|
19
|
+
}
|
|
20
|
+
&-status-error {
|
|
21
|
+
border: 2px solid rgb(var(--danger-6));
|
|
22
|
+
}
|
|
23
|
+
&-status-danger {
|
|
24
|
+
border: 2px solid rgb(var(--danger-6));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-btn-text{padding:1px 4px;height:24px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-drawer{box-shadow:rgba(0,0,0,0.08) 0 0 24px}.arco-drawer-mask{background-color:rgba(57,77,115,0.1)}.arco-drawer .arco-drawer{border-radius:8px}.arco-drawer .arco-drawer-header{flex-direction:row-reverse}.arco-drawer .arco-drawer-header .arco-drawer-close-btn{margin-left:0;margin-right:8px;color:var(--color-text-3)}.arco-drawer .arco-drawer-footer{border-top:none;box-shadow:rgba(0,0,0,0.08) 0 0 6px}.arco-drawer .arco-drawer-close-btn{outline:none}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.@{drawer-prefix-cls} {
|
|
2
|
+
|
|
3
|
+
box-shadow:rgba(0, 0, 0, 0.08) 0px 0px 24px;
|
|
4
|
+
|
|
5
|
+
&-mask{
|
|
6
|
+
background-color:rgba(57, 77, 115, 0.1);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.arco-drawer{
|
|
10
|
+
border-radius:8px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.arco-drawer-header{
|
|
14
|
+
flex-direction: row-reverse
|
|
15
|
+
}
|
|
16
|
+
.arco-drawer-header .arco-drawer-close-btn{
|
|
17
|
+
margin-left:0;
|
|
18
|
+
margin-right:8px;
|
|
19
|
+
color:var(--color-text-3)
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.arco-drawer-footer{
|
|
23
|
+
border-top: none;
|
|
24
|
+
box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 6px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.arco-drawer-close-btn{
|
|
28
|
+
outline: none;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-form .arco-picker-error{background-color:#ffffff;border-color:rgb(var(--danger-6))}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-modal{box-shadow:rgba(0,0,0,0.08) 0 0 24px}.arco-modal .arco-modal-header .arco-modal-title-align-center{justify-content:start}.arco-modal-mask{background-color:rgba(57,77,115,0.1)}.arco-modal .arco-modal-close-btn{color:var(--color-text-3);outline:none}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.@{modal-prefix-cls} {
|
|
2
|
+
|
|
3
|
+
box-shadow:rgba(0, 0, 0, 0.08) 0px 0px 24px;
|
|
4
|
+
|
|
5
|
+
.arco-modal-header .arco-modal-title-align-center {
|
|
6
|
+
justify-content: start;
|
|
7
|
+
}
|
|
8
|
+
&-mask{
|
|
9
|
+
background-color:rgba(57, 77, 115, 0.1);
|
|
10
|
+
}
|
|
11
|
+
.arco-modal-close-btn{
|
|
12
|
+
color:var(--color-text-3);
|
|
13
|
+
outline: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-page-header .arco-page-header-main{min-height:32px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-popconfirm-popup-content{border-color:var(--color-fill-1)}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-select .arco-select-dropdown .arco-select-option:not(.arco-select-dropdown .arco-select-option-disabled):active{background-color:rgb(var(--primary-1))}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-table .arco-table-element .arco-table-td-content:empty:after,.arco-table .arco-table-element .arco-auto-tooltip-content:empty:after{content:'--'}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-timeline .arco-timeline-item-dot-line-is-horizontal{top:4px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-tooltip-content{box-shadow:0 2px 12px 0 rgba(57,77,115,0.1)}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-tree .arco-tree-node{padding-top:2px;padding-bottom:2px}
|
package/config.d.ts
ADDED
|
File without changes
|