Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Релиз Sassify v8.1.1 (#17)
Browse files Browse the repository at this point in the history
* Переместил исходники сетки v3.3.6 в отдельную папку
* Начальная реализация Grid-v4
* Удалил все файлы Grid-v3
* Добавил новую сетку из Bootstrap 4.6.2
* Обновил версию пакета до 8.1.1
* Обновил данные в CHANGELOG.md
  • Loading branch information
therteenten committed May 27, 2023
1 parent fa34439 commit 9f37e10
Show file tree
Hide file tree
Showing 153 changed files with 1,143 additions and 906 deletions.
34 changes: 17 additions & 17 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"files.exclude": {
"node_modules/": true,
"package-lock.json": true,
".github": true,
".vscode": true,
".gitignore": true,
".npmrc": true,
"CHANGELOG.md": true,
"CODE_OF_CONDUCT.md": true,
"CODEOWNERS": true,
"CONTRIBUTING.md": true,
"LICENSE": true,
"README.md": true,
"*.map": true,
".editorconfig": true,
".npmignore": true,
".docs": true
"node_modules/": false,
"package-lock.json": false,
".github": false,
".vscode": false,
".gitignore": false,
".npmrc": false,
"CHANGELOG.md": false,
"CODE_OF_CONDUCT.md": false,
"CODEOWNERS": false,
"CONTRIBUTING.md": false,
"LICENSE": false,
"README.md": false,
"*.map": false,
".editorconfig": false,
".npmignore": false,
".docs": false
},
"npm-scripts.showStartNotification": false,
"workspace.isHidden": true,
"workspace.isHidden": false,
"workspace.disableCounter": true,
"workspace.disableColoring": false,
"workspace.alwaysShowToggle": true,
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v8.1.1
- Реализация сетки Bootstrap 4 (#16)
- Удалил старую реализацию сетки из Bootstrap 3
- Добавил функцию `color-common` (#15)
- Доработал вывод ошибок в функции `map-deep-get`

## v8.1.0
- Обновил версию пакета до 8.1.0
- Добавил Bootstrap Grid в проект (#8)
Expand Down
31 changes: 29 additions & 2 deletions _test.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
@use 'index.scss' as * with (
$setting--strict-mode: false
$setting--strict-mode: false,
$dvalues--grid-class-names: (
container: 'container',
container-fluid: 'container-fluid',
row: 'row',
no-gutters: 'no-gutters',
col: 'col',
cols: 'cols',
order: 'order',
offset: 'offset'
),
$dvalues--grid-generate-minimal-reset: false,
$dvalues--grid-columns: 12,
$dvalues--grid-gutter-width: 30px,
$dvalues--grid-row-columns: 6,
$dvalues--grid-container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1140px
),
$dvalues--grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px
)
);


@include make-grid();
2 changes: 1 addition & 1 deletion common/_check.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// Полезно для проверки установки пакета Sassify в проект.
/// ---
/// @name check
/// @group Commons
/// @group commons
/// @since 8.0.0
/// @access public
/// @author Haba Kudzaev (therteenten)
Expand Down
4 changes: 2 additions & 2 deletions common/color/apple-hig/_ios.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--ios
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Apple Inc.
Expand Down Expand Up @@ -45,7 +45,7 @@ $color--ios: (
);

/// @name color--ios-dark
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Apple Inc.
Expand Down
4 changes: 2 additions & 2 deletions common/color/apple-hig/_macos.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--macos
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Apple Inc.
Expand Down Expand Up @@ -35,7 +35,7 @@ $color--macos: (
);

/// @name color--macos-dark
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Apple Inc.
Expand Down
2 changes: 1 addition & 1 deletion common/color/apple-hig/_watchos.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--watchos
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Apple Inc.
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_amber.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-amber
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_blue-grey.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-blue-grey
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_blue.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-blue
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_brown.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-brown
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_cyan.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-cyan
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_deep-orange.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-deep-orange
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_deep-purple.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-deep-purple
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_green.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-green
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_grey.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-grey
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_indigo.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-indigo
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_light-blue.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-light-blue
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_light-green.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-light-green
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_lime.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-lime
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_orange.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-orange
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_pink.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-pink
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_purple.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-purple
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_red.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-red
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_teal.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-teal
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/material-design/_yellow.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--md-yellow
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Google
Expand Down
2 changes: 1 addition & 1 deletion common/color/microsoft-windows/_index.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @name color--windows
/// @group ColorPalette
/// @group color-palette
/// @since 8.0.0
/// @access public
/// @author Microsoft Corporation
Expand Down

0 comments on commit 9f37e10

Please sign in to comment.