@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.
- package/dist/components/accordion/gator/base/accordion.gator.js +2 -2
- package/dist/components/accordion/gator/group/accordion-group.gator.js +2 -2
- package/dist/components/alert/gator/base/alert.gator.js +1 -1
- package/dist/components/alert/index.js +1 -1
- package/dist/components/banner/gator/banner.gator.js +1 -1
- package/dist/components/banner/index.js +1 -1
- package/dist/components/boolean/boolean.gator.js +1 -1
- package/dist/components/boolean/index.js +1 -1
- package/dist/components/checkbox/checkbox.gator.js +1 -1
- package/dist/components/checkbox/index.js +1 -1
- package/dist/components/checkbox-group/checkbox-group.gator.js +1 -1
- package/dist/components/checkbox-group/index.js +1 -1
- package/dist/components/display-card/gator/display-card.gator.js +3 -3
- package/dist/components/display-card/index.js +1 -1
- package/dist/components/headline-card/gator/headline-card.gator.js +1 -1
- package/dist/components/headline-card/index.js +1 -1
- package/dist/components/icon/gator/icon.gator.js +1 -1
- package/dist/components/icon/gator/index.js +1 -1
- package/dist/components/icon/gator/templates/index.js +1 -1
- package/dist/components/icon/gator/templates/overflow-menu.js +23 -0
- package/dist/components/icon/index.js +1 -1
- package/dist/components/icon-button/gator/icon-button.gator.js +4 -4
- package/dist/components/icon-button/icon-button.js +1 -1
- package/dist/components/icon-button/index.js +1 -1
- package/dist/components/input/gator/help-text/help-text.gator.js +1 -1
- package/dist/components/input/gator/input-text/input-text.gator.js +2 -2
- package/dist/components/input/index.js +1 -1
- package/dist/components/list/gator/list-item/list-item.gator.js +1 -1
- package/dist/components/modal/gator/modal.gator.js +1 -1
- package/dist/components/modal/index.js +1 -1
- package/dist/components/radio/index.js +1 -1
- package/dist/components/radio/radio.gator.js +1 -1
- package/dist/components/radio-group/index.js +1 -1
- package/dist/components/radio-group/radio-group.gator.js +1 -1
- package/dist/components/selection-box/index.js +1 -1
- package/dist/components/selection-box/selection-box.gator.js +2 -2
- package/dist/components/selection-box-group/index.js +1 -1
- package/dist/components/selection-box-group/selection-box-group.gator.js +1 -1
- package/dist/components/text-link/gator/text-link.gator.js +2 -2
- package/dist/components/text-link/index.js +1 -1
- package/dist/components/toast/gator/toast.gator.js +2 -2
- package/dist/components/toast/index.js +1 -1
- package/dist/index.gator.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.slds.js +1 -1
- package/dist/types/components/icon/gator/templates/index.d.ts +1 -0
- package/dist/types/components/icon/gator/templates/overflow-menu.d.ts +1 -0
- package/package.json +1 -1
- package/web-types.json +1 -1
- 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
|
-
}
|