@aristobyte-ui/presets 1.0.33 → 1.0.34
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/dist/index.css +46 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +89 -71
- package/dist/index.d.ts +89 -71
- package/dist/index.js +291 -250
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +222 -181
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.css
CHANGED
|
@@ -54,17 +54,63 @@
|
|
|
54
54
|
/* components/ShoppingList/ShoppingList.module.scss */
|
|
55
55
|
/* components/SocialEngagement/SocialEngagement.module.scss */
|
|
56
56
|
/* components/SocialMediaCard/SocialMediaCard.module.scss */
|
|
57
|
+
.SocialMediaCard_module_social-media-card {
|
|
58
|
+
background-color: #101828;
|
|
59
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
60
|
+
display: flex;
|
|
61
|
+
flex-direction: column;
|
|
62
|
+
max-width: 324px;
|
|
63
|
+
padding: 22px;
|
|
64
|
+
width: 100%;
|
|
65
|
+
}
|
|
66
|
+
.SocialMediaCard_module_social-media-card-radius--none {
|
|
67
|
+
border-radius: 0rem;
|
|
68
|
+
}
|
|
69
|
+
.SocialMediaCard_module_social-media-card-radius--sm {
|
|
70
|
+
border-radius: 0.25rem;
|
|
71
|
+
}
|
|
72
|
+
.SocialMediaCard_module_social-media-card-radius--md {
|
|
73
|
+
border-radius: 0.5rem;
|
|
74
|
+
}
|
|
75
|
+
.SocialMediaCard_module_social-media-card-radius--lg {
|
|
76
|
+
border-radius: 0.625rem;
|
|
77
|
+
}
|
|
78
|
+
.SocialMediaCard_module_social-media-card-radius--full {
|
|
79
|
+
border-radius: 1.5rem;
|
|
80
|
+
}
|
|
81
|
+
.SocialMediaCard_module_social-media-card__header {
|
|
82
|
+
align-items: center;
|
|
83
|
+
display: flex;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
width: 100%;
|
|
86
|
+
}
|
|
87
|
+
.SocialMediaCard_module_social-media-card__text {
|
|
88
|
+
width: 100%;
|
|
89
|
+
}
|
|
90
|
+
|
|
57
91
|
/* components/StatisticsCards/StatisticsCards.module.scss */
|
|
92
|
+
|
|
58
93
|
/* components/StatusIndicators/StatusIndicators.module.scss */
|
|
94
|
+
|
|
59
95
|
/* components/StockMarket/StockMarket.module.scss */
|
|
96
|
+
|
|
60
97
|
/* components/StreakCounter/StreakCounter.module.scss */
|
|
98
|
+
|
|
61
99
|
/* components/SystemStatus/SystemStatus.module.scss */
|
|
100
|
+
|
|
62
101
|
/* components/TaskManager/TaskManager.module.scss */
|
|
102
|
+
|
|
63
103
|
/* components/TeamCollaborationWidget/TeamCollaborationWidget.module.scss */
|
|
104
|
+
|
|
64
105
|
/* components/TimeLocationWidget/TimeLocationWidget.module.scss */
|
|
106
|
+
|
|
65
107
|
/* components/TodoList/TodoList.module.scss */
|
|
108
|
+
|
|
66
109
|
/* components/ToolWidget/ToolWidget.module.scss */
|
|
110
|
+
|
|
67
111
|
/* components/TravelPlanner/TravelPlanner.module.scss */
|
|
112
|
+
|
|
68
113
|
/* components/VideoCallWidget/VideoCallWidget.module.scss */
|
|
114
|
+
|
|
69
115
|
/* components/WeatherWidget/WeatherWidget.module.scss */
|
|
70
116
|
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"sources":["../components/SocialMediaCard.module.scss","../../../../node_modules/@aristobyte-ui/utils/styles/_settings.scss"],"sourcesContent":["@use \"@aristobyte-ui/utils/styles/settings\" as *;\n\n.social-media-card {\n background-color: #101828; // @TODO: @COLOR\n box-shadow: $shadow-md;\n display: flex;\n flex-direction: column;\n max-width: calc(22px * 2 + 280px);\n padding: 22px;\n width: 100%;\n\n &-radius {\n &--none {\n border-radius: 0rem; // 0px\n }\n\n &--sm {\n border-radius: 0.25rem; // 4px\n }\n\n &--md {\n border-radius: 0.5rem; // 8px\n }\n\n &--lg {\n border-radius: 0.625rem; // 10px\n }\n\n &--full {\n border-radius: 1.5rem; // 24px\n }\n }\n\n &__header {\n align-items: center;\n display: flex;\n justify-content: center;\n width: 100%;\n }\n\n &__text {\n width: 100%;\n }\n}\n","// =========================================== //\n// AristoByte UI - Style Settings //\n// =========================================== //\n\n// === Design Tokens — Color Palette === //\n\n// Base\n$white: #ffffff;\n$black: #000000;\n$transparent: transparent;\n\n// === Black Transparent Scale === //\n$black-transparent-100: rgba(0, 0, 0, 0.1);\n$black-transparent-200: rgba(0, 0, 0, 0.2);\n$black-transparent-300: rgba(0, 0, 0, 0.3);\n$black-transparent-400: rgba(0, 0, 0, 0.4);\n$black-transparent-500: rgba(0, 0, 0, 0.5);\n$black-transparent-600: rgba(0, 0, 0, 0.6);\n$black-transparent-700: rgba(0, 0, 0, 0.7);\n$black-transparent-800: rgba(0, 0, 0, 0.8);\n$black-transparent-900: rgba(0, 0, 0, 0.9);\n\n// === Black Transparent Scale === //\n$white-transparent-100: rgba(255, 255, 255, 0.1);\n$white-transparent-200: rgba(255, 255, 255, 0.2);\n$white-transparent-300: rgba(255, 255, 255, 0.3);\n$white-transparent-400: rgba(255, 255, 255, 0.4);\n$white-transparent-500: rgba(255, 255, 255, 0.5);\n$white-transparent-600: rgba(255, 255, 255, 0.6);\n$white-transparent-700: rgba(255, 255, 255, 0.7);\n$white-transparent-800: rgba(255, 255, 255, 0.8);\n$white-transparent-900: rgba(255, 255, 255, 0.9);\n\n// === Neutral Scale (Grey) === //\n$grey-50: #f9fafb;\n$grey-100: #f3f4f6;\n$grey-200: #e5e7eb;\n$grey-300: #d1d5db;\n$grey-400: #9ca3af;\n$grey-500: #6b7280;\n$grey-600: #4b5563;\n$grey-700: #374151;\n$grey-800: #1f2937;\n$grey-900: #111827;\n\n// === Primary Scale (Blue) === //\n$blue-50: #eff6ff;\n$blue-100: #dbeafe;\n$blue-200: #bfdbfe;\n$blue-300: #93c5fd;\n$blue-400: #60a5fa;\n$blue-500: #3b82f6;\n$blue-600: #2563eb; // Main\n$blue-700: #1d4ed8; // Hover\n$blue-800: #1e40af;\n$blue-900: #1e3a8a;\n\n// === Secondary Scale (Indigo) === //\n$indigo-50: #eef2ff;\n$indigo-100: #e0e7ff;\n$indigo-200: #c7d2fe;\n$indigo-300: #a5b4fc;\n$indigo-400: #818cf8;\n$indigo-500: #6366f1;\n$indigo-600: #4f46e5; // Main\n$indigo-700: #4338ca; // Hover\n\n// === Error Scale (Red) === //\n$red-50: #fef2f2;\n$red-100: #fee2e2;\n$red-200: #fecaca;\n$red-300: #fca5a5;\n$red-400: #f87171;\n$red-500: #ef4444;\n$red-600: #dc2626; // Main\n$red-700: #b91c1c; // Hover\n\n// === Success Scale (Green) === //\n$green-50: #f0fdf4;\n$green-100: #dcfce7;\n$green-200: #bbf7d0;\n$green-300: #86efac;\n$green-400: #4ade80;\n$green-500: #22c55e;\n$green-600: #16a34a; // Main\n$green-700: #15803d; // Hover\n\n// === Warning Scale (Amber) === //\n$amber-50: #fffbeb;\n$amber-100: #fef3c7;\n$amber-200: #fde68a;\n$amber-300: #fcd34d;\n$amber-400: #fbbf24;\n$amber-500: #f59e0b;\n$amber-600: #d97706; // Main\n$amber-700: #b45309; // Hover\n\n// === Semantic Tokens === //\n$color-default: $grey-800;\n$color-default-hover: $grey-900;\n$color-default-disabled: rgba($color-default, 0.5);\n\n$color-primary: $blue-600;\n$color-primary-hover: $blue-700;\n$color-primary-disabled: rgba($color-primary, 0.5);\n\n$color-secondary: $indigo-600;\n$color-secondary-hover: $indigo-700;\n$color-secondary-disabled: rgba($color-secondary, 0.5);\n\n$color-error: $red-600;\n$color-error-hover: $red-700;\n$color-error-disabled: rgba($color-error, 0.5);\n\n$color-success: $green-600;\n$color-success-hover: $green-700;\n$color-success-disabled: rgba($color-success, 0.5);\n\n$color-warning: $amber-600;\n$color-warning-hover: $amber-700;\n$color-warning-disabled: rgba($color-warning, 0.5);\n\n$text-color-white: $white;\n$text-color-black: $black;\n$text-color-white-disabled: rgba($white, 0.5);\n$text-color-black-disabled: rgba($black, 0.5);\n\n// === Shadows === //\n//@TODO: @SHADOW\n$shadow-sm: 0 1px 2px 0 rgba($black, 0.05);\n$shadow-md:\n 0 4px 6px -1px rgba($black, 0.1),\n 0 2px 4px -1px rgba($black, 0.06);\n$shadow-lg:\n 0 10px 15px -3px rgba($black, 0.1),\n 0 4px 6px -2px rgba($black, 0.05);\n\n// === Font families === //\n$font-family-sans: \"Inter\", sans-serif;\n$font-family-serif: \"Georgia\", serif;\n$font-family-mono: \"Fira Code\", monospace;\n\n// === Font weights === //\n$font-weight-regular: 400;\n$font-weight-medium: 500;\n$font-weight-semibold: 600;\n$font-weight-bold: 700;\n\n// === Line heights === //\n$line-height-tight: 1.2;\n$line-height-snug: 1.375;\n$line-height-normal: 1.5;\n$line-height-loose: 1.625;\n\n// === Font Sizes — Semantic Tokens === //\n\n// === Titles === //\n$font-size-hero: 3rem; // 48px\n$font-size-title-1: 2.25rem; // 36px\n$font-size-title-2: 1.875rem; // 30px\n$font-size-title-3: 1.5rem; // 24px\n\n// === Subtitles === //\n$font-size-subtitle-1: 1.25rem; // 20px\n$font-size-subtitle-2: 1.125rem; // 18px\n\n// === Body text === //\n$font-size-body-lg: 1rem; // 16px\n$font-size-body-md: 0.9375rem; // 15px\n$font-size-body-sm: 0.875rem; // 14px\n\n// === Captions / Descriptions === //\n$font-size-caption: 0.75rem; // 12px\n$font-size-footnote: 0.6875rem; // 11px\n\n// === Buttons === //\n$font-size-button-lg: 1rem; // 16px\n$font-size-button-md: 0.875rem; // 14px\n$font-size-button-sm: 0.75rem; // 12px\n\n// === Animations === //\n\n$cubic-bezier-primary: cubic-bezier(0.55, -0.19, 0.59, 0.95);\n$cubic-bezier-secondary: cubic-bezier(0.175, 0.885, 0.32, 1.275);\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,CAAAA;AACE,oBAAA;AACA,cC+HA,EAAA,IAAA,IAAA,KAAA,KAAA,CAAA,EAAA,CAAA,EAAA,CAAA,EAAA,IAAA,EAAA,EAAA,IAAA,IAAA,KAAA,KAAA,CAAA,EAAA,CAAA,EAAA,CAAA,EAAA;AD9HA,WAAA;AACA,kBAAA;AACA,aAAA;AACA,WAAA;AACA,SAAA;;AAGE,CAAAC;AACE,iBAAA;;AAGF,CAAAC;AACE,iBAAA;;AAGF,CAAAC;AACE,iBAAA;;AAGF,CAAAC;AACE,iBAAA;;AAGF,CAAAC;AACE,iBAAA;;AAIJ,CAAAC;AACE,eAAA;AACA,WAAA;AACA,mBAAA;AACA,SAAA;;AAGF,CAAAC;AACE,SAAA;;","names":["social-media-card","social-media-card-radius--none","social-media-card-radius--sm","social-media-card-radius--md","social-media-card-radius--lg","social-media-card-radius--full","social-media-card__header","social-media-card__text"]}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,279 +1,297 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import { IButton } from '@aristobyte-ui/button';
|
|
2
3
|
|
|
3
4
|
interface IActionButtons {
|
|
4
5
|
}
|
|
5
|
-
declare const
|
|
6
|
+
declare const ActionButtons: React.FC<IActionButtons>;
|
|
6
7
|
|
|
7
8
|
interface IActivityFeed {
|
|
8
9
|
}
|
|
9
|
-
declare const
|
|
10
|
+
declare const ActivityFeed: React.FC<IActivityFeed>;
|
|
10
11
|
|
|
11
12
|
interface IAIAssistant {
|
|
12
13
|
}
|
|
13
|
-
declare const
|
|
14
|
+
declare const AIAssistant: React.FC<IAIAssistant>;
|
|
14
15
|
|
|
15
16
|
interface IAnalyticsDashboard {
|
|
16
17
|
}
|
|
17
|
-
declare const
|
|
18
|
+
declare const AnalyticsDashboard: React.FC<IAnalyticsDashboard>;
|
|
18
19
|
|
|
19
20
|
interface IBudgetTracker {
|
|
20
21
|
}
|
|
21
|
-
declare const
|
|
22
|
+
declare const BudgetTracker: React.FC<IBudgetTracker>;
|
|
22
23
|
|
|
23
24
|
interface ICalendarWidget {
|
|
24
25
|
}
|
|
25
|
-
declare const
|
|
26
|
+
declare const CalendarWidget: React.FC<ICalendarWidget>;
|
|
26
27
|
|
|
27
28
|
interface IChatMessages {
|
|
28
29
|
}
|
|
29
|
-
declare const
|
|
30
|
+
declare const ChatMessages: React.FC<IChatMessages>;
|
|
30
31
|
|
|
31
32
|
interface ICloudStorage {
|
|
32
33
|
}
|
|
33
|
-
declare const
|
|
34
|
+
declare const CloudStorage: React.FC<ICloudStorage>;
|
|
34
35
|
|
|
35
36
|
interface ICodeEditor {
|
|
36
37
|
}
|
|
37
|
-
declare const
|
|
38
|
+
declare const CodeEditor: React.FC<ICodeEditor>;
|
|
38
39
|
|
|
39
40
|
interface ICodeStats {
|
|
40
41
|
}
|
|
41
|
-
declare const
|
|
42
|
+
declare const CodeStats: React.FC<ICodeStats>;
|
|
42
43
|
|
|
43
44
|
interface IColorPaletteWidget {
|
|
44
45
|
}
|
|
45
|
-
declare const
|
|
46
|
+
declare const ColorPaletteWidget: React.FC<IColorPaletteWidget>;
|
|
46
47
|
|
|
47
48
|
interface IContactCard {
|
|
48
49
|
}
|
|
49
|
-
declare const
|
|
50
|
+
declare const ContactCard: React.FC<IContactCard>;
|
|
50
51
|
|
|
51
52
|
interface ICryptocurrencyWidget {
|
|
52
53
|
}
|
|
53
|
-
declare const
|
|
54
|
+
declare const CryptocurrencyWidget: React.FC<ICryptocurrencyWidget>;
|
|
54
55
|
|
|
55
56
|
interface IDatabaseWidget {
|
|
56
57
|
}
|
|
57
|
-
declare const
|
|
58
|
+
declare const DatabaseWidget: React.FC<IDatabaseWidget>;
|
|
58
59
|
|
|
59
60
|
interface IDesignSystem {
|
|
60
61
|
}
|
|
61
|
-
declare const
|
|
62
|
+
declare const DesignSystem: React.FC<IDesignSystem>;
|
|
62
63
|
|
|
63
64
|
interface IDeviceStatus {
|
|
64
65
|
}
|
|
65
|
-
declare const
|
|
66
|
+
declare const DeviceStatus: React.FC<IDeviceStatus>;
|
|
66
67
|
|
|
67
68
|
interface IDocumentScanner {
|
|
68
69
|
}
|
|
69
|
-
declare const
|
|
70
|
+
declare const DocumentScanner: React.FC<IDocumentScanner>;
|
|
70
71
|
|
|
71
72
|
interface IEmailDashboard {
|
|
72
73
|
}
|
|
73
|
-
declare const
|
|
74
|
+
declare const EmailDashboard: React.FC<IEmailDashboard>;
|
|
74
75
|
|
|
75
76
|
interface IEnergyMeter {
|
|
76
77
|
}
|
|
77
|
-
declare const
|
|
78
|
+
declare const EnergyMeter: React.FC<IEnergyMeter>;
|
|
78
79
|
|
|
79
80
|
interface IFileManager {
|
|
80
81
|
}
|
|
81
|
-
declare const
|
|
82
|
+
declare const FileManager: React.FC<IFileManager>;
|
|
82
83
|
|
|
83
84
|
interface IFileUploadArea {
|
|
84
85
|
}
|
|
85
|
-
declare const
|
|
86
|
+
declare const FileUploadArea: React.FC<IFileUploadArea>;
|
|
86
87
|
|
|
87
88
|
interface IFitnessTracker {
|
|
88
89
|
}
|
|
89
|
-
declare const
|
|
90
|
+
declare const FitnessTracker: React.FC<IFitnessTracker>;
|
|
90
91
|
|
|
91
92
|
interface IGamingControllerWidget {
|
|
92
93
|
}
|
|
93
|
-
declare const
|
|
94
|
+
declare const GamingControllerWidget: React.FC<IGamingControllerWidget>;
|
|
94
95
|
|
|
95
96
|
interface IHabitTracker {
|
|
96
97
|
}
|
|
97
|
-
declare const
|
|
98
|
+
declare const HabitTracker: React.FC<IHabitTracker>;
|
|
98
99
|
|
|
99
100
|
interface IHealthMonitor {
|
|
100
101
|
}
|
|
101
|
-
declare const
|
|
102
|
+
declare const HealthMonitor: React.FC<IHealthMonitor>;
|
|
102
103
|
|
|
103
104
|
interface IIdeaBulbWidget {
|
|
104
105
|
}
|
|
105
|
-
declare const
|
|
106
|
+
declare const IdeaBulbWidget: React.FC<IIdeaBulbWidget>;
|
|
106
107
|
|
|
107
108
|
interface IInspirationWidget {
|
|
108
109
|
}
|
|
109
|
-
declare const
|
|
110
|
+
declare const InspirationWidget: React.FC<IInspirationWidget>;
|
|
110
111
|
|
|
111
112
|
interface ILanguageLearning {
|
|
112
113
|
}
|
|
113
|
-
declare const
|
|
114
|
+
declare const LanguageLearning: React.FC<ILanguageLearning>;
|
|
114
115
|
|
|
115
116
|
interface ILayerStackWidget {
|
|
116
117
|
}
|
|
117
|
-
declare const
|
|
118
|
+
declare const LayerStackWidget: React.FC<ILayerStackWidget>;
|
|
118
119
|
|
|
119
120
|
interface IMediaControls {
|
|
120
121
|
}
|
|
121
|
-
declare const
|
|
122
|
+
declare const MediaControls: React.FC<IMediaControls>;
|
|
122
123
|
|
|
123
124
|
interface IMiniMenu {
|
|
124
125
|
}
|
|
125
|
-
declare const
|
|
126
|
+
declare const MiniMenu: React.FC<IMiniMenu>;
|
|
126
127
|
|
|
127
128
|
interface IMouseTracker {
|
|
128
129
|
}
|
|
129
|
-
declare const
|
|
130
|
+
declare const MouseTracker: React.FC<IMouseTracker>;
|
|
130
131
|
|
|
131
132
|
interface IMusicPlayer {
|
|
132
133
|
}
|
|
133
|
-
declare const
|
|
134
|
+
declare const MusicPlayer: React.FC<IMusicPlayer>;
|
|
134
135
|
|
|
135
136
|
interface IMusicProduction {
|
|
136
137
|
}
|
|
137
|
-
declare const
|
|
138
|
+
declare const MusicProduction: React.FC<IMusicProduction>;
|
|
138
139
|
|
|
139
140
|
interface INatureWidget {
|
|
140
141
|
}
|
|
141
|
-
declare const
|
|
142
|
+
declare const NatureWidget: React.FC<INatureWidget>;
|
|
142
143
|
|
|
143
144
|
interface INavigationPills {
|
|
144
145
|
}
|
|
145
|
-
declare const
|
|
146
|
+
declare const NavigationPills: React.FC<INavigationPills>;
|
|
146
147
|
|
|
147
148
|
interface INetworkStatus {
|
|
148
149
|
}
|
|
149
|
-
declare const
|
|
150
|
+
declare const NetworkStatus: React.FC<INetworkStatus>;
|
|
150
151
|
|
|
151
152
|
interface INotificationBadges {
|
|
152
153
|
}
|
|
153
|
-
declare const
|
|
154
|
+
declare const NotificationBadges: React.FC<INotificationBadges>;
|
|
154
155
|
|
|
155
156
|
interface INotificationCards {
|
|
156
157
|
}
|
|
157
|
-
declare const
|
|
158
|
+
declare const NotificationCards: React.FC<INotificationCards>;
|
|
158
159
|
|
|
159
160
|
interface IOfficeBuildingWidget {
|
|
160
161
|
}
|
|
161
|
-
declare const
|
|
162
|
+
declare const OfficeBuildingWidget: React.FC<IOfficeBuildingWidget>;
|
|
162
163
|
|
|
163
164
|
interface IPasswordManager {
|
|
164
165
|
}
|
|
165
|
-
declare const
|
|
166
|
+
declare const PasswordManager: React.FC<IPasswordManager>;
|
|
166
167
|
|
|
167
168
|
interface IPhotoEditor {
|
|
168
169
|
}
|
|
169
|
-
declare const
|
|
170
|
+
declare const PhotoEditor: React.FC<IPhotoEditor>;
|
|
170
171
|
|
|
171
172
|
interface IPomodoroTimer {
|
|
172
173
|
}
|
|
173
|
-
declare const
|
|
174
|
+
declare const PomodoroTimer: React.FC<IPomodoroTimer>;
|
|
174
175
|
|
|
175
176
|
interface IPricingCard {
|
|
176
177
|
}
|
|
177
|
-
declare const
|
|
178
|
+
declare const PricingCard: React.FC<IPricingCard>;
|
|
178
179
|
|
|
179
180
|
interface IProfileBadge {
|
|
180
181
|
}
|
|
181
|
-
declare const
|
|
182
|
+
declare const ProfileBadge: React.FC<IProfileBadge>;
|
|
182
183
|
|
|
183
184
|
interface IProgressTracker {
|
|
184
185
|
}
|
|
185
|
-
declare const
|
|
186
|
+
declare const ProgressTracker: React.FC<IProgressTracker>;
|
|
186
187
|
|
|
187
188
|
interface IQuickActions {
|
|
188
189
|
}
|
|
189
|
-
declare const
|
|
190
|
+
declare const QuickActions: React.FC<IQuickActions>;
|
|
190
191
|
|
|
191
192
|
interface IQuickStats {
|
|
192
193
|
}
|
|
193
|
-
declare const
|
|
194
|
+
declare const QuickStats: React.FC<IQuickStats>;
|
|
194
195
|
|
|
195
196
|
interface IReadingProgress {
|
|
196
197
|
}
|
|
197
|
-
declare const
|
|
198
|
+
declare const ReadingProgress: React.FC<IReadingProgress>;
|
|
198
199
|
|
|
199
200
|
interface IRecipeFinder {
|
|
200
201
|
}
|
|
201
|
-
declare const
|
|
202
|
+
declare const RecipeFinder: React.FC<IRecipeFinder>;
|
|
202
203
|
|
|
203
204
|
interface IRocketLaunchWidget {
|
|
204
205
|
}
|
|
205
|
-
declare const
|
|
206
|
+
declare const RocketLaunchWidget: React.FC<IRocketLaunchWidget>;
|
|
206
207
|
|
|
207
208
|
interface ISettingsPanel {
|
|
208
209
|
}
|
|
209
|
-
declare const
|
|
210
|
+
declare const SettingsPanel: React.FC<ISettingsPanel>;
|
|
210
211
|
|
|
211
212
|
interface IShoppingCart {
|
|
212
213
|
}
|
|
213
|
-
declare const
|
|
214
|
+
declare const ShoppingCart: React.FC<IShoppingCart>;
|
|
214
215
|
|
|
215
216
|
interface IShoppingList {
|
|
216
217
|
}
|
|
217
|
-
declare const
|
|
218
|
+
declare const ShoppingList: React.FC<IShoppingList>;
|
|
218
219
|
|
|
219
220
|
interface ISocialEngagement {
|
|
220
221
|
}
|
|
221
|
-
declare const
|
|
222
|
+
declare const SocialEngagement: React.FC<ISocialEngagement>;
|
|
222
223
|
|
|
223
224
|
interface ISocialMediaCard {
|
|
224
|
-
|
|
225
|
-
|
|
225
|
+
variant?: "default" | "compact" | "highlight";
|
|
226
|
+
radius?: "none" | "sm" | "md" | "lg" | "full";
|
|
227
|
+
avatar?: string;
|
|
228
|
+
avatarIcon?: () => React.JSX.Element;
|
|
229
|
+
title?: string;
|
|
230
|
+
subtitle?: string;
|
|
231
|
+
button?: IButton;
|
|
232
|
+
content?: React.ReactElement | React.ReactNode | string;
|
|
233
|
+
media?: React.ReactNode;
|
|
234
|
+
tags?: string[];
|
|
235
|
+
timestamp?: string | Date;
|
|
236
|
+
metrics?: {
|
|
237
|
+
icon?: () => React.JSX.Element;
|
|
238
|
+
label?: string;
|
|
239
|
+
value?: string;
|
|
240
|
+
}[];
|
|
241
|
+
className?: string;
|
|
242
|
+
}
|
|
243
|
+
declare const SocialMediaCard: React.FC<ISocialMediaCard>;
|
|
226
244
|
|
|
227
245
|
interface IStatisticsCards {
|
|
228
246
|
}
|
|
229
|
-
declare const
|
|
247
|
+
declare const StatisticsCards: React.FC<IStatisticsCards>;
|
|
230
248
|
|
|
231
249
|
interface IStatusIndicators {
|
|
232
250
|
}
|
|
233
|
-
declare const
|
|
251
|
+
declare const StatusIndicators: React.FC<IStatusIndicators>;
|
|
234
252
|
|
|
235
253
|
interface IStockMarket {
|
|
236
254
|
}
|
|
237
|
-
declare const
|
|
255
|
+
declare const StockMarket: React.FC<IStockMarket>;
|
|
238
256
|
|
|
239
257
|
interface IStreakCounter {
|
|
240
258
|
}
|
|
241
|
-
declare const
|
|
259
|
+
declare const StreakCounter: React.FC<IStreakCounter>;
|
|
242
260
|
|
|
243
261
|
interface ISystemStatus {
|
|
244
262
|
}
|
|
245
|
-
declare const
|
|
263
|
+
declare const SystemStatus: React.FC<ISystemStatus>;
|
|
246
264
|
|
|
247
265
|
interface ITaskManager {
|
|
248
266
|
}
|
|
249
|
-
declare const
|
|
267
|
+
declare const TaskManager: React.FC<ITaskManager>;
|
|
250
268
|
|
|
251
269
|
interface ITeamCollaborationWidget {
|
|
252
270
|
}
|
|
253
|
-
declare const
|
|
271
|
+
declare const TeamCollaborationWidget: React.FC<ITeamCollaborationWidget>;
|
|
254
272
|
|
|
255
273
|
interface ITimeLocationWidget {
|
|
256
274
|
}
|
|
257
|
-
declare const
|
|
275
|
+
declare const TimeLocationWidget: React.FC<ITimeLocationWidget>;
|
|
258
276
|
|
|
259
277
|
interface ITodoList {
|
|
260
278
|
}
|
|
261
|
-
declare const
|
|
279
|
+
declare const TodoList: React.FC<ITodoList>;
|
|
262
280
|
|
|
263
281
|
interface IToolWidget {
|
|
264
282
|
}
|
|
265
|
-
declare const
|
|
283
|
+
declare const ToolWidget: React.FC<IToolWidget>;
|
|
266
284
|
|
|
267
285
|
interface ITravelPlanner {
|
|
268
286
|
}
|
|
269
|
-
declare const
|
|
287
|
+
declare const TravelPlanner: React.FC<ITravelPlanner>;
|
|
270
288
|
|
|
271
289
|
interface IVideoCallWidget {
|
|
272
290
|
}
|
|
273
|
-
declare const
|
|
291
|
+
declare const VideoCallWidget: React.FC<IVideoCallWidget>;
|
|
274
292
|
|
|
275
293
|
interface IWeatherWidget {
|
|
276
294
|
}
|
|
277
|
-
declare const
|
|
295
|
+
declare const WeatherWidget: React.FC<IWeatherWidget>;
|
|
278
296
|
|
|
279
|
-
export { IAIAssistant, IActionButtons, IActivityFeed, IAnalyticsDashboard, IBudgetTracker, ICalendarWidget, IChatMessages, ICloudStorage, ICodeEditor, ICodeStats, IColorPaletteWidget, IContactCard, ICryptocurrencyWidget, IDatabaseWidget, IDesignSystem, IDeviceStatus, IDocumentScanner, IEmailDashboard, IEnergyMeter, IFileManager, IFileUploadArea, IFitnessTracker, IGamingControllerWidget, IHabitTracker, IHealthMonitor, IIdeaBulbWidget, IInspirationWidget, ILanguageLearning, ILayerStackWidget, IMediaControls, IMiniMenu, IMouseTracker, IMusicPlayer, IMusicProduction, INatureWidget, INavigationPills, INetworkStatus, INotificationBadges, INotificationCards, IOfficeBuildingWidget, IPasswordManager, IPhotoEditor, IPomodoroTimer, IPricingCard, IProfileBadge, IProgressTracker, IQuickActions, IQuickStats, IReadingProgress, IRecipeFinder, IRocketLaunchWidget, ISettingsPanel, IShoppingCart, IShoppingList, ISocialEngagement, ISocialMediaCard, IStatisticsCards, IStatusIndicators, IStockMarket, IStreakCounter, ISystemStatus, ITaskManager, ITeamCollaborationWidget, ITimeLocationWidget, ITodoList, IToolWidget, ITravelPlanner, IVideoCallWidget, IWeatherWidget };
|
|
297
|
+
export { AIAssistant, ActionButtons, ActivityFeed, AnalyticsDashboard, BudgetTracker, CalendarWidget, ChatMessages, CloudStorage, CodeEditor, CodeStats, ColorPaletteWidget, ContactCard, CryptocurrencyWidget, DatabaseWidget, DesignSystem, DeviceStatus, DocumentScanner, EmailDashboard, EnergyMeter, FileManager, FileUploadArea, FitnessTracker, GamingControllerWidget, HabitTracker, HealthMonitor, type IAIAssistant, type IActionButtons, type IActivityFeed, type IAnalyticsDashboard, type IBudgetTracker, type ICalendarWidget, type IChatMessages, type ICloudStorage, type ICodeEditor, type ICodeStats, type IColorPaletteWidget, type IContactCard, type ICryptocurrencyWidget, type IDatabaseWidget, type IDesignSystem, type IDeviceStatus, type IDocumentScanner, type IEmailDashboard, type IEnergyMeter, type IFileManager, type IFileUploadArea, type IFitnessTracker, type IGamingControllerWidget, type IHabitTracker, type IHealthMonitor, type IIdeaBulbWidget, type IInspirationWidget, type ILanguageLearning, type ILayerStackWidget, type IMediaControls, type IMiniMenu, type IMouseTracker, type IMusicPlayer, type IMusicProduction, type INatureWidget, type INavigationPills, type INetworkStatus, type INotificationBadges, type INotificationCards, type IOfficeBuildingWidget, type IPasswordManager, type IPhotoEditor, type IPomodoroTimer, type IPricingCard, type IProfileBadge, type IProgressTracker, type IQuickActions, type IQuickStats, type IReadingProgress, type IRecipeFinder, type IRocketLaunchWidget, type ISettingsPanel, type IShoppingCart, type IShoppingList, type ISocialEngagement, type ISocialMediaCard, type IStatisticsCards, type IStatusIndicators, type IStockMarket, type IStreakCounter, type ISystemStatus, type ITaskManager, type ITeamCollaborationWidget, type ITimeLocationWidget, type ITodoList, type IToolWidget, type ITravelPlanner, type IVideoCallWidget, type IWeatherWidget, IdeaBulbWidget, InspirationWidget, LanguageLearning, LayerStackWidget, MediaControls, MiniMenu, MouseTracker, MusicPlayer, MusicProduction, NatureWidget, NavigationPills, NetworkStatus, NotificationBadges, NotificationCards, OfficeBuildingWidget, PasswordManager, PhotoEditor, PomodoroTimer, PricingCard, ProfileBadge, ProgressTracker, QuickActions, QuickStats, ReadingProgress, RecipeFinder, RocketLaunchWidget, SettingsPanel, ShoppingCart, ShoppingList, SocialEngagement, SocialMediaCard, StatisticsCards, StatusIndicators, StockMarket, StreakCounter, SystemStatus, TaskManager, TeamCollaborationWidget, TimeLocationWidget, TodoList, ToolWidget, TravelPlanner, VideoCallWidget, WeatherWidget };
|