@appartmint/mint 2.10.18 → 2.10.20

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appartmint/mint",
3
3
  "author": "App Art Mint LLC",
4
- "version": "2.10.18",
4
+ "version": "2.10.20",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -0,0 +1,27 @@
1
+ /// _edit-info.scss - Edit info form styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Form
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util' as *;
9
+
10
+ /// Edit info form styles
11
+ #{class(edit-info)} {
12
+ &:not(#{class(editing)}) {
13
+ input, textarea {
14
+ background: transparent;
15
+ border: none;
16
+ color: css-var(fore);
17
+ }
18
+ }
19
+
20
+ &-toggle {
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: flex-end;
24
+ gap: 0.5rem;
25
+ margin-bottom: 1rem;
26
+ }
27
+ }
@@ -1,2 +1,3 @@
1
1
  @use './edit-info';
2
2
  @use './form';
3
+ @use './input';
@@ -0,0 +1,21 @@
1
+ /// _label.scss - Label styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Input
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../../util' as *;
9
+
10
+ /// Label styles
11
+ #{class(label)} {
12
+ display: flex;
13
+ flex-direction: column;
14
+ gap: 0.5rem;
15
+
16
+ span {
17
+ display: flex;
18
+ align-items: center;
19
+ gap: 0.5rem;
20
+ }
21
+ }
@@ -0,0 +1,20 @@
1
+ /// _accordion.scss - Accordion styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Widget
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util' as *;
9
+
10
+ /// Accordion styles
11
+ #{class(accordion)} {
12
+ #{class(item)} {
13
+ cursor: pointer;
14
+
15
+ #{class(wrapper)} {
16
+ transition: height 0.3s ease;
17
+ overflow: hidden;
18
+ }
19
+ }
20
+ }
@@ -1,7 +1,7 @@
1
- /// buttons.scss - Button styles
1
+ /// _button.scss - Button styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group Buttons
4
+ /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
@@ -1,7 +1,7 @@
1
- /// cards.scss - Card styles
1
+ /// _card.scss - Card styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group Cards
4
+ /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
@@ -1,7 +1,7 @@
1
1
  /// _image.scss - Image styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group Components
4
+ /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
@@ -1,9 +1,10 @@
1
1
  /// _index.scss - Widgets
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group Widgets
4
+ /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
+ @use './accordion';
7
8
  @use './button';
8
9
  @use './card';
9
10
  @use './image';
@@ -1,7 +1,7 @@
1
1
  /// _panel.scss - Panel styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group Components
4
+ /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
@@ -1,7 +1,7 @@
1
- /// _tables.scss - Table styles
1
+ /// _table.scss - Table styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group Components
4
+ /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
@@ -1,7 +1,7 @@
1
1
  /// _tooltip.scss - Tooltip styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group Widgets
4
+ /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports