archcss 2.0.0 → 3.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 +92 -3
- package/css/{arch.dev.css → arch.css} +229748 -155773
- package/css/{architect.css → attribution.css} +1 -4
- package/index.js +1 -1
- package/js/plugin.js +874 -0
- package/package.json +3 -1
- package/readme.md +144 -21
- package/{css/@fontawesome/css/fontawesome.css → webfonts/fontawesome/css/fontawessome.css} +5221 -2686
- package/webfonts/fontawesome/css/fontawessome.min.css +8104 -0
- package/webfonts/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/webfonts/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/webfonts/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/webfonts/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/webfonts/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/webfonts/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/webfonts/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/webfonts/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/{css/@googleapis → webfonts/googleapis}/fonts.css +1 -1
- package/webfonts/googleapis/fonts.min.css +71 -0
- package/webfonts/lucide/css/lucide.css +72 -0
- package/webfonts/lucide/css/lucide.min.css +1 -0
- package/webfonts/lucide/js/lucide.min.js +12 -0
- package/css/@fontawesome/LICENSE.txt +0 -165
- package/css/@fontawesome/css/fontawesome.min.css +0 -9
- package/css/@fontawesome/js/all.js +0 -6026
- package/css/@fontawesome/js/all.min.js +0 -6
- 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 +0 -1
- package/css/arch.min.css +0 -6
- package/js/dom.js +0 -1106
- /package/{licence → license} +0 -0
package/changelog
CHANGED
|
@@ -1,7 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
**
|
|
1
|
+
# 3.0.0
|
|
2
|
+
**3.0.0-beta**
|
|
3
|
+
**Full Changelog**: https://github.com/archcss-dev/archcss/compare/v2.0.0...v3.0.0
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
[css]
|
|
6
|
+
- new modular SCSS architecture with separated layers (attribution, libs, config, utilities, base, elements, helpers)
|
|
7
|
+
- new atomic mixin generation system (generate-utils, generate-state-utils, responsive-class, theme-colors)
|
|
8
|
+
- new responsive pseudo-state variants for hover:, focus:, and active:
|
|
9
|
+
- new equal-width CSS Grid columns grid-cols-<1..12> using repeat(n, 1fr)
|
|
10
|
+
- new responsive auto-fill and auto-fit grid scales grid-fill-<100..300> and grid-fit-<100..300> (minmax in 20px steps)
|
|
11
|
+
- new grid placement and alignment utilities (col-start-*, col-end-*, row-start-*, row-end-*, justify-items-*, justify-self-*)
|
|
12
|
+
- new directional gradients .gradient-to-<side>-<color_1>-<color_2> for 8 directions
|
|
13
|
+
- new radial gradients .gradient-radial-<color_1>-<color_2>
|
|
14
|
+
- new rem-based positioning family inset-<0|x|y|t|r|b|l>-<value>
|
|
15
|
+
- new alpha opacity utilities bg-<color>-alpha-<10..90> and text-<color>-alpha-<10..90>
|
|
16
|
+
- new flex utilities flex-grow-<0|1> and flex-shrink-<0|1>
|
|
17
|
+
- new form elements and classes (form-block, form-control, form-check, searchbox, checkbox)
|
|
18
|
+
|
|
19
|
+
- add 3-color linear gradient support gradient-<color_1>-<color_2>-<color_3>
|
|
20
|
+
- add half-step values to spacing scale
|
|
21
|
+
- add base margin-auto utilities for all directions (m-auto, mx-auto, my-auto, mt-auto, mr-auto, mb-auto, ml-auto)
|
|
22
|
+
- add pixel-based font scale font-<7..96> aligned with standard typography increments
|
|
23
|
+
- add oblique font-style utility font-oblique
|
|
24
|
+
- add invisible CSS watermark attribution tracking (css/attribution.css)
|
|
25
|
+
|
|
26
|
+
- now support Lucide icon utilities and webfonts locally bundled under webfonts/lucide/
|
|
27
|
+
- now support styling input[type=button/reset/submit] identically to <button>
|
|
28
|
+
- now support bidirectional shade and tint generation via shade-or-tint() across all color utilities and states
|
|
29
|
+
- now support universal border reset (border-width: 0; border-style: solid;) ensuring border width classes display properly
|
|
30
|
+
|
|
31
|
+
- remove arch.dev.css and arch.min.css in favor of consolidated arch.css
|
|
32
|
+
- remove external Google Fonts loading by default for offline-first performance
|
|
33
|
+
- remove title-* font-size duplicates in favor of standardized fs-* and h1-h6 classes
|
|
34
|
+
|
|
35
|
+
- update FontAwesome webfonts to local bundle under webfonts/fontawesome/
|
|
36
|
+
- update Google Fonts location to webfonts/googleapis/
|
|
37
|
+
- update gap utility naming from g-<n> to gap-<n>
|
|
38
|
+
- update css/architect.css renamed to css/attribution.css
|
|
39
|
+
- update headings h1 through h6 component styles and font-size utilities
|
|
40
|
+
- update button and form controls spacing and alignment
|
|
41
|
+
|
|
42
|
+
- replace .deleted invalid text-decoration keyword with standard line-through (aliasing .strike)
|
|
43
|
+
- replace legacy js/dom.js with TypeScript-compiled js/plugin.js
|
|
44
|
+
|
|
45
|
+
- fix to-rgba() percentage calculation ensuring bg-*-alpha-* utilities render with intended opacity
|
|
46
|
+
- fix row-start-* and row-end-* grid utilities using line index instead of width percentage
|
|
47
|
+
- fix shade/tint logic in hover:, focus:, and active: pseudo-variants for border, outline, link, and background
|
|
48
|
+
- fix button :empty(*) selector to standard :empty
|
|
49
|
+
- fix progress bar width mismatch caused by display: flex on <progress>
|
|
50
|
+
- fix duplicate rounded-{side}-{radius} CSS rule emission
|
|
51
|
+
- fix @keyframes glow values and turn fraction
|
|
52
|
+
- fix divider and list-divider mixins setting height to border-style keyword
|
|
53
|
+
- fix dead a:hover rule and LVHA link state ordering in base styles
|
|
54
|
+
- fix duplicate $deep-purple color definition
|
|
55
|
+
- fix fractional RGB channels produced by color mixing via channel rounding
|
|
56
|
+
|
|
57
|
+
[js]
|
|
58
|
+
- new unified DOM plugin (js/plugin.js) compiled from TypeScript (src/ts/plugin.ts)
|
|
59
|
+
- new HttpRequest AJAX utility for XMLHttpRequest handling
|
|
60
|
+
- new strcopy(text, callback) clipboard copy helper
|
|
61
|
+
- new smooth navigation helper scroll_to(el, offset)
|
|
62
|
+
- new event listener helper on(event, listener)
|
|
63
|
+
- update display() to support element arrays (e.g. display(['#id1', '#id2']))
|
|
64
|
+
- update hide() to support element arrays (e.g. hide(['#id1', '#id2']))
|
|
65
|
+
- update toggle() for toggling visibility of single or multiple elements
|
|
66
|
+
- update at_scroll() scroll position listener with element triggers
|
|
67
|
+
- update global $_ getter and setter for document, BOM, and location properties
|
|
68
|
+
- update frame modal, overlay, and pop-up controller
|
|
69
|
+
- update framework version identification to v3.0.0-beta
|
|
70
|
+
|
|
71
|
+
[webfonts]
|
|
72
|
+
- add Lucide icon font family (webfonts/lucide/css/lucide.css, webfonts/lucide/css/lucide.min.css, webfonts/lucide/js/lucide.min.js)
|
|
73
|
+
- add FontAwesome webfont assets (fa-brands-400, fa-regular-400, fa-solid-900, fa-v4compatibility in TTF and WOFF2)
|
|
74
|
+
- update FontAwesome structure under webfonts/fontawesome/
|
|
75
|
+
- update Google Fonts structure under webfonts/googleapis/
|
|
76
|
+
|
|
77
|
+
# 2.1.0-preview
|
|
78
|
+
[js]
|
|
79
|
+
- prefer method `display()` instead of `pop()` for `frame` object
|
|
80
|
+
|
|
81
|
+
# 2.0.1
|
|
82
|
+
**2.0.1-beta-1**
|
|
83
|
+
- fix shadow offset
|
|
84
|
+
- fix transform `.scale-5` value
|
|
85
|
+
- fix transform axis syntax
|
|
86
|
+
- fix margin redundancy for `.m-audio`, `.m<axis>-auto`
|
|
87
|
+
- fixed some latency by removing font libraries (@fontawesome & @googleapis) from `min` and `dev` files
|
|
88
|
+
- update readme.md
|
|
89
|
+
|
|
90
|
+
# 2.0.0
|
|
5
91
|
[css]
|
|
6
92
|
- new folders structure
|
|
7
93
|
- new gradient synthax `gradient`-<color_1>-<color_2>-<color_3>
|
|
@@ -74,3 +160,6 @@
|
|
|
74
160
|
- replace `on_scroll()` to `at_scroll()` [on_scroll(el: string, add_list: Array<string>, rm_list: Array<string> = [], offset: number = 0)]
|
|
75
161
|
- replace and update `popUp` to `pop` with frame object
|
|
76
162
|
- add/update listener [scroll_to(el: string)]
|
|
163
|
+
|
|
164
|
+
# 1.0.0
|
|
165
|
+
**Full Changelog**: https://github.com/archcss-dev/archcss/commits/v1.0.0
|