@appartmint/mint 2.3.2 → 2.4.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.
Files changed (28) hide show
  1. package/dist/css/mint.css +1025 -1020
  2. package/dist/css/mint.css.map +1 -1
  3. package/dist/css/mint.min.css +1 -1
  4. package/dist/css/mint.min.css.map +1 -1
  5. package/dist/js/imports/util/text.d.ts +4 -0
  6. package/dist/js/imports/util/text.d.ts.map +1 -1
  7. package/dist/js/index.js +6 -0
  8. package/dist/js/index.js.map +1 -1
  9. package/dist/js/index.min.js +1 -1
  10. package/dist/js/index.min.js.map +1 -1
  11. package/package.json +1 -1
  12. package/src/scss/imports/components/_index.scss +3 -10
  13. package/src/scss/imports/components/{_backgrounds.scss → partial/_backgrounds.scss} +1 -1
  14. package/src/scss/imports/components/{_footer.scss → partial/_footer.scss} +1 -2
  15. package/src/scss/imports/components/{_header.scss → partial/_header.scss} +1 -1
  16. package/src/scss/imports/components/partial/_index.scss +9 -0
  17. package/src/scss/imports/components/section/_full.scss +42 -0
  18. package/src/scss/imports/components/section/_index.scss +8 -0
  19. package/src/scss/imports/components/{_landing.scss → section/_landing.scss} +2 -2
  20. package/src/scss/imports/components/{_buttons.scss → widget/_button.scss} +1 -1
  21. package/src/scss/imports/components/{_cards.scss → widget/_card.scss} +1 -1
  22. package/src/scss/imports/components/{_image.scss → widget/_image.scss} +1 -1
  23. package/src/scss/imports/components/widget/_index.scss +10 -0
  24. package/src/scss/imports/components/{_tables.scss → widget/_table.scss} +1 -1
  25. package/src/scss/imports/overrides/_amplify.scss +2 -2
  26. package/src/scss/imports/overrides/_index.scss +1 -0
  27. package/src/scss/imports/components/_video.scss +0 -36
  28. /package/src/scss/imports/{components → overrides}/_recaptcha.scss +0 -0
@@ -0,0 +1,42 @@
1
+ /// _video.scss - Video styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Video
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use 'sass:map';
9
+ @use '../../util' as *;
10
+
11
+ /// Video Styles
12
+ #{class(section-full)} {
13
+ display: flex;
14
+ flex-direction: column;
15
+ align-items: flex-end;
16
+ justify-content: center;
17
+ flex-direction: row;
18
+ min-height: calc(100vh - css-var(header-height) + 10rem);
19
+ gap: 2rem;
20
+ position: relative;
21
+ @include exit-padding;
22
+ @include fluid-padding;
23
+
24
+ iframe, video, #{class(image)}, #{class(embed)} {
25
+ position: absolute;
26
+ top: 0;
27
+ padding: 0;
28
+ width: 100%;
29
+ height: calc(100vh - css-var(header-height));
30
+ border: none;
31
+ object-fit: cover;
32
+ pointer-events: none;
33
+ }
34
+
35
+ #{class(image)} {
36
+ img {
37
+ width: 100%;
38
+ height: 100%;
39
+ object-fit: cover;
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,8 @@
1
+ /// _index.scss - Sections
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Sections
5
+ @charset 'utf-8';
6
+
7
+ @use './full';
8
+ @use './landing';
@@ -6,7 +6,7 @@
6
6
 
7
7
  /// Imports
8
8
  @use 'sass:map';
9
- @use '../util' as *;
9
+ @use '../../util' as *;
10
10
 
11
11
  /// Landing Styles
12
12
  :root {
@@ -24,7 +24,7 @@
24
24
  #{class(landing)} {
25
25
  @include exit-padding;
26
26
 
27
- #{class(video-bg)} {
27
+ #{class(section-full)} {
28
28
  align-items: center;
29
29
  top: 0;
30
30
  left: 0;
@@ -5,7 +5,7 @@
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
8
- @use '../util' as *;
8
+ @use '../../util' as *;
9
9
 
10
10
  /// All buttons
11
11
  #{class(btn)},
@@ -6,7 +6,7 @@
6
6
 
7
7
  /// Imports
8
8
  @use 'sass:math';
9
- @use '../util' as *;
9
+ @use '../../util' as *;
10
10
 
11
11
  /// Card Styles
12
12
  #{class(card)} {
@@ -5,7 +5,7 @@
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
8
- @use '../util' as *;
8
+ @use '../../util' as *;
9
9
 
10
10
  /// A basic image
11
11
  #{class(image)} {
@@ -0,0 +1,10 @@
1
+ /// _index.scss - Widgets
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Widgets
5
+ @charset 'utf-8';
6
+
7
+ @use './button';
8
+ @use './card';
9
+ @use './image';
10
+ @use './table';
@@ -5,7 +5,7 @@
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
8
- @use '../util' as *;
8
+ @use '../../util' as *;
9
9
 
10
10
  /// Table
11
11
  #{class(table)} {
@@ -6,8 +6,8 @@
6
6
 
7
7
  /// Imports
8
8
  @use '../util' as *;
9
- @use '../components/buttons';
10
- @use '../components/cards';
9
+ @use '../components/widget/button';
10
+ @use '../components/widget/card';
11
11
 
12
12
  /// Amplify Styles
13
13
  :root:root {
@@ -8,4 +8,5 @@
8
8
  @use './amplify';
9
9
  @use './full-calendar';
10
10
  @use './material';
11
+ @use './recaptcha';
11
12
  @use './swiper';
@@ -1,36 +0,0 @@
1
- /// _video.scss - Video styles
2
- /// @author App Art Mint LLC
3
- ///
4
- /// @group Video
5
- @charset 'utf-8';
6
-
7
- /// Imports
8
- @use 'sass:map';
9
- @use '../util' as *;
10
-
11
- /// Video Styles
12
- #{class(video)} {
13
- &-bg {
14
- display: flex;
15
- flex-direction: column;
16
- align-items: flex-end;
17
- justify-content: center;
18
- flex-direction: row;
19
- min-height: calc(100vh - css-var(header-height) + 10rem);
20
- gap: 2rem;
21
- position: relative;
22
- @include exit-padding;
23
- @include fluid-padding;
24
-
25
- iframe, video, #{class(image)}, #{class(embed)} {
26
- position: absolute;
27
- top: 0;
28
- padding: 0;
29
- width: 100%;
30
- height: calc(100vh - css-var(header-height));
31
- border: none;
32
- object-fit: cover;
33
- pointer-events: none;
34
- }
35
- }
36
- }