archcss 1.0.0 → 2.0.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/changelog +76 -0
- package/css/@fontawesome/css/{fontawessome.css → fontawesome.css} +37 -4
- package/css/@fontawesome/css/{fontawessome.min.css → fontawesome.min.css} +3 -3
- package/css/@fontawesome/js/all.js +275 -231
- package/css/@fontawesome/js/all.min.js +2 -2
- package/css/@fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/css/@fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/css/@fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/css/@fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/css/@fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/css/@fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/css/@fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/css/@fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/css/@googleapis/fonts.min.css +1 -1
- package/css/arch.dev.css +32231 -4541
- package/css/arch.min.css +2 -2
- package/css/{arch.css → architect.css} +3 -3
- package/index.js +2 -2
- package/js/dom.js +527 -398
- package/package.json +7 -18
- package/readme.md +50 -6
- /package/css/@fontawesome/{license → LICENSE.txt} +0 -0
package/changelog
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
1.0.0
|
|
2
|
+
**Full Changelog**: https://github.com/archcss-dev/archcss/commits/v1.0.0
|
|
3
|
+
|
|
4
|
+
2.0
|
|
5
|
+
[css]
|
|
6
|
+
- new folders structure
|
|
7
|
+
- new gradient synthax `gradient`-<color_1>-<color_2>-<color_3>
|
|
8
|
+
- new radius synthax rounnded-<pill|full|1|2|3|4|5|6>
|
|
9
|
+
|
|
10
|
+
- add 12 sass brand colors
|
|
11
|
+
- add 3 elementor brand colors
|
|
12
|
+
- add `scrollbar`-<0>
|
|
13
|
+
- add `fancy` option as class for table
|
|
14
|
+
- add `slate` color
|
|
15
|
+
- add `font-style reset` by d-none
|
|
16
|
+
|
|
17
|
+
- now support for flex order as [items-<order>] (from `1` to `12`)
|
|
18
|
+
- now support auto color on simple brand class
|
|
19
|
+
- now support auto uppercase and center for buttons
|
|
20
|
+
- now support for elements visibility
|
|
21
|
+
- now support <h1...6> `class` similar to heading title
|
|
22
|
+
|
|
23
|
+
- remove `flex-span` class to [flexspan]
|
|
24
|
+
- remove `bc`-<color> class to `brand-color`-<brand_name>-<color_number>
|
|
25
|
+
- remove `border` as bordered class to `border`-<all>
|
|
26
|
+
- remove `shadow` class to [box-shadow]
|
|
27
|
+
- remove `rounded`-<sm|md|lg|xl>
|
|
28
|
+
- remove shadow on `translate`-<top|left|bottom|right>
|
|
29
|
+
- remove litterals gap (narrow, small, normal, large, wide)
|
|
30
|
+
|
|
31
|
+
- update Font Awesome to 6.5.1
|
|
32
|
+
- update generic `b` and `em` font-weight
|
|
33
|
+
- update naming list-style-type as class
|
|
34
|
+
- update `-row` elements (width: 100%)
|
|
35
|
+
- update `-row` elements for mobile-first
|
|
36
|
+
- update <hidden> class
|
|
37
|
+
- update <divider> (add shadow, add opacity)
|
|
38
|
+
- update <rounded> (now support from `1` to `12`px )
|
|
39
|
+
- update `scrollbar` width to `3px`
|
|
40
|
+
- update `grid` (gutter)
|
|
41
|
+
- update `table` (width, padding) and `td`, `th` (border)
|
|
42
|
+
- update `spacing` rest (apply to responsive)
|
|
43
|
+
- update `positions` rest (apply to responsive)
|
|
44
|
+
- update `spacing` (from .25rem to 3rem)
|
|
45
|
+
- update `elements` weight (font-weight)
|
|
46
|
+
- update `font-*` utility supported size from `7px` to `96px` as common word-processor
|
|
47
|
+
- update global `font-size` for `h1` to `h6`
|
|
48
|
+
- update global `font-size` classname `fs-`<size> instead of `font`-<size>
|
|
49
|
+
|
|
50
|
+
- replace `flex`-<length> with `flexspan`-<length>
|
|
51
|
+
- replace `flex-col-reverse` with [flex-column-reverse]
|
|
52
|
+
- replace `flex flex-col-reverse` with [flex-column-reverse]
|
|
53
|
+
- replace `flex flex-column` twith [flex-column]
|
|
54
|
+
- replace `flex flex-row` with [flex-row] and fix items at position
|
|
55
|
+
- replace `self`-<axis> with align-self-<axis> and (add flex: 1 !!!no more need `flexspan`/`flexspan-1`)
|
|
56
|
+
- replace `translate-middle` with `translate-center`
|
|
57
|
+
|
|
58
|
+
- fix row items position
|
|
59
|
+
- fix margin auto property
|
|
60
|
+
- fix padding auto property
|
|
61
|
+
- fix/update @googleapis font
|
|
62
|
+
|
|
63
|
+
[js]
|
|
64
|
+
- update
|
|
65
|
+
- remove history
|
|
66
|
+
- splite GLOBALS ($_) in `getter` (get) & `setter` (set)
|
|
67
|
+
- replace `DOM()` with `dom()`
|
|
68
|
+
- remove attrib
|
|
69
|
+
- replace `set_attrib()` to `set_attribute()`
|
|
70
|
+
- update listener [on(event: string, listener: Function)]
|
|
71
|
+
- update `display()` (now support `arrayList`) _eg: display(['#elementId1','#elementId2'])_
|
|
72
|
+
- update `hide()` (now support `arrayList`) _eg: hide(['#elementId1','#elementId2'])_
|
|
73
|
+
- remove `onClick()`, `onDblClick()`
|
|
74
|
+
- replace `on_scroll()` to `at_scroll()` [on_scroll(el: string, add_list: Array<string>, rm_list: Array<string> = [], offset: number = 0)]
|
|
75
|
+
- replace and update `popUp` to `pop` with frame object
|
|
76
|
+
- add/update listener [scroll_to(el: string)]
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Font Awesome Free 6.
|
|
2
|
+
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
|
3
3
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
4
4
|
* Copyright 2023 Fonticons, Inc.
|
|
5
5
|
*/
|
|
@@ -5969,9 +5969,6 @@ readers do not read off random characters that represent icons */
|
|
|
5969
5969
|
.fa-share::before {
|
|
5970
5970
|
content: "\f064"; }
|
|
5971
5971
|
|
|
5972
|
-
.fa-arrow-turn-right::before {
|
|
5973
|
-
content: "\f064"; }
|
|
5974
|
-
|
|
5975
5972
|
.fa-mail-forward::before {
|
|
5976
5973
|
content: "\f064"; }
|
|
5977
5974
|
|
|
@@ -6421,6 +6418,9 @@ readers do not read off random characters that represent icons */
|
|
|
6421
6418
|
.fa-ups:before {
|
|
6422
6419
|
content: "\f7e0"; }
|
|
6423
6420
|
|
|
6421
|
+
.fa-pixiv:before {
|
|
6422
|
+
content: "\e640"; }
|
|
6423
|
+
|
|
6424
6424
|
.fa-wpexplorer:before {
|
|
6425
6425
|
content: "\f2de"; }
|
|
6426
6426
|
|
|
@@ -6526,6 +6526,9 @@ readers do not read off random characters that represent icons */
|
|
|
6526
6526
|
.fa-deskpro:before {
|
|
6527
6527
|
content: "\f38f"; }
|
|
6528
6528
|
|
|
6529
|
+
.fa-brave:before {
|
|
6530
|
+
content: "\e63c"; }
|
|
6531
|
+
|
|
6529
6532
|
.fa-sistrix:before {
|
|
6530
6533
|
content: "\f3ee"; }
|
|
6531
6534
|
|
|
@@ -6694,6 +6697,9 @@ readers do not read off random characters that represent icons */
|
|
|
6694
6697
|
.fa-cloudsmith:before {
|
|
6695
6698
|
content: "\f384"; }
|
|
6696
6699
|
|
|
6700
|
+
.fa-opensuse:before {
|
|
6701
|
+
content: "\e62b"; }
|
|
6702
|
+
|
|
6697
6703
|
.fa-pied-piper-alt:before {
|
|
6698
6704
|
content: "\f1a8"; }
|
|
6699
6705
|
|
|
@@ -6838,6 +6844,9 @@ readers do not read off random characters that represent icons */
|
|
|
6838
6844
|
.fa-bluetooth-b:before {
|
|
6839
6845
|
content: "\f294"; }
|
|
6840
6846
|
|
|
6847
|
+
.fa-square-letterboxd:before {
|
|
6848
|
+
content: "\e62e"; }
|
|
6849
|
+
|
|
6841
6850
|
.fa-sticker-mule:before {
|
|
6842
6851
|
content: "\f3f7"; }
|
|
6843
6852
|
|
|
@@ -6871,6 +6880,9 @@ readers do not read off random characters that represent icons */
|
|
|
6871
6880
|
.fa-confluence:before {
|
|
6872
6881
|
content: "\f78d"; }
|
|
6873
6882
|
|
|
6883
|
+
.fa-shoelace:before {
|
|
6884
|
+
content: "\e60c"; }
|
|
6885
|
+
|
|
6874
6886
|
.fa-mdb:before {
|
|
6875
6887
|
content: "\f8ca"; }
|
|
6876
6888
|
|
|
@@ -6994,6 +7006,9 @@ readers do not read off random characters that represent icons */
|
|
|
6994
7006
|
.fa-envira:before {
|
|
6995
7007
|
content: "\f299"; }
|
|
6996
7008
|
|
|
7009
|
+
.fa-google-scholar:before {
|
|
7010
|
+
content: "\e63b"; }
|
|
7011
|
+
|
|
6997
7012
|
.fa-square-gitlab:before {
|
|
6998
7013
|
content: "\e5ae"; }
|
|
6999
7014
|
|
|
@@ -7126,6 +7141,9 @@ readers do not read off random characters that represent icons */
|
|
|
7126
7141
|
.fa-vine:before {
|
|
7127
7142
|
content: "\f1ca"; }
|
|
7128
7143
|
|
|
7144
|
+
.fa-signal-messenger:before {
|
|
7145
|
+
content: "\e663"; }
|
|
7146
|
+
|
|
7129
7147
|
.fa-paypal:before {
|
|
7130
7148
|
content: "\f1ed"; }
|
|
7131
7149
|
|
|
@@ -7159,6 +7177,9 @@ readers do not read off random characters that represent icons */
|
|
|
7159
7177
|
.fa-nfc-symbol:before {
|
|
7160
7178
|
content: "\e531"; }
|
|
7161
7179
|
|
|
7180
|
+
.fa-mintbit:before {
|
|
7181
|
+
content: "\e62f"; }
|
|
7182
|
+
|
|
7162
7183
|
.fa-ethereum:before {
|
|
7163
7184
|
content: "\f42e"; }
|
|
7164
7185
|
|
|
@@ -7183,6 +7204,9 @@ readers do not read off random characters that represent icons */
|
|
|
7183
7204
|
.fa-bimobject:before {
|
|
7184
7205
|
content: "\f378"; }
|
|
7185
7206
|
|
|
7207
|
+
.fa-brave-reverse:before {
|
|
7208
|
+
content: "\e63d"; }
|
|
7209
|
+
|
|
7186
7210
|
.fa-facebook-f:before {
|
|
7187
7211
|
content: "\f39e"; }
|
|
7188
7212
|
|
|
@@ -7285,6 +7309,9 @@ readers do not read off random characters that represent icons */
|
|
|
7285
7309
|
.fa-tencent-weibo:before {
|
|
7286
7310
|
content: "\f1d5"; }
|
|
7287
7311
|
|
|
7312
|
+
.fa-letterboxd:before {
|
|
7313
|
+
content: "\e62d"; }
|
|
7314
|
+
|
|
7288
7315
|
.fa-symfony:before {
|
|
7289
7316
|
content: "\f83d"; }
|
|
7290
7317
|
|
|
@@ -7423,6 +7450,9 @@ readers do not read off random characters that represent icons */
|
|
|
7423
7450
|
.fa-cmplid:before {
|
|
7424
7451
|
content: "\e360"; }
|
|
7425
7452
|
|
|
7453
|
+
.fa-upwork:before {
|
|
7454
|
+
content: "\e641"; }
|
|
7455
|
+
|
|
7426
7456
|
.fa-facebook:before {
|
|
7427
7457
|
content: "\f09a"; }
|
|
7428
7458
|
|
|
@@ -7597,6 +7627,9 @@ readers do not read off random characters that represent icons */
|
|
|
7597
7627
|
.fa-supple:before {
|
|
7598
7628
|
content: "\f3f9"; }
|
|
7599
7629
|
|
|
7630
|
+
.fa-webflow:before {
|
|
7631
|
+
content: "\e65c"; }
|
|
7632
|
+
|
|
7600
7633
|
.fa-rebel:before {
|
|
7601
7634
|
content: "\f1d0"; }
|
|
7602
7635
|
|