@tetjana/flowmakers-ds 0.1.6 → 0.1.8
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/components/Button.figma.d.ts +1 -0
- package/dist/components/CardCareer.d.ts +18 -0
- package/dist/components/CardCareer.figma.d.ts +1 -0
- package/dist/components/CardTest.d.ts +19 -0
- package/dist/components/CardTest.figma.d.ts +1 -0
- package/dist/components/Checkbox.figma.d.ts +1 -0
- package/dist/components/DashboardTitle.d.ts +12 -0
- package/dist/components/DatePicker.d.ts +10 -0
- package/dist/components/Dropdown.d.ts +14 -0
- package/dist/components/Footer.figma.d.ts +1 -0
- package/dist/components/Header.figma.d.ts +1 -0
- package/dist/components/IconButton.d.ts +12 -0
- package/dist/components/IconButton.figma.d.ts +1 -0
- package/dist/components/Input.figma.d.ts +1 -0
- package/dist/components/ListItem.d.ts +8 -0
- package/dist/components/NavMenu.d.ts +18 -0
- package/dist/components/NavMenu.figma.d.ts +1 -0
- package/dist/components/Pagination.d.ts +15 -0
- package/dist/components/Pagination.figma.d.ts +1 -0
- package/dist/components/Price.d.ts +13 -0
- package/dist/components/PriceCard.d.ts +15 -0
- package/dist/components/ProcessStep.d.ts +12 -0
- package/dist/components/Question.d.ts +12 -0
- package/dist/components/RadioButton.d.ts +8 -0
- package/dist/components/Search.d.ts +7 -0
- package/dist/components/SectionTitle.d.ts +14 -0
- package/dist/components/SegmentedControl.d.ts +14 -0
- package/dist/components/SegmentedControl.figma.d.ts +1 -0
- package/dist/components/SignupForm.d.ts +10 -0
- package/dist/components/Stepper.d.ts +18 -0
- package/dist/components/StepperProgress.d.ts +13 -0
- package/dist/components/Tag.figma.d.ts +1 -0
- package/dist/components/TagBig.d.ts +9 -0
- package/dist/components/Tariffs.d.ts +12 -0
- package/dist/components/TasksWidget.d.ts +13 -0
- package/dist/components/TestimonialCard.d.ts +11 -0
- package/dist/components/TimePicker.d.ts +10 -0
- package/dist/components/Toggle.figma.d.ts +1 -0
- package/dist/components/WidgetCard.d.ts +65 -0
- package/dist/components/WidgetCard.figma.d.ts +1 -0
- package/dist/demo.d.ts +3 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +52 -0
- package/dist/index.esm.js +816 -98
- package/dist/styles.css +1 -1
- package/guidelines/Guidelines.md +53 -0
- package/guidelines/components/button.md +50 -0
- package/guidelines/components/cardcareer.md +70 -0
- package/guidelines/components/cardtest.md +82 -0
- package/guidelines/components/checkbox.md +51 -0
- package/guidelines/components/footer.md +63 -0
- package/guidelines/components/header.md +57 -0
- package/guidelines/components/iconbutton.md +42 -0
- package/guidelines/components/input.md +39 -0
- package/guidelines/components/navmenu.md +48 -0
- package/guidelines/components/pagination.md +61 -0
- package/guidelines/components/segmentedcontrol.md +37 -0
- package/guidelines/components/tag.md +27 -0
- package/guidelines/components/toggle.md +41 -0
- package/guidelines/components/widgetcard.md +187 -0
- package/guidelines/design-tokens/colors.md +42 -0
- package/guidelines/design-tokens/spacing.md +41 -0
- package/guidelines/design-tokens/typography.md +23 -0
- package/guidelines/overview-components.md +58 -0
- package/package.json +21 -12
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,32 @@ export { Toggle } from './components/Toggle';
|
|
|
8
8
|
export { Checkbox } from './components/Checkbox';
|
|
9
9
|
export { Header } from './components/Header';
|
|
10
10
|
export { Footer } from './components/Footer';
|
|
11
|
+
export { NavItem, NavBar } from './components/NavMenu';
|
|
12
|
+
export { CardTest } from './components/CardTest';
|
|
13
|
+
export { CardCareer } from './components/CardCareer';
|
|
14
|
+
export { IconButton } from './components/IconButton';
|
|
15
|
+
export { SegmentedControl } from './components/SegmentedControl';
|
|
16
|
+
export { Pagination } from './components/Pagination';
|
|
17
|
+
export { WidgetCard, WidgetHeader, PlatformNewsWidget, GeneralNewsWidget, NotesWidget, PersonalAdviceWidget, CalendarWidget, } from './components/WidgetCard';
|
|
18
|
+
export { Search } from './components/Search';
|
|
19
|
+
export { Dropdown } from './components/Dropdown';
|
|
20
|
+
export { DatePicker } from './components/DatePicker';
|
|
21
|
+
export { TimePicker } from './components/TimePicker';
|
|
22
|
+
export { RadioButton } from './components/RadioButton';
|
|
23
|
+
export { Stepper } from './components/Stepper';
|
|
24
|
+
export { StepperProgress } from './components/StepperProgress';
|
|
25
|
+
export { TestimonialCard } from './components/TestimonialCard';
|
|
26
|
+
export { PriceCard } from './components/PriceCard';
|
|
27
|
+
export { Price } from './components/Price';
|
|
28
|
+
export { ListItem } from './components/ListItem';
|
|
29
|
+
export { TagBig } from './components/TagBig';
|
|
30
|
+
export { SectionTitle } from './components/SectionTitle';
|
|
31
|
+
export { DashboardTitle } from './components/DashboardTitle';
|
|
32
|
+
export { ProcessStep } from './components/ProcessStep';
|
|
33
|
+
export { TasksWidget } from './components/TasksWidget';
|
|
34
|
+
export { SignupForm } from './components/SignupForm';
|
|
35
|
+
export { Tariffs } from './components/Tariffs';
|
|
36
|
+
export { Question } from './components/Question';
|
|
11
37
|
export type { ButtonProps, ButtonVariant, ButtonSize } from './components/Button';
|
|
12
38
|
export type { InputProps, InputState } from './components/Input';
|
|
13
39
|
export type { TagProps, TagColor } from './components/Tag';
|
|
@@ -15,3 +41,29 @@ export type { ToggleProps } from './components/Toggle';
|
|
|
15
41
|
export type { CheckboxProps } from './components/Checkbox';
|
|
16
42
|
export type { HeaderProps, HeaderColor } from './components/Header';
|
|
17
43
|
export type { FooterProps, FooterVariant, FooterSection, FooterLink } from './components/Footer';
|
|
44
|
+
export type { NavItemProps, NavBarProps } from './components/NavMenu';
|
|
45
|
+
export type { CardTestProps, CardTestState, CardTestMetaItem } from './components/CardTest';
|
|
46
|
+
export type { CardCareerProps, CardCareerTask } from './components/CardCareer';
|
|
47
|
+
export type { IconButtonProps, IconButtonIcon, IconButtonSize, IconButtonVariant } from './components/IconButton';
|
|
48
|
+
export type { SegmentedControlProps, SegmentedControlOption } from './components/SegmentedControl';
|
|
49
|
+
export type { PaginationProps, PaginationVariant } from './components/Pagination';
|
|
50
|
+
export type { WidgetCardProps, WidgetHeaderProps, WidgetHeaderColor, PlatformNewsWidgetProps, GeneralNewsWidgetProps, NotesWidgetProps, PersonalAdviceWidgetProps, CalendarWidgetProps, CalendarDayItem, CalendarEvent, } from './components/WidgetCard';
|
|
51
|
+
export type { SearchProps } from './components/Search';
|
|
52
|
+
export type { DropdownProps, DropdownOption } from './components/Dropdown';
|
|
53
|
+
export type { DatePickerProps, DatePickerState } from './components/DatePicker';
|
|
54
|
+
export type { TimePickerProps, TimePickerState } from './components/TimePicker';
|
|
55
|
+
export type { RadioButtonProps } from './components/RadioButton';
|
|
56
|
+
export type { StepperProps, StepperStep, StepperStepState } from './components/Stepper';
|
|
57
|
+
export type { StepperProgressProps, StepperProgressStep, StepperProgressState } from './components/StepperProgress';
|
|
58
|
+
export type { TestimonialCardProps } from './components/TestimonialCard';
|
|
59
|
+
export type { PriceCardProps } from './components/PriceCard';
|
|
60
|
+
export type { PriceProps } from './components/Price';
|
|
61
|
+
export type { ListItemProps } from './components/ListItem';
|
|
62
|
+
export type { TagBigProps } from './components/TagBig';
|
|
63
|
+
export type { SectionTitleProps, SectionTitleVariant } from './components/SectionTitle';
|
|
64
|
+
export type { DashboardTitleProps } from './components/DashboardTitle';
|
|
65
|
+
export type { ProcessStepProps, ProcessStepStyle } from './components/ProcessStep';
|
|
66
|
+
export type { TasksWidgetProps, TaskItem } from './components/TasksWidget';
|
|
67
|
+
export type { SignupFormProps } from './components/SignupForm';
|
|
68
|
+
export type { TariffsProps, TariffsVariant } from './components/Tariffs';
|
|
69
|
+
export type { QuestionProps, QuestionState } from './components/Question';
|