@limetech/lime-elements 38.41.0 → 38.42.0

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.
@@ -17,6 +17,7 @@ import { Languages } from '../date-picker/date.types';
17
17
  * @exampleComponent limel-example-code-editor
18
18
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
19
19
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
20
+ * @exampleComponent limel-example-code-editor-copy
20
21
  * @exampleComponent limel-example-code-editor-composite
21
22
  */
22
23
  export declare class CodeEditor {
@@ -83,6 +84,10 @@ export declare class CodeEditor {
83
84
  * Will translate the translatable strings on the components.
84
85
  */
85
86
  translationLanguage: Languages;
87
+ /**
88
+ * Set to false to hide the copy button
89
+ */
90
+ showCopyButton: boolean;
86
91
  /**
87
92
  * Emitted when the code has changed. Will only be emitted when the code
88
93
  * area has lost focus
@@ -876,6 +876,7 @@ export namespace Components {
876
876
  * @exampleComponent limel-example-code-editor
877
877
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
878
878
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
879
+ * @exampleComponent limel-example-code-editor-copy
879
880
  * @exampleComponent limel-example-code-editor-composite
880
881
  */
881
882
  interface LimelCodeEditor {
@@ -927,6 +928,10 @@ export namespace Components {
927
928
  * Set to `true` to indicate that the field is required.
928
929
  */
929
930
  "required": boolean;
931
+ /**
932
+ * Set to false to hide the copy button
933
+ */
934
+ "showCopyButton": boolean;
930
935
  /**
931
936
  * Defines the language for translations. Will translate the translatable strings on the components.
932
937
  */
@@ -4008,6 +4013,7 @@ declare global {
4008
4013
  * @exampleComponent limel-example-code-editor
4009
4014
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
4010
4015
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
4016
+ * @exampleComponent limel-example-code-editor-copy
4011
4017
  * @exampleComponent limel-example-code-editor-composite
4012
4018
  */
4013
4019
  interface HTMLLimelCodeEditorElement extends Components.LimelCodeEditor, HTMLStencilElement {
@@ -6130,6 +6136,7 @@ declare namespace LocalJSX {
6130
6136
  * @exampleComponent limel-example-code-editor
6131
6137
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
6132
6138
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
6139
+ * @exampleComponent limel-example-code-editor-copy
6133
6140
  * @exampleComponent limel-example-code-editor-composite
6134
6141
  */
6135
6142
  interface LimelCodeEditor {
@@ -6185,6 +6192,10 @@ declare namespace LocalJSX {
6185
6192
  * Set to `true` to indicate that the field is required.
6186
6193
  */
6187
6194
  "required"?: boolean;
6195
+ /**
6196
+ * Set to false to hide the copy button
6197
+ */
6198
+ "showCopyButton"?: boolean;
6188
6199
  /**
6189
6200
  * Defines the language for translations. Will translate the translatable strings on the components.
6190
6201
  */
@@ -9378,6 +9389,7 @@ declare module "@stencil/core" {
9378
9389
  * @exampleComponent limel-example-code-editor
9379
9390
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
9380
9391
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
9392
+ * @exampleComponent limel-example-code-editor-copy
9381
9393
  * @exampleComponent limel-example-code-editor-composite
9382
9394
  */
9383
9395
  "limel-code-editor": LocalJSX.LimelCodeEditor & JSXBase.HTMLAttributes<HTMLLimelCodeEditorElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-elements",
3
- "version": "38.41.0",
3
+ "version": "38.42.0",
4
4
  "description": "Lime Elements",
5
5
  "author": "Lime Technologies",
6
6
  "license": "Apache-2.0",