@florid-kit/components 0.8.12 → 0.8.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/assets/icons/icons.d.ts +1 -0
- package/components/button.d.ts +2 -0
- package/components/filter-chip.d.ts +1 -1
- package/components/side-panel.d.ts +2 -0
- package/index.js +257 -92
- package/index.mjs +1029 -593
- package/package.json +1 -1
package/assets/icons/icons.d.ts
CHANGED
package/components/button.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { FormSubmitter, FormSubmitterType } from '../controllers/form-submitter'
|
|
|
3
3
|
|
|
4
4
|
declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
|
|
5
5
|
type ButtonVariant = "primary" | "secondary" | "ghost" | "tertiary";
|
|
6
|
+
export declare const variants: string[];
|
|
6
7
|
export declare class OccitaneButton extends buttonBaseClass implements FormSubmitter {
|
|
7
8
|
static readonly formAssociated = true;
|
|
8
9
|
static styles: import('lit').CSSResult;
|
|
@@ -23,6 +24,7 @@ export declare class OccitaneButton extends buttonBaseClass implements FormSubmi
|
|
|
23
24
|
panelTarget: string;
|
|
24
25
|
href: string;
|
|
25
26
|
target: "_blank" | "_self" | "_top" | "_parent" | "";
|
|
27
|
+
underlined: boolean;
|
|
26
28
|
private handleClick;
|
|
27
29
|
protected render(): import('lit').TemplateResult<1>;
|
|
28
30
|
private renderIcon;
|
|
@@ -10,7 +10,7 @@ export declare class OccitaneFilterChip extends buttonBaseClass {
|
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
fullwidth: boolean;
|
|
12
12
|
private crossIconName;
|
|
13
|
-
private
|
|
13
|
+
private strikethroughImgName;
|
|
14
14
|
private handleClick;
|
|
15
15
|
private crossIcon;
|
|
16
16
|
private strikeThroughImg;
|
|
@@ -9,9 +9,11 @@ export declare class OccitaneSidePanel extends LitElement {
|
|
|
9
9
|
closeButtonLabel: string;
|
|
10
10
|
firstButtonLabel: string;
|
|
11
11
|
firstButtonVariant: string;
|
|
12
|
+
firstButtonProps: {};
|
|
12
13
|
onFirstButtonClick?: () => void;
|
|
13
14
|
secondaryButtonLabel: string;
|
|
14
15
|
secondaryButtonVariant: string;
|
|
16
|
+
secondaryButtonProps: {};
|
|
15
17
|
onSecondaryButtonClick?: () => void;
|
|
16
18
|
disablePortal: boolean;
|
|
17
19
|
zIndex: number;
|