@chefuicore/core 0.5.0 → 0.6.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.
- package/dist/components/chef-ui-action-button.d.ts +22 -0
- package/dist/components/chef-ui-action-button.d.ts.map +1 -0
- package/dist/index.cjs +301 -57
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +298 -54
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
import './chef-icon';
|
|
3
|
+
import type { IconName } from '../utils/icon-resolver';
|
|
4
|
+
export declare class ChefUiActionButton extends LitElement {
|
|
5
|
+
static styles: import("lit").CSSResult;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
variant: 'circular' | 'extended';
|
|
8
|
+
size: 'small' | 'medium' | 'large';
|
|
9
|
+
color: 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
|
|
10
|
+
icon?: IconName;
|
|
11
|
+
href?: string;
|
|
12
|
+
ariaLabel: string | null;
|
|
13
|
+
private createRipple;
|
|
14
|
+
private handleClick;
|
|
15
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
16
|
+
}
|
|
17
|
+
declare global {
|
|
18
|
+
interface HTMLElementTagNameMap {
|
|
19
|
+
'chef-ui-action-button': ChefUiActionButton;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=chef-ui-action-button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chef-ui-action-button.d.ts","sourceRoot":"","sources":["../../src/components/chef-ui-action-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAa,MAAM,KAAK,CAAC;AAE5C,OAAO,aAAa,CAAC;AACrB,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAEvD,qBACa,kBAAmB,SAAQ,UAAU;IAC9C,MAAM,CAAC,MAAM,0BAsOX;IAE0C,QAAQ,UAAS;IAClB,OAAO,EAAE,UAAU,GAAG,UAAU,CAAc;IAC9C,IAAI,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAY;IAC9C,KAAK,EAAE,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAAa;IAClG,IAAI,CAAC,EAAE,QAAQ,CAAC;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACW,SAAS,EAAE,MAAM,GAAG,IAAI,CAAQ;IAErF,OAAO,CAAC,YAAY;IAqBpB,OAAO,CAAC,WAAW;IAgBnB,MAAM;CAiBT;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,uBAAuB,EAAE,kBAAkB,CAAC;KAC/C;CACJ"}
|