@entur/chip 0.6.0 → 0.6.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/CHANGELOG.md +4 -0
- package/dist/styles.css +29 -29
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.6.1](https://bitbucket.org/enturas/design-system/compare/@entur/chip@0.6.0...@entur/chip@0.6.1) (2022-07-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @entur/chip
|
|
9
|
+
|
|
6
10
|
# [0.6.0](https://bitbucket.org/enturas/design-system/compare/@entur/chip@0.5.8...@entur/chip@0.6.0) (2022-06-28)
|
|
7
11
|
|
|
8
12
|
### Features
|
package/dist/styles.css
CHANGED
|
@@ -2,35 +2,6 @@
|
|
|
2
2
|
--eds-chip: 1;
|
|
3
3
|
}/* DO NOT CHANGE!*/
|
|
4
4
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
5
|
-
.eds-chip {
|
|
6
|
-
background: #ebebf1;
|
|
7
|
-
border: 0.0625rem solid #d1d4e3;
|
|
8
|
-
border-radius: 1rem;
|
|
9
|
-
color: inherit;
|
|
10
|
-
font-family: inherit;
|
|
11
|
-
font-size: 0.875rem;
|
|
12
|
-
height: 2rem;
|
|
13
|
-
min-width: 3rem;
|
|
14
|
-
padding: 0 0.75rem;
|
|
15
|
-
transition: background 0.1s ease-out, border 0.1s ease-out;
|
|
16
|
-
display: flex;
|
|
17
|
-
justify-content: center;
|
|
18
|
-
align-items: center;
|
|
19
|
-
}
|
|
20
|
-
.eds-chip svg {
|
|
21
|
-
font-size: 0.875rem;
|
|
22
|
-
}
|
|
23
|
-
.eds-contrast .eds-chip {
|
|
24
|
-
background-color: #393d79;
|
|
25
|
-
border-color: transparent;
|
|
26
|
-
}
|
|
27
|
-
.eds-chip--leading-icon .eds-icon {
|
|
28
|
-
margin-right: 0.5rem;
|
|
29
|
-
}
|
|
30
|
-
.eds-chip--trailing-icon .eds-icon {
|
|
31
|
-
margin-left: 0.5rem;
|
|
32
|
-
}/* DO NOT CHANGE!*/
|
|
33
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
34
5
|
.eds-choice-chip {
|
|
35
6
|
cursor: pointer;
|
|
36
7
|
display: inline-block;
|
|
@@ -142,6 +113,35 @@
|
|
|
142
113
|
background-color: #ffffff;
|
|
143
114
|
}/* DO NOT CHANGE!*/
|
|
144
115
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
116
|
+
.eds-chip {
|
|
117
|
+
background: #ebebf1;
|
|
118
|
+
border: 0.0625rem solid #d1d4e3;
|
|
119
|
+
border-radius: 1rem;
|
|
120
|
+
color: inherit;
|
|
121
|
+
font-family: inherit;
|
|
122
|
+
font-size: 0.875rem;
|
|
123
|
+
height: 2rem;
|
|
124
|
+
min-width: 3rem;
|
|
125
|
+
padding: 0 0.75rem;
|
|
126
|
+
transition: background 0.1s ease-out, border 0.1s ease-out;
|
|
127
|
+
display: flex;
|
|
128
|
+
justify-content: center;
|
|
129
|
+
align-items: center;
|
|
130
|
+
}
|
|
131
|
+
.eds-chip svg {
|
|
132
|
+
font-size: 0.875rem;
|
|
133
|
+
}
|
|
134
|
+
.eds-contrast .eds-chip {
|
|
135
|
+
background-color: #393d79;
|
|
136
|
+
border-color: transparent;
|
|
137
|
+
}
|
|
138
|
+
.eds-chip--leading-icon .eds-icon {
|
|
139
|
+
margin-right: 0.5rem;
|
|
140
|
+
}
|
|
141
|
+
.eds-chip--trailing-icon .eds-icon {
|
|
142
|
+
margin-left: 0.5rem;
|
|
143
|
+
}/* DO NOT CHANGE!*/
|
|
144
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
145
145
|
.eds-tag-chip {
|
|
146
146
|
cursor: default;
|
|
147
147
|
padding-right: 0.25rem;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/chip",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/chip.esm.js",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"react-dom": ">=16.8.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@entur/form": "^5.3.
|
|
30
|
+
"@entur/form": "^5.3.9",
|
|
31
31
|
"@entur/tokens": "^3.3.2",
|
|
32
32
|
"@entur/utils": "^0.4.3",
|
|
33
33
|
"classnames": "^2.3.1"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "c58969a2ac3a5429137f84f9fe91888f4c4bcc4b"
|
|
36
36
|
}
|