@limetech/lime-elements 38.31.2 → 38.32.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 (51) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +1 -1
  3. package/dist/cjs/lime-elements.cjs.js +1 -1
  4. package/dist/cjs/limel-checkbox.cjs.entry.js.map +1 -1
  5. package/dist/cjs/limel-color-picker.cjs.entry.js.map +1 -1
  6. package/dist/cjs/limel-form.cjs.entry.js +8 -3
  7. package/dist/cjs/limel-form.cjs.entry.js.map +1 -1
  8. package/dist/cjs/limel-portal_3.cjs.entry.js.map +1 -1
  9. package/dist/cjs/limel-snackbar.cjs.entry.js.map +1 -1
  10. package/dist/cjs/limel-switch.cjs.entry.js.map +1 -1
  11. package/dist/cjs/loader.cjs.js +1 -1
  12. package/dist/collection/components/checkbox/checkbox.js +1 -1
  13. package/dist/collection/components/checkbox/checkbox.js.map +1 -1
  14. package/dist/collection/components/color-picker/color-picker.js +1 -1
  15. package/dist/collection/components/color-picker/color-picker.js.map +1 -1
  16. package/dist/collection/components/form/form.css +4 -6
  17. package/dist/collection/components/form/row/row.js +4 -1
  18. package/dist/collection/components/form/row/row.js.map +1 -1
  19. package/dist/collection/components/form/templates/common.js +3 -1
  20. package/dist/collection/components/form/templates/common.js.map +1 -1
  21. package/dist/collection/components/snackbar/snackbar.js +2 -2
  22. package/dist/collection/components/snackbar/snackbar.js.map +1 -1
  23. package/dist/collection/components/switch/switch.js +1 -1
  24. package/dist/collection/components/switch/switch.js.map +1 -1
  25. package/dist/collection/components/tooltip/tooltip.js +2 -2
  26. package/dist/collection/components/tooltip/tooltip.js.map +1 -1
  27. package/dist/esm/lime-elements.js +1 -1
  28. package/dist/esm/limel-checkbox.entry.js.map +1 -1
  29. package/dist/esm/limel-color-picker.entry.js.map +1 -1
  30. package/dist/esm/limel-form.entry.js +8 -3
  31. package/dist/esm/limel-form.entry.js.map +1 -1
  32. package/dist/esm/limel-portal_3.entry.js.map +1 -1
  33. package/dist/esm/limel-snackbar.entry.js.map +1 -1
  34. package/dist/esm/limel-switch.entry.js.map +1 -1
  35. package/dist/esm/loader.js +1 -1
  36. package/dist/lime-elements/lime-elements.esm.js +1 -1
  37. package/dist/lime-elements/p-40542ccc.entry.js.map +1 -1
  38. package/dist/lime-elements/p-489d7f63.entry.js.map +1 -1
  39. package/dist/lime-elements/p-51d475d8.entry.js.map +1 -1
  40. package/dist/lime-elements/p-8539647d.entry.js.map +1 -1
  41. package/dist/lime-elements/{p-ae267255.entry.js → p-a1a32893.entry.js} +3 -3
  42. package/dist/lime-elements/{p-ae267255.entry.js.map → p-a1a32893.entry.js.map} +1 -1
  43. package/dist/lime-elements/p-b5a96409.entry.js.map +1 -1
  44. package/dist/types/components/checkbox/checkbox.d.ts +1 -1
  45. package/dist/types/components/color-picker/color-picker.d.ts +1 -1
  46. package/dist/types/components/form/templates/common.d.ts +3 -3
  47. package/dist/types/components/snackbar/snackbar.d.ts +2 -2
  48. package/dist/types/components/switch/switch.d.ts +1 -1
  49. package/dist/types/components/tooltip/tooltip.d.ts +2 -2
  50. package/dist/types/components.d.ts +28 -28
  51. package/package.json +1 -1
@@ -18,7 +18,7 @@ import { Label } from '../dynamic-label/label.types';
18
18
  * :::important
19
19
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
20
20
  * But there is an important difference between the two! Please read our guidelines about
21
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
21
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
22
22
  *
23
23
  * @exampleComponent limel-example-checkbox
24
24
  * @exampleComponent limel-example-checkbox-helper-text
@@ -9,7 +9,7 @@ import type { CustomColorSwatch } from './color-picker.types';
9
9
  * The color picker can also show you a preview of any valid color name or color value.
10
10
  *
11
11
  * :::note
12
- * Make sure to read our [guidelines about usage of colors](/#/DesignGuidelines/color-system.md/) from our palette.
12
+ * Make sure to read our [guidelines about usage of colors](#/DesignGuidelines/color-system.md/) from our palette.
13
13
  * :::
14
14
  *
15
15
  * @exampleComponent limel-example-color-picker-basic
@@ -11,9 +11,9 @@ export declare function renderTitle(title: string): React.DetailedReactHTMLEleme
11
11
  *
12
12
  * @param description
13
13
  */
14
- export declare function renderDescription(description: string): React.DetailedReactHTMLElement<{
15
- className: string;
16
- }, HTMLElement>;
14
+ export declare function renderDescription(description: string): React.ReactElement<{
15
+ value: string;
16
+ }, string | React.JSXElementConstructor<any>>;
17
17
  /**
18
18
  * Find a suitable title for a nested structure.
19
19
  *
@@ -16,9 +16,9 @@ import { Languages } from '../date-picker/date.types';
16
16
  * :::note
17
17
  * If the information you want to display has a higher importance or priority,
18
18
  * and you need to make sure that the user takes an action to dismiss it,
19
- * consider using the [Banner](/#/component/limel-banner/) component instead.
19
+ * consider using the [Banner](#/component/limel-banner/) component instead.
20
20
  * For more complex interactions and for delivering more detailed information,
21
- * [Dialog](/#/component/limel-dialog/) is a better choice.
21
+ * [Dialog](#/component/limel-dialog/) is a better choice.
22
22
  * :::
23
23
  *
24
24
  * @exampleComponent limel-example-snackbar
@@ -11,7 +11,7 @@ import { Label } from '../dynamic-label/label.types';
11
11
  * :::important
12
12
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
13
13
  * But there is an important difference between the two! Please read our guidelines about
14
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
14
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
15
15
  *
16
16
  * @exampleComponent limel-example-switch
17
17
  * @exampleComponent limel-example-switch-helper-text
@@ -31,11 +31,11 @@ import { OpenDirection } from '../menu/menu.types';
31
31
  * Use them only when they add significant value.
32
32
  * - A good tip is concise, helpful, and informative.
33
33
  * Don't explain the obvious or simply repeat what is already on the screen.
34
- * When used correctly, supplemental info of a tooltip helps to [declutter the UI](/#/DesignGuidelines/decluttering.md/).
34
+ * When used correctly, supplemental info of a tooltip helps to [declutter the UI](#/DesignGuidelines/decluttering.md/).
35
35
  * - If the tip is essential to the primary tasks that the user is performing,
36
36
  * such as warnings or important notes, include the information directly in the
37
37
  * interface instead.
38
- * - When a component offers a helper text (e.g. [Input field](/#/component/limel-input-field/)),
38
+ * - When a component offers a helper text (e.g. [Input field](#/component/limel-input-field/)),
39
39
  * use that, not a tooltip.
40
40
  * - Make sure to use the tooltip on an element that users naturally and
41
41
  * effortlessly recognize can be hovered.
@@ -537,7 +537,7 @@ export namespace Components {
537
537
  * :::important
538
538
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
539
539
  * But there is an important difference between the two! Please read our guidelines about
540
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
540
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
541
541
  * @exampleComponent limel-example-checkbox
542
542
  * @exampleComponent limel-example-checkbox-helper-text
543
543
  * @exampleComponent limel-example-checkbox-readonly
@@ -949,7 +949,7 @@ export namespace Components {
949
949
  * and use it where desired.
950
950
  * The color picker can also show you a preview of any valid color name or color value.
951
951
  * :::note
952
- * Make sure to read our [guidelines about usage of colors](/#/DesignGuidelines/color-system.md/) from our palette.
952
+ * Make sure to read our [guidelines about usage of colors](#/DesignGuidelines/color-system.md/) from our palette.
953
953
  * :::
954
954
  * @exampleComponent limel-example-color-picker-basic
955
955
  * @exampleComponent limel-example-color-picker-custom-palette
@@ -2888,9 +2888,9 @@ export namespace Components {
2888
2888
  * :::note
2889
2889
  * If the information you want to display has a higher importance or priority,
2890
2890
  * and you need to make sure that the user takes an action to dismiss it,
2891
- * consider using the [Banner](/#/component/limel-banner/) component instead.
2891
+ * consider using the [Banner](#/component/limel-banner/) component instead.
2892
2892
  * For more complex interactions and for delivering more detailed information,
2893
- * [Dialog](/#/component/limel-dialog/) is a better choice.
2893
+ * [Dialog](#/component/limel-dialog/) is a better choice.
2894
2894
  * :::
2895
2895
  * @exampleComponent limel-example-snackbar
2896
2896
  * @exampleComponent limel-example-snackbar-with-action
@@ -3004,7 +3004,7 @@ export namespace Components {
3004
3004
  * :::important
3005
3005
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
3006
3006
  * But there is an important difference between the two! Please read our guidelines about
3007
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
3007
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
3008
3008
  * @exampleComponent limel-example-switch
3009
3009
  * @exampleComponent limel-example-switch-helper-text
3010
3010
  * @exampleComponent limel-example-switch-readonly
@@ -3302,11 +3302,11 @@ export namespace Components {
3302
3302
  * Use them only when they add significant value.
3303
3303
  * - A good tip is concise, helpful, and informative.
3304
3304
  * Don't explain the obvious or simply repeat what is already on the screen.
3305
- * When used correctly, supplemental info of a tooltip helps to [declutter the UI](/#/DesignGuidelines/decluttering.md/).
3305
+ * When used correctly, supplemental info of a tooltip helps to [declutter the UI](#/DesignGuidelines/decluttering.md/).
3306
3306
  * - If the tip is essential to the primary tasks that the user is performing,
3307
3307
  * such as warnings or important notes, include the information directly in the
3308
3308
  * interface instead.
3309
- * - When a component offers a helper text (e.g. [Input field](/#/component/limel-input-field/)),
3309
+ * - When a component offers a helper text (e.g. [Input field](#/component/limel-input-field/)),
3310
3310
  * use that, not a tooltip.
3311
3311
  * - Make sure to use the tooltip on an element that users naturally and
3312
3312
  * effortlessly recognize can be hovered.
@@ -3823,7 +3823,7 @@ declare global {
3823
3823
  * :::important
3824
3824
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
3825
3825
  * But there is an important difference between the two! Please read our guidelines about
3826
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
3826
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
3827
3827
  * @exampleComponent limel-example-checkbox
3828
3828
  * @exampleComponent limel-example-checkbox-helper-text
3829
3829
  * @exampleComponent limel-example-checkbox-readonly
@@ -3991,7 +3991,7 @@ declare global {
3991
3991
  * and use it where desired.
3992
3992
  * The color picker can also show you a preview of any valid color name or color value.
3993
3993
  * :::note
3994
- * Make sure to read our [guidelines about usage of colors](/#/DesignGuidelines/color-system.md/) from our palette.
3994
+ * Make sure to read our [guidelines about usage of colors](#/DesignGuidelines/color-system.md/) from our palette.
3995
3995
  * :::
3996
3996
  * @exampleComponent limel-example-color-picker-basic
3997
3997
  * @exampleComponent limel-example-color-picker-custom-palette
@@ -4940,9 +4940,9 @@ declare global {
4940
4940
  * :::note
4941
4941
  * If the information you want to display has a higher importance or priority,
4942
4942
  * and you need to make sure that the user takes an action to dismiss it,
4943
- * consider using the [Banner](/#/component/limel-banner/) component instead.
4943
+ * consider using the [Banner](#/component/limel-banner/) component instead.
4944
4944
  * For more complex interactions and for delivering more detailed information,
4945
- * [Dialog](/#/component/limel-dialog/) is a better choice.
4945
+ * [Dialog](#/component/limel-dialog/) is a better choice.
4946
4946
  * :::
4947
4947
  * @exampleComponent limel-example-snackbar
4948
4948
  * @exampleComponent limel-example-snackbar-with-action
@@ -4998,7 +4998,7 @@ declare global {
4998
4998
  * :::important
4999
4999
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
5000
5000
  * But there is an important difference between the two! Please read our guidelines about
5001
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
5001
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
5002
5002
  * @exampleComponent limel-example-switch
5003
5003
  * @exampleComponent limel-example-switch-helper-text
5004
5004
  * @exampleComponent limel-example-switch-readonly
@@ -5144,11 +5144,11 @@ declare global {
5144
5144
  * Use them only when they add significant value.
5145
5145
  * - A good tip is concise, helpful, and informative.
5146
5146
  * Don't explain the obvious or simply repeat what is already on the screen.
5147
- * When used correctly, supplemental info of a tooltip helps to [declutter the UI](/#/DesignGuidelines/decluttering.md/).
5147
+ * When used correctly, supplemental info of a tooltip helps to [declutter the UI](#/DesignGuidelines/decluttering.md/).
5148
5148
  * - If the tip is essential to the primary tasks that the user is performing,
5149
5149
  * such as warnings or important notes, include the information directly in the
5150
5150
  * interface instead.
5151
- * - When a component offers a helper text (e.g. [Input field](/#/component/limel-input-field/)),
5151
+ * - When a component offers a helper text (e.g. [Input field](#/component/limel-input-field/)),
5152
5152
  * use that, not a tooltip.
5153
5153
  * - Make sure to use the tooltip on an element that users naturally and
5154
5154
  * effortlessly recognize can be hovered.
@@ -5719,7 +5719,7 @@ declare namespace LocalJSX {
5719
5719
  * :::important
5720
5720
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
5721
5721
  * But there is an important difference between the two! Please read our guidelines about
5722
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
5722
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
5723
5723
  * @exampleComponent limel-example-checkbox
5724
5724
  * @exampleComponent limel-example-checkbox-helper-text
5725
5725
  * @exampleComponent limel-example-checkbox-readonly
@@ -6163,7 +6163,7 @@ declare namespace LocalJSX {
6163
6163
  * and use it where desired.
6164
6164
  * The color picker can also show you a preview of any valid color name or color value.
6165
6165
  * :::note
6166
- * Make sure to read our [guidelines about usage of colors](/#/DesignGuidelines/color-system.md/) from our palette.
6166
+ * Make sure to read our [guidelines about usage of colors](#/DesignGuidelines/color-system.md/) from our palette.
6167
6167
  * :::
6168
6168
  * @exampleComponent limel-example-color-picker-basic
6169
6169
  * @exampleComponent limel-example-color-picker-custom-palette
@@ -8289,9 +8289,9 @@ declare namespace LocalJSX {
8289
8289
  * :::note
8290
8290
  * If the information you want to display has a higher importance or priority,
8291
8291
  * and you need to make sure that the user takes an action to dismiss it,
8292
- * consider using the [Banner](/#/component/limel-banner/) component instead.
8292
+ * consider using the [Banner](#/component/limel-banner/) component instead.
8293
8293
  * For more complex interactions and for delivering more detailed information,
8294
- * [Dialog](/#/component/limel-dialog/) is a better choice.
8294
+ * [Dialog](#/component/limel-dialog/) is a better choice.
8295
8295
  * :::
8296
8296
  * @exampleComponent limel-example-snackbar
8297
8297
  * @exampleComponent limel-example-snackbar-with-action
@@ -8412,7 +8412,7 @@ declare namespace LocalJSX {
8412
8412
  * :::important
8413
8413
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
8414
8414
  * But there is an important difference between the two! Please read our guidelines about
8415
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
8415
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
8416
8416
  * @exampleComponent limel-example-switch
8417
8417
  * @exampleComponent limel-example-switch-helper-text
8418
8418
  * @exampleComponent limel-example-switch-readonly
@@ -8803,11 +8803,11 @@ declare namespace LocalJSX {
8803
8803
  * Use them only when they add significant value.
8804
8804
  * - A good tip is concise, helpful, and informative.
8805
8805
  * Don't explain the obvious or simply repeat what is already on the screen.
8806
- * When used correctly, supplemental info of a tooltip helps to [declutter the UI](/#/DesignGuidelines/decluttering.md/).
8806
+ * When used correctly, supplemental info of a tooltip helps to [declutter the UI](#/DesignGuidelines/decluttering.md/).
8807
8807
  * - If the tip is essential to the primary tasks that the user is performing,
8808
8808
  * such as warnings or important notes, include the information directly in the
8809
8809
  * interface instead.
8810
- * - When a component offers a helper text (e.g. [Input field](/#/component/limel-input-field/)),
8810
+ * - When a component offers a helper text (e.g. [Input field](#/component/limel-input-field/)),
8811
8811
  * use that, not a tooltip.
8812
8812
  * - Make sure to use the tooltip on an element that users naturally and
8813
8813
  * effortlessly recognize can be hovered.
@@ -9157,7 +9157,7 @@ declare module "@stencil/core" {
9157
9157
  * :::important
9158
9158
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
9159
9159
  * But there is an important difference between the two! Please read our guidelines about
9160
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
9160
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
9161
9161
  * @exampleComponent limel-example-checkbox
9162
9162
  * @exampleComponent limel-example-checkbox-helper-text
9163
9163
  * @exampleComponent limel-example-checkbox-readonly
@@ -9295,7 +9295,7 @@ declare module "@stencil/core" {
9295
9295
  * and use it where desired.
9296
9296
  * The color picker can also show you a preview of any valid color name or color value.
9297
9297
  * :::note
9298
- * Make sure to read our [guidelines about usage of colors](/#/DesignGuidelines/color-system.md/) from our palette.
9298
+ * Make sure to read our [guidelines about usage of colors](#/DesignGuidelines/color-system.md/) from our palette.
9299
9299
  * :::
9300
9300
  * @exampleComponent limel-example-color-picker-basic
9301
9301
  * @exampleComponent limel-example-color-picker-custom-palette
@@ -10009,9 +10009,9 @@ declare module "@stencil/core" {
10009
10009
  * :::note
10010
10010
  * If the information you want to display has a higher importance or priority,
10011
10011
  * and you need to make sure that the user takes an action to dismiss it,
10012
- * consider using the [Banner](/#/component/limel-banner/) component instead.
10012
+ * consider using the [Banner](#/component/limel-banner/) component instead.
10013
10013
  * For more complex interactions and for delivering more detailed information,
10014
- * [Dialog](/#/component/limel-dialog/) is a better choice.
10014
+ * [Dialog](#/component/limel-dialog/) is a better choice.
10015
10015
  * :::
10016
10016
  * @exampleComponent limel-example-snackbar
10017
10017
  * @exampleComponent limel-example-snackbar-with-action
@@ -10052,7 +10052,7 @@ declare module "@stencil/core" {
10052
10052
  * :::important
10053
10053
  * Checkboxes are sometimes used interchangeably with switches in user interfaces.
10054
10054
  * But there is an important difference between the two! Please read our guidelines about
10055
- * [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
10055
+ * [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
10056
10056
  * @exampleComponent limel-example-switch
10057
10057
  * @exampleComponent limel-example-switch-helper-text
10058
10058
  * @exampleComponent limel-example-switch-readonly
@@ -10168,11 +10168,11 @@ declare module "@stencil/core" {
10168
10168
  * Use them only when they add significant value.
10169
10169
  * - A good tip is concise, helpful, and informative.
10170
10170
  * Don't explain the obvious or simply repeat what is already on the screen.
10171
- * When used correctly, supplemental info of a tooltip helps to [declutter the UI](/#/DesignGuidelines/decluttering.md/).
10171
+ * When used correctly, supplemental info of a tooltip helps to [declutter the UI](#/DesignGuidelines/decluttering.md/).
10172
10172
  * - If the tip is essential to the primary tasks that the user is performing,
10173
10173
  * such as warnings or important notes, include the information directly in the
10174
10174
  * interface instead.
10175
- * - When a component offers a helper text (e.g. [Input field](/#/component/limel-input-field/)),
10175
+ * - When a component offers a helper text (e.g. [Input field](#/component/limel-input-field/)),
10176
10176
  * use that, not a tooltip.
10177
10177
  * - Make sure to use the tooltip on an element that users naturally and
10178
10178
  * effortlessly recognize can be hovered.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-elements",
3
- "version": "38.31.2",
3
+ "version": "38.32.0",
4
4
  "description": "Lime Elements",
5
5
  "author": "Lime Technologies",
6
6
  "license": "Apache-2.0",