@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.
Files changed (28) hide show
  1. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-input/nile-input.css.js +14 -8
  2. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-input/nile-input.css.js.map +1 -1
  3. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-select/nile-select.css.js +0 -2
  4. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-select/nile-select.css.js.map +1 -1
  5. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-textarea/nile-textarea.css.js +7 -8
  6. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-textarea/nile-textarea.css.js.map +1 -1
  7. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/tsconfig.tsbuildinfo +1 -1
  8. package/dist/index.iife.js +21 -18
  9. package/dist/nile-input/nile-input.css.cjs.js +1 -1
  10. package/dist/nile-input/nile-input.css.cjs.js.map +1 -1
  11. package/dist/nile-input/nile-input.css.esm.js +14 -8
  12. package/dist/nile-select/nile-select.css.cjs.js +1 -1
  13. package/dist/nile-select/nile-select.css.cjs.js.map +1 -1
  14. package/dist/nile-select/nile-select.css.esm.js +0 -2
  15. package/dist/nile-textarea/nile-textarea.css.cjs.js +1 -1
  16. package/dist/nile-textarea/nile-textarea.css.cjs.js.map +1 -1
  17. package/dist/nile-textarea/nile-textarea.css.esm.js +7 -8
  18. package/dist/src/nile-input/nile-input.css.js +14 -8
  19. package/dist/src/nile-input/nile-input.css.js.map +1 -1
  20. package/dist/src/nile-select/nile-select.css.js +0 -2
  21. package/dist/src/nile-select/nile-select.css.js.map +1 -1
  22. package/dist/src/nile-textarea/nile-textarea.css.js +7 -8
  23. package/dist/src/nile-textarea/nile-textarea.css.js.map +1 -1
  24. package/dist/tsconfig.tsbuildinfo +1 -1
  25. package/package.json +1 -1
  26. package/src/nile-input/nile-input.css.ts +14 -8
  27. package/src/nile-select/nile-select.css.ts +0 -2
  28. package/src/nile-textarea/nile-textarea.css.ts +7 -8
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent nile-elements following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "nile-elements",
6
- "version": "0.0.3-2",
6
+ "version": "0.0.3-3",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -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: undefined;
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,
@@ -346,8 +346,6 @@ export const styles = css`
346
346
  }
347
347
 
348
348
  .select__options {
349
- padding: 5px;
350
- margin: 4px;
351
349
  font-size: 14px;
352
350
  color: rgb(133, 129, 129);
353
351
  }
@@ -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: red;
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: inherit;
149
- font-size: inherit;
150
- font-weight: inherit;
151
- line-height: 1.4;
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;