@aquera/nile-elements 0.0.40 → 0.0.41-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/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-code-editor/nile-code-editor.js +1 -0
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-code-editor/nile-code-editor.js.map +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-select/nile-select.js +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-select/nile-select.js.map +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-switcher/nile-switcher.js +1 -0
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-switcher/nile-switcher.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 +3 -1
- package/dist/nile-code-editor/nile-code-editor.cjs.js +2 -2
- package/dist/nile-code-editor/nile-code-editor.cjs.js.map +1 -1
- package/dist/nile-code-editor/nile-code-editor.esm.js +2 -1
- package/dist/nile-select/nile-select.cjs.js +1 -1
- package/dist/nile-select/nile-select.cjs.js.map +1 -1
- package/dist/nile-select/nile-select.esm.js +1 -1
- package/dist/nile-switcher/nile-switcher.cjs.js +1 -1
- package/dist/nile-switcher/nile-switcher.cjs.js.map +1 -1
- package/dist/nile-switcher/nile-switcher.esm.js +1 -0
- package/dist/src/nile-code-editor/nile-code-editor.js +1 -0
- package/dist/src/nile-code-editor/nile-code-editor.js.map +1 -1
- package/dist/src/nile-select/nile-select.js +1 -1
- package/dist/src/nile-select/nile-select.js.map +1 -1
- package/dist/src/nile-switcher/nile-switcher.js +1 -0
- package/dist/src/nile-switcher/nile-switcher.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-code-editor/nile-code-editor.ts +1 -0
- package/src/nile-select/nile-select.ts +1 -1
- package/src/nile-switcher/nile-switcher.ts +1 -0
package/package.json
CHANGED
@@ -159,6 +159,7 @@ export class NileCodeEditor extends NileElement {
|
|
159
159
|
const noborder = !!this.noborder;
|
160
160
|
return html`<div
|
161
161
|
part="code-editor-base"
|
162
|
+
exportparts="code-editor-base : code-editor-base"
|
162
163
|
class=${classMap({
|
163
164
|
'code-mirror': true,
|
164
165
|
noborder: noborder,
|
@@ -531,7 +531,7 @@ export class NileSelect extends NileElement implements NileFormControl {
|
|
531
531
|
const target = event.target as HTMLElement;
|
532
532
|
const option = target.closest('nile-option');
|
533
533
|
|
534
|
-
if(this.blockValueChange){
|
534
|
+
if(this.blockValueChange && option){
|
535
535
|
this.emit('nile-block-change', { value: option?.value, name: this.name });
|
536
536
|
this.hide();
|
537
537
|
return;
|