@aquera/nile-elements 0.1.57 → 0.1.58-beta-1.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 (121) hide show
  1. package/README.md +5 -3
  2. package/demo/index.html +10 -26
  3. package/demo/index.js +83 -0
  4. package/dist/index.cjs.js +1 -1
  5. package/dist/index.esm.js +1 -1
  6. package/dist/index.js +276 -281
  7. package/dist/internal/resizable-table-helper.cjs.js +2 -0
  8. package/dist/internal/resizable-table-helper.cjs.js.map +1 -0
  9. package/dist/internal/resizable-table-helper.esm.js +1 -0
  10. package/dist/internal/resizable-table-styles.cjs.js +2 -0
  11. package/dist/internal/resizable-table-styles.cjs.js.map +1 -0
  12. package/dist/internal/resizable-table-styles.esm.js +120 -0
  13. package/dist/nile-table-body/index.cjs.js +1 -1
  14. package/dist/nile-table-body/index.esm.js +1 -1
  15. package/dist/nile-table-body/nile-table-body.cjs.js +1 -1
  16. package/dist/nile-table-body/nile-table-body.cjs.js.map +1 -1
  17. package/dist/nile-table-body/nile-table-body.css.cjs.js +1 -1
  18. package/dist/nile-table-body/nile-table-body.css.cjs.js.map +1 -1
  19. package/dist/nile-table-body/nile-table-body.css.esm.js +5 -2
  20. package/dist/nile-table-body/nile-table-body.esm.js +3 -2
  21. package/dist/nile-table-cell-item/index.cjs.js +1 -1
  22. package/dist/nile-table-cell-item/index.esm.js +1 -1
  23. package/dist/nile-table-cell-item/nile-table-cell-item.cjs.js +1 -1
  24. package/dist/nile-table-cell-item/nile-table-cell-item.cjs.js.map +1 -1
  25. package/dist/nile-table-cell-item/nile-table-cell-item.css.cjs.js +1 -1
  26. package/dist/nile-table-cell-item/nile-table-cell-item.css.cjs.js.map +1 -1
  27. package/dist/nile-table-cell-item/nile-table-cell-item.css.esm.js +21 -3
  28. package/dist/nile-table-cell-item/nile-table-cell-item.esm.js +8 -3
  29. package/dist/nile-table-header-item/index.cjs.js +1 -1
  30. package/dist/nile-table-header-item/index.esm.js +1 -1
  31. package/dist/nile-table-header-item/nile-table-header-item.cjs.js +1 -1
  32. package/dist/nile-table-header-item/nile-table-header-item.cjs.js.map +1 -1
  33. package/dist/nile-table-header-item/nile-table-header-item.css.cjs.js +1 -1
  34. package/dist/nile-table-header-item/nile-table-header-item.css.cjs.js.map +1 -1
  35. package/dist/nile-table-header-item/nile-table-header-item.css.esm.js +8 -2
  36. package/dist/nile-table-header-item/nile-table-header-item.esm.js +64 -32
  37. package/dist/src/index.d.ts +0 -1
  38. package/dist/src/index.js +0 -1
  39. package/dist/src/index.js.map +1 -1
  40. package/dist/src/internal/resizable-table-helper.d.ts +59 -0
  41. package/dist/src/internal/resizable-table-helper.js +111 -0
  42. package/dist/src/internal/resizable-table-helper.js.map +1 -0
  43. package/dist/src/internal/resizable-table-styles.d.ts +16 -0
  44. package/dist/src/internal/resizable-table-styles.js +137 -0
  45. package/dist/src/internal/resizable-table-styles.js.map +1 -0
  46. package/dist/src/nile-table-body/nile-table-body.css.js +4 -0
  47. package/dist/src/nile-table-body/nile-table-body.css.js.map +1 -1
  48. package/dist/src/nile-table-body/nile-table-body.d.ts +2 -0
  49. package/dist/src/nile-table-body/nile-table-body.js +11 -0
  50. package/dist/src/nile-table-body/nile-table-body.js.map +1 -1
  51. package/dist/src/nile-table-cell-item/nile-table-cell-item.css.js +20 -1
  52. package/dist/src/nile-table-cell-item/nile-table-cell-item.css.js.map +1 -1
  53. package/dist/src/nile-table-cell-item/nile-table-cell-item.d.ts +3 -0
  54. package/dist/src/nile-table-cell-item/nile-table-cell-item.js +27 -8
  55. package/dist/src/nile-table-cell-item/nile-table-cell-item.js.map +1 -1
  56. package/dist/src/nile-table-header-item/nile-table-header-item.css.js +7 -0
  57. package/dist/src/nile-table-header-item/nile-table-header-item.css.js.map +1 -1
  58. package/dist/src/nile-table-header-item/nile-table-header-item.d.ts +3 -0
  59. package/dist/src/nile-table-header-item/nile-table-header-item.js +86 -35
  60. package/dist/src/nile-table-header-item/nile-table-header-item.js.map +1 -1
  61. package/dist/tsconfig.tsbuildinfo +1 -1
  62. package/package.json +4 -4
  63. package/src/index.ts +1 -2
  64. package/src/internal/resizable-table-helper.ts +151 -0
  65. package/src/internal/resizable-table-styles.ts +144 -0
  66. package/src/nile-table-body/nile-table-body.css.ts +4 -0
  67. package/src/nile-table-body/nile-table-body.ts +10 -0
  68. package/src/nile-table-cell-item/nile-table-cell-item.css.ts +20 -1
  69. package/src/nile-table-cell-item/nile-table-cell-item.ts +22 -5
  70. package/src/nile-table-header-item/nile-table-header-item.css.ts +7 -0
  71. package/src/nile-table-header-item/nile-table-header-item.ts +94 -45
  72. package/vscode-html-custom-data.json +59 -138
  73. package/dist/nile-slider/index.cjs.js +0 -2
  74. package/dist/nile-slider/index.cjs.js.map +0 -1
  75. package/dist/nile-slider/index.esm.js +0 -1
  76. package/dist/nile-slider/nile-slider.cjs.js +0 -2
  77. package/dist/nile-slider/nile-slider.cjs.js.map +0 -1
  78. package/dist/nile-slider/nile-slider.css.cjs.js +0 -2
  79. package/dist/nile-slider/nile-slider.css.cjs.js.map +0 -1
  80. package/dist/nile-slider/nile-slider.css.esm.js +0 -106
  81. package/dist/nile-slider/nile-slider.esm.js +0 -27
  82. package/dist/nile-slider/nile-slider.template.cjs.js +0 -2
  83. package/dist/nile-slider/nile-slider.template.cjs.js.map +0 -1
  84. package/dist/nile-slider/nile-slider.template.esm.js +0 -59
  85. package/dist/nile-slider/types/nile-slider.enums.cjs.js +0 -2
  86. package/dist/nile-slider/types/nile-slider.enums.cjs.js.map +0 -1
  87. package/dist/nile-slider/types/nile-slider.enums.esm.js +0 -1
  88. package/dist/nile-slider/types/nile-slider.types.cjs.js +0 -2
  89. package/dist/nile-slider/types/nile-slider.types.cjs.js.map +0 -1
  90. package/dist/nile-slider/types/nile-slider.types.esm.js +0 -1
  91. package/dist/nile-slider/utils/nile-slider.utils.cjs.js +0 -2
  92. package/dist/nile-slider/utils/nile-slider.utils.cjs.js.map +0 -1
  93. package/dist/nile-slider/utils/nile-slider.utils.esm.js +0 -1
  94. package/dist/src/nile-slider/index.d.ts +0 -1
  95. package/dist/src/nile-slider/index.js +0 -2
  96. package/dist/src/nile-slider/index.js.map +0 -1
  97. package/dist/src/nile-slider/nile-slider.css.d.ts +0 -6
  98. package/dist/src/nile-slider/nile-slider.css.js +0 -118
  99. package/dist/src/nile-slider/nile-slider.css.js.map +0 -1
  100. package/dist/src/nile-slider/nile-slider.d.ts +0 -48
  101. package/dist/src/nile-slider/nile-slider.js +0 -217
  102. package/dist/src/nile-slider/nile-slider.js.map +0 -1
  103. package/dist/src/nile-slider/nile-slider.template.d.ts +0 -5
  104. package/dist/src/nile-slider/nile-slider.template.js +0 -73
  105. package/dist/src/nile-slider/nile-slider.template.js.map +0 -1
  106. package/dist/src/nile-slider/types/nile-slider.enums.d.ts +0 -10
  107. package/dist/src/nile-slider/types/nile-slider.enums.js +0 -2
  108. package/dist/src/nile-slider/types/nile-slider.enums.js.map +0 -1
  109. package/dist/src/nile-slider/types/nile-slider.types.d.ts +0 -1
  110. package/dist/src/nile-slider/types/nile-slider.types.js +0 -2
  111. package/dist/src/nile-slider/types/nile-slider.types.js.map +0 -1
  112. package/dist/src/nile-slider/utils/nile-slider.utils.d.ts +0 -11
  113. package/dist/src/nile-slider/utils/nile-slider.utils.js +0 -99
  114. package/dist/src/nile-slider/utils/nile-slider.utils.js.map +0 -1
  115. package/src/nile-slider/index.ts +0 -1
  116. package/src/nile-slider/nile-slider.css.ts +0 -119
  117. package/src/nile-slider/nile-slider.template.ts +0 -77
  118. package/src/nile-slider/nile-slider.ts +0 -215
  119. package/src/nile-slider/types/nile-slider.enums.ts +0 -10
  120. package/src/nile-slider/types/nile-slider.types.ts +0 -13
  121. package/src/nile-slider/utils/nile-slider.utils.ts +0 -136
@@ -1121,7 +1121,7 @@
1121
1121
  },
1122
1122
  {
1123
1123
  "name": "nile-drawer",
1124
- "description": "Nile drawer component.\n\nEvents:\n\n * `nile-show` {} - Emitted when the drawer opens.\n\n * `nile-after-show` {} - Emitted after the drawer opens and all animations are complete.\n\n * `nile-hide` {} - Emitted when the drawer closes.\n\n * `nile-after-hide` {} - Emitted after the drawer closes and all animations are complete.\n\n * `nile-initial-focus` {} - Emitted when the drawer opens and is ready to receive focus. Calling\n`event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input.\n\n * `nile-request-close` {`\"{ source: 'close-button' \" | \"keyboard\" | \" 'overlay' }\"`} - Emitted when the user attempts to\nclose the drawer by clicking the close button, clicking the overlay, or pressing escape. Calling\n`event.preventDefault()` will keep the drawer open. Avoid using this unless closing the drawer will result in\ndestructive behavior such as data loss.\n\nSlots:\n\n * ` ` {} - The drawer's main content.\n\n * `label` {} - The drawer's label. Alternatively, you can use the `label` attribute.\n\n * `header-actions` {} - Optional actions to add to the header. Works best with `<nile-icon-button>`.\n\n * `footer` {} - The drawer's footer, usually one or more buttons representing various options.\n\nAttributes:\n\n * `open` {`boolean`} - Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.\n\n * `closeOnEscape` {`boolean`} - \n\n * `label` {`string`} - The drawer's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.\n\n * `placement` {`\"top\" | \"bottom\" | \"end\" | \"start\"`} - The direction from which the drawer will open.\n\n * `contained` {`boolean`} - By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.\n\n * `preventOverlayClose` {`boolean`} - Drawer doesnt close when clicled on overlay, the only way to close is to do by handling open property\n\n * `no-header` {`boolean`} - Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.\n\nProperties:\n\n * `styles` - \n\n * `hasSlotController` - \n\n * `modal` - \n\n * `originalTrigger` {`HTMLElement | null`} - \n\n * `drawer` {`HTMLElement`} - \n\n * `panel` {`HTMLElement`} - \n\n * `overlay` {`HTMLElement`} - \n\n * `open` {`boolean`} - Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.\n\n * `closeOnEscape` {`boolean`} - \n\n * `label` {`string`} - The drawer's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.\n\n * `placement` {`\"top\" | \"bottom\" | \"end\" | \"start\"`} - The direction from which the drawer will open.\n\n * `contained` {`boolean`} - By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.\n\n * `preventOverlayClose` {`boolean`} - Drawer doesnt close when clicled on overlay, the only way to close is to do by handling open property\n\n * `noHeader` {`boolean`} - Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
1124
+ "description": "Nile drawer component.\n\nEvents:\n\n * `nile-show` {} - Emitted when the drawer opens.\n\n * `nile-after-show` {} - Emitted after the drawer opens and all animations are complete.\n\n * `nile-hide` {} - Emitted when the drawer closes.\n\n * `nile-after-hide` {} - Emitted after the drawer closes and all animations are complete.\n\n * `nile-initial-focus` {} - Emitted when the drawer opens and is ready to receive focus. Calling\n`event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input.\n\n * `nile-request-close` {`\"{ source: 'close-button' \" | \"keyboard\" | \" 'overlay' }\"`} - Emitted when the user attempts to\nclose the drawer by clicking the close button, clicking the overlay, or pressing escape. Calling\n`event.preventDefault()` will keep the drawer open. Avoid using this unless closing the drawer will result in\ndestructive behavior such as data loss.\n\nSlots:\n\n * ` ` {} - The drawer's main content.\n\n * `label` {} - The drawer's label. Alternatively, you can use the `label` attribute.\n\n * `header-actions` {} - Optional actions to add to the header. Works best with `<nile-icon-button>`.\n\n * `footer` {} - The drawer's footer, usually one or more buttons representing various options.\n\nAttributes:\n\n * `open` {`boolean`} - Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.\n\n * `closeOnEscape` {`boolean`} - \n\n * `label` {`string`} - The drawer's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.\n\n * `placement` {`\"top\" | \"end\" | \"bottom\" | \"start\"`} - The direction from which the drawer will open.\n\n * `contained` {`boolean`} - By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.\n\n * `preventOverlayClose` {`boolean`} - Drawer doesnt close when clicled on overlay, the only way to close is to do by handling open property\n\n * `no-header` {`boolean`} - Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.\n\nProperties:\n\n * `styles` - \n\n * `hasSlotController` - \n\n * `modal` - \n\n * `originalTrigger` {`HTMLElement | null`} - \n\n * `drawer` {`HTMLElement`} - \n\n * `panel` {`HTMLElement`} - \n\n * `overlay` {`HTMLElement`} - \n\n * `open` {`boolean`} - Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.\n\n * `closeOnEscape` {`boolean`} - \n\n * `label` {`string`} - The drawer's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.\n\n * `placement` {`\"top\" | \"end\" | \"bottom\" | \"start\"`} - The direction from which the drawer will open.\n\n * `contained` {`boolean`} - By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.\n\n * `preventOverlayClose` {`boolean`} - Drawer doesnt close when clicled on overlay, the only way to close is to do by handling open property\n\n * `noHeader` {`boolean`} - Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
1125
1125
  "attributes": [
1126
1126
  {
1127
1127
  "name": "open",
@@ -1139,16 +1139,16 @@
1139
1139
  },
1140
1140
  {
1141
1141
  "name": "placement",
1142
- "description": "`placement` {`\"top\" | \"bottom\" | \"end\" | \"start\"`} - The direction from which the drawer will open.\n\nProperty: placement\n\nDefault: end",
1142
+ "description": "`placement` {`\"top\" | \"end\" | \"bottom\" | \"start\"`} - The direction from which the drawer will open.\n\nProperty: placement\n\nDefault: end",
1143
1143
  "values": [
1144
1144
  {
1145
1145
  "name": "top"
1146
1146
  },
1147
1147
  {
1148
- "name": "bottom"
1148
+ "name": "end"
1149
1149
  },
1150
1150
  {
1151
- "name": "end"
1151
+ "name": "bottom"
1152
1152
  },
1153
1153
  {
1154
1154
  "name": "start"
@@ -1198,7 +1198,7 @@
1198
1198
  },
1199
1199
  {
1200
1200
  "name": "nile-dropdown",
1201
- "description": "Nile icon component.\n\nEvents:\n\n * `nile-show` {} - Emitted when the dropdown opens.\n\n * `nile-after-show` {} - Emitted after the dropdown opens and all animations are complete.\n\n * `nile-hide` {} - Emitted when the dropdown closes.\n\n * `nile-after-hide` {} - Emitted after the dropdown closes and all animations are complete.\n\nSlots:\n\n * ` ` {} - The dropdown's main content.\n\n * `trigger` {} - The dropdown's trigger, usually a `<nile-button>` element.\n\nAttributes:\n\n * `open` {`boolean`} - Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.\n\n * `placement` {`TooltipPosition`} - The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the dropdown so the panel will not open.\n\n * `stay-open-on-select` {`boolean`} - By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its trigger.\n\n * `noOpenOnClick` {`boolean`} - \n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its trigger.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\nProperties:\n\n * `styles` - \n\n * `popup` - \n\n * `trigger` {`HTMLSlotElement`} - \n\n * `panel` {`HTMLSlotElement`} - \n\n * `open` {`boolean`} - Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.\n\n * `placement` {`TooltipPosition`} - The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the dropdown so the panel will not open.\n\n * `stayOpenOnSelect` {`boolean`} - By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.\n\n * `containingElement` {`HTMLElement | undefined`} - The dropdown will close when the user interacts outside of this element (e.g. clicking). Useful for composing other\ncomponents that use a dropdown internally.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its trigger.\n\n * `noOpenOnClick` {`boolean`} - \n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its trigger.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
1201
+ "description": "Nile icon component.\n\nEvents:\n\n * `nile-show` {} - Emitted when the dropdown opens.\n\n * `nile-after-show` {} - Emitted after the dropdown opens and all animations are complete.\n\n * `nile-hide` {} - Emitted when the dropdown closes.\n\n * `nile-after-hide` {} - Emitted after the dropdown closes and all animations are complete.\n\nSlots:\n\n * ` ` {} - The dropdown's main content.\n\n * `trigger` {} - The dropdown's trigger, usually a `<nile-button>` element.\n\nAttributes:\n\n * `open` {`boolean`} - Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the dropdown so the panel will not open.\n\n * `stay-open-on-select` {`boolean`} - By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its trigger.\n\n * `noOpenOnClick` {`boolean`} - \n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its trigger.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\nProperties:\n\n * `styles` - \n\n * `popup` - \n\n * `trigger` {`HTMLSlotElement`} - \n\n * `panel` {`HTMLSlotElement`} - \n\n * `open` {`boolean`} - Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the dropdown so the panel will not open.\n\n * `stayOpenOnSelect` {`boolean`} - By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.\n\n * `containingElement` {`HTMLElement | undefined`} - The dropdown will close when the user interacts outside of this element (e.g. clicking). Useful for composing other\ncomponents that use a dropdown internally.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its trigger.\n\n * `noOpenOnClick` {`boolean`} - \n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its trigger.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
1202
1202
  "attributes": [
1203
1203
  {
1204
1204
  "name": "open",
@@ -1207,7 +1207,7 @@
1207
1207
  },
1208
1208
  {
1209
1209
  "name": "placement",
1210
- "description": "`placement` {`TooltipPosition`} - The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.\n\nProperty: placement\n\nDefault: bottom-start",
1210
+ "description": "`placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.\n\nProperty: placement\n\nDefault: bottom-start",
1211
1211
  "values": [
1212
1212
  {
1213
1213
  "name": "left"
@@ -1219,25 +1219,25 @@
1219
1219
  "name": "top"
1220
1220
  },
1221
1221
  {
1222
- "name": "top-start"
1222
+ "name": "bottom"
1223
1223
  },
1224
1224
  {
1225
- "name": "top-end"
1225
+ "name": "top-start"
1226
1226
  },
1227
1227
  {
1228
- "name": "right-start"
1228
+ "name": "top-end"
1229
1229
  },
1230
1230
  {
1231
- "name": "right-end"
1231
+ "name": "bottom-start"
1232
1232
  },
1233
1233
  {
1234
- "name": "bottom"
1234
+ "name": "bottom-end"
1235
1235
  },
1236
1236
  {
1237
- "name": "bottom-start"
1237
+ "name": "right-start"
1238
1238
  },
1239
1239
  {
1240
- "name": "bottom-end"
1240
+ "name": "right-end"
1241
1241
  },
1242
1242
  {
1243
1243
  "name": "left-start"
@@ -2395,11 +2395,11 @@
2395
2395
  },
2396
2396
  {
2397
2397
  "name": "nile-popover",
2398
- "description": "Nile icon component.\n\nAttributes:\n\n * `placement` {`TooltipPosition`} - The preferred placement of the popover. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `distance` {`number`} - The distance in pixels from which to offset the popover away from its target.\n\n * `preventOverlayClose` {`boolean`} - \n\n * `arrow` {`boolean`} - \n\n * `title` {`string`} - Gives the title to the popover\n\n * `open` {`boolean`} - \n\n * `arrow-placement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - \n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\n * `flip` {`boolean`} - \n\nProperties:\n\n * `placement` {`TooltipPosition`} - The preferred placement of the popover. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `distance` {`number`} - The distance in pixels from which to offset the popover away from its target.\n\n * `preventOverlayClose` {`boolean`} - \n\n * `arrow` {`boolean`} - \n\n * `title` {`string`} - Gives the title to the popover\n\n * `open` {`boolean`} - \n\n * `isShow` {`boolean`} - \n\n * `arrowPlacement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - \n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\n * `flip` {`boolean`} - \n\n * `handleClick` - \n\n * `handleDocumentClick` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
2398
+ "description": "Nile icon component.\n\nAttributes:\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the popover. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `distance` {`number`} - The distance in pixels from which to offset the popover away from its target.\n\n * `preventOverlayClose` {`boolean`} - \n\n * `arrow` {`boolean`} - \n\n * `title` {`string`} - Gives the title to the popover\n\n * `open` {`boolean`} - \n\n * `arrow-placement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - \n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\n * `flip` {`boolean`} - \n\nProperties:\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the popover. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `distance` {`number`} - The distance in pixels from which to offset the popover away from its target.\n\n * `preventOverlayClose` {`boolean`} - \n\n * `arrow` {`boolean`} - \n\n * `title` {`string`} - Gives the title to the popover\n\n * `open` {`boolean`} - \n\n * `isShow` {`boolean`} - \n\n * `arrowPlacement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - \n\n * `hoist` {`boolean`} - Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.\n\n * `flip` {`boolean`} - \n\n * `handleClick` - \n\n * `handleDocumentClick` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
2399
2399
  "attributes": [
2400
2400
  {
2401
2401
  "name": "placement",
2402
- "description": "`placement` {`TooltipPosition`} - The preferred placement of the popover. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\nProperty: placement\n\nDefault: top",
2402
+ "description": "`placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the popover. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\nProperty: placement\n\nDefault: top",
2403
2403
  "values": [
2404
2404
  {
2405
2405
  "name": "left"
@@ -2411,25 +2411,25 @@
2411
2411
  "name": "top"
2412
2412
  },
2413
2413
  {
2414
- "name": "top-start"
2414
+ "name": "bottom"
2415
2415
  },
2416
2416
  {
2417
- "name": "top-end"
2417
+ "name": "top-start"
2418
2418
  },
2419
2419
  {
2420
- "name": "right-start"
2420
+ "name": "top-end"
2421
2421
  },
2422
2422
  {
2423
- "name": "right-end"
2423
+ "name": "bottom-start"
2424
2424
  },
2425
2425
  {
2426
- "name": "bottom"
2426
+ "name": "bottom-end"
2427
2427
  },
2428
2428
  {
2429
- "name": "bottom-start"
2429
+ "name": "right-start"
2430
2430
  },
2431
2431
  {
2432
- "name": "bottom-end"
2432
+ "name": "right-end"
2433
2433
  },
2434
2434
  {
2435
2435
  "name": "left-start"
@@ -2494,7 +2494,7 @@
2494
2494
  },
2495
2495
  {
2496
2496
  "name": "nile-popup",
2497
- "description": "Nile icon component.\n\nAttributes:\n\n * `anchor` {`string | Element`} - The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide its `id` or a\nreference to it here. If the anchor lives inside the popup, use the `anchor` slot instead.\n\n * `active` {`boolean`} - Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.\n\n * `placement` {`TooltipPosition`} - The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.\n\n * `strategy` {`\"absolute\" | \"fixed\"`} - Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its anchor.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its anchor.\n\n * `arrow` {`boolean`} - Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.\n\n * `arrow-placement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.\n\n * `arrow-padding` {`number`} - The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.\n\n * `flip` {`boolean`} - When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.\n\n * `flip-fallback-placements` {`string`} - If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.\n\n * `flip-fallback-strategy` {`\"best-fit\" | \"initial\"`} - When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.\n\n * `flipBoundary` {`Element | Element[]`} - The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `flip-padding` {`number`} - The amount of padding, in pixels, to exceed before the flip behavior will occur.\n\n * `shift` {`boolean`} - Moves the popup along the axis to keep it in view when clipped.\n\n * `shiftBoundary` {`Element | Element[]`} - The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `shift-padding` {`number`} - The amount of padding, in pixels, to exceed before the shift behavior will occur.\n\n * `auto-size` {`\"both\" | \"horizontal\" | \"vertical\"`} - When set, this will cause the popup to automatically resize itself to prevent it from overflowing.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `autoSizeBoundary` {`Element | Element[]`} - The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `auto-size-padding` {`number`} - The amount of padding, in pixels, to exceed before the auto-size behavior will occur.\n\nProperties:\n\n * `styles` - \n\n * `anchorEl` {`Element | null`} - \n\n * `cleanup` - \n\n * `popup` {`HTMLElement`} - A reference to the internal popup container. Useful for animating and styling the popup with JavaScript.\n\n * `arrowEl` {`HTMLElement`} - \n\n * `anchor` {`string | Element`} - The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide its `id` or a\nreference to it here. If the anchor lives inside the popup, use the `anchor` slot instead.\n\n * `active` {`boolean`} - Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.\n\n * `placement` {`TooltipPosition`} - The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.\n\n * `strategy` {`\"absolute\" | \"fixed\"`} - Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its anchor.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its anchor.\n\n * `arrow` {`boolean`} - Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.\n\n * `arrowPlacement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.\n\n * `arrowPadding` {`number`} - The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.\n\n * `flip` {`boolean`} - When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.\n\n * `flipFallbackPlacements` {`string`} - If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.\n\n * `flipFallbackStrategy` {`\"best-fit\" | \"initial\"`} - When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.\n\n * `flipBoundary` {`Element | Element[]`} - The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `flipPadding` {`number`} - The amount of padding, in pixels, to exceed before the flip behavior will occur.\n\n * `shift` {`boolean`} - Moves the popup along the axis to keep it in view when clipped.\n\n * `shiftBoundary` {`Element | Element[]`} - The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `shiftPadding` {`number`} - The amount of padding, in pixels, to exceed before the shift behavior will occur.\n\n * `autoSize` {`\"both\" | \"horizontal\" | \"vertical\"`} - When set, this will cause the popup to automatically resize itself to prevent it from overflowing.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `autoSizeBoundary` {`Element | Element[]`} - The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `autoSizePadding` {`number`} - The amount of padding, in pixels, to exceed before the auto-size behavior will occur.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
2497
+ "description": "Nile icon component.\n\nAttributes:\n\n * `anchor` {`string | Element`} - The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide its `id` or a\nreference to it here. If the anchor lives inside the popup, use the `anchor` slot instead.\n\n * `active` {`boolean`} - Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.\n\n * `strategy` {`\"absolute\" | \"fixed\"`} - Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its anchor.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its anchor.\n\n * `arrow` {`boolean`} - Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.\n\n * `arrow-placement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.\n\n * `arrow-padding` {`number`} - The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.\n\n * `flip` {`boolean`} - When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.\n\n * `flip-fallback-placements` {`string`} - If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.\n\n * `flip-fallback-strategy` {`\"best-fit\" | \"initial\"`} - When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.\n\n * `flipBoundary` {`Element | Element[]`} - The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `flip-padding` {`number`} - The amount of padding, in pixels, to exceed before the flip behavior will occur.\n\n * `shift` {`boolean`} - Moves the popup along the axis to keep it in view when clipped.\n\n * `shiftBoundary` {`Element | Element[]`} - The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `shift-padding` {`number`} - The amount of padding, in pixels, to exceed before the shift behavior will occur.\n\n * `auto-size` {`\"both\" | \"horizontal\" | \"vertical\"`} - When set, this will cause the popup to automatically resize itself to prevent it from overflowing.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `autoSizeBoundary` {`Element | Element[]`} - The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `auto-size-padding` {`number`} - The amount of padding, in pixels, to exceed before the auto-size behavior will occur.\n\nProperties:\n\n * `styles` - \n\n * `anchorEl` {`Element | null`} - \n\n * `cleanup` - \n\n * `popup` {`HTMLElement`} - A reference to the internal popup container. Useful for animating and styling the popup with JavaScript.\n\n * `arrowEl` {`HTMLElement`} - \n\n * `anchor` {`string | Element`} - The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide its `id` or a\nreference to it here. If the anchor lives inside the popup, use the `anchor` slot instead.\n\n * `active` {`boolean`} - Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.\n\n * `strategy` {`\"absolute\" | \"fixed\"`} - Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.\n\n * `distance` {`number`} - The distance in pixels from which to offset the panel away from its anchor.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the panel along its anchor.\n\n * `arrow` {`boolean`} - Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.\n\n * `arrowPlacement` {`\"end\" | \"start\" | \"center\" | \"anchor\"`} - The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.\n\n * `arrowPadding` {`number`} - The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.\n\n * `flip` {`boolean`} - When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.\n\n * `flipFallbackPlacements` {`string`} - If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.\n\n * `flipFallbackStrategy` {`\"best-fit\" | \"initial\"`} - When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.\n\n * `flipBoundary` {`Element | Element[]`} - The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `flipPadding` {`number`} - The amount of padding, in pixels, to exceed before the flip behavior will occur.\n\n * `shift` {`boolean`} - Moves the popup along the axis to keep it in view when clipped.\n\n * `shiftBoundary` {`Element | Element[]`} - The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `shiftPadding` {`number`} - The amount of padding, in pixels, to exceed before the shift behavior will occur.\n\n * `autoSize` {`\"both\" | \"horizontal\" | \"vertical\"`} - When set, this will cause the popup to automatically resize itself to prevent it from overflowing.\n\n * `sync` {`\"width\" | \"height\" | \"both\"`} - Syncs the popup's width or height to that of the anchor element.\n\n * `autoSizeBoundary` {`Element | Element[]`} - The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n\n * `autoSizePadding` {`number`} - The amount of padding, in pixels, to exceed before the auto-size behavior will occur.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
2498
2498
  "attributes": [
2499
2499
  {
2500
2500
  "name": "anchor",
@@ -2508,7 +2508,7 @@
2508
2508
  },
2509
2509
  {
2510
2510
  "name": "placement",
2511
- "description": "`placement` {`TooltipPosition`} - The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.\n\nProperty: placement\n\nDefault: top",
2511
+ "description": "`placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.\n\nProperty: placement\n\nDefault: top",
2512
2512
  "values": [
2513
2513
  {
2514
2514
  "name": "left"
@@ -2520,25 +2520,25 @@
2520
2520
  "name": "top"
2521
2521
  },
2522
2522
  {
2523
- "name": "top-start"
2523
+ "name": "bottom"
2524
2524
  },
2525
2525
  {
2526
- "name": "top-end"
2526
+ "name": "top-start"
2527
2527
  },
2528
2528
  {
2529
- "name": "right-start"
2529
+ "name": "top-end"
2530
2530
  },
2531
2531
  {
2532
- "name": "right-end"
2532
+ "name": "bottom-start"
2533
2533
  },
2534
2534
  {
2535
- "name": "bottom"
2535
+ "name": "bottom-end"
2536
2536
  },
2537
2537
  {
2538
- "name": "bottom-start"
2538
+ "name": "right-start"
2539
2539
  },
2540
2540
  {
2541
- "name": "bottom-end"
2541
+ "name": "right-end"
2542
2542
  },
2543
2543
  {
2544
2544
  "name": "left-start"
@@ -3162,96 +3162,6 @@
3162
3162
  }
3163
3163
  ]
3164
3164
  },
3165
- {
3166
- "name": "nile-slider",
3167
- "description": "Nile slider component.\n\nAttributes:\n\n * `minValue` {`number`} - \n\n * `value` {`number`} - \n\n * `maxValue` {`number`} - \n\n * `rangeOneValue` {`number`} - \n\n * `rangeTwoValue` {`number`} - \n\n * `showLabel` {`boolean`} - \n\n * `labelStart` {`string`} - \n\n * `labelEnd` {`string`} - \n\n * `rangeSlider` {`boolean`} - \n\n * `labelPosition` {`string`} - \n\n * `tooltipPosition` {`TooltipPosition`} - \n\nProperties:\n\n * `minValue` {`number`} - \n\n * `value` {`number`} - \n\n * `maxValue` {`number`} - \n\n * `rangeOneValue` {`number`} - \n\n * `rangeTwoValue` {`number`} - \n\n * `showLabel` {`boolean`} - \n\n * `labelStart` {`string`} - \n\n * `labelEnd` {`string`} - \n\n * `rangeSlider` {`boolean`} - \n\n * `labelPosition` {`string`} - \n\n * `tooltipPosition` {`TooltipPosition`} - \n\n * `buttonOne` {`HTMLElement`} - \n\n * `buttonTwo` {`HTMLElement`} - \n\n * `range` {`HTMLElement`} - \n\n * `completed` {`HTMLElement`} - \n\n * `activeThumb` {`\"one\" | \"two\" | null`} - \n\n * `onMouseMove` - \n\n * `onMouseUp` - \n\n * `onMouseDown` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3168
- "attributes": [
3169
- {
3170
- "name": "minValue",
3171
- "description": "`minValue` {`number`} - \n\nProperty: minValue\n\nDefault: 0"
3172
- },
3173
- {
3174
- "name": "value",
3175
- "description": "`value` {`number`} - \n\nProperty: value\n\nDefault: minValue"
3176
- },
3177
- {
3178
- "name": "maxValue",
3179
- "description": "`maxValue` {`number`} - \n\nProperty: maxValue\n\nDefault: 100"
3180
- },
3181
- {
3182
- "name": "rangeOneValue",
3183
- "description": "`rangeOneValue` {`number`} - \n\nProperty: rangeOneValue\n\nDefault: minValue"
3184
- },
3185
- {
3186
- "name": "rangeTwoValue",
3187
- "description": "`rangeTwoValue` {`number`} - \n\nProperty: rangeTwoValue\n\nDefault: maxValue"
3188
- },
3189
- {
3190
- "name": "showLabel",
3191
- "description": "`showLabel` {`boolean`} - \n\nProperty: showLabel\n\nDefault: false",
3192
- "valueSet": "v"
3193
- },
3194
- {
3195
- "name": "labelStart",
3196
- "description": "`labelStart` {`string`} - \n\nProperty: labelStart\n\nDefault: "
3197
- },
3198
- {
3199
- "name": "labelEnd",
3200
- "description": "`labelEnd` {`string`} - \n\nProperty: labelEnd\n\nDefault: "
3201
- },
3202
- {
3203
- "name": "rangeSlider",
3204
- "description": "`rangeSlider` {`boolean`} - \n\nProperty: rangeSlider\n\nDefault: false",
3205
- "valueSet": "v"
3206
- },
3207
- {
3208
- "name": "labelPosition",
3209
- "description": "`labelPosition` {`string`} - \n\nProperty: labelPosition\n\nDefault: top"
3210
- },
3211
- {
3212
- "name": "tooltipPosition",
3213
- "description": "`tooltipPosition` {`TooltipPosition`} - \n\nProperty: tooltipPosition\n\nDefault: top",
3214
- "values": [
3215
- {
3216
- "name": "left"
3217
- },
3218
- {
3219
- "name": "right"
3220
- },
3221
- {
3222
- "name": "top"
3223
- },
3224
- {
3225
- "name": "top-start"
3226
- },
3227
- {
3228
- "name": "top-end"
3229
- },
3230
- {
3231
- "name": "right-start"
3232
- },
3233
- {
3234
- "name": "right-end"
3235
- },
3236
- {
3237
- "name": "bottom"
3238
- },
3239
- {
3240
- "name": "bottom-start"
3241
- },
3242
- {
3243
- "name": "bottom-end"
3244
- },
3245
- {
3246
- "name": "left-start"
3247
- },
3248
- {
3249
- "name": "left-end"
3250
- }
3251
- ]
3252
- }
3253
- ]
3254
- },
3255
3165
  {
3256
3166
  "name": "nile-spinner",
3257
3167
  "description": "Nile icon component.\n\n",
@@ -3380,20 +3290,20 @@
3380
3290
  },
3381
3291
  {
3382
3292
  "name": "nile-tab-group",
3383
- "description": "Nile icon component.\n\nEvents:\n\n * `nile-tab-show` - Emitted when a tab is shown.\n\n * `nile-tab-hide` - Emitted when a tab is hidden.\n\nSlots:\n\n * ` ` {} - Used for grouping tab panels in the tab group. Must be `<nile-tab-panel>` elements.\n\n * `nav` {} - Used for grouping tabs in the tab group. Must be `<nile-tab>` elements.\n\nAttributes:\n\n * `placement` {`\"top\" | \"bottom\" | \"end\" | \"start\"`} - The placement of the tabs.\n\n * `value` {`string`} - The placement of the tabs.\n\n * `no-track` {`boolean`} - Track for showing Indicators and Background.\n\n * `activation` {`\"auto\" | \"manual\"`} - When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.\n\n * `no-scroll-controls` {`boolean`} - Disables the scroll arrows that appear when tabs overflow.\n\n * `centered` {`boolean`} - Controls whether tabs are centered and have equal width\n\nProperties:\n\n * `styles` - \n\n * `activeTab` - \n\n * `mutationObserver` {`MutationObserver`} - \n\n * `resizeObserver` - \n\n * `tabs` {`NileTab[]`} - \n\n * `panels` {`NileTabPanel[]`} - \n\n * `tabGroup` {`HTMLElement`} - \n\n * `body` {`HTMLSlotElement`} - \n\n * `nav` {`HTMLElement`} - \n\n * `indicator` {`HTMLElement`} - \n\n * `hasScrollControls` {`boolean`} - \n\n * `placement` {`\"top\" | \"bottom\" | \"end\" | \"start\"`} - The placement of the tabs.\n\n * `activeTabProp` {`string`} - The placement of the tabs.\n\n * `noTrack` {`boolean`} - Track for showing Indicators and Background.\n\n * `activation` {`\"auto\" | \"manual\"`} - When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.\n\n * `noScrollControls` {`boolean`} - Disables the scroll arrows that appear when tabs overflow.\n\n * `centered` {`boolean`} - Controls whether tabs are centered and have equal width\n\n * `activeTabName` {`string`} - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3293
+ "description": "Nile icon component.\n\nEvents:\n\n * `nile-tab-show` - Emitted when a tab is shown.\n\n * `nile-tab-hide` - Emitted when a tab is hidden.\n\nSlots:\n\n * ` ` {} - Used for grouping tab panels in the tab group. Must be `<nile-tab-panel>` elements.\n\n * `nav` {} - Used for grouping tabs in the tab group. Must be `<nile-tab>` elements.\n\nAttributes:\n\n * `placement` {`\"top\" | \"end\" | \"bottom\" | \"start\"`} - The placement of the tabs.\n\n * `value` {`string`} - The placement of the tabs.\n\n * `no-track` {`boolean`} - Track for showing Indicators and Background.\n\n * `activation` {`\"auto\" | \"manual\"`} - When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.\n\n * `no-scroll-controls` {`boolean`} - Disables the scroll arrows that appear when tabs overflow.\n\n * `centered` {`boolean`} - Controls whether tabs are centered and have equal width\n\nProperties:\n\n * `styles` - \n\n * `activeTab` - \n\n * `mutationObserver` {`MutationObserver`} - \n\n * `resizeObserver` - \n\n * `tabs` {`NileTab[]`} - \n\n * `panels` {`NileTabPanel[]`} - \n\n * `tabGroup` {`HTMLElement`} - \n\n * `body` {`HTMLSlotElement`} - \n\n * `nav` {`HTMLElement`} - \n\n * `indicator` {`HTMLElement`} - \n\n * `hasScrollControls` {`boolean`} - \n\n * `placement` {`\"top\" | \"end\" | \"bottom\" | \"start\"`} - The placement of the tabs.\n\n * `activeTabProp` {`string`} - The placement of the tabs.\n\n * `noTrack` {`boolean`} - Track for showing Indicators and Background.\n\n * `activation` {`\"auto\" | \"manual\"`} - When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.\n\n * `noScrollControls` {`boolean`} - Disables the scroll arrows that appear when tabs overflow.\n\n * `centered` {`boolean`} - Controls whether tabs are centered and have equal width\n\n * `activeTabName` {`string`} - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3384
3294
  "attributes": [
3385
3295
  {
3386
3296
  "name": "placement",
3387
- "description": "`placement` {`\"top\" | \"bottom\" | \"end\" | \"start\"`} - The placement of the tabs.\n\nProperty: placement\n\nDefault: top",
3297
+ "description": "`placement` {`\"top\" | \"end\" | \"bottom\" | \"start\"`} - The placement of the tabs.\n\nProperty: placement\n\nDefault: top",
3388
3298
  "values": [
3389
3299
  {
3390
3300
  "name": "top"
3391
3301
  },
3392
3302
  {
3393
- "name": "bottom"
3303
+ "name": "end"
3394
3304
  },
3395
3305
  {
3396
- "name": "end"
3306
+ "name": "bottom"
3397
3307
  },
3398
3308
  {
3399
3309
  "name": "start"
@@ -3492,7 +3402,7 @@
3492
3402
  },
3493
3403
  {
3494
3404
  "name": "nile-table-body",
3495
- "description": "nile-table-body component.\n\nAttributes:\n\n * `type` {`\"primary\" | \"secondary\"`} - \n\nProperties:\n\n * `defaultSlot` {`HTMLSlotElement`} - The styles for TableBody\n\n * `_childNodes` {`HTMLElement[]`} - \n\n * `type` {`\"primary\" | \"secondary\"`} - \n\n * `rows_data` {`any[]`} - \n\n * `header_rows_data` {`any[]`} - \n\n * `sort__index` {`number`} - \n\n * `search__index` {`number`} - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3405
+ "description": "nile-table-body component.\n\nAttributes:\n\n * `type` {`\"primary\" | \"secondary\"`} - \n\nProperties:\n\n * `defaultSlot` {`HTMLSlotElement`} - The styles for TableBody\n\n * `_childNodes` {`HTMLElement[]`} - \n\n * `type` {`\"primary\" | \"secondary\"`} - \n\n * `rows_data` {`any[]`} - \n\n * `header_rows_data` {`any[]`} - \n\n * `sort__index` {`number`} - \n\n * `search__index` {`number`} - \n\n * `hasResizableColumns` {`boolean`} - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3496
3406
  "attributes": [
3497
3407
  {
3498
3408
  "name": "type",
@@ -3510,12 +3420,18 @@
3510
3420
  },
3511
3421
  {
3512
3422
  "name": "nile-table-cell-item",
3513
- "description": "Nile table Cell Item component.\n\nProperties:\n\n * `hasSlotController` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3514
- "attributes": []
3423
+ "description": "Nile table Cell Item component.\n\nAttributes:\n\n * `resizable` {`boolean`} - Enables the resize functionality.\n\nProperties:\n\n * `hasSlotController` - \n\n * `resizable` {`boolean`} - Enables the resize functionality.\n\n * `handleResizeStart` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3424
+ "attributes": [
3425
+ {
3426
+ "name": "resizable",
3427
+ "description": "`resizable` {`boolean`} - Enables the resize functionality.\n\nProperty: resizable\n\nDefault: false",
3428
+ "valueSet": "v"
3429
+ }
3430
+ ]
3515
3431
  },
3516
3432
  {
3517
3433
  "name": "nile-table-header-item",
3518
- "description": "Nile icon component.\n\nAttributes:\n\n * `havesort` {`boolean`} - Enables the sort functionality.\n\n * `havefilter` {`boolean`} - Enables the sort functionality.\n\n * `icon-name` {`string`} - Places the icon .\n\nProperties:\n\n * `hasSlotController` - \n\n * `havesort` {`boolean`} - Enables the sort functionality.\n\n * `havefilter` {`boolean`} - Enables the sort functionality.\n\n * `iconName` {`string`} - Places the icon .\n\n * `sorting_ct` {`number`} - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3434
+ "description": "Nile icon component.\n\nAttributes:\n\n * `havesort` {`boolean`} - Enables the sort functionality.\n\n * `havefilter` {`boolean`} - Enables the sort functionality.\n\n * `icon-name` {`string`} - Places the icon .\n\n * `resizable` {`boolean`} - Enables the resize functionality.\n\nProperties:\n\n * `hasSlotController` - \n\n * `havesort` {`boolean`} - Enables the sort functionality.\n\n * `havefilter` {`boolean`} - Enables the sort functionality.\n\n * `iconName` {`string`} - Places the icon .\n\n * `resizable` {`boolean`} - Enables the resize functionality.\n\n * `sorting_ct` {`number`} - \n\n * `handleResizeStart` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3519
3435
  "attributes": [
3520
3436
  {
3521
3437
  "name": "havesort",
@@ -3530,6 +3446,11 @@
3530
3446
  {
3531
3447
  "name": "icon-name",
3532
3448
  "description": "`icon-name` {`string`} - Places the icon .\n\nProperty: iconName\n\nDefault: "
3449
+ },
3450
+ {
3451
+ "name": "resizable",
3452
+ "description": "`resizable` {`boolean`} - Enables the resize functionality.\n\nProperty: resizable\n\nDefault: false",
3453
+ "valueSet": "v"
3533
3454
  }
3534
3455
  ]
3535
3456
  },
@@ -3956,7 +3877,7 @@
3956
3877
  },
3957
3878
  {
3958
3879
  "name": "nile-tooltip",
3959
- "description": "Nile icon component.\n\nAttributes:\n\n * `content` {`string`} - The tooltip's content. If you need to display HTML, use the `content` slot instead.\n\n * `size` {`\"small\" | \"large\"`} - Size Property to decide the tool tip size\n\n * `placement` {`TooltipPosition`} - The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the tooltip so it won't show when triggered.\n\n * `distance` {`number`} - The distance in pixels from which to offset the tooltip away from its target.\n\n * `open` {`boolean`} - Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the tooltip along its target.\n\n * `trigger` {`string`} - Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.\n\n * `hoist` {`boolean`} - Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.\n\nProperties:\n\n * `hoverTimeout` {`number`} - \n\n * `defaultSlot` {`HTMLSlotElement`} - \n\n * `body` {`HTMLElement`} - \n\n * `popup` - \n\n * `content` {`string`} - The tooltip's content. If you need to display HTML, use the `content` slot instead.\n\n * `size` {`\"small\" | \"large\"`} - Size Property to decide the tool tip size\n\n * `placement` {`TooltipPosition`} - The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the tooltip so it won't show when triggered.\n\n * `distance` {`number`} - The distance in pixels from which to offset the tooltip away from its target.\n\n * `open` {`boolean`} - Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the tooltip along its target.\n\n * `trigger` {`string`} - Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.\n\n * `hoist` {`boolean`} - Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3880
+ "description": "Nile icon component.\n\nAttributes:\n\n * `content` {`string`} - The tooltip's content. If you need to display HTML, use the `content` slot instead.\n\n * `size` {`\"small\" | \"large\"`} - Size Property to decide the tool tip size\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the tooltip so it won't show when triggered.\n\n * `distance` {`number`} - The distance in pixels from which to offset the tooltip away from its target.\n\n * `open` {`boolean`} - Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the tooltip along its target.\n\n * `trigger` {`string`} - Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.\n\n * `hoist` {`boolean`} - Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.\n\nProperties:\n\n * `hoverTimeout` {`number`} - \n\n * `defaultSlot` {`HTMLSlotElement`} - \n\n * `body` {`HTMLElement`} - \n\n * `popup` - \n\n * `content` {`string`} - The tooltip's content. If you need to display HTML, use the `content` slot instead.\n\n * `size` {`\"small\" | \"large\"`} - Size Property to decide the tool tip size\n\n * `placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\n * `disabled` {`boolean`} - Disables the tooltip so it won't show when triggered.\n\n * `distance` {`number`} - The distance in pixels from which to offset the tooltip away from its target.\n\n * `open` {`boolean`} - Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.\n\n * `skidding` {`number`} - The distance in pixels from which to offset the tooltip along its target.\n\n * `trigger` {`string`} - Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.\n\n * `hoist` {`boolean`} - Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.\n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
3960
3881
  "attributes": [
3961
3882
  {
3962
3883
  "name": "content",
@@ -3976,7 +3897,7 @@
3976
3897
  },
3977
3898
  {
3978
3899
  "name": "placement",
3979
- "description": "`placement` {`TooltipPosition`} - The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\nProperty: placement\n\nDefault: top",
3900
+ "description": "`placement` {`\"left\" | \"right\" | \"top\" | \"bottom\" | \"top-start\" | \"top-end\" | \"bottom-start\" | \"bottom-end\" | \"right-start\" | \"right-end\" | \"left-start\" | \"left-end\"`} - The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.\n\nProperty: placement\n\nDefault: top",
3980
3901
  "values": [
3981
3902
  {
3982
3903
  "name": "left"
@@ -3988,25 +3909,25 @@
3988
3909
  "name": "top"
3989
3910
  },
3990
3911
  {
3991
- "name": "top-start"
3912
+ "name": "bottom"
3992
3913
  },
3993
3914
  {
3994
- "name": "top-end"
3915
+ "name": "top-start"
3995
3916
  },
3996
3917
  {
3997
- "name": "right-start"
3918
+ "name": "top-end"
3998
3919
  },
3999
3920
  {
4000
- "name": "right-end"
3921
+ "name": "bottom-start"
4001
3922
  },
4002
3923
  {
4003
- "name": "bottom"
3924
+ "name": "bottom-end"
4004
3925
  },
4005
3926
  {
4006
- "name": "bottom-start"
3927
+ "name": "right-start"
4007
3928
  },
4008
3929
  {
4009
- "name": "bottom-end"
3930
+ "name": "right-end"
4010
3931
  },
4011
3932
  {
4012
3933
  "name": "left-start"
@@ -1,2 +0,0 @@
1
- System.register(["./nile-slider.cjs.js","tslib","./nile-slider.css.cjs.js","lit","../internal/nile-element.cjs.js","lit/directives/class-map.js","lit/decorators.js","./nile-slider.template.cjs.js","./utils/nile-slider.utils.cjs.js"],function(_export,_context){"use strict";return{setters:[function(_nileSliderCjsJs){_export("NileSlider",_nileSliderCjsJs.N);},function(_tslib){},function(_nileSliderCssCjsJs){},function(_lit){},function(_internalNileElementCjsJs){},function(_litDirectivesClassMapJs){},function(_litDecoratorsJs){},function(_nileSliderTemplateCjsJs){},function(_utilsNileSliderUtilsCjsJs){}],execute:function execute(){}};});
2
- //# sourceMappingURL=index.cjs.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- export{N as NileSlider}from"./nile-slider.esm.js";import"tslib";import"./nile-slider.css.esm.js";import"lit";import"../internal/nile-element.esm.js";import"lit/directives/class-map.js";import"lit/decorators.js";import"./nile-slider.template.esm.js";import"./utils/nile-slider.utils.esm.js";
@@ -1,2 +0,0 @@
1
- function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o;}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o;},_typeof(o);}System.register(["tslib","./nile-slider.css.cjs.js","../internal/nile-element.cjs.js","lit/directives/class-map.js","lit","lit/decorators.js","./nile-slider.template.cjs.js","./utils/nile-slider.utils.cjs.js"],function(_export,_context){"use strict";var t,s,i,e,h,a,l,n,o,r,c,d,p,m,u,v,b,g,_templateObject,_templateObject2,f;function _taggedTemplateLiteral(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}));}function _classCallCheck(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function");}function _defineProperties(e,r){for(var t=0;t<r.length;t++){var o=r[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,_toPropertyKey(o.key),o);}}function _createClass(e,r,t){return r&&_defineProperties(e.prototype,r),t&&_defineProperties(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e;}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+"";}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.");}return("string"===r?String:Number)(t);}function _callSuper(t,o,e){return o=_getPrototypeOf(o),_possibleConstructorReturn(t,_isNativeReflectConstruct()?Reflect.construct(o,e||[],_getPrototypeOf(t).constructor):o.apply(t,e));}function _possibleConstructorReturn(t,e){if(e&&("object"==_typeof(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return _assertThisInitialized(t);}function _assertThisInitialized(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e;}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}));}catch(t){}return(_isNativeReflectConstruct=function _isNativeReflectConstruct(){return!!t;})();}function _superPropGet(t,o,e,r){var p=_get(_getPrototypeOf(1&r?t.prototype:t),o,e);return 2&r&&"function"==typeof p?function(t){return p.apply(e,t);}:p;}function _get(){return _get="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(e,t,r){var p=_superPropBase(e,t);if(p){var n=Object.getOwnPropertyDescriptor(p,t);return n.get?n.get.call(arguments.length<3?e:r):n.value;}},_get.apply(null,arguments);}function _superPropBase(t,o){for(;!{}.hasOwnProperty.call(t,o)&&null!==(t=_getPrototypeOf(t)););return t;}function _getPrototypeOf(t){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t);},_getPrototypeOf(t);}function _inherits(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_setPrototypeOf(t,e);}function _setPrototypeOf(t,e){return _setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t;},_setPrototypeOf(t,e);}return{setters:[function(_tslib){t=_tslib.__decorate;},function(_nileSliderCssCjsJs){s=_nileSliderCssCjsJs.s;},function(_internalNileElementCjsJs){i=_internalNileElementCjsJs.N;},function(_litDirectivesClassMapJs){e=_litDirectivesClassMapJs.classMap;},function(_lit){h=_lit.html;},function(_litDecoratorsJs){a=_litDecoratorsJs.property;l=_litDecoratorsJs.customElement;},function(_nileSliderTemplateCjsJs){n=_nileSliderTemplateCjsJs.l;o=_nileSliderTemplateCjsJs.r;r=_nileSliderTemplateCjsJs.s;},function(_utilsNileSliderUtilsCjsJs){c=_utilsNileSliderUtilsCjsJs.h;d=_utilsNileSliderUtilsCjsJs.a;p=_utilsNileSliderUtilsCjsJs.b;m=_utilsNileSliderUtilsCjsJs.v;u=_utilsNileSliderUtilsCjsJs.r;v=_utilsNileSliderUtilsCjsJs.c;b=_utilsNileSliderUtilsCjsJs.d;g=_utilsNileSliderUtilsCjsJs.g;}],execute:function execute(){_export("N",f=/*#__PURE__*/function(_i){function f(){var _this;_classCallCheck(this,f);_this=_callSuper(this,f,arguments),_this.minValue=0,_this.value=_this.minValue,_this.maxValue=100,_this.rangeOneValue=_this.minValue,_this.rangeTwoValue=_this.maxValue,_this.showLabel=!1,_this.labelStart="",_this.labelEnd="",_this.rangeSlider=!1,_this.labelPosition="top",_this.tooltipPosition="top",_this.activeThumb=null,_this.onMouseMove=function(t){var s=_this.range.getBoundingClientRect();if(_this.rangeSlider){"one"===_this.activeThumb?d(t,s,_assertThisInitialized(_this)):"two"===_this.activeThumb&&p(t,s,_assertThisInitialized(_this));var _i2=m(_this.rangeOneValue,_assertThisInitialized(_this)),_e=m(_this.rangeTwoValue,_assertThisInitialized(_this)),_h=Math.min(_i2,_e),_a=Math.abs(_e-_i2);_this.rangeTwoValue>=_this.rangeOneValue&&(_this.completed.style.left="".concat(_h,"%"),_this.completed.style.width="".concat(_a,"%"));}else c(t,s,_assertThisInitialized(_this));},_this.onMouseUp=function(){_this.rangeSlider?(_this.emit("nile-button-first-change-end",{value:_this.rangeOneValue}),_this.emit("nile-button-last-change-end",{value:_this.rangeTwoValue})):_this.emit("nile-change-end",{value:_this.value}),_this.activeThumb=null,u(_assertThisInitialized(_this));},_this.onMouseDown=function(t){var s=_this.range.getBoundingClientRect(),i=(t.clientX-s.left)/s.width*100,e=_this.minValue+i/100*(_this.maxValue-_this.minValue);if(_this.rangeSlider){b(e,_assertThisInitialized(_this));var _t=Math.abs(e-_this.rangeOneValue),_s=Math.abs(e-_this.rangeTwoValue);_this.activeThumb=_t<=_s?"one":"two",v(_assertThisInitialized(_this));}else c(t,s,_assertThisInitialized(_this)),_this.activeThumb="one",v(_assertThisInitialized(_this));};return _this;}_inherits(f,_i);return _createClass(f,[{key:"connectedCallback",value:function connectedCallback(){_superPropGet(f,"connectedCallback",this,3)([]),this.emit("nile-init"),this.rangeSlider&&this.checkRangeValidity();}},{key:"firstUpdated",value:function firstUpdated(t){if(g(this),!this.rangeSlider&&t.has("value")){this.value=this.checkValueValidity(this.value,this.minValue,this.maxValue);var _t2=m(this.value,this);this.buttonOne.style.left="".concat(_t2,"%"),this.completed.style.width="".concat(_t2,"%");}else if(this.rangeSlider){var _t3=m(this.rangeOneValue,this),_s2=m(this.rangeTwoValue,this);this.buttonOne&&(this.buttonOne.style.left="".concat(_t3,"%")),this.buttonTwo&&(this.buttonTwo.style.left="".concat(_s2,"%"));var _i3=Math.min(_t3,_s2),_e2=Math.abs(_s2-_t3);this.completed.style.left="".concat(_i3,"%"),this.completed.style.width="".concat(_e2,"%");}}},{key:"checkValueValidity",value:function checkValueValidity(t,s,i){return i-s<=1?Math.max(s,Math.min(t,i)):Math.floor(Math.max(s,Math.min(t,i)));}},{key:"checkRangeValidity",value:function checkRangeValidity(){this.rangeTwoValue>this.maxValue?this.rangeTwoValue=this.maxValue:this.rangeTwoValue<this.rangeOneValue&&(this.rangeTwoValue=this.rangeOneValue),this.rangeOneValue<this.minValue?this.rangeOneValue=this.minValue:this.rangeOneValue>this.rangeTwoValue&&(this.rangeOneValue=this.rangeTwoValue);}},{key:"render",value:function render(){var t=this.showLabel,s=t?"label-start label-end":void 0;return h(_templateObject||(_templateObject=_taggedTemplateLiteral(["\n <div\n part=\"base\"\n class=","\n >\n <slot class=\"span\" name=\"prefix\"></slot>\n \n <div\n part=\"range-container\"\n class=","\n >\n ","\n \n <div\n class=\"range\"\n part=\"range\"\n role=\"group\"\n aria-labelledby=","\n >\n <span class=\"range-completed\" part=\"range-completed\"></span>\n ","\n </div>\n </div>\n \n <slot class=\"span\" name=\"suffix\"></slot>\n </div>\n "])),e({container:!0,"align-item-center":!t}),e({"range-container":!0,"column-reverse":"bottom"===this.labelPosition}),t?n(this):h(_templateObject2||(_templateObject2=_taggedTemplateLiteral([""]))),s,this.rangeSlider?o(this):r(this));}},{key:"disconnectedCallback",value:function disconnectedCallback(){_superPropGet(f,"disconnectedCallback",this,3)([]),this.emit("nile-destroy");}}],[{key:"styles",get:function get(){return[s];}}]);}(i));t([a({type:Number})],f.prototype,"minValue",void 0),t([a({type:Number})],f.prototype,"value",void 0),t([a({type:Number})],f.prototype,"maxValue",void 0),t([a({type:Number})],f.prototype,"rangeOneValue",void 0),t([a({type:Number})],f.prototype,"rangeTwoValue",void 0),t([a({type:Boolean})],f.prototype,"showLabel",void 0),t([a({type:String})],f.prototype,"labelStart",void 0),t([a({type:String})],f.prototype,"labelEnd",void 0),t([a({type:Boolean})],f.prototype,"rangeSlider",void 0),t([a({type:String})],f.prototype,"labelPosition",void 0),t([a({type:String})],f.prototype,"tooltipPosition",void 0),_export("N",f=t([l("nile-slider")],f));}};});
2
- //# sourceMappingURL=nile-slider.cjs.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"nile-slider.cjs.js","sources":["../../../src/nile-slider/nile-slider.ts"],"sourcesContent":["/**\n * Copyright Aquera Inc 2025\n *\n * This source code is licensed under the BSD-3-Clause license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nimport { styles } from './nile-slider.css';\nimport NileElement from '../internal/nile-element';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { html, CSSResultArray, TemplateResult } from 'lit';\nimport { customElement, property } from 'lit/decorators.js';\nimport { TooltipPosition } from './types/nile-slider.types';\nimport { NileSliderEvents } from './types/nile-slider.enums';\nimport { rangeSlider, singleSlider, lableContaier } from './nile-slider.template';\nimport { \n handleSingleSlider, \n handleRangeOne, \n handleRangeTwo, \n getHtmlElements, \n removeMoveListeners,\n valueToPercent,\n handleTwoThumbClick,\n addMoveListeners\n} from './utils/nile-slider.utils'\n\n/** \n * Nile slider component.\n *\n * @tag nile-slider\n */\n@customElement('nile-slider')\nexport class NileSlider extends NileElement {\n public static get styles(): CSSResultArray {\n return [styles];\n }\n\n @property({ type: Number }) minValue: number = 0;\n @property({ type: Number }) value: number = this.minValue;\n @property({ type: Number }) maxValue: number = 100;\n @property({ type: Number }) rangeOneValue: number = this.minValue;\n @property({ type: Number }) rangeTwoValue: number = this.maxValue;\n @property({ type: Boolean}) showLabel: boolean = false;\n @property({ type: String }) labelStart: string = \"\";\n @property({ type: String }) labelEnd: string = \"\";\n @property({ type: Boolean}) rangeSlider: boolean = false;\n @property({ type: String }) labelPosition: string = \"top\";\n @property({ type: String }) tooltipPosition: TooltipPosition = \"top\";\n\n public buttonOne!: HTMLElement;\n public buttonTwo!: HTMLElement;\n public range!: HTMLElement;\n public completed!: HTMLElement;\n public activeThumb: 'one' | 'two' | null = null;\n\n connectedCallback(): void {\n super.connectedCallback();\n this.emit(NileSliderEvents.NILE_INIT); \n\n if(this.rangeSlider) {\n this.checkRangeValidity();\n }\n }\n\n firstUpdated(changedProps: Map<string, any>): void {\n getHtmlElements(this);\n\n if (!this.rangeSlider && changedProps.has('value')) {\n this.value = this.checkValueValidity(this.value, this.minValue, this.maxValue);\n const percent = valueToPercent(this.value, this);\n \n this.buttonOne.style.left = `${percent}%`;\n this.completed.style.width = `${percent}%`;\n } else if (this.rangeSlider) {\n \n const percentOne = valueToPercent(this.rangeOneValue, this);\n const percentTwo = valueToPercent(this.rangeTwoValue, this);\n \n if (this.buttonOne) this.buttonOne.style.left = `${percentOne}%`;\n if (this.buttonTwo) this.buttonTwo.style.left = `${percentTwo}%`;\n \n const left = Math.min(percentOne, percentTwo);\n const width = Math.abs(percentTwo - percentOne);\n \n this.completed.style.left = `${left}%`;\n this.completed.style.width = `${width}%`;\n }\n }\n\n checkValueValidity(value: number, min: number, max: number): number {\n if(max - min <= 1) { \n return Math.max(min, Math.min(value, max));\n }\n return Math.floor(Math.max(min, Math.min(value, max)));\n }\n\n checkRangeValidity(): void {\n if(this.rangeTwoValue > this.maxValue) {\n this.rangeTwoValue = this.maxValue;\n } else if(this.rangeTwoValue < this.rangeOneValue) {\n this.rangeTwoValue = this.rangeOneValue;\n }\n\n if(this.rangeOneValue < this.minValue) {\n this.rangeOneValue = this.minValue;\n } else if(this.rangeOneValue > this.rangeTwoValue) {\n this.rangeOneValue = this.rangeTwoValue;\n }\n } \n\n public onMouseMove = (e: MouseEvent): void => {\n const rect = this.range.getBoundingClientRect();\n\n if (!this.rangeSlider) {\n handleSingleSlider(e, rect, this);\n } else {\n if (this.activeThumb === 'one') {\n handleRangeOne(e, rect, this);\n } else if (this.activeThumb === 'two') {\n handleRangeTwo(e, rect, this);\n }\n\n const start = valueToPercent(this.rangeOneValue, this);\n const end = valueToPercent(this.rangeTwoValue, this);\n const left = Math.min(start, end);\n const width = Math.abs(end - start);\n\n if(this.rangeTwoValue >= this.rangeOneValue) {\n this.completed.style.left = `${left}%`;\n this.completed.style.width = `${width}%`;\n }\n }\n };\n\n public onMouseUp = (): void => {\n if(!this.rangeSlider) this.emit(NileSliderEvents.NILE_CHANGE_END, { value: this.value });\n else {\n this.emit(NileSliderEvents.NILE_BUTTON_FIRST_CHANGE_END, { value: this.rangeOneValue });\n this.emit(NileSliderEvents.NILE_BUTTON_LAST_CHANGE_END, { value: this.rangeTwoValue });\n }\n this.activeThumb = null;\n removeMoveListeners(this);\n };\n\n public onMouseDown = (e: MouseEvent): void => {\n const rect = this.range.getBoundingClientRect();\n const clickX = e.clientX - rect.left;\n const percent = (clickX / rect.width) * 100;\n const value = this.minValue + (percent / 100) * (this.maxValue - this.minValue);\n \n if (!this.rangeSlider) {\n handleSingleSlider(e, rect, this);\n this.activeThumb = 'one';\n addMoveListeners(this);\n } else {\n handleTwoThumbClick(value, this);\n const distToOne = Math.abs(value - this.rangeOneValue);\n const distToTwo = Math.abs(value - this.rangeTwoValue);\n this.activeThumb = distToOne <= distToTwo ? 'one' : 'two';\n addMoveListeners(this);\n }\n };\n\n public render(): TemplateResult {\n const hasLabels = this.showLabel;\n const ariaLabelledby = hasLabels ? 'label-start label-end' : undefined;\n \n return html`\n <div\n part=\"base\"\n class=${classMap({\n 'container': true,\n 'align-item-center': !hasLabels\n })}\n >\n <slot class=\"span\" name=\"prefix\"></slot>\n \n <div\n part=\"range-container\"\n class=${classMap({\n 'range-container': true,\n 'column-reverse': this.labelPosition === 'bottom'\n })}\n >\n ${hasLabels ? lableContaier(this) : html``}\n \n <div\n class=\"range\"\n part=\"range\"\n role=\"group\"\n aria-labelledby=${ariaLabelledby}\n >\n <span class=\"range-completed\" part=\"range-completed\"></span>\n ${this.rangeSlider ? rangeSlider(this) : singleSlider(this)}\n </div>\n </div>\n \n <slot class=\"span\" name=\"suffix\"></slot>\n </div>\n `;\n } \n\n disconnectedCallback(): void {\n super.disconnectedCallback();\n this.emit(NileSliderEvents.NILE_DESTROY);\n }\n}\n\nexport default NileSlider;\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'nile-slider': NileSlider;\n }\n}\n"],"names":["NileSlider","f","this","minValue","value","maxValue","rangeOneValue","rangeTwoValue","showLabel","labelStart","labelEnd","rangeSlider","labelPosition","tooltipPosition","activeThumb","onMouseMove","e","rect","range","getBoundingClientRect","handleRangeOne","handleRangeTwo","start","valueToPercent","end","left","Math","min","width","abs","completed","style","concat","handleSingleSlider","onMouseUp","emit","removeMoveListeners","onMouseDown","percent","clientX","handleTwoThumbClick","distToOne","distToTwo","addMoveListeners","_this","_inherits","_i","_createClass","key","connectedCallback","super","checkRangeValidity","firstUpdated","changedProps","getHtmlElements","has","checkValueValidity","buttonOne","percentOne","percentTwo","buttonTwo","max","floor","render","hasLabels","ariaLabelledby","undefined","html","_templateObject","_taggedTemplateLiteral","classMap","container","lableContaier","_templateObject2","singleSlider","disconnectedCallback","__decorate","get","styles","NileElement","property","type","Number","prototype","Boolean","String","customElement"],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- System.register(["lit"],function(_export,_context){"use strict";var r,_templateObject,a;function _taggedTemplateLiteral(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}));}return{setters:[function(_lit){r=_lit.css;}],execute:function execute(){_export("s",a=r(_templateObject||(_templateObject=_taggedTemplateLiteral(["\n :host {\n display: block;\n }\n\n .container {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 10px;\n height: 100px;\n }\n\n .align-item-center {\n align-items: center;\n }\n\n slot.span {\n font-size: var(--nile-font-size-micro);\n margin-top: 14px;\n }\n\n .range-container {\n display: flex;\n flex-direction: column;\n gap: var(--nile-spacing-sm);\n }\n\n .column-reverse {\n flex-direction: column-reverse;\n }\n\n .label-container {\n display: flex;\n justify-content: space-between;\n }\n\n .label-container span {\n margin: var(--nile-spacing-none);\n padding: var(--nile-spacing-none);\n font-size: var(--nile-font-size-micro);\n }\n\n .range {\n position: relative;\n width: 228px;\n height: 4px;\n background-color: var(--nile-colors-neutral-400);\n user-select: none;\n border-radius: var(--nile-radius-radius-3xl);\n }\n\n .range:hover {\n cursor: pointer;\n }\n\n .range-completed {\n position: absolute;\n height: 100%;\n width: 0%;\n background-color: var(--nile-colors-primary-600);\n top: 0px;\n left: 0px;\n z-index: 98;\n border-radius: var(--nile-radius-radius-3xl);\n }\n\n .range-button {\n height: 12px;\n width: 12px;\n background-color: var(--nile-colors-primary-600);\n position: absolute;\n top: 50%;\n transform: translate(-50%, -50%);\n border-radius: var(--nile-radius-radius-3xl);\n left: 0;\n z-index: 100;\n box-shadow: rgba(0, 82, 145, 0.1) 0px 1px 2px 0px, rgba(0, 94, 166, 0.15) 0px 0px 0px 2px;\n transition: box-shadow var(--nile-transition-duration-default) ease;\n }\n\n .range-button:hover, .range-button-two:hover {\n cursor: pointer;\n background-color: var(--nile-colors-primary-700);\n }\n\n .range-button:active, .range-button-two:active {\n transition: box-shadow var(--nile-transition-duration-default) ease;\n background-color: var(--nile-colors-primary-700);\n box-shadow: rgba(0, 82, 145, 0.1) 0px 1px 2px 0px, rgba(0, 94, 166, 0.15) 0px 0px 0px 4px;\n }\n\n .range-button-two {\n height: 12px;\n width: 12px;\n background-color: var(--nile-colors-primary-600);\n position: absolute;\n top: 50%;\n transform: translate(-50%, -50%);\n border-radius: var(--nile-radius-radius-3xl);\n left: 100%;\n z-index: 100;\n box-shadow: rgba(0, 82, 145, 0.1) 0px 1px 2px 0px, rgba(0, 94, 166, 0.15) 0px 0px 0px 2px;\n transition: box-shadow var(--nile-transition-duration-default) ease;\n }\n"]))));}};});
2
- //# sourceMappingURL=nile-slider.css.cjs.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"nile-slider.css.cjs.js","sources":["../../../src/nile-slider/nile-slider.css.ts"],"sourcesContent":["/**\n* Copyright Aquera Inc 2025\n*\n* This source code is licensed under the BSD-3-Clause license found in the\n* LICENSE file in the root directory of this source tree.\n*/\nimport { css } from 'lit';\n\n/**\n* Slider CSS\n*/\nexport const styles = css`\n :host {\n display: block;\n }\n\n .container {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 10px;\n height: 100px;\n }\n\n .align-item-center {\n align-items: center;\n }\n\n slot.span {\n font-size: var(--nile-font-size-micro);\n margin-top: 14px;\n }\n\n .range-container {\n display: flex;\n flex-direction: column;\n gap: var(--nile-spacing-sm);\n }\n\n .column-reverse {\n flex-direction: column-reverse;\n }\n\n .label-container {\n display: flex;\n justify-content: space-between;\n }\n\n .label-container span {\n margin: var(--nile-spacing-none);\n padding: var(--nile-spacing-none);\n font-size: var(--nile-font-size-micro);\n }\n\n .range {\n position: relative;\n width: 228px;\n height: 4px;\n background-color: var(--nile-colors-neutral-400);\n user-select: none;\n border-radius: var(--nile-radius-radius-3xl);\n }\n\n .range:hover {\n cursor: pointer;\n }\n\n .range-completed {\n position: absolute;\n height: 100%;\n width: 0%;\n background-color: var(--nile-colors-primary-600);\n top: 0px;\n left: 0px;\n z-index: 98;\n border-radius: var(--nile-radius-radius-3xl);\n }\n\n .range-button {\n height: 12px;\n width: 12px;\n background-color: var(--nile-colors-primary-600);\n position: absolute;\n top: 50%;\n transform: translate(-50%, -50%);\n border-radius: var(--nile-radius-radius-3xl);\n left: 0;\n z-index: 100;\n box-shadow: rgba(0, 82, 145, 0.1) 0px 1px 2px 0px, rgba(0, 94, 166, 0.15) 0px 0px 0px 2px;\n transition: box-shadow var(--nile-transition-duration-default) ease;\n }\n\n .range-button:hover, .range-button-two:hover {\n cursor: pointer;\n background-color: var(--nile-colors-primary-700);\n }\n\n .range-button:active, .range-button-two:active {\n transition: box-shadow var(--nile-transition-duration-default) ease;\n background-color: var(--nile-colors-primary-700);\n box-shadow: rgba(0, 82, 145, 0.1) 0px 1px 2px 0px, rgba(0, 94, 166, 0.15) 0px 0px 0px 4px;\n }\n\n .range-button-two {\n height: 12px;\n width: 12px;\n background-color: var(--nile-colors-primary-600);\n position: absolute;\n top: 50%;\n transform: translate(-50%, -50%);\n border-radius: var(--nile-radius-radius-3xl);\n left: 100%;\n z-index: 100;\n box-shadow: rgba(0, 82, 145, 0.1) 0px 1px 2px 0px, rgba(0, 94, 166, 0.15) 0px 0px 0px 2px;\n transition: box-shadow var(--nile-transition-duration-default) ease;\n }\n`;\n\nexport default [styles];\n"],"names":["styles","css","_templateObject","_taggedTemplateLiteral"],"mappings":"oTAWaA,CAAAA,CAASC,CAAG,CAAAC,eAAA,GAAAA,eAAA,CAAAC,sBAAA"}