@angelscmf/front 1.0.30 → 1.0.32
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/README.md +41 -18
- package/dist/AngelsFrontAnimationLibrary.js +15 -14
- package/dist/AngelsFrontAnimationLibrary.js.map +1 -1
- package/dist/AngelsFrontAnimationLibrary.mjs +15 -14
- package/dist/AngelsFrontAnimationLibrary.mjs.map +1 -1
- package/dist/AngelsFrontApplication.js +59 -47
- package/dist/AngelsFrontApplication.js.map +1 -1
- package/dist/AngelsFrontApplication.mjs +59 -47
- package/dist/AngelsFrontApplication.mjs.map +1 -1
- package/dist/AngelsFrontDOMLibrary.d.mts +3 -2
- package/dist/AngelsFrontDOMLibrary.d.ts +3 -2
- package/dist/AngelsFrontDOMLibrary.js +30 -16
- package/dist/AngelsFrontDOMLibrary.js.map +1 -1
- package/dist/AngelsFrontDOMLibrary.mjs +29 -16
- package/dist/AngelsFrontDOMLibrary.mjs.map +1 -1
- package/dist/AngelsFrontElement.d.mts +2 -1
- package/dist/AngelsFrontElement.d.ts +2 -1
- package/dist/AngelsFrontElement.js +15 -14
- package/dist/AngelsFrontElement.js.map +1 -1
- package/dist/AngelsFrontElement.mjs +15 -14
- package/dist/AngelsFrontElement.mjs.map +1 -1
- package/dist/AngelsFrontLoader.js +4452 -25
- package/dist/AngelsFrontLoader.js.map +1 -1
- package/dist/AngelsFrontLoader.mjs +4452 -25
- package/dist/AngelsFrontLoader.mjs.map +1 -1
- package/dist/AngelsFrontPage.js +59 -47
- package/dist/AngelsFrontPage.js.map +1 -1
- package/dist/AngelsFrontPage.mjs +59 -47
- package/dist/AngelsFrontPage.mjs.map +1 -1
- package/dist/AngelsFrontWidgetClass.js +59 -47
- package/dist/AngelsFrontWidgetClass.js.map +1 -1
- package/dist/AngelsFrontWidgetClass.mjs +59 -47
- package/dist/AngelsFrontWidgetClass.mjs.map +1 -1
- package/package.json +4 -1
- package/sass/AngelsDesign.scss +5 -0
- package/sass/angelsTags/_a-alpha.scss +29 -0
- package/sass/angelsTags/_a-center.scss +15 -0
- package/sass/angelsTags/_a-float.scss +42 -0
- package/sass/angelsTags/_a-icenter.scss +15 -0
- package/sass/angelsTags/_a-page.scss +2 -2
- package/sass/angelsTags/_a-text-transform.scss +29 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
<a-float-box>
|
|
3
|
+
<div a-float-left>Float left</div>
|
|
4
|
+
<div a-float-right>Float right</div>
|
|
5
|
+
<p>Other content without float</p>
|
|
6
|
+
</a-float-box>
|
|
7
|
+
|
|
8
|
+
<div class="a-float-box">
|
|
9
|
+
<div class="a-float-left">Float left</div>
|
|
10
|
+
<div class="a-float-right">Float right</div>
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
<section a-float-box>
|
|
14
|
+
<div a-float-left>Float left</div>
|
|
15
|
+
<div a-float-right>Float right</div>
|
|
16
|
+
</section>
|
|
17
|
+
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
a-float-box,
|
|
21
|
+
.a-float-box,
|
|
22
|
+
[a-float-box] {
|
|
23
|
+
display: block;
|
|
24
|
+
|
|
25
|
+
&::after {
|
|
26
|
+
content: "";
|
|
27
|
+
display: block;
|
|
28
|
+
clear: both;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
a-float-left,
|
|
33
|
+
.a-float-left,
|
|
34
|
+
[a-float-left] {
|
|
35
|
+
float: left;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
a-float-right,
|
|
39
|
+
.a-float-right,
|
|
40
|
+
[a-float-right] {
|
|
41
|
+
float: right;
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @example <a-icenter> ... </a-icenter>
|
|
3
|
+
* @example <a-brick a-icenter> ... </a-brick>
|
|
4
|
+
* @example <a-brick class="a-icenter"> ... </a-brick>
|
|
5
|
+
* @example <a-iflex a-icenter> ... </a-iflex>
|
|
6
|
+
*/
|
|
7
|
+
a-icenter,
|
|
8
|
+
.a-icenter,
|
|
9
|
+
[a-icenter] {
|
|
10
|
+
align-content: center;
|
|
11
|
+
align-items: center;
|
|
12
|
+
display: inline-flex;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
flex-wrap: wrap;
|
|
15
|
+
}
|
|
@@ -40,8 +40,8 @@ a-page-header {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
:root {
|
|
43
|
-
--a-page-body-gap: var(--a-
|
|
44
|
-
--a-page-body-padding: var(--a-
|
|
43
|
+
--a-page-body-gap: var(--a-doubleSize);
|
|
44
|
+
--a-page-body-padding: var(--a-doubleSize) var(--a-baseSize);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
a-page-body {
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* angelsTags/_a-text-transform.scss
|
|
3
|
+
*
|
|
4
|
+
* Text transform utilities for Angels Design System.
|
|
5
|
+
*
|
|
6
|
+
* This file defines a set of utility classes and attributes to apply various text-transform
|
|
7
|
+
* styles to HTML elements. The supported text-transform values include 'none', 'capitalize',
|
|
8
|
+
* 'full-size-kana', 'full-width', 'lowercase', 'math-auto', and 'uppercase'.
|
|
9
|
+
*
|
|
10
|
+
* @example <h1 a-text-transform=uppercase>HEADLINE IN UPPERCASE</h1>
|
|
11
|
+
* @example <button a-text-transform=lowercase>button in lowercase</button>
|
|
12
|
+
* @example <li a-text-transform=capitalize>list item capitalized</li>
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
$text-transform-values: 'none',
|
|
16
|
+
'capitalize',
|
|
17
|
+
'full-size-kana',
|
|
18
|
+
'full-width',
|
|
19
|
+
'lowercase',
|
|
20
|
+
'math-auto',
|
|
21
|
+
'uppercase'
|
|
22
|
+
;
|
|
23
|
+
|
|
24
|
+
@each $value in $text-transform-values {
|
|
25
|
+
|
|
26
|
+
[a-text-transform=#{$value}] {
|
|
27
|
+
text-transform: #{$value};
|
|
28
|
+
}
|
|
29
|
+
}
|