gwan-design-system 0.1.7 → 0.1.9
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.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +212 -152
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +182 -122
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -123,6 +123,7 @@ interface IInput {
|
|
|
123
123
|
inputClassName?: string;
|
|
124
124
|
required?: boolean;
|
|
125
125
|
className?: string;
|
|
126
|
+
type?: string;
|
|
126
127
|
}
|
|
127
128
|
declare const Input: FC<IInput>;
|
|
128
129
|
|
|
@@ -147,6 +148,7 @@ interface IMenuItem {
|
|
|
147
148
|
route: string;
|
|
148
149
|
isActive: boolean;
|
|
149
150
|
isDivider: boolean;
|
|
151
|
+
onClick?: () => void;
|
|
150
152
|
}
|
|
151
153
|
interface INavBar {
|
|
152
154
|
menuItems: IMenuItem[];
|
|
@@ -161,6 +163,7 @@ interface INavBar {
|
|
|
161
163
|
isCollapsed?: boolean;
|
|
162
164
|
menuBackgroundColor?: string;
|
|
163
165
|
className?: string;
|
|
166
|
+
menuItemTextClass?: string;
|
|
164
167
|
}
|
|
165
168
|
declare const NavBar: FC<INavBar>;
|
|
166
169
|
|
|
@@ -296,6 +299,8 @@ declare const Covers: () => ReactNode;
|
|
|
296
299
|
|
|
297
300
|
declare const Colors: () => ReactNode;
|
|
298
301
|
|
|
302
|
+
declare const SignIn: () => ReactNode;
|
|
303
|
+
|
|
299
304
|
declare const SignOut: () => ReactNode;
|
|
300
305
|
|
|
301
306
|
declare const Filter: () => ReactNode;
|
|
@@ -310,6 +315,8 @@ declare const ChevLeft: () => ReactNode;
|
|
|
310
315
|
|
|
311
316
|
declare const ChevRight: () => ReactNode;
|
|
312
317
|
|
|
318
|
+
declare const ChevUp: () => ReactNode;
|
|
319
|
+
|
|
313
320
|
declare const Check: () => ReactNode;
|
|
314
321
|
|
|
315
322
|
declare const Circle: () => ReactNode;
|
|
@@ -318,8 +325,10 @@ declare const Upload: () => ReactNode;
|
|
|
318
325
|
|
|
319
326
|
declare const ArrowLeft: () => ReactNode;
|
|
320
327
|
|
|
328
|
+
declare const ArrowRight: () => ReactNode;
|
|
329
|
+
|
|
321
330
|
declare namespace index {
|
|
322
|
-
export { ArrowLeft as ArrowLeftSVG, Check as CheckSVG, ChevDown as ChevDownSVG, ChevLeft as ChevLeftSVG, ChevRight as ChevRightSVG, Circle as CircleSVG, Colors as ColorsSVG, Covers as CoversSVG, Cross as CrossSVG, Dashboard as DashboardSVG, Filter as FilterSVG, OrderInfo as OrderInfoSVG, Orders as OrdersSVG, Products as ProductsSVG, SignOut as SignOutSVG, Templates as TemplatesSVG, Upload as UploadSVG };
|
|
331
|
+
export { ArrowLeft as ArrowLeftSVG, ArrowRight as ArrowRightSVG, Check as CheckSVG, ChevDown as ChevDownSVG, ChevLeft as ChevLeftSVG, ChevRight as ChevRightSVG, ChevUp as ChevUpSVG, Circle as CircleSVG, Colors as ColorsSVG, Covers as CoversSVG, Cross as CrossSVG, Dashboard as DashboardSVG, Filter as FilterSVG, OrderInfo as OrderInfoSVG, Orders as OrdersSVG, Products as ProductsSVG, SignIn as SignInSVG, SignOut as SignOutSVG, Templates as TemplatesSVG, Upload as UploadSVG };
|
|
323
332
|
}
|
|
324
333
|
|
|
325
334
|
export { AVATAR_VARIANT, Avatar, BUTTON_VARIANTS, Banner, Button, Carousel, Checkbox, Chip, Ellipsis, FileUploader, FilterDropdown, type IAvatar, type IBanner, type IButton, type ICarousel, type ICheckbox, type IChip, type IEllipsis, type IFileUploader, type IFilter, type IFilterCategory, type IFilterOption, type IInput, type ILog, type IMenuItem, type IModal, type INavBar, type IPagination, type IPaging, type IRadioButton, type ISelectDropdown, type ISelectDropdownOption, type ISnackBar, type IState, type IStateBase, type ITable, type ITableColumn, type ITag, type ITimeLine, type ITooltip, index as Icons, Input, MODAL_SIZE, Modal, NavBar, Pagination, RadioButton, SNACK_BAR_TYPE, STATE_TYPE, SelectDropdown, Snackbar, State as States, TAG_TYPE, TOOLTIP_POSITION, Table, Tag, TimeLine, Tooltip };
|
package/dist/index.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ interface IInput {
|
|
|
123
123
|
inputClassName?: string;
|
|
124
124
|
required?: boolean;
|
|
125
125
|
className?: string;
|
|
126
|
+
type?: string;
|
|
126
127
|
}
|
|
127
128
|
declare const Input: FC<IInput>;
|
|
128
129
|
|
|
@@ -147,6 +148,7 @@ interface IMenuItem {
|
|
|
147
148
|
route: string;
|
|
148
149
|
isActive: boolean;
|
|
149
150
|
isDivider: boolean;
|
|
151
|
+
onClick?: () => void;
|
|
150
152
|
}
|
|
151
153
|
interface INavBar {
|
|
152
154
|
menuItems: IMenuItem[];
|
|
@@ -161,6 +163,7 @@ interface INavBar {
|
|
|
161
163
|
isCollapsed?: boolean;
|
|
162
164
|
menuBackgroundColor?: string;
|
|
163
165
|
className?: string;
|
|
166
|
+
menuItemTextClass?: string;
|
|
164
167
|
}
|
|
165
168
|
declare const NavBar: FC<INavBar>;
|
|
166
169
|
|
|
@@ -296,6 +299,8 @@ declare const Covers: () => ReactNode;
|
|
|
296
299
|
|
|
297
300
|
declare const Colors: () => ReactNode;
|
|
298
301
|
|
|
302
|
+
declare const SignIn: () => ReactNode;
|
|
303
|
+
|
|
299
304
|
declare const SignOut: () => ReactNode;
|
|
300
305
|
|
|
301
306
|
declare const Filter: () => ReactNode;
|
|
@@ -310,6 +315,8 @@ declare const ChevLeft: () => ReactNode;
|
|
|
310
315
|
|
|
311
316
|
declare const ChevRight: () => ReactNode;
|
|
312
317
|
|
|
318
|
+
declare const ChevUp: () => ReactNode;
|
|
319
|
+
|
|
313
320
|
declare const Check: () => ReactNode;
|
|
314
321
|
|
|
315
322
|
declare const Circle: () => ReactNode;
|
|
@@ -318,8 +325,10 @@ declare const Upload: () => ReactNode;
|
|
|
318
325
|
|
|
319
326
|
declare const ArrowLeft: () => ReactNode;
|
|
320
327
|
|
|
328
|
+
declare const ArrowRight: () => ReactNode;
|
|
329
|
+
|
|
321
330
|
declare namespace index {
|
|
322
|
-
export { ArrowLeft as ArrowLeftSVG, Check as CheckSVG, ChevDown as ChevDownSVG, ChevLeft as ChevLeftSVG, ChevRight as ChevRightSVG, Circle as CircleSVG, Colors as ColorsSVG, Covers as CoversSVG, Cross as CrossSVG, Dashboard as DashboardSVG, Filter as FilterSVG, OrderInfo as OrderInfoSVG, Orders as OrdersSVG, Products as ProductsSVG, SignOut as SignOutSVG, Templates as TemplatesSVG, Upload as UploadSVG };
|
|
331
|
+
export { ArrowLeft as ArrowLeftSVG, ArrowRight as ArrowRightSVG, Check as CheckSVG, ChevDown as ChevDownSVG, ChevLeft as ChevLeftSVG, ChevRight as ChevRightSVG, ChevUp as ChevUpSVG, Circle as CircleSVG, Colors as ColorsSVG, Covers as CoversSVG, Cross as CrossSVG, Dashboard as DashboardSVG, Filter as FilterSVG, OrderInfo as OrderInfoSVG, Orders as OrdersSVG, Products as ProductsSVG, SignIn as SignInSVG, SignOut as SignOutSVG, Templates as TemplatesSVG, Upload as UploadSVG };
|
|
323
332
|
}
|
|
324
333
|
|
|
325
334
|
export { AVATAR_VARIANT, Avatar, BUTTON_VARIANTS, Banner, Button, Carousel, Checkbox, Chip, Ellipsis, FileUploader, FilterDropdown, type IAvatar, type IBanner, type IButton, type ICarousel, type ICheckbox, type IChip, type IEllipsis, type IFileUploader, type IFilter, type IFilterCategory, type IFilterOption, type IInput, type ILog, type IMenuItem, type IModal, type INavBar, type IPagination, type IPaging, type IRadioButton, type ISelectDropdown, type ISelectDropdownOption, type ISnackBar, type IState, type IStateBase, type ITable, type ITableColumn, type ITag, type ITimeLine, type ITooltip, index as Icons, Input, MODAL_SIZE, Modal, NavBar, Pagination, RadioButton, SNACK_BAR_TYPE, STATE_TYPE, SelectDropdown, Snackbar, State as States, TAG_TYPE, TOOLTIP_POSITION, Table, Tag, TimeLine, Tooltip };
|