@max-ts/svelte 1.6.1 → 1.6.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/dist/components/Carousel/Arrows/styles.css.d.ts +0 -4
- package/dist/components/Carousel/Arrows/styles.css.js +8 -10
- package/dist/components/Carousel/Content/styles.css.d.ts +0 -3
- package/dist/components/Carousel/Content/styles.css.js +4 -5
- package/dist/components/Carousel/Item/styles.css.d.ts +0 -2
- package/dist/components/Carousel/Item/styles.css.js +4 -5
- package/dist/components/Carousel/styles.css.d.ts +0 -1
- package/dist/components/RangeInput/styles.css.d.ts +0 -6
- package/dist/components/RangeInput/styles.css.js +5 -6
- package/dist/components/Slider/styles.css.d.ts +0 -6
- package/dist/components/Slider/styles.css.js +10 -12
- package/package.json +1 -1
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
export declare const buttonBase: string;
|
|
2
|
-
export declare const iconWrapper: string;
|
|
3
|
-
export declare const buttonNext: Record<"horizontal" | "vertical", string>;
|
|
4
|
-
export declare const buttonPrev: Record<"horizontal" | "vertical", string>;
|
|
5
1
|
declare const _default: {
|
|
6
2
|
buttonNext: Record<"horizontal" | "vertical", string>;
|
|
7
3
|
buttonPrev: Record<"horizontal" | "vertical", string>;
|
|
@@ -2,17 +2,15 @@ import "./../../../assets/src/theme.css.ts.vanilla-HT3RGHeI.css";
|
|
|
2
2
|
import "./../../../assets/src/components/Carousel/Arrows/styles.css.ts.vanilla-CFc3t0Nn.css";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Carousel/Arrows/styles.css.ts
|
|
5
|
-
var buttonNext = {
|
|
6
|
-
horizontal: "styles_buttonNext_horizontal__3ygkf92 styles_buttonBase__3ygkf90",
|
|
7
|
-
vertical: "styles_buttonNext_vertical__3ygkf93 styles_buttonBase__3ygkf90"
|
|
8
|
-
};
|
|
9
|
-
var buttonPrev = {
|
|
10
|
-
horizontal: "styles_buttonPrev_horizontal__3ygkf94 styles_buttonBase__3ygkf90",
|
|
11
|
-
vertical: "styles_buttonPrev_vertical__3ygkf95 styles_buttonBase__3ygkf90"
|
|
12
|
-
};
|
|
13
5
|
var __default__ = {
|
|
14
|
-
buttonNext
|
|
15
|
-
|
|
6
|
+
buttonNext: {
|
|
7
|
+
horizontal: "styles_buttonNext_horizontal__3ygkf92 styles_buttonBase__3ygkf90",
|
|
8
|
+
vertical: "styles_buttonNext_vertical__3ygkf93 styles_buttonBase__3ygkf90"
|
|
9
|
+
},
|
|
10
|
+
buttonPrev: {
|
|
11
|
+
horizontal: "styles_buttonPrev_horizontal__3ygkf94 styles_buttonBase__3ygkf90",
|
|
12
|
+
vertical: "styles_buttonPrev_vertical__3ygkf95 styles_buttonBase__3ygkf90"
|
|
13
|
+
},
|
|
16
14
|
iconWrapper: "styles_iconWrapper__3ygkf91"
|
|
17
15
|
};
|
|
18
16
|
|
|
@@ -2,14 +2,13 @@ import "./../../../assets/src/theme.css.ts.vanilla-HT3RGHeI.css";
|
|
|
2
2
|
import "./../../../assets/src/components/Carousel/Content/styles.css.ts.vanilla-vey50OEc.css";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Carousel/Content/styles.css.ts
|
|
5
|
-
var orientation = {
|
|
6
|
-
horizontal: "styles_orientation_horizontal__ho48de2",
|
|
7
|
-
vertical: "styles_orientation_vertical__ho48de3"
|
|
8
|
-
};
|
|
9
5
|
var __default__ = {
|
|
10
6
|
contentWrapper: "styles_contentWrapper__ho48de0",
|
|
11
7
|
container: "styles_container__ho48de1",
|
|
12
|
-
orientation
|
|
8
|
+
orientation: {
|
|
9
|
+
horizontal: "styles_orientation_horizontal__ho48de2",
|
|
10
|
+
vertical: "styles_orientation_vertical__ho48de3"
|
|
11
|
+
}
|
|
13
12
|
};
|
|
14
13
|
|
|
15
14
|
//#endregion
|
|
@@ -4,11 +4,10 @@ import "./../../../assets/src/components/Carousel/Item/styles.css.ts.vanilla-DM_
|
|
|
4
4
|
//#region src/components/Carousel/Item/styles.css.ts
|
|
5
5
|
var __default__ = {
|
|
6
6
|
item: "styles_item__ibhmv20",
|
|
7
|
-
orientation
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
vertical: "styles_orientation_vertical__ibhmv22"
|
|
7
|
+
orientation: {
|
|
8
|
+
horizontal: "styles_orientation_horizontal__ibhmv21",
|
|
9
|
+
vertical: "styles_orientation_vertical__ibhmv22"
|
|
10
|
+
}
|
|
12
11
|
};
|
|
13
12
|
|
|
14
13
|
//#endregion
|
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import type { RangeInputSize } from './types';
|
|
2
|
-
export declare const container: string;
|
|
3
|
-
export declare const activeClass: string;
|
|
4
|
-
export declare const sizes: Record<RangeInputSize, string>;
|
|
5
|
-
export declare const textClass: string;
|
|
6
|
-
export declare const inputClass: string;
|
|
7
|
-
export declare const sliderClass: string;
|
|
8
2
|
declare const _default: {
|
|
9
3
|
container: string;
|
|
10
4
|
activeClass: string;
|
|
@@ -5,16 +5,15 @@ import "./../../assets/src/components/RangeInput/styles.css.ts.vanilla-B_0PcDN7.
|
|
|
5
5
|
var __default__ = {
|
|
6
6
|
container: "styles_container__14rk0zx0",
|
|
7
7
|
activeClass: "styles_activeClass__14rk0zx1",
|
|
8
|
-
sizes
|
|
8
|
+
sizes: {
|
|
9
|
+
small: "styles_sizes_small__14rk0zx2",
|
|
10
|
+
medium: "styles_sizes_medium__14rk0zx3",
|
|
11
|
+
large: "styles_sizes_large__14rk0zx4"
|
|
12
|
+
},
|
|
9
13
|
textClass: "styles_textClass__14rk0zx5",
|
|
10
14
|
inputClass: "styles_inputClass__14rk0zx6",
|
|
11
15
|
sliderClass: "styles_sliderClass__14rk0zx7"
|
|
12
16
|
};
|
|
13
|
-
var sizes = {
|
|
14
|
-
small: "styles_sizes_small__14rk0zx2",
|
|
15
|
-
medium: "styles_sizes_medium__14rk0zx3",
|
|
16
|
-
large: "styles_sizes_large__14rk0zx4"
|
|
17
|
-
};
|
|
18
17
|
|
|
19
18
|
//#endregion
|
|
20
19
|
export { __default__ as default };
|
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import type { SliderSize } from './types';
|
|
2
|
-
export declare const root: string;
|
|
3
|
-
export declare const track: string;
|
|
4
|
-
export declare const trackSizes: Record<SliderSize, string>;
|
|
5
|
-
export declare const range: string;
|
|
6
|
-
export declare const thumb: string;
|
|
7
|
-
export declare const thumbSizes: Record<SliderSize, string>;
|
|
8
2
|
declare const _default: {
|
|
9
3
|
root: string;
|
|
10
4
|
track: string;
|
|
@@ -7,18 +7,16 @@ var __default__ = {
|
|
|
7
7
|
track: "styles_track__1af48w01",
|
|
8
8
|
range: "styles_range__1af48w05",
|
|
9
9
|
thumb: "styles_thumb__1af48w06",
|
|
10
|
-
trackSizes
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
medium: "styles_trackSizes_medium__1af48w03",
|
|
21
|
-
large: "styles_trackSizes_large__1af48w04"
|
|
10
|
+
trackSizes: {
|
|
11
|
+
small: "styles_trackSizes_small__1af48w02",
|
|
12
|
+
medium: "styles_trackSizes_medium__1af48w03",
|
|
13
|
+
large: "styles_trackSizes_large__1af48w04"
|
|
14
|
+
},
|
|
15
|
+
thumbSizes: {
|
|
16
|
+
small: "styles_thumbSizes_small__1af48w07",
|
|
17
|
+
medium: "styles_thumbSizes_medium__1af48w08",
|
|
18
|
+
large: "styles_thumbSizes_large__1af48w09"
|
|
19
|
+
}
|
|
22
20
|
};
|
|
23
21
|
|
|
24
22
|
//#endregion
|