@bu0nq/scss.mixin.modifiers 0.1.0

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/.editorconfig ADDED
@@ -0,0 +1,17 @@
1
+ root = true
2
+
3
+ [*]
4
+ end_of_line = lf
5
+ indent_size = 4
6
+ indent_style = space
7
+ insert_final_newline = true
8
+ trim_trailing_whitespace = true
9
+
10
+ [*.json]
11
+ indent_size = 2
12
+
13
+ [*.scss]
14
+ indent_size = 2
15
+
16
+ [*.md]
17
+ trim_trailing_whitespace = false
package/.gitattributes ADDED
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # SCSS.Mixin.Modifiers
2
+
3
+ Package for integrating `SCSS.Mixins.Modifiers` in a web environment.
4
+
5
+ ![npm](https://img.shields.io/npm/v/@bu0nq/scss.mixin.modifiers?style=for-the-badge)
6
+ ![npm](https://img.shields.io/npm/dt/@bu0nq/scss.mixin.modifiers?style=for-the-badge)
7
+ ___
8
+
9
+ ## Installation
10
+
11
+ This package can be deployed automatically using NPM:
12
+
13
+ ```
14
+ npm i @bu0nq/scss.mixin.modifiers
15
+ ```
package/modifiers.scss ADDED
@@ -0,0 +1,17 @@
1
+ // Rounded
2
+ @forward "rounded/rounded-xs";
3
+ @forward "rounded/rounded-sm";
4
+ @forward "rounded/rounded-md";
5
+ @forward "rounded/rounded-base";
6
+ @forward "rounded/rounded-lg";
7
+ @forward "rounded/rounded-xl";
8
+ @forward "rounded/rounded-xxl";
9
+
10
+ // Size
11
+ @forward "size/size-xs";
12
+ @forward "size/size-sm";
13
+ @forward "size/size-md";
14
+ @forward "size/size-base";
15
+ @forward "size/size-lg";
16
+ @forward "size/size-xl";
17
+ @forward "size/size-xxl";
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@bu0nq/scss.mixin.modifiers",
3
+ "version": "0.1.0",
4
+ "description": "Package for integrating SCSS.Mixin.Modifiers",
5
+ "main": "modifiers.scss",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/bu0nq/scss.mixin.modifiers.git"
12
+ },
13
+ "keywords": [
14
+ "scss",
15
+ "mixins",
16
+ "modifiers"
17
+ ],
18
+ "author": {
19
+ "name": "bu0nq",
20
+ "email": "hello@bu0nq.ru"
21
+ },
22
+ "license": "MIT",
23
+ "bugs": {
24
+ "url": "https://github.com/bu0nq/scss.mixin.modifiers/issues"
25
+ },
26
+ "homepage": "https://github.com/bu0nq/scss.mixin.modifiers#readme",
27
+ "publishConfig": {
28
+ "access": "public"
29
+ }
30
+ }
@@ -0,0 +1,9 @@
1
+ @mixin rounded-base {
2
+ &_rounded-base {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-rounded="base"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin rounded-lg {
2
+ &_rounded-lg {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-rounded="lg"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin rounded-md {
2
+ &_rounded-md {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-rounded="md"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin rounded-sm {
2
+ &_rounded-sm {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-rounded="sm"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin rounded-xl {
2
+ &_rounded-xl {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-rounded="xl"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin rounded-xs {
2
+ &_rounded-xs {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-rounded="xs"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin rounded-xxl {
2
+ &_rounded-xxl {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-rounded="xxl"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin size-base {
2
+ &_size-base {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-size="base"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin size-lg {
2
+ &_size-lg {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-size="lg"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin size-md {
2
+ &_size-md {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-size="md"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin size-sm {
2
+ &_size-sm {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-size="sm"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin size-xl {
2
+ &_size-xl {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-size="xl"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin size-xs {
2
+ &_size-xs {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-size="xs"]) {
7
+ @content;
8
+ }
9
+ }
@@ -0,0 +1,9 @@
1
+ @mixin size-xxl {
2
+ &_size-xxl {
3
+ @content;
4
+ }
5
+
6
+ &:is([data-modifier-size="xxl"]) {
7
+ @content;
8
+ }
9
+ }