├── .changeset ├── README.md └── config.json ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── 1.new.yml │ ├── 2.fix.yml │ ├── 3.question.yml │ ├── config.yml │ └── figma-bug.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── default.md │ └── doc-content.md └── workflows │ ├── codemod-test.yml │ ├── sync-figma-to-tokens.yml │ ├── sync-tokens-to-figma.yml │ ├── testcafe.yml │ └── update-design-tokens-stable.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc.js ├── CONTRIBUTING.md ├── README.md ├── aries-core ├── .storybook │ ├── main.js │ └── preview.js ├── babel.config.js ├── jest.config.js ├── package.json ├── src │ ├── js │ │ ├── components │ │ │ ├── core │ │ │ │ ├── Identifier │ │ │ │ │ ├── Identifier.js │ │ │ │ │ └── index.js │ │ │ │ ├── NavigationMenu │ │ │ │ │ ├── DOCUMENTATION.md │ │ │ │ │ ├── NavContainer │ │ │ │ │ │ ├── NavContainer.tsx │ │ │ │ │ │ ├── NavHeader.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── NavItem │ │ │ │ │ │ ├── ActiveMarker.tsx │ │ │ │ │ │ ├── ItemContainer.tsx │ │ │ │ │ │ ├── ItemLabel.tsx │ │ │ │ │ │ ├── NavItem.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── NavList.tsx │ │ │ │ │ ├── NavigationMenu.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── NavigationMenu.test.tsx │ │ │ │ │ │ └── setup.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Popover │ │ │ │ │ ├── Popover.js │ │ │ │ │ └── index.js │ │ │ │ ├── RangeSelector │ │ │ │ │ ├── RangeSelector.js │ │ │ │ │ └── index.js │ │ │ │ ├── ScreenReaderOnly │ │ │ │ │ ├── ScreenReaderOnly.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Selector │ │ │ │ │ ├── Selector.js │ │ │ │ │ ├── SelectorGroup.js │ │ │ │ │ ├── SelectorHeader.js │ │ │ │ │ └── index.js │ │ │ │ ├── Tile │ │ │ │ │ ├── Tile.js │ │ │ │ │ └── index.js │ │ │ │ ├── Tiles │ │ │ │ │ ├── Tiles.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── helpers │ │ │ │ ├── Anchors │ │ │ │ │ ├── Anchor.js │ │ │ │ │ ├── AnchorCallToAction.js │ │ │ │ │ ├── AnchorGroup.js │ │ │ │ │ ├── NavLink.js │ │ │ │ │ └── index.js │ │ │ │ ├── AppIdentity │ │ │ │ │ ├── AppIdentity.js │ │ │ │ │ ├── AppIdentity.tsx │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── layouts │ │ │ │ ├── ActionMenu │ │ │ │ │ ├── ActionMenu.js │ │ │ │ │ └── index.js │ │ │ │ ├── ButtonGroup │ │ │ │ │ ├── ButtonGroup.js │ │ │ │ │ └── index.js │ │ │ │ ├── EmptyState │ │ │ │ │ ├── EmptyState.js │ │ │ │ │ └── index.js │ │ │ │ ├── Layer │ │ │ │ │ ├── LayerHeader.js │ │ │ │ │ └── index.js │ │ │ │ ├── ModalDialog │ │ │ │ │ ├── ModalDialog.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ └── typography │ │ │ │ ├── TextEmphasis.js │ │ │ │ └── index.js │ │ ├── index.d.ts │ │ └── index.js │ └── stories │ │ ├── codeBlocks.stories.js │ │ ├── dashboards.stories.js │ │ ├── dataTableCustomization.stories.js │ │ ├── emptyState.stories.js │ │ ├── filtering.stories.js │ │ ├── forms.stories.js │ │ ├── globalNotifications.stories.js │ │ ├── inlineNotifications.stories.js │ │ ├── lists.stories.js │ │ ├── managingChildObjects.stories.js │ │ ├── navigation │ │ ├── content │ │ │ ├── AppHeader.tsx │ │ │ ├── Genie.tsx │ │ │ ├── Help.tsx │ │ │ ├── LayerHeader.tsx │ │ │ ├── index.ts │ │ │ └── nav-items.tsx │ │ └── navigation.stories.tsx │ │ ├── popover.stories.js │ │ ├── selector.stories.js │ │ └── wizard.stories.js ├── tools │ └── release-stable.js ├── tsconfig.json └── webpack.config.js ├── aries-site ├── .eslintignore ├── .testcaferc.json ├── README.md ├── _redirects ├── applitools.config.js ├── config.js ├── next.config.mjs ├── next.postexport.js ├── package.json ├── public │ ├── 404-pile-invert.svg │ ├── 404-pile.svg │ ├── HPE_logo_full-clr_pos_rgb.svg │ ├── HPE_logo_full-clr_rev_rgb.svg │ ├── Kenny.png │ ├── Matt.png │ ├── Shape.svg │ ├── Taylor.png │ ├── Vicky.png │ ├── accordion-light.svg │ ├── acme.svg │ ├── apache-spark.svg │ ├── apache.svg │ ├── border-sizing.png │ ├── box-sizing.png │ ├── cards-dark.svg │ ├── cards-dashboard-example.png │ ├── cards-navigation-example.png │ ├── cards.svg │ ├── component-preview-accordion-invert.svg │ ├── component-preview-accordion.svg │ ├── componentImages │ │ ├── PageBackground.svg │ │ ├── component-preview-page-invert.svg │ │ ├── component-preview-page.svg │ │ ├── component-preview-pageheader-invert.svg │ │ ├── component-preview-pageheader.svg │ │ ├── component-preview-pagination-invert.svg │ │ ├── component-preview-pagination.svg │ │ ├── component-preview-table-invert.svg │ │ ├── component-preview-table.svg │ │ ├── components-preview-fileinput-invert.svg │ │ └── components-preview-fileinput.svg │ ├── components-preview-spinner-invert.svg │ ├── components-preview-spinner.svg │ ├── components-preview-tooltip-invert.svg │ ├── components-preview-tooltip.svg │ ├── creativetoolkitimages │ │ ├── components.svg │ │ ├── foundation.svg │ │ └── templates.svg │ ├── ctera.svg │ ├── edge-sizing.png │ ├── extend-dark.svg │ ├── extend-light.svg │ ├── extendImages │ │ ├── extend-preview-chomp.svg │ │ ├── extend-preview-designer-guidance-invert.svg │ │ ├── extend-preview-designer-guidance.svg │ │ ├── extend-preview-designer.svg │ │ ├── extend-preview-developer-guidance.svg │ │ ├── extend-preview-grommet-invert.svg │ │ ├── extend-preview-grommet.svg │ │ ├── extend-preview-hpe-docs-invert.svg │ │ ├── extend-preview-hpe-docs.svg │ │ ├── extend-preview-hpe-images.png │ │ ├── extend-preview-roadmap-invert.svg │ │ ├── extend-preview-roadmap.svg │ │ ├── extend-preview-router-invert.svg │ │ ├── extend-preview-router.svg │ │ ├── extend-preview-sidebar-invert.svg │ │ ├── extend-preview-sidebar.svg │ │ ├── extend-preview-slides-audience-invert.svg │ │ ├── extend-preview-slides-audience.svg │ │ ├── extend-preview-table-invert.svg │ │ └── extend-preview-table.svg │ ├── fileinput-form-preview.png │ ├── form-example-nonrequired.png │ ├── foundationImages │ │ ├── accessibilityImages │ │ │ ├── Operable-visual-element-invert.svg │ │ │ ├── Operable-visual-element.svg │ │ │ ├── Perceivable-visual-element-invert.svg │ │ │ ├── Perceivable-visual-element.svg │ │ │ ├── Robust-visual-element-invert.svg │ │ │ ├── Robust-visual-element.svg │ │ │ ├── Understandable-visual-element-invert.svg │ │ │ └── Understandable-visual-element.svg │ │ ├── foundation-preview-accessibility-invert.svg │ │ ├── foundation-preview-accessibility.svg │ │ ├── foundation-preview-brand.svg │ │ ├── foundation-preview-carte-invert.svg │ │ ├── foundation-preview-carte.svg │ │ ├── foundation-preview-colors-invert.svg │ │ ├── foundation-preview-colors.svg │ │ ├── foundation-preview-content-invert.svg │ │ ├── foundation-preview-content.svg │ │ ├── foundation-preview-human-invert.svg │ │ ├── foundation-preview-human.svg │ │ ├── foundation-preview-icons-invert.svg │ │ ├── foundation-preview-icons.svg │ │ ├── foundation-preview-philosophy-invert.svg │ │ ├── foundation-preview-philosophy.svg │ │ ├── foundation-preview-principles-invert.svg │ │ ├── foundation-preview-principles.svg │ │ ├── foundation-preview-tshirt-sizing-invert.svg │ │ ├── foundation-preview-tshirt-sizing.svg │ │ ├── foundation-preview-type-invert.svg │ │ ├── foundation-preview-type.svg │ │ ├── foundation-preview-voice-and-tone-invert.svg │ │ └── foundation-preview-voice-and-tone.svg │ ├── google.svg │ ├── grid-light.svg │ ├── highlightImages │ │ ├── 1col-wizard-invert.svg │ │ ├── 1col-wizard.svg │ │ ├── accessibility-dark.svg │ │ ├── accessibility.svg │ │ ├── color-dark.svg │ │ ├── color.svg │ │ ├── forms-dark.svg │ │ ├── forms.svg │ │ ├── grid-dark.svg │ │ ├── grid.svg │ │ ├── header-dark.svg │ │ ├── header.svg │ │ ├── icons-dark.svg │ │ ├── icons.svg │ │ ├── page-layouts-dark.svg │ │ ├── page-layouts.svg │ │ ├── table-dark.svg │ │ ├── table.svg │ │ ├── typography-dark.svg │ │ └── typography.svg │ ├── home-dark.svg │ ├── home.svg │ ├── hpe-design-tokens-v0.png │ ├── hpe-design-tokens-v1.png │ ├── images │ │ ├── Abstract.jpg │ │ ├── abstract-burst-colored-powder.jpg │ │ ├── abstract-color-clouds.jpg │ │ ├── main-bg-dark.jpg │ │ ├── main-bg.jpg │ │ └── world_map.jpg │ ├── learnImages │ │ ├── box-model-part-one │ │ │ ├── box-model-alignself.png │ │ │ ├── box-model-final.png │ │ │ ├── box-model-row.png │ │ │ ├── step-1.png │ │ │ ├── step-2.png │ │ │ └── step-3.png │ │ ├── data-simple-filters.png │ │ ├── data-simple-toolbar.png │ │ └── grid-fundamentals-part-1 │ │ │ ├── alan-hardman-SU1LFoeEUkk-unsplash.jpg │ │ │ ├── david-clode-EDfZ0Sjmp_w-unsplash.jpg │ │ │ ├── denny-muller-s9zGsWDiFO4-unsplash.jpg │ │ │ ├── gabriella-clare-marino-EGXpSrG02sU-unsplash.jpg │ │ │ ├── lakeisha-bennett-znBJkXzo8ik-unsplash.jpg │ │ │ ├── unsplash-wooden-chair.avif │ │ │ ├── what-we-are-building.png │ │ │ └── wolf-schram-19t6J2RVqQE-unsplash.jpg │ ├── logos │ │ ├── apache.svg │ │ ├── dataiku.svg │ │ ├── determined-ai.svg │ │ ├── dremio.svg │ │ ├── flywheel.svg │ │ ├── h2o.svg │ │ ├── joulica.svg │ │ ├── networking-services.svg │ │ ├── singlestore.svg │ │ └── streamsets.svg │ ├── man-wfh.jpeg │ ├── oracle.svg │ ├── pagination-list-preview.png │ ├── pagination-table-preview.png │ ├── required&optional-Fields-example.png │ ├── single-store.svg │ ├── singlestore.svg │ ├── starburst.svg │ ├── static │ │ ├── HPE.Design.System.V6.vtt │ │ ├── accessibility │ │ │ └── Bill.Access.Captions.vtt │ │ ├── favicon.ico │ │ └── images │ │ │ ├── Assemble_Data_Set.png │ │ │ ├── Bill-Access-Cover.png │ │ │ ├── Browsing_For_Outliers.png │ │ │ ├── Filtering_Data_Tables.png │ │ │ ├── Finding_Specific_Records.png │ │ │ ├── Searching_Data_Tables.png │ │ │ ├── Table_Anatomy.svg │ │ │ ├── aries-introduction.jp2 │ │ │ ├── aruba-logo.svg │ │ │ ├── cards.png │ │ │ ├── datatable-combined-column-status-state.svg │ │ │ ├── datatable-only-status-column.svg │ │ │ ├── datatable-separate-columns-status-state.svg │ │ │ ├── hpe-logo-invert.svg │ │ │ ├── hpe-logo.svg │ │ │ ├── quote-lines-dark.svg │ │ │ ├── quote-lines.svg │ │ │ ├── quote.svg │ │ │ ├── t_harms_bio_image.png │ │ │ ├── video-placeholder-dark.png │ │ │ └── video-placeholder.png │ ├── table-manage-orders-example.png │ ├── templateImages │ │ ├── 2col-dashboard-invert.svg │ │ ├── 2col-dashboard.svg │ │ ├── 3col-dashboard-invert.svg │ │ ├── 3col-dashboard.svg │ │ ├── DrillDown-invert.svg │ │ ├── DrillDown.svg │ │ ├── MatrixNavigation-invert.svg │ │ ├── MatrixNavigation.svg │ │ ├── Side-to-Side.svg │ │ ├── SideToSide-invert.svg │ │ ├── ascending-button-preview-invert.svg │ │ ├── ascending-button-preview.svg │ │ ├── ascending-nav-left-invert.png │ │ ├── ascending-nav-left.png │ │ ├── ascending-nav-right-invert.png │ │ ├── ascending-nav-right.png │ │ ├── ascending-navigation-invert.svg │ │ ├── ascending-navigation.svg │ │ ├── coming-soon-invert.svg │ │ ├── coming-soon.svg │ │ ├── drill-down-card-example-invert.svg │ │ ├── drill-down-card-example.svg │ │ ├── drill-down-datatable-example-invert.svg │ │ ├── drill-down-datatable-example.svg │ │ ├── drill-down-list-example-invert.svg │ │ ├── drill-down-list-example.svg │ │ ├── globalheader-footer-small.png │ │ ├── globalheader-footer.png │ │ ├── globalheader-full.png │ │ ├── globalheader-full.svg │ │ ├── globalheader-greenlake.png │ │ ├── globalheader-hpe.png │ │ ├── globalheader-nav.png │ │ ├── globalheader-sign-in.png │ │ ├── globalheader-small.png │ │ ├── globalheader.png │ │ ├── matrix-app-example-invert.svg │ │ ├── matrix-app-example.svg │ │ ├── matrix-music-invert.svg │ │ ├── matrix-music.svg │ │ ├── multicol-dashboard-invert.svg │ │ ├── multicol-dashboard.svg │ │ ├── tab-nav-invert.svg │ │ ├── tab-nav.svg │ │ ├── template-preview-banner-notification-invert.svg │ │ ├── template-preview-banner-notification.svg │ │ ├── template-preview-cards-invert.svg │ │ ├── template-preview-cards.svg │ │ ├── template-preview-dashboard-invert.svg │ │ ├── template-preview-dashboard.svg │ │ ├── template-preview-data-visualization-invert.svg │ │ ├── template-preview-data-visualization.svg │ │ ├── template-preview-filtering-invert.svg │ │ ├── template-preview-filtering.svg │ │ ├── template-preview-form-invert.svg │ │ ├── template-preview-form.svg │ │ ├── template-preview-hubnspoke-invert.svg │ │ ├── template-preview-hubnspoke.svg │ │ ├── template-preview-i18n-invert.svg │ │ ├── template-preview-i18n.svg │ │ ├── template-preview-list-invert.svg │ │ ├── template-preview-list.svg │ │ ├── template-preview-navigation-invert.svg │ │ ├── template-preview-navigation.svg │ │ ├── template-preview-notifications-invert.svg │ │ ├── template-preview-notifications.svg │ │ ├── template-preview-pagelayout-invert.svg │ │ ├── template-preview-pagelayout.svg │ │ ├── template-preview-persistent-invert.svg │ │ ├── template-preview-persistent.svg │ │ ├── template-preview-table-customize-invert.svg │ │ ├── template-preview-table-customize.svg │ │ ├── template-preview-wizard-invert.svg │ │ └── template-preview-wizard.svg │ ├── typography-light.svg │ ├── whatis │ │ ├── app.svg │ │ ├── base.svg │ │ ├── combining.svg │ │ ├── tailor.svg │ │ └── tools.svg │ ├── windows.svg │ ├── woman-glc.jpeg │ └── woman-man-server-room.jpeg └── src │ ├── applitools │ ├── all-components.js │ ├── button.js │ ├── forms.js │ ├── screen-container.js │ ├── template.js │ └── typography.js │ ├── components │ ├── accessibility │ │ ├── Video.js │ │ └── index.js │ ├── cards │ │ ├── CardGrid.js │ │ ├── ContentCard.js │ │ ├── ContentPreviewCard.js │ │ ├── ExampleImagePreview.js │ │ ├── LinkCard.js │ │ ├── PreviewCard.js │ │ ├── SectionCards.js │ │ └── index.js │ ├── content │ │ ├── AppIdentity.js │ │ ├── CollapsibleSection.js │ │ ├── ColorCompliance.js │ │ ├── ColorSwatch.js │ │ ├── DecisionTree │ │ │ ├── Answer.js │ │ │ ├── Decision.js │ │ │ ├── Destination.js │ │ │ └── index.js │ │ ├── DesignTokenContext.js │ │ ├── DesignTokensTable.js │ │ ├── DocsMessage.js │ │ ├── HighlightPhrase.js │ │ ├── MarkdownComponents.js │ │ ├── PageBackground.js │ │ ├── Status.js │ │ ├── SubmitFeedback.js │ │ ├── SubsectionText.js │ │ ├── ThemeModeToggle.js │ │ ├── designTokenUtils.js │ │ └── index.js │ ├── feedback │ │ ├── Feedback.js │ │ ├── FeedbackButton.js │ │ ├── Question.js │ │ └── index.js │ ├── headings │ │ ├── Subheading.js │ │ └── index.js │ ├── home │ │ ├── Community.js │ │ ├── CreativeToolkit.js │ │ ├── Featured.js │ │ ├── Hero.js │ │ ├── Quote.js │ │ ├── Video.js │ │ ├── WhatIs.js │ │ └── index.js │ ├── icons │ │ ├── IconCircle.js │ │ ├── IconDiamond.js │ │ ├── IconExtend.js │ │ ├── IconSquare.js │ │ ├── IconTriangle.js │ │ └── index.js │ ├── index.js │ └── seo │ │ ├── Meta.js │ │ └── index.js │ ├── data │ ├── color.js │ ├── featured.js │ ├── index.js │ ├── mockData │ │ ├── accounts.json │ │ ├── activities.json │ │ ├── applications.json │ │ ├── company.json │ │ ├── compliance.json │ │ ├── consumption.json │ │ ├── firmware-bundles.json │ │ ├── orders.json │ │ ├── serverGroups.json │ │ ├── serverhealth.json │ │ ├── servers.json │ │ ├── services.json │ │ ├── tags.json │ │ ├── trainingDataSets.json │ │ └── users.json │ ├── structure.js │ ├── structures │ │ ├── Structure.js │ │ ├── components.js │ │ ├── foundation.js │ │ ├── index.js │ │ ├── learn.js │ │ ├── templates │ │ │ ├── content-layouts.js │ │ │ ├── index.js │ │ │ └── templates.js │ │ └── tokens.js │ ├── toolkitItems.js │ └── wcag │ │ ├── accordion.json │ │ ├── anchor.json │ │ ├── avatar.json │ │ ├── box.json │ │ ├── button.json │ │ ├── card.json │ │ ├── checkbox.json │ │ ├── checkboxgroup.json │ │ ├── datafilter.json │ │ ├── datafilters.json │ │ ├── datasearch.json │ │ ├── datasort.json │ │ ├── datasummary.json │ │ ├── datatable.json │ │ ├── datatablecolumns.json │ │ ├── datatablegroupby.json │ │ ├── dataview.json │ │ ├── dateinput.json │ │ ├── fileinput.json │ │ ├── footer.json │ │ ├── grid.json │ │ ├── header.json │ │ ├── layer.json │ │ ├── main.json │ │ ├── maskedinput.json │ │ ├── menu.json │ │ ├── namevaluelist.json │ │ ├── notification.json │ │ ├── page.json │ │ ├── pageheader.json │ │ ├── pagination.json │ │ ├── radiobuttongroup.json │ │ ├── rangeinput.json │ │ ├── select.json │ │ ├── selectmultiple.json │ │ ├── skeleton.json │ │ ├── spinner.json │ │ ├── tabs.json │ │ ├── tag.json │ │ ├── textarea.json │ │ ├── textinput.json │ │ ├── tip.json │ │ ├── togglegroup.json │ │ ├── toolbar.json │ │ └── wcag.json │ ├── examples │ ├── cardPreviews │ │ ├── SearchPreview.js │ │ ├── anchor.js │ │ ├── avatar.js │ │ ├── box.js │ │ ├── button.js │ │ ├── checkbox.js │ │ ├── checkboxgroup.js │ │ ├── code-blocks.js │ │ ├── content-layouts │ │ │ ├── ContentLayoutPreview.js │ │ │ └── index.js │ │ ├── data-how-to-add-additional-controls.js │ │ ├── data-how-to.js │ │ ├── datafilter.js │ │ ├── datafilters.js │ │ ├── datasearch.js │ │ ├── datasort.js │ │ ├── datasummary.js │ │ ├── datatablecolumns.js │ │ ├── datatablegroupby.js │ │ ├── dataview.js │ │ ├── dateinput.js │ │ ├── emptystate.js │ │ ├── feedback.js │ │ ├── footer.js │ │ ├── grid.js │ │ ├── header.js │ │ ├── index.js │ │ ├── layer.js │ │ ├── maskedinput.js │ │ ├── menu.js │ │ ├── namevaluelist.js │ │ ├── page-layouts │ │ │ ├── HeaderFooterPreview.js │ │ │ ├── HeaderOnlyPreview.js │ │ │ ├── StickyHeaderPreview.js │ │ │ └── index.js │ │ ├── popover.js │ │ ├── radiobuttonGroup.js │ │ ├── rangeinput.js │ │ ├── selector.js │ │ ├── skeleton.js │ │ ├── status-indicator.js │ │ ├── tabs.js │ │ ├── tag.js │ │ ├── textarea.js │ │ ├── textinput.js │ │ ├── toast-notification.js │ │ ├── togglegroup.js │ │ └── toolbar.js │ ├── components │ │ ├── accordion │ │ │ ├── AccordionExample.js │ │ │ └── index.js │ │ ├── anchor │ │ │ ├── AnchorBadExample.js │ │ │ ├── AnchorDisabledExample.js │ │ │ ├── AnchorExample.js │ │ │ ├── AnchorExternalExample.js │ │ │ ├── AnchorGoodExample.js │ │ │ ├── AnchorIconExample.js │ │ │ ├── AnchorInlineExample.js │ │ │ └── index.js │ │ ├── avatar │ │ │ ├── AvatarAccessibilityExample.js │ │ │ ├── AvatarDarkModeExample.js │ │ │ ├── AvatarDataTableExample.js │ │ │ ├── AvatarDataTableIconExample.js │ │ │ ├── AvatarExample.js │ │ │ ├── AvatarPageHeaderExample.js │ │ │ ├── AvatarSizePreviewExample.js │ │ │ └── index.js │ │ ├── button │ │ │ ├── ButtonAlignmentTable.js │ │ │ ├── ButtonBadgeExample.js │ │ │ ├── ButtonBusyExample.js │ │ │ ├── ButtonBusySimpleExample.js │ │ │ ├── ButtonExample.js │ │ │ ├── ButtonIconExample.js │ │ │ ├── ButtonLeftAlignExample.js │ │ │ ├── ButtonRightAlignExample.js │ │ │ ├── ButtonSizingExample.js │ │ │ ├── ButtonStatesExample.js │ │ │ ├── CTAButtonExample.js │ │ │ ├── DefaultButtonExample.js │ │ │ ├── DosDonts │ │ │ │ ├── ButtonBadCancelPreview.js │ │ │ │ ├── ButtonBadGroupPreview.js │ │ │ │ ├── ButtonBadSignUpCTAPreview.js │ │ │ │ ├── ButtonGoodCancelPreview.js │ │ │ │ ├── ButtonGoodLongTitlePreview.js │ │ │ │ ├── ButtonGoodSignUpCTAPreview.js │ │ │ │ └── index.js │ │ │ ├── PrimaryButtonExample.js │ │ │ ├── SecondaryButtonExample.js │ │ │ ├── ToolbarButtonExample.js │ │ │ └── index.js │ │ ├── calendar │ │ │ ├── CalendarExample.js │ │ │ └── index.js │ │ ├── card │ │ │ ├── ActivitiesNavigationalCards.js │ │ │ ├── ApplicationsNavigationalCards.js │ │ │ ├── CallToActionAnatomy.js │ │ │ ├── CardAlignmentBestPractice.js │ │ │ ├── CardContentBestPractice.js │ │ │ ├── CardFilteringBestPractice.js │ │ │ ├── CardKitchenSink.js │ │ │ ├── CardSpacingBestPractice.js │ │ │ ├── CardTypes.js │ │ │ ├── EventPromotionCard.js │ │ │ ├── EventPromotionRowCard.js │ │ │ ├── FeaturePromotionCard.js │ │ │ ├── FeatureReleaseCard.js │ │ │ ├── MarketplaceNavigationalCards.js │ │ │ ├── NavigationalAnatomy.js │ │ │ ├── NavigationalCardPreview.js │ │ │ ├── ToolsNavigationalCards.js │ │ │ ├── TrialPromotionCard.js │ │ │ ├── TrialPromotionColorCard.js │ │ │ ├── TrialPromotionRowCard.js │ │ │ ├── data.js │ │ │ └── index.js │ │ ├── carousel │ │ │ ├── CarouselExample.js │ │ │ └── index.js │ │ ├── chart │ │ │ ├── ChartExample.js │ │ │ └── index.js │ │ ├── checkbox │ │ │ ├── CheckBoxDescriptionExample.js │ │ │ ├── CheckBoxDisabledExample.js │ │ │ ├── CheckBoxSimpleExample.js │ │ │ ├── CheckBoxSolelyExample.js │ │ │ ├── CheckBoxToggleExample.js │ │ │ ├── CheckBoxValidationExample.js │ │ │ └── index.js │ │ ├── checkboxgroup │ │ │ ├── CheckBoxGroupDescriptionExample.js │ │ │ ├── CheckBoxGroupDisabledExample.js │ │ │ ├── CheckBoxGroupObjectExample.js │ │ │ ├── CheckBoxGroupScrollExample.js │ │ │ ├── CheckBoxGroupSimpleExample.js │ │ │ ├── CheckBoxGroupValidationExample.js │ │ │ └── index.js │ │ ├── clock │ │ │ ├── ClockExample.js │ │ │ └── index.js │ │ ├── data │ │ │ ├── DataExample.js │ │ │ ├── DataFilterExample.js │ │ │ ├── DataFiltersExample.js │ │ │ ├── DataSearchExample.js │ │ │ ├── DataSortExample.js │ │ │ ├── DataSummaryExample.js │ │ │ ├── DataTableColumnsExample.js │ │ │ ├── DataTableGroupByExample.js │ │ │ ├── DataViewExample.js │ │ │ ├── ToolbarExample.js │ │ │ └── index.js │ │ ├── datachart │ │ │ ├── DataChartExample.js │ │ │ └── index.js │ │ ├── datatable │ │ │ ├── DataTableAnatomy.js │ │ │ ├── DataTableEmptyCellExample.js │ │ │ ├── DataTableExample.js │ │ │ ├── DataTableFixedHeaderExample.js │ │ │ ├── DataTableMultiSelectExample.js │ │ │ ├── DataTableResizeColumnsExample.js │ │ │ ├── DataTableSingleSelectExample.js │ │ │ ├── DataTableSortable.js │ │ │ ├── DataTableSummaryExample.js │ │ │ ├── DataTableVerticalListExample.js │ │ │ └── index.js │ │ ├── dateinput │ │ │ ├── DateInputExample.js │ │ │ ├── DateInputRangeExample.js │ │ │ ├── DateInputReadOnlyExample.js │ │ │ ├── DateInputSimpleExample.js │ │ │ ├── DateInputValidationExample.js │ │ │ └── index.js │ │ ├── diagram │ │ │ ├── DiagramExample.js │ │ │ └── index.js │ │ ├── drop │ │ │ ├── DropExample.js │ │ │ └── index.js │ │ ├── dropbutton │ │ │ ├── DropButtonExample.js │ │ │ └── index.js │ │ ├── fileinput │ │ │ ├── FileInputConfirmRemoveExample.js │ │ │ ├── FileInputMultipleExample.js │ │ │ ├── FileInputSimpleExample.js │ │ │ ├── FileInputValidationExample.js │ │ │ └── index.js │ │ ├── footer │ │ │ ├── FooterComboExample.js │ │ │ ├── FooterExample.js │ │ │ ├── FooterPageExample.js │ │ │ └── index.js │ │ ├── grid │ │ │ ├── FlexGrid.js │ │ │ ├── FluidGrid1.js │ │ │ ├── FluidGrid2.js │ │ │ ├── GapExample.js │ │ │ ├── MinMaxColumns1.js │ │ │ ├── MinMaxColumns2.js │ │ │ ├── MixedColumns1.js │ │ │ ├── MixedColumns2.js │ │ │ ├── UniformColumns.js │ │ │ ├── index.js │ │ │ └── utils │ │ │ │ ├── definitions.js │ │ │ │ └── index.js │ │ ├── header │ │ │ ├── HeaderActionExample.js │ │ │ ├── HeaderAvatarExample.js │ │ │ ├── HeaderExample.js │ │ │ ├── HeaderNavigationExample.js │ │ │ ├── HeaderSearchActionsExample.js │ │ │ └── index.js │ │ ├── image │ │ │ ├── ImageExample.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── layer │ │ │ ├── ActionLabelTitle.js │ │ │ ├── ActionLabels.js │ │ │ ├── ActionableLayerClose.js │ │ │ ├── CenterInformational.js │ │ │ ├── CenterLayerAnatomy.js │ │ │ ├── ConfigurationForm.js │ │ │ ├── DataFiltersAnatomy.js │ │ │ ├── DoubleConfirmationAnatomy.js │ │ │ ├── DoubleConfirmationBestPractice.js │ │ │ ├── FullscreenLayerAnatomy.js │ │ │ ├── InformationalLayerClose.js │ │ │ ├── LayerAnatomy.js │ │ │ ├── LayerCenterExample.js │ │ │ ├── LayerExample.js │ │ │ ├── LayerSideDrawerExample.js │ │ │ ├── LayerStickyExample.js │ │ │ ├── LayerTypes.js │ │ │ ├── MonitorFormExample.js │ │ │ ├── SideDrawerLayerAnatomy.js │ │ │ ├── components │ │ │ │ ├── ConfirmationContext.js │ │ │ │ ├── DoubleConfirmation.js │ │ │ │ ├── LayerContainer.js │ │ │ │ ├── Sidedrawer.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── layouts │ │ │ ├── BoxExample.js │ │ │ ├── GridExample.js │ │ │ └── index.js │ │ ├── main │ │ │ ├── MainExample.js │ │ │ └── index.js │ │ ├── markdown │ │ │ ├── MarkdownExample.js │ │ │ └── index.js │ │ ├── maskedinput │ │ │ ├── MaskedDateExample.js │ │ │ ├── MaskedDisabledExample.js │ │ │ ├── MaskedEmailExample.js │ │ │ ├── MaskedIPAddressExample.js │ │ │ ├── MaskedIPRangeExample.js │ │ │ ├── MaskedPhoneExample.js │ │ │ ├── MaskedSizeUnitsExample.js │ │ │ ├── MaskedTimeExample.js │ │ │ ├── MaskedValidationExample.js │ │ │ └── index.js │ │ ├── menu │ │ │ ├── MenuBatchActionsExample.js │ │ │ ├── MenuDangerousExample.js │ │ │ ├── MenuDisabledExample.js │ │ │ ├── MenuExample.js │ │ │ ├── MenuGroupingExample.js │ │ │ ├── MenuHeaderExample.js │ │ │ ├── MenuIconExample.js │ │ │ ├── MenuRecordActionsExample.js │ │ │ └── index.js │ │ ├── meter │ │ │ ├── MeterExample.js │ │ │ └── index.js │ │ ├── namevaluelist │ │ │ ├── DoDonts │ │ │ │ ├── NameValueListBoldExampleBad.js │ │ │ │ ├── NameValueListBoldExampleGood.js │ │ │ │ ├── NameValueListTextBadExample.js │ │ │ │ ├── NameValueListTextGoodExample.js │ │ │ │ ├── NameValueListWeightBad.js │ │ │ │ ├── NameValueListWeightGood.js │ │ │ │ └── index.js │ │ │ ├── Examples │ │ │ │ ├── NameValueListDefaultExample.js │ │ │ │ ├── NameValueListDetailPage.js │ │ │ │ ├── NameValueListEditExample.js │ │ │ │ ├── NameValueListEditHorizontalExample.js │ │ │ │ ├── NameValueListGridExample.js │ │ │ │ ├── NameValueListMultipleDefaultExample.js │ │ │ │ ├── NameValueListPairPropsExample.js │ │ │ │ ├── NameValueListReadMoreExample.js │ │ │ │ ├── NameValueListSimpleExample.js │ │ │ │ ├── NameValueListSummaryExample.js │ │ │ │ ├── NameValueListWizard.js │ │ │ │ ├── components │ │ │ │ │ ├── NameValueListFormField.js │ │ │ │ │ ├── NameValueListFormLabel.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── NameValueListAnatomy.js │ │ │ ├── NameValueListScaleTable.js │ │ │ ├── Previews │ │ │ │ ├── NameValueListAlignmentPreview.js │ │ │ │ ├── NameValueListAnatomyPreview.js │ │ │ │ ├── NameValueListFontWeightPreview.js │ │ │ │ ├── NameValueListFontWeightSecondPreview.js │ │ │ │ ├── NameValueListHeadingPreview.js │ │ │ │ ├── NameValueListIconNamePreview.js │ │ │ │ ├── NameValueListIconValuePreview.js │ │ │ │ └── index.js │ │ │ ├── data.js │ │ │ └── index.js │ │ ├── nav │ │ │ ├── NavExample.js │ │ │ └── index.js │ │ ├── notifications │ │ │ ├── StateVsStatusDiagram.js │ │ │ ├── TaxonomyTable.js │ │ │ └── index.js │ │ ├── page │ │ │ ├── PageBackGroundExample.js │ │ │ ├── PageExample.js │ │ │ ├── PageFullExample.js │ │ │ ├── PageNarrowExample.js │ │ │ ├── PageWideExample.js │ │ │ ├── SinglePageContent.js │ │ │ ├── demoStyle.js │ │ │ └── index.js │ │ ├── pageheader │ │ │ ├── ChildPageHeaderExample.js │ │ │ ├── PageHeaderActions.js │ │ │ ├── PageHeaderAnatomy.js │ │ │ ├── PageHeaderContentRegions.js │ │ │ ├── PageHeaderIntroExample.js │ │ │ ├── PageHeaderResponsiveActions.js │ │ │ ├── PageHeaderSubtitle.js │ │ │ ├── TopLevelPageHeaderExample.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── pagination │ │ │ ├── PaginationAnatomy.js │ │ │ ├── PaginationCardsExample.js │ │ │ ├── PaginationExample.js │ │ │ ├── PaginationListExample.js │ │ │ ├── PaginationServerTableExample.js │ │ │ ├── PaginationTableExample.js │ │ │ └── index.js │ │ ├── radiobuttongroup │ │ │ ├── RadioButtonGroupDisabledExample.js │ │ │ ├── RadioButtonGroupExample.js │ │ │ ├── RadioButtonGroupValidationExample.js │ │ │ └── index.js │ │ ├── rangeinput │ │ │ ├── RangeInputExample.js │ │ │ └── index.js │ │ ├── rangeselector │ │ │ ├── RangeSelectorExample.js │ │ │ └── index.js │ │ ├── search │ │ │ ├── ClearSearchExample.js │ │ │ ├── SearchExample.js │ │ │ ├── SearchIconPositionExample.js │ │ │ ├── SearchPlaceholder.js │ │ │ ├── SearchSimpleExample.js │ │ │ ├── SearchSuggestionsExample.js │ │ │ └── index.js │ │ ├── select │ │ │ ├── SelectDisabledExample.js │ │ │ ├── SelectExample.js │ │ │ ├── SelectPreview.js │ │ │ ├── SelectSearchExample.js │ │ │ ├── SelectValidationExample.js │ │ │ └── index.js │ │ ├── selectmultiple │ │ │ ├── SelectMultipleAnatomy.js │ │ │ ├── SelectMultipleAnatomyExample.js │ │ │ ├── SelectMultipleSimpleExample.js │ │ │ └── index.js │ │ ├── sidebar │ │ │ ├── SidebarExample.js │ │ │ └── index.js │ │ ├── skeleton │ │ │ ├── DashBoardSkeletonExample.js │ │ │ ├── SkeletonAnatomy.js │ │ │ └── index.js │ │ ├── spinner │ │ │ ├── AnnounceSpinnerExample.js │ │ │ ├── ContentSpinnerExample.js │ │ │ ├── ListSpinnerExample.js │ │ │ ├── SpinnerExample.js │ │ │ └── index.js │ │ ├── tabs │ │ │ ├── TabContent.js │ │ │ ├── TabResponsive.js │ │ │ ├── TabStatesExample.js │ │ │ ├── TabWithIconExample.js │ │ │ ├── TabsExample.js │ │ │ └── index.js │ │ ├── tag │ │ │ ├── CreateTag │ │ │ │ ├── CreateTag.js │ │ │ │ ├── TagAppContainer.js │ │ │ │ ├── TagPageHeader.js │ │ │ │ ├── TagResults.js │ │ │ │ ├── index.js │ │ │ │ └── utils.js │ │ │ ├── CreateTagSimple.js │ │ │ ├── TagAnatomy.js │ │ │ ├── TagAttention.js │ │ │ ├── TagBasicAnatomy.js │ │ │ ├── TagMetaData.js │ │ │ ├── TagResource.js │ │ │ ├── TagSimple.js │ │ │ ├── data.js │ │ │ └── index.js │ │ ├── textarea │ │ │ ├── TextAreaDisabledExample.js │ │ │ ├── TextAreaExample.js │ │ │ ├── TextAreaValidationExample.js │ │ │ └── index.js │ │ ├── textinput │ │ │ ├── TextInputDisabledExample.js │ │ │ ├── TextInputExample.js │ │ │ ├── TextInputLabeledByExample.js │ │ │ ├── TextInputPasswordExample.js │ │ │ ├── TextInputReadOnlyExample.js │ │ │ ├── TextInputSuggestionsExample.js │ │ │ ├── TextInputValidationExample.js │ │ │ └── index.js │ │ ├── tip │ │ │ ├── TipExitExample.js │ │ │ ├── TipIconExample.js │ │ │ ├── TipSimpleExample.js │ │ │ ├── TipSizeExample.js │ │ │ └── index.js │ │ ├── togglegroup │ │ │ ├── CardView.js │ │ │ ├── ListView.js │ │ │ ├── ToggleGroupAnatomy.js │ │ │ ├── ToggleGroupSimple.js │ │ │ ├── ToggleGroupTextEditor.js │ │ │ ├── ToggleGroupViews.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── video │ │ │ ├── VideoExample.js │ │ │ └── index.js │ │ └── worldmap │ │ │ ├── WorldMapExample.js │ │ │ └── index.js │ ├── foundation │ │ ├── accessibility │ │ │ ├── CorePrinciples.js │ │ │ ├── GuideSection.js │ │ │ ├── VideoSection.js │ │ │ └── index.js │ │ ├── background-colors │ │ │ ├── BasicLayoutCardsExample.js │ │ │ ├── BasicLayoutExample.js │ │ │ ├── LayeredLayoutExample.js │ │ │ ├── LayeredLayoutFixedExample.js │ │ │ └── index.js │ │ ├── branding │ │ │ ├── ArubaIconExample.js │ │ │ ├── HpeElementExample.js │ │ │ └── index.js │ │ ├── color │ │ │ ├── ColorAccessibility.js │ │ │ ├── ColorPalettes.js │ │ │ ├── ElevationExample.js │ │ │ ├── GraphExample.js │ │ │ ├── StatusExample.js │ │ │ ├── TextExample.js │ │ │ └── index.js │ │ ├── date-and-time │ │ │ ├── AbbreviatedDateExample.js │ │ │ ├── DateAlignmentExample.js │ │ │ ├── DateTimeNotificationExample.js │ │ │ ├── RelativeTimeExample.js │ │ │ ├── TimezoneExample.js │ │ │ ├── ZeroPaddingExample.js │ │ │ └── index.js │ │ ├── distinctive-brand-assets │ │ │ ├── CallToActionButton.js │ │ │ ├── ColorAndTexture.js │ │ │ ├── HPEGreenLakeBadge.js │ │ │ ├── TypographyStyles.js │ │ │ └── index.js │ │ ├── icons │ │ │ ├── IconComponentExample.js │ │ │ ├── IconCoreExample.js │ │ │ ├── IconHeightExample.js │ │ │ ├── IconPlainExample.js │ │ │ ├── IconSizeExample.js │ │ │ ├── IconStatusExample.js │ │ │ ├── IconTextExample.js │ │ │ └── index.js │ │ ├── index.js │ │ └── typography │ │ │ ├── HeadingExample.js │ │ │ ├── ParagraphExample.js │ │ │ ├── TextSizeExample.js │ │ │ └── index.js │ ├── index.js │ ├── learn │ │ ├── how-to │ │ │ ├── how-to-add-additional-controls-to-a-toolbar │ │ │ │ ├── Completed.js │ │ │ │ ├── components │ │ │ │ │ ├── Pagination.jsx │ │ │ │ │ ├── PaginationStep.jsx │ │ │ │ │ └── PaginationSummary.jsx │ │ │ │ ├── index.js │ │ │ │ └── utils.jsx │ │ │ └── index.js │ │ ├── index.js │ │ └── tutorials │ │ │ ├── grid-fundamentals-part-1 │ │ │ ├── ProductCard.js │ │ │ ├── StarterTemplate.js │ │ │ ├── StepFive.js │ │ │ ├── StepFour.js │ │ │ ├── StepOne.js │ │ │ ├── StepThree.js │ │ │ ├── StepTwo.js │ │ │ ├── index.js │ │ │ ├── product-list.json │ │ │ └── utils.js │ │ │ └── index.js │ ├── templates │ │ ├── Card │ │ │ ├── Card.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── DestructiveConfirmation │ │ │ ├── DestructiveConfirmation.js │ │ │ └── index.js │ │ ├── FilterControls │ │ │ ├── FilterControls.js │ │ │ ├── Filters.js │ │ │ ├── FiltersContext.js │ │ │ ├── FiltersLayer.js │ │ │ ├── ResultsSummary.js │ │ │ ├── SearchFilter.js │ │ │ ├── filterTypes │ │ │ │ ├── FilterCheckBoxGroup.js │ │ │ │ ├── FilterRangeSelector.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── FormChildObject │ │ │ ├── ChildHeader.js │ │ │ ├── FormChildObject.js │ │ │ ├── FormChildObjects.js │ │ │ └── index.js │ │ ├── ReverseAnchor │ │ │ ├── ReverseAnchor.js │ │ │ └── index.js │ │ ├── StatusIndicator │ │ │ ├── StatusIndicator.js │ │ │ └── index.js │ │ ├── ascending-navigation │ │ │ ├── AscendingNavigationAnatomy.js │ │ │ └── index.js │ │ ├── code-blocks │ │ │ ├── CodeBlocks.js │ │ │ └── index.js │ │ ├── content-layouts │ │ │ ├── ContainerDrivenLayout │ │ │ │ ├── AppResults.js │ │ │ │ ├── ContainerDrivenLayout.js │ │ │ │ └── index.js │ │ │ ├── ContentDrivenLayout.js │ │ │ ├── NestedGrid.js │ │ │ ├── ResponsiveContentLayoutExample.js │ │ │ └── index.js │ │ ├── dashboards │ │ │ ├── DashboardExample.js │ │ │ ├── ThreeColumnDashboard.js │ │ │ ├── TwoColumnDashboard.js │ │ │ ├── components │ │ │ │ ├── Activity.js │ │ │ │ ├── ActivityFeed.js │ │ │ │ ├── ChartCard.js │ │ │ │ ├── DashboardCard.js │ │ │ │ ├── DashboardCardHeader.js │ │ │ │ ├── DashboardFooter.js │ │ │ │ ├── DashboardGrid.js │ │ │ │ ├── Greeting.js │ │ │ │ ├── ItemCountList.js │ │ │ │ ├── Legend.js │ │ │ │ ├── Measure.js │ │ │ │ ├── MeterGroup.js │ │ │ │ ├── StatusBar.js │ │ │ │ ├── UpdateItem.js │ │ │ │ ├── UpdateNotificationsList.js │ │ │ │ ├── UpdatesFeed.js │ │ │ │ ├── data.js │ │ │ │ └── index.js │ │ │ ├── content │ │ │ │ ├── FirmwareBaselines.js │ │ │ │ ├── FirmwareStatus.js │ │ │ │ ├── RecentActivity.js │ │ │ │ ├── ServerAttention.js │ │ │ │ ├── ServerHealth.js │ │ │ │ ├── UpdatesAvaliable.js │ │ │ │ ├── chartCards │ │ │ │ │ ├── CostByMonth.js │ │ │ │ │ ├── CostByService.js │ │ │ │ │ ├── CostByYear.js │ │ │ │ │ ├── RulesAudit.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── formatValues.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── statistics.js │ │ │ │ │ │ └── window.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── drill-down-navigation │ │ │ ├── drill-down-card-example.js │ │ │ ├── drill-down-datatable-example.js │ │ │ ├── drill-down-list-example.js │ │ │ └── index.js │ │ ├── empty-state │ │ │ ├── AccessDenied.js │ │ │ ├── ActionEmptyState.js │ │ │ ├── CardEmptyState.js │ │ │ ├── EmptyStateAnatomy.js │ │ │ ├── EmptyStateExample.js │ │ │ ├── ErrorManagementEmptyState.js │ │ │ ├── LayerEmptyState.js │ │ │ ├── ListingEmptyState.js │ │ │ ├── NoData.js │ │ │ ├── PageEmptyState.js │ │ │ └── index.js │ │ ├── export-data │ │ │ ├── ExportDataContainer.js │ │ │ └── index.js │ │ ├── feedback │ │ │ ├── FeedbackAnatomy.js │ │ │ ├── ModalTaskFlowExample │ │ │ │ ├── ModalTaskFlowExample.js │ │ │ │ ├── PowerOnFlow.js │ │ │ │ ├── TaskFlowFeedback.js │ │ │ │ └── index.js │ │ │ ├── SimpleFeedbackExample.js │ │ │ └── index.js │ │ ├── filtering │ │ │ ├── FilteringCards │ │ │ │ ├── FilteringCards.js │ │ │ │ ├── index.js │ │ │ │ └── mockData.js │ │ │ ├── FilteringLists │ │ │ │ ├── FilteringLists.js │ │ │ │ ├── index.js │ │ │ │ └── mockData.js │ │ │ ├── FilteringTable │ │ │ │ ├── FilterServers.js │ │ │ │ ├── FilteringTable.js │ │ │ │ ├── index.js │ │ │ │ └── mockData.js │ │ │ ├── FilteringWithSelect.js │ │ │ ├── PersistentFiltering.js │ │ │ ├── QuickFilterToolbar.js │ │ │ └── index.js │ │ ├── forms │ │ │ ├── ChangePasswordExample.js │ │ │ ├── CharacterCounterExample.js │ │ │ ├── CustomizeExample.js │ │ │ ├── FormPresentationDecisionTree.js │ │ │ ├── FullPageFormExample.js │ │ │ ├── PayExample.js │ │ │ ├── RequiredFieldsExample.js │ │ │ ├── SettingsExample.js │ │ │ ├── Shipping │ │ │ │ ├── ContactInfomation.js │ │ │ │ ├── ShippingInfomation.js │ │ │ │ └── index.js │ │ │ ├── ShippingExample.js │ │ │ ├── SignInExample.js │ │ │ ├── SignUpExample.js │ │ │ ├── SimpleSignUpExample.js │ │ │ ├── SingleFormFieldExample.js │ │ │ ├── SortExample.js │ │ │ ├── do-dont │ │ │ │ ├── ColumnFormDo.js │ │ │ │ ├── ColumnFormDont.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── managing-child-objects │ │ │ │ ├── CollapsedStateAnatomy.js │ │ │ │ ├── CreateCluster.js │ │ │ │ ├── CreateRole.js │ │ │ │ ├── EditRole.js │ │ │ │ ├── ExpandedStateAnatomy.js │ │ │ │ └── index.js │ │ │ └── utils │ │ │ │ └── FormValidation.js │ │ ├── global-banner-notifications │ │ │ ├── BannerContentLayoutExample.js │ │ │ ├── BannerNotificationDiagram.js │ │ │ ├── Dos&Donts │ │ │ │ ├── BannerNotificationDoExample.js │ │ │ │ ├── BannerNotificationDontExample.js │ │ │ │ └── index.js │ │ │ ├── Examples │ │ │ │ ├── BannerNotificationCritical.js │ │ │ │ ├── BannerNotificationCriticalClose.js │ │ │ │ ├── BannerNotificationInfo.js │ │ │ │ ├── BannerNotificationWarning.js │ │ │ │ ├── BannerNotificationWarningClose.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── global-header │ │ │ ├── components │ │ │ │ ├── AppIdentity.js │ │ │ │ ├── GlobalHeader.js │ │ │ │ ├── GlobalHeaderExample.js │ │ │ │ ├── HeaderNav.js │ │ │ │ ├── MenuLayer.js │ │ │ │ ├── MockGlobalHeader.js │ │ │ │ ├── UserContext.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── hub-spoke-navigation │ │ │ ├── HubSpokeCardsExample.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── inline-notifications │ │ │ ├── InlineFormValidation.js │ │ │ ├── InlineNotificationAnatomy.js │ │ │ ├── InlineNotificationExample.js │ │ │ ├── PageBannerExample.js │ │ │ ├── PromotionExample.js │ │ │ ├── StatusUpdateExample.js │ │ │ └── index.js │ │ ├── list-views │ │ │ ├── ListIconIdentifierExample.js │ │ │ ├── ListImageIdentifierExample.js │ │ │ ├── ListNameDescriptionOptionExample.js │ │ │ ├── ListNameExample.js │ │ │ ├── ListNameOptionActionExample.js │ │ │ ├── ListOrderExample.js │ │ │ ├── ListScreenExample.js │ │ │ └── index.js │ │ ├── page-layouts │ │ │ ├── HeaderFooterExample.js │ │ │ ├── HeaderOnlyExample.js │ │ │ ├── PageContainerInteractive.js │ │ │ ├── StickyHeaderExample.js │ │ │ ├── anatomy │ │ │ │ ├── AppAnatomy.js │ │ │ │ ├── PageAnatomy.js │ │ │ │ ├── PageContainerFull.js │ │ │ │ ├── PageContainerNarrow.js │ │ │ │ ├── PageContainerWide.js │ │ │ │ ├── PageMarginAnatomy.js │ │ │ │ ├── components │ │ │ │ │ ├── ContentArea.js │ │ │ │ │ ├── ContentLabel.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── components │ │ │ │ ├── AppContainer.js │ │ │ │ ├── PageContainer.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── popover │ │ │ ├── PopoverAnatomy.js │ │ │ ├── PopoverInlineExample.js │ │ │ ├── PopoverSimpleExample.js │ │ │ └── index.js │ │ ├── selector │ │ │ ├── QuickFilter.js │ │ │ ├── SelectorAnatomy.js │ │ │ ├── SelectorMutli.js │ │ │ ├── SelectorSimple.js │ │ │ ├── SelectorSingle.js │ │ │ ├── SupportSelector.js │ │ │ ├── TEMP.js │ │ │ └── index.js │ │ ├── table-customization │ │ │ ├── components │ │ │ │ ├── ColumnSettingsExample.js │ │ │ │ ├── TableCustomizationExample.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── toast-notifications │ │ │ ├── ToastDiagram.js │ │ │ ├── ToastNotificationExample.js │ │ │ ├── ToastNotificationPositionExample.js │ │ │ └── index.js │ │ └── wizard │ │ │ ├── TwoColumnWizardExample.js │ │ │ ├── WizardAnatomy.js │ │ │ ├── WizardValidationExample.js │ │ │ ├── components │ │ │ ├── CancellationLayer.js │ │ │ ├── Error.js │ │ │ ├── StepContent.js │ │ │ ├── StepFooter.js │ │ │ ├── StepHeader.js │ │ │ ├── WizardContext.js │ │ │ ├── WizardHeader.js │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── utils.js │ └── tokens │ │ ├── BetaNotification.js │ │ ├── ComponentStates.js │ │ ├── SpacingBestPractices.js │ │ ├── SpecialtyBackgrounds.js │ │ ├── StandardBackgrounds.js │ │ ├── StandardForegrounds.js │ │ ├── StrongBackgrounds.js │ │ ├── TokenHighlight.js │ │ ├── TokenTypes.js │ │ ├── element │ │ ├── ElementToken.js │ │ └── index.js │ │ └── index.js │ ├── layouts │ ├── content │ │ ├── AccessibilitySection.js │ │ ├── Annotation.js │ │ ├── ButtonRow.js │ │ ├── ColorRow.js │ │ ├── ContentPane.js │ │ ├── ContentSection.js │ │ ├── DocsPageHeader.js │ │ ├── Example │ │ │ ├── BestPracticeGroup.js │ │ │ ├── BrowserWrapper.js │ │ │ ├── Container.js │ │ │ ├── DiagramPreview.js │ │ │ ├── DoDontContainer.js │ │ │ ├── Example.js │ │ │ ├── ExampleControls.js │ │ │ ├── ExampleResources.js │ │ │ ├── FigureWrapper.js │ │ │ ├── HorizontalExample.js │ │ │ ├── ResponsiveContainer.js │ │ │ ├── ResponsiveControls.js │ │ │ └── index.js │ │ ├── FeedbackSection.js │ │ ├── Head.js │ │ ├── InPageNavigation.js │ │ ├── NotificationTag.js │ │ ├── PageIntro.js │ │ ├── RelatedContent.js │ │ ├── StyleTable.js │ │ ├── Subsection.js │ │ ├── SubsectionHeader.js │ │ ├── UpdateNotification.js │ │ ├── UsageExample.js │ │ ├── WCAGRuleDetail.js │ │ ├── WCAGRuleSummary.js │ │ └── index.js │ ├── index.js │ ├── main │ │ ├── Header.js │ │ ├── Layout.js │ │ ├── ThemeMode.js │ │ └── index.js │ └── navigation │ │ ├── Search.js │ │ ├── SearchInput.js │ │ ├── SearchResult.js │ │ ├── SearchResults.js │ │ └── index.js │ ├── page-objects │ └── components │ │ └── Navbar.js │ ├── pages │ ├── 404.js │ ├── _app.js │ ├── _document.js │ ├── components │ │ ├── accordion.mdx │ │ ├── all-components.mdx │ │ ├── anchor.mdx │ │ ├── avatar.mdx │ │ ├── box.mdx │ │ ├── button.mdx │ │ ├── card │ │ │ ├── call-to-action-card.mdx │ │ │ ├── index.mdx │ │ │ └── navigational-card.mdx │ │ ├── checkbox.mdx │ │ ├── checkboxgroup.mdx │ │ ├── data.mdx │ │ ├── datafilter.mdx │ │ ├── datafilters.mdx │ │ ├── datasearch.mdx │ │ ├── datasort.mdx │ │ ├── datasummary.mdx │ │ ├── datatable.mdx │ │ ├── datatablecolumns.mdx │ │ ├── datatablegroupby.mdx │ │ ├── dataview.mdx │ │ ├── dateinput.mdx │ │ ├── fileinput.mdx │ │ ├── footer.mdx │ │ ├── grid.mdx │ │ ├── header.mdx │ │ ├── index.js │ │ ├── layer │ │ │ ├── center-layer.mdx │ │ │ ├── fullscreen-layer.mdx │ │ │ ├── index.mdx │ │ │ └── side-drawer-layer.mdx │ │ ├── main.mdx │ │ ├── maskedinput.mdx │ │ ├── menu.mdx │ │ ├── namevaluelist.mdx │ │ ├── notification.mdx │ │ ├── page.mdx │ │ ├── pageheader.mdx │ │ ├── pagination.mdx │ │ ├── radiobuttongroup.mdx │ │ ├── rangeinput.mdx │ │ ├── search.mdx │ │ ├── select.mdx │ │ ├── selectmultiple.mdx │ │ ├── skeleton.mdx │ │ ├── spinner.mdx │ │ ├── tabs.mdx │ │ ├── tag.mdx │ │ ├── textarea.mdx │ │ ├── textinput.mdx │ │ ├── tip.mdx │ │ ├── togglegroup.mdx │ │ └── toolbar.mdx │ ├── design-tokens │ │ ├── all-design-tokens.js │ │ ├── color-usage.mdx │ │ ├── component-states.mdx │ │ ├── element.mdx │ │ ├── global.mdx │ │ ├── how-to-read-design-tokens.mdx │ │ ├── index.js │ │ ├── layout-and-spacing.mdx │ │ ├── overview.mdx │ │ ├── typography-system.mdx │ │ ├── using-design-tokens-in-code.mdx │ │ ├── using-design-tokens-in-figma.mdx │ │ └── versioning.mdx │ ├── feedback.js │ ├── foundation │ │ ├── accessibility-transcript-file.mdx │ │ ├── accessibility.mdx │ │ ├── background-colors-guidance.mdx │ │ ├── color-pairing.mdx │ │ ├── color.mdx │ │ ├── date-and-time.mdx │ │ ├── designer-guidance.mdx │ │ ├── developer-guidance.mdx │ │ ├── distinctive-brand-assets.mdx │ │ ├── human-centered.mdx │ │ ├── icons.mdx │ │ ├── index.js │ │ ├── our-brand.mdx │ │ ├── philosophy-and-principles.mdx │ │ ├── tshirt-sizing.mdx │ │ ├── typography.mdx │ │ └── voice-and-tone.mdx │ ├── index.js │ ├── learn │ │ ├── grid-fundamentals-part-one.mdx │ │ ├── how-to-add-additional-controls-to-a-toolbar.mdx │ │ ├── how-to-add-search-and-filter-to-datatable-with-data.mdx │ │ ├── index.js │ │ └── the-box-model-part-one.mdx │ ├── showmore.js │ ├── templates │ │ ├── ascending-navigation.mdx │ │ ├── code-blocks.mdx │ │ ├── content-layouts.mdx │ │ ├── dashboards.mdx │ │ ├── datatable-customization.mdx │ │ ├── drill-down-navigation.mdx │ │ ├── empty-state.mdx │ │ ├── filtering.mdx │ │ ├── forms │ │ │ ├── index.mdx │ │ │ └── managing-child-objects.mdx │ │ ├── global-header.mdx │ │ ├── global-notifications.mdx │ │ ├── index.js │ │ ├── inline-notifications.mdx │ │ ├── internationalization.mdx │ │ ├── lists.mdx │ │ ├── matrix-navigation.mdx │ │ ├── navigation.mdx │ │ ├── page-layouts.mdx │ │ ├── popover.mdx │ │ ├── scrolling-and-pagination.mdx │ │ ├── selector.mdx │ │ ├── side-to-side-navigation.mdx │ │ ├── status-indicator.mdx │ │ ├── toast-notifications.mdx │ │ ├── user-feedback-collection.mdx │ │ └── wizard.mdx │ └── whats-new.mdx │ ├── scripts │ └── site-contents.mjs │ ├── tests │ ├── accessibility │ │ ├── README.md │ │ └── axe.js │ ├── navigation │ │ ├── README.md │ │ ├── deeplinks.js │ │ ├── homepage.js │ │ ├── navpage.js │ │ ├── search.js │ │ └── topic.js │ └── utils.js │ ├── themes │ ├── aries.js │ └── scaled.js │ └── utils │ ├── analytics.js │ ├── createGlobalState.js │ ├── createPersistedState.js │ ├── createStorage.js │ ├── diagram.js │ ├── hooks │ ├── index.js │ ├── useDarkMode.js │ ├── useEventListener.js │ └── usePersistedState.js │ ├── index.js │ ├── initialize.js │ ├── pageVisitTracker.js │ └── search.js ├── budget.json ├── design-tokens-manager ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public │ └── _redirects ├── src │ ├── App.jsx │ ├── build-token-tree.js │ ├── components │ │ ├── ContentPane.jsx │ │ ├── CopyButton.jsx │ │ ├── EmptyState.jsx │ │ ├── Header.tsx │ │ ├── index.js │ │ └── utils │ │ │ └── animations.js │ ├── main.jsx │ ├── routes │ │ ├── Builder.jsx │ │ ├── Docs.jsx │ │ ├── Scaler │ │ │ ├── ControlPane.jsx │ │ │ ├── Results.jsx │ │ │ ├── components │ │ │ │ ├── ScaleLayout.jsx │ │ │ │ ├── ScaleToolbar.jsx │ │ │ │ ├── ScaleValue.jsx │ │ │ │ ├── SpacingValues.jsx │ │ │ │ └── index.js │ │ │ ├── index.jsx │ │ │ └── utils.js │ │ └── Visualizer.jsx │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── design-tokens ├── .babelrc ├── CHANGELOG.md ├── COPYRIGHT.md ├── LICENSE ├── README.md ├── package.json ├── src │ ├── HPEStyleDictionary.ts │ ├── color.ts │ ├── figma_api.ts │ ├── formats │ │ ├── commonJs.ts │ │ ├── commonJsGrommetRefs.ts │ │ ├── cssBreakpoints.ts │ │ ├── cssColorModes.ts │ │ ├── esmGrommetRefs.ts │ │ ├── index.ts │ │ ├── javascriptEsm.ts │ │ ├── jsonFlat.ts │ │ └── utils │ │ │ ├── getGrommetValue.ts │ │ │ └── jsonToNestedValue.ts │ ├── scripts │ │ ├── build-style-dictionary.js │ │ ├── release-stable.js │ │ ├── sync_figma_to_tokens.ts │ │ ├── sync_tokens_to_figma.ts │ │ ├── update-paddingY.ts │ │ └── verify-paddingY.ts │ ├── tests │ │ ├── build.test.ts │ │ ├── color.test.ts │ │ ├── token_export.test.ts │ │ ├── token_import.test.ts │ │ └── tokens │ │ │ ├── collection.mode.json │ │ │ ├── color.dark.json │ │ │ ├── color.light.json │ │ │ ├── dimension.default.json │ │ │ └── dimension.small.json │ ├── token_export.ts │ ├── token_import.ts │ ├── token_types.ts │ ├── transforms │ │ ├── colorNameJs.ts │ │ ├── cssW3c.ts │ │ ├── index.ts │ │ ├── javascriptCss.ts │ │ ├── javascriptW3c.ts │ │ ├── linearGradientCss.ts │ │ ├── nameCss.ts │ │ ├── numberToDimension.ts │ │ ├── shadowCss.ts │ │ └── valueToCssVar.ts │ ├── types │ │ ├── esm │ │ │ └── index.d.ts │ │ └── grommet │ │ │ └── index.d.ts │ └── utils.ts ├── tokens │ ├── component │ │ ├── component.default.json │ │ ├── component.v0.json │ │ ├── component.v1.json │ │ └── element.default.json │ ├── primitive │ │ ├── primitives.default.json │ │ ├── primitives.v0.json │ │ └── primitives.v1.json │ └── semantic │ │ ├── color.dark.json │ │ ├── color.light.json │ │ ├── color.v0-dark.json │ │ ├── color.v0-light.json │ │ ├── color.v1-dark.json │ │ ├── color.v1-light.json │ │ ├── dimension.default.json │ │ ├── dimension.small.json │ │ ├── dimension.v0-default.json │ │ ├── dimension.v0-small.json │ │ ├── dimension.v1-default.json │ │ ├── dimension.v1-small.json │ │ └── global.default.json ├── tsconfig.json └── yarn.lock ├── netlify.toml ├── package.json ├── packages ├── codemods │ ├── CHANGELOG.md │ ├── COPYRIGHT.md │ ├── DOCUMENTATION.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── migrate-grommet-icons-to-hpe.test.js │ │ └── migrate-theme-v6-to-v7.test.js │ ├── bin │ │ └── cli.js │ ├── migration_guides │ │ ├── GROMMET_ICONS_TO_HPE.md │ │ └── MIGRATE_THEME_V6_TO_V7.md │ ├── package.json │ ├── transforms │ │ ├── migrate-grommet-icons-to-hpe.js │ │ └── migrate-theme-v6-to-v7.js │ └── yarn.lock └── icons │ ├── core │ ├── .gitignore │ ├── COPYRIGHT.md │ ├── LICENSE │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── icons │ │ │ ├── AI-gen-fill.svg │ │ │ ├── AI-gen.svg │ │ │ ├── AI-systems.svg │ │ │ ├── accessibility.svg │ │ │ ├── achievement.svg │ │ │ ├── actions.svg │ │ │ ├── ad.svg │ │ │ ├── add.svg │ │ │ ├── aed.svg │ │ │ ├── aggregate.svg │ │ │ ├── aid.svg │ │ │ ├── alarm.svg │ │ │ ├── alert.svg │ │ │ ├── analytics.svg │ │ │ ├── anchor.svg │ │ │ ├── announce.svg │ │ │ ├── app.svg │ │ │ ├── apps.svg │ │ │ ├── archive.svg │ │ │ ├── article.svg │ │ │ ├── ascend.svg │ │ │ ├── ascending.svg │ │ │ ├── assist-listening.svg │ │ │ ├── atm.svg │ │ │ ├── attachment.svg │ │ │ ├── attraction.svg │ │ │ ├── baby.svg │ │ │ ├── back-ten.svg │ │ │ ├── bar.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery.svg │ │ │ ├── beacon.svg │ │ │ ├── bike.svg │ │ │ ├── blades-horizontal.svg │ │ │ ├── blades-vertical.svg │ │ │ ├── blog.svg │ │ │ ├── bluetooth.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── braille.svg │ │ │ ├── briefcase.svg │ │ │ ├── brush.svg │ │ │ ├── bucket.svg │ │ │ ├── bug.svg │ │ │ ├── bulb.svg │ │ │ ├── bundle.svg │ │ │ ├── bus.svg │ │ │ ├── business-service.svg │ │ │ ├── cafeteria.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── car.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-up.svg │ │ │ ├── cart.svg │ │ │ ├── catalog.svg │ │ │ ├── certificate.svg │ │ │ ├── channel.svg │ │ │ ├── chapter-add.svg │ │ │ ├── chapter-next.svg │ │ │ ├── chapter-previous.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chat-conversation.svg │ │ │ ├── chat.svg │ │ │ ├── checkmark.svg │ │ │ ├── circle-empty.svg │ │ │ ├── circle-fill.svg │ │ │ ├── clear.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── close.svg │ │ │ ├── closed-caption.svg │ │ │ ├── cloud-add.svg │ │ │ ├── cloud-computer.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-locked.svg │ │ │ ├── cloud-offline.svg │ │ │ ├── cloud-software.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── cluster.svg │ │ │ ├── coat-check.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── columns.svg │ │ │ ├── command.svg │ │ │ ├── compare.svg │ │ │ ├── compass.svg │ │ │ ├── compliance.svg │ │ │ ├── configure.svg │ │ │ ├── connect.svg │ │ │ ├── connectivity.svg │ │ │ ├── console.svg │ │ │ ├── contact.svg │ │ │ ├── contract.svg │ │ │ ├── copy.svg │ │ │ ├── cpu.svg │ │ │ ├── credit-card.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── currency.svg │ │ │ ├── cursor.svg │ │ │ ├── cut.svg │ │ │ ├── cycle.svg │ │ │ ├── dashboard.svg │ │ │ ├── database.svg │ │ │ ├── deliver.svg │ │ │ ├── deploy.svg │ │ │ ├── descend.svg │ │ │ ├── descending.svg │ │ │ ├── desktop.svg │ │ │ ├── detach.svg │ │ │ ├── device.svg │ │ │ ├── dial.svg │ │ │ ├── diamond.svg │ │ │ ├── directions.svg │ │ │ ├── disc.svg │ │ │ ├── dislike-fill.svg │ │ │ ├── dislike.svg │ │ │ ├── document-cloud.svg │ │ │ ├── document-config.svg │ │ │ ├── document-csv.svg │ │ │ ├── document-download.svg │ │ │ ├── document-excel.svg │ │ │ ├── document-image.svg │ │ │ ├── document-locked.svg │ │ │ ├── document-missing.svg │ │ │ ├── document-notes.svg │ │ │ ├── document-outlook.svg │ │ │ ├── document-pdf.svg │ │ │ ├── document-performance.svg │ │ │ ├── document-ppt.svg │ │ │ ├── document-rtf.svg │ │ │ ├── document-sound.svg │ │ │ ├── document-store.svg │ │ │ ├── document-test.svg │ │ │ ├── document-text.svg │ │ │ ├── document-threat.svg │ │ │ ├── document-time.svg │ │ │ ├── document-transfer.svg │ │ │ ├── document-txt.svg │ │ │ ├── document-update.svg │ │ │ ├── document-upload.svg │ │ │ ├── document-user.svg │ │ │ ├── document-verified.svg │ │ │ ├── document-video.svg │ │ │ ├── document-warning.svg │ │ │ ├── document-windows.svg │ │ │ ├── document-word.svg │ │ │ ├── document-zip.svg │ │ │ ├── document.svg │ │ │ ├── domain.svg │ │ │ ├── down.svg │ │ │ ├── download.svg │ │ │ ├── drag.svg │ │ │ ├── drive-cage.svg │ │ │ ├── duplicate.svg │ │ │ ├── edit.svg │ │ │ ├── eject.svg │ │ │ ├── element.svg │ │ │ ├── elevator.svg │ │ │ ├── emergency-fill.svg │ │ │ ├── emergency.svg │ │ │ ├── erase.svg │ │ │ ├── escalator.svg │ │ │ ├── expand.svg │ │ │ ├── fan.svg │ │ │ ├── fast-forward.svg │ │ │ ├── favorite.svg │ │ │ ├── filter.svg │ │ │ ├── finger-print.svg │ │ │ ├── firewall.svg │ │ │ ├── five-g.svg │ │ │ ├── flag.svg │ │ │ ├── flows.svg │ │ │ ├── focus.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-cycle.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-search.svg │ │ │ ├── folder.svg │ │ │ ├── forward-ten.svg │ │ │ ├── gallery.svg │ │ │ ├── gamepad.svg │ │ │ ├── gateway.svg │ │ │ ├── gem.svg │ │ │ ├── gift.svg │ │ │ ├── globe.svg │ │ │ ├── gpu.svg │ │ │ ├── grid.svg │ │ │ ├── group.svg │ │ │ ├── grow.svg │ │ │ ├── halt.svg │ │ │ ├── help-book.svg │ │ │ ├── help.svg │ │ │ ├── hide.svg │ │ │ ├── history.svg │ │ │ ├── home.svg │ │ │ ├── host-maintenance.svg │ │ │ ├── host.svg │ │ │ ├── ice-cream.svg │ │ │ ├── image.svg │ │ │ ├── impact.svg │ │ │ ├── in-progress.svg │ │ │ ├── inbox.svg │ │ │ ├── info.svg │ │ │ ├── inherit.svg │ │ │ ├── insecure.svg │ │ │ ├── inspect.svg │ │ │ ├── install.svg │ │ │ ├── integration.svg │ │ │ ├── iteration.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── language.svg │ │ │ ├── layer.svg │ │ │ ├── left.svg │ │ │ ├── like-fill.svg │ │ │ ├── like.svg │ │ │ ├── link-bottom.svg │ │ │ ├── link-next.svg │ │ │ ├── link-prev.svg │ │ │ ├── link-top.svg │ │ │ ├── link.svg │ │ │ ├── list-ordered.svg │ │ │ ├── list-unordered.svg │ │ │ ├── list.svg │ │ │ ├── local.svg │ │ │ ├── location-pin.svg │ │ │ ├── location.svg │ │ │ ├── lock.svg │ │ │ ├── lodging.svg │ │ │ ├── login.svg │ │ │ ├── logout.svg │ │ │ ├── lounge.svg │ │ │ ├── magic.svg │ │ │ ├── mail.svg │ │ │ ├── manual.svg │ │ │ ├── map-add.svg │ │ │ ├── map.svg │ │ │ ├── meeting.svg │ │ │ ├── memory.svg │ │ │ ├── menu.svg │ │ │ ├── microphone.svg │ │ │ ├── mode.svg │ │ │ ├── money.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ ├── more-vertical.svg │ │ │ ├── more.svg │ │ │ ├── mouse.svg │ │ │ ├── multimedia.svg │ │ │ ├── multiple.svg │ │ │ ├── music.svg │ │ │ ├── navigate.svg │ │ │ ├── network-drive.svg │ │ │ ├── network-switch.svg │ │ │ ├── network.svg │ │ │ ├── new-window.svg │ │ │ ├── new.svg │ │ │ ├── nodes.svg │ │ │ ├── note.svg │ │ │ ├── notes.svg │ │ │ ├── notification.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── offline-storage.svg │ │ │ ├── optimize.svg │ │ │ ├── organization.svg │ │ │ ├── overview.svg │ │ │ ├── package.svg │ │ │ ├── paint.svg │ │ │ ├── pan.svg │ │ │ ├── pause-fill.svg │ │ │ ├── pause.svg │ │ │ ├── performance.svg │ │ │ ├── personal-computer.svg │ │ │ ├── phone-flip.svg │ │ │ ├── phone-horizontal.svg │ │ │ ├── phone-vertical.svg │ │ │ ├── phone.svg │ │ │ ├── pin.svg │ │ │ ├── play-fill.svg │ │ │ ├── play.svg │ │ │ ├── power-cycle.svg │ │ │ ├── power-force-shutdown.svg │ │ │ ├── power-reset.svg │ │ │ ├── power.svg │ │ │ ├── print.svg │ │ │ ├── progress.svg │ │ │ ├── projects.svg │ │ │ ├── qr.svg │ │ │ ├── redo.svg │ │ │ ├── refresh.svg │ │ │ ├── resources.svg │ │ │ ├── restaurant.svg │ │ │ ├── restroom-men.svg │ │ │ ├── restroom-unisex.svg │ │ │ ├── restroom-women.svg │ │ │ ├── restroom.svg │ │ │ ├── resume.svg │ │ │ ├── return.svg │ │ │ ├── revert.svg │ │ │ ├── rewind.svg │ │ │ ├── right.svg │ │ │ ├── risk.svg │ │ │ ├── robot.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right.svg │ │ │ ├── rss.svg │ │ │ ├── run.svg │ │ │ ├── sans.svg │ │ │ ├── satellite.svg │ │ │ ├── save.svg │ │ │ ├── scan.svg │ │ │ ├── scorecard.svg │ │ │ ├── script.svg │ │ │ ├── sd.svg │ │ │ ├── search-advanced.svg │ │ │ ├── search.svg │ │ │ ├── secure.svg │ │ │ ├── select.svg │ │ │ ├── selection.svg │ │ │ ├── semantics.svg │ │ │ ├── send.svg │ │ │ ├── sensor-locked.svg │ │ │ ├── sensor-off.svg │ │ │ ├── sensor.svg │ │ │ ├── server-cluster.svg │ │ │ ├── server.svg │ │ │ ├── servers.svg │ │ │ ├── service-play.svg │ │ │ ├── services.svg │ │ │ ├── settings.svg │ │ │ ├── share.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-emergency.svg │ │ │ ├── shield-security.svg │ │ │ ├── shield-unsecure.svg │ │ │ ├── shield.svg │ │ │ ├── shift.svg │ │ │ ├── shop.svg │ │ │ ├── sidebar.svg │ │ │ ├── sign.svg │ │ │ ├── spa.svg │ │ │ ├── split.svg │ │ │ ├── splits.svg │ │ │ ├── stakeholder.svg │ │ │ ├── star-fill.svg │ │ │ ├── star-half-fill.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── status-critical.svg │ │ │ ├── status-disabled.svg │ │ │ ├── status-good.svg │ │ │ ├── status-info.svg │ │ │ ├── status-unknown.svg │ │ │ ├── status-warning.svg │ │ │ ├── steps.svg │ │ │ ├── stop-fill.svg │ │ │ ├── stop.svg │ │ │ ├── storage.svg │ │ │ ├── street-view.svg │ │ │ ├── subtract.svg │ │ │ ├── sun.svg │ │ │ ├── support.svg │ │ │ ├── swim.svg │ │ │ ├── switch.svg │ │ │ ├── sync.svg │ │ │ ├── system.svg │ │ │ ├── table-add-column.svg │ │ │ ├── table-add.svg │ │ │ ├── table-search.svg │ │ │ ├── table.svg │ │ │ ├── tag.svg │ │ │ ├── tape.svg │ │ │ ├── target.svg │ │ │ ├── task.svg │ │ │ ├── technology.svg │ │ │ ├── temperature.svg │ │ │ ├── template.svg │ │ │ ├── test-desktop.svg │ │ │ ├── test.svg │ │ │ ├── text-wrap.svg │ │ │ ├── theme.svg │ │ │ ├── threats.svg │ │ │ ├── three-d-effects.svg │ │ │ ├── three-d.svg │ │ │ ├── ticket.svg │ │ │ ├── time.svg │ │ │ ├── tools.svg │ │ │ ├── tooltip.svg │ │ │ ├── train.svg │ │ │ ├── transaction.svg │ │ │ ├── trash.svg │ │ │ ├── tree-node.svg │ │ │ ├── tree.svg │ │ │ ├── trigger.svg │ │ │ ├── trophy.svg │ │ │ ├── tty.svg │ │ │ ├── undo.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock.svg │ │ │ ├── unsorted.svg │ │ │ ├── up.svg │ │ │ ├── update.svg │ │ │ ├── upgrade.svg │ │ │ ├── upload.svg │ │ │ ├── usb-key.svg │ │ │ ├── user-add.svg │ │ │ ├── user-admin.svg │ │ │ ├── user-expert.svg │ │ │ ├── user-female.svg │ │ │ ├── user-manager.svg │ │ │ ├── user-new.svg │ │ │ ├── user-police.svg │ │ │ ├── user-settings.svg │ │ │ ├── user-worker.svg │ │ │ ├── user.svg │ │ │ ├── validate.svg │ │ │ ├── vend.svg │ │ │ ├── video.svg │ │ │ ├── view.svg │ │ │ ├── virtual-machine.svg │ │ │ ├── virtual-storage.svg │ │ │ ├── vm-maintenance.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume.svg │ │ │ ├── vulnerability.svg │ │ │ ├── waypoint.svg │ │ │ ├── webcam.svg │ │ │ ├── wheelchair-active.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi-locked.svg │ │ │ ├── wifi-low.svg │ │ │ ├── wifi-medium.svg │ │ │ ├── wifi-none.svg │ │ │ ├── wifi-off.svg │ │ │ ├── wifi.svg │ │ │ ├── workshop.svg │ │ │ ├── yoga.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ └── index.ts │ ├── tsconfig.json │ ├── vite.config.ts │ └── yarn.lock │ └── grommet │ ├── .gitignore │ ├── .storybook │ ├── main.ts │ └── preview.tsx │ ├── BUNDLE_SIZE_OPTIMIZATION.md │ ├── COPYRIGHT.md │ ├── LICENSE │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── src │ └── js │ │ ├── StyledIcon.d.ts │ │ ├── StyledIcon.jsx │ │ ├── default-props.js │ │ ├── icon.stories.tsx │ │ ├── icons │ │ ├── AIGen.jsx │ │ ├── AIGenFill.jsx │ │ ├── AISystems.jsx │ │ ├── Accessibility.jsx │ │ ├── Achievement.jsx │ │ ├── Actions.jsx │ │ ├── Ad.jsx │ │ ├── Add.jsx │ │ ├── Aed.jsx │ │ ├── Aggregate.jsx │ │ ├── Aid.jsx │ │ ├── Alarm.jsx │ │ ├── Alert.jsx │ │ ├── Analytics.jsx │ │ ├── Anchor.jsx │ │ ├── Announce.jsx │ │ ├── App.jsx │ │ ├── Apps.jsx │ │ ├── Archive.jsx │ │ ├── Article.jsx │ │ ├── Ascend.jsx │ │ ├── Ascending.jsx │ │ ├── AssistListening.jsx │ │ ├── Atm.jsx │ │ ├── Attachment.jsx │ │ ├── Attraction.jsx │ │ ├── Baby.jsx │ │ ├── BackTen.jsx │ │ ├── Bar.jsx │ │ ├── Battery.jsx │ │ ├── BatteryEmpty.jsx │ │ ├── BatteryFull.jsx │ │ ├── BatteryLow.jsx │ │ ├── Beacon.jsx │ │ ├── Bike.jsx │ │ ├── BladesHorizontal.jsx │ │ ├── BladesVertical.jsx │ │ ├── Blank.jsx │ │ ├── Blog.jsx │ │ ├── Bluetooth.jsx │ │ ├── Book.jsx │ │ ├── Bookmark.jsx │ │ ├── Braille.jsx │ │ ├── Briefcase.jsx │ │ ├── Brush.jsx │ │ ├── Bucket.jsx │ │ ├── Bug.jsx │ │ ├── Bulb.jsx │ │ ├── Bundle.jsx │ │ ├── Bus.jsx │ │ ├── BusinessService.jsx │ │ ├── Cafeteria.jsx │ │ ├── Calculator.jsx │ │ ├── Calendar.jsx │ │ ├── Camera.jsx │ │ ├── Car.jsx │ │ ├── CaretDown.jsx │ │ ├── CaretLeft.jsx │ │ ├── CaretRight.jsx │ │ ├── CaretUp.jsx │ │ ├── Cart.jsx │ │ ├── Catalog.jsx │ │ ├── Certificate.jsx │ │ ├── Channel.jsx │ │ ├── ChapterAdd.jsx │ │ ├── ChapterNext.jsx │ │ ├── ChapterPrevious.jsx │ │ ├── ChartBar.jsx │ │ ├── ChartLine.jsx │ │ ├── ChartPie.jsx │ │ ├── Chat.jsx │ │ ├── ChatConversation.jsx │ │ ├── Checkmark.jsx │ │ ├── CircleEmpty.jsx │ │ ├── CircleFill.jsx │ │ ├── Clear.jsx │ │ ├── Clipboard.jsx │ │ ├── Clock.jsx │ │ ├── Clone.jsx │ │ ├── Close.jsx │ │ ├── ClosedCaption.jsx │ │ ├── Cloud.jsx │ │ ├── CloudAdd.jsx │ │ ├── CloudComputer.jsx │ │ ├── CloudDownload.jsx │ │ ├── CloudLocked.jsx │ │ ├── CloudOffline.jsx │ │ ├── CloudSoftware.jsx │ │ ├── CloudUpload.jsx │ │ ├── Cluster.jsx │ │ ├── CoatCheck.jsx │ │ ├── Code.jsx │ │ ├── Coffee.jsx │ │ ├── Columns.jsx │ │ ├── Command.jsx │ │ ├── Compare.jsx │ │ ├── Compass.jsx │ │ ├── Compliance.jsx │ │ ├── Configure.jsx │ │ ├── Connect.jsx │ │ ├── Connectivity.jsx │ │ ├── Console.jsx │ │ ├── Contact.jsx │ │ ├── Contract.jsx │ │ ├── Copy.jsx │ │ ├── Cpu.jsx │ │ ├── CreditCard.jsx │ │ ├── Cube.jsx │ │ ├── Cubes.jsx │ │ ├── Currency.jsx │ │ ├── Cursor.jsx │ │ ├── Cut.jsx │ │ ├── Cycle.jsx │ │ ├── Dashboard.jsx │ │ ├── Database.jsx │ │ ├── Deliver.jsx │ │ ├── Deploy.jsx │ │ ├── Descend.jsx │ │ ├── Descending.jsx │ │ ├── Desktop.jsx │ │ ├── Detach.jsx │ │ ├── Device.jsx │ │ ├── Dial.jsx │ │ ├── Diamond.jsx │ │ ├── Directions.jsx │ │ ├── Disc.jsx │ │ ├── Dislike.jsx │ │ ├── DislikeFill.jsx │ │ ├── Document.jsx │ │ ├── DocumentCloud.jsx │ │ ├── DocumentConfig.jsx │ │ ├── DocumentCsv.jsx │ │ ├── DocumentDownload.jsx │ │ ├── DocumentExcel.jsx │ │ ├── DocumentImage.jsx │ │ ├── DocumentLocked.jsx │ │ ├── DocumentMissing.jsx │ │ ├── DocumentNotes.jsx │ │ ├── DocumentOutlook.jsx │ │ ├── DocumentPdf.jsx │ │ ├── DocumentPerformance.jsx │ │ ├── DocumentPpt.jsx │ │ ├── DocumentRtf.jsx │ │ ├── DocumentSound.jsx │ │ ├── DocumentStore.jsx │ │ ├── DocumentTest.jsx │ │ ├── DocumentText.jsx │ │ ├── DocumentThreat.jsx │ │ ├── DocumentTime.jsx │ │ ├── DocumentTransfer.jsx │ │ ├── DocumentTxt.jsx │ │ ├── DocumentUpdate.jsx │ │ ├── DocumentUpload.jsx │ │ ├── DocumentUser.jsx │ │ ├── DocumentVerified.jsx │ │ ├── DocumentVideo.jsx │ │ ├── DocumentWarning.jsx │ │ ├── DocumentWindows.jsx │ │ ├── DocumentWord.jsx │ │ ├── DocumentZip.jsx │ │ ├── Domain.jsx │ │ ├── Down.jsx │ │ ├── Download.jsx │ │ ├── Drag.jsx │ │ ├── DriveCage.jsx │ │ ├── Duplicate.jsx │ │ ├── Edit.jsx │ │ ├── Eject.jsx │ │ ├── Element.jsx │ │ ├── Elevator.jsx │ │ ├── Emergency.jsx │ │ ├── EmergencyFill.jsx │ │ ├── Erase.jsx │ │ ├── Escalator.jsx │ │ ├── Expand.jsx │ │ ├── Fan.jsx │ │ ├── FastForward.jsx │ │ ├── Favorite.jsx │ │ ├── Filter.jsx │ │ ├── FingerPrint.jsx │ │ ├── Firewall.jsx │ │ ├── FiveG.jsx │ │ ├── Flag.jsx │ │ ├── Flows.jsx │ │ ├── Focus.jsx │ │ ├── Folder.jsx │ │ ├── FolderAdd.jsx │ │ ├── FolderCycle.jsx │ │ ├── FolderOpen.jsx │ │ ├── FolderSearch.jsx │ │ ├── ForwardTen.jsx │ │ ├── Gallery.jsx │ │ ├── Gamepad.jsx │ │ ├── Gateway.jsx │ │ ├── Gem.jsx │ │ ├── Gift.jsx │ │ ├── Globe.jsx │ │ ├── Gpu.jsx │ │ ├── Grid.jsx │ │ ├── Group.jsx │ │ ├── Grow.jsx │ │ ├── Halt.jsx │ │ ├── Help.jsx │ │ ├── HelpBook.jsx │ │ ├── Hide.jsx │ │ ├── History.jsx │ │ ├── Home.jsx │ │ ├── Host.jsx │ │ ├── HostMaintenance.jsx │ │ ├── IceCream.jsx │ │ ├── Image.jsx │ │ ├── Impact.jsx │ │ ├── InProgress.jsx │ │ ├── Inbox.jsx │ │ ├── Info.jsx │ │ ├── Inherit.jsx │ │ ├── Insecure.jsx │ │ ├── Inspect.jsx │ │ ├── Install.jsx │ │ ├── Integration.jsx │ │ ├── Iteration.jsx │ │ ├── Key.jsx │ │ ├── Keyboard.jsx │ │ ├── Language.jsx │ │ ├── Layer.jsx │ │ ├── Left.jsx │ │ ├── Like.jsx │ │ ├── LikeFill.jsx │ │ ├── Link.jsx │ │ ├── LinkBottom.jsx │ │ ├── LinkNext.jsx │ │ ├── LinkPrev.jsx │ │ ├── LinkTop.jsx │ │ ├── List.jsx │ │ ├── ListOrdered.jsx │ │ ├── ListUnordered.jsx │ │ ├── Local.jsx │ │ ├── Location.jsx │ │ ├── LocationPin.jsx │ │ ├── Lock.jsx │ │ ├── Lodging.jsx │ │ ├── Login.jsx │ │ ├── Logout.jsx │ │ ├── Lounge.jsx │ │ ├── Magic.jsx │ │ ├── Mail.jsx │ │ ├── Manual.jsx │ │ ├── Map.jsx │ │ ├── MapAdd.jsx │ │ ├── Meeting.jsx │ │ ├── Memory.jsx │ │ ├── Menu.jsx │ │ ├── Microphone.jsx │ │ ├── Mode.jsx │ │ ├── Money.jsx │ │ ├── Monitor.jsx │ │ ├── Moon.jsx │ │ ├── More.jsx │ │ ├── MoreVertical.jsx │ │ ├── Mouse.jsx │ │ ├── Multimedia.jsx │ │ ├── Multiple.jsx │ │ ├── Music.jsx │ │ ├── Navigate.jsx │ │ ├── Network.jsx │ │ ├── NetworkDrive.jsx │ │ ├── NetworkSwitch.jsx │ │ ├── New.jsx │ │ ├── NewWindow.jsx │ │ ├── Nodes.jsx │ │ ├── Note.jsx │ │ ├── Notes.jsx │ │ ├── Notification.jsx │ │ ├── ObjectGroup.jsx │ │ ├── ObjectUngroup.jsx │ │ ├── OfflineStorage.jsx │ │ ├── Optimize.jsx │ │ ├── Organization.jsx │ │ ├── Overview.jsx │ │ ├── Package.jsx │ │ ├── Paint.jsx │ │ ├── Pan.jsx │ │ ├── Pause.jsx │ │ ├── PauseFill.jsx │ │ ├── Performance.jsx │ │ ├── PersonalComputer.jsx │ │ ├── Phone.jsx │ │ ├── PhoneFlip.jsx │ │ ├── PhoneHorizontal.jsx │ │ ├── PhoneVertical.jsx │ │ ├── Pin.jsx │ │ ├── Play.jsx │ │ ├── PlayFill.jsx │ │ ├── Power.jsx │ │ ├── PowerCycle.jsx │ │ ├── PowerForceShutdown.jsx │ │ ├── PowerReset.jsx │ │ ├── Print.jsx │ │ ├── Progress.jsx │ │ ├── Projects.jsx │ │ ├── Qr.jsx │ │ ├── Redo.jsx │ │ ├── Refresh.jsx │ │ ├── Resources.jsx │ │ ├── Restaurant.jsx │ │ ├── Restroom.jsx │ │ ├── RestroomMen.jsx │ │ ├── RestroomUnisex.jsx │ │ ├── RestroomWomen.jsx │ │ ├── Resume.jsx │ │ ├── Return.jsx │ │ ├── Revert.jsx │ │ ├── Rewind.jsx │ │ ├── Right.jsx │ │ ├── Risk.jsx │ │ ├── Robot.jsx │ │ ├── RotateLeft.jsx │ │ ├── RotateRight.jsx │ │ ├── Rss.jsx │ │ ├── Run.jsx │ │ ├── SD.jsx │ │ ├── Sans.jsx │ │ ├── Satellite.jsx │ │ ├── Save.jsx │ │ ├── Scan.jsx │ │ ├── Scorecard.jsx │ │ ├── Script.jsx │ │ ├── Search.jsx │ │ ├── SearchAdvanced.jsx │ │ ├── Secure.jsx │ │ ├── Select.jsx │ │ ├── Selection.jsx │ │ ├── Semantics.jsx │ │ ├── Send.jsx │ │ ├── Sensor.jsx │ │ ├── SensorLocked.jsx │ │ ├── SensorOff.jsx │ │ ├── Server.jsx │ │ ├── ServerCluster.jsx │ │ ├── Servers.jsx │ │ ├── ServicePlay.jsx │ │ ├── Services.jsx │ │ ├── Settings.jsx │ │ ├── Share.jsx │ │ ├── Shield.jsx │ │ ├── ShieldCheck.jsx │ │ ├── ShieldEmergency.jsx │ │ ├── ShieldSecurity.jsx │ │ ├── ShieldUnsecure.jsx │ │ ├── Shift.jsx │ │ ├── Shop.jsx │ │ ├── Sidebar.jsx │ │ ├── Sign.jsx │ │ ├── Spa.jsx │ │ ├── Split.jsx │ │ ├── Splits.jsx │ │ ├── Stakeholder.jsx │ │ ├── Star.jsx │ │ ├── StarFill.jsx │ │ ├── StarHalf.jsx │ │ ├── StarHalfFill.jsx │ │ ├── StatusCritical.jsx │ │ ├── StatusDisabled.jsx │ │ ├── StatusGood.jsx │ │ ├── StatusInfo.jsx │ │ ├── StatusUnknown.jsx │ │ ├── StatusWarning.jsx │ │ ├── Steps.jsx │ │ ├── Stop.jsx │ │ ├── StopFill.jsx │ │ ├── Storage.jsx │ │ ├── StreetView.jsx │ │ ├── Subtract.jsx │ │ ├── Sun.jsx │ │ ├── Support.jsx │ │ ├── Swim.jsx │ │ ├── Switch.jsx │ │ ├── Sync.jsx │ │ ├── System.jsx │ │ ├── Table.jsx │ │ ├── TableAdd.jsx │ │ ├── TableAddColumn.jsx │ │ ├── TableSearch.jsx │ │ ├── Tag.jsx │ │ ├── Tape.jsx │ │ ├── Target.jsx │ │ ├── Task.jsx │ │ ├── Technology.jsx │ │ ├── Temperature.jsx │ │ ├── Template.jsx │ │ ├── Test.jsx │ │ ├── TestDesktop.jsx │ │ ├── TextWrap.jsx │ │ ├── Theme.jsx │ │ ├── Threats.jsx │ │ ├── ThreeD.jsx │ │ ├── ThreeDffects.jsx │ │ ├── Ticket.jsx │ │ ├── Time.jsx │ │ ├── Tools.jsx │ │ ├── Tooltip.jsx │ │ ├── Train.jsx │ │ ├── Transaction.jsx │ │ ├── Trash.jsx │ │ ├── Tree.jsx │ │ ├── TreeNode.jsx │ │ ├── Trigger.jsx │ │ ├── Trophy.jsx │ │ ├── Tty.jsx │ │ ├── Undo.jsx │ │ ├── Unlink.jsx │ │ ├── Unlock.jsx │ │ ├── Unsorted.jsx │ │ ├── Up.jsx │ │ ├── Update.jsx │ │ ├── Upgrade.jsx │ │ ├── Upload.jsx │ │ ├── UsbKey.jsx │ │ ├── User.jsx │ │ ├── UserAdd.jsx │ │ ├── UserAdmin.jsx │ │ ├── UserExpert.jsx │ │ ├── UserFemale.jsx │ │ ├── UserManager.jsx │ │ ├── UserNew.jsx │ │ ├── UserPolice.jsx │ │ ├── UserSettings.jsx │ │ ├── UserWorker.jsx │ │ ├── VMMaintenance.jsx │ │ ├── Validate.jsx │ │ ├── Vend.jsx │ │ ├── Video.jsx │ │ ├── View.jsx │ │ ├── VirtualMachine.jsx │ │ ├── VirtualStorage.jsx │ │ ├── Volume.jsx │ │ ├── VolumeLow.jsx │ │ ├── VolumeMute.jsx │ │ ├── Vulnerability.jsx │ │ ├── Waypoint.jsx │ │ ├── Webcam.jsx │ │ ├── Wheelchair.jsx │ │ ├── WheelchairActive.jsx │ │ ├── Wifi.jsx │ │ ├── WifiLocked.jsx │ │ ├── WifiLow.jsx │ │ ├── WifiMedium.jsx │ │ ├── WifiNone.jsx │ │ ├── WifiOff.jsx │ │ ├── Workshop.jsx │ │ ├── Yoga.jsx │ │ ├── ZoomIn.jsx │ │ ├── ZoomOut.jsx │ │ ├── index.d.ts │ │ └── index.js │ │ ├── index.ts │ │ ├── metadata.ts │ │ ├── themes │ │ ├── base.ts │ │ └── index.ts │ │ └── utils.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ └── yarn.lock ├── sandbox ├── grommet-app │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── hpe-grnlk-pos-rgb.svg │ │ ├── hpe-grnlk-rev-rgb.svg │ │ ├── hpe_greenlake_grn_pos_rgb.svg │ │ └── hpe_greenlake_grn_rev_rgb.svg │ ├── src │ │ ├── App.jsx │ │ ├── Login.jsx │ │ ├── app.css │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── Card │ │ │ │ ├── Card.jsx │ │ │ │ └── index.js │ │ │ ├── Chat.tsx │ │ │ ├── CollapsibleMenu │ │ │ │ ├── CollapsibleMenu.tsx │ │ │ │ ├── ExpandableMenuItem.tsx │ │ │ │ ├── MenuItem.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── ContentContainer │ │ │ │ ├── ContentContainer.jsx │ │ │ │ └── index.js │ │ │ ├── ContentPane │ │ │ │ └── index.jsx │ │ │ ├── DashboardCard │ │ │ │ ├── DashboardCard.jsx │ │ │ │ └── index.js │ │ │ ├── EmptyState │ │ │ │ ├── EmptyState.tsx │ │ │ │ └── index.ts │ │ │ ├── FloatingActionButton │ │ │ │ ├── FloatingActionButton.jsx │ │ │ │ └── index.js │ │ │ ├── GlobalHeader │ │ │ │ ├── GlobalHeader.jsx │ │ │ │ └── index.js │ │ │ ├── HPEGreenLakeBadge.jsx │ │ │ ├── Legend │ │ │ │ ├── Legend.jsx │ │ │ │ └── index.js │ │ │ ├── Metric │ │ │ │ ├── Metric.jsx │ │ │ │ ├── index.js │ │ │ │ └── sizes.js │ │ │ ├── NavSidebar │ │ │ │ ├── NavSidebar.tsx │ │ │ │ └── index.ts │ │ │ ├── NotificationMetric │ │ │ │ ├── NotificationMetric.jsx │ │ │ │ └── index.js │ │ │ ├── PropertiesPane │ │ │ │ ├── PropertiesPane.tsx │ │ │ │ └── index.ts │ │ │ ├── RoutedAnchor │ │ │ │ ├── RoutedAnchor.tsx │ │ │ │ └── index.ts │ │ │ ├── Selector │ │ │ │ ├── Selector.jsx │ │ │ │ ├── SelectorGroup.jsx │ │ │ │ ├── SelectorGroupContext.jsx │ │ │ │ ├── SelectorHeader.jsx │ │ │ │ └── index.ts │ │ │ ├── SkeletonContext │ │ │ │ ├── SkeletonContext.js │ │ │ │ └── index.js │ │ │ ├── ToggleGroup │ │ │ │ ├── ToggleGroup.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── contexts │ │ │ ├── BackgroundContext.jsx │ │ │ ├── SupportingContext.jsx │ │ │ ├── WorkspaceContext.jsx │ │ │ └── index.js │ │ ├── icons │ │ │ ├── Comfortable.jsx │ │ │ ├── Compact.jsx │ │ │ ├── Spacious.jsx │ │ │ └── index.js │ │ ├── main.jsx │ │ ├── mockData │ │ │ ├── bareMetal.json │ │ │ ├── capacity.json │ │ │ ├── expenses.json │ │ │ ├── insights.json │ │ │ ├── notifications.json │ │ │ ├── opsRamp.json │ │ │ ├── services.json │ │ │ ├── sustainability.json │ │ │ └── virtualMachines.json │ │ ├── pages │ │ │ ├── BillingSummary.jsx │ │ │ ├── DeviceSummary.jsx │ │ │ ├── ExpiringSubscriptions.jsx │ │ │ ├── FeaturedServices.jsx │ │ │ ├── GetStarted.jsx │ │ │ ├── Learn.jsx │ │ │ ├── MonthlyCharges.jsx │ │ │ ├── MyServices.jsx │ │ │ ├── Notifications.jsx │ │ │ ├── QuickActions.jsx │ │ │ ├── RecentServices.jsx │ │ │ ├── Recommended.jsx │ │ │ ├── SustainabilityOverview.jsx │ │ │ ├── UserOverview.jsx │ │ │ ├── index.jsx │ │ │ ├── layouts │ │ │ │ ├── components │ │ │ │ │ ├── Region.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.tsx │ │ │ │ └── kinds │ │ │ │ │ ├── Collection │ │ │ │ │ ├── Collection.tsx │ │ │ │ │ ├── CollectionMenu.tsx │ │ │ │ │ ├── DataTableActions.tsx │ │ │ │ │ ├── DataView.tsx │ │ │ │ │ ├── PageActions.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tableColumns.tsx │ │ │ │ │ ├── DSCCSystemDetail │ │ │ │ │ ├── DSCCSystemDetail.tsx │ │ │ │ │ ├── DetailPane │ │ │ │ │ │ ├── Capacity.tsx │ │ │ │ │ │ ├── DetailPane.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── PerformanceSummary.tsx │ │ │ │ │ ├── PhysicalCapacity.tsx │ │ │ │ │ ├── PropertiesGeneral.tsx │ │ │ │ │ ├── PropertiesRelated.tsx │ │ │ │ │ ├── SystemSummary.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Dashboard │ │ │ │ │ ├── Costs.tsx │ │ │ │ │ ├── Dashboard.tsx │ │ │ │ │ ├── GreenLakeStatus.tsx │ │ │ │ │ ├── Monitoring.tsx │ │ │ │ │ ├── Networking.tsx │ │ │ │ │ ├── Storage.tsx │ │ │ │ │ ├── Tasks.tsx │ │ │ │ │ ├── Usage.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── Capacity.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── EmptyState │ │ │ │ │ ├── DataTableActions.tsx │ │ │ │ │ ├── EmptyState.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tableColumns.ts │ │ │ │ │ ├── Form │ │ │ │ │ ├── Form.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── NavigationalSidebar │ │ │ │ │ ├── NavigationalSidebar.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── navItems.tsx │ │ │ │ │ ├── OpsRampDetail │ │ │ │ │ ├── OpsRampDetail.tsx │ │ │ │ │ ├── OpsRampDetailTable.tsx │ │ │ │ │ ├── QuickFilters.tsx │ │ │ │ │ ├── ResourceAlerts.tsx │ │ │ │ │ ├── ResourceDetails.tsx │ │ │ │ │ ├── ResourceOverview.tsx │ │ │ │ │ ├── ResourceTraits.tsx │ │ │ │ │ ├── config.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── RecordDetail │ │ │ │ │ ├── DetailSummary.tsx │ │ │ │ │ ├── ILOSecurity.tsx │ │ │ │ │ ├── JobList.tsx │ │ │ │ │ ├── RecentActivity.tsx │ │ │ │ │ ├── RecordDetail.tsx │ │ │ │ │ ├── ScheduledActions.tsx │ │ │ │ │ ├── ScheduledJobs.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Results │ │ │ │ │ ├── AcccessPoints.tsx │ │ │ │ │ ├── Results.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ ├── refresh │ │ │ │ └── index.jsx │ │ │ ├── sticker-sheet │ │ │ │ ├── components │ │ │ │ │ ├── Compare.jsx │ │ │ │ │ ├── ModeContext.jsx │ │ │ │ │ ├── StyleInProgress.jsx │ │ │ │ │ ├── TabContent.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── content │ │ │ │ │ ├── Controls │ │ │ │ │ │ ├── Accordions.jsx │ │ │ │ │ │ ├── Buttons.jsx │ │ │ │ │ │ ├── Menus.jsx │ │ │ │ │ │ ├── Paginations.jsx │ │ │ │ │ │ ├── Tabs.jsx │ │ │ │ │ │ ├── ToggleGroups.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Inputs │ │ │ │ │ │ ├── CheckboxGroups.jsx │ │ │ │ │ │ ├── Checkboxes.jsx │ │ │ │ │ │ ├── DateInputs.jsx │ │ │ │ │ │ ├── FileInputs.jsx │ │ │ │ │ │ ├── RadioButtonGroups.jsx │ │ │ │ │ │ ├── RangeInputs.jsx │ │ │ │ │ │ ├── SelectMultiples.jsx │ │ │ │ │ │ ├── Selects.jsx │ │ │ │ │ │ ├── StarRatings.jsx │ │ │ │ │ │ ├── Switches.jsx │ │ │ │ │ │ ├── TextAreas.jsx │ │ │ │ │ │ ├── TextInputs.jsx │ │ │ │ │ │ ├── ThumbsRatings.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Layouts │ │ │ │ │ │ ├── ContentSizes.jsx │ │ │ │ │ │ ├── PageHeaders.jsx │ │ │ │ │ │ ├── Spacing.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Type │ │ │ │ │ │ ├── Anchors.jsx │ │ │ │ │ │ ├── Headings.jsx │ │ │ │ │ │ ├── Paragraphs.jsx │ │ │ │ │ │ ├── Tags.jsx │ │ │ │ │ │ ├── Texts.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Visualizations │ │ │ │ │ │ ├── DataTables.jsx │ │ │ │ │ │ ├── Icons.jsx │ │ │ │ │ │ ├── Meters.jsx │ │ │ │ │ │ ├── NameValueLists.jsx │ │ │ │ │ │ ├── Notifications.jsx │ │ │ │ │ │ ├── Spinners.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ └── index.jsx │ │ │ └── sustainability │ │ │ │ ├── Devices.jsx │ │ │ │ ├── SustainabilityInsights.jsx │ │ │ │ └── index.jsx │ │ ├── themes │ │ │ ├── theme-utils │ │ │ │ └── scale-to-theme.js │ │ │ └── theme.jsx │ │ └── utils │ │ │ ├── format.ts │ │ │ ├── skeleton.js │ │ │ └── status.tsx │ └── vite.config.js ├── native-web │ ├── .gitignore │ ├── components │ │ ├── common │ │ │ ├── DashboardCard.js │ │ │ ├── DemoCard.js │ │ │ ├── Legend.js │ │ │ ├── Metric.js │ │ │ ├── Notification.js │ │ │ ├── NotificationMetric.js │ │ │ ├── PageHeader.js │ │ │ └── index.js │ │ ├── dashboard │ │ │ ├── BillingSummary.js │ │ │ ├── DeviceSummary.js │ │ │ ├── ExpiringSubscriptions.js │ │ │ ├── Learn.js │ │ │ ├── MonthlyCharges.js │ │ │ ├── Notifications.js │ │ │ ├── QuickActions.js │ │ │ ├── RecentServices.js │ │ │ ├── Recommended.js │ │ │ ├── SustainabilityOverview.js │ │ │ ├── UserOverview.js │ │ │ └── index.js │ │ └── index.js │ ├── css │ │ ├── app.css │ │ ├── components.css │ │ ├── fonts.css │ │ └── utilities.css │ ├── icons │ │ ├── AppsRounded.js │ │ ├── Checkmark.js │ │ ├── HPEGreenLakeBadge.js │ │ ├── LinkNext.js │ │ ├── StatusCritical.js │ │ ├── StatusCriticalSmall.js │ │ ├── StatusInfo.js │ │ ├── StatusInfoSmall.js │ │ ├── StatusOk.js │ │ ├── StatusOkSmall.js │ │ ├── StatusWarning.js │ │ ├── StatusWarningSmall.js │ │ ├── Sun.js │ │ ├── User.js │ │ ├── UserAdd.js │ │ └── index.js │ ├── index.html │ ├── javascript.svg │ ├── main.js │ ├── mockData │ │ └── mockData.json │ ├── package.json │ ├── public │ │ └── _redirects │ └── utils.js └── tailwind-app │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── Button │ │ │ ├── Button.jsx │ │ │ └── index.js │ ├── fonts.css │ ├── index.css │ └── main.jsx │ ├── tailwind.config-full.js │ ├── tailwind.config.js │ └── vite.config.js ├── shared └── hooks │ ├── DOCUMENTATION.md │ ├── __tests__ │ └── useSessionStorage.test.ts │ ├── package.json │ ├── src │ ├── __tests__ │ │ └── setup.ts │ ├── index.ts │ └── useSessionStorage.ts │ ├── tsconfig.json │ └── vitest.config.ts └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/ISSUE_TEMPLATE/1.new.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/ISSUE_TEMPLATE/2.fix.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3.question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/ISSUE_TEMPLATE/3.question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/figma-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/ISSUE_TEMPLATE/figma-bug.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/PULL_REQUEST_TEMPLATE/default.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/doc-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/PULL_REQUEST_TEMPLATE/doc-content.md -------------------------------------------------------------------------------- /.github/workflows/codemod-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/workflows/codemod-test.yml -------------------------------------------------------------------------------- /.github/workflows/sync-figma-to-tokens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/workflows/sync-figma-to-tokens.yml -------------------------------------------------------------------------------- /.github/workflows/sync-tokens-to-figma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/workflows/sync-tokens-to-figma.yml -------------------------------------------------------------------------------- /.github/workflows/testcafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.github/workflows/testcafe.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/README.md -------------------------------------------------------------------------------- /aries-core/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/.storybook/main.js -------------------------------------------------------------------------------- /aries-core/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/.storybook/preview.js -------------------------------------------------------------------------------- /aries-core/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/babel.config.js -------------------------------------------------------------------------------- /aries-core/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/jest.config.js -------------------------------------------------------------------------------- /aries-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/package.json -------------------------------------------------------------------------------- /aries-core/src/js/components/core/NavigationMenu/NavContainer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavContainer'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/core/NavigationMenu/NavItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavItem'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/core/Popover/index.js: -------------------------------------------------------------------------------- 1 | export * from './Popover'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/core/ScreenReaderOnly/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScreenReaderOnly'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/core/Tile/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/js/components/core/Tile/Tile.js -------------------------------------------------------------------------------- /aries-core/src/js/components/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/js/components/core/index.js -------------------------------------------------------------------------------- /aries-core/src/js/components/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/js/components/helpers/index.js -------------------------------------------------------------------------------- /aries-core/src/js/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/js/components/index.js -------------------------------------------------------------------------------- /aries-core/src/js/components/layouts/ActionMenu/index.js: -------------------------------------------------------------------------------- 1 | export * from './ActionMenu'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/layouts/ButtonGroup/index.js: -------------------------------------------------------------------------------- 1 | export * from './ButtonGroup'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/layouts/EmptyState/index.js: -------------------------------------------------------------------------------- 1 | export * from './EmptyState'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/layouts/Layer/index.js: -------------------------------------------------------------------------------- 1 | export * from './LayerHeader'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/layouts/ModalDialog/index.js: -------------------------------------------------------------------------------- 1 | export * from './ModalDialog'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/components/typography/index.js: -------------------------------------------------------------------------------- 1 | export * from './TextEmphasis'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /aries-core/src/js/index.js: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /aries-core/src/stories/filtering.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/stories/filtering.stories.js -------------------------------------------------------------------------------- /aries-core/src/stories/forms.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/stories/forms.stories.js -------------------------------------------------------------------------------- /aries-core/src/stories/lists.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/stories/lists.stories.js -------------------------------------------------------------------------------- /aries-core/src/stories/popover.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/stories/popover.stories.js -------------------------------------------------------------------------------- /aries-core/src/stories/selector.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/stories/selector.stories.js -------------------------------------------------------------------------------- /aries-core/src/stories/wizard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/src/stories/wizard.stories.js -------------------------------------------------------------------------------- /aries-core/tools/release-stable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/tools/release-stable.js -------------------------------------------------------------------------------- /aries-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/tsconfig.json -------------------------------------------------------------------------------- /aries-core/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-core/webpack.config.js -------------------------------------------------------------------------------- /aries-site/.eslintignore: -------------------------------------------------------------------------------- 1 | src/data/search/ -------------------------------------------------------------------------------- /aries-site/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/.testcaferc.json -------------------------------------------------------------------------------- /aries-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/README.md -------------------------------------------------------------------------------- /aries-site/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/_redirects -------------------------------------------------------------------------------- /aries-site/applitools.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/applitools.config.js -------------------------------------------------------------------------------- /aries-site/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/config.js -------------------------------------------------------------------------------- /aries-site/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/next.config.mjs -------------------------------------------------------------------------------- /aries-site/next.postexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/next.postexport.js -------------------------------------------------------------------------------- /aries-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/package.json -------------------------------------------------------------------------------- /aries-site/public/404-pile-invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/404-pile-invert.svg -------------------------------------------------------------------------------- /aries-site/public/404-pile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/404-pile.svg -------------------------------------------------------------------------------- /aries-site/public/Kenny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/Kenny.png -------------------------------------------------------------------------------- /aries-site/public/Matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/Matt.png -------------------------------------------------------------------------------- /aries-site/public/Shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/Shape.svg -------------------------------------------------------------------------------- /aries-site/public/Taylor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/Taylor.png -------------------------------------------------------------------------------- /aries-site/public/Vicky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/Vicky.png -------------------------------------------------------------------------------- /aries-site/public/accordion-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/accordion-light.svg -------------------------------------------------------------------------------- /aries-site/public/acme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/acme.svg -------------------------------------------------------------------------------- /aries-site/public/apache-spark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/apache-spark.svg -------------------------------------------------------------------------------- /aries-site/public/apache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/apache.svg -------------------------------------------------------------------------------- /aries-site/public/border-sizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/border-sizing.png -------------------------------------------------------------------------------- /aries-site/public/box-sizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/box-sizing.png -------------------------------------------------------------------------------- /aries-site/public/cards-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/cards-dark.svg -------------------------------------------------------------------------------- /aries-site/public/cards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/cards.svg -------------------------------------------------------------------------------- /aries-site/public/ctera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/ctera.svg -------------------------------------------------------------------------------- /aries-site/public/edge-sizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/edge-sizing.png -------------------------------------------------------------------------------- /aries-site/public/extend-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/extend-dark.svg -------------------------------------------------------------------------------- /aries-site/public/extend-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/extend-light.svg -------------------------------------------------------------------------------- /aries-site/public/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/google.svg -------------------------------------------------------------------------------- /aries-site/public/grid-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/grid-light.svg -------------------------------------------------------------------------------- /aries-site/public/highlightImages/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/highlightImages/color.svg -------------------------------------------------------------------------------- /aries-site/public/highlightImages/forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/highlightImages/forms.svg -------------------------------------------------------------------------------- /aries-site/public/highlightImages/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/highlightImages/grid.svg -------------------------------------------------------------------------------- /aries-site/public/highlightImages/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/highlightImages/icons.svg -------------------------------------------------------------------------------- /aries-site/public/highlightImages/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/highlightImages/table.svg -------------------------------------------------------------------------------- /aries-site/public/home-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/home-dark.svg -------------------------------------------------------------------------------- /aries-site/public/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/home.svg -------------------------------------------------------------------------------- /aries-site/public/hpe-design-tokens-v0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/hpe-design-tokens-v0.png -------------------------------------------------------------------------------- /aries-site/public/hpe-design-tokens-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/hpe-design-tokens-v1.png -------------------------------------------------------------------------------- /aries-site/public/images/Abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/images/Abstract.jpg -------------------------------------------------------------------------------- /aries-site/public/images/main-bg-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/images/main-bg-dark.jpg -------------------------------------------------------------------------------- /aries-site/public/images/main-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/images/main-bg.jpg -------------------------------------------------------------------------------- /aries-site/public/images/world_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/images/world_map.jpg -------------------------------------------------------------------------------- /aries-site/public/logos/apache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/apache.svg -------------------------------------------------------------------------------- /aries-site/public/logos/dataiku.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/dataiku.svg -------------------------------------------------------------------------------- /aries-site/public/logos/determined-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/determined-ai.svg -------------------------------------------------------------------------------- /aries-site/public/logos/dremio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/dremio.svg -------------------------------------------------------------------------------- /aries-site/public/logos/flywheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/flywheel.svg -------------------------------------------------------------------------------- /aries-site/public/logos/h2o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/h2o.svg -------------------------------------------------------------------------------- /aries-site/public/logos/joulica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/joulica.svg -------------------------------------------------------------------------------- /aries-site/public/logos/singlestore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/singlestore.svg -------------------------------------------------------------------------------- /aries-site/public/logos/streamsets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/logos/streamsets.svg -------------------------------------------------------------------------------- /aries-site/public/man-wfh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/man-wfh.jpeg -------------------------------------------------------------------------------- /aries-site/public/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/oracle.svg -------------------------------------------------------------------------------- /aries-site/public/single-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/single-store.svg -------------------------------------------------------------------------------- /aries-site/public/singlestore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/singlestore.svg -------------------------------------------------------------------------------- /aries-site/public/starburst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/starburst.svg -------------------------------------------------------------------------------- /aries-site/public/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/static/favicon.ico -------------------------------------------------------------------------------- /aries-site/public/static/images/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/static/images/cards.png -------------------------------------------------------------------------------- /aries-site/public/static/images/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/static/images/quote.svg -------------------------------------------------------------------------------- /aries-site/public/typography-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/typography-light.svg -------------------------------------------------------------------------------- /aries-site/public/whatis/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/whatis/app.svg -------------------------------------------------------------------------------- /aries-site/public/whatis/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/whatis/base.svg -------------------------------------------------------------------------------- /aries-site/public/whatis/combining.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/whatis/combining.svg -------------------------------------------------------------------------------- /aries-site/public/whatis/tailor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/whatis/tailor.svg -------------------------------------------------------------------------------- /aries-site/public/whatis/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/whatis/tools.svg -------------------------------------------------------------------------------- /aries-site/public/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/windows.svg -------------------------------------------------------------------------------- /aries-site/public/woman-glc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/public/woman-glc.jpeg -------------------------------------------------------------------------------- /aries-site/src/applitools/all-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/applitools/all-components.js -------------------------------------------------------------------------------- /aries-site/src/applitools/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/applitools/button.js -------------------------------------------------------------------------------- /aries-site/src/applitools/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/applitools/forms.js -------------------------------------------------------------------------------- /aries-site/src/applitools/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/applitools/template.js -------------------------------------------------------------------------------- /aries-site/src/applitools/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/applitools/typography.js -------------------------------------------------------------------------------- /aries-site/src/components/accessibility/index.js: -------------------------------------------------------------------------------- 1 | export * from './Video'; 2 | -------------------------------------------------------------------------------- /aries-site/src/components/cards/CardGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/cards/CardGrid.js -------------------------------------------------------------------------------- /aries-site/src/components/cards/LinkCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/cards/LinkCard.js -------------------------------------------------------------------------------- /aries-site/src/components/cards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/cards/index.js -------------------------------------------------------------------------------- /aries-site/src/components/content/Status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/content/Status.js -------------------------------------------------------------------------------- /aries-site/src/components/content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/content/index.js -------------------------------------------------------------------------------- /aries-site/src/components/feedback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/feedback/index.js -------------------------------------------------------------------------------- /aries-site/src/components/headings/index.js: -------------------------------------------------------------------------------- 1 | export * from './Subheading'; 2 | -------------------------------------------------------------------------------- /aries-site/src/components/home/Community.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/home/Community.js -------------------------------------------------------------------------------- /aries-site/src/components/home/Featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/home/Featured.js -------------------------------------------------------------------------------- /aries-site/src/components/home/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/home/Hero.js -------------------------------------------------------------------------------- /aries-site/src/components/home/Quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/home/Quote.js -------------------------------------------------------------------------------- /aries-site/src/components/home/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/home/Video.js -------------------------------------------------------------------------------- /aries-site/src/components/home/WhatIs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/home/WhatIs.js -------------------------------------------------------------------------------- /aries-site/src/components/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/home/index.js -------------------------------------------------------------------------------- /aries-site/src/components/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/icons/index.js -------------------------------------------------------------------------------- /aries-site/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/index.js -------------------------------------------------------------------------------- /aries-site/src/components/seo/Meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/components/seo/Meta.js -------------------------------------------------------------------------------- /aries-site/src/components/seo/index.js: -------------------------------------------------------------------------------- 1 | export * from './Meta'; 2 | -------------------------------------------------------------------------------- /aries-site/src/data/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/color.js -------------------------------------------------------------------------------- /aries-site/src/data/featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/featured.js -------------------------------------------------------------------------------- /aries-site/src/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/index.js -------------------------------------------------------------------------------- /aries-site/src/data/mockData/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/mockData/accounts.json -------------------------------------------------------------------------------- /aries-site/src/data/mockData/company.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/mockData/company.json -------------------------------------------------------------------------------- /aries-site/src/data/mockData/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/mockData/orders.json -------------------------------------------------------------------------------- /aries-site/src/data/mockData/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/mockData/servers.json -------------------------------------------------------------------------------- /aries-site/src/data/mockData/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/mockData/services.json -------------------------------------------------------------------------------- /aries-site/src/data/mockData/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/mockData/tags.json -------------------------------------------------------------------------------- /aries-site/src/data/mockData/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/mockData/users.json -------------------------------------------------------------------------------- /aries-site/src/data/structure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/structure.js -------------------------------------------------------------------------------- /aries-site/src/data/structures/Structure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/structures/Structure.js -------------------------------------------------------------------------------- /aries-site/src/data/structures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/structures/index.js -------------------------------------------------------------------------------- /aries-site/src/data/structures/learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/structures/learn.js -------------------------------------------------------------------------------- /aries-site/src/data/structures/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/structures/tokens.js -------------------------------------------------------------------------------- /aries-site/src/data/toolkitItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/toolkitItems.js -------------------------------------------------------------------------------- /aries-site/src/data/wcag/accordion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/accordion.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/anchor.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/avatar.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/box.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/button.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/card.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/checkbox.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/checkboxgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/checkboxgroup.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/datafilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/datafilter.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/datafilters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/datafilters.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/datasearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/datasearch.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/datasort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/datasort.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/datasummary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/datasummary.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/datatable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/datatable.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/dataview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/dataview.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/dateinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/dateinput.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/fileinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/fileinput.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/footer.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/grid.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/header.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/layer.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/main.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/maskedinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/maskedinput.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/menu.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/namevaluelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/namevaluelist.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/notification.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/page.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/pageheader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/pageheader.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/pagination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/pagination.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/rangeinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/rangeinput.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/select.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/skeleton.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/spinner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/spinner.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/tabs.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/tag.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/textarea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/textarea.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/textinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/textinput.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/tip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/tip.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/togglegroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/togglegroup.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/toolbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/toolbar.json -------------------------------------------------------------------------------- /aries-site/src/data/wcag/wcag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/data/wcag/wcag.json -------------------------------------------------------------------------------- /aries-site/src/examples/cardPreviews/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/cardPreviews/box.js -------------------------------------------------------------------------------- /aries-site/src/examples/cardPreviews/content-layouts/index.js: -------------------------------------------------------------------------------- 1 | export * from './ContentLayoutPreview'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/cardPreviews/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/cardPreviews/tag.js -------------------------------------------------------------------------------- /aries-site/src/examples/components/accordion/index.js: -------------------------------------------------------------------------------- 1 | export * from './AccordionExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/calendar/index.js: -------------------------------------------------------------------------------- 1 | export * from './CalendarExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/carousel/index.js: -------------------------------------------------------------------------------- 1 | export * from './CarouselExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/chart/index.js: -------------------------------------------------------------------------------- 1 | export * from './ChartExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/clock/index.js: -------------------------------------------------------------------------------- 1 | export * from './ClockExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/datachart/index.js: -------------------------------------------------------------------------------- 1 | export * from './DataChartExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/diagram/index.js: -------------------------------------------------------------------------------- 1 | export * from './DiagramExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/drop/index.js: -------------------------------------------------------------------------------- 1 | export * from './DropExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/dropbutton/index.js: -------------------------------------------------------------------------------- 1 | export * from './DropButtonExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/grid/FlexGrid.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/grid/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from './definitions'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/image/index.js: -------------------------------------------------------------------------------- 1 | export * from './ImageExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/components/index.js -------------------------------------------------------------------------------- /aries-site/src/examples/components/main/index.js: -------------------------------------------------------------------------------- 1 | export * from './MainExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/markdown/index.js: -------------------------------------------------------------------------------- 1 | export * from './MarkdownExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/meter/index.js: -------------------------------------------------------------------------------- 1 | export * from './MeterExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/nav/index.js: -------------------------------------------------------------------------------- 1 | export * from './NavExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/rangeinput/index.js: -------------------------------------------------------------------------------- 1 | export * from './RangeInputExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/rangeselector/index.js: -------------------------------------------------------------------------------- 1 | export * from './RangeSelectorExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/sidebar/index.js: -------------------------------------------------------------------------------- 1 | export * from './SidebarExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/video/index.js: -------------------------------------------------------------------------------- 1 | export * from './VideoExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/components/worldmap/index.js: -------------------------------------------------------------------------------- 1 | export * from './WorldMapExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/foundation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/foundation/index.js -------------------------------------------------------------------------------- /aries-site/src/examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/index.js -------------------------------------------------------------------------------- /aries-site/src/examples/learn/how-to/how-to-add-additional-controls-to-a-toolbar/index.js: -------------------------------------------------------------------------------- 1 | export * from './Completed'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/learn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/learn/index.js -------------------------------------------------------------------------------- /aries-site/src/examples/learn/tutorials/index.js: -------------------------------------------------------------------------------- 1 | export * from './grid-fundamentals-part-1'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/DestructiveConfirmation/index.js: -------------------------------------------------------------------------------- 1 | export * from './DestructiveConfirmation'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/ReverseAnchor/index.js: -------------------------------------------------------------------------------- 1 | export * from './ReverseAnchor'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/StatusIndicator/index.js: -------------------------------------------------------------------------------- 1 | export * from './StatusIndicator'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/ascending-navigation/index.js: -------------------------------------------------------------------------------- 1 | export * from './AscendingNavigationAnatomy'; -------------------------------------------------------------------------------- /aries-site/src/examples/templates/code-blocks/index.js: -------------------------------------------------------------------------------- 1 | export * from './CodeBlocks'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/feedback/ModalTaskFlowExample/index.js: -------------------------------------------------------------------------------- 1 | export * from './ModalTaskFlowExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/filtering/FilteringCards/index.js: -------------------------------------------------------------------------------- 1 | export * from './FilteringCards'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/filtering/FilteringLists/index.js: -------------------------------------------------------------------------------- 1 | export * from './FilteringLists'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/global-header/index.js: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/hub-spoke-navigation/index.js: -------------------------------------------------------------------------------- 1 | export * from './HubSpokeCardsExample'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/templates/index.js -------------------------------------------------------------------------------- /aries-site/src/examples/templates/table-customization/index.js: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/tokens/element/index.js: -------------------------------------------------------------------------------- 1 | export * from './ElementToken'; 2 | -------------------------------------------------------------------------------- /aries-site/src/examples/tokens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/examples/tokens/index.js -------------------------------------------------------------------------------- /aries-site/src/layouts/content/ButtonRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/content/ButtonRow.js -------------------------------------------------------------------------------- /aries-site/src/layouts/content/ColorRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/content/ColorRow.js -------------------------------------------------------------------------------- /aries-site/src/layouts/content/Head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/content/Head.js -------------------------------------------------------------------------------- /aries-site/src/layouts/content/PageIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/content/PageIntro.js -------------------------------------------------------------------------------- /aries-site/src/layouts/content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/content/index.js -------------------------------------------------------------------------------- /aries-site/src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/index.js -------------------------------------------------------------------------------- /aries-site/src/layouts/main/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/main/Header.js -------------------------------------------------------------------------------- /aries-site/src/layouts/main/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/main/Layout.js -------------------------------------------------------------------------------- /aries-site/src/layouts/main/ThemeMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/main/ThemeMode.js -------------------------------------------------------------------------------- /aries-site/src/layouts/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/main/index.js -------------------------------------------------------------------------------- /aries-site/src/layouts/navigation/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/navigation/Search.js -------------------------------------------------------------------------------- /aries-site/src/layouts/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/layouts/navigation/index.js -------------------------------------------------------------------------------- /aries-site/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/404.js -------------------------------------------------------------------------------- /aries-site/src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/_app.js -------------------------------------------------------------------------------- /aries-site/src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/_document.js -------------------------------------------------------------------------------- /aries-site/src/pages/components/anchor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/anchor.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/avatar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/avatar.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/box.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/box.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/button.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/data.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/footer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/footer.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/grid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/grid.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/header.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/header.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/index.js -------------------------------------------------------------------------------- /aries-site/src/pages/components/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/main.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/menu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/menu.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/page.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/search.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/select.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/select.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/spinner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/spinner.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/tabs.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/tag.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/tip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/tip.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/components/toolbar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/components/toolbar.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/design-tokens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/design-tokens/index.js -------------------------------------------------------------------------------- /aries-site/src/pages/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/feedback.js -------------------------------------------------------------------------------- /aries-site/src/pages/foundation/color.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/foundation/color.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/foundation/icons.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/foundation/icons.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/foundation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/foundation/index.js -------------------------------------------------------------------------------- /aries-site/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/index.js -------------------------------------------------------------------------------- /aries-site/src/pages/learn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/learn/index.js -------------------------------------------------------------------------------- /aries-site/src/pages/showmore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/showmore.js -------------------------------------------------------------------------------- /aries-site/src/pages/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/templates/index.js -------------------------------------------------------------------------------- /aries-site/src/pages/templates/lists.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/templates/lists.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/templates/popover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/templates/popover.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/templates/selector.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/templates/selector.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/templates/wizard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/templates/wizard.mdx -------------------------------------------------------------------------------- /aries-site/src/pages/whats-new.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/pages/whats-new.mdx -------------------------------------------------------------------------------- /aries-site/src/scripts/site-contents.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/scripts/site-contents.mjs -------------------------------------------------------------------------------- /aries-site/src/tests/accessibility/axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/tests/accessibility/axe.js -------------------------------------------------------------------------------- /aries-site/src/tests/navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/tests/navigation/README.md -------------------------------------------------------------------------------- /aries-site/src/tests/navigation/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/tests/navigation/homepage.js -------------------------------------------------------------------------------- /aries-site/src/tests/navigation/navpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/tests/navigation/navpage.js -------------------------------------------------------------------------------- /aries-site/src/tests/navigation/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/tests/navigation/search.js -------------------------------------------------------------------------------- /aries-site/src/tests/navigation/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/tests/navigation/topic.js -------------------------------------------------------------------------------- /aries-site/src/tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/tests/utils.js -------------------------------------------------------------------------------- /aries-site/src/themes/aries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/themes/aries.js -------------------------------------------------------------------------------- /aries-site/src/themes/scaled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/themes/scaled.js -------------------------------------------------------------------------------- /aries-site/src/utils/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/analytics.js -------------------------------------------------------------------------------- /aries-site/src/utils/createGlobalState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/createGlobalState.js -------------------------------------------------------------------------------- /aries-site/src/utils/createStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/createStorage.js -------------------------------------------------------------------------------- /aries-site/src/utils/diagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/diagram.js -------------------------------------------------------------------------------- /aries-site/src/utils/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/hooks/index.js -------------------------------------------------------------------------------- /aries-site/src/utils/hooks/useDarkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/hooks/useDarkMode.js -------------------------------------------------------------------------------- /aries-site/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/index.js -------------------------------------------------------------------------------- /aries-site/src/utils/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/initialize.js -------------------------------------------------------------------------------- /aries-site/src/utils/pageVisitTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/pageVisitTracker.js -------------------------------------------------------------------------------- /aries-site/src/utils/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/aries-site/src/utils/search.js -------------------------------------------------------------------------------- /budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/budget.json -------------------------------------------------------------------------------- /design-tokens-manager/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/.eslintrc.cjs -------------------------------------------------------------------------------- /design-tokens-manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/.gitignore -------------------------------------------------------------------------------- /design-tokens-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/README.md -------------------------------------------------------------------------------- /design-tokens-manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/index.html -------------------------------------------------------------------------------- /design-tokens-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/package.json -------------------------------------------------------------------------------- /design-tokens-manager/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /design-tokens-manager/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/src/App.jsx -------------------------------------------------------------------------------- /design-tokens-manager/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/src/main.jsx -------------------------------------------------------------------------------- /design-tokens-manager/src/routes/Docs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/src/routes/Docs.jsx -------------------------------------------------------------------------------- /design-tokens-manager/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /design-tokens-manager/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/tsconfig.json -------------------------------------------------------------------------------- /design-tokens-manager/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/tsconfig.node.json -------------------------------------------------------------------------------- /design-tokens-manager/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens-manager/vite.config.ts -------------------------------------------------------------------------------- /design-tokens/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/.babelrc -------------------------------------------------------------------------------- /design-tokens/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/CHANGELOG.md -------------------------------------------------------------------------------- /design-tokens/COPYRIGHT.md: -------------------------------------------------------------------------------- 1 | Copyright 2024 Hewlett Packard Enterprise Development LP. 2 | -------------------------------------------------------------------------------- /design-tokens/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/LICENSE -------------------------------------------------------------------------------- /design-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/README.md -------------------------------------------------------------------------------- /design-tokens/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/package.json -------------------------------------------------------------------------------- /design-tokens/src/HPEStyleDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/HPEStyleDictionary.ts -------------------------------------------------------------------------------- /design-tokens/src/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/color.ts -------------------------------------------------------------------------------- /design-tokens/src/figma_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/figma_api.ts -------------------------------------------------------------------------------- /design-tokens/src/formats/commonJs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/formats/commonJs.ts -------------------------------------------------------------------------------- /design-tokens/src/formats/cssBreakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/formats/cssBreakpoints.ts -------------------------------------------------------------------------------- /design-tokens/src/formats/cssColorModes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/formats/cssColorModes.ts -------------------------------------------------------------------------------- /design-tokens/src/formats/esmGrommetRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/formats/esmGrommetRefs.ts -------------------------------------------------------------------------------- /design-tokens/src/formats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/formats/index.ts -------------------------------------------------------------------------------- /design-tokens/src/formats/javascriptEsm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/formats/javascriptEsm.ts -------------------------------------------------------------------------------- /design-tokens/src/formats/jsonFlat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/formats/jsonFlat.ts -------------------------------------------------------------------------------- /design-tokens/src/scripts/release-stable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/scripts/release-stable.js -------------------------------------------------------------------------------- /design-tokens/src/tests/build.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/tests/build.test.ts -------------------------------------------------------------------------------- /design-tokens/src/tests/color.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/tests/color.test.ts -------------------------------------------------------------------------------- /design-tokens/src/token_export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/token_export.ts -------------------------------------------------------------------------------- /design-tokens/src/token_import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/token_import.ts -------------------------------------------------------------------------------- /design-tokens/src/token_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/token_types.ts -------------------------------------------------------------------------------- /design-tokens/src/transforms/colorNameJs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/transforms/colorNameJs.ts -------------------------------------------------------------------------------- /design-tokens/src/transforms/cssW3c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/transforms/cssW3c.ts -------------------------------------------------------------------------------- /design-tokens/src/transforms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/transforms/index.ts -------------------------------------------------------------------------------- /design-tokens/src/transforms/nameCss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/transforms/nameCss.ts -------------------------------------------------------------------------------- /design-tokens/src/transforms/shadowCss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/transforms/shadowCss.ts -------------------------------------------------------------------------------- /design-tokens/src/types/esm/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'hpe-design-tokens'; 2 | -------------------------------------------------------------------------------- /design-tokens/src/types/grommet/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'hpe-design-tokens/grommet'; 2 | -------------------------------------------------------------------------------- /design-tokens/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/src/utils.ts -------------------------------------------------------------------------------- /design-tokens/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/tsconfig.json -------------------------------------------------------------------------------- /design-tokens/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/design-tokens/yarn.lock -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build.environment] 2 | YARN_FLAGS = "--update-checksums" -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/package.json -------------------------------------------------------------------------------- /packages/codemods/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/codemods/CHANGELOG.md -------------------------------------------------------------------------------- /packages/codemods/COPYRIGHT.md: -------------------------------------------------------------------------------- 1 | Copyright 2025 Hewlett Packard Enterprise Development LP. 2 | -------------------------------------------------------------------------------- /packages/codemods/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/codemods/DOCUMENTATION.md -------------------------------------------------------------------------------- /packages/codemods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/codemods/LICENSE -------------------------------------------------------------------------------- /packages/codemods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/codemods/README.md -------------------------------------------------------------------------------- /packages/codemods/bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/codemods/bin/cli.js -------------------------------------------------------------------------------- /packages/codemods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/codemods/package.json -------------------------------------------------------------------------------- /packages/codemods/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/codemods/yarn.lock -------------------------------------------------------------------------------- /packages/icons/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/.gitignore -------------------------------------------------------------------------------- /packages/icons/core/COPYRIGHT.md: -------------------------------------------------------------------------------- 1 | Copyright 2025 Hewlett Packard Enterprise Development LP. 2 | -------------------------------------------------------------------------------- /packages/icons/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/LICENSE -------------------------------------------------------------------------------- /packages/icons/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/README.md -------------------------------------------------------------------------------- /packages/icons/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/index.html -------------------------------------------------------------------------------- /packages/icons/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/package.json -------------------------------------------------------------------------------- /packages/icons/core/src/icons/AI-gen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/AI-gen.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/actions.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/ad.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/add.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/aed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/aed.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/aggregate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/aggregate.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/aid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/aid.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/alarm.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/alert.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/analytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/analytics.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/anchor.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/announce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/announce.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/app.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/apps.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/archive.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/article.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/article.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/ascend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/ascend.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/ascending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/ascending.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/atm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/atm.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/baby.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/back-ten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/back-ten.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bar.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/battery.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/beacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/beacon.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bike.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/blog.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bluetooth.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/book.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bookmark.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/braille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/braille.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/briefcase.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/brush.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bucket.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bug.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bulb.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bundle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bundle.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/bus.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cafeteria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cafeteria.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/calendar.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/camera.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/car.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/caret-up.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cart.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/catalog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/catalog.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/channel.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/chart-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/chart-bar.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/chart-pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/chart-pie.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/chat.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/checkmark.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/clear.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/clipboard.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/clock.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/clone.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/close.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cloud-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cloud-add.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cloud.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cluster.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/code.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/coffee.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/columns.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/command.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/compare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/compare.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/compass.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/configure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/configure.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/connect.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/console.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/contact.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/contract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/contract.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/copy.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cpu.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cube.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cubes.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/currency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/currency.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cursor.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cut.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/cycle.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/dashboard.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/database.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/deliver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/deliver.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/deploy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/deploy.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/descend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/descend.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/desktop.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/detach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/detach.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/device.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/dial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/dial.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/diamond.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/disc.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/dislike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/dislike.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/document.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/domain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/domain.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/down.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/download.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/drag.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/duplicate.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/edit.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/eject.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/element.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/element.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/elevator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/elevator.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/emergency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/emergency.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/erase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/erase.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/escalator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/escalator.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/expand.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/fan.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/favorite.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/filter.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/firewall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/firewall.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/five-g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/five-g.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/flag.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/flows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/flows.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/focus.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/folder.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/gallery.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/gamepad.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/gateway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/gateway.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/gem.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/gift.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/globe.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/gpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/gpu.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/grid.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/group.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/grow.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/halt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/halt.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/help-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/help-book.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/help.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/hide.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/history.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/home.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/host.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/host.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/ice-cream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/ice-cream.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/image.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/impact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/impact.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/inbox.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/info.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/inherit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/inherit.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/insecure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/insecure.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/inspect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/inspect.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/install.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/iteration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/iteration.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/key.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/keyboard.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/language.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/layer.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/left.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/like-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/like-fill.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/like.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/link-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/link-next.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/link-prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/link-prev.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/link-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/link-top.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/link.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/list.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/local.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/location.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/lock.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/lodging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/lodging.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/login.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/logout.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/lounge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/lounge.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/magic.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/mail.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/manual.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/map-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/map-add.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/map.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/meeting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/meeting.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/memory.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/menu.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/mode.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/money.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/monitor.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/moon.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/more.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/mouse.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/multiple.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/music.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/navigate.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/network.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/new.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/nodes.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/note.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/notes.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/optimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/optimize.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/overview.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/package.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/paint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/paint.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/pan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/pan.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/pause.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/phone.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/pin.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/play-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/play-fill.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/play.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/power.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/print.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/progress.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/projects.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/qr.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/redo.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/refresh.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/resources.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/restroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/restroom.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/resume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/resume.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/return.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/revert.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/rewind.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/right.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/risk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/risk.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/robot.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/rss.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/run.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/sans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/sans.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/satellite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/satellite.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/save.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/scan.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/scorecard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/scorecard.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/script.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/sd.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/search.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/secure.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/select.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/selection.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/semantics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/semantics.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/send.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/sensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/sensor.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/server.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/servers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/servers.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/services.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/services.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/settings.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/share.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/shield.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/shift.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/shop.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/sidebar.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/sign.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/spa.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/split.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/split.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/splits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/splits.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/star-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/star-fill.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/star-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/star-half.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/star.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/steps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/steps.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/stop-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/stop-fill.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/stop.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/storage.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/subtract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/subtract.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/sun.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/support.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/swim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/swim.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/switch.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/sync.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/system.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/table-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/table-add.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/table.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/tag.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/tape.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/target.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/task.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/template.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/test.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/text-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/text-wrap.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/theme.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/threats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/threats.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/three-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/three-d.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/ticket.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/time.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/tools.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/tooltip.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/train.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/trash.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/tree-node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/tree-node.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/tree.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/trigger.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/trophy.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/tty.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/undo.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/unlink.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/unlock.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/unsorted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/unsorted.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/up.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/update.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/upgrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/upgrade.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/upload.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/usb-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/usb-key.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/user-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/user-add.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/user-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/user-new.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/user.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/validate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/validate.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/vend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/vend.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/video.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/view.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/volume.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/waypoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/waypoint.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/webcam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/webcam.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/wifi-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/wifi-low.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/wifi-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/wifi-none.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/wifi-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/wifi-off.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/wifi.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/workshop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/workshop.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/yoga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/yoga.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/zoom-in.svg -------------------------------------------------------------------------------- /packages/icons/core/src/icons/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/icons/zoom-out.svg -------------------------------------------------------------------------------- /packages/icons/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/src/index.ts -------------------------------------------------------------------------------- /packages/icons/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/tsconfig.json -------------------------------------------------------------------------------- /packages/icons/core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/vite.config.ts -------------------------------------------------------------------------------- /packages/icons/core/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/core/yarn.lock -------------------------------------------------------------------------------- /packages/icons/grommet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/.gitignore -------------------------------------------------------------------------------- /packages/icons/grommet/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/.storybook/main.ts -------------------------------------------------------------------------------- /packages/icons/grommet/COPYRIGHT.md: -------------------------------------------------------------------------------- 1 | Copyright 2025 Hewlett Packard Enterprise Development LP. 2 | -------------------------------------------------------------------------------- /packages/icons/grommet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/LICENSE -------------------------------------------------------------------------------- /packages/icons/grommet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/README.md -------------------------------------------------------------------------------- /packages/icons/grommet/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/eslint.config.js -------------------------------------------------------------------------------- /packages/icons/grommet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/index.html -------------------------------------------------------------------------------- /packages/icons/grommet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/package.json -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Ad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Ad.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Add.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Add.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Aed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Aed.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Aid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Aid.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/App.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Atm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Atm.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Bar.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Bug.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Bug.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Bus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Bus.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Car.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Car.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Cpu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Cpu.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Cut.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Cut.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Fan.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Fan.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Gem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Gem.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Gpu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Gpu.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Key.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Key.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Map.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/New.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/New.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Pan.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Pan.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Pin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Pin.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Qr.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Qr.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Rss.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Rss.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Run.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Run.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/SD.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/SD.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Spa.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Spa.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Sun.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Sun.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Tag.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Tty.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Tty.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/icons/Up.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/icons/Up.jsx -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/index.ts -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/metadata.ts -------------------------------------------------------------------------------- /packages/icons/grommet/src/js/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/src/js/utils.ts -------------------------------------------------------------------------------- /packages/icons/grommet/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/tsconfig.app.json -------------------------------------------------------------------------------- /packages/icons/grommet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/tsconfig.json -------------------------------------------------------------------------------- /packages/icons/grommet/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/tsconfig.node.json -------------------------------------------------------------------------------- /packages/icons/grommet/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/vite.config.ts -------------------------------------------------------------------------------- /packages/icons/grommet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/packages/icons/grommet/yarn.lock -------------------------------------------------------------------------------- /sandbox/grommet-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/.eslintrc.cjs -------------------------------------------------------------------------------- /sandbox/grommet-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/.gitignore -------------------------------------------------------------------------------- /sandbox/grommet-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/README.md -------------------------------------------------------------------------------- /sandbox/grommet-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/index.html -------------------------------------------------------------------------------- /sandbox/grommet-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/package.json -------------------------------------------------------------------------------- /sandbox/grommet-app/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/public/favicon.ico -------------------------------------------------------------------------------- /sandbox/grommet-app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/App.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/Login.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/app.css -------------------------------------------------------------------------------- /sandbox/grommet-app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/assets/react.svg -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/Card/index.js: -------------------------------------------------------------------------------- 1 | export * from './Card'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/components/Chat.tsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/CollapsibleMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CollapsibleMenu'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/DashboardCard/index.js: -------------------------------------------------------------------------------- 1 | export * from './DashboardCard'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/EmptyState/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EmptyState'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/FloatingActionButton/index.js: -------------------------------------------------------------------------------- 1 | export * from './FloatingActionButton'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/GlobalHeader/index.js: -------------------------------------------------------------------------------- 1 | export * from './GlobalHeader'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/Legend/index.js: -------------------------------------------------------------------------------- 1 | export * from './Legend'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/NavSidebar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavSidebar'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/NotificationMetric/index.js: -------------------------------------------------------------------------------- 1 | export * from './NotificationMetric'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/PropertiesPane/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PropertiesPane'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/RoutedAnchor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RoutedAnchor'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/SkeletonContext/index.js: -------------------------------------------------------------------------------- 1 | export * from './SkeletonContext'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/ToggleGroup/index.js: -------------------------------------------------------------------------------- 1 | export * from './ToggleGroup'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/components/index.js -------------------------------------------------------------------------------- /sandbox/grommet-app/src/contexts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/contexts/index.js -------------------------------------------------------------------------------- /sandbox/grommet-app/src/icons/Compact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/icons/Compact.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/icons/Spacious.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/icons/Spacious.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/icons/index.js -------------------------------------------------------------------------------- /sandbox/grommet-app/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/main.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/Learn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/pages/Learn.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/pages/index.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Region'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/Collection/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Collection'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/DSCCSystemDetail/DetailPane/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DetailPane'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/DSCCSystemDetail/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DSCCSystemDetail'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/Dashboard/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Capacity'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/Dashboard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Dashboard'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/EmptyState/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EmptyState'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/Form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Form'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/NavigationalSidebar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavigationalSidebar'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/OpsRampDetail/index.ts: -------------------------------------------------------------------------------- 1 | export * from './OpsRampDetail'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/RecordDetail/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RecordDetail'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/pages/layouts/kinds/Results/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Results'; 2 | -------------------------------------------------------------------------------- /sandbox/grommet-app/src/themes/theme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/themes/theme.jsx -------------------------------------------------------------------------------- /sandbox/grommet-app/src/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/utils/format.ts -------------------------------------------------------------------------------- /sandbox/grommet-app/src/utils/skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/utils/skeleton.js -------------------------------------------------------------------------------- /sandbox/grommet-app/src/utils/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/src/utils/status.tsx -------------------------------------------------------------------------------- /sandbox/grommet-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/grommet-app/vite.config.js -------------------------------------------------------------------------------- /sandbox/native-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/.gitignore -------------------------------------------------------------------------------- /sandbox/native-web/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/components/index.js -------------------------------------------------------------------------------- /sandbox/native-web/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/css/app.css -------------------------------------------------------------------------------- /sandbox/native-web/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/css/components.css -------------------------------------------------------------------------------- /sandbox/native-web/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/css/fonts.css -------------------------------------------------------------------------------- /sandbox/native-web/css/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/css/utilities.css -------------------------------------------------------------------------------- /sandbox/native-web/icons/AppsRounded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/AppsRounded.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/Checkmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/Checkmark.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/LinkNext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/LinkNext.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/StatusCritical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/StatusCritical.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/StatusInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/StatusInfo.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/StatusInfoSmall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/StatusInfoSmall.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/StatusOk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/StatusOk.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/StatusOkSmall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/StatusOkSmall.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/StatusWarning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/StatusWarning.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/Sun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/Sun.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/User.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/UserAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/UserAdd.js -------------------------------------------------------------------------------- /sandbox/native-web/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/icons/index.js -------------------------------------------------------------------------------- /sandbox/native-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/index.html -------------------------------------------------------------------------------- /sandbox/native-web/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/javascript.svg -------------------------------------------------------------------------------- /sandbox/native-web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/main.js -------------------------------------------------------------------------------- /sandbox/native-web/mockData/mockData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/mockData/mockData.json -------------------------------------------------------------------------------- /sandbox/native-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/package.json -------------------------------------------------------------------------------- /sandbox/native-web/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /sandbox/native-web/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/native-web/utils.js -------------------------------------------------------------------------------- /sandbox/tailwind-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/.eslintrc.cjs -------------------------------------------------------------------------------- /sandbox/tailwind-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/.gitignore -------------------------------------------------------------------------------- /sandbox/tailwind-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/README.md -------------------------------------------------------------------------------- /sandbox/tailwind-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/index.html -------------------------------------------------------------------------------- /sandbox/tailwind-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/package.json -------------------------------------------------------------------------------- /sandbox/tailwind-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/postcss.config.js -------------------------------------------------------------------------------- /sandbox/tailwind-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/public/vite.svg -------------------------------------------------------------------------------- /sandbox/tailwind-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/src/App.css -------------------------------------------------------------------------------- /sandbox/tailwind-app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/src/App.jsx -------------------------------------------------------------------------------- /sandbox/tailwind-app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/src/assets/react.svg -------------------------------------------------------------------------------- /sandbox/tailwind-app/src/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/src/fonts.css -------------------------------------------------------------------------------- /sandbox/tailwind-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/src/index.css -------------------------------------------------------------------------------- /sandbox/tailwind-app/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/src/main.jsx -------------------------------------------------------------------------------- /sandbox/tailwind-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/tailwind.config.js -------------------------------------------------------------------------------- /sandbox/tailwind-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/sandbox/tailwind-app/vite.config.js -------------------------------------------------------------------------------- /shared/hooks/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/shared/hooks/DOCUMENTATION.md -------------------------------------------------------------------------------- /shared/hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/shared/hooks/package.json -------------------------------------------------------------------------------- /shared/hooks/src/__tests__/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/shared/hooks/src/__tests__/setup.ts -------------------------------------------------------------------------------- /shared/hooks/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/shared/hooks/src/index.ts -------------------------------------------------------------------------------- /shared/hooks/src/useSessionStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/shared/hooks/src/useSessionStorage.ts -------------------------------------------------------------------------------- /shared/hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/shared/hooks/tsconfig.json -------------------------------------------------------------------------------- /shared/hooks/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/shared/hooks/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grommet/hpe-design-system/HEAD/yarn.lock --------------------------------------------------------------------------------