@aquera/nile-elements 0.0.38-1 → 0.0.38-2

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 (22) hide show
  1. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-switcher/nile-switcher.css.js +1 -1
  2. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-switcher/nile-switcher.css.js.map +1 -1
  3. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-switcher/nile-switcher.d.ts +1 -0
  4. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-switcher/nile-switcher.js +2 -1
  5. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-switcher/nile-switcher.js.map +1 -1
  6. package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/tsconfig.tsbuildinfo +1 -1
  7. package/dist/index.iife.js +3 -2
  8. package/dist/nile-switcher/nile-switcher.cjs.js +1 -1
  9. package/dist/nile-switcher/nile-switcher.cjs.js.map +1 -1
  10. package/dist/nile-switcher/nile-switcher.css.cjs.js +1 -1
  11. package/dist/nile-switcher/nile-switcher.css.cjs.js.map +1 -1
  12. package/dist/nile-switcher/nile-switcher.css.esm.js +1 -1
  13. package/dist/nile-switcher/nile-switcher.esm.js +26 -25
  14. package/dist/src/nile-switcher/nile-switcher.css.js +1 -1
  15. package/dist/src/nile-switcher/nile-switcher.css.js.map +1 -1
  16. package/dist/src/nile-switcher/nile-switcher.d.ts +1 -0
  17. package/dist/src/nile-switcher/nile-switcher.js +2 -1
  18. package/dist/src/nile-switcher/nile-switcher.js.map +1 -1
  19. package/dist/tsconfig.tsbuildinfo +1 -1
  20. package/package.json +1 -1
  21. package/src/nile-switcher/nile-switcher.css.ts +1 -1
  22. package/src/nile-switcher/nile-switcher.ts +3 -0
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.38-1",
6
+ "version": "0.0.38-2",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -20,7 +20,7 @@ export const styles = css`
20
20
  cursor: pointer;
21
21
  }
22
22
  .pointer-cursor-not-allowed {
23
- cursor: not-allowed;
23
+ cursor: default;
24
24
  }
25
25
 
26
26
  .switcher__label {
@@ -66,6 +66,7 @@ export interface switchInputType {
66
66
  noborder?: boolean;
67
67
  multiLine?: boolean;
68
68
  expand?: boolean;
69
+ updateValue: false;
69
70
  }
70
71
 
71
72
  export enum POSITIONS {
@@ -315,6 +316,7 @@ export class NileSwitcher extends NileElement {
315
316
  inputType,
316
317
  noborder,
317
318
  expand,
319
+ updateValue,
318
320
  } = Input;
319
321
  return html`<nile-code-editor
320
322
  part="switcher-code-editor"
@@ -330,6 +332,7 @@ export class NileSwitcher extends NileElement {
330
332
  .readonly=${readonly}
331
333
  .expandable="${expand}"
332
334
  .error=${error}
335
+ .updateValue=${updateValue}
333
336
  .errorMessage=${errorMessage}
334
337
  .customAutoCompletions="${customAutoCompletions}"
335
338
  ></nile-code-editor> `;