@minvws/manon-themes 16.3.0-beta.2 → 16.3.0-beta.6
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/basic-bold/components/accordion.scss +9 -0
- package/basic-bold/components/filter.scss +9 -0
- package/basic-bold/components/icon.scss +36 -1
- package/basic-bold/components/sidemenu.scss +7 -0
- package/basic-bold/fonts/OpenSans/OpenSans-Italic.woff2.license +2 -0
- package/basic-bold/fonts/OpenSans/OpenSans-Regular.woff2.license +2 -0
- package/basic-bold/fonts/OpenSans/OpenSans-SemiBold.woff2.license +2 -0
- package/basic-bold/fonts/OpenSans/OpenSans-SemiBoldItalic.woff2.license +2 -0
- package/{soft/fonts/icons/manon-soft-icons-0.3.ttf → basic-bold/fonts/icons/manon-basic-bold-icons-0.3.eot} +0 -0
- package/basic-bold/fonts/tabler-icons/_glyphs.scss +4912 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.eot +0 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.eot.license +2 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.ttf +0 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.ttf.license +2 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.woff +0 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.woff.license +2 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.woff2 +0 -0
- package/basic-bold/fonts/tabler-icons/tabler-icons.woff2.license +2 -0
- package/basic-bold/fonts.scss +6 -6
- package/basic-bold/theme.scss +3 -3
- package/package.json +7 -5
- package/soft/components/accordion.scss +9 -0
- package/soft/components/filter.scss +9 -0
- package/soft/components/icon.scss +36 -1
- package/soft/components/sidemenu.scss +9 -0
- package/soft/fonts/Neuton/Neuton-Bold.woff2.license +3 -0
- package/soft/fonts/Neuton/Neuton-Italic.woff2.license +3 -0
- package/soft/fonts/OpenSans/OpenSans-Italic.woff2.license +2 -0
- package/soft/fonts/OpenSans/OpenSans-Regular.woff2.license +2 -0
- package/soft/fonts/OpenSans/OpenSans-SemiBold.woff2.license +2 -0
- package/soft/fonts/OpenSans/OpenSans-SemiBoldItalic.woff2.license +2 -0
- package/soft/fonts/tabler-icons/_glyphs.scss +4912 -0
- package/soft/fonts/tabler-icons/tabler-icons.eot +0 -0
- package/soft/fonts/tabler-icons/tabler-icons.eot.license +2 -0
- package/soft/fonts/tabler-icons/tabler-icons.ttf +0 -0
- package/soft/fonts/tabler-icons/tabler-icons.ttf.license +2 -0
- package/soft/fonts/tabler-icons/tabler-icons.woff +0 -0
- package/soft/fonts/tabler-icons/tabler-icons.woff.license +2 -0
- package/soft/fonts/tabler-icons/tabler-icons.woff2 +0 -0
- package/soft/fonts/tabler-icons/tabler-icons.woff2.license +2 -0
- package/soft/fonts.scss +6 -6
- package/soft/theme.scss +5 -4
- package/basic-bold/icons.scss +0 -14
- package/soft/components/background-color-offset.scss +0 -9
- package/soft/fonts/icons/manon-soft-icons-0.3.svg +0 -13
- package/soft/fonts/icons/manon-soft-icons-0.3.woff +0 -0
- package/soft/icons.scss +0 -14
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/basic-bold/fonts.scss
CHANGED
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
|
|
38
38
|
/* Icon font */
|
|
39
39
|
@font-face {
|
|
40
|
-
font-family: "
|
|
40
|
+
font-family: "tabler-icons";
|
|
41
41
|
font-weight: normal;
|
|
42
42
|
font-style: normal;
|
|
43
43
|
font-display: var(--text-icon-font-display, block);
|
|
44
|
-
src: url(
|
|
45
|
-
src:
|
|
46
|
-
url(
|
|
47
|
-
url(
|
|
48
|
-
url(
|
|
44
|
+
src: url('#{variables.$font-path}/tabler-icons/tabler-icons.eot?v2.44.0');
|
|
45
|
+
src: url('#{variables.$font-path}/tabler-icons/tabler-icons.eot?#iefix-v2.44.0') format('embedded-opentype'),
|
|
46
|
+
url('#{variables.$font-path}/tabler-icons/tabler-icons.woff2?v2.44.0') format('woff2'),
|
|
47
|
+
url('#{variables.$font-path}/tabler-icons/tabler-icons.woff?') format('woff'),
|
|
48
|
+
url('#{variables.$font-path}/tabler-icons/tabler-icons.ttf?v2.44.0') format('truetype');
|
|
49
49
|
}
|
package/basic-bold/theme.scss
CHANGED
|
@@ -3,9 +3,8 @@
|
|
|
3
3
|
/* Variables */
|
|
4
4
|
@forward "variables";
|
|
5
5
|
|
|
6
|
-
/* Fonts
|
|
6
|
+
/* Fonts */
|
|
7
7
|
@use "fonts";
|
|
8
|
-
@use "icons";
|
|
9
8
|
|
|
10
9
|
/* Styling on the highest level */
|
|
11
10
|
@use "application-base";
|
|
@@ -23,8 +22,9 @@
|
|
|
23
22
|
@use "layout/section";
|
|
24
23
|
|
|
25
24
|
/* Components */
|
|
25
|
+
@use "components/accordion";
|
|
26
26
|
@use "components/breadcrumb-bar";
|
|
27
|
-
|
|
27
|
+
@use "components/filter";
|
|
28
28
|
@use "components/icon";
|
|
29
29
|
@use "components/logo";
|
|
30
30
|
@use "components/pagination";
|
package/package.json
CHANGED
|
@@ -6,20 +6,22 @@
|
|
|
6
6
|
"**/*.ico",
|
|
7
7
|
"**/*.png",
|
|
8
8
|
"**/*.svg",
|
|
9
|
+
"**/*.eot",
|
|
9
10
|
"**/*.ttf",
|
|
10
11
|
"**/*.woff",
|
|
11
|
-
"**/*.woff2"
|
|
12
|
+
"**/*.woff2",
|
|
13
|
+
"**/*.license"
|
|
12
14
|
],
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"sass": ">=1.23",
|
|
17
|
+
"@minvws/manon": "16.3.0-beta.6"
|
|
16
18
|
},
|
|
17
19
|
"repository": {
|
|
18
20
|
"type": "git",
|
|
19
21
|
"url": "https://github.com/minvws/nl-rdo-manon.git",
|
|
20
22
|
"directory": "themes"
|
|
21
23
|
},
|
|
22
|
-
"version": "16.3.0-beta.
|
|
24
|
+
"version": "16.3.0-beta.6",
|
|
23
25
|
"scripts": {
|
|
24
26
|
"npm-version": "npm version"
|
|
25
27
|
}
|
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
/* Icon */
|
|
2
2
|
|
|
3
|
+
@use "../fonts/tabler-icons/glyphs";
|
|
4
|
+
@use "@minvws/manon/mixins/icon";
|
|
5
|
+
|
|
6
|
+
$glyphs: (
|
|
7
|
+
"ascending": glyphs.$ti-icon-caret-up-filled,
|
|
8
|
+
"check": glyphs.$ti-icon-check,
|
|
9
|
+
"chevron-down": glyphs.$ti-icon-chevron-down,
|
|
10
|
+
"chevron-left": glyphs.$ti-icon-chevron-left,
|
|
11
|
+
"chevron-light-down": glyphs.$ti-icon-chevron-compact-down,
|
|
12
|
+
"chevron-light-left": glyphs.$ti-icon-chevron-compact-left,
|
|
13
|
+
"chevron-light-right": glyphs.$ti-icon-chevron-compact-right,
|
|
14
|
+
"chevron-light-up": glyphs.$ti-icon-chevron-compact-up,
|
|
15
|
+
"chevron-right": glyphs.$ti-icon-chevron-right,
|
|
16
|
+
"chevron-up": glyphs.$ti-icon-chevron-up,
|
|
17
|
+
"close": glyphs.$ti-icon-x,
|
|
18
|
+
"descending": glyphs.$ti-icon-caret-down-filled,
|
|
19
|
+
"download": glyphs.$ti-icon-download,
|
|
20
|
+
"hamburger": glyphs.$ti-icon-menu-2,
|
|
21
|
+
"heart": glyphs.$ti-icon-heart,
|
|
22
|
+
"home": glyphs.$ti-icon-home,
|
|
23
|
+
"lock-closed": glyphs.$ti-icon-lock,
|
|
24
|
+
"on-off": glyphs.$ti-icon-power,
|
|
25
|
+
"outgoing": glyphs.$ti-icon-arrow-up-right,
|
|
26
|
+
"questionmark": glyphs.$ti-icon-question-mark,
|
|
27
|
+
"reset": glyphs.$ti-icon-refresh,
|
|
28
|
+
"search": glyphs.$ti-icon-search,
|
|
29
|
+
"smartphone": glyphs.$ti-icon-device-mobile,
|
|
30
|
+
"sort": glyphs.$ti-icon-caret-up-down-filled,
|
|
31
|
+
"to-top": glyphs.$ti-icon-arrow-bar-to-up,
|
|
32
|
+
"trash": glyphs.$ti-icon-trash,
|
|
33
|
+
"user": glyphs.$ti-icon-user,
|
|
34
|
+
);
|
|
35
|
+
|
|
3
36
|
:root {
|
|
4
|
-
--icon-font-family: "
|
|
37
|
+
--icon-font-family: "tabler-icons";
|
|
5
38
|
}
|
|
39
|
+
|
|
40
|
+
@include icon.define-icons($glyphs);
|