@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.
- package/CHANGELOG.md +7 -0
- package/dist/cjs/lime-elements.cjs.js +1 -1
- package/dist/cjs/limel-code-editor.cjs.entry.js +2 -1
- package/dist/cjs/limel-code-editor.cjs.entry.js.map +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/code-editor/code-editor.js +21 -1
- package/dist/collection/components/code-editor/code-editor.js.map +1 -1
- package/dist/esm/lime-elements.js +1 -1
- package/dist/esm/limel-code-editor.entry.js +2 -1
- package/dist/esm/limel-code-editor.entry.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/lime-elements.esm.js.map +1 -1
- package/dist/lime-elements/{p-5ca68424.entry.js → p-b8ade4ca.entry.js} +2 -2
- package/dist/lime-elements/p-b8ade4ca.entry.js.map +1 -0
- package/dist/types/components/code-editor/code-editor.d.ts +5 -0
- package/dist/types/components.d.ts +12 -0
- package/package.json +1 -1
- package/dist/lime-elements/p-5ca68424.entry.js.map +0 -1
|
@@ -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>;
|