@aquera/nile-elements 0.0.4-3 → 0.0.4-5
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-checkbox/nile-checkbox.css.js +3 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-checkbox/nile-checkbox.css.js.map +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-checkbox/nile-checkbox.js +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-checkbox/nile-checkbox.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 +4 -2
- package/dist/nile-checkbox/nile-checkbox.cjs.js +1 -1
- package/dist/nile-checkbox/nile-checkbox.cjs.js.map +1 -1
- package/dist/nile-checkbox/nile-checkbox.css.cjs.js +1 -1
- package/dist/nile-checkbox/nile-checkbox.css.cjs.js.map +1 -1
- package/dist/nile-checkbox/nile-checkbox.css.esm.js +3 -1
- package/dist/nile-checkbox/nile-checkbox.esm.js +7 -7
- package/dist/src/nile-checkbox/nile-checkbox.css.js +3 -1
- package/dist/src/nile-checkbox/nile-checkbox.css.js.map +1 -1
- package/dist/src/nile-checkbox/nile-checkbox.js +1 -1
- package/dist/src/nile-checkbox/nile-checkbox.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-checkbox/nile-checkbox.css.ts +3 -1
- package/src/nile-checkbox/nile-checkbox.ts +1 -1
package/package.json
CHANGED
@@ -13,6 +13,7 @@ import { css } from 'lit-element';
|
|
13
13
|
export const styles = css`
|
14
14
|
:host {
|
15
15
|
display: inline-block;
|
16
|
+
width: 100%;
|
16
17
|
}
|
17
18
|
|
18
19
|
.checkbox {
|
@@ -134,9 +135,10 @@ export const styles = css`
|
|
134
135
|
--nile-svg-stroke: white;
|
135
136
|
}
|
136
137
|
|
137
|
-
.
|
138
|
+
.checkbox__helptext-icon {
|
138
139
|
float: right;
|
139
140
|
cursor: pointer;
|
141
|
+
margin-right: 12px;
|
140
142
|
}
|
141
143
|
`;
|
142
144
|
|
@@ -239,7 +239,7 @@ export class NileCheckbox extends NileElement {
|
|
239
239
|
</label>
|
240
240
|
|
241
241
|
${hasHelpText
|
242
|
-
? html` <nile-icon name="question" @click=${this.toggleHelpText} class="
|
242
|
+
? html` <nile-icon name="question" @click=${this.toggleHelpText} class="checkbox__helptext-icon"></nile-icon> `
|
243
243
|
: ``}
|
244
244
|
|
245
245
|
${hasHelpText && this.showHelpText
|