@sebgroup/green-core 1.4.0 → 1.4.2
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/components/context-menu/context-menu.d.ts +4 -3
- package/components/datepicker/datepicker.d.ts +1 -0
- package/components/dropdown/dropdown.d.ts +3 -1
- package/components/form-control.d.ts +2 -2
- package/gds-element.d.ts +8 -0
- package/index.js +332 -184
- package/package.json +1 -1
- package/primitives/calendar/calendar.d.ts +3 -2
- package/primitives/listbox/listbox.d.ts +3 -2
- package/primitives/listbox/option.d.ts +3 -1
- package/primitives/menu/menu-item.d.ts +3 -1
- package/primitives/menu/menu.d.ts +3 -2
- package/primitives/popover/popover.d.ts +3 -2
- package/transitional-styles.js +1180 -4697
- package/utils/helpers/transitional-styles.d.ts +3 -0
|
@@ -9,7 +9,10 @@ export declare class TransitionalStyles {
|
|
|
9
9
|
static get instance(): TransitionalStyles;
|
|
10
10
|
private sheets;
|
|
11
11
|
private elements;
|
|
12
|
+
private sheetsLegacy;
|
|
13
|
+
private useLegacyStylesheets;
|
|
12
14
|
apply(element: HTMLElement, styleKey: string): void;
|
|
13
15
|
applyToElement(styleKey: string, sheet: CSSStyleSheet): void;
|
|
16
|
+
applyToElementLegacy(styleKey: string): void;
|
|
14
17
|
register(name: string, styles: string): void;
|
|
15
18
|
}
|