@acorex/styles 20.2.0-next.20 → 20.2.0-next.22
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/icons/fontawesome/_variables.scss +4 -0
- package/icons/fontawesome/index.scss +9 -0
- package/icons/huge/huge-bulk/_variables.scss +3 -0
- package/icons/huge/huge-bulk/index.scss +9 -0
- package/icons/huge/huge-duotone/_variables.scss +3 -0
- package/icons/huge/huge-duotone/index.scss +9 -0
- package/icons/huge/huge-solid-rounded/_variables.scss +3 -0
- package/icons/huge/huge-solid-rounded/index.scss +9 -0
- package/icons/huge/huge-solid-sharp/_variables.scss +3 -0
- package/icons/huge/huge-solid-sharp/index.scss +9 -0
- package/icons/huge/huge-solid-standard/_variables.scss +3 -0
- package/icons/huge/huge-solid-standard/index.scss +9 -0
- package/icons/huge/huge-stroke-rounded/_variables.scss +3 -0
- package/icons/huge/huge-stroke-rounded/index.scss +9 -0
- package/icons/huge/huge-stroke-sharp/_variables.scss +3 -0
- package/icons/huge/huge-stroke-sharp/index.scss +9 -0
- package/icons/huge/huge-stroke-standard/_variables.scss +4 -1
- package/icons/huge/huge-stroke-standard/index.scss +9 -0
- package/icons/huge/huge-twotone/_variables.scss +3 -0
- package/icons/huge/huge-twotone/index.scss +9 -0
- package/icons/material/_variables.scss +3 -0
- package/icons/material/index.scss +9 -0
- package/package.json +2 -2
- package/tailwind-base.js +1 -0
- package/variables/_colors.scss +1 -1
@@ -1,4 +1,5 @@
|
|
1
1
|
$ax-icon-more-horizontal: '\f141';
|
2
|
+
$ax-icon-more-horizontal: '\f141';
|
2
3
|
$ax-icon-more-horizontal-after: '';
|
3
4
|
|
4
5
|
$ax-icon-more-vertical: '\f142';
|
@@ -219,3 +220,6 @@ $ax-icon-minimize-after: '';
|
|
219
220
|
|
220
221
|
$ax-icon-maximize: '\f31d';
|
221
222
|
$ax-icon-maximize-after: '';
|
223
|
+
|
224
|
+
$ax-icon-code: '\f121';
|
225
|
+
$ax-icon-code-after: '';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
$ax-icon-more-horizontal: '搽'; //more-horizontal
|
1
|
+
$ax-icon-code: '垨'; //source-code$ax-icon-more-horizontal: '搽'; //more-horizontal
|
2
2
|
$ax-icon-more-horizontal-after: ''; //more-horizontal
|
3
3
|
|
4
4
|
$ax-icon-more-vertical: '摅'; //more-vertical
|
@@ -204,3 +204,6 @@ $ax-icon-plus-after: ''; //add-01
|
|
204
204
|
|
205
205
|
$ax-icon-trash: '弸'; //delete-02
|
206
206
|
$ax-icon-trash-after: ''; //delete-02
|
207
|
+
|
208
|
+
$ax-icon-code: '柇'; //source-code
|
209
|
+
$ax-icon-code-after: ''; //source-code
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@acorex/styles",
|
3
|
-
"version": "20.2.0-next.
|
3
|
+
"version": "20.2.0-next.22",
|
4
4
|
"main": "index.js",
|
5
5
|
"author": "Ali Safari",
|
6
6
|
"license": "ISC",
|
7
7
|
"peerDependencies": {
|
8
8
|
"animated-tailwindcss": ">=4.0.0",
|
9
|
-
"tailwindcss": ">=3.4.
|
9
|
+
"tailwindcss": ">=3.4.17"
|
10
10
|
}
|
11
11
|
}
|
package/tailwind-base.js
CHANGED