@coffic/cosy-ui 0.8.7 → 0.8.11

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 (159) hide show
  1. package/dist/app.css +1 -1
  2. package/dist/src-astro/alert/index.ts +7 -15
  3. package/dist/src-astro/assets/iconData.ts +211 -106
  4. package/dist/src-astro/button/index_astro.ts +2 -56
  5. package/dist/src-astro/card/CardCourse.astro +31 -11
  6. package/dist/src-astro/card/index.ts +15 -25
  7. package/dist/src-astro/code-container/CodeContainer.astro +205 -5
  8. package/dist/src-astro/code-container/index.ts +9 -13
  9. package/dist/src-astro/contact/index.ts +16 -20
  10. package/dist/src-astro/errors/index.ts +0 -62
  11. package/dist/src-astro/footer/index.ts +1 -30
  12. package/dist/src-astro/header/Header.astro +1 -2
  13. package/dist/src-astro/header/index.ts +1 -40
  14. package/dist/src-astro/hero/Hero.astro +1 -1
  15. package/dist/src-astro/hero/index.ts +1 -39
  16. package/dist/src-astro/icons/ChartIcon.astro +28 -0
  17. package/dist/src-astro/icons/DashboardIcon.astro +28 -0
  18. package/dist/src-astro/icons/DeleteIcon.astro +28 -0
  19. package/dist/src-astro/icons/DocumentIcon.astro +28 -0
  20. package/dist/src-astro/icons/DownloadIcon.astro +28 -0
  21. package/dist/src-astro/icons/EditIcon.astro +28 -0
  22. package/dist/src-astro/icons/FolderIcon.astro +28 -0
  23. package/dist/src-astro/icons/HeartIcon.astro +28 -0
  24. package/dist/src-astro/icons/HomeIcon.astro +28 -0
  25. package/dist/src-astro/icons/MailIcon.astro +28 -0
  26. package/dist/src-astro/icons/MessageIcon.astro +28 -0
  27. package/dist/src-astro/icons/NotificationIcon.astro +28 -0
  28. package/dist/src-astro/icons/RefreshIcon.astro +28 -0
  29. package/dist/src-astro/icons/ReportIcon.astro +28 -0
  30. package/dist/src-astro/icons/SaveIcon.astro +28 -0
  31. package/dist/src-astro/icons/SecurityIcon.astro +28 -0
  32. package/dist/src-astro/icons/StarIcon.astro +28 -0
  33. package/dist/src-astro/icons/ToolsIcon.astro +28 -0
  34. package/dist/src-astro/icons/UploadIcon.astro +28 -0
  35. package/dist/src-astro/icons/UsersIcon.astro +28 -0
  36. package/dist/src-astro/icons/WalletIcon.astro +28 -0
  37. package/dist/src-astro/icons/index.ts +21 -0
  38. package/dist/src-astro/layout-app/index.ts +5 -9
  39. package/dist/src-astro/layout-dashboard/DashboardLayout.astro +101 -555
  40. package/dist/src-astro/layout-dashboard/DashboardSidebar.astro +206 -0
  41. package/dist/src-astro/layout-dashboard/DashboardTopNavbar.astro +132 -0
  42. package/dist/src-astro/layout-dashboard/index.ts +14 -8
  43. package/dist/src-astro/layout-dashboard/tools.ts +0 -0
  44. package/dist/src-astro/layout-dashboard/types.ts +313 -0
  45. package/package.json +4 -4
  46. package/dist/src-astro/alert/EAlertBasic.astro +0 -11
  47. package/dist/src-astro/alert/EAlertBasicContainer.astro +0 -11
  48. package/dist/src-astro/alert/EAlertCustomStyle.astro +0 -16
  49. package/dist/src-astro/alert/EAlertCustomStyleContainer.astro +0 -11
  50. package/dist/src-astro/alert/EAlertError.astro +0 -6
  51. package/dist/src-astro/alert/EAlertInfo.astro +0 -6
  52. package/dist/src-astro/alert/EAlertSuccess.astro +0 -6
  53. package/dist/src-astro/alert/EAlertTypesContainer.astro +0 -43
  54. package/dist/src-astro/alert/EAlertWarning.astro +0 -6
  55. package/dist/src-astro/alert/EAlertWithTitle.astro +0 -12
  56. package/dist/src-astro/alert/EAlertWithTitleContainer.astro +0 -11
  57. package/dist/src-astro/button/ButtonBasic.astro +0 -18
  58. package/dist/src-astro/button/ButtonBasicContainer.astro +0 -11
  59. package/dist/src-astro/button/ButtonBlock.astro +0 -5
  60. package/dist/src-astro/button/ButtonError.astro +0 -5
  61. package/dist/src-astro/button/ButtonGhost.astro +0 -5
  62. package/dist/src-astro/button/ButtonIconBoth.astro +0 -9
  63. package/dist/src-astro/button/ButtonIconLeft.astro +0 -8
  64. package/dist/src-astro/button/ButtonIconRight.astro +0 -8
  65. package/dist/src-astro/button/ButtonInfo.astro +0 -5
  66. package/dist/src-astro/button/ButtonLinkContainer.astro +0 -19
  67. package/dist/src-astro/button/ButtonNeutral.astro +0 -5
  68. package/dist/src-astro/button/ButtonOutline.astro +0 -5
  69. package/dist/src-astro/button/ButtonShapeCircle.astro +0 -5
  70. package/dist/src-astro/button/ButtonShapeDefault.astro +0 -5
  71. package/dist/src-astro/button/ButtonShapeSquare.astro +0 -5
  72. package/dist/src-astro/button/ButtonShapes.astro +0 -23
  73. package/dist/src-astro/button/ButtonShapesContainer.astro +0 -29
  74. package/dist/src-astro/button/ButtonSizes.astro +0 -15
  75. package/dist/src-astro/button/ButtonSizesContainer.astro +0 -11
  76. package/dist/src-astro/button/ButtonStates.astro +0 -12
  77. package/dist/src-astro/button/ButtonStatesContainer.astro +0 -11
  78. package/dist/src-astro/button/ButtonSuccess.astro +0 -5
  79. package/dist/src-astro/button/ButtonVariantsContainer.astro +0 -73
  80. package/dist/src-astro/button/ButtonWarning.astro +0 -5
  81. package/dist/src-astro/button/ButtonWide.astro +0 -5
  82. package/dist/src-astro/button/ButtonWidth.astro +0 -8
  83. package/dist/src-astro/button/ButtonWidthContainer.astro +0 -19
  84. package/dist/src-astro/button/ButtonWithIcons.astro +0 -25
  85. package/dist/src-astro/button/ButtonWithIconsContainer.astro +0 -29
  86. package/dist/src-astro/card/CardBasic.astro +0 -5
  87. package/dist/src-astro/card/ECardBasic.astro +0 -13
  88. package/dist/src-astro/card/ECardBasicContainer.astro +0 -11
  89. package/dist/src-astro/card/ECardClickable.astro +0 -16
  90. package/dist/src-astro/card/ECardClickableContainer.astro +0 -11
  91. package/dist/src-astro/card/ECardCompact.astro +0 -13
  92. package/dist/src-astro/card/ECardCompactContainer.astro +0 -11
  93. package/dist/src-astro/card/ECardCustomStyle.astro +0 -17
  94. package/dist/src-astro/card/ECardCustomStyleContainer.astro +0 -11
  95. package/dist/src-astro/card/ECardWithImage.astro +0 -16
  96. package/dist/src-astro/card/ECardWithImageContainer.astro +0 -11
  97. package/dist/src-astro/card/ECardWithSubtitle.astro +0 -13
  98. package/dist/src-astro/card/ECardWithSubtitleContainer.astro +0 -11
  99. package/dist/src-astro/code-container/ECodeContainerBasic.astro +0 -19
  100. package/dist/src-astro/code-container/ECodeContainerMultiple.astro +0 -49
  101. package/dist/src-astro/contact/EContactBasic.astro +0 -15
  102. package/dist/src-astro/contact/EContactBasicContainer.astro +0 -11
  103. package/dist/src-astro/contact/EContactCompact.astro +0 -11
  104. package/dist/src-astro/contact/EContactCompactContainer.astro +0 -11
  105. package/dist/src-astro/contact/EContactCustomStyle.astro +0 -21
  106. package/dist/src-astro/contact/EContactCustomStyleContainer.astro +0 -11
  107. package/dist/src-astro/contact/EContactSocial.astro +0 -20
  108. package/dist/src-astro/contact/EContactSocialContainer.astro +0 -11
  109. package/dist/src-astro/contact/EContactWithTitle.astro +0 -17
  110. package/dist/src-astro/contact/EContactWithTitleContainer.astro +0 -11
  111. package/dist/src-astro/errors/E403Basic.astro +0 -11
  112. package/dist/src-astro/errors/E403BasicContainer.astro +0 -20
  113. package/dist/src-astro/errors/E404Basic.astro +0 -11
  114. package/dist/src-astro/errors/E404BasicContainer.astro +0 -20
  115. package/dist/src-astro/errors/E404WithDebug.astro +0 -18
  116. package/dist/src-astro/errors/E500Basic.astro +0 -11
  117. package/dist/src-astro/errors/E500BasicContainer.astro +0 -20
  118. package/dist/src-astro/errors/E503Maintenance.astro +0 -20
  119. package/dist/src-astro/errors/E503MaintenanceContainer.astro +0 -21
  120. package/dist/src-astro/errors/EErrorPageCustomStyle.astro +0 -21
  121. package/dist/src-astro/errors/EErrorPageCustomStyleContainer.astro +0 -21
  122. package/dist/src-astro/errors/EErrorPageShowcase.astro +0 -68
  123. package/dist/src-astro/errors/EErrorPageShowcaseContainer.astro +0 -21
  124. package/dist/src-astro/footer/EFooterBasic.astro +0 -18
  125. package/dist/src-astro/footer/EFooterBasicContainer.astro +0 -11
  126. package/dist/src-astro/footer/EFooterComplete.astro +0 -50
  127. package/dist/src-astro/footer/EFooterCompleteContainer.astro +0 -11
  128. package/dist/src-astro/footer/EFooterFeaturesContainer.astro +0 -40
  129. package/dist/src-astro/footer/EFooterWithLogo.astro +0 -28
  130. package/dist/src-astro/footer/EFooterWithLogoContainer.astro +0 -11
  131. package/dist/src-astro/footer/EFooterWithNavigation.astro +0 -24
  132. package/dist/src-astro/footer/EFooterWithNavigationContainer.astro +0 -11
  133. package/dist/src-astro/footer/EFooterWithProducts.astro +0 -24
  134. package/dist/src-astro/footer/EFooterWithProductsContainer.astro +0 -11
  135. package/dist/src-astro/footer/EFooterWithSocial.astro +0 -24
  136. package/dist/src-astro/footer/EFooterWithSocialContainer.astro +0 -11
  137. package/dist/src-astro/header/HeaderBasic.astro +0 -19
  138. package/dist/src-astro/header/HeaderCustomNavbarCenter.astro +0 -28
  139. package/dist/src-astro/header/HeaderCustomNavbarEnd.astro +0 -25
  140. package/dist/src-astro/header/HeaderCustomNavbarStart.astro +0 -27
  141. package/dist/src-astro/header/HeaderCustomPosition.astro +0 -34
  142. package/dist/src-astro/header/HeaderWithNavigation.astro +0 -27
  143. package/dist/src-astro/hero/HeroAlignCenter.astro +0 -13
  144. package/dist/src-astro/hero/HeroAlignContainer.astro +0 -27
  145. package/dist/src-astro/hero/HeroAlignLeft.astro +0 -13
  146. package/dist/src-astro/hero/HeroAlignRight.astro +0 -13
  147. package/dist/src-astro/hero/HeroBackgroundContainer.astro +0 -18
  148. package/dist/src-astro/hero/HeroBackgroundImage.astro +0 -16
  149. package/dist/src-astro/hero/HeroBackgroundImageContainer.astro +0 -11
  150. package/dist/src-astro/hero/HeroBasic.astro +0 -12
  151. package/dist/src-astro/hero/HeroBasicContainer.astro +0 -11
  152. package/dist/src-astro/hero/HeroGradientBackground.astro +0 -10
  153. package/dist/src-astro/hero/HeroPlainBackground.astro +0 -10
  154. package/dist/src-astro/hero/HeroWithButton.astro +0 -15
  155. package/dist/src-astro/hero/HeroWithButtonContainer.astro +0 -11
  156. package/dist/src-astro/hero/HeroWithImage.astro +0 -16
  157. package/dist/src-astro/hero/HeroWithImageContainer.astro +0 -11
  158. package/dist/src-astro/layout-app/AppLayoutBasic.astro +0 -54
  159. package/dist/src-astro/layout-dashboard/DashboardLayoutBasic.astro +0 -51
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="edit" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="folder" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="heart" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="home" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="mail" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="message" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="notification" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="refresh" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="report" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="save" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="security" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="star" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="tools" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="upload" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="users" size={size} stroke={color} class={className} />
@@ -0,0 +1,28 @@
1
+ ---
2
+ import AstroIcon from './AstroIcon.astro';
3
+
4
+ interface Props {
5
+ /**
6
+ * 图标的大小
7
+ * @default "24px"
8
+ */
9
+ size?: string;
10
+ /**
11
+ * 图标的颜色
12
+ * @default "currentColor"
13
+ */
14
+ color?: string;
15
+ /**
16
+ * 自定义类名
17
+ */
18
+ class?: string;
19
+ }
20
+
21
+ const {
22
+ size = '24px',
23
+ color = 'currentColor',
24
+ class: className = '',
25
+ } = Astro.props;
26
+ ---
27
+
28
+ <AstroIcon name="wallet" size={size} stroke={color} class={className} />
@@ -7,6 +7,7 @@ export { default as InfoIcon } from './InfoIcon.astro';
7
7
  export { default as LinkIcon } from './LinkIcon.astro';
8
8
  export { default as LinkedinIcon } from './LinkedinIcon.astro';
9
9
  export { default as MenuIcon } from './MenuIcon.astro';
10
+ export { default as RefreshIcon } from './RefreshIcon.astro';
10
11
  export { default as SearchIcon } from './SearchIcon.astro';
11
12
  export { default as SuccessIcon } from './SuccessIcon.astro';
12
13
  export { default as SunCloudyIcon } from './SunCloudyIcon.astro';
@@ -22,4 +23,24 @@ export { default as InfoCircle } from './InfoCircle.astro';
22
23
  export { default as InboxArchive } from './InboxArchive.astro';
23
24
  export { default as SettingsIcon } from './SettingsIcon.astro';
24
25
  export { default as ChevronDownIcon } from './ChevronDownIcon.astro';
26
+ export { default as HomeIcon } from './HomeIcon.astro';
27
+ export { default as DashboardIcon } from './DashboardIcon.astro';
28
+ export { default as ChartIcon } from './ChartIcon.astro';
29
+ export { default as DocumentIcon } from './DocumentIcon.astro';
30
+ export { default as NotificationIcon } from './NotificationIcon.astro';
31
+ export { default as UsersIcon } from './UsersIcon.astro';
32
+ export { default as MessageIcon } from './MessageIcon.astro';
33
+ export { default as MailIcon } from './MailIcon.astro';
34
+ export { default as FolderIcon } from './FolderIcon.astro';
35
+ export { default as StarIcon } from './StarIcon.astro';
36
+ export { default as HeartIcon } from './HeartIcon.astro';
37
+ export { default as SaveIcon } from './SaveIcon.astro';
38
+ export { default as EditIcon } from './EditIcon.astro';
39
+ export { default as DeleteIcon } from './DeleteIcon.astro';
40
+ export { default as ToolsIcon } from './ToolsIcon.astro';
41
+ export { default as WalletIcon } from './WalletIcon.astro';
42
+ export { default as ReportIcon } from './ReportIcon.astro';
43
+ export { default as SecurityIcon } from './SecurityIcon.astro';
44
+ export { default as UploadIcon } from './UploadIcon.astro';
45
+ export { default as DownloadIcon } from './DownloadIcon.astro';
25
46
 
@@ -1,11 +1,7 @@
1
- import AppLayout from './AppLayout.astro';
2
- import AppLayoutBasic from './AppLayoutBasic.astro';
3
- import BasicSourceCode from './AppLayoutBasic.astro?raw';
4
- import { extractSimpleExample } from '../utils/component';
1
+ /**
2
+ * 应用布局组件
3
+ */
5
4
 
6
- export { AppLayout, AppLayoutBasic };
5
+ import AppLayout from './AppLayout.astro';
7
6
 
8
- // 导出示例源代码
9
- export const AppLayoutExampleCodes = {
10
- Basic: extractSimpleExample(BasicSourceCode, 'AppLayout'),
11
- };
7
+ export { AppLayout };