@revotech-group/revotech-ui-kit 0.0.72 → 0.0.74
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const inputStyles = "rtg-flex rtg-h-
|
|
1
|
+
export declare const inputStyles = "rtg-flex rtg-h-9 rtg-w-full rtg-rounded-md rtg-border rtg-border-input rtg-bg-transparent rtg-px-3 rtg-py-1 rtg-text-sm rtg-shadow-sm rtg-transition-colors file:rtg-border-0 file:rtg-bg-transparent file:rtg-text-sm file:rtg-font-medium placeholder:rtg-text-muted-foreground focus-visible:rtg-outline-none focus-visible:rtg-ring-1 focus-visible:rtg-ring-ring disabled:rtg-opacity-50 input-base";
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
|
|
3
3
|
export declare abstract class BaseElement extends LitElement {
|
|
4
|
-
|
|
4
|
+
customClass: string;
|
|
5
5
|
constructor();
|
|
6
6
|
protected getAttributesToExclude(): string[];
|
|
7
7
|
protected getAttributesToRemoveFromParent(): string[];
|
|
8
|
+
protected removeParentAttributes(): void;
|
|
8
9
|
protected getFilteredAttributes(): {
|
|
9
10
|
[key: string]: string;
|
|
10
11
|
};
|
|
11
|
-
protected removeParentAttributes(): void;
|
|
12
12
|
protected isCustomPropertySet(property: string): boolean;
|
|
13
13
|
protected applyCustomClass(variables: string[], selector: string, className?: string): void;
|
|
14
14
|
protected removeDuplicateContent(): void;
|
package/package.json
CHANGED