@aquera/nile-elements 0.0.3-2 → 0.0.3-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/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-input/nile-input.css.js +14 -8
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-input/nile-input.css.js.map +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-select/nile-select.css.js +0 -2
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-select/nile-select.css.js.map +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-textarea/nile-textarea.css.js +7 -8
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-textarea/nile-textarea.css.js.map +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/index.iife.js +21 -18
- package/dist/nile-input/nile-input.css.cjs.js +1 -1
- package/dist/nile-input/nile-input.css.cjs.js.map +1 -1
- package/dist/nile-input/nile-input.css.esm.js +14 -8
- package/dist/nile-select/nile-select.css.cjs.js +1 -1
- package/dist/nile-select/nile-select.css.cjs.js.map +1 -1
- package/dist/nile-select/nile-select.css.esm.js +0 -2
- package/dist/nile-textarea/nile-textarea.css.cjs.js +1 -1
- package/dist/nile-textarea/nile-textarea.css.cjs.js.map +1 -1
- package/dist/nile-textarea/nile-textarea.css.esm.js +7 -8
- package/dist/src/nile-input/nile-input.css.js +14 -8
- package/dist/src/nile-input/nile-input.css.js.map +1 -1
- package/dist/src/nile-select/nile-select.css.js +0 -2
- package/dist/src/nile-select/nile-select.css.js.map +1 -1
- package/dist/src/nile-textarea/nile-textarea.css.js +7 -8
- package/dist/src/nile-textarea/nile-textarea.css.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-input/nile-input.css.ts +14 -8
- package/src/nile-select/nile-select.css.ts +0 -2
- package/src/nile-textarea/nile-textarea.css.ts +7 -8
package/package.json
CHANGED
@@ -44,7 +44,7 @@ export const styles = css`
|
|
44
44
|
:host([required]) .form-control--has-label .form-control__label::after {
|
45
45
|
content: '*';
|
46
46
|
margin-inline-start: -2px;
|
47
|
-
color:
|
47
|
+
color: #A4121C;
|
48
48
|
}
|
49
49
|
|
50
50
|
/* Help text */
|
@@ -81,16 +81,19 @@ export const styles = css`
|
|
81
81
|
justify-content: start;
|
82
82
|
position: relative;
|
83
83
|
width: 100%;
|
84
|
-
font-family: inherit;
|
85
84
|
font-weight: 400;
|
86
|
-
letter-spacing: normal;
|
87
85
|
vertical-align: middle;
|
88
86
|
overflow: hidden;
|
89
87
|
cursor: text;
|
90
88
|
transition: 150ms color, 150ms border, 150ms box-shadow,
|
91
89
|
150ms background-color;
|
92
90
|
box-sizing: border-box;
|
93
|
-
|
91
|
+
color: var(--nile-colors-dark-900);
|
92
|
+
font-family: Colfax-regular;
|
93
|
+
font-size: 14px;
|
94
|
+
font-style: normal;
|
95
|
+
line-height: 14px;
|
96
|
+
letter-spacing: 0.2px; }
|
94
97
|
|
95
98
|
/* Standard inputs */
|
96
99
|
.input--standard {
|
@@ -164,12 +167,8 @@ export const styles = css`
|
|
164
167
|
|
165
168
|
.input__control {
|
166
169
|
flex: 1 1 auto;
|
167
|
-
font-family: inherit;
|
168
|
-
font-size: inherit;
|
169
|
-
font-weight: inherit;
|
170
170
|
min-width: 0;
|
171
171
|
height: 100%;
|
172
|
-
color: hsl(240 5.3% 26.1%);
|
173
172
|
border: none;
|
174
173
|
background: none;
|
175
174
|
box-shadow: none;
|
@@ -177,6 +176,13 @@ export const styles = css`
|
|
177
176
|
margin: 0;
|
178
177
|
cursor: inherit;
|
179
178
|
-webkit-appearance: none;
|
179
|
+
color: var(--nile-colors-dark-900);
|
180
|
+
font-family: Colfax-regular;
|
181
|
+
font-size: 14px;
|
182
|
+
font-style: normal;
|
183
|
+
font-weight: 400;
|
184
|
+
line-height: 14px;
|
185
|
+
letter-spacing: 0.2px;
|
180
186
|
}
|
181
187
|
|
182
188
|
.input__control::-webkit-search-decoration,
|
@@ -39,7 +39,7 @@ export const styles = css`
|
|
39
39
|
:host([required]) .form-control--has-label .form-control__label::after {
|
40
40
|
content: '*';
|
41
41
|
margin-inline-start: -2px;
|
42
|
-
color:
|
42
|
+
color: #A4121C;
|
43
43
|
}
|
44
44
|
|
45
45
|
/* Help text */
|
@@ -75,9 +75,6 @@ export const styles = css`
|
|
75
75
|
align-items: center;
|
76
76
|
position: relative;
|
77
77
|
width: 100%;
|
78
|
-
font-family: Arial, sans-serif;
|
79
|
-
font-weight: 400;
|
80
|
-
line-height: 1.5;
|
81
78
|
letter-spacing: 0.5px;
|
82
79
|
vertical-align: middle;
|
83
80
|
border-radius: var(--nile-radius-base-standard);
|
@@ -145,10 +142,12 @@ export const styles = css`
|
|
145
142
|
/* Textarea control styles */
|
146
143
|
.textarea__control {
|
147
144
|
flex: 1 1 auto;
|
148
|
-
font-family:
|
149
|
-
font-size:
|
150
|
-
font-
|
151
|
-
|
145
|
+
font-family: Colfax-regular;
|
146
|
+
font-size: 14px;
|
147
|
+
font-style: normal;
|
148
|
+
font-weight: 400;
|
149
|
+
line-height: 14px; /* 100% */
|
150
|
+
letter-spacing: 0.2px;
|
152
151
|
color: var(--nile-colors-dark-900);
|
153
152
|
border: none;
|
154
153
|
background: none;
|