@pingux/astro 2.9.2 → 2.13.0-alpha.10
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/README.md +6 -2
- package/lib/README.md +6 -2
- package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.mdx +40 -0
- package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.test.js +2 -2
- package/lib/cjs/components/AccordionGroup/Accordion.styles.js +1 -2
- package/lib/cjs/components/AccordionGroup/AccordionGroup.js +4 -5
- package/lib/cjs/components/AccordionGroup/AccordionGroup.mdx +41 -0
- package/lib/cjs/components/ArrayField/ArrayField.mdx +34 -0
- package/lib/cjs/components/AstroWrapper/AstroWrapper.mdx +16 -0
- package/lib/cjs/components/Avatar/Avatar.mdx +14 -0
- package/lib/cjs/components/Badge/Badge.mdx +24 -0
- package/lib/cjs/components/Box/Box.d.ts +4 -0
- package/lib/cjs/components/Box/Box.js +4 -19
- package/lib/cjs/components/Box/Box.mdx +23 -0
- package/lib/cjs/components/Box/Box.styles.d.ts +6 -0
- package/lib/cjs/components/Box/Box.test.d.ts +1 -0
- package/lib/cjs/components/Box/Box.test.js +2 -6
- package/lib/cjs/components/Box/index.d.ts +1 -0
- package/lib/cjs/components/Bracket/Bracket.mdx +17 -0
- package/lib/cjs/components/Breadcrumbs/Breadcrumbs.mdx +40 -0
- package/lib/cjs/components/Button/Button.mdx +40 -0
- package/lib/cjs/components/Button/Button.stories.js +30 -5
- package/lib/cjs/components/Button/Buttons.styles.js +25 -7
- package/lib/cjs/components/Calendar/Calendar.mdx +39 -0
- package/lib/cjs/components/Calendar/Calendar.test.js +2 -2
- package/lib/cjs/components/Calendar/CalendarCell.js +2 -3
- package/lib/cjs/components/Calendar/CalendarGrid.js +1 -3
- package/lib/cjs/components/Callout/Callout.mdx +28 -0
- package/lib/cjs/components/Card/Card.mdx +32 -0
- package/lib/cjs/components/Checkbox/Checkbox.js +1 -2
- package/lib/cjs/components/Checkbox/CheckboxBase.js +1 -2
- package/lib/cjs/components/CheckboxField/CheckboxField.mdx +42 -0
- package/lib/cjs/components/CodeView/CodeView.mdx +23 -0
- package/lib/cjs/components/CodeView/CodeView.test.js +1 -1
- package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.mdx +29 -0
- package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelBadge.js +0 -1
- package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelContainer.js +2 -3
- package/lib/cjs/components/ColorField/ColorField.mdx +38 -0
- package/lib/cjs/components/ComboBoxField/ComboBoxField.mdx +66 -0
- package/lib/cjs/components/ComboBoxField/ComboBoxField.stories.js +1 -1
- package/lib/cjs/components/ComboBoxField/ComboBoxField.test.js +2 -2
- package/lib/cjs/components/CopyText/CopyText.mdx +23 -0
- package/lib/cjs/components/CopyText/CopyText.test.js +1 -1
- package/lib/cjs/components/DataTable/DataTable.mdx +54 -0
- package/lib/cjs/components/DataTable/DataTable.stories.js +1 -1
- package/lib/cjs/components/DataTable/DataTable.test.js +2 -2
- package/lib/cjs/components/DataTable/DataTableVirtualizer.js +2 -3
- package/lib/cjs/components/DatePicker/DateField.js +4 -5
- package/lib/cjs/components/DatePicker/DatePicker.js +4 -6
- package/lib/cjs/components/DatePicker/DatePicker.mdx +49 -0
- package/lib/cjs/components/DatePicker/DatePicker.test.js +2 -2
- package/lib/cjs/components/DatePicker/DateSegment.js +1 -2
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +3 -3
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.mdx +36 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +29 -45
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +1 -1
- package/lib/cjs/components/FieldHelperText/FieldHelperText.js +4 -4
- package/lib/cjs/components/FileInputField/FileInputField.mdx +33 -0
- package/lib/cjs/components/HelpHint/HelpHint.js +145 -27
- package/lib/cjs/components/HelpHint/HelpHint.mdx +32 -0
- package/lib/cjs/components/HelpHint/HelpHint.stories.js +40 -7
- package/lib/cjs/components/HelpHint/HelpHint.styles.js +9 -1
- package/lib/cjs/components/HelpHint/HelpHint.test.js +213 -30
- package/lib/cjs/components/Icon/Icon.d.ts +4 -0
- package/lib/cjs/components/Icon/Icon.js +4 -27
- package/lib/cjs/components/Icon/Icon.mdx +49 -0
- package/lib/cjs/components/Icon/Icon.stories.d.ts +8 -0
- package/lib/cjs/components/Icon/Icon.test.d.ts +1 -0
- package/lib/cjs/components/Icon/index.d.ts +1 -0
- package/lib/cjs/components/IconBadge/IconBadge.mdx +14 -0
- package/lib/cjs/components/IconButton/IconButton.mdx +33 -0
- package/lib/cjs/components/IconButtonToggle/IconButtonToggle.mdx +31 -0
- package/lib/cjs/components/Image/Image.mdx +28 -0
- package/lib/cjs/components/ImageUploadField/ImageUploadField.mdx +38 -0
- package/lib/cjs/components/ImageUploadField/ImageUploadField.stories.js +1 -1
- package/lib/cjs/components/ImageUploadField/ImageUploadField.test.js +2 -2
- package/lib/cjs/components/Input/Input.js +2 -3
- package/lib/cjs/components/Label/Label.styles.js +1 -1
- package/lib/cjs/components/Link/Link.mdx +27 -0
- package/lib/cjs/components/Link/Link.styles.js +10 -0
- package/lib/cjs/components/LinkSelectField/LinkSelectField.mdx +47 -0
- package/lib/cjs/components/LinkSelectField/LinkSelectField.stories.js +1 -1
- package/lib/cjs/components/LinkSelectField/LinkSelectField.test.js +2 -2
- package/lib/cjs/components/ListBox/ListBox.test.js +2 -2
- package/lib/cjs/components/ListItem/ListItem.mdx +21 -0
- package/lib/cjs/components/ListView/ListView.mdx +44 -0
- package/lib/cjs/components/ListView/ListView.stories.js +95 -49
- package/lib/cjs/components/ListView/ListView.test.js +2 -2
- package/lib/cjs/components/Loader/Loader.d.ts +4 -0
- package/lib/cjs/components/Loader/Loader.js +0 -14
- package/lib/cjs/components/Loader/Loader.mdx +29 -0
- package/lib/cjs/components/Loader/Loader.styles.d.ts +53 -0
- package/lib/cjs/components/Loader/Loader.test.d.ts +1 -0
- package/lib/cjs/components/Loader/index.d.ts +1 -0
- package/lib/cjs/components/Menu/Menu.mdx +43 -0
- package/lib/cjs/components/MenuItem/MenuItem.js +2 -3
- package/lib/cjs/components/Messages/Messages.mdx +35 -0
- package/lib/cjs/components/Modal/Modal.mdx +59 -0
- package/lib/cjs/components/Modal/tests/Modal.integration.test.js +1 -2
- package/lib/cjs/components/MultivaluesField/MultivaluesField.js +43 -9
- package/lib/cjs/components/MultivaluesField/MultivaluesField.mdx +44 -0
- package/lib/cjs/components/MultivaluesField/MultivaluesField.test.js +3 -3
- package/lib/cjs/components/NavBar/NavBar.mdx +42 -0
- package/lib/cjs/components/NavBarSection/NavBarSection.js +2 -3
- package/lib/cjs/components/NumberField/NumberField.mdx +39 -0
- package/lib/cjs/components/OverlayPanel/OverlayPanel.mdx +39 -0
- package/lib/cjs/components/PasswordField/PasswordField.mdx +33 -0
- package/lib/cjs/components/PasswordField/PasswordField.test.js +2 -3
- package/lib/cjs/components/PopoverContainer/PopoverContainer.d.ts +9 -0
- package/lib/cjs/components/PopoverContainer/PopoverContainer.js +10 -42
- package/lib/cjs/components/PopoverContainer/index.d.ts +2 -0
- package/lib/cjs/components/PopoverMenu/PopoverMenu.mdx +53 -0
- package/lib/cjs/components/Radio/Radio.js +1 -2
- package/lib/cjs/components/RadioGroupField/RadioGroupField.mdx +41 -0
- package/lib/cjs/components/RadioGroupField/RadioGroupField.test.js +2 -2
- package/lib/cjs/components/RequirementsList/RequirementsList.mdx +17 -0
- package/lib/cjs/components/RockerButtonGroup/RockerButtonGroup.mdx +36 -0
- package/lib/cjs/components/ScrollBox/ScrollBox.mdx +17 -0
- package/lib/cjs/components/SearchField/SearchField.mdx +33 -0
- package/lib/cjs/components/SelectField/Select.styles.js +1 -1
- package/lib/cjs/components/SelectField/SelectField.mdx +46 -0
- package/lib/cjs/components/SelectField/SelectField.stories.js +1 -1
- package/lib/cjs/components/SelectFieldBase/SelectFieldBase.js +4 -4
- package/lib/cjs/components/SelectFieldBase/SelectFieldBase.test.js +2 -2
- package/lib/cjs/components/Separator/Separator.mdx +19 -0
- package/lib/cjs/components/Stepper/Stepper.mdx +41 -0
- package/lib/cjs/components/Stepper/Stepper.styles.js +1 -1
- package/lib/cjs/components/Stepper/Stepper.test.js +2 -3
- package/lib/cjs/components/Switch/Switch.js +1 -2
- package/lib/cjs/components/SwitchField/SwitchField.js +1 -0
- package/lib/cjs/components/SwitchField/SwitchField.mdx +36 -0
- package/lib/cjs/components/Tab/Tab.js +2 -3
- package/lib/cjs/components/TabPicker/TabPicker.js +1 -1
- package/lib/cjs/components/Table/Table.mdx +30 -0
- package/lib/cjs/components/TableBody/TableBody.js +0 -1
- package/lib/cjs/components/TableCaption/TableCaption.js +0 -1
- package/lib/cjs/components/TableCell/TableCell.d.ts +12 -0
- package/lib/cjs/components/TableCell/TableCell.js +0 -6
- package/lib/cjs/components/TableCell/TableCell.test.d.ts +1 -0
- package/lib/cjs/components/TableCell/index.d.ts +1 -0
- package/lib/cjs/components/TableHead/TableHead.js +0 -1
- package/lib/cjs/components/TableRow/TableRow.js +0 -1
- package/lib/cjs/components/Tabs/Tabs.mdx +40 -0
- package/lib/cjs/components/Tabs/Tabs.test.js +3 -4
- package/lib/cjs/components/Text/Text.d.ts +4 -0
- package/lib/cjs/components/Text/Text.js +3 -7
- package/lib/cjs/components/Text/Text.mdx +13 -0
- package/lib/cjs/components/Text/Text.stories.d.ts +6 -0
- package/lib/cjs/components/Text/Text.styles.d.ts +286 -0
- package/lib/cjs/components/Text/Text.test.d.ts +1 -0
- package/lib/cjs/components/Text/index.d.ts +1 -0
- package/lib/cjs/components/TextArea/TextArea.js +1 -3
- package/lib/cjs/components/TextAreaField/TextAreaField.mdx +34 -0
- package/lib/cjs/components/TextField/TextField.js +1 -1
- package/lib/cjs/components/TextField/TextField.mdx +34 -0
- package/lib/cjs/components/TimeZonePicker/TimeZonePicker.mdx +18 -0
- package/lib/cjs/components/TooltipTrigger/Tooltip.styles.js +2 -1
- package/lib/cjs/components/TooltipTrigger/TooltipTrigger.js +2 -0
- package/lib/cjs/components/TooltipTrigger/TooltipTrigger.mdx +23 -0
- package/lib/cjs/components/TooltipTrigger/TooltipTrigger.test.js +47 -1
- package/lib/cjs/docs/Props.stories.mdx +35 -0
- package/lib/cjs/docs/Welcome.stories.mdx +149 -0
- package/lib/cjs/docs/hooks/useDebounce.stories.mdx +59 -0
- package/lib/cjs/docs/hooks/useModalState.stories.mdx +83 -0
- package/lib/cjs/docs/hooks/useOverlayPanelState.stories.mdx +84 -0
- package/lib/cjs/docs/theme/AstroNanoTheme.stories.mdx +174 -0
- package/lib/cjs/docs/theme/AstroTheme.stories.mdx +20 -0
- package/lib/cjs/docs/theme/CustomThemes.stories.mdx +70 -0
- package/lib/cjs/docs/theme/StylingGuideline.stories.mdx +116 -0
- package/lib/cjs/docs/utils/messagesReducer.stories.mdx +64 -0
- package/lib/cjs/experimental/EditButton/EditButton.js +63 -0
- package/lib/cjs/experimental/EditButton/EditButton.mdx +9 -0
- package/lib/cjs/experimental/EditButton/EditButton.stories.js +91 -0
- package/lib/cjs/experimental/EditButton/EditButton.test.js +71 -0
- package/lib/cjs/experimental/EditButton/index.js +14 -0
- package/lib/cjs/experimental/ListView/ListView.mdx +47 -0
- package/lib/cjs/experimental/ListView/ListView.stories.js +742 -0
- package/lib/cjs/experimental/ListViewItem/ListViewItem.js +23 -5
- package/lib/cjs/experimental/ListViewItem/ListViewItem.mdx +36 -0
- package/lib/cjs/experimental/ListViewItem/ListViewItem.stories.js +31 -7
- package/lib/cjs/experimental/ListViewItem/ListViewItem.test.js +51 -7
- package/lib/cjs/experimental/ListViewItem/controls/ListViewItemEditButton.js +2 -7
- package/lib/cjs/experimental/ListViewItem/controls/ListViewItemEditButton.stories.js +4 -1
- package/lib/cjs/experimental/ListViewItem/controls/ListViewItemMenu.js +0 -1
- package/lib/cjs/experimental/ListViewItem/controls/ListViewItemMenu.test.js +2 -2
- package/lib/cjs/experimental/ListViewItem/controls/ListViewItemSwitchField.js +2 -3
- package/lib/cjs/experimental/ListViewItem/listViewItemAttributes.js +28 -13
- package/lib/cjs/experimental/PanelHeader/PanelHeader.js +88 -0
- package/lib/cjs/experimental/PanelHeader/PanelHeader.mdx +19 -0
- package/lib/cjs/experimental/PanelHeader/PanelHeader.stories.js +71 -0
- package/lib/cjs/experimental/PanelHeader/PanelHeader.styles.js +38 -0
- package/lib/cjs/experimental/PanelHeader/PanelHeader.test.js +46 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderCloseButton.js +32 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderCloseButton.stories.js +31 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderCloseButton.test.js +25 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderMenu.js +25 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderMenu.stories.js +36 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderMenu.test.js +58 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderSwitchField.js +25 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderSwitchField.stories.js +41 -0
- package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderSwitchField.test.js +25 -0
- package/lib/cjs/experimental/PanelHeader/index.js +14 -0
- package/lib/cjs/experimental/README.stories.mdx +7 -0
- package/lib/cjs/experimental/SaveBar/SaveBar.mdx +13 -0
- package/lib/cjs/experimental/recipes/ListAndPanel.stories.js +1 -1
- package/lib/cjs/hooks/useComponentToggle/useComponentToggle.test.js +2 -2
- package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.js +2 -2
- package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.test.js +1 -1
- package/lib/cjs/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.test.js +2 -2
- package/lib/cjs/hooks/usePropWarning/usePropWarning.js +1 -1
- package/lib/cjs/hooks/useStatusClasses/useStatusClasses.js +2 -2
- package/lib/cjs/hooks/useTShirtSize/useTShirtSize.js +1 -1
- package/lib/cjs/index.d.ts +173 -0
- package/lib/cjs/index.js +53 -1
- package/lib/cjs/recipes/ApplicationSearchDropdown.stories.hidden.js +1 -1
- package/lib/cjs/recipes/{AttributesAndPingOneMapping.stories.js → AttributeMapping.stories.js} +392 -132
- package/lib/cjs/recipes/Slider.stories.js +1 -1
- package/lib/cjs/styles/colors.js +1 -1
- package/lib/cjs/styles/forms/index.js +1 -1
- package/lib/cjs/styles/variants/README.md +98 -0
- package/lib/cjs/styles/variants/variants.js +2 -0
- package/lib/cjs/types/box.d.ts +10 -0
- package/lib/cjs/types/box.js +6 -0
- package/lib/cjs/types/icon.d.ts +34 -0
- package/lib/cjs/types/icon.js +6 -0
- package/lib/cjs/types/index.d.ts +7 -0
- package/lib/cjs/types/index.js +86 -0
- package/lib/cjs/types/loader.d.ts +14 -0
- package/lib/cjs/types/loader.js +6 -0
- package/lib/cjs/types/mdx.d.js +1 -0
- package/lib/cjs/types/popoverContainer.d.ts +23 -0
- package/lib/cjs/types/popoverContainer.js +6 -0
- package/lib/cjs/types/shared/dom.d.ts +9 -0
- package/lib/cjs/types/shared/dom.js +6 -0
- package/lib/cjs/types/shared/index.d.ts +3 -0
- package/lib/cjs/types/shared/index.js +42 -0
- package/lib/cjs/types/shared/style.d.ts +11 -0
- package/lib/cjs/types/shared/style.js +6 -0
- package/lib/cjs/types/shared/test.d.ts +3 -0
- package/lib/cjs/types/shared/test.js +6 -0
- package/lib/cjs/types/shared/utils.d.ts +1 -0
- package/lib/cjs/types/shared/utils.js +6 -0
- package/lib/cjs/types/tableCell.d.ts +5 -0
- package/lib/cjs/types/tableCell.js +6 -0
- package/lib/cjs/types/text.d.ts +3 -0
- package/lib/cjs/types/text.js +6 -0
- package/lib/cjs/utils/designUtils/figmaLinks.js +2 -1
- package/lib/cjs/utils/devUtils/constants/variants.js +1 -2
- package/lib/cjs/utils/testUtils/testAxe.js +2 -2
- package/lib/cjs/utils/testUtils/testWrapper.js +2 -0
- package/lib/components/AccordionGridGroup/AccordionGridGroup.mdx +40 -0
- package/lib/components/AccordionGridGroup/AccordionGridGroup.test.js +2 -2
- package/lib/components/AccordionGroup/Accordion.styles.js +1 -2
- package/lib/components/AccordionGroup/AccordionGroup.mdx +41 -0
- package/lib/components/ArrayField/ArrayField.mdx +34 -0
- package/lib/components/AstroWrapper/AstroWrapper.mdx +16 -0
- package/lib/components/Avatar/Avatar.mdx +14 -0
- package/lib/components/Badge/Badge.mdx +24 -0
- package/lib/components/Box/Box.js +4 -19
- package/lib/components/Box/Box.mdx +23 -0
- package/lib/components/Box/Box.test.js +2 -6
- package/lib/components/Bracket/Bracket.mdx +17 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.mdx +40 -0
- package/lib/components/Button/Button.mdx +40 -0
- package/lib/components/Button/Button.stories.js +30 -5
- package/lib/components/Button/Buttons.styles.js +25 -7
- package/lib/components/Calendar/Calendar.mdx +39 -0
- package/lib/components/Calendar/Calendar.test.js +2 -2
- package/lib/components/Callout/Callout.mdx +28 -0
- package/lib/components/Card/Card.mdx +32 -0
- package/lib/components/CheckboxField/CheckboxField.mdx +42 -0
- package/lib/components/CodeView/CodeView.mdx +23 -0
- package/lib/components/CodeView/CodeView.test.js +1 -1
- package/lib/components/CollapsiblePanel/CollapsiblePanel.mdx +29 -0
- package/lib/components/ColorField/ColorField.mdx +38 -0
- package/lib/components/ComboBoxField/ComboBoxField.mdx +66 -0
- package/lib/components/ComboBoxField/ComboBoxField.stories.js +1 -1
- package/lib/components/ComboBoxField/ComboBoxField.test.js +2 -2
- package/lib/components/CopyText/CopyText.mdx +23 -0
- package/lib/components/CopyText/CopyText.test.js +1 -1
- package/lib/components/DataTable/DataTable.mdx +54 -0
- package/lib/components/DataTable/DataTable.stories.js +1 -1
- package/lib/components/DataTable/DataTable.test.js +1 -1
- package/lib/components/DatePicker/DatePicker.mdx +49 -0
- package/lib/components/DatePicker/DatePicker.test.js +2 -2
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +3 -3
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.mdx +36 -0
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +29 -45
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +1 -1
- package/lib/components/FileInputField/FileInputField.mdx +33 -0
- package/lib/components/HelpHint/HelpHint.js +148 -30
- package/lib/components/HelpHint/HelpHint.mdx +32 -0
- package/lib/components/HelpHint/HelpHint.stories.js +37 -6
- package/lib/components/HelpHint/HelpHint.styles.js +9 -1
- package/lib/components/HelpHint/HelpHint.test.js +213 -30
- package/lib/components/Icon/Icon.js +2 -25
- package/lib/components/Icon/Icon.mdx +49 -0
- package/lib/components/IconBadge/IconBadge.mdx +14 -0
- package/lib/components/IconButton/IconButton.mdx +33 -0
- package/lib/components/IconButtonToggle/IconButtonToggle.mdx +31 -0
- package/lib/components/Image/Image.mdx +28 -0
- package/lib/components/ImageUploadField/ImageUploadField.mdx +38 -0
- package/lib/components/ImageUploadField/ImageUploadField.stories.js +1 -1
- package/lib/components/ImageUploadField/ImageUploadField.test.js +2 -2
- package/lib/components/Link/Link.mdx +27 -0
- package/lib/components/Link/Link.styles.js +10 -0
- package/lib/components/LinkSelectField/LinkSelectField.mdx +47 -0
- package/lib/components/LinkSelectField/LinkSelectField.stories.js +1 -1
- package/lib/components/LinkSelectField/LinkSelectField.test.js +2 -2
- package/lib/components/ListBox/ListBox.test.js +2 -2
- package/lib/components/ListItem/ListItem.mdx +21 -0
- package/lib/components/ListView/ListView.mdx +44 -0
- package/lib/components/ListView/ListView.stories.js +96 -50
- package/lib/components/ListView/ListView.test.js +2 -2
- package/lib/components/Loader/Loader.js +0 -14
- package/lib/components/Loader/Loader.mdx +29 -0
- package/lib/components/Menu/Menu.mdx +43 -0
- package/lib/components/Messages/Messages.mdx +35 -0
- package/lib/components/Modal/Modal.mdx +59 -0
- package/lib/components/MultivaluesField/MultivaluesField.js +43 -9
- package/lib/components/MultivaluesField/MultivaluesField.mdx +44 -0
- package/lib/components/MultivaluesField/MultivaluesField.test.js +3 -3
- package/lib/components/NavBar/NavBar.mdx +42 -0
- package/lib/components/NumberField/NumberField.mdx +39 -0
- package/lib/components/OverlayPanel/OverlayPanel.mdx +39 -0
- package/lib/components/PasswordField/PasswordField.mdx +33 -0
- package/lib/components/PasswordField/PasswordField.test.js +2 -2
- package/lib/components/PopoverContainer/PopoverContainer.js +7 -38
- package/lib/components/PopoverMenu/PopoverMenu.mdx +53 -0
- package/lib/components/RadioGroupField/RadioGroupField.mdx +41 -0
- package/lib/components/RadioGroupField/RadioGroupField.test.js +2 -2
- package/lib/components/RequirementsList/RequirementsList.mdx +17 -0
- package/lib/components/RockerButtonGroup/RockerButtonGroup.mdx +36 -0
- package/lib/components/ScrollBox/ScrollBox.mdx +17 -0
- package/lib/components/SearchField/SearchField.mdx +33 -0
- package/lib/components/SelectField/SelectField.mdx +46 -0
- package/lib/components/SelectField/SelectField.stories.js +1 -1
- package/lib/components/SelectFieldBase/SelectFieldBase.test.js +2 -2
- package/lib/components/Separator/Separator.mdx +19 -0
- package/lib/components/Stepper/Stepper.mdx +41 -0
- package/lib/components/Stepper/Stepper.test.js +2 -2
- package/lib/components/SwitchField/SwitchField.mdx +36 -0
- package/lib/components/Table/Table.mdx +30 -0
- package/lib/components/TableCell/TableCell.js +0 -5
- package/lib/components/Tabs/Tabs.mdx +40 -0
- package/lib/components/Tabs/Tabs.test.js +2 -2
- package/lib/components/Text/Text.js +3 -7
- package/lib/components/Text/Text.mdx +13 -0
- package/lib/components/TextAreaField/TextAreaField.mdx +34 -0
- package/lib/components/TextField/TextField.js +1 -1
- package/lib/components/TextField/TextField.mdx +34 -0
- package/lib/components/TimeZonePicker/TimeZonePicker.mdx +18 -0
- package/lib/components/TooltipTrigger/Tooltip.styles.js +1 -1
- package/lib/components/TooltipTrigger/TooltipTrigger.js +2 -0
- package/lib/components/TooltipTrigger/TooltipTrigger.mdx +23 -0
- package/lib/components/TooltipTrigger/TooltipTrigger.test.js +48 -2
- package/lib/docs/Props.stories.mdx +35 -0
- package/lib/docs/Welcome.stories.mdx +149 -0
- package/lib/docs/hooks/useDebounce.stories.mdx +59 -0
- package/lib/docs/hooks/useModalState.stories.mdx +83 -0
- package/lib/docs/hooks/useOverlayPanelState.stories.mdx +84 -0
- package/lib/docs/theme/AstroNanoTheme.stories.mdx +174 -0
- package/lib/docs/theme/AstroTheme.stories.mdx +20 -0
- package/lib/docs/theme/CustomThemes.stories.mdx +70 -0
- package/lib/docs/theme/StylingGuideline.stories.mdx +116 -0
- package/lib/docs/utils/messagesReducer.stories.mdx +64 -0
- package/lib/experimental/EditButton/EditButton.js +50 -0
- package/lib/experimental/EditButton/EditButton.mdx +9 -0
- package/lib/experimental/EditButton/EditButton.stories.js +75 -0
- package/lib/experimental/EditButton/EditButton.test.js +68 -0
- package/lib/experimental/EditButton/index.js +1 -0
- package/lib/experimental/ListView/ListView.mdx +47 -0
- package/lib/experimental/ListView/ListView.stories.js +729 -0
- package/lib/experimental/ListViewItem/ListViewItem.js +24 -6
- package/lib/experimental/ListViewItem/ListViewItem.mdx +36 -0
- package/lib/experimental/ListViewItem/ListViewItem.stories.js +28 -5
- package/lib/experimental/ListViewItem/ListViewItem.test.js +45 -1
- package/lib/experimental/ListViewItem/controls/ListViewItemEditButton.js +1 -4
- package/lib/experimental/ListViewItem/controls/ListViewItemEditButton.stories.js +4 -1
- package/lib/experimental/ListViewItem/controls/ListViewItemMenu.test.js +2 -2
- package/lib/experimental/ListViewItem/controls/ListViewItemSwitchField.js +1 -0
- package/lib/experimental/ListViewItem/listViewItemAttributes.js +25 -12
- package/lib/experimental/PanelHeader/PanelHeader.js +75 -0
- package/lib/experimental/PanelHeader/PanelHeader.mdx +19 -0
- package/lib/experimental/PanelHeader/PanelHeader.stories.js +59 -0
- package/lib/experimental/PanelHeader/PanelHeader.styles.js +30 -0
- package/lib/experimental/PanelHeader/PanelHeader.test.js +43 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderCloseButton.js +25 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderCloseButton.stories.js +21 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderCloseButton.test.js +22 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderMenu.js +18 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderMenu.stories.js +26 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderMenu.test.js +55 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderSwitchField.js +18 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderSwitchField.stories.js +32 -0
- package/lib/experimental/PanelHeader/controls/PanelHeaderSwitchField.test.js +22 -0
- package/lib/experimental/PanelHeader/index.js +1 -0
- package/lib/experimental/README.stories.mdx +7 -0
- package/lib/experimental/SaveBar/SaveBar.mdx +13 -0
- package/lib/experimental/recipes/ListAndPanel.stories.js +1 -1
- package/lib/hooks/useComponentToggle/useComponentToggle.test.js +2 -2
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js +2 -2
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.test.js +1 -1
- package/lib/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.test.js +2 -2
- package/lib/hooks/usePropWarning/usePropWarning.js +1 -1
- package/lib/hooks/useStatusClasses/useStatusClasses.js +2 -2
- package/lib/hooks/useTShirtSize/useTShirtSize.js +1 -1
- package/lib/index.js +6 -0
- package/lib/recipes/AttributeMapping.stories.js +540 -0
- package/lib/styles/colors.js +1 -1
- package/lib/styles/variants/README.md +98 -0
- package/lib/styles/variants/variants.js +2 -0
- package/lib/types/box.js +1 -0
- package/lib/types/icon.js +1 -0
- package/lib/types/index.js +7 -0
- package/lib/types/loader.js +1 -0
- package/lib/types/mdx.d.js +0 -0
- package/lib/types/popoverContainer.js +1 -0
- package/lib/types/shared/dom.js +1 -0
- package/lib/types/shared/index.js +3 -0
- package/lib/types/shared/style.js +1 -0
- package/lib/types/shared/test.js +1 -0
- package/lib/types/shared/utils.js +1 -0
- package/lib/types/tableCell.js +1 -0
- package/lib/types/text.js +1 -0
- package/lib/utils/designUtils/figmaLinks.js +2 -1
- package/lib/utils/testUtils/testAxe.js +2 -2
- package/package.json +23 -9
- package/CHANGELOG.md +0 -2565
- package/NOTICE +0 -2481
- package/NOTICE.html +0 -9174
- package/lib/cjs/recipes/AttributeMappingReadOnlyField.stories.js +0 -254
- package/lib/recipes/AttributeMappingReadOnlyField.stories.js +0 -243
- package/lib/recipes/AttributesAndPingOneMapping.stories.js +0 -282
package/NOTICE
DELETED
@@ -1,2481 +0,0 @@
|
|
1
|
-
Copyright 2021
|
2
|
-
|
3
|
-
[ui-library-astro : latest]
|
4
|
-
|
5
|
-
Phase: DEVELOPMENT
|
6
|
-
Distribution: EXTERNAL
|
7
|
-
|
8
|
-
Components:
|
9
|
-
|
10
|
-
@babel/code-frame 7.12.13 : MIT License
|
11
|
-
@babel/helper-module-imports 7.12.13 : MIT License
|
12
|
-
@babel/helper-plugin-utils 7.13.0 : MIT License
|
13
|
-
@babel/helper-validator-identifier 7.12.11 : MIT License
|
14
|
-
@babel/highlight 7.13.8 : MIT License
|
15
|
-
@babel/plugin-syntax-jsx 7.12.13 : MIT License
|
16
|
-
@babel/runtime 7.13.8 : MIT License
|
17
|
-
@babel/runtime 7.15.3 : MIT License
|
18
|
-
@babel/types 7.13.0 : MIT License
|
19
|
-
@emotion/babel-plugin 11.3.0 : MIT License
|
20
|
-
@emotion/cache 10.0.29 : MIT License
|
21
|
-
@emotion/cache 11.1.3 : MIT License
|
22
|
-
@emotion/core 10.1.1 : MIT License
|
23
|
-
@emotion/css 10.0.27 : MIT License
|
24
|
-
@emotion/hash 0.8.0 : MIT License
|
25
|
-
@emotion/is-prop-valid 0.8.8 : MIT License
|
26
|
-
@emotion/is-prop-valid 1.1.0 : MIT License
|
27
|
-
@emotion/memoize 0.7.4 : MIT License
|
28
|
-
@emotion/memoize 0.7.5 : MIT License
|
29
|
-
@emotion/react 11.1.5 : MIT License
|
30
|
-
@emotion/serialize 0.11.16 : MIT License
|
31
|
-
@emotion/serialize 1.0.0 : MIT License
|
32
|
-
@emotion/serialize 1.0.2 : MIT License
|
33
|
-
@emotion/sheet 0.9.4 : MIT License
|
34
|
-
@emotion/sheet 1.0.1 : MIT License
|
35
|
-
@emotion/styled 10.0.27 : MIT License
|
36
|
-
@emotion/styled 11.3.0 : MIT License
|
37
|
-
@emotion/styled-base 10.0.31 : MIT License
|
38
|
-
@emotion/stylis 0.8.5 : MIT License
|
39
|
-
@emotion/unitless 0.7.5 : MIT License
|
40
|
-
@emotion/utils 0.11.3 : MIT License
|
41
|
-
@emotion/utils 1.0.0 : MIT License
|
42
|
-
@emotion/weak-memoize 0.2.5 : MIT License
|
43
|
-
@formatjs/ecma402-abstract 1.9.3 : MIT License
|
44
|
-
@formatjs/ecma402-abstract 1.9.4 : MIT License
|
45
|
-
@formatjs/ecma402-abstract 1.9.6 : MIT License
|
46
|
-
@formatjs/ecma402-abstract 1.9.8 : MIT License
|
47
|
-
@formatjs/fast-memoize 1.1.1 : ISC License
|
48
|
-
@formatjs/fast-memoize 1.1.2 : ISC License
|
49
|
-
@formatjs/fast-memoize 1.2.0 : ISC License
|
50
|
-
@formatjs/icu-messageformat-parser 2.0.11 : MIT License
|
51
|
-
@formatjs/icu-messageformat-parser 2.0.6 : MIT License
|
52
|
-
@formatjs/icu-messageformat-parser 2.0.7 : MIT License
|
53
|
-
@formatjs/icu-messageformat-parser 2.0.9 : MIT License
|
54
|
-
@formatjs/icu-skeleton-parser 1.2.10 : MIT License
|
55
|
-
@formatjs/icu-skeleton-parser 1.2.12 : MIT License
|
56
|
-
@formatjs/icu-skeleton-parser 1.2.7 : MIT License
|
57
|
-
@formatjs/icu-skeleton-parser 1.2.8 : MIT License
|
58
|
-
@formatjs/intl-localematcher 0.2.19 : MIT License
|
59
|
-
@formatjs/intl-localematcher 0.2.20 : MIT License
|
60
|
-
@icons/material 0.2.4 : MIT License
|
61
|
-
@internationalized/message 3.0.0 : Apache License 2.0
|
62
|
-
@internationalized/message 3.0.0-alpha.0 : Apache License 2.0
|
63
|
-
@internationalized/message 3.0.1 : Apache License 2.0
|
64
|
-
@internationalized/message 3.0.2 : Apache License 2.0
|
65
|
-
@internationalized/number 3.0.0 : Apache License 2.0
|
66
|
-
@internationalized/number 3.0.0-alpha.0 : Apache License 2.0
|
67
|
-
@internationalized/number 3.0.1 : Apache License 2.0
|
68
|
-
@internationalized/number 3.0.2 : Apache License 2.0
|
69
|
-
@internationalized/number 3.0.3 : Apache License 2.0
|
70
|
-
@mdx-js/react 1.6.22 : MIT License
|
71
|
-
@popperjs/core 2.8.6 : MIT License
|
72
|
-
@react-aria/accordion 3.0.0-alpha.1 : Apache License 2.0
|
73
|
-
@react-aria/breadcrumbs 3.1.5 : Apache License 2.0
|
74
|
-
@react-aria/button 3.3.1 : Apache License 2.0
|
75
|
-
@react-aria/button 3.3.2 : Apache License 2.0
|
76
|
-
@react-aria/checkbox 3.2.1 : Apache License 2.0
|
77
|
-
@react-aria/color 3.0.0-beta.3 : Apache License 2.0
|
78
|
-
@react-aria/combobox 3.0.0 : Apache License 2.0
|
79
|
-
@react-aria/dialog 3.1.2 : Apache License 2.0
|
80
|
-
@react-aria/focus 3.2.3 : Apache License 2.0
|
81
|
-
@react-aria/focus 3.3.0 : Apache License 2.0
|
82
|
-
@react-aria/focus 3.4.0 : Apache License 2.0
|
83
|
-
@react-aria/focus 3.4.1 : Apache License 2.0
|
84
|
-
@react-aria/focus 3.5.0 : Apache License 2.0
|
85
|
-
@react-aria/grid 3.0.0 : Apache License 2.0
|
86
|
-
@react-aria/i18n 3.3.0 : Apache License 2.0
|
87
|
-
@react-aria/i18n 3.3.1 : Apache License 2.0
|
88
|
-
@react-aria/i18n 3.3.2 : Apache License 2.0
|
89
|
-
@react-aria/interactions 3.4.0 : Apache License 2.0
|
90
|
-
@react-aria/interactions 3.5.0 : Apache License 2.0
|
91
|
-
@react-aria/interactions 3.5.1 : Apache License 2.0
|
92
|
-
@react-aria/interactions 3.6.0 : Apache License 2.0
|
93
|
-
@react-aria/label 3.1.1 : Apache License 2.0
|
94
|
-
@react-aria/label 3.1.2 : Apache License 2.0
|
95
|
-
@react-aria/label 3.1.3 : Apache License 2.0
|
96
|
-
@react-aria/link 3.1.2 : Apache License 2.0
|
97
|
-
@react-aria/link 3.1.4 : Apache License 2.0
|
98
|
-
@react-aria/listbox 3.3.0 : Apache License 2.0
|
99
|
-
@react-aria/live-announcer 3.0.0 : Apache License 2.0
|
100
|
-
@react-aria/live-announcer 3.0.1 : Apache License 2.0
|
101
|
-
@react-aria/menu 3.1.4 : Apache License 2.0
|
102
|
-
@react-aria/menu 3.2.2 : Apache License 2.0
|
103
|
-
@react-aria/overlays 3.6.3 : Apache License 2.0
|
104
|
-
@react-aria/overlays 3.7.0 : Apache License 2.0
|
105
|
-
@react-aria/overlays 3.7.1 : Apache License 2.0
|
106
|
-
@react-aria/overlays 3.7.2 : Apache License 2.0
|
107
|
-
@react-aria/progress 3.1.1 : Apache License 2.0
|
108
|
-
@react-aria/radio 3.1.3 : Apache License 2.0
|
109
|
-
@react-aria/searchfield 3.1.1 : Apache License 2.0
|
110
|
-
@react-aria/select 3.3.0 : Apache License 2.0
|
111
|
-
@react-aria/selection 3.3.2 : Apache License 2.0
|
112
|
-
@react-aria/selection 3.5.0 : Apache License 2.0
|
113
|
-
@react-aria/selection 3.5.1 : Apache License 2.0
|
114
|
-
@react-aria/selection 3.6.0 : Apache License 2.0
|
115
|
-
@react-aria/separator 3.1.1 : Apache License 2.0
|
116
|
-
@react-aria/slider 3.0.3 : Apache License 2.0
|
117
|
-
@react-aria/spinbutton 3.0.1 : Apache License 2.0
|
118
|
-
@react-aria/ssr 3.0.1 : Apache License 2.0
|
119
|
-
@react-aria/ssr 3.0.2 : Apache License 2.0
|
120
|
-
@react-aria/ssr 3.0.3 : Apache License 2.0
|
121
|
-
@react-aria/ssr 3.1.0 : Apache License 2.0
|
122
|
-
@react-aria/switch 3.1.1 : Apache License 2.0
|
123
|
-
@react-aria/tabs 3.0.1 : Apache License 2.0
|
124
|
-
@react-aria/textfield 3.2.2 : Apache License 2.0
|
125
|
-
@react-aria/textfield 3.3.0 : Apache License 2.0
|
126
|
-
@react-aria/textfield 3.3.1 : Apache License 2.0
|
127
|
-
@react-aria/toggle 3.1.2 : Apache License 2.0
|
128
|
-
@react-aria/tooltip 3.1.2 : Apache License 2.0
|
129
|
-
@react-aria/utils 3.8.0 : Apache License 2.0
|
130
|
-
@react-aria/utils 3.8.1 : Apache License 2.0
|
131
|
-
@react-aria/utils 3.8.2 : Apache License 2.0
|
132
|
-
@react-aria/utils 3.9.0 : Apache License 2.0
|
133
|
-
@react-aria/virtualizer 3.3.3 : Apache License 2.0
|
134
|
-
@react-aria/visually-hidden 3.2.1 : Apache License 2.0
|
135
|
-
@react-aria/visually-hidden 3.2.2 : Apache License 2.0
|
136
|
-
@react-aria/visually-hidden 3.2.3 : Apache License 2.0
|
137
|
-
@react-spectrum/provider 3.2.2 : Apache License 2.0
|
138
|
-
@react-spectrum/utils 3.6.1 : Apache License 2.0
|
139
|
-
@react-spectrum/utils 3.6.2 : Apache License 2.0
|
140
|
-
@react-stately/checkbox 3.0.1 : Apache License 2.0
|
141
|
-
@react-stately/collections 3.3.0 : Apache License 2.0
|
142
|
-
@react-stately/collections 3.3.2 : Apache License 2.0
|
143
|
-
@react-stately/collections 3.3.3 : Apache License 2.0
|
144
|
-
@react-stately/color 3.0.0-beta.3 : Apache License 2.0
|
145
|
-
@react-stately/combobox 3.0.0 : Apache License 2.0
|
146
|
-
@react-stately/data 3.4.0 : Apache License 2.0
|
147
|
-
@react-stately/grid 3.0.0 : Apache License 2.0
|
148
|
-
@react-stately/layout 3.2.2 : Apache License 2.0
|
149
|
-
@react-stately/layout 3.3.1 : Apache License 2.0
|
150
|
-
@react-stately/list 3.2.2 : Apache License 2.0
|
151
|
-
@react-stately/list 3.2.3 : Apache License 2.0
|
152
|
-
@react-stately/list 3.3.0 : Apache License 2.0
|
153
|
-
@react-stately/menu 3.2.1 : Apache License 2.0
|
154
|
-
@react-stately/menu 3.2.2 : Apache License 2.0
|
155
|
-
@react-stately/overlays 3.1.1 : Apache License 2.0
|
156
|
-
@react-stately/overlays 3.1.2 : Apache License 2.0
|
157
|
-
@react-stately/overlays 3.1.3 : Apache License 2.0
|
158
|
-
@react-stately/radio 3.3.0 : Apache License 2.0
|
159
|
-
@react-stately/radio 3.3.2 : Apache License 2.0
|
160
|
-
@react-stately/searchfield 3.1.1 : Apache License 2.0
|
161
|
-
@react-stately/select 3.1.1 : Apache License 2.0
|
162
|
-
@react-stately/select 3.1.2 : Apache License 2.0
|
163
|
-
@react-stately/selection 3.3.0 : Apache License 2.0
|
164
|
-
@react-stately/selection 3.6.0 : Apache License 2.0
|
165
|
-
@react-stately/selection 3.6.1 : Apache License 2.0
|
166
|
-
@react-stately/selection 3.7.0 : Apache License 2.0
|
167
|
-
@react-stately/slider 3.0.3 : Apache License 2.0
|
168
|
-
@react-stately/tabs 3.0.1 : Apache License 2.0
|
169
|
-
@react-stately/toggle 3.2.1 : Apache License 2.0
|
170
|
-
@react-stately/toggle 3.2.2 : Apache License 2.0
|
171
|
-
@react-stately/tooltip 3.0.4 : Apache License 2.0
|
172
|
-
@react-stately/tree 3.1.2 : Apache License 2.0
|
173
|
-
@react-stately/tree 3.1.4 : Apache License 2.0
|
174
|
-
@react-stately/utils 3.2.1 : Apache License 2.0
|
175
|
-
@react-stately/utils 3.2.2 : Apache License 2.0
|
176
|
-
@react-stately/virtualizer 3.1.4 : Apache License 2.0
|
177
|
-
@react-stately/virtualizer 3.1.5 : Apache License 2.0
|
178
|
-
@react-types/accordion 3.0.0-alpha.0 : Apache License 2.0
|
179
|
-
@react-types/breadcrumbs 3.2.1 : Apache License 2.0
|
180
|
-
@react-types/button 3.3.1 : Apache License 2.0
|
181
|
-
@react-types/button 3.4.0 : Apache License 2.0
|
182
|
-
@react-types/button 3.4.1 : Apache License 2.0
|
183
|
-
@react-types/checkbox 3.2.2 : Apache License 2.0
|
184
|
-
@react-types/checkbox 3.2.3 : Apache License 2.0
|
185
|
-
@react-types/color 3.0.0-beta.2 : Apache License 2.0
|
186
|
-
@react-types/combobox 3.0.0 : Apache License 2.0
|
187
|
-
@react-types/dialog 3.3.0 : Apache License 2.0
|
188
|
-
@react-types/grid 3.0.0 : Apache License 2.0
|
189
|
-
@react-types/grid 3.0.0-alpha.0 : Apache License 2.0
|
190
|
-
@react-types/grid 3.0.0-beta.0 : Apache License 2.0
|
191
|
-
@react-types/label 3.4.0 : Apache License 2.0
|
192
|
-
@react-types/label 3.4.1 : Apache License 2.0
|
193
|
-
@react-types/link 3.1.1 : Apache License 2.0
|
194
|
-
@react-types/link 3.1.3 : Apache License 2.0
|
195
|
-
@react-types/listbox 3.2.0 : Apache License 2.0
|
196
|
-
@react-types/menu 3.1.1 : Apache License 2.0
|
197
|
-
@react-types/menu 3.2.0 : Apache License 2.0
|
198
|
-
@react-types/numberfield 3.0.1 : Apache License 2.0
|
199
|
-
@react-types/overlays 3.4.0 : Apache License 2.0
|
200
|
-
@react-types/overlays 3.5.0 : Apache License 2.0
|
201
|
-
@react-types/overlays 3.5.1 : Apache License 2.0
|
202
|
-
@react-types/progress 3.1.1 : Apache License 2.0
|
203
|
-
@react-types/provider 3.3.2 : Apache License 2.0
|
204
|
-
@react-types/radio 3.1.1 : Apache License 2.0
|
205
|
-
@react-types/radio 3.1.2 : Apache License 2.0
|
206
|
-
@react-types/searchfield 3.1.1 : Apache License 2.0
|
207
|
-
@react-types/select 3.2.0 : Apache License 2.0
|
208
|
-
@react-types/shared 3.4.0 : Apache License 2.0
|
209
|
-
@react-types/shared 3.6.0 : Apache License 2.0
|
210
|
-
@react-types/shared 3.7.0 : Apache License 2.0
|
211
|
-
@react-types/shared 3.7.1 : Apache License 2.0
|
212
|
-
@react-types/shared 3.8.0 : Apache License 2.0
|
213
|
-
@react-types/shared 3.9.0 : Apache License 2.0
|
214
|
-
@react-types/slider 3.0.2 : Apache License 2.0
|
215
|
-
@react-types/switch 3.1.1 : Apache License 2.0
|
216
|
-
@react-types/table 3.0.0-alpha.0 : Apache License 2.0
|
217
|
-
@react-types/table 3.0.0-beta.1 : Apache License 2.0
|
218
|
-
@react-types/tabs 3.0.1 : Apache License 2.0
|
219
|
-
@react-types/textfield 3.2.2 : Apache License 2.0
|
220
|
-
@react-types/textfield 3.2.3 : Apache License 2.0
|
221
|
-
@react-types/tooltip 3.1.1 : Apache License 2.0
|
222
|
-
@rebass/forms 4.0.6 : MIT License
|
223
|
-
@styled-system/background 5.1.2 : MIT License
|
224
|
-
@styled-system/border 5.1.5 : MIT License
|
225
|
-
@styled-system/color 5.1.2 : MIT License
|
226
|
-
@styled-system/core 5.1.2 : MIT License
|
227
|
-
@styled-system/css 5.1.5 : MIT License
|
228
|
-
@styled-system/flexbox 5.1.2 : MIT License
|
229
|
-
@styled-system/grid 5.1.2 : MIT License
|
230
|
-
@styled-system/layout 5.1.2 : MIT License
|
231
|
-
@styled-system/position 5.1.2 : MIT License
|
232
|
-
@styled-system/prop-types 5.1.5 : MIT License
|
233
|
-
@styled-system/props 5.1.5 : MIT License
|
234
|
-
@styled-system/shadow 5.1.2 : MIT License
|
235
|
-
@styled-system/should-forward-prop 5.1.5 : MIT License
|
236
|
-
@styled-system/space 5.1.2 : MIT License
|
237
|
-
@styled-system/theme-get 5.1.2 : MIT License
|
238
|
-
@styled-system/typography 5.1.2 : MIT License
|
239
|
-
@styled-system/variant 5.1.5 : MIT License
|
240
|
-
@theme-ui/color-modes 0.10.0 : MIT License
|
241
|
-
@theme-ui/components 0.10.0 : MIT License
|
242
|
-
@theme-ui/core 0.10.0 : MIT License
|
243
|
-
@theme-ui/css 0.10.0 : MIT License
|
244
|
-
@theme-ui/mdx 0.10.0 : MIT License
|
245
|
-
@theme-ui/parse-props 0.10.0 : MIT License
|
246
|
-
@theme-ui/theme-provider 0.10.0 : MIT License
|
247
|
-
@tippyjs/react 4.2.0 : MIT License
|
248
|
-
@types/parse-json 4.0.0 : MIT License
|
249
|
-
@types/styled-system 5.1.12 : MIT License
|
250
|
-
@wojtekmaj/date-utils 1.0.3 : MIT License
|
251
|
-
Chalk 2.4.2 : MIT License
|
252
|
-
Chroma.js v2.1.0 : (Apache License 2.0 AND BSD 3-clause "New" or "Revised" License)
|
253
|
-
Lodash 4.17.21 : MIT License
|
254
|
-
Qix-/color-convert 1.9.3 : MIT License
|
255
|
-
React from Facebook 16.13.1 : MIT License
|
256
|
-
TinyColor 1.4.2 : MIT License
|
257
|
-
ansi-styles 3.2.1 : MIT License
|
258
|
-
babel-plugin-macros 2.8.0 : MIT License
|
259
|
-
babel-plugin-syntax-jsx 6.18.0 : MIT License
|
260
|
-
browserify/resolve v1.20.0 : MIT License
|
261
|
-
callsites 3.1.0 : MIT License
|
262
|
-
classnames 2.2.6 : MIT License
|
263
|
-
clsx 1.1.1 : MIT License
|
264
|
-
convert-source-map v1.7.0 : MIT License
|
265
|
-
cosmiconfig 6.0.0 : MIT License
|
266
|
-
cross-env 6.0.3 : MIT License
|
267
|
-
csstype 2.6.16 : MIT License
|
268
|
-
csstype 3.0.7 : MIT License
|
269
|
-
csstype 3.0.8 : MIT License
|
270
|
-
deep_merge v4.2.2 : MIT License
|
271
|
-
dom-helpers 3.4.0 : MIT License
|
272
|
-
emotion-normalize 11.0.1 : MIT License
|
273
|
-
emotion-utils 10.2.2 : MIT License
|
274
|
-
escape-string-regexp 1.0.5 : MIT License
|
275
|
-
escape-string-regexp v4.0.0 : MIT License
|
276
|
-
find-root 1.1.0 : MIT License
|
277
|
-
function-bind 1.1.1 : MIT License
|
278
|
-
get-user-locale 1.4.0 : MIT License
|
279
|
-
has 1.0.3 : MIT License
|
280
|
-
has-flag 3.0.0 : MIT License
|
281
|
-
hoist-non-react-statics v3.3.2 : BSD 3-clause "New" or "Revised" License
|
282
|
-
import-fresh 3.3.0 : MIT License
|
283
|
-
intl-messageformat 2.2.0 : BSD 3-clause "New" or "Revised" License
|
284
|
-
intl-messageformat 9.6.18 : BSD 3-clause "New" or "Revised" License
|
285
|
-
intl-messageformat 9.7.1 : BSD 3-clause "New" or "Revised" License
|
286
|
-
intl-messageformat 9.8.2 : BSD 3-clause "New" or "Revised" License
|
287
|
-
intl-messageformat 9.9.1 : BSD 3-clause "New" or "Revised" License
|
288
|
-
intl-messageformat-parser 1.4.0 : BSD 3-clause "New" or "Revised" License
|
289
|
-
is-arrayish 0.2.1 : MIT License
|
290
|
-
is-core-module 2.2.0 : MIT License
|
291
|
-
isexe 2.0.0 : ISC License
|
292
|
-
js-tokens 4.0.0 : MIT License
|
293
|
-
json-parse-even-better-errors 2.3.1 : MIT License
|
294
|
-
kk-color-name 1.1.3 : MIT License
|
295
|
-
lines-and-columns 1.1.6 : MIT License
|
296
|
-
lodash.once 4.1.1 : MIT License
|
297
|
-
loose-envify 1.4.0 : MIT License
|
298
|
-
material-colors 1.2.6 : ISC License
|
299
|
-
mdi-react 7.4.0 : (MIT License AND SIL Open Font License 1.1)
|
300
|
-
merge-class-names 1.4.2 : MIT License
|
301
|
-
moment/moment 2.29.1 : MIT License
|
302
|
-
node-cross-spawn 7.0.3 : MIT License
|
303
|
-
node-error-ex 1.3.2 : MIT License
|
304
|
-
node-uuid 8.3.2 : MIT License
|
305
|
-
object-assign 4.1.1 : MIT License
|
306
|
-
parent-module 1.0.1 : MIT License
|
307
|
-
parse-json v5.2.0 : MIT License
|
308
|
-
path-key 3.1.1 : MIT License
|
309
|
-
path-parse 1.0.6 : MIT License
|
310
|
-
path-type 4.0.0 : MIT License
|
311
|
-
prop-types 15.7.2 : MIT License
|
312
|
-
react-calendar 3.4.0 : MIT License
|
313
|
-
react-color 2.19.3 : MIT License
|
314
|
-
react-shapebase 1.0.23 : MIT License
|
315
|
-
reactcss 1.2.3 : MIT License
|
316
|
-
rebass 4.0.7 : MIT License
|
317
|
-
reflexbox 4.0.6 : MIT License
|
318
|
-
regenerator-runtime 0.13.7 : MIT License
|
319
|
-
resolve-from 4.0.0 : MIT License
|
320
|
-
safe-buffer 5.1.2 : MIT License
|
321
|
-
shebang-command 2.0.0 : MIT License
|
322
|
-
shebang-regex 3.0.0 : MIT License
|
323
|
-
sindresorhus/supports-color 5.5.0 : MIT License
|
324
|
-
source-map 0.5.7 : BSD 3-clause "New" or "Revised" License
|
325
|
-
styled-system 5.1.5 : MIT License
|
326
|
-
stylis v4.0.7 : MIT License
|
327
|
-
theme-ui 0.10.0 : MIT License
|
328
|
-
tippy.js 6.2.7 : MIT License
|
329
|
-
to-fast-properties 2.0.0 : MIT License
|
330
|
-
tslib 2.1.0 : BSD Zero Clause License
|
331
|
-
which 2.0.2 : ISC License
|
332
|
-
yaml 1.10.0 : ISC License
|
333
|
-
|
334
|
-
|
335
|
-
Copyright Text:
|
336
|
-
|
337
|
-
@babel/code-frame 7.12.13 npmjs:@babel/code-frame/7.12.13
|
338
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
339
|
-
@babel/helper-module-imports 7.12.13 npmjs:@babel/helper-module-imports/7.12.13
|
340
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
341
|
-
@babel/helper-plugin-utils 7.13.0 npmjs:@babel/helper-plugin-utils/7.13.0
|
342
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
343
|
-
@babel/helper-validator-identifier 7.12.11 npmjs:@babel/helper-validator-identifier/7.12.11
|
344
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
345
|
-
@babel/highlight 7.13.8 npmjs:@babel/highlight/7.13.8
|
346
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
347
|
-
@babel/plugin-syntax-jsx 7.12.13 npmjs:@babel/plugin-syntax-jsx/7.12.13
|
348
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
349
|
-
@babel/runtime 7.13.8 npmjs:@babel/runtime/7.13.8
|
350
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
351
|
-
@babel/types 7.13.0 npmjs:@babel/types/7.13.0
|
352
|
-
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
353
|
-
@emotion/babel-plugin 11.3.0 npmjs:@emotion/babel-plugin/11.3.0
|
354
|
-
Copyright (c) Emotion team and other contributors
|
355
|
-
@emotion/cache 10.0.29 npmjs:@emotion/cache/10.0.29
|
356
|
-
Copyright (c) Emotion team and other contributors
|
357
|
-
@emotion/cache 11.1.3 npmjs:@emotion/cache/11.1.3
|
358
|
-
Copyright (c) Emotion team and other contributors
|
359
|
-
@emotion/core 10.1.1 npmjs:@emotion/core/10.1.1
|
360
|
-
Copyright (c) Emotion team and other contributors
|
361
|
-
@emotion/css 10.0.27 npmjs:@emotion/css/10.0.27
|
362
|
-
Copyright (c) Emotion team and other contributors
|
363
|
-
@emotion/hash 0.8.0 npmjs:@emotion/hash/0.8.0
|
364
|
-
Copyright (c) Emotion team and other contributors
|
365
|
-
@emotion/is-prop-valid 0.8.8 npmjs:@emotion/is-prop-valid/0.8.8
|
366
|
-
Copyright (c) Emotion team and other contributors
|
367
|
-
@emotion/is-prop-valid 1.1.0 npmjs:@emotion/is-prop-valid/1.1.0
|
368
|
-
Copyright (c) Emotion team and other contributors
|
369
|
-
@emotion/memoize 0.7.4 npmjs:@emotion/memoize/0.7.4
|
370
|
-
Copyright (c) Emotion team and other contributors
|
371
|
-
@emotion/memoize 0.7.5 npmjs:@emotion/memoize/0.7.5
|
372
|
-
Copyright (c) Emotion team and other contributors
|
373
|
-
@emotion/react 11.1.5 npmjs:@emotion/react/11.1.5
|
374
|
-
Copyright (c) Emotion team and other contributors
|
375
|
-
@emotion/serialize 0.11.16 npmjs:@emotion/serialize/0.11.16
|
376
|
-
Copyright (c) Emotion team and other contributors
|
377
|
-
@emotion/serialize 1.0.0 npmjs:@emotion/serialize/1.0.0
|
378
|
-
Copyright (c) Emotion team and other contributors
|
379
|
-
@emotion/serialize 1.0.2 npmjs:@emotion/serialize/1.0.2
|
380
|
-
Copyright (c) Emotion team and other contributors
|
381
|
-
@emotion/sheet 1.0.1 npmjs:@emotion/sheet/1.0.1
|
382
|
-
Copyright (c) Emotion team and other contributors
|
383
|
-
@emotion/styled 10.0.27 npmjs:@emotion/styled/10.0.27
|
384
|
-
Copyright (c) Emotion team and other contributors
|
385
|
-
@emotion/styled 11.3.0 npmjs:@emotion/styled/11.3.0
|
386
|
-
Copyright (c) Emotion team and other contributors
|
387
|
-
@emotion/styled-base 10.0.31 npmjs:@emotion/styled-base/10.0.31
|
388
|
-
Copyright (c) Emotion team and other contributors
|
389
|
-
@emotion/stylis 0.8.5 npmjs:@emotion/stylis/0.8.5
|
390
|
-
Copyright (c) Emotion team and other contributors
|
391
|
-
@emotion/utils 0.11.3 npmjs:@emotion/utils/0.11.3
|
392
|
-
Copyright (c) Emotion team and other contributors
|
393
|
-
@emotion/utils 1.0.0 npmjs:@emotion/utils/1.0.0
|
394
|
-
Copyright (c) Emotion team and other contributors
|
395
|
-
@emotion/weak-memoize 0.2.5 npmjs:@emotion/weak-memoize/0.2.5
|
396
|
-
Copyright (c) Emotion team and other contributors
|
397
|
-
@formatjs/fast-memoize 1.1.1 npmjs:@formatjs/fast-memoize/1.1.1
|
398
|
-
Copyright (c) 2021 FormatJS
|
399
|
-
@internationalized/message 3.0.0-alpha.0 npmjs:@internationalized/message/3.0.0-alpha.0
|
400
|
-
Copyright 2019 Adobe
|
401
|
-
Copyright 2020 Adobe. All rights reserved
|
402
|
-
@internationalized/message 3.0.0 npmjs:@internationalized/message/3.0.0
|
403
|
-
Copyright 2019 Adobe
|
404
|
-
Copyright 2020 Adobe. All rights reserved
|
405
|
-
@internationalized/number 3.0.0-alpha.0 npmjs:@internationalized/number/3.0.0-alpha.0
|
406
|
-
Copyright 2019 Adobe
|
407
|
-
Copyright 2020 Adobe. All rights reserved
|
408
|
-
@internationalized/number 3.0.0 npmjs:@internationalized/number/3.0.0
|
409
|
-
Copyright 2019 Adobe
|
410
|
-
Copyright 2020 Adobe. All rights reserved
|
411
|
-
@mdx-js/react 1.6.22 npmjs:@mdx-js/react/1.6.22
|
412
|
-
Copyright (c) 2017-2018 Compositor and Vercel, Inc.
|
413
|
-
@popperjs/core 2.8.6 npmjs:@popperjs/core/2.8.6
|
414
|
-
Copyright (c) 2019 Federico Zivolo
|
415
|
-
@react-aria/accordion 3.0.0-alpha.1 npmjs:@react-aria/accordion/3.0.0-alpha.1
|
416
|
-
Copyright 2019 Adobe
|
417
|
-
@react-aria/button 3.3.1 npmjs:@react-aria/button/3.3.1
|
418
|
-
Copyright 2019 Adobe
|
419
|
-
@react-aria/button 3.3.2 npmjs:@react-aria/button/3.3.2
|
420
|
-
Copyright 2019 Adobe
|
421
|
-
@react-aria/checkbox 3.2.1 npmjs:@react-aria/checkbox/3.2.1
|
422
|
-
Copyright 2019 Adobe
|
423
|
-
Copyright 2020 Adobe. All rights reserved
|
424
|
-
@react-aria/dialog 3.1.2 npmjs:@react-aria/dialog/3.1.2
|
425
|
-
Copyright 2019 Adobe
|
426
|
-
@react-aria/focus 3.2.3 npmjs:@react-aria/focus/3.2.3
|
427
|
-
Copyright 2019 Adobe
|
428
|
-
@react-aria/focus 3.3.0 npmjs:@react-aria/focus/3.3.0
|
429
|
-
Copyright 2019 Adobe
|
430
|
-
Copyright 2021 Adobe. All rights reserved
|
431
|
-
@react-aria/i18n 3.3.0 npmjs:@react-aria/i18n/3.3.0
|
432
|
-
Copyright 2019 Adobe
|
433
|
-
Copyright 2020 Adobe. All rights reserved
|
434
|
-
@react-aria/i18n 3.3.1 npmjs:@react-aria/i18n/3.3.1
|
435
|
-
Copyright 2019 Adobe
|
436
|
-
Copyright 2020 Adobe. All rights reserved
|
437
|
-
@react-aria/interactions 3.4.0 npmjs:@react-aria/interactions/3.4.0
|
438
|
-
Copyright 2019 Adobe
|
439
|
-
Copyright 2020 Adobe. All rights reserved
|
440
|
-
@react-aria/label 3.1.1 npmjs:@react-aria/label/3.1.1
|
441
|
-
Copyright 2019 Adobe
|
442
|
-
@react-aria/label 3.1.2 npmjs:@react-aria/label/3.1.2
|
443
|
-
Copyright 2019 Adobe
|
444
|
-
@react-aria/link 3.1.2 npmjs:@react-aria/link/3.1.2
|
445
|
-
Copyright 2019 Adobe
|
446
|
-
@react-aria/live-announcer 3.0.0 npmjs:@react-aria/live-announcer/3.0.0
|
447
|
-
Copyright 2019 Adobe
|
448
|
-
@react-aria/menu 3.1.4 npmjs:@react-aria/menu/3.1.4
|
449
|
-
Copyright 2019 Adobe
|
450
|
-
@react-aria/overlays 3.6.3 npmjs:@react-aria/overlays/3.6.3
|
451
|
-
Copyright 2019 Adobe
|
452
|
-
Copyright 2020 Adobe. All rights reserved
|
453
|
-
@react-aria/progress 3.1.1 npmjs:@react-aria/progress/3.1.1
|
454
|
-
Copyright 2019 Adobe
|
455
|
-
@react-aria/radio 3.1.3 npmjs:@react-aria/radio/3.1.3
|
456
|
-
Copyright 2019 Adobe
|
457
|
-
Copyright 2020 Adobe. All rights reserved
|
458
|
-
@react-aria/searchfield 3.1.1 npmjs:@react-aria/searchfield/3.1.1
|
459
|
-
Copyright 2019 Adobe
|
460
|
-
Copyright 2020 Adobe. All rights reserved
|
461
|
-
@react-aria/select 3.3.0 npmjs:@react-aria/select/3.3.0
|
462
|
-
Copyright 2019 Adobe
|
463
|
-
@react-aria/selection 3.3.2 npmjs:@react-aria/selection/3.3.2
|
464
|
-
Copyright 2019 Adobe
|
465
|
-
Copyright 2020 Adobe. All rights reserved
|
466
|
-
@react-aria/separator 3.1.1 npmjs:@react-aria/separator/3.1.1
|
467
|
-
Copyright 2019 Adobe
|
468
|
-
@react-aria/ssr 3.0.1 npmjs:@react-aria/ssr/3.0.1
|
469
|
-
Copyright 2019 Adobe
|
470
|
-
@react-aria/ssr 3.0.2 npmjs:@react-aria/ssr/3.0.2
|
471
|
-
Copyright 2019 Adobe
|
472
|
-
@react-aria/switch 3.1.1 npmjs:@react-aria/switch/3.1.1
|
473
|
-
Copyright 2019 Adobe
|
474
|
-
@react-aria/textfield 3.2.2 npmjs:@react-aria/textfield/3.2.2
|
475
|
-
Copyright 2019 Adobe
|
476
|
-
@react-aria/textfield 3.3.0 npmjs:@react-aria/textfield/3.3.0
|
477
|
-
Copyright 2019 Adobe
|
478
|
-
@react-aria/toggle 3.1.2 npmjs:@react-aria/toggle/3.1.2
|
479
|
-
Copyright 2019 Adobe
|
480
|
-
@react-aria/tooltip 3.1.2 npmjs:@react-aria/tooltip/3.1.2
|
481
|
-
Copyright 2019 Adobe
|
482
|
-
@react-aria/utils 3.8.0 npmjs:@react-aria/utils/3.8.0
|
483
|
-
Copyright 2019 Adobe
|
484
|
-
Copyright 2020 Adobe. All rights reserved
|
485
|
-
@react-aria/virtualizer 3.3.3 npmjs:@react-aria/virtualizer/3.3.3
|
486
|
-
Copyright 2019 Adobe
|
487
|
-
Copyright 2020 Adobe. All rights reserved
|
488
|
-
@react-aria/visually-hidden 3.2.1 npmjs:@react-aria/visually-hidden/3.2.1
|
489
|
-
Copyright 2019 Adobe
|
490
|
-
@react-aria/visually-hidden 3.2.2 npmjs:@react-aria/visually-hidden/3.2.2
|
491
|
-
Copyright 2019 Adobe
|
492
|
-
@react-stately/checkbox 3.0.1 npmjs:@react-stately/checkbox/3.0.1
|
493
|
-
Copyright 2019 Adobe
|
494
|
-
@react-stately/collections 3.3.0 npmjs:@react-stately/collections/3.3.0
|
495
|
-
Copyright 2019 Adobe
|
496
|
-
Copyright 2020 Adobe. All rights reserved
|
497
|
-
@react-stately/collections 3.3.2 npmjs:@react-stately/collections/3.3.2
|
498
|
-
Copyright 2019 Adobe
|
499
|
-
Copyright 2020 Adobe. All rights reserved
|
500
|
-
@react-stately/data 3.4.0 npmjs:@react-stately/data/3.4.0
|
501
|
-
Copyright 2019 Adobe
|
502
|
-
@react-stately/layout 3.2.2 npmjs:@react-stately/layout/3.2.2
|
503
|
-
Copyright 2019 Adobe
|
504
|
-
@react-stately/list 3.2.2 npmjs:@react-stately/list/3.2.2
|
505
|
-
Copyright 2019 Adobe
|
506
|
-
Copyright 2020 Adobe. All rights reserved
|
507
|
-
@react-stately/list 3.2.3 npmjs:@react-stately/list/3.2.3
|
508
|
-
Copyright 2019 Adobe
|
509
|
-
Copyright 2020 Adobe. All rights reserved
|
510
|
-
@react-stately/menu 3.2.1 npmjs:@react-stately/menu/3.2.1
|
511
|
-
Copyright 2019 Adobe
|
512
|
-
@react-stately/menu 3.2.2 npmjs:@react-stately/menu/3.2.2
|
513
|
-
Copyright 2019 Adobe
|
514
|
-
@react-stately/overlays 3.1.1 npmjs:@react-stately/overlays/3.1.1
|
515
|
-
Copyright 2019 Adobe
|
516
|
-
@react-stately/overlays 3.1.2 npmjs:@react-stately/overlays/3.1.2
|
517
|
-
Copyright 2019 Adobe
|
518
|
-
@react-stately/radio 3.3.0 npmjs:@react-stately/radio/3.3.0
|
519
|
-
Copyright 2019 Adobe
|
520
|
-
@react-stately/searchfield 3.1.1 npmjs:@react-stately/searchfield/3.1.1
|
521
|
-
Copyright 2019 Adobe
|
522
|
-
@react-stately/select 3.1.1 npmjs:@react-stately/select/3.1.1
|
523
|
-
Copyright 2019 Adobe
|
524
|
-
@react-stately/select 3.1.2 npmjs:@react-stately/select/3.1.2
|
525
|
-
Copyright 2019 Adobe
|
526
|
-
@react-stately/selection 3.3.0 npmjs:@react-stately/selection/3.3.0
|
527
|
-
Copyright 2019 Adobe
|
528
|
-
Copyright 2020 Adobe. All rights reserved
|
529
|
-
@react-stately/toggle 3.2.1 npmjs:@react-stately/toggle/3.2.1
|
530
|
-
Copyright 2019 Adobe
|
531
|
-
@react-stately/toggle 3.2.2 npmjs:@react-stately/toggle/3.2.2
|
532
|
-
Copyright 2019 Adobe
|
533
|
-
@react-stately/tooltip 3.0.4 npmjs:@react-stately/tooltip/3.0.4
|
534
|
-
Copyright 2019 Adobe
|
535
|
-
@react-stately/tree 3.1.2 npmjs:@react-stately/tree/3.1.2
|
536
|
-
Copyright 2019 Adobe
|
537
|
-
Copyright 2020 Adobe. All rights reserved
|
538
|
-
@react-stately/tree 3.1.4 npmjs:@react-stately/tree/3.1.4
|
539
|
-
Copyright 2019 Adobe
|
540
|
-
Copyright 2020 Adobe. All rights reserved
|
541
|
-
@react-stately/utils 3.2.1 npmjs:@react-stately/utils/3.2.1
|
542
|
-
Copyright 2019 Adobe
|
543
|
-
Copyright 2020 Adobe. All rights reserved
|
544
|
-
@react-stately/virtualizer 3.1.4 npmjs:@react-stately/virtualizer/3.1.4
|
545
|
-
Copyright 2019 Adobe
|
546
|
-
Copyright 2020 Adobe. All rights reserved
|
547
|
-
@react-types/accordion 3.0.0-alpha.0 npmjs:@react-types/accordion/3.0.0-alpha.0
|
548
|
-
Copyright 2019 Adobe
|
549
|
-
@react-types/button 3.3.1 npmjs:@react-types/button/3.3.1
|
550
|
-
Copyright 2019 Adobe
|
551
|
-
@react-types/checkbox 3.2.2 npmjs:@react-types/checkbox/3.2.2
|
552
|
-
Copyright 2019 Adobe
|
553
|
-
@react-types/dialog 3.3.0 npmjs:@react-types/dialog/3.3.0
|
554
|
-
Copyright 2019 Adobe
|
555
|
-
@react-types/grid 3.0.0-alpha.0 npmjs:@react-types/grid/3.0.0-alpha.0
|
556
|
-
Copyright 2019 Adobe
|
557
|
-
@react-types/label 3.4.0 npmjs:@react-types/label/3.4.0
|
558
|
-
Copyright 2019 Adobe
|
559
|
-
@react-types/link 3.1.1 npmjs:@react-types/link/3.1.1
|
560
|
-
Copyright 2019 Adobe
|
561
|
-
@react-types/menu 3.1.1 npmjs:@react-types/menu/3.1.1
|
562
|
-
Copyright 2019 Adobe
|
563
|
-
@react-types/overlays 3.4.0 npmjs:@react-types/overlays/3.4.0
|
564
|
-
Copyright 2019 Adobe
|
565
|
-
@react-types/progress 3.1.1 npmjs:@react-types/progress/3.1.1
|
566
|
-
Copyright 2019 Adobe
|
567
|
-
@react-types/radio 3.1.1 npmjs:@react-types/radio/3.1.1
|
568
|
-
Copyright 2019 Adobe
|
569
|
-
@react-types/searchfield 3.1.1 npmjs:@react-types/searchfield/3.1.1
|
570
|
-
Copyright 2019 Adobe
|
571
|
-
@react-types/select 3.2.0 npmjs:@react-types/select/3.2.0
|
572
|
-
Copyright 2019 Adobe
|
573
|
-
@react-types/shared 3.4.0 npmjs:@react-types/shared/3.4.0
|
574
|
-
Copyright 2019 Adobe
|
575
|
-
@react-types/shared 3.6.0 npmjs:@react-types/shared/3.6.0
|
576
|
-
Copyright 2019 Adobe
|
577
|
-
@react-types/switch 3.1.1 npmjs:@react-types/switch/3.1.1
|
578
|
-
Copyright 2019 Adobe
|
579
|
-
@react-types/table 3.0.0-alpha.0 npmjs:@react-types/table/3.0.0-alpha.0
|
580
|
-
Copyright 2019 Adobe
|
581
|
-
@react-types/textfield 3.2.2 npmjs:@react-types/textfield/3.2.2
|
582
|
-
Copyright 2019 Adobe
|
583
|
-
@react-types/tooltip 3.1.1 npmjs:@react-types/tooltip/3.1.1
|
584
|
-
Copyright 2019 Adobe
|
585
|
-
@rebass/forms 4.0.6 npmjs:@rebass/forms/4.0.6
|
586
|
-
Copyright (c) 2015
|
587
|
-
@styled-system/background 5.1.2 npmjs:@styled-system/background/5.1.2
|
588
|
-
Copyright (c) 2017-2018 Brent Jackson
|
589
|
-
@styled-system/border 5.1.5 npmjs:@styled-system/border/5.1.5
|
590
|
-
Copyright (c) 2017-2018 Brent Jackson
|
591
|
-
@styled-system/color 5.1.2 npmjs:@styled-system/color/5.1.2
|
592
|
-
Copyright (c) 2017-2018 Brent Jackson
|
593
|
-
@styled-system/core 5.1.2 npmjs:@styled-system/core/5.1.2
|
594
|
-
Copyright (c) 2017-2018 Brent Jackson
|
595
|
-
@styled-system/css 5.1.5 npmjs:@styled-system/css/5.1.5
|
596
|
-
Copyright (c) 2017-2018 Brent Jackson
|
597
|
-
@styled-system/flexbox 5.1.2 npmjs:@styled-system/flexbox/5.1.2
|
598
|
-
Copyright (c) 2017-2018 Brent Jackson
|
599
|
-
@styled-system/grid 5.1.2 npmjs:@styled-system/grid/5.1.2
|
600
|
-
Copyright (c) 2017-2018 Brent Jackson
|
601
|
-
@styled-system/layout 5.1.2 npmjs:@styled-system/layout/5.1.2
|
602
|
-
Copyright (c) 2017-2018 Brent Jackson
|
603
|
-
@styled-system/position 5.1.2 npmjs:@styled-system/position/5.1.2
|
604
|
-
Copyright (c) 2017-2018 Brent Jackson
|
605
|
-
@styled-system/prop-types 5.1.5 npmjs:@styled-system/prop-types/5.1.5
|
606
|
-
Copyright (c) 2017-2018 Brent Jackson
|
607
|
-
@styled-system/props 5.1.5 npmjs:@styled-system/props/5.1.5
|
608
|
-
Copyright (c) 2017-2018 Brent Jackson
|
609
|
-
@styled-system/shadow 5.1.2 npmjs:@styled-system/shadow/5.1.2
|
610
|
-
Copyright (c) 2017-2018 Brent Jackson
|
611
|
-
@styled-system/should-forward-prop 5.1.5 npmjs:@styled-system/should-forward-prop/5.1.5
|
612
|
-
Copyright (c) 2017-2018 Brent Jackson
|
613
|
-
@styled-system/space 5.1.2 npmjs:@styled-system/space/5.1.2
|
614
|
-
Copyright (c) 2017-2018 Brent Jackson
|
615
|
-
@styled-system/theme-get 5.1.2 npmjs:@styled-system/theme-get/5.1.2
|
616
|
-
Copyright (c) 2017-2018 Brent Jackson
|
617
|
-
@styled-system/typography 5.1.2 npmjs:@styled-system/typography/5.1.2
|
618
|
-
Copyright (c) 2017-2018 Brent Jackson
|
619
|
-
@styled-system/variant 5.1.5 npmjs:@styled-system/variant/5.1.5
|
620
|
-
Copyright (c) 2017-2018 Brent Jackson
|
621
|
-
@tippyjs/react 4.2.0 npmjs:@tippyjs/react/4.2.0
|
622
|
-
Copyright (c) 2018 atomiks
|
623
|
-
@types/parse-json 4.0.0 npmjs:@types/parse-json/4.0.0
|
624
|
-
Copyright (c) Microsoft Corporation. All rights reserved
|
625
|
-
@wojtekmaj/date-utils 1.0.3 npmjs:@wojtekmaj/date-utils/1.0.3
|
626
|
-
Copyright (c) 2019 Wojciech Maj
|
627
|
-
Chalk 2.4.2 npmjs:chalk/2.4.2
|
628
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
629
|
-
Lodash 4.17.21 npmjs:lodash-es/4.17.21
|
630
|
-
Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters */export { default as add } from './add.js';export { default as after } from './after.js';export { default as ary } from './ary
|
631
|
-
Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters */import array from './array.js';import collection from './collection.js';import date from './date.js';import func from './fun
|
632
|
-
Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
633
|
-
Copyright OpenJS Foundation and other contributors <https://openjsf.org/> * Released under MIT license <https://lodash.com/license> * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
634
|
-
copyright Jeremy Ashkenas,DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
635
|
-
Lodash 4.17.21 npmjs:lodash/4.17.21
|
636
|
-
Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters */(function(){function n(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0]
|
637
|
-
Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters */;(function() {
|
638
|
-
Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
639
|
-
Copyright OpenJS Foundation and other contributors <https://openjsf.org/> * Released under MIT license <https://lodash.com/license> * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
640
|
-
copyright Jeremy Ashkenas,DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
641
|
-
Qix-/color-convert 1.9.3 npmjs:color-convert/1.9.3
|
642
|
-
Copyright © 2011-2016, Heather Arthur and Josh Junon. Licensed under the
|
643
|
-
Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
|
644
|
-
React from Facebook 16.13.1 npmjs:react-is/16.13.1
|
645
|
-
Copyright (c) Facebook, Inc. and its affiliates.
|
646
|
-
Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree.
|
647
|
-
TinyColor 1.4.2 npmjs:tinycolor2/1.4.2
|
648
|
-
Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com * http://flesler.blogspot.com Licensed under BSD * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008 * * @projectDes
|
649
|
-
Copyright (c), Brian Grinstead, http://briangrinstead.com
|
650
|
-
Copyright 2012 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */
|
651
|
-
ansi-styles 3.2.1 npmjs:ansi-styles/3.2.1
|
652
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
653
|
-
babel-plugin-macros 2.8.0 npmjs:babel-plugin-macros/2.8.0
|
654
|
-
Copyright (c) 2017 Kent C. Dodds
|
655
|
-
browserify/resolve v1.20.0 npmjs:resolve/1.20.0
|
656
|
-
Copyright (c) 2012 James Halliday
|
657
|
-
callsites 3.1.0 npmjs:callsites/3.1.0
|
658
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
659
|
-
© [Sindre Sorhus
|
660
|
-
classnames 2.2.6 npmjs:classnames/2.2.6
|
661
|
-
Copyright (c) 2017 Jed Watson
|
662
|
-
Copyright (c) 2017 Jed Watson.
|
663
|
-
Copyright (c) 2017 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames*//* global define */
|
664
|
-
clsx 1.1.1 npmjs:clsx/1.1.1
|
665
|
-
Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
666
|
-
© [Luke Edwards
|
667
|
-
cosmiconfig 6.0.0 npmjs:cosmiconfig/6.0.0
|
668
|
-
Copyright (c) 2015 David Clark
|
669
|
-
cross-env 6.0.3 npmjs:cross-env/6.0.3
|
670
|
-
Copyright (c) 2017 Kent C. Dodds
|
671
|
-
csstype 2.6.16 npmjs:csstype/2.6.16
|
672
|
-
Copyright (c) 2017-2018 Fredrik Nicol
|
673
|
-
csstype 3.0.7 npmjs:csstype/3.0.7
|
674
|
-
Copyright (c) 2017-2018 Fredrik Nicol
|
675
|
-
©ֵn��k�Y�v��\45J��B����X�*���;È(��z�*�j.�Õ��Ã��@��\>�a~����=$?�Xb� �"�=��G3/� ?�hyv�E �Y'�ï¿
|
676
|
-
csstype 3.0.8 npmjs:csstype/3.0.8
|
677
|
-
Copyright (c) 2017-2018 Fredrik Nicol
|
678
|
-
deep_merge v4.2.2 npmjs:deepmerge/4.2.2
|
679
|
-
Copyright (c) 2012 James Halliday, Josh Duff, and other contributors
|
680
|
-
dom-helpers 3.4.0 npmjs:dom-helpers/3.4.0
|
681
|
-
Copyright (c) 2015 Jason Quense
|
682
|
-
Copyright 2013-2014, Facebook, Inc. * All rights reserved
|
683
|
-
Copyright 2014-2015, Facebook, Inc. * All rights reserved
|
684
|
-
emotion-normalize 11.0.1 npmjs:emotion-normalize/11.0.1
|
685
|
-
Copyright (c) 2017 Infinum
|
686
|
-
emotion-utils 10.2.2 npmjs:babel-plugin-emotion/10.2.2
|
687
|
-
Copyright (c) Emotion team and other contributors
|
688
|
-
escape-string-regexp 1.0.5 npmjs:escape-string-regexp/1.0.5
|
689
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
690
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation f
|
691
|
-
© [Sindre Sorhus
|
692
|
-
© [Sindre Sorhus "readmeFilename": "readme.md", "bugs": { "url": "https://github.com/sindresorhus/escape-string-regexp/issues" }, "homepage": "https://github.com/sindresorhus/escape-strin
|
693
|
-
© [Sindre Sorhus "readmeFilename": "readme.md", "bugs": { "url": "https://github.com/sindresorhus/escape-string-regexp/issues" }, "homepage": "https://github.com/sindresorhus/escape-strin
|
694
|
-
© [Sindre Sorhus "readmeFilename": "readme.md", "bugs": { "url": "https://github.com/sindresorhus/escape-string-regexp/issues" }, "homepage": "https://github.com/sindresorhus/escape-strin
|
695
|
-
© [Sindre Sorhus "readmeFilename": "readme.md", "bugs": { "url": "https://github.com/sindresorhus/escape-string-regexp/issues" }, "homepage": "https://github.com/sindresorhus/escape-strin
|
696
|
-
© [Sindre Sorhus "readmeFilename": "readme.md", "repository": { "type": "git", "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" }, "scripts": { "test": "xo &&
|
697
|
-
© [Sindre Sorhus
|
698
|
-
escape-string-regexp v4.0.0 npmjs:escape-string-regexp/4.0.0
|
699
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
700
|
-
find-root 1.1.0 npmjs:find-root/1.1.0
|
701
|
-
Copyright © 2017 jsdnxx
|
702
|
-
function-bind 1.1.1 npmjs:function-bind/1.1.1
|
703
|
-
Copyright (c) 2013 Raynos.
|
704
|
-
get-user-locale 1.4.0 npmjs:get-user-locale/1.4.0
|
705
|
-
Copyright (c) 2018-2019 Wojciech Maj
|
706
|
-
has 1.0.3 npmjs:has/1.0.3
|
707
|
-
Copyright (c) 2013 Thiago de Arruda
|
708
|
-
has-flag 3.0.0 npmjs:has-flag/3.0.0
|
709
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
710
|
-
© [Sindre Sorhus
|
711
|
-
hoist-non-react-statics v3.3.2 npmjs:hoist-non-react-statics/3.3.2
|
712
|
-
Copyright (c) 2015, Yahoo----------------------------------------------------
|
713
|
-
Copyright 2015, Yahoo * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ var REACT_STATICS = { childContextTypes: true, contextType: true, c
|
714
|
-
Copyright 2015, Yahoo * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */import { ForwardRef, Memo, isMemo } from 'react-is';
|
715
|
-
Copyright 2015, Yahoo * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */var REACT_STATICS = { childContextTypes: true, contextType: true, context
|
716
|
-
copyright information.
|
717
|
-
import-fresh 3.3.0 npmjs:import-fresh/3.3.0
|
718
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
719
|
-
intl-messageformat 2.2.0 npmjs:intl-messageformat/2.2.0
|
720
|
-
Copyright (c) 2012, Andreas Lind PetersenAll rights reserved
|
721
|
-
Copyright (c) 2014, YahooCopyrights licensed under the New BSD License.See the accompanying LICENSE file for terms.*/
|
722
|
-
Copyright 2013 Andy Earnshaw, MIT License
|
723
|
-
Copyright 2013 Andy Earnshaw, MIT License
|
724
|
-
Copyright 2013 YahooAll rights reserved
|
725
|
-
copyright information.
|
726
|
-
intl-messageformat-parser 1.4.0 npmjs:intl-messageformat-parser/1.4.0
|
727
|
-
Copyright 2014 Alex Sexton
|
728
|
-
Copyright 2014 YahooAll rights reserved
|
729
|
-
copyright information.
|
730
|
-
is-arrayish 0.2.1 npmjs:is-arrayish/0.2.1
|
731
|
-
Copyright (c) 2015 JD Ballard
|
732
|
-
©�f쫳�ͧa���>��?����l�a���t��:%|��=�Ä��x0�TLcY{B|+��ho�åÝ����cÇ��N2��Y9]�E�����h���(ï¿
|
733
|
-
is-core-module 2.2.0 npmjs:is-core-module/2.2.0
|
734
|
-
Copyright (c) 2014 Dave Justice
|
735
|
-
isexe 2.0.0 npmjs:isexe/2.0.0
|
736
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
737
|
-
js-tokens 4.0.0 npmjs:js-tokens/4.0.0
|
738
|
-
Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
|
739
|
-
Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell// License: MIT. (See LICENSE.)
|
740
|
-
json-parse-even-better-errors 2.3.1 npmjs:json-parse-even-better-errors/2.3.1
|
741
|
-
Copyright 2017 Kat March
|
742
|
-
Copyright npm, Inc.
|
743
|
-
kk-color-name 1.1.3 npmjs:color-name/1.1.3
|
744
|
-
Copyright (c) 2015 Dmitry IvanovPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So
|
745
|
-
lines-and-columns 1.1.6 npmjs:lines-and-columns/1.1.6
|
746
|
-
Copyright (c) 2015 Brian Donovan
|
747
|
-
lodash.once 4.1.1 npmjs:lodash.once/4.1.1
|
748
|
-
Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters */
|
749
|
-
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
750
|
-
Copyright jQuery Foundation and other contributors <https://jquery.org/> * Released under MIT license <https://lodash.com/license> * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
751
|
-
copyright Jeremy Ashkenas,DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
752
|
-
loose-envify 1.4.0 npmjs:loose-envify/1.4.0
|
753
|
-
Copyright (c) 2015 Andres Suarez <zertosh@gmail.com>
|
754
|
-
material-colors 1.2.6 npmjs:material-colors/1.2.6
|
755
|
-
Copyright 2014 Shuhei Kagawa
|
756
|
-
mdi-react 7.4.0 npmjs:mdi-react/7.4.0
|
757
|
-
Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),with Reserved Font Name Material Design Icons.
|
758
|
-
Copyright (c) 2014, Google (http://www.google.com/design/)uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE
|
759
|
-
Copyright (c) 2016-2019 Levin Rickert
|
760
|
-
moment/moment 2.29.1 npmjs:moment/2.29.1
|
761
|
-
Copyright (c) JS Foundation and other contributors
|
762
|
-
node-cross-spawn 7.0.3 npmjs:cross-spawn/7.0.3
|
763
|
-
Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
|
764
|
-
node-error-ex 1.3.2 npmjs:error-ex/1.3.2
|
765
|
-
Copyright (c) 2015 JD Ballard
|
766
|
-
node-uuid 8.3.2 npmjs:uuid/8.3.2
|
767
|
-
Copyright (C) Paul Johnston 1999 - 2009 * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet * Distributed under the BSD License * See http://pajhome.org.uk/crypt/md5 for more info. */
|
768
|
-
Copyright (C) Paul Johnston 1999 - 2009 * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet * Distributed under the BSD License * See http://pajhome.org.uk/crypt/md5 for more info. */
|
769
|
-
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
770
|
-
Copyright 2011, Sebastian Tschan * https://blueimp.net * * Licensed under the MIT license:
|
771
|
-
object-assign 4.1.1 npmjs:object-assign/4.1.1
|
772
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
773
|
-
© [Sindre Sorhus
|
774
|
-
parent-module 1.0.1 npmjs:parent-module/1.0.1
|
775
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
776
|
-
© [Sindre Sorhus
|
777
|
-
parse-json v5.2.0 npmjs:parse-json/5.2.0
|
778
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
779
|
-
path-parse 1.0.6 npmjs:path-parse/1.0.6
|
780
|
-
Copyright (c) 2015 Javier Blanco
|
781
|
-
© [Javier Blanco
|
782
|
-
path-type 4.0.0 npmjs:path-type/4.0.0
|
783
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
784
|
-
© [Sindre Sorhus
|
785
|
-
prop-types 15.7.2 npmjs:prop-types/15.7.2
|
786
|
-
Copyright (c) 2013-present, Facebook, Inc.
|
787
|
-
Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree.
|
788
|
-
Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree.
|
789
|
-
react-calendar 3.4.0 npmjs:react-calendar/3.4.0
|
790
|
-
Copyright (c) 2017
|
791
|
-
react-color 2.19.3 npmjs:react-color/2.19.3
|
792
|
-
Copyright (c) 2015 Case Sandberg
|
793
|
-
react-shapebase 1.0.23 npmjs:react-shapebase/1.0.23
|
794
|
-
Copyright (c) 2018 Teddy Andersson
|
795
|
-
reactcss 1.2.3 npmjs:reactcss/1.2.3
|
796
|
-
Copyright (c) 2015 Case Sandberg
|
797
|
-
rebass 4.0.7 npmjs:rebass/4.0.7
|
798
|
-
Copyright (c) 2015
|
799
|
-
reflexbox 4.0.6 npmjs:reflexbox/4.0.6
|
800
|
-
Copyright (c) 2015
|
801
|
-
regenerator-runtime 0.13.7 npmjs:regenerator-runtime/0.13.7
|
802
|
-
Copyright (c) 2014-present, Facebook, Inc.
|
803
|
-
Copyright (c) 2014-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree.
|
804
|
-
resolve-from 4.0.0 npmjs:resolve-from/4.0.0
|
805
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
806
|
-
© [Sindre Sorhus
|
807
|
-
safe-buffer 5.1.2 npmjs:safe-buffer/5.1.2
|
808
|
-
Copyright (c) Feross Aboukhadijeh
|
809
|
-
shebang-command 2.0.0 npmjs:shebang-command/2.0.0
|
810
|
-
Copyright (c) Kevin M
|
811
|
-
shebang-regex 3.0.0 npmjs:shebang-regex/3.0.0
|
812
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
813
|
-
© [Sindre Sorhus
|
814
|
-
sindresorhus/supports-color 5.5.0 npmjs:supports-color/5.5.0
|
815
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
816
|
-
source-map 0.5.7 npmjs:source-map/0.5.7
|
817
|
-
Copyright (c) 2009-2011, Mozilla Foundation and contributorsAll rights reserved
|
818
|
-
Copyright 2009-2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE.txt or:
|
819
|
-
Copyright 2009-2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE.txt or:
|
820
|
-
Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or:
|
821
|
-
Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or:
|
822
|
-
Copyright 2011 The Closure Compiler Authors. All rights reserved
|
823
|
-
Copyright 2011 The Closure Compiler Authors. All rights reserved
|
824
|
-
Copyright 2014 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or:
|
825
|
-
Copyright 2014 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or:
|
826
|
-
styled-system 5.1.5 npmjs:styled-system/5.1.5
|
827
|
-
Copyright (c) 2017-2018 Brent Jackson
|
828
|
-
stylis v4.0.7 npmjs:stylis/4.0.7
|
829
|
-
Copyright (c) 2016-present Sultan Tarimo
|
830
|
-
tippy.js 6.2.7 npmjs:tippy.js/6.2.7
|
831
|
-
Copyright (c) 2017-present atomiks
|
832
|
-
to-fast-properties 2.0.0 npmjs:to-fast-properties/2.0.0
|
833
|
-
Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus
|
834
|
-
© Petka Antonov, John-David Dalton, Sindre Sorhus
|
835
|
-
tslib 2.1.0 npmjs:tslib/2.1.0
|
836
|
-
Copyright (c) Microsoft Corporation.Permission to use, copy, modify, and/or distribute this software for anypurpose with or without fee is hereby granted.
|
837
|
-
which 2.0.2 npmjs:which/2.0.2
|
838
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
839
|
-
yaml 1.10.0 npmjs:yaml/1.10.0
|
840
|
-
Copyright 2018 Eemeli Aro <eemeli@gmail.com>
|
841
|
-
|
842
|
-
|
843
|
-
Licenses:
|
844
|
-
|
845
|
-
Apache License 2.0
|
846
|
-
(@internationalized/message 3.0.0, @internationalized/message 3.0.0-alpha.0, @internationalized/message 3.0.1, @internationalized/message 3.0.2, @internationalized/number 3.0.0, @internationalized/number 3.0.0-alpha.0, @internationalized/number 3.0.1, @internationalized/number 3.0.2, @internationalized/number 3.0.3, @react-aria/accordion 3.0.0-alpha.1, @react-aria/breadcrumbs 3.1.5, @react-aria/button 3.3.1, @react-aria/button 3.3.2, @react-aria/checkbox 3.2.1, @react-aria/color 3.0.0-beta.3, @react-aria/combobox 3.0.0, @react-aria/dialog 3.1.2, @react-aria/focus 3.2.3, @react-aria/focus 3.3.0, @react-aria/focus 3.4.0, @react-aria/focus 3.4.1, @react-aria/focus 3.5.0, @react-aria/grid 3.0.0, @react-aria/i18n 3.3.0, @react-aria/i18n 3.3.1, @react-aria/i18n 3.3.2, @react-aria/interactions 3.4.0, @react-aria/interactions 3.5.0, @react-aria/interactions 3.5.1, @react-aria/interactions 3.6.0, @react-aria/label 3.1.1, @react-aria/label 3.1.2, @react-aria/label 3.1.3, @react-aria/link 3.1.2, @react-aria/link 3.1.4, @react-aria/listbox 3.3.0, @react-aria/live-announcer 3.0.0, @react-aria/live-announcer 3.0.1, @react-aria/menu 3.1.4, @react-aria/menu 3.2.2, @react-aria/overlays 3.6.3, @react-aria/overlays 3.7.0, @react-aria/overlays 3.7.1, @react-aria/overlays 3.7.2, @react-aria/progress 3.1.1, @react-aria/radio 3.1.3, @react-aria/searchfield 3.1.1, @react-aria/select 3.3.0, @react-aria/selection 3.3.2, @react-aria/selection 3.5.0, @react-aria/selection 3.5.1, @react-aria/selection 3.6.0, @react-aria/separator 3.1.1, @react-aria/slider 3.0.3, @react-aria/spinbutton 3.0.1, @react-aria/ssr 3.0.1, @react-aria/ssr 3.0.2, @react-aria/ssr 3.0.3, @react-aria/ssr 3.1.0, @react-aria/switch 3.1.1, @react-aria/tabs 3.0.1, @react-aria/textfield 3.2.2, @react-aria/textfield 3.3.0, @react-aria/textfield 3.3.1, @react-aria/toggle 3.1.2, @react-aria/tooltip 3.1.2, @react-aria/utils 3.8.0, @react-aria/utils 3.8.1, @react-aria/utils 3.8.2, @react-aria/utils 3.9.0, @react-aria/virtualizer 3.3.3, @react-aria/visually-hidden 3.2.1, @react-aria/visually-hidden 3.2.2, @react-aria/visually-hidden 3.2.3, @react-spectrum/provider 3.2.2, @react-spectrum/utils 3.6.1, @react-spectrum/utils 3.6.2, @react-stately/checkbox 3.0.1, @react-stately/collections 3.3.0, @react-stately/collections 3.3.2, @react-stately/collections 3.3.3, @react-stately/color 3.0.0-beta.3, @react-stately/combobox 3.0.0, @react-stately/data 3.4.0, @react-stately/grid 3.0.0, @react-stately/layout 3.2.2, @react-stately/layout 3.3.1, @react-stately/list 3.2.2, @react-stately/list 3.2.3, @react-stately/list 3.3.0, @react-stately/menu 3.2.1, @react-stately/menu 3.2.2, @react-stately/overlays 3.1.1, @react-stately/overlays 3.1.2, @react-stately/overlays 3.1.3, @react-stately/radio 3.3.0, @react-stately/radio 3.3.2, @react-stately/searchfield 3.1.1, @react-stately/select 3.1.1, @react-stately/select 3.1.2, @react-stately/selection 3.3.0, @react-stately/selection 3.6.0, @react-stately/selection 3.6.1, @react-stately/selection 3.7.0, @react-stately/slider 3.0.3, @react-stately/tabs 3.0.1, @react-stately/toggle 3.2.1, @react-stately/toggle 3.2.2, @react-stately/tooltip 3.0.4, @react-stately/tree 3.1.2, @react-stately/tree 3.1.4, @react-stately/utils 3.2.1, @react-stately/utils 3.2.2, @react-stately/virtualizer 3.1.4, @react-stately/virtualizer 3.1.5, @react-types/accordion 3.0.0-alpha.0, @react-types/breadcrumbs 3.2.1, @react-types/button 3.3.1, @react-types/button 3.4.0, @react-types/button 3.4.1, @react-types/checkbox 3.2.2, @react-types/checkbox 3.2.3, @react-types/color 3.0.0-beta.2, @react-types/combobox 3.0.0, @react-types/dialog 3.3.0, @react-types/grid 3.0.0, @react-types/grid 3.0.0-alpha.0, @react-types/grid 3.0.0-beta.0, @react-types/label 3.4.0, @react-types/label 3.4.1, @react-types/link 3.1.1, @react-types/link 3.1.3, @react-types/listbox 3.2.0, @react-types/menu 3.1.1, @react-types/menu 3.2.0, @react-types/numberfield 3.0.1, @react-types/overlays 3.4.0, @react-types/overlays 3.5.0, @react-types/overlays 3.5.1, @react-types/progress 3.1.1, @react-types/provider 3.3.2, @react-types/radio 3.1.1, @react-types/radio 3.1.2, @react-types/searchfield 3.1.1, @react-types/select 3.2.0, @react-types/shared 3.4.0, @react-types/shared 3.6.0, @react-types/shared 3.7.0, @react-types/shared 3.7.1, @react-types/shared 3.8.0, @react-types/shared 3.9.0, @react-types/slider 3.0.2, @react-types/switch 3.1.1, @react-types/table 3.0.0-alpha.0, @react-types/table 3.0.0-beta.1, @react-types/tabs 3.0.1, @react-types/textfield 3.2.2, @react-types/textfield 3.2.3, @react-types/tooltip 3.1.1, Chroma.js v2.1.0)
|
847
|
-
|
848
|
-
Apache License
|
849
|
-
Version 2.0, January 2004
|
850
|
-
=========================
|
851
|
-
|
852
|
-
|
853
|
-
http://www.apache.org/licenses/
|
854
|
-
|
855
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
856
|
-
|
857
|
-
1. Definitions.
|
858
|
-
|
859
|
-
"License" shall mean the terms and conditions for use, reproduction, and
|
860
|
-
distribution as defined by Sections 1 through 9 of this document.
|
861
|
-
|
862
|
-
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
863
|
-
owner that is granting the License.
|
864
|
-
|
865
|
-
"Legal Entity" shall mean the union of the acting entity and all other entities
|
866
|
-
that control, are controlled by, or are under common control with that entity.
|
867
|
-
For the purposes of this definition, "control" means (i) the power, direct or
|
868
|
-
indirect, to cause the direction or management of such entity, whether by
|
869
|
-
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
870
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
871
|
-
|
872
|
-
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
|
873
|
-
granted by this License.
|
874
|
-
|
875
|
-
"Source" form shall mean the preferred form for making modifications, including
|
876
|
-
but not limited to software source code, documentation source, and configuration
|
877
|
-
files.
|
878
|
-
|
879
|
-
"Object" form shall mean any form resulting from mechanical transformation or
|
880
|
-
translation of a Source form, including but not limited to compiled object code,
|
881
|
-
generated documentation, and conversions to other media types.
|
882
|
-
|
883
|
-
"Work" shall mean the work of authorship, whether in Source or Object form, made
|
884
|
-
available under the License, as indicated by a copyright notice that is included
|
885
|
-
in or attached to the work (an example is provided in the Appendix below).
|
886
|
-
|
887
|
-
"Derivative Works" shall mean any work, whether in Source or Object form, that is
|
888
|
-
based on (or derived from) the Work and for which the editorial revisions,
|
889
|
-
annotations, elaborations, or other modifications represent, as a whole, an
|
890
|
-
original work of authorship. For the purposes of this License, Derivative Works
|
891
|
-
shall not include works that remain separable from, or merely link (or bind by
|
892
|
-
name) to the interfaces of, the Work and Derivative Works thereof.
|
893
|
-
|
894
|
-
"Contribution" shall mean any work of authorship, including the original version
|
895
|
-
of the Work and any modifications or additions to that Work or Derivative Works
|
896
|
-
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
|
897
|
-
the copyright owner or by an individual or Legal Entity authorized to submit on
|
898
|
-
behalf of the copyright owner. For the purposes of this definition, "submitted"
|
899
|
-
means any form of electronic, verbal, or written communication sent to the
|
900
|
-
Licensor or its representatives, including but not limited to communication on
|
901
|
-
electronic mailing lists, source code control systems, and issue tracking systems
|
902
|
-
that are managed by, or on behalf of, the Licensor for the purpose of discussing
|
903
|
-
and improving the Work, but excluding communication that is conspicuously marked
|
904
|
-
or otherwise designated in writing by the copyright owner as "Not a
|
905
|
-
Contribution."
|
906
|
-
|
907
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
|
908
|
-
whom a Contribution has been received by Licensor and subsequently incorporated
|
909
|
-
within the Work.
|
910
|
-
|
911
|
-
2. Grant of Copyright License. Subject to the terms and conditions of this
|
912
|
-
License, each Contributor hereby grants to You a perpetual, worldwide,
|
913
|
-
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
|
914
|
-
reproduce, prepare Derivative Works of, publicly display, publicly perform,
|
915
|
-
sublicense, and distribute the Work and such Derivative Works in Source or Object
|
916
|
-
form.
|
917
|
-
|
918
|
-
3. Grant of Patent License. Subject to the terms and conditions of this License,
|
919
|
-
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
|
920
|
-
no-charge, royalty-free, irrevocable (except as stated in this section) patent
|
921
|
-
license to make, have made, use, offer to sell, sell, import, and otherwise
|
922
|
-
transfer the Work, where such license applies only to those patent claims
|
923
|
-
licensable by such Contributor that are necessarily infringed by their
|
924
|
-
Contribution(s) alone or by combination of their Contribution(s) with the Work to
|
925
|
-
which such Contribution(s) was submitted. If You institute patent litigation
|
926
|
-
against any entity (including a cross-claim or counterclaim in a lawsuit)
|
927
|
-
alleging that the Work or a Contribution incorporated within the Work constitutes
|
928
|
-
direct or contributory patent infringement, then any patent licenses granted to
|
929
|
-
You under this License for that Work shall terminate as of the date such
|
930
|
-
litigation is filed.
|
931
|
-
|
932
|
-
4. Redistribution. You may reproduce and distribute copies of the Work or
|
933
|
-
Derivative Works thereof in any medium, with or without modifications, and in
|
934
|
-
Source or Object form, provided that You meet the following conditions:
|
935
|
-
|
936
|
-
a. You must give any other recipients of the Work or Derivative Works a copy of
|
937
|
-
this License; and
|
938
|
-
|
939
|
-
b. You must cause any modified files to carry prominent notices stating that
|
940
|
-
You changed the files; and
|
941
|
-
|
942
|
-
c. You must retain, in the Source form of any Derivative Works that You
|
943
|
-
distribute, all copyright, patent, trademark, and attribution notices from
|
944
|
-
the Source form of the Work, excluding those notices that do not pertain to
|
945
|
-
any part of the Derivative Works; and
|
946
|
-
|
947
|
-
d. If the Work includes a "NOTICE" text file as part of its distribution, then
|
948
|
-
any Derivative Works that You distribute must include a readable copy of the
|
949
|
-
attribution notices contained within such NOTICE file, excluding those
|
950
|
-
notices that do not pertain to any part of the Derivative Works, in at least
|
951
|
-
one of the following places: within a NOTICE text file distributed as part of
|
952
|
-
the Derivative Works; within the Source form or documentation, if provided
|
953
|
-
along with the Derivative Works; or, within a display generated by the
|
954
|
-
Derivative Works, if and wherever such third-party notices normally appear.
|
955
|
-
The contents of the NOTICE file are for informational purposes only and do
|
956
|
-
not modify the License. You may add Your own attribution notices within
|
957
|
-
Derivative Works that You distribute, alongside or as an addendum to the
|
958
|
-
NOTICE text from the Work, provided that such additional attribution notices
|
959
|
-
cannot be construed as modifying the License.
|
960
|
-
|
961
|
-
You may add Your own copyright statement to Your modifications and may provide
|
962
|
-
additional or different license terms and conditions for use, reproduction, or
|
963
|
-
distribution of Your modifications, or for any such Derivative Works as a whole,
|
964
|
-
provided Your use, reproduction, and distribution of the Work otherwise complies
|
965
|
-
with the conditions stated in this License.
|
966
|
-
|
967
|
-
5. Submission of Contributions. Unless You explicitly state otherwise, any
|
968
|
-
Contribution intentionally submitted for inclusion in the Work by You to the
|
969
|
-
Licensor shall be under the terms and conditions of this License, without any
|
970
|
-
additional terms or conditions. Notwithstanding the above, nothing herein shall
|
971
|
-
supersede or modify the terms of any separate license agreement you may have
|
972
|
-
executed with Licensor regarding such Contributions.
|
973
|
-
|
974
|
-
6. Trademarks. This License does not grant permission to use the trade names,
|
975
|
-
trademarks, service marks, or product names of the Licensor, except as required
|
976
|
-
for reasonable and customary use in describing the origin of the Work and
|
977
|
-
reproducing the content of the NOTICE file.
|
978
|
-
|
979
|
-
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
|
980
|
-
writing, Licensor provides the Work (and each Contributor provides its
|
981
|
-
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
982
|
-
either express or implied, including, without limitation, any warranties or
|
983
|
-
conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
984
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
985
|
-
appropriateness of using or redistributing the Work and assume any risks
|
986
|
-
associated with Your exercise of permissions under this License.
|
987
|
-
|
988
|
-
8. Limitation of Liability. In no event and under no legal theory, whether in
|
989
|
-
tort (including negligence), contract, or otherwise, unless required by
|
990
|
-
applicable law (such as deliberate and grossly negligent acts) or agreed to in
|
991
|
-
writing, shall any Contributor be liable to You for damages, including any
|
992
|
-
direct, indirect, special, incidental, or consequential damages of any character
|
993
|
-
arising as a result of this License or out of the use or inability to use the
|
994
|
-
Work (including but not limited to damages for loss of goodwill, work stoppage,
|
995
|
-
computer failure or malfunction, or any and all other commercial damages or
|
996
|
-
losses), even if such Contributor has been advised of the possibility of such
|
997
|
-
damages.
|
998
|
-
|
999
|
-
9. Accepting Warranty or Additional Liability. While redistributing the Work or
|
1000
|
-
Derivative Works thereof, You may choose to offer, and charge a fee for,
|
1001
|
-
acceptance of support, warranty, indemnity, or other liability obligations and/or
|
1002
|
-
rights consistent with this License. However, in accepting such obligations, You
|
1003
|
-
may act only on Your own behalf and on Your sole responsibility, not on behalf of
|
1004
|
-
any other Contributor, and only if You agree to indemnify, defend, and hold each
|
1005
|
-
Contributor harmless for any liability incurred by, or claims asserted against,
|
1006
|
-
such Contributor by reason of your accepting any such warranty or additional
|
1007
|
-
liability.
|
1008
|
-
|
1009
|
-
END OF TERMS AND CONDITIONS
|
1010
|
-
|
1011
|
-
APPENDIX: How to apply the Apache License to your work
|
1012
|
-
|
1013
|
-
To apply the Apache License to your work, attach the following boilerplate
|
1014
|
-
notice, with the fields enclosed by brackets "[]" replaced with your own
|
1015
|
-
identifying information. (Don't include the brackets!) The text should be
|
1016
|
-
enclosed in the appropriate comment syntax for the file format. We also recommend
|
1017
|
-
that a file or class name and description of purpose be included on the same
|
1018
|
-
"printed page" as the copyright notice for easier identification within
|
1019
|
-
third-party archives.
|
1020
|
-
|
1021
|
-
Copyright [yyyy] [name of copyright owner] Licensed under the Apache License,
|
1022
|
-
Version 2.0 (the "License"); you may not use this file except in compliance
|
1023
|
-
with the License. You may obtain a copy of the License at
|
1024
|
-
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
|
1025
|
-
or agreed to in writing, software distributed under the License is
|
1026
|
-
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
1027
|
-
KIND, either express or implied. See the License for the specific language
|
1028
|
-
governing permissions and limitations under the License.
|
1029
|
-
|
1030
|
-
---
|
1031
|
-
|
1032
|
-
BSD 3-clause "New" or "Revised" License
|
1033
|
-
(Chroma.js v2.1.0, hoist-non-react-statics v3.3.2, intl-messageformat 9.6.18, intl-messageformat 9.7.1, intl-messageformat 9.8.2, intl-messageformat 9.9.1)
|
1034
|
-
|
1035
|
-
Copyright (c) <YEAR>, <OWNER>
|
1036
|
-
All rights reserved.
|
1037
|
-
|
1038
|
-
Redistribution and use in source and binary forms, with or without modification,
|
1039
|
-
are permitted provided that the following conditions are met:
|
1040
|
-
|
1041
|
-
* Redistributions of source code must retain the above copyright notice, this
|
1042
|
-
list of conditions and the following disclaimer.
|
1043
|
-
|
1044
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
1045
|
-
this list of conditions and the following disclaimer in the documentation
|
1046
|
-
and/or other materials provided with the distribution.
|
1047
|
-
|
1048
|
-
* Neither the name of the <ORGANIZATION> nor the names of its contributors may
|
1049
|
-
be used to endorse or promote products derived from this software without
|
1050
|
-
specific prior written permission.
|
1051
|
-
|
1052
|
-
|
1053
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
1054
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
1055
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
1056
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
1057
|
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
1058
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
1059
|
-
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1060
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
1061
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
1062
|
-
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1063
|
-
|
1064
|
-
---
|
1065
|
-
|
1066
|
-
BSD 3-clause "New" or "Revised" License
|
1067
|
-
(intl-messageformat 2.2.0)
|
1068
|
-
|
1069
|
-
Copyright 2013 Yahoo! Inc.
|
1070
|
-
All rights reserved.
|
1071
|
-
|
1072
|
-
Redistribution and use in source and binary forms, with or without
|
1073
|
-
modification, are permitted provided that the following conditions are met:
|
1074
|
-
|
1075
|
-
* Redistributions of source code must retain the above copyright
|
1076
|
-
notice, this list of conditions and the following disclaimer.
|
1077
|
-
|
1078
|
-
* Redistributions in binary form must reproduce the above copyright
|
1079
|
-
notice, this list of conditions and the following disclaimer in the
|
1080
|
-
documentation and/or other materials provided with the distribution.
|
1081
|
-
|
1082
|
-
* Neither the name of the Yahoo! Inc. nor the
|
1083
|
-
names of its contributors may be used to endorse or promote products
|
1084
|
-
derived from this software without specific prior written permission.
|
1085
|
-
|
1086
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
1087
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
1088
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
1089
|
-
DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
|
1090
|
-
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
1091
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
1092
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
1093
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1094
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
1095
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
1096
|
-
|
1097
|
-
---
|
1098
|
-
|
1099
|
-
BSD 3-clause "New" or "Revised" License
|
1100
|
-
(intl-messageformat-parser 1.4.0)
|
1101
|
-
|
1102
|
-
Copyright 2014 Yahoo! Inc.
|
1103
|
-
All rights reserved.
|
1104
|
-
|
1105
|
-
Redistribution and use in source and binary forms, with or without
|
1106
|
-
modification, are permitted provided that the following conditions are met:
|
1107
|
-
|
1108
|
-
* Redistributions of source code must retain the above copyright
|
1109
|
-
notice, this list of conditions and the following disclaimer.
|
1110
|
-
|
1111
|
-
* Redistributions in binary form must reproduce the above copyright
|
1112
|
-
notice, this list of conditions and the following disclaimer in the
|
1113
|
-
documentation and/or other materials provided with the distribution.
|
1114
|
-
|
1115
|
-
* Neither the name of the Yahoo! Inc. nor the
|
1116
|
-
names of its contributors may be used to endorse or promote products
|
1117
|
-
derived from this software without specific prior written permission.
|
1118
|
-
|
1119
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
1120
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
1121
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
1122
|
-
DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
|
1123
|
-
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
1124
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
1125
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
1126
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1127
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
1128
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
1129
|
-
|
1130
|
-
---
|
1131
|
-
|
1132
|
-
BSD 3-clause "New" or "Revised" License
|
1133
|
-
(source-map 0.5.7)
|
1134
|
-
|
1135
|
-
License: BSD-3-clause
|
1136
|
-
|
1137
|
-
Files: debian/*
|
1138
|
-
Copyright: 2014 Leo Iannacone <l3on@ubuntu.com>
|
1139
|
-
License: BSD-3-clause
|
1140
|
-
|
1141
|
-
License: BSD-3-clause
|
1142
|
-
|
1143
|
-
Redistribution and use in source and binary forms, with or without
|
1144
|
-
modification, are permitted provided that the following conditions
|
1145
|
-
are met:
|
1146
|
-
1. Redistributions of source code must retain the above copyright
|
1147
|
-
notice, this list of conditions and the following disclaimer.
|
1148
|
-
2. Redistributions in binary form must reproduce the above copyright
|
1149
|
-
notice, this list of conditions and the following disclaimer in the
|
1150
|
-
documentation and/or other materials provided with the distribution.
|
1151
|
-
3. Neither the name of the University nor the names of its
|
1152
|
-
contributors may be used to endorse or promote products derived from
|
1153
|
-
this software without specific prior written permission.
|
1154
|
-
.
|
1155
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1156
|
-
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1157
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1158
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HOLDERS OR
|
1159
|
-
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
1160
|
-
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
1161
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
1162
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
1163
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
1164
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
1165
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
1166
|
-
|
1167
|
-
---
|
1168
|
-
|
1169
|
-
BSD Zero Clause License
|
1170
|
-
(tslib 2.1.0)
|
1171
|
-
|
1172
|
-
BSD Zero Clause License
|
1173
|
-
=======================
|
1174
|
-
|
1175
|
-
Copyright (C) 2006 by Rob Landley <rob@landley.net>
|
1176
|
-
|
1177
|
-
Permission to use, copy, modify, and/or distribute this software for any purpose
|
1178
|
-
with or without fee is hereby granted.
|
1179
|
-
|
1180
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
1181
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
1182
|
-
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
1183
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
1184
|
-
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
1185
|
-
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
1186
|
-
THIS SOFTWARE.
|
1187
|
-
|
1188
|
-
---
|
1189
|
-
|
1190
|
-
ISC License
|
1191
|
-
(yaml 1.10.0)
|
1192
|
-
|
1193
|
-
Copyright 2018 Eemeli Aro <eemeli@gmail.com>
|
1194
|
-
|
1195
|
-
Permission to use, copy, modify, and/or distribute this software for any purpose
|
1196
|
-
with or without fee is hereby granted, provided that the above copyright notice
|
1197
|
-
and this permission notice appear in all copies.
|
1198
|
-
|
1199
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
1200
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
1201
|
-
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
1202
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
1203
|
-
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
1204
|
-
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
1205
|
-
THIS SOFTWARE
|
1206
|
-
|
1207
|
-
---
|
1208
|
-
|
1209
|
-
ISC License
|
1210
|
-
(which 2.0.2)
|
1211
|
-
|
1212
|
-
Files: *
|
1213
|
-
Copyright: Isaac Z. Schlueter and Contributors
|
1214
|
-
License: ISC
|
1215
|
-
|
1216
|
-
Files: debian/*
|
1217
|
-
Copyright: 2012, Jérémy Lal <kapouer@melix.org>
|
1218
|
-
2019, Xavier Guimard <yadd@debian.org>
|
1219
|
-
License: ISC
|
1220
|
-
|
1221
|
-
License: ISC
|
1222
|
-
|
1223
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
1224
|
-
purpose with or without fee is hereby granted, provided that the above
|
1225
|
-
copyright notice and this permission notice appear in all copies.
|
1226
|
-
.
|
1227
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
1228
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
1229
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
1230
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
1231
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
1232
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
1233
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE
|
1234
|
-
|
1235
|
-
---
|
1236
|
-
|
1237
|
-
ISC License
|
1238
|
-
(material-colors 1.2.6)
|
1239
|
-
|
1240
|
-
ISC License
|
1241
|
-
|
1242
|
-
Copyright 2014 Shuhei Kagawa
|
1243
|
-
|
1244
|
-
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
1245
|
-
|
1246
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE
|
1247
|
-
|
1248
|
-
---
|
1249
|
-
|
1250
|
-
ISC License
|
1251
|
-
(@formatjs/fast-memoize 1.1.1, @formatjs/fast-memoize 1.1.2, @formatjs/fast-memoize 1.2.0)
|
1252
|
-
|
1253
|
-
ISC License (ISCL)
|
1254
|
-
==================
|
1255
|
-
|
1256
|
-
Copyright (c) 4-digit year, Company or Person's Name
|
1257
|
-
|
1258
|
-
Permission to use, copy, modify, and/or distribute this software for any purpose
|
1259
|
-
with or without fee is hereby granted, provided that the above copyright notice
|
1260
|
-
and this permission notice appear in all copies.
|
1261
|
-
|
1262
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
1263
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
1264
|
-
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
1265
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
1266
|
-
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
1267
|
-
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
1268
|
-
THIS SOFTWARE.
|
1269
|
-
|
1270
|
-
---
|
1271
|
-
|
1272
|
-
ISC License
|
1273
|
-
(isexe 2.0.0)
|
1274
|
-
|
1275
|
-
The ISC License
|
1276
|
-
|
1277
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
1278
|
-
|
1279
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
1280
|
-
purpose with or without fee is hereby granted, provided that the above
|
1281
|
-
copyright notice and this permission notice appear in all copies.
|
1282
|
-
|
1283
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
1284
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
1285
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
1286
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
1287
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
1288
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
1289
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE
|
1290
|
-
|
1291
|
-
---
|
1292
|
-
|
1293
|
-
MIT License
|
1294
|
-
(@rebass/forms 4.0.6, rebass 4.0.7, reflexbox 4.0.6)
|
1295
|
-
|
1296
|
-
# The MIT License (MIT)
|
1297
|
-
Copyright (c) 2015 – 2019 Brent Jackson
|
1298
|
-
|
1299
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1300
|
-
|
1301
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1302
|
-
|
1303
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1304
|
-
|
1305
|
-
---
|
1306
|
-
|
1307
|
-
MIT License
|
1308
|
-
(@styled-system/background 5.1.2, @styled-system/border 5.1.5, @styled-system/color 5.1.2, @styled-system/core 5.1.2, @styled-system/css 5.1.5, @styled-system/flexbox 5.1.2, @styled-system/grid 5.1.2, @styled-system/layout 5.1.2, @styled-system/position 5.1.2, @styled-system/prop-types 5.1.5, @styled-system/props 5.1.5, @styled-system/shadow 5.1.2, @styled-system/should-forward-prop 5.1.5, @styled-system/space 5.1.2, @styled-system/theme-get 5.1.2, @styled-system/typography 5.1.2, @styled-system/variant 5.1.5, styled-system 5.1.5)
|
1309
|
-
|
1310
|
-
# The MIT License (MIT)
|
1311
|
-
Copyright (c) 2017-2018 Brent Jackson
|
1312
|
-
|
1313
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1314
|
-
|
1315
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1316
|
-
|
1317
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1318
|
-
|
1319
|
-
---
|
1320
|
-
|
1321
|
-
MIT License
|
1322
|
-
(Chalk 2.4.2)
|
1323
|
-
|
1324
|
-
2016, Mathias Behrle <mbehrle@debian.org>
|
1325
|
-
2017, Paolo Greppi <paolo.greppi@libpf.com>
|
1326
|
-
License: Expat
|
1327
|
-
|
1328
|
-
License: Expat
|
1329
|
-
|
1330
|
-
Permission is hereby granted, free of charge, to any person
|
1331
|
-
obtaining a copy of this software and associated documentation files
|
1332
|
-
(the "Software"), to deal in the Software without restriction,
|
1333
|
-
including without limitation the rights to use, copy, modify, merge,
|
1334
|
-
publish, distribute, sublicense, and/or sell copies of the Software,
|
1335
|
-
and to permit persons to whom the Software is furnished to do so,
|
1336
|
-
subject to the following conditions:
|
1337
|
-
.
|
1338
|
-
The above copyright notice and this permission notice shall be
|
1339
|
-
included in all copies or substantial portions of the Software.
|
1340
|
-
.
|
1341
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1342
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
1343
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1344
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
1345
|
-
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
1346
|
-
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
1347
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1348
|
-
SOFTWARE
|
1349
|
-
|
1350
|
-
---
|
1351
|
-
|
1352
|
-
MIT License
|
1353
|
-
(lodash.once 4.1.1)
|
1354
|
-
|
1355
|
-
====
|
1356
|
-
|
1357
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
1358
|
-
a copy of this software and associated documentation files (the
|
1359
|
-
"Software"), to deal in the Software without restriction, including
|
1360
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
1361
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
1362
|
-
permit persons to whom the Software is furnished to do so, subject to
|
1363
|
-
the following conditions:
|
1364
|
-
|
1365
|
-
The above copyright notice and this permission notice shall be
|
1366
|
-
included in all copies or substantial portions of the Software.
|
1367
|
-
|
1368
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1369
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
1370
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1371
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
1372
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
1373
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
1374
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1375
|
-
|
1376
|
-
---
|
1377
|
-
|
1378
|
-
MIT License
|
1379
|
-
(Qix-/color-convert 1.9.3)
|
1380
|
-
|
1381
|
-
Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
|
1382
|
-
|
1383
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
1384
|
-
a copy of this software and associated documentation files (the
|
1385
|
-
"Software"), to deal in the Software without restriction, including
|
1386
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
1387
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
1388
|
-
permit persons to whom the Software is furnished to do so, subject to
|
1389
|
-
the following conditions:
|
1390
|
-
|
1391
|
-
The above copyright notice and this permission notice shall be
|
1392
|
-
included in all copies or substantial portions of the Software.
|
1393
|
-
|
1394
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1395
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
1396
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1397
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
1398
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
1399
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
1400
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1401
|
-
|
1402
|
-
---
|
1403
|
-
|
1404
|
-
MIT License
|
1405
|
-
(has 1.0.3)
|
1406
|
-
|
1407
|
-
Copyright (c) 2013 Thiago de Arruda
|
1408
|
-
|
1409
|
-
Permission is hereby granted, free of charge, to any person
|
1410
|
-
obtaining a copy of this software and associated documentation
|
1411
|
-
files (the "Software"), to deal in the Software without
|
1412
|
-
restriction, including without limitation the rights to use,
|
1413
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1414
|
-
copies of the Software, and to permit persons to whom the
|
1415
|
-
Software is furnished to do so, subject to the following
|
1416
|
-
conditions:
|
1417
|
-
|
1418
|
-
The above copyright notice and this permission notice shall be
|
1419
|
-
included in all copies or substantial portions of the Software.
|
1420
|
-
|
1421
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1422
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
1423
|
-
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1424
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
1425
|
-
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
1426
|
-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
1427
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
1428
|
-
OTHER DEALINGS IN THE SOFTWARE
|
1429
|
-
|
1430
|
-
---
|
1431
|
-
|
1432
|
-
MIT License
|
1433
|
-
(moment/moment 2.29.1)
|
1434
|
-
|
1435
|
-
Copyright (c) JS Foundation and other contributors
|
1436
|
-
|
1437
|
-
Permission is hereby granted, free of charge, to any person
|
1438
|
-
obtaining a copy of this software and associated documentation
|
1439
|
-
files (the "Software"), to deal in the Software without
|
1440
|
-
restriction, including without limitation the rights to use,
|
1441
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1442
|
-
copies of the Software, and to permit persons to whom the
|
1443
|
-
Software is furnished to do so, subject to the following
|
1444
|
-
conditions:
|
1445
|
-
|
1446
|
-
The above copyright notice and this permission notice shall be
|
1447
|
-
included in all copies or substantial portions of the Software.
|
1448
|
-
|
1449
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1450
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
1451
|
-
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1452
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
1453
|
-
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
1454
|
-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
1455
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
1456
|
-
OTHER DEALINGS IN THE SOFTWARE
|
1457
|
-
|
1458
|
-
---
|
1459
|
-
|
1460
|
-
MIT License
|
1461
|
-
(TinyColor 1.4.2)
|
1462
|
-
|
1463
|
-
Copyright (c), Brian Grinstead, http://briangrinstead.com
|
1464
|
-
|
1465
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
1466
|
-
a copy of this software and associated documentation files (the
|
1467
|
-
"Software"), to deal in the Software without restriction, including
|
1468
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
1469
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
1470
|
-
permit persons to whom the Software is furnished to do so, subject to
|
1471
|
-
the following conditions:
|
1472
|
-
|
1473
|
-
The above copyright notice and this permission notice shall be
|
1474
|
-
included in all copies or substantial portions of the Software.
|
1475
|
-
|
1476
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1477
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
1478
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1479
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
1480
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
1481
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
1482
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1483
|
-
|
1484
|
-
---
|
1485
|
-
|
1486
|
-
MIT License
|
1487
|
-
(convert-source-map v1.7.0)
|
1488
|
-
|
1489
|
-
Copyright 2013 Thorsten Lorenz.
|
1490
|
-
All rights reserved.
|
1491
|
-
|
1492
|
-
Permission is hereby granted, free of charge, to any person
|
1493
|
-
obtaining a copy of this software and associated documentation
|
1494
|
-
files (the "Software"), to deal in the Software without
|
1495
|
-
restriction, including without limitation the rights to use,
|
1496
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1497
|
-
copies of the Software, and to permit persons to whom the
|
1498
|
-
Software is furnished to do so, subject to the following
|
1499
|
-
conditions:
|
1500
|
-
|
1501
|
-
The above copyright notice and this permission notice shall be
|
1502
|
-
included in all copies or substantial portions of the Software.
|
1503
|
-
|
1504
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1505
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
1506
|
-
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1507
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
1508
|
-
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
1509
|
-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
1510
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
1511
|
-
OTHER DEALINGS IN THE SOFTWARE
|
1512
|
-
|
1513
|
-
---
|
1514
|
-
|
1515
|
-
MIT License
|
1516
|
-
(json-parse-even-better-errors 2.3.1)
|
1517
|
-
|
1518
|
-
Copyright 2017 Kat Marchán
|
1519
|
-
Copyright npm, Inc.
|
1520
|
-
|
1521
|
-
Permission is hereby granted, free of charge, to any person obtaining a
|
1522
|
-
copy of this software and associated documentation files (the "Software"),
|
1523
|
-
to deal in the Software without restriction, including without limitation
|
1524
|
-
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
1525
|
-
and/or sell copies of the Software, and to permit persons to whom the
|
1526
|
-
Software is furnished to do so, subject to the following conditions:
|
1527
|
-
|
1528
|
-
The above copyright notice and this permission notice shall be included in
|
1529
|
-
all copies or substantial portions of the Software.
|
1530
|
-
|
1531
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1532
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1533
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1534
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1535
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
1536
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
1537
|
-
DEALINGS IN THE SOFTWARE
|
1538
|
-
|
1539
|
-
---
|
1540
|
-
|
1541
|
-
MIT License
|
1542
|
-
(find-root 1.1.0)
|
1543
|
-
|
1544
|
-
Copyright © 2017 jsdnxx
|
1545
|
-
|
1546
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1547
|
-
|
1548
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1549
|
-
|
1550
|
-
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1551
|
-
|
1552
|
-
---
|
1553
|
-
|
1554
|
-
MIT License
|
1555
|
-
(function-bind 1.1.1)
|
1556
|
-
|
1557
|
-
License: Expat
|
1558
|
-
|
1559
|
-
License: Expat
|
1560
|
-
|
1561
|
-
Permission is hereby granted, free of charge, to any person
|
1562
|
-
obtaining a copy of this software and associated documentation files
|
1563
|
-
(the "Software"), to deal in the Software without restriction,
|
1564
|
-
including without limitation the rights to use, copy, modify, merge,
|
1565
|
-
publish, distribute, sublicense, and/or sell copies of the Software,
|
1566
|
-
and to permit persons to whom the Software is furnished to do so,
|
1567
|
-
subject to the following conditions:
|
1568
|
-
.
|
1569
|
-
The above copyright notice and this permission notice shall be
|
1570
|
-
included in all copies or substantial portions of the Software.
|
1571
|
-
.
|
1572
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1573
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
1574
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1575
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
1576
|
-
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
1577
|
-
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
1578
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1579
|
-
SOFTWARE
|
1580
|
-
|
1581
|
-
---
|
1582
|
-
|
1583
|
-
MIT License
|
1584
|
-
(loose-envify 1.4.0)
|
1585
|
-
|
1586
|
-
License: Expat
|
1587
|
-
|
1588
|
-
Permission is hereby granted, free of charge, to any person
|
1589
|
-
obtaining a copy of this software and associated documentation files
|
1590
|
-
(the "Software"), to deal in the Software without restriction,
|
1591
|
-
including without limitation the rights to use, copy, modify, merge,
|
1592
|
-
publish, distribute, sublicense, and/or sell copies of the Software,
|
1593
|
-
and to permit persons to whom the Software is furnished to do so,
|
1594
|
-
subject to the following conditions:
|
1595
|
-
.
|
1596
|
-
The above copyright notice and this permission notice shall be
|
1597
|
-
included in all copies or substantial portions of the Software.
|
1598
|
-
.
|
1599
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
1600
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
1601
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
1602
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
1603
|
-
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
1604
|
-
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
1605
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1606
|
-
SOFTWARE
|
1607
|
-
|
1608
|
-
---
|
1609
|
-
|
1610
|
-
MIT License
|
1611
|
-
(@types/parse-json 4.0.0)
|
1612
|
-
|
1613
|
-
MIT License
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
1617
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1623
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1624
|
-
of this software and associated documentation files (the "Software"), to deal
|
1625
|
-
in the Software without restriction, including without limitation the rights
|
1626
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1627
|
-
copies of the Software, and to permit persons to whom the Software is
|
1628
|
-
furnished to do so, subject to the following conditions:
|
1629
|
-
|
1630
|
-
The above copyright notice and this permission notice shall be included in all
|
1631
|
-
copies or substantial portions of the Software.
|
1632
|
-
|
1633
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1634
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1635
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1636
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1637
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1638
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1639
|
-
SOFTWARE
|
1640
|
-
|
1641
|
-
---
|
1642
|
-
|
1643
|
-
MIT License
|
1644
|
-
(prop-types 15.7.2)
|
1645
|
-
|
1646
|
-
MIT License
|
1647
|
-
|
1648
|
-
Copyright (c) 2013-present, Facebook, Inc.
|
1649
|
-
|
1650
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1651
|
-
of this software and associated documentation files (the "Software"), to deal
|
1652
|
-
in the Software without restriction, including without limitation the rights
|
1653
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1654
|
-
copies of the Software, and to permit persons to whom the Software is
|
1655
|
-
furnished to do so, subject to the following conditions:
|
1656
|
-
|
1657
|
-
The above copyright notice and this permission notice shall be included in all
|
1658
|
-
copies or substantial portions of the Software.
|
1659
|
-
|
1660
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1661
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1662
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1663
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1664
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1665
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1666
|
-
SOFTWARE
|
1667
|
-
|
1668
|
-
---
|
1669
|
-
|
1670
|
-
MIT License
|
1671
|
-
(regenerator-runtime 0.13.7)
|
1672
|
-
|
1673
|
-
MIT License
|
1674
|
-
|
1675
|
-
Copyright (c) 2014-present, Facebook, Inc.
|
1676
|
-
|
1677
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1678
|
-
of this software and associated documentation files (the "Software"), to deal
|
1679
|
-
in the Software without restriction, including without limitation the rights
|
1680
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1681
|
-
copies of the Software, and to permit persons to whom the Software is
|
1682
|
-
furnished to do so, subject to the following conditions:
|
1683
|
-
|
1684
|
-
The above copyright notice and this permission notice shall be included in all
|
1685
|
-
copies or substantial portions of the Software.
|
1686
|
-
|
1687
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1688
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1689
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1690
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1691
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1692
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1693
|
-
SOFTWARE
|
1694
|
-
|
1695
|
-
---
|
1696
|
-
|
1697
|
-
MIT License
|
1698
|
-
(tippy.js 6.2.7)
|
1699
|
-
|
1700
|
-
MIT License
|
1701
|
-
|
1702
|
-
Copyright (c) 2017-present atomiks
|
1703
|
-
|
1704
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1705
|
-
of this software and associated documentation files (the "Software"), to deal
|
1706
|
-
in the Software without restriction, including without limitation the rights
|
1707
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1708
|
-
copies of the Software, and to permit persons to whom the Software is
|
1709
|
-
furnished to do so, subject to the following conditions:
|
1710
|
-
|
1711
|
-
The above copyright notice and this permission notice shall be included in all
|
1712
|
-
copies or substantial portions of the Software.
|
1713
|
-
|
1714
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1715
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1716
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1717
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1718
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1719
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1720
|
-
SOFTWARE
|
1721
|
-
|
1722
|
-
---
|
1723
|
-
|
1724
|
-
MIT License
|
1725
|
-
(@tippyjs/react 4.2.0)
|
1726
|
-
|
1727
|
-
MIT License
|
1728
|
-
|
1729
|
-
Copyright (c) 2018 atomiks
|
1730
|
-
|
1731
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1732
|
-
of this software and associated documentation files (the "Software"), to deal
|
1733
|
-
in the Software without restriction, including without limitation the rights
|
1734
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1735
|
-
copies of the Software, and to permit persons to whom the Software is
|
1736
|
-
furnished to do so, subject to the following conditions:
|
1737
|
-
|
1738
|
-
The above copyright notice and this permission notice shall be included in all
|
1739
|
-
copies or substantial portions of the Software.
|
1740
|
-
|
1741
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1742
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1743
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1744
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1745
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1746
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1747
|
-
SOFTWARE
|
1748
|
-
|
1749
|
-
---
|
1750
|
-
|
1751
|
-
MIT License
|
1752
|
-
(get-user-locale 1.4.0)
|
1753
|
-
|
1754
|
-
MIT License
|
1755
|
-
|
1756
|
-
Copyright (c) 2018-2019 Wojciech Maj
|
1757
|
-
|
1758
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1759
|
-
of this software and associated documentation files (the "Software"), to deal
|
1760
|
-
in the Software without restriction, including without limitation the rights
|
1761
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1762
|
-
copies of the Software, and to permit persons to whom the Software is
|
1763
|
-
furnished to do so, subject to the following conditions:
|
1764
|
-
|
1765
|
-
The above copyright notice and this permission notice shall be included in all
|
1766
|
-
copies or substantial portions of the Software.
|
1767
|
-
|
1768
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1769
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1770
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1771
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1772
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1773
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1774
|
-
SOFTWARE
|
1775
|
-
|
1776
|
-
---
|
1777
|
-
|
1778
|
-
MIT License
|
1779
|
-
(@wojtekmaj/date-utils 1.0.3)
|
1780
|
-
|
1781
|
-
MIT License
|
1782
|
-
|
1783
|
-
Copyright (c) 2019 Wojciech Maj
|
1784
|
-
|
1785
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1786
|
-
of this software and associated documentation files (the "Software"), to deal
|
1787
|
-
in the Software without restriction, including without limitation the rights
|
1788
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1789
|
-
copies of the Software, and to permit persons to whom the Software is
|
1790
|
-
furnished to do so, subject to the following conditions:
|
1791
|
-
|
1792
|
-
The above copyright notice and this permission notice shall be included in all
|
1793
|
-
copies or substantial portions of the Software.
|
1794
|
-
|
1795
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1796
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1797
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1798
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1799
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1800
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1801
|
-
SOFTWARE
|
1802
|
-
|
1803
|
-
---
|
1804
|
-
|
1805
|
-
MIT License
|
1806
|
-
(@emotion/cache 10.0.29, @emotion/core 10.1.1, @emotion/css 10.0.27, @emotion/hash 0.8.0, @emotion/is-prop-valid 0.8.8, @emotion/memoize 0.7.4, @emotion/serialize 0.11.16, @emotion/serialize 1.0.0, @emotion/styled 10.0.27, @emotion/styled-base 10.0.31, @emotion/stylis 0.8.5, @emotion/utils 0.11.3, @emotion/utils 1.0.0, @emotion/weak-memoize 0.2.5)
|
1807
|
-
|
1808
|
-
MIT License
|
1809
|
-
|
1810
|
-
Copyright (c) Emotion team and other contributors
|
1811
|
-
|
1812
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1813
|
-
of this software and associated documentation files (the "Software"), to deal
|
1814
|
-
in the Software without restriction, including without limitation the rights
|
1815
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1816
|
-
copies of the Software, and to permit persons to whom the Software is
|
1817
|
-
furnished to do so, subject to the following conditions:
|
1818
|
-
|
1819
|
-
The above copyright notice and this permission notice shall be included in all
|
1820
|
-
copies or substantial portions of the Software.
|
1821
|
-
|
1822
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1823
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1824
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1825
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1826
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1827
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1828
|
-
SOFTWARE
|
1829
|
-
|
1830
|
-
---
|
1831
|
-
|
1832
|
-
MIT License
|
1833
|
-
(React from Facebook 16.13.1)
|
1834
|
-
|
1835
|
-
MIT License
|
1836
|
-
|
1837
|
-
Copyright (c) Facebook, Inc. and its affiliates.
|
1838
|
-
|
1839
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1840
|
-
of this software and associated documentation files (the "Software"), to deal
|
1841
|
-
in the Software without restriction, including without limitation the rights
|
1842
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1843
|
-
copies of the Software, and to permit persons to whom the Software is
|
1844
|
-
furnished to do so, subject to the following conditions:
|
1845
|
-
|
1846
|
-
The above copyright notice and this permission notice shall be included in all
|
1847
|
-
copies or substantial portions of the Software.
|
1848
|
-
|
1849
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1850
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1851
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1852
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1853
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1854
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1855
|
-
SOFTWARE
|
1856
|
-
|
1857
|
-
---
|
1858
|
-
|
1859
|
-
MIT License
|
1860
|
-
(shebang-command 2.0.0)
|
1861
|
-
|
1862
|
-
MIT License
|
1863
|
-
|
1864
|
-
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
1865
|
-
|
1866
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1867
|
-
|
1868
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1869
|
-
|
1870
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1871
|
-
|
1872
|
-
---
|
1873
|
-
|
1874
|
-
MIT License
|
1875
|
-
(clsx 1.1.1)
|
1876
|
-
|
1877
|
-
MIT License
|
1878
|
-
|
1879
|
-
Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
1880
|
-
|
1881
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1882
|
-
|
1883
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1884
|
-
|
1885
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1886
|
-
|
1887
|
-
---
|
1888
|
-
|
1889
|
-
MIT License
|
1890
|
-
(escape-string-regexp v4.0.0)
|
1891
|
-
|
1892
|
-
MIT License
|
1893
|
-
|
1894
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
1895
|
-
|
1896
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1897
|
-
|
1898
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1899
|
-
|
1900
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1901
|
-
|
1902
|
-
---
|
1903
|
-
|
1904
|
-
MIT License
|
1905
|
-
(ansi-styles 3.2.1, callsites 3.1.0, has-flag 3.0.0, parent-module 1.0.1, path-key 3.1.1, path-type 4.0.0, resolve-from 4.0.0, shebang-regex 3.0.0, sindresorhus/supports-color 5.5.0)
|
1906
|
-
|
1907
|
-
MIT License
|
1908
|
-
|
1909
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
1910
|
-
|
1911
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1912
|
-
|
1913
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1914
|
-
|
1915
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1916
|
-
|
1917
|
-
---
|
1918
|
-
|
1919
|
-
MIT License
|
1920
|
-
(to-fast-properties 2.0.0)
|
1921
|
-
|
1922
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
1923
|
-
|
1924
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
1925
|
-
|
1926
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
1927
|
-
|
1928
|
-
---
|
1929
|
-
|
1930
|
-
MIT License
|
1931
|
-
(@babel/code-frame 7.12.13, @babel/helper-module-imports 7.12.13, @babel/helper-plugin-utils 7.13.0, @babel/helper-validator-identifier 7.12.11, @babel/highlight 7.13.8, @babel/plugin-syntax-jsx 7.12.13, @babel/runtime 7.13.8, @babel/runtime 7.15.3, @babel/types 7.13.0, @emotion/babel-plugin 11.3.0, @emotion/cache 11.1.3, @emotion/is-prop-valid 1.1.0, @emotion/memoize 0.7.5, @emotion/react 11.1.5, @emotion/serialize 1.0.2, @emotion/sheet 0.9.4, @emotion/sheet 1.0.1, @emotion/styled 11.3.0, @emotion/unitless 0.7.5, @formatjs/ecma402-abstract 1.9.3, @formatjs/ecma402-abstract 1.9.4, @formatjs/ecma402-abstract 1.9.6, @formatjs/ecma402-abstract 1.9.8, @formatjs/icu-messageformat-parser 2.0.11, @formatjs/icu-messageformat-parser 2.0.6, @formatjs/icu-messageformat-parser 2.0.7, @formatjs/icu-messageformat-parser 2.0.9, @formatjs/icu-skeleton-parser 1.2.10, @formatjs/icu-skeleton-parser 1.2.12, @formatjs/icu-skeleton-parser 1.2.7, @formatjs/icu-skeleton-parser 1.2.8, @formatjs/intl-localematcher 0.2.19, @formatjs/intl-localematcher 0.2.20, @icons/material 0.2.4, @mdx-js/react 1.6.22, @popperjs/core 2.8.6, @theme-ui/color-modes 0.10.0, @theme-ui/components 0.10.0, @theme-ui/core 0.10.0, @theme-ui/css 0.10.0, @theme-ui/mdx 0.10.0, @theme-ui/parse-props 0.10.0, @theme-ui/theme-provider 0.10.0, @types/styled-system 5.1.12, Lodash 4.17.21, babel-plugin-syntax-jsx 6.18.0, browserify/resolve v1.20.0, csstype 2.6.16, csstype 3.0.7, csstype 3.0.8, emotion-normalize 11.0.1, emotion-utils 10.2.2, import-fresh 3.3.0, is-core-module 2.2.0, merge-class-names 1.4.2, node-uuid 8.3.2, parse-json v5.2.0, react-calendar 3.4.0, react-shapebase 1.0.23, stylis v4.0.7, theme-ui 0.10.0)
|
1932
|
-
|
1933
|
-
The MIT License
|
1934
|
-
===============
|
1935
|
-
|
1936
|
-
Copyright (c) <year> <copyright holders>
|
1937
|
-
|
1938
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
1939
|
-
this software and associated documentation files (the "Software"), to deal in the
|
1940
|
-
Software without restriction, including without limitation the rights to use,
|
1941
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
1942
|
-
Software, and to permit persons to whom the Software is furnished to do so,
|
1943
|
-
subject to the following conditions:
|
1944
|
-
|
1945
|
-
The above copyright notice and this permission notice shall be included in all
|
1946
|
-
copies or substantial portions of the Software.
|
1947
|
-
|
1948
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1949
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
1950
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
1951
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
1952
|
-
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
1953
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1954
|
-
|
1955
|
-
---
|
1956
|
-
|
1957
|
-
MIT License
|
1958
|
-
(deep_merge v4.2.2)
|
1959
|
-
|
1960
|
-
The MIT License (MIT)
|
1961
|
-
|
1962
|
-
Copyright (c) 2012 James Halliday, Josh Duff, and other contributors
|
1963
|
-
|
1964
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1965
|
-
of this software and associated documentation files (the "Software"), to deal
|
1966
|
-
in the Software without restriction, including without limitation the rights
|
1967
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1968
|
-
copies of the Software, and to permit persons to whom the Software is
|
1969
|
-
furnished to do so, subject to the following conditions:
|
1970
|
-
|
1971
|
-
The above copyright notice and this permission notice shall be included in
|
1972
|
-
all copies or substantial portions of the Software.
|
1973
|
-
|
1974
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1975
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1976
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1977
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1978
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1979
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
1980
|
-
THE SOFTWARE
|
1981
|
-
|
1982
|
-
---
|
1983
|
-
|
1984
|
-
MIT License
|
1985
|
-
(js-tokens 4.0.0)
|
1986
|
-
|
1987
|
-
The MIT License (MIT)
|
1988
|
-
|
1989
|
-
Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
|
1990
|
-
|
1991
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1992
|
-
of this software and associated documentation files (the "Software"), to deal
|
1993
|
-
in the Software without restriction, including without limitation the rights
|
1994
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1995
|
-
copies of the Software, and to permit persons to whom the Software is
|
1996
|
-
furnished to do so, subject to the following conditions:
|
1997
|
-
|
1998
|
-
The above copyright notice and this permission notice shall be included in
|
1999
|
-
all copies or substantial portions of the Software.
|
2000
|
-
|
2001
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2002
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2003
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2004
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2005
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2006
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
2007
|
-
THE SOFTWARE
|
2008
|
-
|
2009
|
-
---
|
2010
|
-
|
2011
|
-
MIT License
|
2012
|
-
(lines-and-columns 1.1.6)
|
2013
|
-
|
2014
|
-
The MIT License (MIT)
|
2015
|
-
|
2016
|
-
Copyright (c) 2015 Brian Donovan
|
2017
|
-
|
2018
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2019
|
-
of this software and associated documentation files (the "Software"), to deal
|
2020
|
-
in the Software without restriction, including without limitation the rights
|
2021
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2022
|
-
copies of the Software, and to permit persons to whom the Software is
|
2023
|
-
furnished to do so, subject to the following conditions:
|
2024
|
-
|
2025
|
-
The above copyright notice and this permission notice shall be included in
|
2026
|
-
all copies or substantial portions of the Software.
|
2027
|
-
|
2028
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2029
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2030
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2031
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2032
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2033
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
2034
|
-
THE SOFTWARE
|
2035
|
-
|
2036
|
-
---
|
2037
|
-
|
2038
|
-
MIT License
|
2039
|
-
(react-color 2.19.3, reactcss 1.2.3)
|
2040
|
-
|
2041
|
-
The MIT License (MIT)
|
2042
|
-
|
2043
|
-
Copyright (c) 2015 Case Sandberg
|
2044
|
-
|
2045
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2046
|
-
of this software and associated documentation files (the "Software"), to deal
|
2047
|
-
in the Software without restriction, including without limitation the rights
|
2048
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2049
|
-
copies of the Software, and to permit persons to whom the Software is
|
2050
|
-
furnished to do so, subject to the following conditions:
|
2051
|
-
|
2052
|
-
The above copyright notice and this permission notice shall be included in all
|
2053
|
-
copies or substantial portions of the Software.
|
2054
|
-
|
2055
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2056
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2057
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2058
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2059
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2060
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2061
|
-
SOFTWARE
|
2062
|
-
|
2063
|
-
---
|
2064
|
-
|
2065
|
-
MIT License
|
2066
|
-
(cosmiconfig 6.0.0)
|
2067
|
-
|
2068
|
-
The MIT License (MIT)
|
2069
|
-
|
2070
|
-
Copyright (c) 2015 David Clark
|
2071
|
-
|
2072
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2073
|
-
of this software and associated documentation files (the "Software"), to deal
|
2074
|
-
in the Software without restriction, including without limitation the rights
|
2075
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2076
|
-
copies of the Software, and to permit persons to whom the Software is
|
2077
|
-
furnished to do so, subject to the following conditions:
|
2078
|
-
|
2079
|
-
The above copyright notice and this permission notice shall be included in all
|
2080
|
-
copies or substantial portions of the Software.
|
2081
|
-
|
2082
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2083
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2084
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2085
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2086
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2087
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2088
|
-
SOFTWARE
|
2089
|
-
|
2090
|
-
---
|
2091
|
-
|
2092
|
-
MIT License
|
2093
|
-
(kk-color-name 1.1.3)
|
2094
|
-
|
2095
|
-
The MIT License (MIT)
|
2096
|
-
|
2097
|
-
Copyright (c) 2015 Dmitry Ivanov
|
2098
|
-
|
2099
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
2100
|
-
|
2101
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
2102
|
-
|
2103
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
2104
|
-
|
2105
|
-
---
|
2106
|
-
|
2107
|
-
MIT License
|
2108
|
-
(dom-helpers 3.4.0)
|
2109
|
-
|
2110
|
-
The MIT License (MIT)
|
2111
|
-
|
2112
|
-
Copyright (c) 2015 Jason Quense
|
2113
|
-
|
2114
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2115
|
-
of this software and associated documentation files (the "Software"), to deal
|
2116
|
-
in the Software without restriction, including without limitation the rights
|
2117
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2118
|
-
copies of the Software, and to permit persons to whom the Software is
|
2119
|
-
furnished to do so, subject to the following conditions:
|
2120
|
-
|
2121
|
-
The above copyright notice and this permission notice shall be included in all
|
2122
|
-
copies or substantial portions of the Software.
|
2123
|
-
|
2124
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2125
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2126
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2127
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2128
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2129
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2130
|
-
SOFTWARE
|
2131
|
-
|
2132
|
-
---
|
2133
|
-
|
2134
|
-
MIT License
|
2135
|
-
(path-parse 1.0.6)
|
2136
|
-
|
2137
|
-
The MIT License (MIT)
|
2138
|
-
|
2139
|
-
Copyright (c) 2015 Javier Blanco
|
2140
|
-
|
2141
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2142
|
-
of this software and associated documentation files (the "Software"), to deal
|
2143
|
-
in the Software without restriction, including without limitation the rights
|
2144
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2145
|
-
copies of the Software, and to permit persons to whom the Software is
|
2146
|
-
furnished to do so, subject to the following conditions:
|
2147
|
-
|
2148
|
-
The above copyright notice and this permission notice shall be included in all
|
2149
|
-
copies or substantial portions of the Software.
|
2150
|
-
|
2151
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2152
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2153
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2154
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2155
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2156
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2157
|
-
SOFTWARE
|
2158
|
-
|
2159
|
-
---
|
2160
|
-
|
2161
|
-
MIT License
|
2162
|
-
(is-arrayish 0.2.1, node-error-ex 1.3.2)
|
2163
|
-
|
2164
|
-
The MIT License (MIT)
|
2165
|
-
|
2166
|
-
Copyright (c) 2015 JD Ballard
|
2167
|
-
|
2168
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2169
|
-
of this software and associated documentation files (the "Software"), to deal
|
2170
|
-
in the Software without restriction, including without limitation the rights
|
2171
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2172
|
-
copies of the Software, and to permit persons to whom the Software is
|
2173
|
-
furnished to do so, subject to the following conditions:
|
2174
|
-
|
2175
|
-
The above copyright notice and this permission notice shall be included in
|
2176
|
-
all copies or substantial portions of the Software.
|
2177
|
-
|
2178
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2179
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2180
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2181
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2182
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2183
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
2184
|
-
THE SOFTWARE
|
2185
|
-
|
2186
|
-
---
|
2187
|
-
|
2188
|
-
MIT License
|
2189
|
-
(mdi-react 7.4.0)
|
2190
|
-
|
2191
|
-
The MIT License (MIT)
|
2192
|
-
|
2193
|
-
Copyright (c) 2016-2019 Levin Rickert
|
2194
|
-
|
2195
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2196
|
-
of this software and associated documentation files (the "Software"), to deal
|
2197
|
-
in the Software without restriction, including without limitation the rights
|
2198
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2199
|
-
copies of the Software, and to permit persons to whom the Software is
|
2200
|
-
furnished to do so, subject to the following conditions:
|
2201
|
-
|
2202
|
-
The above copyright notice and this permission notice shall be included in all
|
2203
|
-
copies or substantial portions of the Software.
|
2204
|
-
|
2205
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2206
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2207
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2208
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2209
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2210
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2211
|
-
SOFTWARE
|
2212
|
-
|
2213
|
-
---
|
2214
|
-
|
2215
|
-
MIT License
|
2216
|
-
(classnames 2.2.6)
|
2217
|
-
|
2218
|
-
The MIT License (MIT)
|
2219
|
-
|
2220
|
-
Copyright (c) 2017 Jed Watson
|
2221
|
-
|
2222
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2223
|
-
of this software and associated documentation files (the "Software"), to deal
|
2224
|
-
in the Software without restriction, including without limitation the rights
|
2225
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2226
|
-
copies of the Software, and to permit persons to whom the Software is
|
2227
|
-
furnished to do so, subject to the following conditions:
|
2228
|
-
|
2229
|
-
The above copyright notice and this permission notice shall be included in all
|
2230
|
-
copies or substantial portions of the Software.
|
2231
|
-
|
2232
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2233
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2234
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2235
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2236
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2237
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2238
|
-
SOFTWARE
|
2239
|
-
|
2240
|
-
---
|
2241
|
-
|
2242
|
-
MIT License
|
2243
|
-
(node-cross-spawn 7.0.3)
|
2244
|
-
|
2245
|
-
The MIT License (MIT)
|
2246
|
-
|
2247
|
-
Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
|
2248
|
-
|
2249
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2250
|
-
of this software and associated documentation files (the "Software"), to deal
|
2251
|
-
in the Software without restriction, including without limitation the rights
|
2252
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2253
|
-
copies of the Software, and to permit persons to whom the Software is
|
2254
|
-
furnished to do so, subject to the following conditions:
|
2255
|
-
|
2256
|
-
The above copyright notice and this permission notice shall be included in
|
2257
|
-
all copies or substantial portions of the Software.
|
2258
|
-
|
2259
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2260
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2261
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2262
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2263
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2264
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
2265
|
-
THE SOFTWARE
|
2266
|
-
|
2267
|
-
---
|
2268
|
-
|
2269
|
-
MIT License
|
2270
|
-
(safe-buffer 5.1.2)
|
2271
|
-
|
2272
|
-
The MIT License (MIT)
|
2273
|
-
|
2274
|
-
Copyright (c) Feross Aboukhadijeh
|
2275
|
-
|
2276
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2277
|
-
of this software and associated documentation files (the "Software"), to deal
|
2278
|
-
in the Software without restriction, including without limitation the rights
|
2279
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2280
|
-
copies of the Software, and to permit persons to whom the Software is
|
2281
|
-
furnished to do so, subject to the following conditions:
|
2282
|
-
|
2283
|
-
The above copyright notice and this permission notice shall be included in
|
2284
|
-
all copies or substantial portions of the Software.
|
2285
|
-
|
2286
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2287
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2288
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2289
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2290
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2291
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
2292
|
-
THE SOFTWARE
|
2293
|
-
|
2294
|
-
---
|
2295
|
-
|
2296
|
-
MIT License
|
2297
|
-
(escape-string-regexp 1.0.5)
|
2298
|
-
|
2299
|
-
The MIT License (MIT)
|
2300
|
-
|
2301
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
2302
|
-
|
2303
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2304
|
-
of this software and associated documentation files (the "Software"), to deal
|
2305
|
-
in the Software without restriction, including without limitation the rights
|
2306
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2307
|
-
copies of the Software, and to permit persons to whom the Software is
|
2308
|
-
furnished to do so, subject to the following conditions:
|
2309
|
-
|
2310
|
-
The above copyright notice and this permission notice shall be included in
|
2311
|
-
all copies or substantial portions of the Software.
|
2312
|
-
|
2313
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2314
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2315
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2316
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2317
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2318
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
2319
|
-
THE SOFTWARE
|
2320
|
-
|
2321
|
-
---
|
2322
|
-
|
2323
|
-
MIT License
|
2324
|
-
(babel-plugin-macros 2.8.0, cross-env 6.0.3)
|
2325
|
-
|
2326
|
-
The MIT License (MIT)
|
2327
|
-
Copyright (c) 2017 Kent C. Dodds
|
2328
|
-
|
2329
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
2330
|
-
of this software and associated documentation files (the "Software"), to deal
|
2331
|
-
in the Software without restriction, including without limitation the rights
|
2332
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
2333
|
-
copies of the Software, and to permit persons to whom the Software is
|
2334
|
-
furnished to do so, subject to the following conditions:
|
2335
|
-
|
2336
|
-
The above copyright notice and this permission notice shall be included in all
|
2337
|
-
copies or substantial portions of the Software.
|
2338
|
-
|
2339
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2340
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2341
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
2342
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2343
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2344
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2345
|
-
SOFTWARE
|
2346
|
-
|
2347
|
-
---
|
2348
|
-
|
2349
|
-
MIT License
|
2350
|
-
(object-assign 4.1.1)
|
2351
|
-
|
2352
|
-
Upstream-Contact: https://github.com/sindresorhus/object-assign/issues
|
2353
|
-
Source: https://github.com/sindresorhus/object-assign#readme
|
2354
|
-
|
2355
|
-
Files: *
|
2356
|
-
Copyright: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
2357
|
-
License: Expat
|
2358
|
-
|
2359
|
-
Files: debian/*
|
2360
|
-
Copyright: 2016, Sruthi Chandran <srud@disroot.org>
|
2361
|
-
License: Expat
|
2362
|
-
|
2363
|
-
License: Expat
|
2364
|
-
|
2365
|
-
Permission is hereby granted, free of charge, to any person
|
2366
|
-
obtaining a copy of this software and associated documentation files
|
2367
|
-
(the "Software"), to deal in the Software without restriction,
|
2368
|
-
including without limitation the rights to use, copy, modify, merge,
|
2369
|
-
publish, distribute, sublicense, and/or sell copies of the Software,
|
2370
|
-
and to permit persons to whom the Software is furnished to do so,
|
2371
|
-
subject to the following conditions:
|
2372
|
-
.
|
2373
|
-
The above copyright notice and this permission notice shall be
|
2374
|
-
included in all copies or substantial portions of the Software.
|
2375
|
-
.
|
2376
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
2377
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
2378
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
2379
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
2380
|
-
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
2381
|
-
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
2382
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
2383
|
-
SOFTWARE
|
2384
|
-
|
2385
|
-
---
|
2386
|
-
|
2387
|
-
SIL Open Font License 1.1
|
2388
|
-
(mdi-react 7.4.0)
|
2389
|
-
|
2390
|
-
SIL OPEN FONT LICENSE
|
2391
|
-
=====================
|
2392
|
-
|
2393
|
-
Version 1.1 - 26 February 2007
|
2394
|
-
|
2395
|
-
|
2396
|
-
PREAMBLE
|
2397
|
-
|
2398
|
-
The goals of the Open Font License (OFL) are to stimulate worldwide development
|
2399
|
-
of collaborative font projects, to support the font creation efforts of academic
|
2400
|
-
and linguistic communities, and to provide a free and open framework in which
|
2401
|
-
fonts may be shared and improved in partnership with others.
|
2402
|
-
|
2403
|
-
The OFL allows the licensed fonts to be used, studied, modified and redistributed
|
2404
|
-
freely as long as they are not sold by themselves. The fonts, including any
|
2405
|
-
derivative works, can be bundled, embedded, redistributed and/or sold with any
|
2406
|
-
software provided that any reserved names are not used by derivative works. The
|
2407
|
-
fonts and derivatives, however, cannot be released under any other type of
|
2408
|
-
license. The requirement for fonts to remain under this license does not apply to
|
2409
|
-
any document created using the fonts or their derivatives.
|
2410
|
-
|
2411
|
-
|
2412
|
-
DEFINITIONS
|
2413
|
-
|
2414
|
-
"Font Software" refers to the set of files released by the Copyright Holder(s)
|
2415
|
-
under this license and clearly marked as such. This may include source files,
|
2416
|
-
build scripts and documentation.
|
2417
|
-
|
2418
|
-
"Reserved Font Name" refers to any names specified as such after the copyright
|
2419
|
-
statement(s).
|
2420
|
-
|
2421
|
-
"Original Version" refers to the collection of Font Software components as
|
2422
|
-
distributed by the Copyright Holder(s).
|
2423
|
-
|
2424
|
-
"Modified Version" refers to any derivative made by adding to, deleting, or
|
2425
|
-
substituting — in part or in whole — any of the components of the Original
|
2426
|
-
Version, by changing formats or by porting the Font Software to a new
|
2427
|
-
environment.
|
2428
|
-
|
2429
|
-
"Author" refers to any designer, engineer, programmer, technical writer or other
|
2430
|
-
person who contributed to the Font Software.
|
2431
|
-
|
2432
|
-
|
2433
|
-
PERMISSION & CONDITIONS
|
2434
|
-
|
2435
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
2436
|
-
the Font Software, to use, study, copy, merge, embed, modify, redistribute, and
|
2437
|
-
sell modified and unmodified copies of the Font Software, subject to the
|
2438
|
-
following conditions:
|
2439
|
-
|
2440
|
-
1) Neither the Font Software nor any of its individual components, in Original or
|
2441
|
-
Modified Versions, may be sold by itself.
|
2442
|
-
|
2443
|
-
2) Original or Modified Versions of the Font Software may be bundled,
|
2444
|
-
redistributed and/or sold with any software, provided that each copy contains the
|
2445
|
-
above copyright notice and this license. These can be included either as
|
2446
|
-
stand-alone text files, human-readable headers or in the appropriate
|
2447
|
-
machine-readable metadata fields within text or binary files as long as those
|
2448
|
-
fields can be easily viewed by the user.
|
2449
|
-
|
2450
|
-
3) No Modified Version of the Font Software may use the Reserved Font Name(s)
|
2451
|
-
unless explicit written permission is granted by the corresponding Copyright
|
2452
|
-
Holder. This restriction only applies to the primary font name as presented to
|
2453
|
-
the users.
|
2454
|
-
|
2455
|
-
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software
|
2456
|
-
shall not be used to promote, endorse or advertise any Modified Version, except
|
2457
|
-
to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s)
|
2458
|
-
or with their explicit written permission.
|
2459
|
-
|
2460
|
-
5) The Font Software, modified or unmodified, in part or in whole, must be
|
2461
|
-
distributed entirely under this license, and must not be distributed under any
|
2462
|
-
other license. The requirement for fonts to remain under this license does not
|
2463
|
-
apply to any document created using the Font Software.
|
2464
|
-
|
2465
|
-
|
2466
|
-
TERMINATION
|
2467
|
-
|
2468
|
-
This license becomes null and void if any of the above conditions are not met.
|
2469
|
-
|
2470
|
-
|
2471
|
-
DISCLAIMER
|
2472
|
-
|
2473
|
-
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2474
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS
|
2475
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR
|
2476
|
-
OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM,
|
2477
|
-
DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,
|
2478
|
-
OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
2479
|
-
ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
|
2480
|
-
DEALINGS IN THE FONT SOFTWARE.
|
2481
|
-
|