@arco-themes/react-fake-lawyer 0.0.2 → 0.0.3

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 CHANGED
@@ -15,6 +15,30 @@ npm install @arco-themes/react-fake-lawyer
15
15
  ## Changelog
16
16
 
17
17
 
18
+ - 0.0.3
19
+
20
+ Release:
21
+ - InputNumber:
22
+ - InputTag:
23
+ - Notification:
24
+ - Color:
25
+ - Select:
26
+ - DatePicker:
27
+ - Link:
28
+ - Form:
29
+ - Checkbox:
30
+ - Message:
31
+ - Result:
32
+ - Breadcrumb:
33
+ - Button:
34
+ - Tabs:
35
+ - Tooltip:
36
+ - Alert:
37
+ - Pagination:
38
+ - Steps:
39
+ - Spin:
40
+
41
+
18
42
  - 0.0.2
19
43
 
20
44
  Release:
package/component.less CHANGED
@@ -1,4 +1,7 @@
1
1
  /* 自定义组件样式 */
2
2
  @import "./components/DatePicker/index.less";
3
3
  @import "./components/Drawer/index.less";
4
- @import "./components/Modal/index.less";
4
+ @import "./components/InputNumber/index.less";
5
+ @import "./components/InputTag/index.less";
6
+ @import "./components/Modal/index.less";
7
+ @import "./components/Notification/index.less";
@@ -0,0 +1 @@
1
+ .arco-input-number .arco-input-group-addbefore .arco-input-number-step-button{border-top-left-radius:var(--border-radius-medium);border-bottom-left-radius:var(--border-radius-medium)}.arco-input-number .arco-input-group-addafter .arco-input-number-step-button{border-top-right-radius:var(--border-radius-medium);border-bottom-right-radius:var(--border-radius-medium)}
@@ -0,0 +1,22 @@
1
+ .@{input-number-prefix-cls} {
2
+ .@{input-prefix-cls} {
3
+ &-group {
4
+ &-addbefore {
5
+ .@{input-number-prefix-cls} {
6
+ &-step-button {
7
+ border-top-left-radius: var(--border-radius-medium);
8
+ border-bottom-left-radius: var(--border-radius-medium);
9
+ }
10
+ }
11
+ }
12
+ &-addafter {
13
+ .@{input-number-prefix-cls} {
14
+ &-step-button {
15
+ border-top-right-radius: var(--border-radius-medium);
16
+ border-bottom-right-radius: var(--border-radius-medium);
17
+ }
18
+ }
19
+ }
20
+ }
21
+ }
22
+ }
@@ -0,0 +1 @@
1
+ .arco-input-tag{z-index:2}.arco-input-tag-addbefore{border:1px solid var(--color-border-2);border-right:none;z-index:1}.arco-input-tag-addafter{border:1px solid var(--color-border-2);border-left:none;z-index:1}
@@ -0,0 +1,14 @@
1
+ .@{input-tag-prefix-cls} {
2
+ z-index: 2;
3
+
4
+ &-addbefore {
5
+ border: 1px solid var(--color-border-2);
6
+ border-right: none;
7
+ z-index: 1;
8
+ }
9
+ &-addafter {
10
+ border: 1px solid var(--color-border-2);
11
+ border-left: none;
12
+ z-index: 1;
13
+ }
14
+ }
@@ -0,0 +1 @@
1
+ .arco-notification{box-shadow:0 0 3px rgba(0,0,0,0.06)}
@@ -0,0 +1,3 @@
1
+ .@{notification-prefix-cls} {
2
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.06);
3
+ }