@limetech/lime-elements 38.41.0 → 38.43.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.
Files changed (31) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/cjs/lime-elements.cjs.js +1 -1
  3. package/dist/cjs/limel-chart.cjs.entry.js +5 -2
  4. package/dist/cjs/limel-chart.cjs.entry.js.map +1 -1
  5. package/dist/cjs/limel-code-editor.cjs.entry.js +2 -1
  6. package/dist/cjs/limel-code-editor.cjs.entry.js.map +1 -1
  7. package/dist/cjs/loader.cjs.js +1 -1
  8. package/dist/collection/components/chart/chart.css +181 -0
  9. package/dist/collection/components/chart/chart.js +40 -1
  10. package/dist/collection/components/chart/chart.js.map +1 -1
  11. package/dist/collection/components/code-editor/code-editor.js +21 -1
  12. package/dist/collection/components/code-editor/code-editor.js.map +1 -1
  13. package/dist/esm/lime-elements.js +1 -1
  14. package/dist/esm/limel-chart.entry.js +5 -2
  15. package/dist/esm/limel-chart.entry.js.map +1 -1
  16. package/dist/esm/limel-code-editor.entry.js +2 -1
  17. package/dist/esm/limel-code-editor.entry.js.map +1 -1
  18. package/dist/esm/loader.js +1 -1
  19. package/dist/lime-elements/lime-elements.esm.js +1 -1
  20. package/dist/lime-elements/lime-elements.esm.js.map +1 -1
  21. package/dist/lime-elements/p-08c6b70d.entry.js +2 -0
  22. package/dist/lime-elements/p-08c6b70d.entry.js.map +1 -0
  23. package/dist/lime-elements/{p-5ca68424.entry.js → p-b8ade4ca.entry.js} +2 -2
  24. package/dist/lime-elements/p-b8ade4ca.entry.js.map +1 -0
  25. package/dist/types/components/chart/chart.d.ts +14 -0
  26. package/dist/types/components/code-editor/code-editor.d.ts +5 -0
  27. package/dist/types/components.d.ts +28 -0
  28. package/package.json +1 -1
  29. package/dist/lime-elements/p-5ca68424.entry.js.map +0 -1
  30. package/dist/lime-elements/p-7d107fba.entry.js +0 -2
  31. package/dist/lime-elements/p-7d107fba.entry.js.map +0 -1
@@ -57,6 +57,20 @@ export declare class Chart {
57
57
  * Only affects chart types with X and Y axes, such as area, bar, and line charts.
58
58
  */
59
59
  displayAxisLabels: boolean;
60
+ /**
61
+ * Makes the `text` of chart items constantly visible,
62
+ * By default, item texts are displayed in a tooltip,
63
+ * when the item is hovered or focused.
64
+ * Only affects chart types with X and Y axes, such as area, bar, and line charts.
65
+ */
66
+ displayItemText: boolean;
67
+ /**
68
+ * Makes the `value` (or `formattedValue`) of chart items constantly visible,
69
+ * By default, item values are displayed in a tooltip,
70
+ * when the item is hovered or focused.
71
+ * Only affects chart types with X and Y axes, such as area, bar, and line charts.
72
+ */
73
+ displayItemValue: boolean;
60
74
  /**
61
75
  * List of items in the chart,
62
76
  * each representing a data point.
@@ -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
@@ -500,6 +500,14 @@ export namespace Components {
500
500
  * When set to true, renders visible labels for X and Y axes. Only affects chart types with X and Y axes, such as area, bar, and line charts.
501
501
  */
502
502
  "displayAxisLabels": boolean;
503
+ /**
504
+ * Makes the `text` of chart items constantly visible, By default, item texts are displayed in a tooltip, when the item is hovered or focused. Only affects chart types with X and Y axes, such as area, bar, and line charts.
505
+ */
506
+ "displayItemText": boolean;
507
+ /**
508
+ * Makes the `value` (or `formattedValue`) of chart items constantly visible, By default, item values are displayed in a tooltip, when the item is hovered or focused. Only affects chart types with X and Y axes, such as area, bar, and line charts.
509
+ */
510
+ "displayItemValue": boolean;
503
511
  /**
504
512
  * List of items in the chart, each representing a data point.
505
513
  */
@@ -876,6 +884,7 @@ export namespace Components {
876
884
  * @exampleComponent limel-example-code-editor
877
885
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
878
886
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
887
+ * @exampleComponent limel-example-code-editor-copy
879
888
  * @exampleComponent limel-example-code-editor-composite
880
889
  */
881
890
  interface LimelCodeEditor {
@@ -927,6 +936,10 @@ export namespace Components {
927
936
  * Set to `true` to indicate that the field is required.
928
937
  */
929
938
  "required": boolean;
939
+ /**
940
+ * Set to false to hide the copy button
941
+ */
942
+ "showCopyButton": boolean;
930
943
  /**
931
944
  * Defines the language for translations. Will translate the translatable strings on the components.
932
945
  */
@@ -4008,6 +4021,7 @@ declare global {
4008
4021
  * @exampleComponent limel-example-code-editor
4009
4022
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
4010
4023
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
4024
+ * @exampleComponent limel-example-code-editor-copy
4011
4025
  * @exampleComponent limel-example-code-editor-composite
4012
4026
  */
4013
4027
  interface HTMLLimelCodeEditorElement extends Components.LimelCodeEditor, HTMLStencilElement {
@@ -5734,6 +5748,14 @@ declare namespace LocalJSX {
5734
5748
  * When set to true, renders visible labels for X and Y axes. Only affects chart types with X and Y axes, such as area, bar, and line charts.
5735
5749
  */
5736
5750
  "displayAxisLabels"?: boolean;
5751
+ /**
5752
+ * Makes the `text` of chart items constantly visible, By default, item texts are displayed in a tooltip, when the item is hovered or focused. Only affects chart types with X and Y axes, such as area, bar, and line charts.
5753
+ */
5754
+ "displayItemText"?: boolean;
5755
+ /**
5756
+ * Makes the `value` (or `formattedValue`) of chart items constantly visible, By default, item values are displayed in a tooltip, when the item is hovered or focused. Only affects chart types with X and Y axes, such as area, bar, and line charts.
5757
+ */
5758
+ "displayItemValue"?: boolean;
5737
5759
  /**
5738
5760
  * List of items in the chart, each representing a data point.
5739
5761
  */
@@ -6130,6 +6152,7 @@ declare namespace LocalJSX {
6130
6152
  * @exampleComponent limel-example-code-editor
6131
6153
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
6132
6154
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
6155
+ * @exampleComponent limel-example-code-editor-copy
6133
6156
  * @exampleComponent limel-example-code-editor-composite
6134
6157
  */
6135
6158
  interface LimelCodeEditor {
@@ -6185,6 +6208,10 @@ declare namespace LocalJSX {
6185
6208
  * Set to `true` to indicate that the field is required.
6186
6209
  */
6187
6210
  "required"?: boolean;
6211
+ /**
6212
+ * Set to false to hide the copy button
6213
+ */
6214
+ "showCopyButton"?: boolean;
6188
6215
  /**
6189
6216
  * Defines the language for translations. Will translate the translatable strings on the components.
6190
6217
  */
@@ -9378,6 +9405,7 @@ declare module "@stencil/core" {
9378
9405
  * @exampleComponent limel-example-code-editor
9379
9406
  * @exampleComponent limel-example-code-editor-readonly-with-line-numbers
9380
9407
  * @exampleComponent limel-example-code-editor-fold-lint-wrap
9408
+ * @exampleComponent limel-example-code-editor-copy
9381
9409
  * @exampleComponent limel-example-code-editor-composite
9382
9410
  */
9383
9411
  "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.43.0",
4
4
  "description": "Lime Elements",
5
5
  "author": "Lime Technologies",
6
6
  "license": "Apache-2.0",