create-berna-stencil 1.0.49 → 1.0.51
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/_tools/modules/updateIncludes.js +1 -1
- package/bin/create.js +2 -2
- package/docs/Components.md +54 -33
- package/docs/Head and SEO.md +33 -6
- package/docs/Styling with SCSS.md +8 -6
- package/package.json +58 -62
- package/src/backend/_core/vendor/composer/autoload_static.php +10 -10
- package/src/backend/_core/vendor/composer/installed.json +6 -6
- package/src/backend/_core/vendor/composer/installed.php +2 -2
- package/src/backend/_core/vendor/graham-campbell/result-type/.gitattributes +9 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/CONTRIBUTING.md +31 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/FUNDING.yml +2 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/SECURITY.md +14 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/workflows/stale.yml +11 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/workflows/tests.yml +40 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/CHANGELOG.md +53 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/LICENSE +21 -21
- package/src/backend/_core/vendor/graham-campbell/result-type/README.md +42 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/composer.json +33 -33
- package/src/backend/_core/vendor/graham-campbell/result-type/phpunit.xml.dist +13 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Error.php +121 -121
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Result.php +69 -69
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Success.php +120 -120
- package/src/backend/_core/vendor/graham-campbell/result-type/tests/ResultTest.php +95 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.gitattributes +13 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/CONTRIBUTING.md +30 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/FUNDING.yml +2 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/SECURITY.md +14 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/workflows/static.yml +40 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/workflows/tests.yml +40 -0
- package/src/backend/_core/vendor/phpoption/phpoption/LICENSE +200 -200
- package/src/backend/_core/vendor/phpoption/phpoption/Makefile +17 -0
- package/src/backend/_core/vendor/phpoption/phpoption/README.md +201 -0
- package/src/backend/_core/vendor/phpoption/phpoption/composer.json +50 -50
- package/src/backend/_core/vendor/phpoption/phpoption/phpstan-baseline.neon +44 -0
- package/src/backend/_core/vendor/phpoption/phpoption/phpstan.neon.dist +7 -0
- package/src/backend/_core/vendor/phpoption/phpoption/phpunit.xml.dist +13 -0
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php +175 -175
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/None.php +136 -136
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/Option.php +434 -434
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/Some.php +169 -169
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php +72 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php +357 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php +153 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php +166 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php +194 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/bootstrap.php +8 -0
- package/src/backend/_core/vendor/phpoption/phpoption/vendor-bin/phpstan/composer.json +8 -0
- package/src/backend/_core/vendor/symfony/polyfill-ctype/Ctype.php +232 -232
- package/src/backend/_core/vendor/symfony/polyfill-ctype/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-ctype/README.md +12 -12
- package/src/backend/_core/vendor/symfony/polyfill-ctype/bootstrap.php +50 -50
- package/src/backend/_core/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -46
- package/src/backend/_core/vendor/symfony/polyfill-ctype/composer.json +38 -38
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Mbstring.php +1077 -1077
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/README.md +13 -13
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -119
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -1397
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -5
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -1489
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/bootstrap.php +171 -171
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -167
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/composer.json +39 -39
- package/src/backend/_core/vendor/symfony/polyfill-php80/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-php80/Php80.php +115 -115
- package/src/backend/_core/vendor/symfony/polyfill-php80/PhpToken.php +106 -106
- package/src/backend/_core/vendor/symfony/polyfill-php80/README.md +25 -25
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -31
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -20
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/bootstrap.php +42 -42
- package/src/backend/_core/vendor/symfony/polyfill-php80/composer.json +37 -37
- package/src/backend/_core/vendor/vlucas/phpdotenv/.editorconfig +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.gitattributes +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/CONTRIBUTING.md +30 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/FUNDING.yml +2 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/SECURITY.md +14 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/workflows/static.yml +40 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/workflows/tests.yml +70 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/LICENSE +30 -30
- package/src/backend/_core/vendor/vlucas/phpdotenv/Makefile +17 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/README.md +370 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/UPGRADING.md +196 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/composer.json +60 -60
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpstan-baseline.neon +157 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpstan.neon.dist +7 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpunit.xml.dist +13 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Dotenv.php +267 -267
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/Loader.php +48 -48
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php +20 -20
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/Resolver.php +65 -65
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Entry.php +59 -59
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php +299 -299
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Lexer.php +58 -58
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Lines.php +127 -127
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Parser.php +53 -53
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php +19 -19
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Value.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php +15 -15
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php +89 -89
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php +80 -80
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php +85 -85
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php +110 -110
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php +48 -48
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php +64 -64
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php +91 -91
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php +17 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php +104 -104
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php +27 -27
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php +107 -107
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php +272 -272
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php +51 -51
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/File/Paths.php +44 -44
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/File/Reader.php +81 -81
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/FileStore.php +72 -72
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php +141 -141
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php +17 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StringStore.php +37 -37
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Util/Regex.php +112 -112
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Util/Str.php +108 -108
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Validator.php +207 -207
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/DotenvTest.php +387 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Loader/LoaderTest.php +86 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/EntryParserTest.php +234 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LexerTest.php +40 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LinesTest.php +53 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/ParserTest.php +98 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ArrayAdapterTest.php +57 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/EnvConstAdapterTest.php +75 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/PutenvAdapterTest.php +52 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ServerConstAdapterTest.php +75 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/RepositoryTest.php +305 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Store/StoreTest.php +141 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/ValidatorTest.php +479 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/.env +5 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/assertions.env +18 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/booleans.env +33 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/commented.env +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/empty.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/example.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/exported.env +7 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/immutable.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/integers.env +17 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/large.env +2 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multibyte.env +3 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiline.env +14 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiple.env +4 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/mutable.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/nested.env +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/quoted.env +11 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/specialchars.env +8 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/unicodevarnames.env +2 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/utf8-with-bom-encoding.env +3 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/windows.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/vendor-bin/phpstan/composer.json +15 -0
- package/src/frontend/components/layouts/includes.njk +1 -0
- package/src/frontend/data/site.json +43 -43
- package/src/frontend/llms.njk +18 -0
- package/src/frontend/robots.njk +8 -0
- package/src/frontend/scss/modules/frameworks/_bootstrap.scss +63 -63
- package/src/frontend/scss/modules/frameworks/_bulma.scss +64 -64
- package/src/frontend/scss/modules/frameworks/_foundation.scss +97 -97
- package/src/frontend/scss/modules/frameworks/_uikit.scss +78 -78
- package/src/frontend/robots.txt +0 -4
|
@@ -6,134 +6,134 @@
|
|
|
6
6
|
|
|
7
7
|
// Imports can be filtered by commenting them
|
|
8
8
|
// Example:
|
|
9
|
-
// @import "
|
|
9
|
+
// @import "foundation-sites/scss/example-foundation-module";
|
|
10
10
|
|
|
11
11
|
//==========================
|
|
12
12
|
// 1️⃣ CORE – Utilities and functions
|
|
13
13
|
// ⚠️ Do not comment these out — required by all other modules
|
|
14
14
|
//==========================
|
|
15
|
-
@import "
|
|
16
|
-
@import "
|
|
17
|
-
@import "
|
|
18
|
-
@import "
|
|
19
|
-
@import "
|
|
20
|
-
@import "
|
|
21
|
-
@import "
|
|
22
|
-
@import "
|
|
23
|
-
@import "
|
|
24
|
-
@import "
|
|
25
|
-
@import "
|
|
15
|
+
@import "foundation-sites/scss/util/util"; // Utility loader
|
|
16
|
+
@import "foundation-sites/scss/util/breakpoint"; // Breakpoint helpers
|
|
17
|
+
@import "foundation-sites/scss/util/color"; // Color functions
|
|
18
|
+
@import "foundation-sites/scss/util/direction"; // RTL/LTR direction
|
|
19
|
+
@import "foundation-sites/scss/util/flex"; // Flex utilities
|
|
20
|
+
@import "foundation-sites/scss/util/math"; // Math functions
|
|
21
|
+
@import "foundation-sites/scss/util/mixins"; // Reusable SCSS mixins
|
|
22
|
+
@import "foundation-sites/scss/util/selector"; // Selector helpers
|
|
23
|
+
@import "foundation-sites/scss/util/typography"; // Typography utilities
|
|
24
|
+
@import "foundation-sites/scss/util/unit"; // Unit conversion
|
|
25
|
+
@import "foundation-sites/scss/util/value"; // Value helpers
|
|
26
26
|
|
|
27
27
|
//==========================
|
|
28
28
|
// 2️⃣ BASE – Reset and global styles
|
|
29
29
|
//==========================
|
|
30
|
-
@import "
|
|
31
|
-
@import "
|
|
30
|
+
@import "foundation-sites/scss/vendor/normalize"; // CSS reset / normalize
|
|
31
|
+
@import "foundation-sites/scss/_global"; // Global base styles
|
|
32
32
|
|
|
33
33
|
//==========================
|
|
34
34
|
// 3️⃣ TYPOGRAPHY
|
|
35
35
|
//==========================
|
|
36
|
-
@import "
|
|
37
|
-
@import "
|
|
38
|
-
@import "
|
|
39
|
-
@import "
|
|
40
|
-
@import "
|
|
36
|
+
@import "foundation-sites/scss/typography/typography"; // Typography loader
|
|
37
|
+
@import "foundation-sites/scss/typography/base"; // Base typography styles
|
|
38
|
+
@import "foundation-sites/scss/typography/helpers"; // Typography helpers
|
|
39
|
+
@import "foundation-sites/scss/typography/alignment"; // Text alignment
|
|
40
|
+
@import "foundation-sites/scss/typography/print"; // Print styles
|
|
41
41
|
|
|
42
42
|
//==========================
|
|
43
43
|
// 4️⃣ GRID – Layout systems
|
|
44
44
|
//==========================
|
|
45
45
|
|
|
46
46
|
// Legacy Float Grid
|
|
47
|
-
@import "
|
|
48
|
-
@import "
|
|
49
|
-
@import "
|
|
50
|
-
@import "
|
|
51
|
-
@import "
|
|
52
|
-
@import "
|
|
53
|
-
@import "
|
|
54
|
-
@import "
|
|
55
|
-
@import "
|
|
47
|
+
@import "foundation-sites/scss/grid/grid"; // Grid loader
|
|
48
|
+
@import "foundation-sites/scss/grid/classes"; // Grid classes
|
|
49
|
+
@import "foundation-sites/scss/grid/column"; // Column styles
|
|
50
|
+
@import "foundation-sites/scss/grid/row"; // Row styles
|
|
51
|
+
@import "foundation-sites/scss/grid/flex-grid"; // Flexbox grid
|
|
52
|
+
@import "foundation-sites/scss/grid/gutter"; // Gutters
|
|
53
|
+
@import "foundation-sites/scss/grid/layout"; // Layout helpers
|
|
54
|
+
@import "foundation-sites/scss/grid/position"; // Position helpers
|
|
55
|
+
@import "foundation-sites/scss/grid/size"; // Size helpers
|
|
56
56
|
|
|
57
57
|
// XY Grid (modern, recommended)
|
|
58
|
-
@import "
|
|
59
|
-
@import "
|
|
60
|
-
@import "
|
|
61
|
-
@import "
|
|
62
|
-
@import "
|
|
63
|
-
@import "
|
|
64
|
-
@import "
|
|
65
|
-
@import "
|
|
66
|
-
@import "
|
|
58
|
+
@import "foundation-sites/scss/xy-grid/xy-grid"; // XY Grid loader
|
|
59
|
+
@import "foundation-sites/scss/xy-grid/grid"; // XY Grid core
|
|
60
|
+
@import "foundation-sites/scss/xy-grid/cell"; // XY Grid cells
|
|
61
|
+
@import "foundation-sites/scss/xy-grid/classes"; // XY Grid classes
|
|
62
|
+
@import "foundation-sites/scss/xy-grid/collapse"; // XY Grid collapse
|
|
63
|
+
@import "foundation-sites/scss/xy-grid/frame"; // XY Grid frame
|
|
64
|
+
@import "foundation-sites/scss/xy-grid/gutters"; // XY Grid gutters
|
|
65
|
+
@import "foundation-sites/scss/xy-grid/layout"; // XY Grid layout
|
|
66
|
+
@import "foundation-sites/scss/xy-grid/position"; // XY Grid position
|
|
67
67
|
|
|
68
68
|
//==========================
|
|
69
69
|
// 5️⃣ FORMS
|
|
70
70
|
//==========================
|
|
71
|
-
@import "
|
|
72
|
-
@import "
|
|
73
|
-
@import "
|
|
74
|
-
@import "
|
|
75
|
-
@import "
|
|
76
|
-
@import "
|
|
77
|
-
@import "
|
|
78
|
-
@import "
|
|
79
|
-
@import "
|
|
80
|
-
@import "
|
|
81
|
-
@import "
|
|
82
|
-
@import "
|
|
71
|
+
@import "foundation-sites/scss/forms/forms"; // Forms loader
|
|
72
|
+
@import "foundation-sites/scss/forms/text"; // Text inputs
|
|
73
|
+
@import "foundation-sites/scss/forms/select"; // Select dropdowns
|
|
74
|
+
@import "foundation-sites/scss/forms/checkbox"; // Checkboxes and radios
|
|
75
|
+
@import "foundation-sites/scss/forms/input-group"; // Input groups
|
|
76
|
+
@import "foundation-sites/scss/forms/fieldset"; // Fieldsets
|
|
77
|
+
@import "foundation-sites/scss/forms/label"; // Form labels
|
|
78
|
+
@import "foundation-sites/scss/forms/help-text"; // Help text
|
|
79
|
+
@import "foundation-sites/scss/forms/error"; // Error states
|
|
80
|
+
@import "foundation-sites/scss/forms/range"; // Range sliders
|
|
81
|
+
@import "foundation-sites/scss/forms/meter"; // Meter element
|
|
82
|
+
@import "foundation-sites/scss/forms/progress"; // Progress element
|
|
83
83
|
|
|
84
84
|
//==========================
|
|
85
85
|
// 6️⃣ COMPONENTS
|
|
86
86
|
//==========================
|
|
87
|
-
@import "
|
|
88
|
-
@import "
|
|
89
|
-
@import "
|
|
90
|
-
@import "
|
|
91
|
-
@import "
|
|
92
|
-
@import "
|
|
93
|
-
@import "
|
|
94
|
-
@import "
|
|
95
|
-
@import "
|
|
96
|
-
@import "
|
|
97
|
-
@import "
|
|
98
|
-
@import "
|
|
99
|
-
@import "
|
|
100
|
-
@import "
|
|
101
|
-
@import "
|
|
102
|
-
@import "
|
|
103
|
-
@import "
|
|
104
|
-
@import "
|
|
105
|
-
@import "
|
|
106
|
-
@import "
|
|
107
|
-
@import "
|
|
108
|
-
@import "
|
|
109
|
-
@import "
|
|
110
|
-
@import "
|
|
111
|
-
@import "
|
|
112
|
-
@import "
|
|
113
|
-
@import "
|
|
114
|
-
@import "
|
|
115
|
-
@import "
|
|
116
|
-
@import "
|
|
117
|
-
@import "
|
|
118
|
-
@import "
|
|
119
|
-
@import "
|
|
120
|
-
@import "
|
|
87
|
+
@import "foundation-sites/scss/components/accordion"; // Accordion
|
|
88
|
+
@import "foundation-sites/scss/components/accordion-menu"; // Accordion menu
|
|
89
|
+
@import "foundation-sites/scss/components/badge"; // Badges
|
|
90
|
+
@import "foundation-sites/scss/components/breadcrumbs"; // Breadcrumbs
|
|
91
|
+
@import "foundation-sites/scss/components/button"; // Buttons
|
|
92
|
+
@import "foundation-sites/scss/components/button-group"; // Button groups
|
|
93
|
+
@import "foundation-sites/scss/components/callout"; // Callout boxes
|
|
94
|
+
@import "foundation-sites/scss/components/card"; // Cards
|
|
95
|
+
@import "foundation-sites/scss/components/close-button"; // Close button
|
|
96
|
+
@import "foundation-sites/scss/components/drilldown"; // Drilldown menu
|
|
97
|
+
@import "foundation-sites/scss/components/dropdown"; // Dropdown
|
|
98
|
+
@import "foundation-sites/scss/components/dropdown-menu"; // Dropdown menu
|
|
99
|
+
@import "foundation-sites/scss/components/flex"; // Flex helpers
|
|
100
|
+
@import "foundation-sites/scss/components/float"; // Float helpers
|
|
101
|
+
@import "foundation-sites/scss/components/label"; // Labels
|
|
102
|
+
@import "foundation-sites/scss/components/media-object"; // Media object
|
|
103
|
+
@import "foundation-sites/scss/components/menu"; // Menu
|
|
104
|
+
@import "foundation-sites/scss/components/menu-icon"; // Menu icon (hamburger)
|
|
105
|
+
@import "foundation-sites/scss/components/off-canvas"; // Off-canvas sidebar
|
|
106
|
+
@import "foundation-sites/scss/components/orbit"; // Orbit carousel
|
|
107
|
+
@import "foundation-sites/scss/components/pagination"; // Pagination
|
|
108
|
+
@import "foundation-sites/scss/components/progress-bar"; // Progress bars
|
|
109
|
+
@import "foundation-sites/scss/components/responsive-embed"; // Responsive embeds
|
|
110
|
+
@import "foundation-sites/scss/components/reveal"; // Reveal modals
|
|
111
|
+
@import "foundation-sites/scss/components/slider"; // Sliders
|
|
112
|
+
@import "foundation-sites/scss/components/sticky"; // Sticky elements
|
|
113
|
+
@import "foundation-sites/scss/components/switch"; // Toggle switches
|
|
114
|
+
@import "foundation-sites/scss/components/table"; // Tables
|
|
115
|
+
@import "foundation-sites/scss/components/tabs"; // Tabs
|
|
116
|
+
@import "foundation-sites/scss/components/thumbnail"; // Thumbnails
|
|
117
|
+
@import "foundation-sites/scss/components/title-bar"; // Title bar
|
|
118
|
+
@import "foundation-sites/scss/components/tooltip"; // Tooltips
|
|
119
|
+
@import "foundation-sites/scss/components/top-bar"; // Top bar navbar
|
|
120
|
+
@import "foundation-sites/scss/components/visibility"; // Visibility helpers
|
|
121
121
|
|
|
122
122
|
//==========================
|
|
123
123
|
// 7️⃣ PROTOTYPE – Utility classes (optional)
|
|
124
124
|
// 💡 Commented by default — uncomment only if you need utility classes
|
|
125
125
|
//==========================
|
|
126
|
-
@import "
|
|
127
|
-
@import "
|
|
128
|
-
@import "
|
|
129
|
-
@import "
|
|
130
|
-
@import "
|
|
131
|
-
@import "
|
|
132
|
-
@import "
|
|
133
|
-
@import "
|
|
134
|
-
@import "
|
|
135
|
-
@import "
|
|
136
|
-
@import "
|
|
137
|
-
@import "
|
|
138
|
-
@import "
|
|
139
|
-
@import "
|
|
126
|
+
@import "foundation-sites/scss/prototype/prototype"; // Prototype loader
|
|
127
|
+
@import "foundation-sites/scss/prototype/arrow"; // Arrow utility
|
|
128
|
+
@import "foundation-sites/scss/prototype/border-box"; // Border box
|
|
129
|
+
@import "foundation-sites/scss/prototype/border-none";// Border none
|
|
130
|
+
@import "foundation-sites/scss/prototype/bordered"; // Bordered
|
|
131
|
+
@import "foundation-sites/scss/prototype/box"; // Box
|
|
132
|
+
@import "foundation-sites/scss/prototype/display"; // Display utilities
|
|
133
|
+
@import "foundation-sites/scss/prototype/font-styling";// Font styling
|
|
134
|
+
@import "foundation-sites/scss/prototype/overflow"; // Overflow
|
|
135
|
+
@import "foundation-sites/scss/prototype/position"; // Position
|
|
136
|
+
@import "foundation-sites/scss/prototype/rounded"; // Rounded corners
|
|
137
|
+
@import "foundation-sites/scss/prototype/shadow"; // Box shadows
|
|
138
|
+
@import "foundation-sites/scss/prototype/spacing"; // Spacing utilities
|
|
139
|
+
@import "foundation-sites/scss/prototype/typography"; // Typography utilities
|
|
@@ -10,101 +10,101 @@
|
|
|
10
10
|
// 1️⃣ CORE – Variables, mixins and base
|
|
11
11
|
// ⚠️ Do not comment these out — required by all other modules
|
|
12
12
|
//==========================
|
|
13
|
-
@import "
|
|
14
|
-
@import "
|
|
15
|
-
@import "
|
|
16
|
-
@import "
|
|
17
|
-
@import "
|
|
18
|
-
@import "
|
|
13
|
+
@import "uikit/src/scss/variables"; // Core variables
|
|
14
|
+
@import "uikit/src/scss/mixins"; // Reusable SCSS mixins
|
|
15
|
+
@import "uikit/src/scss/components/variables"; // Component variables
|
|
16
|
+
@import "uikit/src/scss/components/mixin"; // Component mixins
|
|
17
|
+
@import "uikit/src/scss/components/base"; // Base styles and reset
|
|
18
|
+
@import "uikit/src/scss/components/print"; // Print styles
|
|
19
19
|
|
|
20
20
|
//==========================
|
|
21
21
|
// 2️⃣ LAYOUT
|
|
22
22
|
//==========================
|
|
23
|
-
@import "
|
|
24
|
-
@import "
|
|
25
|
-
@import "
|
|
26
|
-
@import "
|
|
27
|
-
@import "
|
|
28
|
-
@import "
|
|
29
|
-
@import "
|
|
30
|
-
@import "
|
|
23
|
+
@import "uikit/src/scss/components/container"; // Containers
|
|
24
|
+
@import "uikit/src/scss/components/grid"; // Grid system
|
|
25
|
+
@import "uikit/src/scss/components/flex"; // Flexbox utilities
|
|
26
|
+
@import "uikit/src/scss/components/width"; // Width utilities
|
|
27
|
+
@import "uikit/src/scss/components/height"; // Height utilities
|
|
28
|
+
@import "uikit/src/scss/components/column"; // Column layout
|
|
29
|
+
@import "uikit/src/scss/components/section"; // Sections
|
|
30
|
+
@import "uikit/src/scss/components/position"; // Position utilities
|
|
31
31
|
|
|
32
32
|
//==========================
|
|
33
33
|
// 3️⃣ TYPOGRAPHY
|
|
34
34
|
//==========================
|
|
35
|
-
@import "
|
|
36
|
-
@import "
|
|
37
|
-
@import "
|
|
38
|
-
@import "
|
|
39
|
-
@import "
|
|
40
|
-
@import "
|
|
41
|
-
@import "
|
|
42
|
-
@import "
|
|
35
|
+
@import "uikit/src/scss/components/heading"; // Headings
|
|
36
|
+
@import "uikit/src/scss/components/text"; // Text utilities
|
|
37
|
+
@import "uikit/src/scss/components/link"; // Link styles
|
|
38
|
+
@import "uikit/src/scss/components/list"; // Lists
|
|
39
|
+
@import "uikit/src/scss/components/description-list"; // Description lists
|
|
40
|
+
@import "uikit/src/scss/components/divider"; // Dividers
|
|
41
|
+
@import "uikit/src/scss/components/leader"; // Leader lines
|
|
42
|
+
@import "uikit/src/scss/components/article"; // Article styles
|
|
43
43
|
|
|
44
44
|
//==========================
|
|
45
45
|
// 4️⃣ FORMS
|
|
46
46
|
//==========================
|
|
47
|
-
@import "
|
|
48
|
-
@import "
|
|
47
|
+
@import "uikit/src/scss/components/form"; // Form styles
|
|
48
|
+
@import "uikit/src/scss/components/form-range"; // Range sliders
|
|
49
49
|
|
|
50
50
|
//==========================
|
|
51
51
|
// 5️⃣ COMPONENTS
|
|
52
52
|
//==========================
|
|
53
|
-
@import "
|
|
54
|
-
@import "
|
|
55
|
-
@import "
|
|
56
|
-
@import "
|
|
57
|
-
@import "
|
|
58
|
-
@import "
|
|
59
|
-
@import "
|
|
60
|
-
@import "
|
|
61
|
-
@import "
|
|
62
|
-
@import "
|
|
63
|
-
@import "
|
|
64
|
-
@import "
|
|
65
|
-
@import "
|
|
66
|
-
@import "
|
|
67
|
-
@import "
|
|
68
|
-
@import "
|
|
69
|
-
@import "
|
|
70
|
-
@import "
|
|
71
|
-
@import "
|
|
72
|
-
@import "
|
|
73
|
-
@import "
|
|
74
|
-
@import "
|
|
75
|
-
@import "
|
|
76
|
-
@import "
|
|
77
|
-
@import "
|
|
78
|
-
@import "
|
|
79
|
-
@import "
|
|
80
|
-
@import "
|
|
81
|
-
@import "
|
|
82
|
-
@import "
|
|
83
|
-
@import "
|
|
84
|
-
@import "
|
|
85
|
-
@import "
|
|
86
|
-
@import "
|
|
87
|
-
@import "
|
|
88
|
-
@import "
|
|
89
|
-
@import "
|
|
90
|
-
@import "
|
|
91
|
-
@import "
|
|
92
|
-
@import "
|
|
93
|
-
@import "
|
|
94
|
-
@import "
|
|
95
|
-
@import "
|
|
96
|
-
@import "
|
|
53
|
+
@import "uikit/src/scss/components/accordion"; // Accordion
|
|
54
|
+
@import "uikit/src/scss/components/alert"; // Alerts
|
|
55
|
+
@import "uikit/src/scss/components/badge"; // Badges
|
|
56
|
+
@import "uikit/src/scss/components/breadcrumb"; // Breadcrumbs
|
|
57
|
+
@import "uikit/src/scss/components/button"; // Buttons
|
|
58
|
+
@import "uikit/src/scss/components/card"; // Cards
|
|
59
|
+
@import "uikit/src/scss/components/close"; // Close button
|
|
60
|
+
@import "uikit/src/scss/components/comment"; // Comment sections
|
|
61
|
+
@import "uikit/src/scss/components/countdown"; // Countdown timer
|
|
62
|
+
@import "uikit/src/scss/components/cover"; // Cover images
|
|
63
|
+
@import "uikit/src/scss/components/drop"; // Drop component
|
|
64
|
+
@import "uikit/src/scss/components/dropbar"; // Dropbar
|
|
65
|
+
@import "uikit/src/scss/components/dropdown"; // Dropdowns
|
|
66
|
+
@import "uikit/src/scss/components/dropnav"; // Drop navigation
|
|
67
|
+
@import "uikit/src/scss/components/icon"; // Icons
|
|
68
|
+
@import "uikit/src/scss/components/iconnav"; // Icon navigation
|
|
69
|
+
@import "uikit/src/scss/components/label"; // Labels
|
|
70
|
+
@import "uikit/src/scss/components/lightbox"; // Lightbox
|
|
71
|
+
@import "uikit/src/scss/components/marker"; // Markers
|
|
72
|
+
@import "uikit/src/scss/components/modal"; // Modals
|
|
73
|
+
@import "uikit/src/scss/components/nav"; // Navigation
|
|
74
|
+
@import "uikit/src/scss/components/navbar"; // Navbar
|
|
75
|
+
@import "uikit/src/scss/components/notification"; // Notifications
|
|
76
|
+
@import "uikit/src/scss/components/offcanvas"; // Off-canvas
|
|
77
|
+
@import "uikit/src/scss/components/overlay"; // Overlays
|
|
78
|
+
@import "uikit/src/scss/components/pagination"; // Pagination
|
|
79
|
+
@import "uikit/src/scss/components/placeholder"; // Placeholder boxes
|
|
80
|
+
@import "uikit/src/scss/components/progress"; // Progress bars
|
|
81
|
+
@import "uikit/src/scss/components/search"; // Search component
|
|
82
|
+
@import "uikit/src/scss/components/slidenav"; // Slideshow navigation
|
|
83
|
+
@import "uikit/src/scss/components/slider"; // Slider
|
|
84
|
+
@import "uikit/src/scss/components/slideshow"; // Slideshow
|
|
85
|
+
@import "uikit/src/scss/components/sortable"; // Sortable lists
|
|
86
|
+
@import "uikit/src/scss/components/spinner"; // Spinners
|
|
87
|
+
@import "uikit/src/scss/components/sticky"; // Sticky elements
|
|
88
|
+
@import "uikit/src/scss/components/subnav"; // Sub navigation
|
|
89
|
+
@import "uikit/src/scss/components/svg"; // SVG utilities
|
|
90
|
+
@import "uikit/src/scss/components/switcher"; // Switcher component
|
|
91
|
+
@import "uikit/src/scss/components/tab"; // Tabs
|
|
92
|
+
@import "uikit/src/scss/components/table"; // Tables
|
|
93
|
+
@import "uikit/src/scss/components/thumbnav"; // Thumbnail navigation
|
|
94
|
+
@import "uikit/src/scss/components/tile"; // Tiles
|
|
95
|
+
@import "uikit/src/scss/components/tooltip"; // Tooltips
|
|
96
|
+
@import "uikit/src/scss/components/totop"; // To-top button
|
|
97
97
|
|
|
98
98
|
//==========================
|
|
99
99
|
// 6️⃣ UTILITIES
|
|
100
100
|
//==========================
|
|
101
|
-
@import "
|
|
102
|
-
@import "
|
|
103
|
-
@import "
|
|
104
|
-
@import "
|
|
105
|
-
@import "
|
|
106
|
-
@import "
|
|
107
|
-
@import "
|
|
108
|
-
@import "
|
|
109
|
-
@import "
|
|
110
|
-
@import "
|
|
101
|
+
@import "uikit/src/scss/components/align"; // Alignment utilities
|
|
102
|
+
@import "uikit/src/scss/components/animation"; // Animation utilities
|
|
103
|
+
@import "uikit/src/scss/components/background"; // Background utilities
|
|
104
|
+
@import "uikit/src/scss/components/dotnav"; // Dot navigation
|
|
105
|
+
@import "uikit/src/scss/components/inverse"; // Inverse color mode
|
|
106
|
+
@import "uikit/src/scss/components/margin"; // Margin utilities
|
|
107
|
+
@import "uikit/src/scss/components/padding"; // Padding utilities
|
|
108
|
+
@import "uikit/src/scss/components/transition"; // Transition utilities
|
|
109
|
+
@import "uikit/src/scss/components/utility"; // General utilities
|
|
110
|
+
@import "uikit/src/scss/components/visibility"; // Visibility utilities
|
package/src/frontend/robots.txt
DELETED