@nobak/design-system 1.0.0
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/LICENSE +73 -0
- package/README.md +142 -0
- package/lib/assets/icons.js +67 -0
- package/lib/components/AccountOverview/AccountOverview.js +122 -0
- package/lib/components/AdminPanel.js +58 -0
- package/lib/components/AssetExchange/AssetExchange.js +189 -0
- package/lib/components/AuthenticationFlow.js +216 -0
- package/lib/components/ConversationInterface/ConversationInterface.js +232 -0
- package/lib/components/DevFooter.js +38 -0
- package/lib/components/DevMenu.js +35 -0
- package/lib/components/DevSidebar.js +28 -0
- package/lib/components/DigitalDisplay.js +83 -0
- package/lib/components/Footer.js +45 -0
- package/lib/components/HeroContainer.js +10 -0
- package/lib/components/IntentRecognition/IntentRecognition.js +174 -0
- package/lib/components/Logo.js +259 -0
- package/lib/components/MenuBar.js +56 -0
- package/lib/components/NetworkSettings.js +223 -0
- package/lib/components/RecoverySetup/RecoverySetup.js +354 -0
- package/lib/components/RisingSun.js +122 -0
- package/lib/components/Symbol.js +226 -0
- package/lib/components/TransactionComposer/TransactionComposer.js +258 -0
- package/lib/components/TransactionConfirmation.js +184 -0
- package/lib/components/WalletMenu.js +33 -0
- package/lib/components/console/code/CodeBlock.js +150 -0
- package/lib/components/console/code/index.js +9 -0
- package/lib/components/console/data/DataTable.js +245 -0
- package/lib/components/console/data/MetricCard.js +79 -0
- package/lib/components/console/data/index.js +11 -0
- package/lib/components/console/documentation/index.js +10 -0
- package/lib/components/console/forms/APIKeyGenerator.js +261 -0
- package/lib/components/console/forms/SearchBar.js +210 -0
- package/lib/components/console/forms/index.js +10 -0
- package/lib/components/console/index.js +29 -0
- package/lib/components/console/layout/ConsoleCard.js +82 -0
- package/lib/components/console/layout/ConsoleLayout.js +86 -0
- package/lib/components/console/layout/index.js +10 -0
- package/lib/components/console/monitoring/StatusIndicator.js +128 -0
- package/lib/components/console/monitoring/index.js +9 -0
- package/lib/components/console/navigation/DevFooter.js +38 -0
- package/lib/components/console/navigation/DevMenu.js +35 -0
- package/lib/components/console/navigation/DevSidebar.js +28 -0
- package/lib/components/console/navigation/index.js +11 -0
- package/lib/components/console/settings/index.js +10 -0
- package/lib/components/index.js +12 -0
- package/lib/design/ColorPicker.stories.js +9 -0
- package/lib/design/HSLTool-V1.js +345 -0
- package/lib/design/HSLTool-V2.js +475 -0
- package/lib/design/HSLTool-V3.js +543 -0
- package/lib/design/HSLTool-V4.js +1139 -0
- package/lib/design/HSLTool.js +374 -0
- package/lib/design/OKLCHColorPicker.stories.js +24 -0
- package/lib/design/OKLCHTool.js +1014 -0
- package/lib/index.js +4 -0
- package/lib/shared/components/Avatar/Avatar.js +18 -0
- package/lib/shared/components/Avatar/index.js +1 -0
- package/lib/shared/components/Badge/Badge.js +34 -0
- package/lib/shared/components/Badge/index.js +1 -0
- package/lib/shared/components/Breadcrumb/Breadcrumb.js +13 -0
- package/lib/shared/components/Breadcrumb/index.js +1 -0
- package/lib/shared/components/Button/Button.js +184 -0
- package/lib/shared/components/Button/index.js +1 -0
- package/lib/shared/components/Calendar/Calendar.js +155 -0
- package/lib/shared/components/Calendar/CalendarDay.js +251 -0
- package/lib/shared/components/Calendar/CalendarHeader.js +88 -0
- package/lib/shared/components/Calendar/CalendarMonth.js +106 -0
- package/lib/shared/components/Calendar/CalendarWeek.js +267 -0
- package/lib/shared/components/Calendar/constants.js +73 -0
- package/lib/shared/components/Calendar/index.js +3 -0
- package/lib/shared/components/Calendar/types.d.js +0 -0
- package/lib/shared/components/Cartel/Cartel.js +44 -0
- package/lib/shared/components/Cartel/index.js +1 -0
- package/lib/shared/components/Cell/Cell.js +105 -0
- package/lib/shared/components/Cell/index.js +1 -0
- package/lib/shared/components/Checkbox/Checkbox.js +27 -0
- package/lib/shared/components/Checkbox/index.js +1 -0
- package/lib/shared/components/Clock/Clock.js +6 -0
- package/lib/shared/components/Clock/index.js +1 -0
- package/lib/shared/components/ColorChecker/ColorChecker.js +89 -0
- package/lib/shared/components/ColorChecker/index.js +2 -0
- package/lib/shared/components/ColorChecker/utils.js +159 -0
- package/lib/shared/components/Command/Command.js +95 -0
- package/lib/shared/components/Command/index.js +1 -0
- package/lib/shared/components/Container/Container.js +18 -0
- package/lib/shared/components/Container/index.js +1 -0
- package/lib/shared/components/Cover/Cover.js +17 -0
- package/lib/shared/components/Cover/index.js +1 -0
- package/lib/shared/components/DatePicker/DatePicker.js +52 -0
- package/lib/shared/components/DatePicker/components/Calendar.js +125 -0
- package/lib/shared/components/DatePicker/components/CalendarDay.js +23 -0
- package/lib/shared/components/DatePicker/components/DateWrapper.js +15 -0
- package/lib/shared/components/DatePicker/components/index.js +2 -0
- package/lib/shared/components/DatePicker/index.js +1 -0
- package/lib/shared/components/DateTime/DateTime.js +51 -0
- package/lib/shared/components/DateTime/index.js +1 -0
- package/lib/shared/components/Debug/Debug.js +12 -0
- package/lib/shared/components/Debug/index.js +1 -0
- package/lib/shared/components/Disclosure/Disclosure.js +31 -0
- package/lib/shared/components/Disclosure/index.js +1 -0
- package/lib/shared/components/Dropdown/Dropdown.js +91 -0
- package/lib/shared/components/Dropdown/index.js +1 -0
- package/lib/shared/components/EmptyState/EmptyState.js +40 -0
- package/lib/shared/components/EmptyState/index.js +1 -0
- package/lib/shared/components/Form/Form.js +41 -0
- package/lib/shared/components/Form/components/DynamicForm.js +66 -0
- package/lib/shared/components/Form/components/StepperForm.js +266 -0
- package/lib/shared/components/Form/components/index.js +2 -0
- package/lib/shared/components/Form/context/Form.js +164 -0
- package/lib/shared/components/Form/context/index.js +1 -0
- package/lib/shared/components/Form/index.js +1 -0
- package/lib/shared/components/Form/types.d.js +1 -0
- package/lib/shared/components/Form/utils/index.js +31 -0
- package/lib/shared/components/GroupItems/GroupItems.js +17 -0
- package/lib/shared/components/GroupItems/index.js +1 -0
- package/lib/shared/components/Header/Header.js +26 -0
- package/lib/shared/components/Header/index.js +1 -0
- package/lib/shared/components/Heading/Heading.js +5 -0
- package/lib/shared/components/Heading/index.js +1 -0
- package/lib/shared/components/Icon/Icon.js +28 -0
- package/lib/shared/components/Icon/index.js +1 -0
- package/lib/shared/components/Identicons/Identicons.js +6 -0
- package/lib/shared/components/Identicons/index.d.js +0 -0
- package/lib/shared/components/Identicons/index.js +1 -0
- package/lib/shared/components/Image/Image.js +22 -0
- package/lib/shared/components/Image/index.js +1 -0
- package/lib/shared/components/Input/Input.js +201 -0
- package/lib/shared/components/Input/components/CheckBoxInput.js +81 -0
- package/lib/shared/components/Input/components/DateInput.js +89 -0
- package/lib/shared/components/Input/components/DefaultInput.js +102 -0
- package/lib/shared/components/Input/components/FileReaderInput.js +88 -0
- package/lib/shared/components/Input/components/NumberInput.js +141 -0
- package/lib/shared/components/Input/components/PickerInput.js +122 -0
- package/lib/shared/components/Input/components/RCInput.js +112 -0
- package/lib/shared/components/Input/components/Radiobox/RadioboxBasic.js +56 -0
- package/lib/shared/components/Input/components/Radiobox/RadioboxCard.js +27 -0
- package/lib/shared/components/Input/components/Radiobox/RadioboxFull.js +44 -0
- package/lib/shared/components/Input/components/Radiobox/index.js +3 -0
- package/lib/shared/components/Input/components/RadioboxInput.js +102 -0
- package/lib/shared/components/Input/components/SelectInput.js +70 -0
- package/lib/shared/components/Input/components/TextAreaInput.js +67 -0
- package/lib/shared/components/Input/components/TextInput.js +139 -0
- package/lib/shared/components/Input/components/TimeInput.js +37 -0
- package/lib/shared/components/Input/components/UploadFileInput.js +123 -0
- package/lib/shared/components/Input/components/index.js +13 -0
- package/lib/shared/components/Input/components/types.d.js +0 -0
- package/lib/shared/components/Input/index.js +1 -0
- package/lib/shared/components/Input/types.d.js +0 -0
- package/lib/shared/components/Layout/Layout.js +13 -0
- package/lib/shared/components/Layout/index.js +1 -0
- package/lib/shared/components/List/List.js +30 -0
- package/lib/shared/components/List/index.js +1 -0
- package/lib/shared/components/Loader/Loader.js +27 -0
- package/lib/shared/components/Loader/index.js +1 -0
- package/lib/shared/components/Modal/Modal.js +102 -0
- package/lib/shared/components/Modal/index.js +1 -0
- package/lib/shared/components/Notification/Notification.js +39 -0
- package/lib/shared/components/Notification/index.js +1 -0
- package/lib/shared/components/Person/Person.js +81 -0
- package/lib/shared/components/Person/index.js +1 -0
- package/lib/shared/components/Popover/Popover.js +39 -0
- package/lib/shared/components/Popover/index.js +1 -0
- package/lib/shared/components/QRCode/QRCode.js +329 -0
- package/lib/shared/components/QRCode/index.js +1 -0
- package/lib/shared/components/RadioGroup/RadioGroup.js +35 -0
- package/lib/shared/components/RadioGroup/components/DefaultGroup.js +71 -0
- package/lib/shared/components/RadioGroup/components/VerticalGroup.js +83 -0
- package/lib/shared/components/RadioGroup/components/index.js +2 -0
- package/lib/shared/components/RadioGroup/index.js +1 -0
- package/lib/shared/components/Search/Search.js +12 -0
- package/lib/shared/components/Search/index.js +1 -0
- package/lib/shared/components/Select/Select.js +90 -0
- package/lib/shared/components/Select/index.js +1 -0
- package/lib/shared/components/Sidebar/Sidebar.js +42 -0
- package/lib/shared/components/Sidebar/index.js +1 -0
- package/lib/shared/components/SlideOver/SlideOver.js +81 -0
- package/lib/shared/components/SlideOver/index.js +1 -0
- package/lib/shared/components/Slider/Slider.js +80 -0
- package/lib/shared/components/Slider/index.js +1 -0
- package/lib/shared/components/Stepper/Stepper.js +32 -0
- package/lib/shared/components/Stepper/index.js +1 -0
- package/lib/shared/components/Steps/Steps.js +53 -0
- package/lib/shared/components/Steps/index.js +1 -0
- package/lib/shared/components/Switch/Switch.js +26 -0
- package/lib/shared/components/Switch/index.js +1 -0
- package/lib/shared/components/Tab/Tab.js +59 -0
- package/lib/shared/components/Tab/index.js +1 -0
- package/lib/shared/components/Table/Table.js +47 -0
- package/lib/shared/components/Table/index.js +1 -0
- package/lib/shared/components/Text/Text.js +11 -0
- package/lib/shared/components/Text/index.js +1 -0
- package/lib/shared/components/TextList/TextList.js +15 -0
- package/lib/shared/components/TextList/index.js +1 -0
- package/lib/shared/components/TimePicker/TimePicker.js +161 -0
- package/lib/shared/components/TimePicker/index.js +1 -0
- package/lib/shared/components/Tooltip/Tooltip.js +13 -0
- package/lib/shared/components/Tooltip/index.js +1 -0
- package/lib/shared/components/Uploader/Uploader.js +63 -0
- package/lib/shared/components/Uploader/index.js +1 -0
- package/lib/shared/components/Video/Video.js +20 -0
- package/lib/shared/components/Video/index.js +1 -0
- package/lib/shared/components/index.d.js +0 -0
- package/lib/shared/components/index.js +50 -0
- package/lib/shared/elements/Color/ColorPallet.js +20 -0
- package/lib/shared/elements/Color/index.js +1 -0
- package/lib/shared/elements/Text.js +37 -0
- package/lib/shared/elements/index.js +1 -0
- package/lib/shared/helpers/FakeLink.js +8 -0
- package/lib/shared/helpers/constants.js +359 -0
- package/lib/shared/helpers/index.js +2 -0
- package/lib/shared/helpers/isEqual.js +56 -0
- package/lib/shared/index.d.js +0 -0
- package/lib/shared/index.js +1 -0
- package/lib/shared/stories/components/Avatar.stories.js +17 -0
- package/lib/shared/stories/components/Badge.stories.dev.js +37 -0
- package/lib/shared/stories/components/Button.stories.js +553 -0
- package/lib/shared/stories/components/Calendar.stories.js +62 -0
- package/lib/shared/stories/components/Cartel.stories.js +32 -0
- package/lib/shared/stories/components/Checkbox.stories.js +15 -0
- package/lib/shared/stories/components/ColorChecker.stories.dev.js +16 -0
- package/lib/shared/stories/components/DateTime.stories.js +27 -0
- package/lib/shared/stories/components/Disclosure.stories.js +30 -0
- package/lib/shared/stories/components/Dropdown.stories.js +39 -0
- package/lib/shared/stories/components/Form/Default.stories.js +201 -0
- package/lib/shared/stories/components/Form/DummyForm.stories.js +48 -0
- package/lib/shared/stories/components/Form/DynamicForm.stories.js +155 -0
- package/lib/shared/stories/components/Form/StepperForm.stories.js +138 -0
- package/lib/shared/stories/components/Form/ValidateForm.stories.js +70 -0
- package/lib/shared/stories/components/Form/Validation.stories.js +184 -0
- package/lib/shared/stories/components/GroupItems.stories.js +23 -0
- package/lib/shared/stories/components/Header.stories.js +29 -0
- package/lib/shared/stories/components/Heading.stories.js +27 -0
- package/lib/shared/stories/components/Icon.stories.js +22 -0
- package/lib/shared/stories/components/Image.stories.js +23 -0
- package/lib/shared/stories/components/Input/Checkbox.stories.js +45 -0
- package/lib/shared/stories/components/Input/DatePicker.stories.js +23 -0
- package/lib/shared/stories/components/Input/Defaut.stories.js +24 -0
- package/lib/shared/stories/components/Input/Number.stories.js +24 -0
- package/lib/shared/stories/components/Input/RCI.stories.js +59 -0
- package/lib/shared/stories/components/Input/Radiobox.stories.dev.js +28 -0
- package/lib/shared/stories/components/Input/Select.stories.dev.js +27 -0
- package/lib/shared/stories/components/Input/SelectMultiple.stories.dev.js +510 -0
- package/lib/shared/stories/components/Input/Textarea.stories.js +24 -0
- package/lib/shared/stories/components/List.stories.js +34 -0
- package/lib/shared/stories/components/Loader.stories.js +15 -0
- package/lib/shared/stories/components/Modal.stories.js +50 -0
- package/lib/shared/stories/components/Notification.stories.js +22 -0
- package/lib/shared/stories/components/Person.stories.js +41 -0
- package/lib/shared/stories/components/Picker.stories.js +15 -0
- package/lib/shared/stories/components/Popover.stories.js +36 -0
- package/lib/shared/stories/components/QRCode.stories.js +20 -0
- package/lib/shared/stories/components/RadioGroup.stories.js +56 -0
- package/lib/shared/stories/components/Select.stories.js +50 -0
- package/lib/shared/stories/components/Sidebar.stories.js +35 -0
- package/lib/shared/stories/components/Slider.stories.dev.js +48 -0
- package/lib/shared/stories/components/Stepper/Stepper.stories.js +38 -0
- package/lib/shared/stories/components/Steps.stories.js +15 -0
- package/lib/shared/stories/components/Switch.stories.js +15 -0
- package/lib/shared/stories/components/Tab.stories.js +15 -0
- package/lib/shared/stories/components/Table.stories.js +95 -0
- package/lib/shared/stories/components/TextList.stories.js +23 -0
- package/lib/shared/stories/components/Tooltip.stories.dev.js +40 -0
- package/lib/shared/stories/elements/Color.stories.js +269 -0
- package/lib/shared/stories/elements/Text.stories.js +45 -0
- package/lib/shared/types/index.js +1 -0
- package/lib/stories/Foundation/BrandIdentity.prod.stories.js +510 -0
- package/lib/stories/Foundation/Logo.stories.js +19 -0
- package/lib/stories/Foundation/RisingSun.stories.js +16 -0
- package/lib/stories/Foundation/Shadows.stories.js +601 -0
- package/lib/stories/Foundation/Symbol.stories.js +18 -0
- package/lib/stories/HeroContainer.stories.js +18 -0
- package/lib/styles/accessibilityTokens.js +72 -0
- package/lib/styles/borderWidth.js +10 -0
- package/lib/styles/colors.js +303 -0
- package/lib/styles/elevation.js +240 -0
- package/lib/styles/icons.js +218 -0
- package/lib/styles/index.js +29 -0
- package/lib/styles/motion.js +668 -0
- package/lib/styles/opacity.js +10 -0
- package/lib/styles/radius.js +11 -0
- package/lib/styles/sizing.js +35 -0
- package/lib/styles/space.js +24 -0
- package/lib/styles/theme/darkTheme.js +471 -0
- package/lib/styles/theme/index.js +44 -0
- package/lib/styles/theme/lightTheme.js +480 -0
- package/lib/styles/theme/themeTypes.js +1 -0
- package/lib/styles/theme/themeUtils.js +63 -0
- package/lib/styles/typography-advanced.js +510 -0
- package/lib/styles/typography.js +1419 -0
- package/lib/styles/zIndex.js +19 -0
- package/lib/tokens/borders.js +161 -0
- package/lib/tokens/colors.js +426 -0
- package/lib/tokens/components.js +499 -0
- package/lib/tokens/index.js +84 -0
- package/lib/tokens/lighting.js +384 -0
- package/lib/tokens/motion.js +284 -0
- package/lib/tokens/semantic.js +367 -0
- package/lib/tokens/shadows.js +114 -0
- package/lib/tokens/spacing.js +189 -0
- package/lib/tokens/typography.js +268 -0
- package/package.json +176 -0
- package/styles/generated-tokens.css +677 -0
- package/styles/index.css +2 -0
- package/styles/main.css +610 -0
- package/tailwind.config.js +64 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Popover } from "../../components/Popover";
|
|
3
|
+
import "../../../../styles/index.css";
|
|
4
|
+
var items = [{
|
|
5
|
+
name: 'Insights',
|
|
6
|
+
description: 'Measure actions your users take',
|
|
7
|
+
href: '##'
|
|
8
|
+
}, {
|
|
9
|
+
name: 'Automations',
|
|
10
|
+
description: 'Create your own targeted content',
|
|
11
|
+
href: '##'
|
|
12
|
+
}, {
|
|
13
|
+
name: 'Reports',
|
|
14
|
+
description: 'Keep track of your growth',
|
|
15
|
+
href: '##'
|
|
16
|
+
}];
|
|
17
|
+
export default {
|
|
18
|
+
component: Popover,
|
|
19
|
+
title: 'Flash / Popover',
|
|
20
|
+
args: {
|
|
21
|
+
button: {
|
|
22
|
+
variant: 'basic',
|
|
23
|
+
icon: 'info'
|
|
24
|
+
},
|
|
25
|
+
children: /*#__PURE__*/React.createElement("div", null, "More information about.")
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
export var Default = function Default(args) {
|
|
29
|
+
return /*#__PURE__*/React.createElement(Popover, args);
|
|
30
|
+
};
|
|
31
|
+
Default.parameters = {
|
|
32
|
+
design: {
|
|
33
|
+
type: 'figma',
|
|
34
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
35
|
+
}
|
|
36
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { QRCode } from "../../components/QRCode";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
export default {
|
|
4
|
+
component: QRCode,
|
|
5
|
+
title: 'Development / QRCode'
|
|
6
|
+
};
|
|
7
|
+
export var Default = function Default(args) {
|
|
8
|
+
return /*#__PURE__*/React.createElement(QRCode, {
|
|
9
|
+
value: "https://m24.nobak.net",
|
|
10
|
+
logoWidth: 50,
|
|
11
|
+
logoHeight: 50,
|
|
12
|
+
logoImage: "https://m24.nobak.net"
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
Default.parameters = {
|
|
16
|
+
design: {
|
|
17
|
+
type: 'figma',
|
|
18
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=971%3A68'
|
|
19
|
+
}
|
|
20
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { RadioGroup } from "../../components/RadioGroup";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
var options = [{
|
|
4
|
+
name: 'Startup',
|
|
5
|
+
icon: 'user',
|
|
6
|
+
disabled: false
|
|
7
|
+
}, {
|
|
8
|
+
name: 'Business',
|
|
9
|
+
icon: 'user',
|
|
10
|
+
disabled: false
|
|
11
|
+
}, {
|
|
12
|
+
name: 'Enterprise',
|
|
13
|
+
icon: 'user',
|
|
14
|
+
disabled: false
|
|
15
|
+
}];
|
|
16
|
+
var verticalOptions = [{
|
|
17
|
+
name: 'Startup',
|
|
18
|
+
image_url: 'https://images.unsplash.com/photo-1591343395902-1adcb454c4e2?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=634&q=80',
|
|
19
|
+
disabled: false
|
|
20
|
+
}, {
|
|
21
|
+
name: 'Business',
|
|
22
|
+
image_url: 'https://images.unsplash.com/photo-1593697972422-9d9cb386afd8?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=634&q=80',
|
|
23
|
+
disabled: false
|
|
24
|
+
}, {
|
|
25
|
+
name: 'Enterprise',
|
|
26
|
+
image_url: 'https://images.unsplash.com/photo-1513745405825-efaf9a49315f?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80',
|
|
27
|
+
disabled: true
|
|
28
|
+
}];
|
|
29
|
+
export default {
|
|
30
|
+
component: RadioGroup,
|
|
31
|
+
title: 'Data Handle / RadioGroup'
|
|
32
|
+
};
|
|
33
|
+
export var Default = function Default() {
|
|
34
|
+
return /*#__PURE__*/React.createElement(RadioGroup, {
|
|
35
|
+
options: options,
|
|
36
|
+
variant: "horizontal"
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
Default.parameters = {
|
|
40
|
+
design: {
|
|
41
|
+
type: 'figma',
|
|
42
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
export var Vertical = function Vertical() {
|
|
46
|
+
return /*#__PURE__*/React.createElement(RadioGroup, {
|
|
47
|
+
options: verticalOptions,
|
|
48
|
+
variant: "vertical"
|
|
49
|
+
});
|
|
50
|
+
};
|
|
51
|
+
Vertical.parameters = {
|
|
52
|
+
design: {
|
|
53
|
+
type: 'figma',
|
|
54
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
55
|
+
}
|
|
56
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import { Select } from "../../components/Select";
|
|
3
|
+
import "../../../../styles/index.css";
|
|
4
|
+
function fn(value) {
|
|
5
|
+
// console.log(value);
|
|
6
|
+
}
|
|
7
|
+
var options = [{
|
|
8
|
+
name: 'Wade Cooper',
|
|
9
|
+
id: '1'
|
|
10
|
+
}, {
|
|
11
|
+
name: 'Arlene Mccoy',
|
|
12
|
+
id: '2'
|
|
13
|
+
}, {
|
|
14
|
+
name: 'Devon Webb',
|
|
15
|
+
id: '3'
|
|
16
|
+
}, {
|
|
17
|
+
name: 'Tom Cook',
|
|
18
|
+
id: '4'
|
|
19
|
+
}, {
|
|
20
|
+
name: 'Tanya Fox',
|
|
21
|
+
id: '5'
|
|
22
|
+
}, {
|
|
23
|
+
name: 'Hellen Schmidt',
|
|
24
|
+
id: '6'
|
|
25
|
+
}];
|
|
26
|
+
export default {
|
|
27
|
+
component: Select,
|
|
28
|
+
title: 'Data Handle / Select',
|
|
29
|
+
argsTypes: {
|
|
30
|
+
initialState: {
|
|
31
|
+
control: 'array'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
args: {
|
|
35
|
+
options: options,
|
|
36
|
+
defaultValue: 'Arlene Mccoy'
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
export var Default = function Default(args) {
|
|
40
|
+
return /*#__PURE__*/React.createElement(Select, _extends({}, args, {
|
|
41
|
+
register: fn,
|
|
42
|
+
setValue: fn
|
|
43
|
+
}));
|
|
44
|
+
};
|
|
45
|
+
Default.parameters = {
|
|
46
|
+
design: {
|
|
47
|
+
type: 'figma',
|
|
48
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
49
|
+
}
|
|
50
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
|
|
2
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
3
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
4
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
5
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
6
|
+
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
7
|
+
import { Sidebar, Button } from "../../components";
|
|
8
|
+
import "../../../../styles/index.css";
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
export default {
|
|
11
|
+
component: Sidebar,
|
|
12
|
+
title: 'Components / Sidebar'
|
|
13
|
+
};
|
|
14
|
+
export var Default = function Default() {
|
|
15
|
+
var _React$useState = React.useState(true),
|
|
16
|
+
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
17
|
+
open = _React$useState2[0],
|
|
18
|
+
setOpen = _React$useState2[1];
|
|
19
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("div", {
|
|
20
|
+
className: "text-neutral-800"
|
|
21
|
+
}, open ? 'OPEN' : 'CLOSED'), /*#__PURE__*/React.createElement(Button, {
|
|
22
|
+
text: "toggle",
|
|
23
|
+
onClick: function onClick() {
|
|
24
|
+
return setOpen(!open);
|
|
25
|
+
}
|
|
26
|
+
}), /*#__PURE__*/React.createElement(Sidebar, {
|
|
27
|
+
initialState: open
|
|
28
|
+
}, /*#__PURE__*/React.createElement("li", null, "Home Page"), /*#__PURE__*/React.createElement("li", null, "Example 1"), /*#__PURE__*/React.createElement("li", null, "Example 2"), /*#__PURE__*/React.createElement("li", null, "Example 3")));
|
|
29
|
+
};
|
|
30
|
+
Default.parameters = {
|
|
31
|
+
design: {
|
|
32
|
+
type: 'figma',
|
|
33
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
34
|
+
}
|
|
35
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Slider, Image } from "../../components";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
// import { FakeLink, experienceCards } from '~/src/shared/helpers';
|
|
4
|
+
// import { ExperienceCard } from '~/src/shared/components/ExperienceCard';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
component: Slider,
|
|
8
|
+
title: 'Development / Slider'
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
// export const Cards = () => {
|
|
12
|
+
// const cards = experienceCards.map((card) => {
|
|
13
|
+
// return <ExperienceCard experience={card.experience} host={card.host} component={FakeLink} />
|
|
14
|
+
// })
|
|
15
|
+
// return <Slider cards={cards}/>
|
|
16
|
+
// };
|
|
17
|
+
|
|
18
|
+
// Cards.parameters = {
|
|
19
|
+
// design: {
|
|
20
|
+
// type: 'figma',
|
|
21
|
+
// url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
22
|
+
// }
|
|
23
|
+
// };
|
|
24
|
+
|
|
25
|
+
export var ImageCarousel = function ImageCarousel() {
|
|
26
|
+
var cards = [/*#__PURE__*/React.createElement(Image, {
|
|
27
|
+
imageUrl: "https://images.unsplash.com/photo-1604999565976-8913ad2ddb7c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=320&h=160&q=80"
|
|
28
|
+
}), /*#__PURE__*/React.createElement(Image, {
|
|
29
|
+
imageUrl: "https://images.unsplash.com/photo-1540206351-d6465b3ac5c1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=320&h=160&q=80"
|
|
30
|
+
}), /*#__PURE__*/React.createElement(Image, {
|
|
31
|
+
imageUrl: "https://images.unsplash.com/photo-1622890806166-111d7f6c7c97?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=320&h=160&q=80"
|
|
32
|
+
}), /*#__PURE__*/React.createElement(Image, {
|
|
33
|
+
imageUrl: "https://images.unsplash.com/photo-1590523277543-a94d2e4eb00b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=320&h=160&q=80"
|
|
34
|
+
}), /*#__PURE__*/React.createElement(Image, {
|
|
35
|
+
imageUrl: "https://images.unsplash.com/photo-1575424909138-46b05e5919ec?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=320&h=160&q=80"
|
|
36
|
+
}), /*#__PURE__*/React.createElement(Image, {
|
|
37
|
+
imageUrl: "https://images.unsplash.com/photo-1559333086-b0a56225a93c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=320&h=160&q=80"
|
|
38
|
+
})];
|
|
39
|
+
return /*#__PURE__*/React.createElement(Slider, {
|
|
40
|
+
cards: cards
|
|
41
|
+
});
|
|
42
|
+
};
|
|
43
|
+
ImageCarousel.parameters = {
|
|
44
|
+
design: {
|
|
45
|
+
type: 'figma',
|
|
46
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
47
|
+
}
|
|
48
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Stepper, RadioGroup } from "../../../components";
|
|
2
|
+
import "../../../../../styles/index.css";
|
|
3
|
+
var options = [{
|
|
4
|
+
name: 'Startup',
|
|
5
|
+
ram: '12GB',
|
|
6
|
+
cpus: '6 CPUs',
|
|
7
|
+
disk: '160 GB SSD disk'
|
|
8
|
+
}, {
|
|
9
|
+
name: 'Business',
|
|
10
|
+
ram: '16GB',
|
|
11
|
+
cpus: '8 CPUs',
|
|
12
|
+
disk: '512 GB SSD disk'
|
|
13
|
+
}, {
|
|
14
|
+
name: 'Enterprise',
|
|
15
|
+
ram: '32GB',
|
|
16
|
+
cpus: '12 CPUs',
|
|
17
|
+
disk: '1024 GB SSD disk'
|
|
18
|
+
}];
|
|
19
|
+
var steps = [{
|
|
20
|
+
component: RadioGroup,
|
|
21
|
+
options: options
|
|
22
|
+
}];
|
|
23
|
+
export default {
|
|
24
|
+
component: Stepper,
|
|
25
|
+
title: 'Lab / Stepper'
|
|
26
|
+
};
|
|
27
|
+
export var Radio = function Radio() {
|
|
28
|
+
return /*#__PURE__*/React.createElement(Stepper, {
|
|
29
|
+
steps: steps,
|
|
30
|
+
type: "radio"
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
Radio.parameters = {
|
|
34
|
+
design: {
|
|
35
|
+
type: 'figma',
|
|
36
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
37
|
+
}
|
|
38
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Steps } from "../../components/Steps";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
export default {
|
|
4
|
+
component: Steps,
|
|
5
|
+
title: 'Components / Steps'
|
|
6
|
+
};
|
|
7
|
+
export var Default = function Default() {
|
|
8
|
+
return /*#__PURE__*/React.createElement(Steps, null);
|
|
9
|
+
};
|
|
10
|
+
Default.parameters = {
|
|
11
|
+
design: {
|
|
12
|
+
type: 'figma',
|
|
13
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
14
|
+
}
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Switch } from "../../components/Switch";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
export default {
|
|
4
|
+
component: Switch,
|
|
5
|
+
title: 'Components / Switch'
|
|
6
|
+
};
|
|
7
|
+
export var Default = function Default() {
|
|
8
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null);
|
|
9
|
+
};
|
|
10
|
+
Default.parameters = {
|
|
11
|
+
design: {
|
|
12
|
+
type: 'figma',
|
|
13
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
14
|
+
}
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Tab } from "../../components/Tab";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
export default {
|
|
4
|
+
component: Tab,
|
|
5
|
+
title: 'Components / Tab'
|
|
6
|
+
};
|
|
7
|
+
export var Default = function Default() {
|
|
8
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null);
|
|
9
|
+
};
|
|
10
|
+
Default.parameters = {
|
|
11
|
+
design: {
|
|
12
|
+
type: 'figma',
|
|
13
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
14
|
+
}
|
|
15
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import { Table } from "../../components/Table";
|
|
3
|
+
import "../../../../styles/index.css";
|
|
4
|
+
export default {
|
|
5
|
+
component: Table,
|
|
6
|
+
title: 'Data Show / Table',
|
|
7
|
+
args: {
|
|
8
|
+
headers: ['ID', 'Title']
|
|
9
|
+
},
|
|
10
|
+
argTypes: {
|
|
11
|
+
headers: {
|
|
12
|
+
type: {
|
|
13
|
+
summary: 'array'
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
var header = ['id', 'titles'];
|
|
19
|
+
var data = [[{
|
|
20
|
+
value: '20042',
|
|
21
|
+
type: 'simple'
|
|
22
|
+
}, {
|
|
23
|
+
value: 'Once upon a time in the web.',
|
|
24
|
+
type: 'simple'
|
|
25
|
+
}], [{
|
|
26
|
+
value: '20042',
|
|
27
|
+
type: 'simple'
|
|
28
|
+
}, {
|
|
29
|
+
value: 'Once upon a time in the web.',
|
|
30
|
+
type: 'simple'
|
|
31
|
+
}], [{
|
|
32
|
+
value: '20042',
|
|
33
|
+
type: 'simple'
|
|
34
|
+
}, {
|
|
35
|
+
value: 'Once upon a time in the web.',
|
|
36
|
+
type: 'simple'
|
|
37
|
+
}], [{
|
|
38
|
+
value: '20042',
|
|
39
|
+
type: 'simple'
|
|
40
|
+
}, {
|
|
41
|
+
value: 'Once upon a time in the web.',
|
|
42
|
+
type: 'simple'
|
|
43
|
+
}], [{
|
|
44
|
+
value: '20042',
|
|
45
|
+
type: 'simple'
|
|
46
|
+
}, {
|
|
47
|
+
value: 'Once upon a time in the web.',
|
|
48
|
+
type: 'simple'
|
|
49
|
+
}], [{
|
|
50
|
+
value: {
|
|
51
|
+
text: 'Text',
|
|
52
|
+
imageUrl: 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80'
|
|
53
|
+
},
|
|
54
|
+
type: 'image'
|
|
55
|
+
}, {
|
|
56
|
+
value: 'Once upon a time in the web.',
|
|
57
|
+
type: 'simple'
|
|
58
|
+
}]];
|
|
59
|
+
export var Default = function Default(args) {
|
|
60
|
+
return /*#__PURE__*/React.createElement(Table, _extends({}, args, {
|
|
61
|
+
header: header,
|
|
62
|
+
data: data
|
|
63
|
+
}));
|
|
64
|
+
};
|
|
65
|
+
Default.parameters = {
|
|
66
|
+
design: {
|
|
67
|
+
type: 'figma',
|
|
68
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=971%3A68'
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
var d = [[{
|
|
72
|
+
value: {
|
|
73
|
+
text: "Algo",
|
|
74
|
+
content: "X",
|
|
75
|
+
onClick: function onClick(e) {
|
|
76
|
+
return console.log("hola", e);
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
type: 'checkbox'
|
|
80
|
+
}, {
|
|
81
|
+
value: 'Once upon a time in the web.',
|
|
82
|
+
type: 'simple'
|
|
83
|
+
}]];
|
|
84
|
+
export var Default2 = function Default2(args) {
|
|
85
|
+
return /*#__PURE__*/React.createElement(Table, _extends({}, args, {
|
|
86
|
+
header: header,
|
|
87
|
+
data: d
|
|
88
|
+
}));
|
|
89
|
+
};
|
|
90
|
+
Default2.parameters = {
|
|
91
|
+
design: {
|
|
92
|
+
type: 'figma',
|
|
93
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=971%3A68'
|
|
94
|
+
}
|
|
95
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { TextList } from "../../components/TextList";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
export default {
|
|
4
|
+
component: TextList,
|
|
5
|
+
title: 'Compositions / TextList',
|
|
6
|
+
argTypes: {
|
|
7
|
+
items: {
|
|
8
|
+
type: {
|
|
9
|
+
summary: 'array'
|
|
10
|
+
},
|
|
11
|
+
defaultValue: [['a Title', 'a Description'], ['another Title', 'another Description'], ['other Title', 'other Description']]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
export var Default = function Default(args) {
|
|
16
|
+
return /*#__PURE__*/React.createElement(TextList, args);
|
|
17
|
+
};
|
|
18
|
+
Default.parameters = {
|
|
19
|
+
design: {
|
|
20
|
+
type: 'figma',
|
|
21
|
+
url: 'https://www.figma.com/file/OG2qkuEFEhNmf2wTA0wAGq/Design-System?node-id=754%3A6702'
|
|
22
|
+
}
|
|
23
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Tooltip } from "../../components/Tooltip";
|
|
2
|
+
import "../../../../styles/index.css";
|
|
3
|
+
var items = [{
|
|
4
|
+
name: 'Insights',
|
|
5
|
+
description: 'Measure actions your users take',
|
|
6
|
+
href: '##'
|
|
7
|
+
}, {
|
|
8
|
+
name: 'Automations',
|
|
9
|
+
description: 'Create your own targeted content',
|
|
10
|
+
href: '##'
|
|
11
|
+
}, {
|
|
12
|
+
name: 'Reports',
|
|
13
|
+
description: 'Keep track of your growth',
|
|
14
|
+
href: '##'
|
|
15
|
+
}];
|
|
16
|
+
export default {
|
|
17
|
+
component: Tooltip,
|
|
18
|
+
title: 'Development / Tooltip',
|
|
19
|
+
argsTypes: {
|
|
20
|
+
title: {
|
|
21
|
+
control: 'string'
|
|
22
|
+
},
|
|
23
|
+
items: {
|
|
24
|
+
control: 'array'
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
args: {
|
|
28
|
+
items: items,
|
|
29
|
+
title: 'Soluciones'
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
export var Default = function Default(args) {
|
|
33
|
+
return /*#__PURE__*/React.createElement(Tooltip, args);
|
|
34
|
+
};
|
|
35
|
+
Default.parameters = {
|
|
36
|
+
design: {
|
|
37
|
+
type: 'figma',
|
|
38
|
+
url: 'https://www.figma.com/file/vkIFRuwbONhF3qrGI7bHvL/App?node-id=2%3A129'
|
|
39
|
+
}
|
|
40
|
+
};
|