cotomy 0.1.34 → 0.1.35
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/api.d.ts +12 -1
- package/dist/form.d.ts +18 -18
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/view.d.ts +1 -1
- package/package.json +1 -1
package/dist/view.d.ts
CHANGED
|
@@ -18,11 +18,11 @@ export declare class CotomyElement {
|
|
|
18
18
|
get scopedSelector(): string;
|
|
19
19
|
get stylable(): boolean;
|
|
20
20
|
private get scopedCssElementId();
|
|
21
|
-
private get scopedCssElement();
|
|
22
21
|
private useScopedCss;
|
|
23
22
|
static readonly LISTEN_LAYOUT_EVENTS_ATTRIBUTE: string;
|
|
24
23
|
listenLayoutEvents(): this;
|
|
25
24
|
get id(): string | null | undefined;
|
|
25
|
+
generateId(prefix?: string): this;
|
|
26
26
|
get element(): HTMLElement;
|
|
27
27
|
get tagname(): string;
|
|
28
28
|
is(selector: string): boolean;
|