@skeletonlabs/skeleton-common 0.0.1-next.0 → 1.0.0-next.1
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/index.css +1 -0
- package/dist/index.d.ts +19 -17
- package/dist/index.js +223 -0
- package/package.json +13 -12
- package/dist/index.cjs +0 -177
- package/dist/index.d.cts +0 -24
- package/dist/index.d.mts +0 -24
- package/dist/index.mjs +0 -173
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@source './';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
1
|
+
//#region src/themes.d.ts
|
|
1
2
|
interface Theme {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
name: string;
|
|
4
|
+
css: string;
|
|
5
|
+
emoji: string;
|
|
5
6
|
}
|
|
6
7
|
declare const themes: Theme[];
|
|
7
|
-
|
|
8
|
+
//#endregion
|
|
9
|
+
//#region src/classes/accordion.d.ts
|
|
8
10
|
declare const classesAccordion: {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
root: string;
|
|
12
|
+
content: string;
|
|
13
|
+
heading: string;
|
|
14
|
+
trigger: string;
|
|
15
|
+
item: string;
|
|
16
|
+
indicator: string;
|
|
15
17
|
};
|
|
16
|
-
|
|
18
|
+
//#endregion
|
|
19
|
+
//#region src/classes/avatar.d.ts
|
|
17
20
|
declare const classesAvatar: {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
root: string;
|
|
22
|
+
image: string;
|
|
23
|
+
fallback: string;
|
|
21
24
|
};
|
|
22
|
-
|
|
23
|
-
export { classesAccordion, classesAvatar, themes };
|
|
24
|
-
export type { Theme };
|
|
25
|
+
//#endregion
|
|
26
|
+
export { Theme, classesAccordion, classesAvatar, themes };
|