@breadstone/mosaik-themes 0.0.31 → 0.0.32
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/Themes/bootstrap.scss +0 -15
- package/Themes/cosmopolitan.scss +260 -579
- package/Themes/fluent.scss +1 -68
- package/Themes/joy.scss +266 -594
- package/Themes/material.scss +0 -15
- package/Themes/retro.scss +269 -593
- package/_index.scss +24 -0
- package/package.json +10 -2
package/_index.scss
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
@use './Themes/bootstrap' as bootstrap;
|
|
2
|
+
@use './Themes/cosmopolitan.scss' as cosmopolitan;
|
|
3
|
+
@use './Themes/fluent' as fluent;
|
|
4
|
+
@use './Themes/joy' as joy;
|
|
5
|
+
@use './Themes/material' as material;
|
|
6
|
+
@use './Themes/retro' as retro;
|
|
7
|
+
@mixin bootstrap-style($radius: bootstrap.$layout-radius, $thickness: bootstrap.$layout-thickness, $space: bootstrap.$layout-space) {
|
|
8
|
+
@include bootstrap.bootstrap-style($radius: bootstrap.$layout-radius, $thickness: bootstrap.$layout-thickness, $space: bootstrap.$layout-space);
|
|
9
|
+
}
|
|
10
|
+
@mixin cosmopolitan-style($radius: cosmopolitan.$layout-radius, $thickness: cosmopolitan.$layout-thickness, $space: cosmopolitan.$layout-space) {
|
|
11
|
+
@include cosmopolitan.cosmopolitan-style($radius: cosmopolitan.$layout-radius, $thickness: cosmopolitan.$layout-thickness, $space: cosmopolitan.$layout-space);
|
|
12
|
+
}
|
|
13
|
+
@mixin fluent-style($radius: fluent.$layout-radius, $thickness: fluent.$layout-thickness, $space: fluent.$layout-space) {
|
|
14
|
+
@include fluent.fluent-style($radius: fluent.$layout-radius, $thickness: fluent.$layout-thickness, $space: fluent.$layout-space);
|
|
15
|
+
}
|
|
16
|
+
@mixin joy-style($radius: joy.$layout-radius, $thickness: joy.$layout-thickness, $space: joy.$layout-space) {
|
|
17
|
+
@include joy.joy-style($radius: joy.$layout-radius, $thickness: joy.$layout-thickness, $space: joy.$layout-space);
|
|
18
|
+
}
|
|
19
|
+
@mixin material-style($radius: material.$layout-radius, $thickness: material.$layout-thickness, $space: material.$layout-space) {
|
|
20
|
+
@include material.material-style($radius: material.$layout-radius, $thickness: material.$layout-thickness, $space: material.$layout-space);
|
|
21
|
+
}
|
|
22
|
+
@mixin retro-style($radius: retro.$layout-radius, $thickness: retro.$layout-thickness, $space: retro.$layout-space) {
|
|
23
|
+
@include retro.retro-style($radius: retro.$layout-radius, $thickness: retro.$layout-thickness, $space: retro.$layout-space);
|
|
24
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-themes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
4
4
|
"description": "Mosaik elements various themes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -9,13 +9,21 @@
|
|
|
9
9
|
"commonjs": "./Index.js",
|
|
10
10
|
"typings": "./Index.d.ts",
|
|
11
11
|
"types": "./Index.d.ts",
|
|
12
|
+
"style": "./_index.scss",
|
|
12
13
|
"customElements": "./custom-elements.json",
|
|
13
14
|
"repository": {
|
|
14
15
|
"url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
|
|
15
16
|
},
|
|
16
17
|
"dependencies": {
|
|
17
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
18
|
+
"@breadstone/mosaik-elements": "^0.0.32",
|
|
18
19
|
"@ctrl/tinycolor": "^4.1.0",
|
|
19
20
|
"tslib": "^2.8.1"
|
|
21
|
+
},
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": "./Index.js",
|
|
25
|
+
"types": "./Index.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"./scss": "./_index.scss"
|
|
20
28
|
}
|
|
21
29
|
}
|