@ncino/web-components 1.2.0-preview.13 → 1.2.0-preview.15

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 (50) hide show
  1. package/dist/components/accordion/gator/base/accordion.gator.js +2 -2
  2. package/dist/components/accordion/gator/group/accordion-group.gator.js +2 -2
  3. package/dist/components/alert/gator/base/alert.gator.js +1 -1
  4. package/dist/components/alert/index.js +1 -1
  5. package/dist/components/banner/gator/banner.gator.js +1 -1
  6. package/dist/components/banner/index.js +1 -1
  7. package/dist/components/boolean/boolean.gator.js +1 -1
  8. package/dist/components/boolean/index.js +1 -1
  9. package/dist/components/checkbox/checkbox.gator.js +1 -1
  10. package/dist/components/checkbox/index.js +1 -1
  11. package/dist/components/checkbox-group/checkbox-group.gator.js +1 -1
  12. package/dist/components/checkbox-group/index.js +1 -1
  13. package/dist/components/display-card/gator/display-card.gator.js +3 -3
  14. package/dist/components/display-card/index.js +1 -1
  15. package/dist/components/headline-card/gator/headline-card.gator.js +1 -1
  16. package/dist/components/headline-card/index.js +1 -1
  17. package/dist/components/icon/gator/icon.gator.js +1 -1
  18. package/dist/components/icon/gator/index.js +1 -1
  19. package/dist/components/icon/gator/templates/index.js +1 -1
  20. package/dist/components/icon/gator/templates/overflow-menu.js +23 -0
  21. package/dist/components/icon/index.js +1 -1
  22. package/dist/components/icon-button/gator/icon-button.gator.js +4 -4
  23. package/dist/components/icon-button/icon-button.js +1 -1
  24. package/dist/components/icon-button/index.js +1 -1
  25. package/dist/components/input/gator/help-text/help-text.gator.js +1 -1
  26. package/dist/components/input/gator/input-text/input-text.gator.js +2 -2
  27. package/dist/components/input/index.js +1 -1
  28. package/dist/components/list/gator/list-item/list-item.gator.js +1 -1
  29. package/dist/components/modal/gator/modal.gator.js +1 -1
  30. package/dist/components/modal/index.js +1 -1
  31. package/dist/components/radio/index.js +1 -1
  32. package/dist/components/radio/radio.gator.js +1 -1
  33. package/dist/components/radio-group/index.js +1 -1
  34. package/dist/components/radio-group/radio-group.gator.js +1 -1
  35. package/dist/components/selection-box/index.js +1 -1
  36. package/dist/components/selection-box/selection-box.gator.js +2 -2
  37. package/dist/components/selection-box-group/index.js +1 -1
  38. package/dist/components/selection-box-group/selection-box-group.gator.js +1 -1
  39. package/dist/components/text-link/gator/text-link.gator.js +2 -2
  40. package/dist/components/text-link/index.js +1 -1
  41. package/dist/components/toast/gator/toast.gator.js +2 -2
  42. package/dist/components/toast/index.js +1 -1
  43. package/dist/index.gator.js +1 -1
  44. package/dist/index.js +1 -1
  45. package/dist/index.slds.js +1 -1
  46. package/dist/types/components/icon/gator/templates/index.d.ts +1 -0
  47. package/dist/types/components/icon/gator/templates/overflow-menu.d.ts +1 -0
  48. package/package.json +1 -1
  49. package/web-types.json +1 -1
  50. package/dist/types/components/icon-button/icon-button.d.ts +0 -34
@@ -1,34 +0,0 @@
1
- import { TestableLitElement } from '../../utils/components/testable-lit-element/testable-lit-element.ts';
2
- export type NJC_ICON_BUTTON_SIZE = null | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
3
- export declare class NjcIconButton extends TestableLitElement {
4
- /**
5
- @property size - The size of the icon-button
6
- @type {NJC_ICON_BUTTON_SIZE}
7
- **/
8
- size: NJC_ICON_BUTTON_SIZE;
9
- /**
10
- * @property ariaLabel - The aria label for the button
11
- * @type {string}
12
- */
13
- ariaLabel: string;
14
- /**
15
- * @property iconName - The name of the icon to display for the icon button variant
16
- * @type {string}
17
- */
18
- iconName: string;
19
- /**
20
- @property disabled - Disables the button
21
- @type {boolean}
22
- **/
23
- disabled: boolean;
24
- /**
25
- @property loading - Shows a loading indicator
26
- @type {boolean}
27
- **/
28
- loading: boolean;
29
- /**
30
- @property skeleton - Shows the skeleton loader
31
- @type {boolean}
32
- **/
33
- skeleton: boolean;
34
- }