├── .github └── workflows │ ├── create-release.yml │ └── pr_validate_all.yml ├── .vs ├── VSWorkspaceState.json ├── powercat-code-components │ ├── FileContentIndex │ │ ├── d1d4e447-078a-4d01-98bc-adecf2832938.vsidx │ │ └── read.lock │ └── v17 │ │ ├── .suo │ │ └── workspaceFileList.bin └── slnx.sqlite ├── .vscode └── settings.json ├── AutoWidthLabel ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── launch.json ├── AutoWidthLabel │ ├── ControlManifest.Input.xml │ ├── ManifestTypes.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-parameters.ts │ │ └── resize-observer-polyfill.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── lifecycle-events.test.ts.snap │ │ │ └── state-events.test.ts.snap │ │ ├── lifecycle-events.test.ts │ │ ├── resize-events.test.ts │ │ └── state-events.test.ts │ ├── component.styles.ts │ ├── component.types.ts │ ├── css │ │ └── AutoWidthLabel.css │ ├── index.ts │ └── strings │ │ └── AutoWidthLabel.1033.resx ├── README.md ├── auto-width-label.pcfproj ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Breadcrumb ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── BreadCrumb.pcfproj ├── Breadcrumb │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── _test_ │ │ ├── __snapshots__ │ │ │ ├── breadcrumb-lifecycle.test.ts.snap │ │ │ └── datasetmapping.test.ts.snap │ │ ├── breadcrumb-lifecycle.test.ts │ │ └── datasetmapping.test.ts │ ├── components │ │ ├── BreadcrumbComponent.styles.ts │ │ ├── CanvasBreadcrumb.tsx │ │ ├── DatasetMapping.ts │ │ └── components.types.ts │ ├── fluentui-fork │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.base.tsx │ │ │ ├── Breadcrumb.styles.ts │ │ │ ├── Breadcrumb.tsx │ │ │ └── Breadcrumb.types.ts │ │ ├── FocusZone │ │ │ └── FocusZone.tsx │ │ └── README.md │ ├── index.ts │ └── strings │ │ └── Breadcrumb.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Calendar ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ ├── launch.json │ └── settings.json ├── Calendar.pcfproj ├── Calendar │ ├── CalendarDateStrings.d.ts │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── calendar-lifecycle.test.ts.snap │ │ └── calendar-lifecycle.test.ts │ ├── components │ │ ├── Calendar.tsx │ │ ├── Component.types.ts │ │ ├── DateTimePickerStrings.ts │ │ └── Utilities.ts │ ├── css │ │ └── Calendar.css │ ├── fluentui-fork │ │ ├── Calendar │ │ │ ├── Calendar.base.tsx │ │ │ ├── Calendar.styles.ts │ │ │ ├── Calendar.tsx │ │ │ ├── Calendar.types.ts │ │ │ ├── CalendarDay │ │ │ │ ├── CalendarDay.base.tsx │ │ │ │ ├── CalendarDay.styles.ts │ │ │ │ ├── CalendarDay.tsx │ │ │ │ └── CalendarDay.types.ts │ │ │ ├── CalendarMonth │ │ │ │ ├── CalendarMonth.base.tsx │ │ │ │ ├── CalendarMonth.styles.ts │ │ │ │ ├── CalendarMonth.tsx │ │ │ │ └── CalendarMonth.types.ts │ │ │ ├── CalendarPicker │ │ │ │ ├── CalendarPicker.styles.ts │ │ │ │ └── CalendarPicker.types.ts │ │ │ ├── CalendarYear │ │ │ │ ├── CalendarYear.base.tsx │ │ │ │ ├── CalendarYear.styles.ts │ │ │ │ ├── CalendarYear.tsx │ │ │ │ └── CalendarYear.types.ts │ │ │ ├── defaults.ts │ │ │ └── index.ts │ │ ├── CalendarDayGrid │ │ │ ├── CalendarDayGrid.base.tsx │ │ │ ├── CalendarDayGrid.styles.ts │ │ │ ├── CalendarDayGrid.tsx │ │ │ ├── CalendarDayGrid.types.ts │ │ │ ├── CalendarGridDayCell.tsx │ │ │ ├── CalendarGridRow.tsx │ │ │ └── CalendarMonthHeaderRow.tsx │ │ ├── FocusZone │ │ │ └── FocusZone.tsx │ │ └── Readme.md │ ├── index.ts │ ├── loc │ │ ├── Readme.md │ │ ├── bg-bg.ts │ │ ├── ca-es.ts │ │ ├── da-dk.ts │ │ ├── de-de.ts │ │ ├── el-gr.ts │ │ ├── en-us.ts │ │ ├── es-es.ts │ │ ├── et-ee.ts │ │ ├── eu-es.ts │ │ ├── fi-fi.ts │ │ ├── fr-ca.ts │ │ ├── fr-fr.ts │ │ ├── hu-hu.ts │ │ ├── it-it.ts │ │ ├── ja-jp.ts │ │ ├── lt-lt.ts │ │ ├── lv-lv.ts │ │ ├── nb-no.ts │ │ ├── nl-nl.ts │ │ ├── pl-pl.ts │ │ ├── pt-br.ts │ │ ├── pt-pt.ts │ │ ├── ro-ro.ts │ │ ├── ru-ru.ts │ │ ├── sk-sk.ts │ │ ├── sr-latn-rs.ts │ │ ├── sv-se.ts │ │ ├── tr-tr.ts │ │ ├── vi-vn.ts │ │ ├── zh-cn.ts │ │ └── zh-tw.ts │ └── strings │ │ └── Calendar.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Card ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── Card.pcfproj ├── Card │ ├── Card.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── card-lifecycle.test.tsx.snap │ │ └── card-lifecycle.test.tsx │ ├── components │ │ ├── CardCanvas.tsx │ │ ├── Component.types.ts │ │ ├── ContextExtended.ts │ │ ├── FluentIcon.types.ts │ │ ├── Icons.ts │ │ ├── Toolbar │ │ │ ├── Component.types.ts │ │ │ ├── Icon.tsx │ │ │ ├── OverflowMenu.styles.ts │ │ │ ├── OverflowMenu.tsx │ │ │ ├── OverflowMenuItem.styles.ts │ │ │ ├── OverflowMenuItem.tsx │ │ │ ├── ToolbarComponent.styles.ts │ │ │ ├── ToolbarComponent.tsx │ │ │ └── datasetmapping.ts │ │ ├── fluentIcon.tsx │ │ └── helper.ts │ ├── index.ts │ └── strings │ │ └── Card.1033.resx ├── config │ ├── react-jsx-runtime.js │ └── tests.js ├── featureconfig.json ├── jest.config.js ├── media │ └── Cards.png ├── package-lock.json ├── package.json ├── pcfconfig.json ├── readme.md └── tsconfig.json ├── CommandBar ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ ├── launch.json │ └── settings.json ├── CommandBar.pcfproj ├── CommandBar │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── commandbar-lifecycle.test.tsx.snap │ │ │ └── datasetmapping.test.ts.snap │ │ ├── commandbar-lifecycle.test.tsx │ │ └── datasetmapping.test.ts │ ├── components │ │ ├── CanvasCommandBar.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── css │ │ └── CommandBar.css │ ├── fluentui-fork │ │ ├── CommandBar │ │ │ ├── CommandBar.base.tsx │ │ │ ├── CommandBar.styles.ts │ │ │ └── CommandBar.tsx │ │ ├── FocusZone │ │ │ └── FocusZone.tsx │ │ └── README.md │ ├── index.ts │ └── strings │ │ └── CommandBar.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── ContextMenu ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── launch.json ├── ContextMenu.pcfproj ├── ContextMenu │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── contextmenu-lifecycle.test.ts.snap │ │ │ └── datasetmapping.test.ts.snap │ │ ├── contextmenu-lifecycle.test.ts │ │ └── datasetmapping.test.ts │ ├── components │ │ ├── CanvasContextMenu.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── index.ts │ └── strings │ │ └── ContextMenu.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── DetailsList ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ ├── launch.json │ └── settings.json ├── DetailsList.pcfproj ├── DetailsList │ ├── Component.types.ts │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── DatasetArrayItem.ts │ ├── Grid.styles.ts │ ├── Grid.tsx │ ├── GridCell.tsx │ ├── ManifestConstants.ts │ ├── NoFields.tsx │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── ChildCells.test.tsx │ │ ├── Grid.lifecycle.test.tsx │ │ ├── GridCell-Image.test.tsx │ │ ├── GridCell.test.tsx │ │ └── __snapshots__ │ │ │ ├── ChildCells.test.tsx.snap │ │ │ ├── Grid.lifecycle.test.tsx.snap │ │ │ ├── GridCell-Image.test.tsx.snap │ │ │ └── GridCell.test.tsx.snap │ ├── css │ │ └── DetailsList.css │ ├── index.ts │ └── strings │ │ ├── DetailsList.1033.resx │ │ └── stringFormat.ts ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── media │ └── README │ │ ├── DetailsList.gif │ │ ├── ExpandCollapse.gif │ │ ├── image-20220322144857658.png │ │ ├── image-20220323115627812.png │ │ ├── image-20220323150248449.png │ │ ├── image-20220323161817524.png │ │ ├── image-20220323162641272.png │ │ ├── image-20220323162653369.png │ │ └── image-20220324160725874.png ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── DonutChart ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── DonutChart.pcfproj ├── DonutChart │ ├── ControlManifest.Input.xml │ ├── DonutChart.ts │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── donutchart-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── donutchart-lifecycle.test.ts │ ├── components │ │ ├── CanvasDonutChart.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── index.ts │ └── strings │ │ └── DonutChart.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json ├── readme.md └── tsconfig.json ├── Elevation ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── Elevation.pcfproj ├── Elevation │ ├── ControlManifest.Input.xml │ ├── component.types.ts │ ├── css │ │ └── Elevation.css │ ├── index.ts │ └── strings │ │ └── Elevation.1033.resx ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Facepile ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── Facepile.pcfproj ├── Facepile │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── _test_ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── facepile-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── facepile-lifecycle.test.ts │ ├── components │ │ ├── CanvasFacepile.tsx │ │ ├── Component.types.ts │ │ ├── DatasetMapping.ts │ │ └── Helper.ts │ ├── fluenui-fork │ │ ├── BaseButton.styles.ts │ │ ├── Facepile │ │ │ ├── Facepile.base.tsx │ │ │ ├── Facepile.styles.ts │ │ │ ├── Facepile.tsx │ │ │ ├── Facepile.types.ts │ │ │ ├── FacepileButton.styles.ts │ │ │ └── FacepileButton.tsx │ │ └── Readme.md │ ├── index.ts │ └── strings │ │ └── Facepile.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── FluentMessageBar ├── .eslintrc.json ├── .gitignore ├── FluentMessageBar.pcfproj ├── FluentMessageBar │ ├── .gitignore │ ├── ControlManifest.Input.xml │ ├── ManifestConstant.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── _tests_ │ │ ├── __snapshots__ │ │ │ └── messagebar-lifecyle.test.ts.snap │ │ └── messagebar-lifecyle.test.ts │ ├── components │ │ ├── ContextEx.ts │ │ ├── FluentIcon.types.ts │ │ ├── IMessagebar.ts │ │ ├── Icons.ts │ │ ├── Messagebar.tsx │ │ ├── Toolbar │ │ │ ├── Component.types.ts │ │ │ ├── Icon.tsx │ │ │ ├── OverflowMenu.styles.ts │ │ │ ├── OverflowMenu.tsx │ │ │ ├── OverflowMenuItem.styles.ts │ │ │ ├── OverflowMenuItem.tsx │ │ │ ├── ToolbarComponent.styles.ts │ │ │ ├── ToolbarComponent.tsx │ │ │ └── datasetmapping.ts │ │ └── fluentIcon.tsx │ ├── css │ │ └── messagebar.css │ ├── index.ts │ └── strings │ │ └── FluentMessageBar.1033.resx ├── README.md ├── feature-config.json ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── GaugeChart ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── GaugeChart.pcfproj ├── GaugeChart │ ├── ControlManifest.Input.xml │ ├── GaugeChart.ts │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── guagechart-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── guagechart-lifecycle.test.ts │ ├── components │ │ ├── CanvasGaugeChart.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── index.ts │ └── strings │ │ └── GaugeChart.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json ├── readme.md └── tsconfig.json ├── HorizontalBarChart ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── HorizontalBarChart.pcfproj ├── HorizontalBarChart │ ├── ControlManifest.Input.xml │ ├── HorizontalChart.ts │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── horizontalbarchart-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── horizontalbarchart-lifecycle.test.ts │ ├── components │ │ ├── CanvasHorizontalChart.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── index.ts │ └── strings │ │ └── HorizontalBarChart.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json ├── readme.md └── tsconfig.json ├── Icon ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── ContextExtended.ts ├── Icon.pcfproj ├── Icon │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── IconComponent.tsx │ ├── ManifestTypes.ts │ ├── index.ts │ └── strings │ │ └── Icon.1033.resx ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── KeyboardShortcuts ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── launch.json ├── KeyboardShortcuts │ ├── ControlManifest.Input.xml │ ├── __mocks__ │ │ ├── keycodes.ts │ │ ├── mock-context.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ └── lifecycle-events.test.ts │ ├── index.ts │ └── strings │ │ └── KeyboardShortcuts.1033.resx ├── README.md ├── jest.config.js ├── keyboard-shortcuts.pcfproj ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── LICENSE ├── MaskedTextField ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── MaskedTextField.pcfproj ├── MaskedTextField │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── customizabletextfield-lifecycle.test.ts.snap │ │ └── customizabletextfield-lifecycle.test.ts │ ├── components │ │ ├── CanvasTextField.tsx │ │ └── Component.types.ts │ ├── index.ts │ └── strings │ │ └── MaskedTextField.1033.resx ├── README.md ├── config │ └── tests.js ├── featureconfig.json ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json ├── tests.js └── tsconfig.json ├── ModernThemeGenerator ├── .eslintrc.json ├── .gitignore ├── ModernThemeGenerator.pcfproj ├── ModernThemeGenerator │ ├── ControlManifest.Input.xml │ ├── CreateV8Theme.tsx │ ├── index.ts │ └── strings │ │ └── ModernThemeGeneratorv8.1033.resx ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Nav ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── launch.json ├── Nav.pcfproj ├── Nav │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── nav-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── nav-lifecycle.test.ts │ ├── components │ │ ├── CanvasNav.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── index.ts │ └── strings │ │ └── FluentNav.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── PeoplePicker ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── PeoplePicker.pcfproj ├── PeoplePicker │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── peoplepicker-lifecycle.test.tsx.snap │ │ ├── peoplepicker-component.test.tsx │ │ └── peoplepicker-lifecycle.test.tsx │ ├── components │ │ ├── Component.types.ts │ │ ├── DatasetMapping.ts │ │ ├── Peoplepicker.tsx │ │ └── PersonaSchema.ts │ ├── css │ │ └── PeoplePicker.css │ ├── index.ts │ └── strings │ │ └── PeoplePicker.1033.resx ├── config │ └── tests.js ├── featureconfig.json ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json ├── readme.md └── tsconfig.json ├── Persona ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── Persona.pcfproj ├── Persona │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── Persona-lifecycle.test.ts │ │ └── __snapshots__ │ │ │ └── Persona-lifecycle.test.ts.snap │ ├── components │ │ ├── CanvasPersona.tsx │ │ └── Component.types.ts │ ├── index.ts │ └── strings │ │ └── Persona.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Picker ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── launch.json ├── Picker.pcfproj ├── Picker │ ├── CanvasTagPicker.tsx │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.tsx │ ├── TagPickerComponent.tsx │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── picker-lifecycle.test.tsx.snap │ │ ├── picker-lifecycle.test.tsx │ │ └── tag-picker-component.test.tsx │ ├── css │ │ └── TagPicker.css │ ├── fluentui-fork │ │ ├── BaseButton.classNames.ts │ │ ├── BasePicker.styles.ts │ │ └── TagPicker │ │ │ ├── TagItem.styles.ts │ │ │ └── TagItemWithTabIndex.tsx │ ├── index.ts │ └── strings │ │ └── TagPicker.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Pivot ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── launch.json ├── Pivot.pcfproj ├── Pivot │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── pivot-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── pivot-lifecycle.test.ts │ ├── components │ │ ├── CanvasPivot.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── fluentui-fork │ │ ├── FocusZone │ │ │ └── FocusZone.tsx │ │ ├── Pivot │ │ │ ├── Pivot.base.tsx │ │ │ ├── Pivot.styles.ts │ │ │ ├── Pivot.tsx │ │ │ ├── observeResize.ts │ │ │ └── useOverflow.ts │ │ └── README.md │ ├── index.ts │ └── strings │ │ └── Pivot.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── ProgressIndicator ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── ProgressIndicator.pcfproj ├── ProgressIndicator │ ├── ControlManifest.Input.xml │ ├── ProgressIndicator.tsx │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── progressindicator-lifecycle.test.ts.snap │ │ └── progressindicator-lifecycle.test.ts │ ├── index.ts │ └── strings │ │ └── ProgressIndicator.1033.resx ├── README.md ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── README.md ├── ResizableTextarea ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── launch.json ├── README.md ├── ResizableTextarea │ ├── ControlManifest.Input.xml │ ├── ManifestTypes.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-parameters.ts │ │ └── resize-observer-polyfill.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── lifecycle-events.test.ts.snap │ │ │ └── state-events.test.ts.snap │ │ ├── lifecycle-events.test.ts │ │ ├── resize-events.test.ts │ │ └── state-events.test.ts │ ├── component.styles.ts │ ├── component.types.ts │ ├── css │ │ └── ResizableTextarea.css │ ├── index.ts │ └── strings │ │ └── ResizableTextarea.1033.resx ├── jest.config.js ├── media │ └── README │ │ ├── ResizableTextAreaBorderCentered.gif │ │ ├── ResizableTextAreaBorderNormal.gif │ │ ├── ResizableTextAreaContainer.gif │ │ ├── ResizableTextAreaEditForm.gif │ │ ├── ResizableTextAreaModelDriven.gif │ │ └── image-20220201093155574.png ├── package-lock.json ├── package.json ├── pcfconfig.json ├── resizable-textarea.pcfproj └── tsconfig.json ├── SECURITY.md ├── SearchBox ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── SearchBox.pcfproj ├── SearchBox │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── searchbox-lifecycle.test.ts.snap │ │ └── searchbox-lifecycle.test.ts │ ├── components │ │ ├── Component.types.ts │ │ └── SearchBox.tsx │ ├── index.ts │ └── strings │ │ └── SearchBox.1033.resx ├── config │ └── tests.js ├── featureconfig.json ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json ├── tests.js └── tsconfig.json ├── Shimmer ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── Shimmer.pcfproj ├── Shimmer │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── shimmer-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── shimmer-lifecycle.test.ts │ ├── components │ │ ├── CanvasShimmer.tsx │ │ ├── Component.types.ts │ │ └── DatasetMapping.ts │ ├── index.ts │ └── strings │ │ └── Shimmer.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── media │ └── Shimmer.gif ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Solution ├── .gitignore ├── Solution.cdsproj └── src │ └── Other │ ├── Customizations.xml │ ├── Relationships.xml │ └── Solution.xml ├── SpinButton ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── SpinButton.pcfproj ├── SpinButton │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── SpinButton-lifecycle.test.ts │ │ └── __snapshots__ │ │ │ └── SpinButton-lifecycle.test.ts.snap │ ├── components │ │ ├── Component.types.ts │ │ └── SpinButton.tsx │ ├── index.ts │ └── strings │ │ └── SpinButton.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Spinner ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── Spinner.pcfproj ├── Spinner │ ├── ControlManifest.Input.xml │ ├── ManifestTypes.ts │ ├── Spinner.tsx │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── spinner-lifecycle.test.ts.snap │ │ └── spinner-lifecycle.test.ts │ ├── index.ts │ └── strings │ │ └── Spinner.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── StackedBarChart ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── StackedBarChart.pcfproj ├── StackedBarChart │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── StackbarChart.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── stackbarChart-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── stackbarChart-lifecycle.test.ts │ ├── components │ │ ├── CanvasStackedBarChart.tsx │ │ └── DatasetMapping.ts │ ├── index.ts │ └── strings │ │ └── StackBarChart.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json ├── readme.md └── tsconfig.json ├── SubwayNav ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── SubwayNav.pcfproj ├── SubwayNav │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── _test_ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ └── subwaynav-lifecycle.test.ts.snap │ │ ├── datasetmapping.test.ts │ │ └── subwaynav-lifecycle.test.ts │ ├── components │ │ ├── CanvasSubwayNav.tsx │ │ ├── DatasetMapping.ts │ │ ├── StepSchema.ts │ │ └── components.types.ts │ ├── index.ts │ ├── strings │ │ └── Subwaynav.1033.resx │ └── utilities │ │ ├── FocusZone │ │ └── FocusZone.tsx │ │ ├── MainUtilities │ │ └── src │ │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── use-controlled-uncontrolled.ts │ │ │ ├── use-inject-singleton.ts │ │ │ ├── use-intersection-observer.ts │ │ │ └── use-obscured-elements.ts │ │ │ ├── index.ts │ │ │ ├── type-helpers │ │ │ ├── flexible-header.ts │ │ │ ├── index.ts │ │ │ ├── narrow-properties.ts │ │ │ └── native-element-only-types.ts │ │ │ └── utilities │ │ │ ├── index.ts │ │ │ ├── rtl-opt-out.ts │ │ │ ├── warn-dependent.ts │ │ │ └── warn-out-of-prod.ts │ │ ├── README.md │ │ ├── collapsible │ │ └── src │ │ │ ├── collapsible │ │ │ ├── collapsible.base.tsx │ │ │ ├── collapsible.style.ts │ │ │ ├── collapsible.tsx │ │ │ ├── collapsible.types.ts │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── customizations │ │ └── src │ │ │ ├── customizations │ │ │ ├── add-alpha-channel-to-hex.ts │ │ │ ├── index.ts │ │ │ ├── m365-dark-theme.ts │ │ │ ├── m365-extended-semantic-slots.types.ts │ │ │ ├── m365-light-theme.ts │ │ │ ├── m365-theme.types.ts │ │ │ └── styles │ │ │ │ ├── button.styles.ts │ │ │ │ ├── check.styles.ts │ │ │ │ ├── checkbox.styles.ts │ │ │ │ ├── choice-group-option.styles.ts │ │ │ │ ├── contextual-menu.styles.ts │ │ │ │ ├── default-button.styles.ts │ │ │ │ ├── detail-row-check.styles.tsx │ │ │ │ ├── details-list-column.styles.ts │ │ │ │ ├── details-row.styles.ts │ │ │ │ ├── dialog-footer.styles.ts │ │ │ │ ├── group-header.styles.ts │ │ │ │ ├── index.ts │ │ │ │ ├── m365-styles.ts │ │ │ │ ├── overlay.styles.ts │ │ │ │ ├── panel.styles.ts │ │ │ │ ├── pivot.styles.ts │ │ │ │ ├── primary-button.styles.ts │ │ │ │ ├── search-box.styles.ts │ │ │ │ └── spinner.styles.ts │ │ │ ├── index.ts │ │ │ └── utils │ │ │ ├── check-style-props.ts │ │ │ ├── color-test-helpers.ts │ │ │ ├── get-data-vis-color-array.ts │ │ │ ├── get-data-vis-color-array.types.ts │ │ │ ├── get-data-vis-color-cached.ts │ │ │ ├── get-data-vis-color-cached.types.ts │ │ │ ├── get-extended-data-vis-colors.ts │ │ │ ├── get-new-data-vis.types.ts │ │ │ ├── get-panel-theme.ts │ │ │ ├── index.ts │ │ │ ├── theme-wrapper │ │ │ ├── index.ts │ │ │ ├── theme-wrapper.tsx │ │ │ └── theme-wrapper.types.ts │ │ │ ├── themed.tsx │ │ │ ├── throw-on-undefined-color.ts │ │ │ ├── use-m365-customizer-theme.ts │ │ │ ├── use-m365-theme.ts │ │ │ └── use-theme-styles.ts │ │ ├── hooks │ │ └── use-id │ │ │ └── src │ │ │ ├── index.ts │ │ │ └── use-id │ │ │ ├── index.ts │ │ │ ├── use-id.ts │ │ │ └── use-id.types.ts │ │ ├── loading │ │ └── src │ │ │ ├── index.ts │ │ │ └── loading │ │ │ ├── index.ts │ │ │ └── loading-pane │ │ │ ├── index.ts │ │ │ ├── loading-pane.base.tsx │ │ │ ├── loading-pane.style.ts │ │ │ ├── loading-pane.ts │ │ │ └── loading-pane.types.ts │ │ ├── ppacStyles │ │ ├── button.styles.ts │ │ ├── default-button.styles.ts │ │ ├── index.ts │ │ └── m365-ppac-styles.ts │ │ ├── setup-wizard-action-bar-v2 │ │ ├── index.ts │ │ ├── setup-wizard-action-bar-v2.base.tsx │ │ ├── setup-wizard-action-bar-v2.styles.ts │ │ ├── setup-wizard-action-bar-v2.tsx │ │ ├── setup-wizard-action-bar-v2.types.ts │ │ └── setup-wizard-action-bar-v2.utils.ts │ │ ├── subway-nav │ │ ├── common.ts │ │ ├── subway-nav-no-animation.styles.tsx │ │ ├── subway-nav.base.tsx │ │ ├── subway-nav.styles.tsx │ │ ├── subway-nav.tsx │ │ ├── subway-nav.types.ts │ │ ├── subway-node.types.ts │ │ └── wizard.types.ts │ │ ├── subway-node │ │ ├── index.ts │ │ ├── subway-node.base.tsx │ │ ├── subway-node.styles.ts │ │ ├── subway-node.tsx │ │ └── subway-node.types.ts │ │ ├── themes │ │ ├── index.ts │ │ ├── ppac-dark-theme.ts │ │ └── ppac-light-theme.ts │ │ ├── utilities │ │ ├── animation.ts │ │ ├── common.ts │ │ └── index.ts │ │ ├── wizard-action-bar │ │ ├── index.ts │ │ ├── wizard-action-bar.base.tsx │ │ ├── wizard-action-bar.styles.ts │ │ ├── wizard-action-bar.tsx │ │ └── wizard-action-bar.types.ts │ │ └── wizard │ │ ├── index.ts │ │ ├── wizard.base.tsx │ │ ├── wizard.styles.ts │ │ ├── wizard.ts │ │ └── wizard.types.ts ├── config │ └── tests.js ├── featureconfig.json ├── jest.config.js ├── media │ ├── SubwayNav-Action.gif │ └── SubwayNav-Animation.gif ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── TagList ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode │ ├── launch.json │ └── settings.json ├── README.md ├── TagList.pcfproj ├── TagList │ ├── ContextExtended.ts │ ├── ControlManifest.Input.xml │ ├── ManifestConstants.ts │ ├── __mocks__ │ │ ├── mock-context.ts │ │ ├── mock-datasets.ts │ │ └── mock-parameters.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── datasetmapping.test.ts.snap │ │ │ ├── taglist-component.test.tsx.snap │ │ │ └── taglist-lifecycle.test.tsx.snap │ │ ├── datasetmapping.test.ts │ │ ├── taglist-component.test.tsx │ │ └── taglist-lifecycle.test.tsx │ ├── components │ │ ├── BaseButton.classNames.ts │ │ ├── CanvasTagList.tsx │ │ ├── Component.types.ts │ │ ├── DatasetMapping.ts │ │ ├── Tag.tsx │ │ └── TagItem.styles.ts │ ├── index.ts │ └── strings │ │ └── TagList.1033.resx ├── config │ └── tests.js ├── jest.config.js ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── ThemeGenerator ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── ThemeGenerator │ ├── ControlManifest.Input.xml │ ├── components │ │ ├── AccessibilityChecker.tsx │ │ ├── AccessibilityDetailsList.tsx │ │ ├── FabricPalette.tsx │ │ ├── FabricSlotWidget.tsx │ │ ├── Header.tsx │ │ ├── Samples │ │ │ └── index.tsx │ │ ├── SemanticSlots.tsx │ │ ├── SemanticSlotsDetailsList.tsx │ │ ├── ThemeDesignerColorPicker.tsx │ │ ├── ThemeSlots.tsx │ │ └── ThemingDesigner.tsx │ ├── index.ts │ ├── shared │ │ ├── MainPanelStyles.tsx │ │ └── Typography.tsx │ └── strings │ │ └── FluentThemeDesigner.1033.resx ├── package-lock.json ├── package.json ├── pcfconfig.json ├── themeGenerator.pcfproj └── tsconfig.json └── media └── README ├── image-20211118101819181-16437559707993.png ├── image-20211118102026642-16437559687022.png ├── image-20211207145216177-16437559645861.png ├── image-20220201151348193.png └── image-20220201162444337.png /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/pr_validate_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/.github/workflows/pr_validate_all.yml -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/powercat-code-components/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/powercat-code-components/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/.vs/powercat-code-components/v17/.suo -------------------------------------------------------------------------------- /.vs/powercat-code-components/v17/workspaceFileList.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/.vs/powercat-code-components/v17/workspaceFileList.bin -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /AutoWidthLabel/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/.eslintrc.json -------------------------------------------------------------------------------- /AutoWidthLabel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/.gitignore -------------------------------------------------------------------------------- /AutoWidthLabel/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/.prettierrc.json -------------------------------------------------------------------------------- /AutoWidthLabel/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/.vscode/launch.json -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/ControlManifest.Input.xml -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/ManifestTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/ManifestTypes.ts -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/component.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/component.styles.ts -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/component.types.ts -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/css/AutoWidthLabel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/css/AutoWidthLabel.css -------------------------------------------------------------------------------- /AutoWidthLabel/AutoWidthLabel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/AutoWidthLabel/index.ts -------------------------------------------------------------------------------- /AutoWidthLabel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/README.md -------------------------------------------------------------------------------- /AutoWidthLabel/auto-width-label.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/auto-width-label.pcfproj -------------------------------------------------------------------------------- /AutoWidthLabel/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/jest.config.js -------------------------------------------------------------------------------- /AutoWidthLabel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/package-lock.json -------------------------------------------------------------------------------- /AutoWidthLabel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/package.json -------------------------------------------------------------------------------- /AutoWidthLabel/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/pcfconfig.json -------------------------------------------------------------------------------- /AutoWidthLabel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/AutoWidthLabel/tsconfig.json -------------------------------------------------------------------------------- /Breadcrumb/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/.eslintrc.json -------------------------------------------------------------------------------- /Breadcrumb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/.gitignore -------------------------------------------------------------------------------- /Breadcrumb/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/.prettierrc.json -------------------------------------------------------------------------------- /Breadcrumb/BreadCrumb.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/BreadCrumb.pcfproj -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/ContextExtended.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/ManifestConstants.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/_test_/breadcrumb-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/_test_/breadcrumb-lifecycle.test.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/_test_/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/_test_/datasetmapping.test.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/components/CanvasBreadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/components/CanvasBreadcrumb.tsx -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/components/DatasetMapping.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/components/components.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/components/components.types.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/fluentui-fork/FocusZone/FocusZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/fluentui-fork/FocusZone/FocusZone.tsx -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/fluentui-fork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/fluentui-fork/README.md -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/index.ts -------------------------------------------------------------------------------- /Breadcrumb/Breadcrumb/strings/Breadcrumb.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/Breadcrumb/strings/Breadcrumb.1033.resx -------------------------------------------------------------------------------- /Breadcrumb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/README.md -------------------------------------------------------------------------------- /Breadcrumb/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/config/tests.js -------------------------------------------------------------------------------- /Breadcrumb/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/jest.config.js -------------------------------------------------------------------------------- /Breadcrumb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/package-lock.json -------------------------------------------------------------------------------- /Breadcrumb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/package.json -------------------------------------------------------------------------------- /Breadcrumb/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/pcfconfig.json -------------------------------------------------------------------------------- /Breadcrumb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Breadcrumb/tsconfig.json -------------------------------------------------------------------------------- /Calendar/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/.eslintrc.json -------------------------------------------------------------------------------- /Calendar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/.gitignore -------------------------------------------------------------------------------- /Calendar/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/.prettierrc.json -------------------------------------------------------------------------------- /Calendar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/.vscode/launch.json -------------------------------------------------------------------------------- /Calendar/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Calendar/Calendar.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar.pcfproj -------------------------------------------------------------------------------- /Calendar/Calendar/CalendarDateStrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/CalendarDateStrings.d.ts -------------------------------------------------------------------------------- /Calendar/Calendar/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/ContextExtended.ts -------------------------------------------------------------------------------- /Calendar/Calendar/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Calendar/Calendar/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/ManifestConstants.ts -------------------------------------------------------------------------------- /Calendar/Calendar/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Calendar/Calendar/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Calendar/Calendar/__tests__/calendar-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/__tests__/calendar-lifecycle.test.ts -------------------------------------------------------------------------------- /Calendar/Calendar/components/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/components/Calendar.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/components/Component.types.ts -------------------------------------------------------------------------------- /Calendar/Calendar/components/DateTimePickerStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/components/DateTimePickerStrings.ts -------------------------------------------------------------------------------- /Calendar/Calendar/components/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/components/Utilities.ts -------------------------------------------------------------------------------- /Calendar/Calendar/css/Calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/css/Calendar.css -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/Calendar/Calendar.base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/Calendar/Calendar.base.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/Calendar/Calendar.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/Calendar/Calendar.styles.ts -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/Calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/Calendar/Calendar.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/Calendar/Calendar.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/Calendar/Calendar.types.ts -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/Calendar/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/Calendar/defaults.ts -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/Calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/Calendar/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/FocusZone/FocusZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/FocusZone/FocusZone.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/fluentui-fork/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/fluentui-fork/Readme.md -------------------------------------------------------------------------------- /Calendar/Calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/Readme.md -------------------------------------------------------------------------------- /Calendar/Calendar/loc/bg-bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/bg-bg.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/ca-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/ca-es.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/da-dk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/da-dk.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/de-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/de-de.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/el-gr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/el-gr.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/en-us.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/en-us.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/es-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/es-es.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/et-ee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/et-ee.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/eu-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/eu-es.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/fi-fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/fi-fi.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/fr-ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/fr-ca.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/fr-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/fr-fr.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/hu-hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/hu-hu.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/it-it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/it-it.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/ja-jp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/ja-jp.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/lt-lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/lt-lt.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/lv-lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/lv-lv.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/nb-no.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/nb-no.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/nl-nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/nl-nl.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/pl-pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/pl-pl.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/pt-br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/pt-br.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/pt-pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/pt-pt.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/ro-ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/ro-ro.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/ru-ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/ru-ru.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/sk-sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/sk-sk.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/sr-latn-rs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/sr-latn-rs.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/sv-se.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/sv-se.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/tr-tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/tr-tr.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/vi-vn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/vi-vn.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/zh-cn.ts -------------------------------------------------------------------------------- /Calendar/Calendar/loc/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/loc/zh-tw.ts -------------------------------------------------------------------------------- /Calendar/Calendar/strings/Calendar.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/Calendar/strings/Calendar.1033.resx -------------------------------------------------------------------------------- /Calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/README.md -------------------------------------------------------------------------------- /Calendar/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/config/tests.js -------------------------------------------------------------------------------- /Calendar/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/jest.config.js -------------------------------------------------------------------------------- /Calendar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/package-lock.json -------------------------------------------------------------------------------- /Calendar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/package.json -------------------------------------------------------------------------------- /Calendar/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/pcfconfig.json -------------------------------------------------------------------------------- /Calendar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Calendar/tsconfig.json -------------------------------------------------------------------------------- /Card/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/.eslintrc.json -------------------------------------------------------------------------------- /Card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/.gitignore -------------------------------------------------------------------------------- /Card/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/.prettierrc.json -------------------------------------------------------------------------------- /Card/Card.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card.pcfproj -------------------------------------------------------------------------------- /Card/Card/Card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/Card.ts -------------------------------------------------------------------------------- /Card/Card/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Card/Card/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/ManifestConstants.ts -------------------------------------------------------------------------------- /Card/Card/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Card/Card/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Card/Card/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Card/Card/__tests__/card-lifecycle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/__tests__/card-lifecycle.test.tsx -------------------------------------------------------------------------------- /Card/Card/components/CardCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/CardCanvas.tsx -------------------------------------------------------------------------------- /Card/Card/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Component.types.ts -------------------------------------------------------------------------------- /Card/Card/components/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/ContextExtended.ts -------------------------------------------------------------------------------- /Card/Card/components/FluentIcon.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/FluentIcon.types.ts -------------------------------------------------------------------------------- /Card/Card/components/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Icons.ts -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/Component.types.ts -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/Icon.tsx -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/OverflowMenu.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/OverflowMenu.styles.ts -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/OverflowMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/OverflowMenu.tsx -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/OverflowMenuItem.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/OverflowMenuItem.styles.ts -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/OverflowMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/OverflowMenuItem.tsx -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/ToolbarComponent.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/ToolbarComponent.styles.ts -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/ToolbarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/ToolbarComponent.tsx -------------------------------------------------------------------------------- /Card/Card/components/Toolbar/datasetmapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/Toolbar/datasetmapping.ts -------------------------------------------------------------------------------- /Card/Card/components/fluentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/fluentIcon.tsx -------------------------------------------------------------------------------- /Card/Card/components/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/components/helper.ts -------------------------------------------------------------------------------- /Card/Card/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Card"; 2 | -------------------------------------------------------------------------------- /Card/Card/strings/Card.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/Card/strings/Card.1033.resx -------------------------------------------------------------------------------- /Card/config/react-jsx-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/config/react-jsx-runtime.js -------------------------------------------------------------------------------- /Card/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/config/tests.js -------------------------------------------------------------------------------- /Card/featureconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/featureconfig.json -------------------------------------------------------------------------------- /Card/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/jest.config.js -------------------------------------------------------------------------------- /Card/media/Cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/media/Cards.png -------------------------------------------------------------------------------- /Card/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/package-lock.json -------------------------------------------------------------------------------- /Card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/package.json -------------------------------------------------------------------------------- /Card/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/pcfconfig.json -------------------------------------------------------------------------------- /Card/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/readme.md -------------------------------------------------------------------------------- /Card/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Card/tsconfig.json -------------------------------------------------------------------------------- /CommandBar/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/.eslintrc.json -------------------------------------------------------------------------------- /CommandBar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/.gitignore -------------------------------------------------------------------------------- /CommandBar/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/.prettierrc.json -------------------------------------------------------------------------------- /CommandBar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/.vscode/launch.json -------------------------------------------------------------------------------- /CommandBar/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /CommandBar/CommandBar.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar.pcfproj -------------------------------------------------------------------------------- /CommandBar/CommandBar/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/ContextExtended.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/ControlManifest.Input.xml -------------------------------------------------------------------------------- /CommandBar/CommandBar/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/ManifestConstants.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/components/CanvasCommandBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/components/CanvasCommandBar.tsx -------------------------------------------------------------------------------- /CommandBar/CommandBar/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/components/Component.types.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/components/DatasetMapping.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/css/CommandBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/css/CommandBar.css -------------------------------------------------------------------------------- /CommandBar/CommandBar/fluentui-fork/FocusZone/FocusZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/fluentui-fork/FocusZone/FocusZone.tsx -------------------------------------------------------------------------------- /CommandBar/CommandBar/fluentui-fork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/fluentui-fork/README.md -------------------------------------------------------------------------------- /CommandBar/CommandBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/index.ts -------------------------------------------------------------------------------- /CommandBar/CommandBar/strings/CommandBar.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/CommandBar/strings/CommandBar.1033.resx -------------------------------------------------------------------------------- /CommandBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/README.md -------------------------------------------------------------------------------- /CommandBar/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/config/tests.js -------------------------------------------------------------------------------- /CommandBar/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/jest.config.js -------------------------------------------------------------------------------- /CommandBar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/package-lock.json -------------------------------------------------------------------------------- /CommandBar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/package.json -------------------------------------------------------------------------------- /CommandBar/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/pcfconfig.json -------------------------------------------------------------------------------- /CommandBar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/CommandBar/tsconfig.json -------------------------------------------------------------------------------- /ContextMenu/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/.eslintrc.json -------------------------------------------------------------------------------- /ContextMenu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/.gitignore -------------------------------------------------------------------------------- /ContextMenu/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/.prettierrc.json -------------------------------------------------------------------------------- /ContextMenu/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/.vscode/launch.json -------------------------------------------------------------------------------- /ContextMenu/ContextMenu.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu.pcfproj -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/ContextExtended.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/ManifestConstants.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/components/CanvasContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/components/CanvasContextMenu.tsx -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/components/Component.types.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/components/DatasetMapping.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/index.ts -------------------------------------------------------------------------------- /ContextMenu/ContextMenu/strings/ContextMenu.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/ContextMenu/strings/ContextMenu.1033.resx -------------------------------------------------------------------------------- /ContextMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/README.md -------------------------------------------------------------------------------- /ContextMenu/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/config/tests.js -------------------------------------------------------------------------------- /ContextMenu/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/jest.config.js -------------------------------------------------------------------------------- /ContextMenu/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/package-lock.json -------------------------------------------------------------------------------- /ContextMenu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/package.json -------------------------------------------------------------------------------- /ContextMenu/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/pcfconfig.json -------------------------------------------------------------------------------- /ContextMenu/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ContextMenu/tsconfig.json -------------------------------------------------------------------------------- /DetailsList/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/.eslintrc.json -------------------------------------------------------------------------------- /DetailsList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/.gitignore -------------------------------------------------------------------------------- /DetailsList/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/.prettierrc.json -------------------------------------------------------------------------------- /DetailsList/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/.vscode/launch.json -------------------------------------------------------------------------------- /DetailsList/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/.vscode/settings.json -------------------------------------------------------------------------------- /DetailsList/DetailsList.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList.pcfproj -------------------------------------------------------------------------------- /DetailsList/DetailsList/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/Component.types.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/ContextExtended.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/ControlManifest.Input.xml -------------------------------------------------------------------------------- /DetailsList/DetailsList/DatasetArrayItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/DatasetArrayItem.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/Grid.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/Grid.styles.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/Grid.tsx -------------------------------------------------------------------------------- /DetailsList/DetailsList/GridCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/GridCell.tsx -------------------------------------------------------------------------------- /DetailsList/DetailsList/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/ManifestConstants.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/NoFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/NoFields.tsx -------------------------------------------------------------------------------- /DetailsList/DetailsList/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/__tests__/ChildCells.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/__tests__/ChildCells.test.tsx -------------------------------------------------------------------------------- /DetailsList/DetailsList/__tests__/Grid.lifecycle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/__tests__/Grid.lifecycle.test.tsx -------------------------------------------------------------------------------- /DetailsList/DetailsList/__tests__/GridCell-Image.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/__tests__/GridCell-Image.test.tsx -------------------------------------------------------------------------------- /DetailsList/DetailsList/__tests__/GridCell.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/__tests__/GridCell.test.tsx -------------------------------------------------------------------------------- /DetailsList/DetailsList/css/DetailsList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/css/DetailsList.css -------------------------------------------------------------------------------- /DetailsList/DetailsList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/index.ts -------------------------------------------------------------------------------- /DetailsList/DetailsList/strings/DetailsList.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/strings/DetailsList.1033.resx -------------------------------------------------------------------------------- /DetailsList/DetailsList/strings/stringFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/DetailsList/strings/stringFormat.ts -------------------------------------------------------------------------------- /DetailsList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/README.md -------------------------------------------------------------------------------- /DetailsList/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/config/tests.js -------------------------------------------------------------------------------- /DetailsList/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/jest.config.js -------------------------------------------------------------------------------- /DetailsList/media/README/DetailsList.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/DetailsList.gif -------------------------------------------------------------------------------- /DetailsList/media/README/ExpandCollapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/ExpandCollapse.gif -------------------------------------------------------------------------------- /DetailsList/media/README/image-20220322144857658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/image-20220322144857658.png -------------------------------------------------------------------------------- /DetailsList/media/README/image-20220323115627812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/image-20220323115627812.png -------------------------------------------------------------------------------- /DetailsList/media/README/image-20220323150248449.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/image-20220323150248449.png -------------------------------------------------------------------------------- /DetailsList/media/README/image-20220323161817524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/image-20220323161817524.png -------------------------------------------------------------------------------- /DetailsList/media/README/image-20220323162641272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/image-20220323162641272.png -------------------------------------------------------------------------------- /DetailsList/media/README/image-20220323162653369.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/image-20220323162653369.png -------------------------------------------------------------------------------- /DetailsList/media/README/image-20220324160725874.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/media/README/image-20220324160725874.png -------------------------------------------------------------------------------- /DetailsList/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/package-lock.json -------------------------------------------------------------------------------- /DetailsList/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/package.json -------------------------------------------------------------------------------- /DetailsList/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/pcfconfig.json -------------------------------------------------------------------------------- /DetailsList/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DetailsList/tsconfig.json -------------------------------------------------------------------------------- /DonutChart/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/.eslintrc.json -------------------------------------------------------------------------------- /DonutChart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/.gitignore -------------------------------------------------------------------------------- /DonutChart/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/.prettierrc.json -------------------------------------------------------------------------------- /DonutChart/DonutChart.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart.pcfproj -------------------------------------------------------------------------------- /DonutChart/DonutChart/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/ControlManifest.Input.xml -------------------------------------------------------------------------------- /DonutChart/DonutChart/DonutChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/DonutChart.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/ManifestConstants.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/components/CanvasDonutChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/components/CanvasDonutChart.tsx -------------------------------------------------------------------------------- /DonutChart/DonutChart/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/components/Component.types.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/components/DatasetMapping.ts -------------------------------------------------------------------------------- /DonutChart/DonutChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DonutChart'; 2 | -------------------------------------------------------------------------------- /DonutChart/DonutChart/strings/DonutChart.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/DonutChart/strings/DonutChart.1033.resx -------------------------------------------------------------------------------- /DonutChart/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/config/tests.js -------------------------------------------------------------------------------- /DonutChart/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/jest.config.js -------------------------------------------------------------------------------- /DonutChart/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/package-lock.json -------------------------------------------------------------------------------- /DonutChart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/package.json -------------------------------------------------------------------------------- /DonutChart/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/pcfconfig.json -------------------------------------------------------------------------------- /DonutChart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/readme.md -------------------------------------------------------------------------------- /DonutChart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/DonutChart/tsconfig.json -------------------------------------------------------------------------------- /Elevation/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/.eslintrc.json -------------------------------------------------------------------------------- /Elevation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/.gitignore -------------------------------------------------------------------------------- /Elevation/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/.prettierrc.json -------------------------------------------------------------------------------- /Elevation/Elevation.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/Elevation.pcfproj -------------------------------------------------------------------------------- /Elevation/Elevation/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/Elevation/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Elevation/Elevation/component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/Elevation/component.types.ts -------------------------------------------------------------------------------- /Elevation/Elevation/css/Elevation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/Elevation/css/Elevation.css -------------------------------------------------------------------------------- /Elevation/Elevation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/Elevation/index.ts -------------------------------------------------------------------------------- /Elevation/Elevation/strings/Elevation.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/Elevation/strings/Elevation.1033.resx -------------------------------------------------------------------------------- /Elevation/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/jest.config.js -------------------------------------------------------------------------------- /Elevation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/package-lock.json -------------------------------------------------------------------------------- /Elevation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/package.json -------------------------------------------------------------------------------- /Elevation/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/pcfconfig.json -------------------------------------------------------------------------------- /Elevation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Elevation/tsconfig.json -------------------------------------------------------------------------------- /Facepile/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/.eslintrc.json -------------------------------------------------------------------------------- /Facepile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/.gitignore -------------------------------------------------------------------------------- /Facepile/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/.prettierrc.json -------------------------------------------------------------------------------- /Facepile/Facepile.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile.pcfproj -------------------------------------------------------------------------------- /Facepile/Facepile/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/ContextExtended.ts -------------------------------------------------------------------------------- /Facepile/Facepile/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Facepile/Facepile/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/ManifestConstants.ts -------------------------------------------------------------------------------- /Facepile/Facepile/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Facepile/Facepile/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Facepile/Facepile/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Facepile/Facepile/_test_/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/_test_/datasetmapping.test.ts -------------------------------------------------------------------------------- /Facepile/Facepile/_test_/facepile-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/_test_/facepile-lifecycle.test.ts -------------------------------------------------------------------------------- /Facepile/Facepile/components/CanvasFacepile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/components/CanvasFacepile.tsx -------------------------------------------------------------------------------- /Facepile/Facepile/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/components/Component.types.ts -------------------------------------------------------------------------------- /Facepile/Facepile/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/components/DatasetMapping.ts -------------------------------------------------------------------------------- /Facepile/Facepile/components/Helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/components/Helper.ts -------------------------------------------------------------------------------- /Facepile/Facepile/fluenui-fork/BaseButton.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/fluenui-fork/BaseButton.styles.ts -------------------------------------------------------------------------------- /Facepile/Facepile/fluenui-fork/Facepile/Facepile.base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/fluenui-fork/Facepile/Facepile.base.tsx -------------------------------------------------------------------------------- /Facepile/Facepile/fluenui-fork/Facepile/Facepile.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/fluenui-fork/Facepile/Facepile.styles.ts -------------------------------------------------------------------------------- /Facepile/Facepile/fluenui-fork/Facepile/Facepile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/fluenui-fork/Facepile/Facepile.tsx -------------------------------------------------------------------------------- /Facepile/Facepile/fluenui-fork/Facepile/Facepile.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/fluenui-fork/Facepile/Facepile.types.ts -------------------------------------------------------------------------------- /Facepile/Facepile/fluenui-fork/Facepile/FacepileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/fluenui-fork/Facepile/FacepileButton.tsx -------------------------------------------------------------------------------- /Facepile/Facepile/fluenui-fork/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/fluenui-fork/Readme.md -------------------------------------------------------------------------------- /Facepile/Facepile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/index.ts -------------------------------------------------------------------------------- /Facepile/Facepile/strings/Facepile.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/Facepile/strings/Facepile.1033.resx -------------------------------------------------------------------------------- /Facepile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/README.md -------------------------------------------------------------------------------- /Facepile/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/config/tests.js -------------------------------------------------------------------------------- /Facepile/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/jest.config.js -------------------------------------------------------------------------------- /Facepile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/package-lock.json -------------------------------------------------------------------------------- /Facepile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/package.json -------------------------------------------------------------------------------- /Facepile/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/pcfconfig.json -------------------------------------------------------------------------------- /Facepile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Facepile/tsconfig.json -------------------------------------------------------------------------------- /FluentMessageBar/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/.eslintrc.json -------------------------------------------------------------------------------- /FluentMessageBar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/.gitignore -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar.pcfproj -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/.gitignore -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/ControlManifest.Input.xml -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/ManifestConstant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/ManifestConstant.ts -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/components/ContextEx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/components/ContextEx.ts -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/components/IMessagebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/components/IMessagebar.ts -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/components/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/components/Icons.ts -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/components/Messagebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/components/Messagebar.tsx -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/components/fluentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/components/fluentIcon.tsx -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/css/messagebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/css/messagebar.css -------------------------------------------------------------------------------- /FluentMessageBar/FluentMessageBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/FluentMessageBar/index.ts -------------------------------------------------------------------------------- /FluentMessageBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/README.md -------------------------------------------------------------------------------- /FluentMessageBar/feature-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/feature-config.json -------------------------------------------------------------------------------- /FluentMessageBar/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/jest.config.js -------------------------------------------------------------------------------- /FluentMessageBar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/package-lock.json -------------------------------------------------------------------------------- /FluentMessageBar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/package.json -------------------------------------------------------------------------------- /FluentMessageBar/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/pcfconfig.json -------------------------------------------------------------------------------- /FluentMessageBar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/FluentMessageBar/tsconfig.json -------------------------------------------------------------------------------- /GaugeChart/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/.eslintrc.json -------------------------------------------------------------------------------- /GaugeChart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/.gitignore -------------------------------------------------------------------------------- /GaugeChart/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/.prettierrc.json -------------------------------------------------------------------------------- /GaugeChart/GaugeChart.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart.pcfproj -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/ControlManifest.Input.xml -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/GaugeChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/GaugeChart.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/ManifestConstants.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/components/CanvasGaugeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/components/CanvasGaugeChart.tsx -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/components/Component.types.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/components/DatasetMapping.ts -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GaugeChart'; 2 | -------------------------------------------------------------------------------- /GaugeChart/GaugeChart/strings/GaugeChart.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/GaugeChart/strings/GaugeChart.1033.resx -------------------------------------------------------------------------------- /GaugeChart/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/config/tests.js -------------------------------------------------------------------------------- /GaugeChart/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/jest.config.js -------------------------------------------------------------------------------- /GaugeChart/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/package-lock.json -------------------------------------------------------------------------------- /GaugeChart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/package.json -------------------------------------------------------------------------------- /GaugeChart/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/pcfconfig.json -------------------------------------------------------------------------------- /GaugeChart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/readme.md -------------------------------------------------------------------------------- /GaugeChart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/GaugeChart/tsconfig.json -------------------------------------------------------------------------------- /HorizontalBarChart/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/.eslintrc.json -------------------------------------------------------------------------------- /HorizontalBarChart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/.gitignore -------------------------------------------------------------------------------- /HorizontalBarChart/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/.prettierrc.json -------------------------------------------------------------------------------- /HorizontalBarChart/HorizontalBarChart.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/HorizontalBarChart.pcfproj -------------------------------------------------------------------------------- /HorizontalBarChart/HorizontalBarChart/HorizontalChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/HorizontalBarChart/HorizontalChart.ts -------------------------------------------------------------------------------- /HorizontalBarChart/HorizontalBarChart/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/HorizontalBarChart/ManifestConstants.ts -------------------------------------------------------------------------------- /HorizontalBarChart/HorizontalBarChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HorizontalChart'; 2 | -------------------------------------------------------------------------------- /HorizontalBarChart/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/config/tests.js -------------------------------------------------------------------------------- /HorizontalBarChart/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/jest.config.js -------------------------------------------------------------------------------- /HorizontalBarChart/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/package-lock.json -------------------------------------------------------------------------------- /HorizontalBarChart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/package.json -------------------------------------------------------------------------------- /HorizontalBarChart/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/pcfconfig.json -------------------------------------------------------------------------------- /HorizontalBarChart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/readme.md -------------------------------------------------------------------------------- /HorizontalBarChart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/HorizontalBarChart/tsconfig.json -------------------------------------------------------------------------------- /Icon/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/.eslintrc.json -------------------------------------------------------------------------------- /Icon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/.gitignore -------------------------------------------------------------------------------- /Icon/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/.prettierrc.json -------------------------------------------------------------------------------- /Icon/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/ContextExtended.ts -------------------------------------------------------------------------------- /Icon/Icon.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/Icon.pcfproj -------------------------------------------------------------------------------- /Icon/Icon/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/Icon/ContextExtended.ts -------------------------------------------------------------------------------- /Icon/Icon/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/Icon/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Icon/Icon/IconComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/Icon/IconComponent.tsx -------------------------------------------------------------------------------- /Icon/Icon/ManifestTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/Icon/ManifestTypes.ts -------------------------------------------------------------------------------- /Icon/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/Icon/index.ts -------------------------------------------------------------------------------- /Icon/Icon/strings/Icon.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/Icon/strings/Icon.1033.resx -------------------------------------------------------------------------------- /Icon/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/package-lock.json -------------------------------------------------------------------------------- /Icon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/package.json -------------------------------------------------------------------------------- /Icon/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/pcfconfig.json -------------------------------------------------------------------------------- /Icon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Icon/tsconfig.json -------------------------------------------------------------------------------- /KeyboardShortcuts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/.eslintrc.json -------------------------------------------------------------------------------- /KeyboardShortcuts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/.gitignore -------------------------------------------------------------------------------- /KeyboardShortcuts/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/.prettierrc.json -------------------------------------------------------------------------------- /KeyboardShortcuts/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/.vscode/launch.json -------------------------------------------------------------------------------- /KeyboardShortcuts/KeyboardShortcuts/__mocks__/keycodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/KeyboardShortcuts/__mocks__/keycodes.ts -------------------------------------------------------------------------------- /KeyboardShortcuts/KeyboardShortcuts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/KeyboardShortcuts/index.ts -------------------------------------------------------------------------------- /KeyboardShortcuts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/README.md -------------------------------------------------------------------------------- /KeyboardShortcuts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/jest.config.js -------------------------------------------------------------------------------- /KeyboardShortcuts/keyboard-shortcuts.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/keyboard-shortcuts.pcfproj -------------------------------------------------------------------------------- /KeyboardShortcuts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/package-lock.json -------------------------------------------------------------------------------- /KeyboardShortcuts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/package.json -------------------------------------------------------------------------------- /KeyboardShortcuts/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/pcfconfig.json -------------------------------------------------------------------------------- /KeyboardShortcuts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/KeyboardShortcuts/tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/LICENSE -------------------------------------------------------------------------------- /MaskedTextField/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/.eslintrc.json -------------------------------------------------------------------------------- /MaskedTextField/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/.gitignore -------------------------------------------------------------------------------- /MaskedTextField/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/.prettierrc.json -------------------------------------------------------------------------------- /MaskedTextField/MaskedTextField.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/MaskedTextField.pcfproj -------------------------------------------------------------------------------- /MaskedTextField/MaskedTextField/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/MaskedTextField/ControlManifest.Input.xml -------------------------------------------------------------------------------- /MaskedTextField/MaskedTextField/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/MaskedTextField/ManifestConstants.ts -------------------------------------------------------------------------------- /MaskedTextField/MaskedTextField/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/MaskedTextField/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /MaskedTextField/MaskedTextField/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/MaskedTextField/index.ts -------------------------------------------------------------------------------- /MaskedTextField/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/README.md -------------------------------------------------------------------------------- /MaskedTextField/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/config/tests.js -------------------------------------------------------------------------------- /MaskedTextField/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowEvents": "on" 3 | } -------------------------------------------------------------------------------- /MaskedTextField/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/jest.config.js -------------------------------------------------------------------------------- /MaskedTextField/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/package-lock.json -------------------------------------------------------------------------------- /MaskedTextField/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/package.json -------------------------------------------------------------------------------- /MaskedTextField/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/pcfconfig.json -------------------------------------------------------------------------------- /MaskedTextField/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/tests.js -------------------------------------------------------------------------------- /MaskedTextField/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/MaskedTextField/tsconfig.json -------------------------------------------------------------------------------- /ModernThemeGenerator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/.eslintrc.json -------------------------------------------------------------------------------- /ModernThemeGenerator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/.gitignore -------------------------------------------------------------------------------- /ModernThemeGenerator/ModernThemeGenerator.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/ModernThemeGenerator.pcfproj -------------------------------------------------------------------------------- /ModernThemeGenerator/ModernThemeGenerator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/ModernThemeGenerator/index.ts -------------------------------------------------------------------------------- /ModernThemeGenerator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/package-lock.json -------------------------------------------------------------------------------- /ModernThemeGenerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/package.json -------------------------------------------------------------------------------- /ModernThemeGenerator/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/pcfconfig.json -------------------------------------------------------------------------------- /ModernThemeGenerator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ModernThemeGenerator/tsconfig.json -------------------------------------------------------------------------------- /Nav/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/.eslintrc.json -------------------------------------------------------------------------------- /Nav/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/.gitignore -------------------------------------------------------------------------------- /Nav/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/.prettierrc.json -------------------------------------------------------------------------------- /Nav/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/.vscode/launch.json -------------------------------------------------------------------------------- /Nav/Nav.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav.pcfproj -------------------------------------------------------------------------------- /Nav/Nav/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/ContextExtended.ts -------------------------------------------------------------------------------- /Nav/Nav/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Nav/Nav/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/ManifestConstants.ts -------------------------------------------------------------------------------- /Nav/Nav/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Nav/Nav/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Nav/Nav/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Nav/Nav/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /Nav/Nav/__tests__/nav-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/__tests__/nav-lifecycle.test.ts -------------------------------------------------------------------------------- /Nav/Nav/components/CanvasNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/components/CanvasNav.tsx -------------------------------------------------------------------------------- /Nav/Nav/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/components/Component.types.ts -------------------------------------------------------------------------------- /Nav/Nav/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/components/DatasetMapping.ts -------------------------------------------------------------------------------- /Nav/Nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/index.ts -------------------------------------------------------------------------------- /Nav/Nav/strings/FluentNav.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/Nav/strings/FluentNav.1033.resx -------------------------------------------------------------------------------- /Nav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/README.md -------------------------------------------------------------------------------- /Nav/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/config/tests.js -------------------------------------------------------------------------------- /Nav/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/jest.config.js -------------------------------------------------------------------------------- /Nav/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/package-lock.json -------------------------------------------------------------------------------- /Nav/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/package.json -------------------------------------------------------------------------------- /Nav/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/pcfconfig.json -------------------------------------------------------------------------------- /Nav/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Nav/tsconfig.json -------------------------------------------------------------------------------- /PeoplePicker/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/.eslintrc.json -------------------------------------------------------------------------------- /PeoplePicker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/.gitignore -------------------------------------------------------------------------------- /PeoplePicker/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/.prettierrc.json -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker.pcfproj -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/ContextExtended.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/ControlManifest.Input.xml -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/ManifestConstants.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/components/Component.types.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/components/DatasetMapping.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/components/Peoplepicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/components/Peoplepicker.tsx -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/components/PersonaSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/components/PersonaSchema.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/css/PeoplePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/css/PeoplePicker.css -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/index.ts -------------------------------------------------------------------------------- /PeoplePicker/PeoplePicker/strings/PeoplePicker.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/PeoplePicker/strings/PeoplePicker.1033.resx -------------------------------------------------------------------------------- /PeoplePicker/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/config/tests.js -------------------------------------------------------------------------------- /PeoplePicker/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowEvents": "on" 3 | } 4 | -------------------------------------------------------------------------------- /PeoplePicker/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/jest.config.js -------------------------------------------------------------------------------- /PeoplePicker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/package-lock.json -------------------------------------------------------------------------------- /PeoplePicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/package.json -------------------------------------------------------------------------------- /PeoplePicker/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/pcfconfig.json -------------------------------------------------------------------------------- /PeoplePicker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/readme.md -------------------------------------------------------------------------------- /PeoplePicker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/PeoplePicker/tsconfig.json -------------------------------------------------------------------------------- /Persona/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/.eslintrc.json -------------------------------------------------------------------------------- /Persona/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/.gitignore -------------------------------------------------------------------------------- /Persona/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/.prettierrc.json -------------------------------------------------------------------------------- /Persona/Persona.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona.pcfproj -------------------------------------------------------------------------------- /Persona/Persona/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Persona/Persona/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/ManifestConstants.ts -------------------------------------------------------------------------------- /Persona/Persona/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Persona/Persona/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Persona/Persona/__tests__/Persona-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/__tests__/Persona-lifecycle.test.ts -------------------------------------------------------------------------------- /Persona/Persona/components/CanvasPersona.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/components/CanvasPersona.tsx -------------------------------------------------------------------------------- /Persona/Persona/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/components/Component.types.ts -------------------------------------------------------------------------------- /Persona/Persona/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/index.ts -------------------------------------------------------------------------------- /Persona/Persona/strings/Persona.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/Persona/strings/Persona.1033.resx -------------------------------------------------------------------------------- /Persona/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/README.md -------------------------------------------------------------------------------- /Persona/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/config/tests.js -------------------------------------------------------------------------------- /Persona/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/jest.config.js -------------------------------------------------------------------------------- /Persona/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/package-lock.json -------------------------------------------------------------------------------- /Persona/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/package.json -------------------------------------------------------------------------------- /Persona/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/pcfconfig.json -------------------------------------------------------------------------------- /Persona/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Persona/tsconfig.json -------------------------------------------------------------------------------- /Picker/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/.eslintrc.json -------------------------------------------------------------------------------- /Picker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/.gitignore -------------------------------------------------------------------------------- /Picker/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/.prettierrc.json -------------------------------------------------------------------------------- /Picker/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/.vscode/launch.json -------------------------------------------------------------------------------- /Picker/Picker.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker.pcfproj -------------------------------------------------------------------------------- /Picker/Picker/CanvasTagPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/CanvasTagPicker.tsx -------------------------------------------------------------------------------- /Picker/Picker/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/ContextExtended.ts -------------------------------------------------------------------------------- /Picker/Picker/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Picker/Picker/ManifestConstants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/ManifestConstants.tsx -------------------------------------------------------------------------------- /Picker/Picker/TagPickerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/TagPickerComponent.tsx -------------------------------------------------------------------------------- /Picker/Picker/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Picker/Picker/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Picker/Picker/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Picker/Picker/__tests__/picker-lifecycle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/__tests__/picker-lifecycle.test.tsx -------------------------------------------------------------------------------- /Picker/Picker/__tests__/tag-picker-component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/__tests__/tag-picker-component.test.tsx -------------------------------------------------------------------------------- /Picker/Picker/css/TagPicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/css/TagPicker.css -------------------------------------------------------------------------------- /Picker/Picker/fluentui-fork/BaseButton.classNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/fluentui-fork/BaseButton.classNames.ts -------------------------------------------------------------------------------- /Picker/Picker/fluentui-fork/BasePicker.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/fluentui-fork/BasePicker.styles.ts -------------------------------------------------------------------------------- /Picker/Picker/fluentui-fork/TagPicker/TagItem.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/fluentui-fork/TagPicker/TagItem.styles.ts -------------------------------------------------------------------------------- /Picker/Picker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/index.ts -------------------------------------------------------------------------------- /Picker/Picker/strings/TagPicker.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/Picker/strings/TagPicker.1033.resx -------------------------------------------------------------------------------- /Picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/README.md -------------------------------------------------------------------------------- /Picker/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/config/tests.js -------------------------------------------------------------------------------- /Picker/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/jest.config.js -------------------------------------------------------------------------------- /Picker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/package-lock.json -------------------------------------------------------------------------------- /Picker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/package.json -------------------------------------------------------------------------------- /Picker/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/pcfconfig.json -------------------------------------------------------------------------------- /Picker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Picker/tsconfig.json -------------------------------------------------------------------------------- /Pivot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/.eslintrc.json -------------------------------------------------------------------------------- /Pivot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/.gitignore -------------------------------------------------------------------------------- /Pivot/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/.prettierrc.json -------------------------------------------------------------------------------- /Pivot/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/.vscode/launch.json -------------------------------------------------------------------------------- /Pivot/Pivot.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot.pcfproj -------------------------------------------------------------------------------- /Pivot/Pivot/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/ContextExtended.ts -------------------------------------------------------------------------------- /Pivot/Pivot/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Pivot/Pivot/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/ManifestConstants.ts -------------------------------------------------------------------------------- /Pivot/Pivot/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Pivot/Pivot/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Pivot/Pivot/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Pivot/Pivot/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /Pivot/Pivot/__tests__/pivot-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/__tests__/pivot-lifecycle.test.ts -------------------------------------------------------------------------------- /Pivot/Pivot/components/CanvasPivot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/components/CanvasPivot.tsx -------------------------------------------------------------------------------- /Pivot/Pivot/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/components/Component.types.ts -------------------------------------------------------------------------------- /Pivot/Pivot/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/components/DatasetMapping.ts -------------------------------------------------------------------------------- /Pivot/Pivot/fluentui-fork/FocusZone/FocusZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/fluentui-fork/FocusZone/FocusZone.tsx -------------------------------------------------------------------------------- /Pivot/Pivot/fluentui-fork/Pivot/Pivot.base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/fluentui-fork/Pivot/Pivot.base.tsx -------------------------------------------------------------------------------- /Pivot/Pivot/fluentui-fork/Pivot/Pivot.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/fluentui-fork/Pivot/Pivot.styles.ts -------------------------------------------------------------------------------- /Pivot/Pivot/fluentui-fork/Pivot/Pivot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/fluentui-fork/Pivot/Pivot.tsx -------------------------------------------------------------------------------- /Pivot/Pivot/fluentui-fork/Pivot/observeResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/fluentui-fork/Pivot/observeResize.ts -------------------------------------------------------------------------------- /Pivot/Pivot/fluentui-fork/Pivot/useOverflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/fluentui-fork/Pivot/useOverflow.ts -------------------------------------------------------------------------------- /Pivot/Pivot/fluentui-fork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/fluentui-fork/README.md -------------------------------------------------------------------------------- /Pivot/Pivot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/index.ts -------------------------------------------------------------------------------- /Pivot/Pivot/strings/Pivot.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/Pivot/strings/Pivot.1033.resx -------------------------------------------------------------------------------- /Pivot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/README.md -------------------------------------------------------------------------------- /Pivot/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/config/tests.js -------------------------------------------------------------------------------- /Pivot/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/jest.config.js -------------------------------------------------------------------------------- /Pivot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/package-lock.json -------------------------------------------------------------------------------- /Pivot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/package.json -------------------------------------------------------------------------------- /Pivot/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/pcfconfig.json -------------------------------------------------------------------------------- /Pivot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Pivot/tsconfig.json -------------------------------------------------------------------------------- /ProgressIndicator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/.eslintrc.json -------------------------------------------------------------------------------- /ProgressIndicator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/.gitignore -------------------------------------------------------------------------------- /ProgressIndicator/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/.prettierrc.json -------------------------------------------------------------------------------- /ProgressIndicator/ProgressIndicator.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/ProgressIndicator.pcfproj -------------------------------------------------------------------------------- /ProgressIndicator/ProgressIndicator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/ProgressIndicator/index.ts -------------------------------------------------------------------------------- /ProgressIndicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/README.md -------------------------------------------------------------------------------- /ProgressIndicator/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/config/tests.js -------------------------------------------------------------------------------- /ProgressIndicator/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/jest.config.js -------------------------------------------------------------------------------- /ProgressIndicator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/package-lock.json -------------------------------------------------------------------------------- /ProgressIndicator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/package.json -------------------------------------------------------------------------------- /ProgressIndicator/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/pcfconfig.json -------------------------------------------------------------------------------- /ProgressIndicator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ProgressIndicator/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/README.md -------------------------------------------------------------------------------- /ResizableTextarea/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/.eslintrc.json -------------------------------------------------------------------------------- /ResizableTextarea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/.gitignore -------------------------------------------------------------------------------- /ResizableTextarea/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/.prettierrc.json -------------------------------------------------------------------------------- /ResizableTextarea/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/.vscode/launch.json -------------------------------------------------------------------------------- /ResizableTextarea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/README.md -------------------------------------------------------------------------------- /ResizableTextarea/ResizableTextarea/ManifestTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/ResizableTextarea/ManifestTypes.ts -------------------------------------------------------------------------------- /ResizableTextarea/ResizableTextarea/component.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/ResizableTextarea/component.styles.ts -------------------------------------------------------------------------------- /ResizableTextarea/ResizableTextarea/component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/ResizableTextarea/component.types.ts -------------------------------------------------------------------------------- /ResizableTextarea/ResizableTextarea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/ResizableTextarea/index.ts -------------------------------------------------------------------------------- /ResizableTextarea/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/jest.config.js -------------------------------------------------------------------------------- /ResizableTextarea/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/package-lock.json -------------------------------------------------------------------------------- /ResizableTextarea/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/package.json -------------------------------------------------------------------------------- /ResizableTextarea/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/pcfconfig.json -------------------------------------------------------------------------------- /ResizableTextarea/resizable-textarea.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/resizable-textarea.pcfproj -------------------------------------------------------------------------------- /ResizableTextarea/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ResizableTextarea/tsconfig.json -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SearchBox/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/.eslintrc.json -------------------------------------------------------------------------------- /SearchBox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/.gitignore -------------------------------------------------------------------------------- /SearchBox/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/.prettierrc.json -------------------------------------------------------------------------------- /SearchBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/README.md -------------------------------------------------------------------------------- /SearchBox/SearchBox.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox.pcfproj -------------------------------------------------------------------------------- /SearchBox/SearchBox/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/ControlManifest.Input.xml -------------------------------------------------------------------------------- /SearchBox/SearchBox/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/ManifestConstants.ts -------------------------------------------------------------------------------- /SearchBox/SearchBox/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /SearchBox/SearchBox/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /SearchBox/SearchBox/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/components/Component.types.ts -------------------------------------------------------------------------------- /SearchBox/SearchBox/components/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/components/SearchBox.tsx -------------------------------------------------------------------------------- /SearchBox/SearchBox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/index.ts -------------------------------------------------------------------------------- /SearchBox/SearchBox/strings/SearchBox.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/SearchBox/strings/SearchBox.1033.resx -------------------------------------------------------------------------------- /SearchBox/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/config/tests.js -------------------------------------------------------------------------------- /SearchBox/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowEvents": "on" 3 | } 4 | -------------------------------------------------------------------------------- /SearchBox/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/jest.config.js -------------------------------------------------------------------------------- /SearchBox/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/package-lock.json -------------------------------------------------------------------------------- /SearchBox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/package.json -------------------------------------------------------------------------------- /SearchBox/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/pcfconfig.json -------------------------------------------------------------------------------- /SearchBox/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/tests.js -------------------------------------------------------------------------------- /SearchBox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SearchBox/tsconfig.json -------------------------------------------------------------------------------- /Shimmer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/.eslintrc.json -------------------------------------------------------------------------------- /Shimmer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/.gitignore -------------------------------------------------------------------------------- /Shimmer/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/.prettierrc.json -------------------------------------------------------------------------------- /Shimmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/README.md -------------------------------------------------------------------------------- /Shimmer/Shimmer.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer.pcfproj -------------------------------------------------------------------------------- /Shimmer/Shimmer/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/ContextExtended.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Shimmer/Shimmer/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/ManifestConstants.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/__tests__/shimmer-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/__tests__/shimmer-lifecycle.test.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/components/CanvasShimmer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/components/CanvasShimmer.tsx -------------------------------------------------------------------------------- /Shimmer/Shimmer/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/components/Component.types.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/components/DatasetMapping.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/index.ts -------------------------------------------------------------------------------- /Shimmer/Shimmer/strings/Shimmer.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/Shimmer/strings/Shimmer.1033.resx -------------------------------------------------------------------------------- /Shimmer/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/config/tests.js -------------------------------------------------------------------------------- /Shimmer/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/jest.config.js -------------------------------------------------------------------------------- /Shimmer/media/Shimmer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/media/Shimmer.gif -------------------------------------------------------------------------------- /Shimmer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/package-lock.json -------------------------------------------------------------------------------- /Shimmer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/package.json -------------------------------------------------------------------------------- /Shimmer/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/pcfconfig.json -------------------------------------------------------------------------------- /Shimmer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Shimmer/tsconfig.json -------------------------------------------------------------------------------- /Solution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Solution/.gitignore -------------------------------------------------------------------------------- /Solution/Solution.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Solution/Solution.cdsproj -------------------------------------------------------------------------------- /Solution/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Solution/src/Other/Customizations.xml -------------------------------------------------------------------------------- /Solution/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Solution/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Solution/src/Other/Solution.xml -------------------------------------------------------------------------------- /SpinButton/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/.eslintrc.json -------------------------------------------------------------------------------- /SpinButton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/.gitignore -------------------------------------------------------------------------------- /SpinButton/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/.prettierrc.json -------------------------------------------------------------------------------- /SpinButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/README.md -------------------------------------------------------------------------------- /SpinButton/SpinButton.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton.pcfproj -------------------------------------------------------------------------------- /SpinButton/SpinButton/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/ControlManifest.Input.xml -------------------------------------------------------------------------------- /SpinButton/SpinButton/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/ManifestConstants.ts -------------------------------------------------------------------------------- /SpinButton/SpinButton/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /SpinButton/SpinButton/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /SpinButton/SpinButton/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/components/Component.types.ts -------------------------------------------------------------------------------- /SpinButton/SpinButton/components/SpinButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/components/SpinButton.tsx -------------------------------------------------------------------------------- /SpinButton/SpinButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/index.ts -------------------------------------------------------------------------------- /SpinButton/SpinButton/strings/SpinButton.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/SpinButton/strings/SpinButton.1033.resx -------------------------------------------------------------------------------- /SpinButton/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/config/tests.js -------------------------------------------------------------------------------- /SpinButton/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/jest.config.js -------------------------------------------------------------------------------- /SpinButton/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/package-lock.json -------------------------------------------------------------------------------- /SpinButton/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/package.json -------------------------------------------------------------------------------- /SpinButton/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/pcfconfig.json -------------------------------------------------------------------------------- /SpinButton/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SpinButton/tsconfig.json -------------------------------------------------------------------------------- /Spinner/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/.eslintrc.json -------------------------------------------------------------------------------- /Spinner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/.gitignore -------------------------------------------------------------------------------- /Spinner/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/.prettierrc.json -------------------------------------------------------------------------------- /Spinner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/README.md -------------------------------------------------------------------------------- /Spinner/Spinner.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner.pcfproj -------------------------------------------------------------------------------- /Spinner/Spinner/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Spinner/Spinner/ManifestTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/ManifestTypes.ts -------------------------------------------------------------------------------- /Spinner/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /Spinner/Spinner/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /Spinner/Spinner/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /Spinner/Spinner/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /Spinner/Spinner/__tests__/spinner-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/__tests__/spinner-lifecycle.test.ts -------------------------------------------------------------------------------- /Spinner/Spinner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/index.ts -------------------------------------------------------------------------------- /Spinner/Spinner/strings/Spinner.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/Spinner/strings/Spinner.1033.resx -------------------------------------------------------------------------------- /Spinner/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/config/tests.js -------------------------------------------------------------------------------- /Spinner/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/jest.config.js -------------------------------------------------------------------------------- /Spinner/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/package-lock.json -------------------------------------------------------------------------------- /Spinner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/package.json -------------------------------------------------------------------------------- /Spinner/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/pcfconfig.json -------------------------------------------------------------------------------- /Spinner/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/Spinner/tsconfig.json -------------------------------------------------------------------------------- /StackedBarChart/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/.eslintrc.json -------------------------------------------------------------------------------- /StackedBarChart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/.gitignore -------------------------------------------------------------------------------- /StackedBarChart/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/.prettierrc.json -------------------------------------------------------------------------------- /StackedBarChart/StackedBarChart.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/StackedBarChart.pcfproj -------------------------------------------------------------------------------- /StackedBarChart/StackedBarChart/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/StackedBarChart/ManifestConstants.ts -------------------------------------------------------------------------------- /StackedBarChart/StackedBarChart/StackbarChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/StackedBarChart/StackbarChart.ts -------------------------------------------------------------------------------- /StackedBarChart/StackedBarChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StackbarChart'; 2 | -------------------------------------------------------------------------------- /StackedBarChart/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/config/tests.js -------------------------------------------------------------------------------- /StackedBarChart/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/jest.config.js -------------------------------------------------------------------------------- /StackedBarChart/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/package-lock.json -------------------------------------------------------------------------------- /StackedBarChart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/package.json -------------------------------------------------------------------------------- /StackedBarChart/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/pcfconfig.json -------------------------------------------------------------------------------- /StackedBarChart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/readme.md -------------------------------------------------------------------------------- /StackedBarChart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/StackedBarChart/tsconfig.json -------------------------------------------------------------------------------- /SubwayNav/.eslintignore: -------------------------------------------------------------------------------- 1 | /SubwayNav/utilities -------------------------------------------------------------------------------- /SubwayNav/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/.eslintrc.json -------------------------------------------------------------------------------- /SubwayNav/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/.gitignore -------------------------------------------------------------------------------- /SubwayNav/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/.prettierrc.json -------------------------------------------------------------------------------- /SubwayNav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/README.md -------------------------------------------------------------------------------- /SubwayNav/SubwayNav.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav.pcfproj -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/ContextExtended.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/ControlManifest.Input.xml -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/ManifestConstants.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/_test_/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/_test_/datasetmapping.test.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/_test_/subwaynav-lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/_test_/subwaynav-lifecycle.test.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/components/CanvasSubwayNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/components/CanvasSubwayNav.tsx -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/components/DatasetMapping.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/components/StepSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/components/StepSchema.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/components/components.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/components/components.types.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/strings/Subwaynav.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/strings/Subwaynav.1033.resx -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/FocusZone/FocusZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/FocusZone/FocusZone.tsx -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/MainUtilities/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/MainUtilities/src/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/README.md -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/collapsible/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/collapsible/src/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/hooks/use-id/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/hooks/use-id/src/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/loading/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/loading/src/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/ppacStyles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/ppacStyles/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/subway-nav/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/subway-nav/common.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/subway-nav/subway-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/subway-nav/subway-nav.tsx -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/subway-nav/wizard.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/subway-nav/wizard.types.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/subway-node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/subway-node/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/themes/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/themes/ppac-dark-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/themes/ppac-dark-theme.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/themes/ppac-light-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/themes/ppac-light-theme.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/utilities/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/utilities/animation.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/utilities/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/utilities/common.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/utilities/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/wizard-action-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/wizard-action-bar/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/wizard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/wizard/index.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/wizard/wizard.base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/wizard/wizard.base.tsx -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/wizard/wizard.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/wizard/wizard.styles.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/wizard/wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/wizard/wizard.ts -------------------------------------------------------------------------------- /SubwayNav/SubwayNav/utilities/wizard/wizard.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/SubwayNav/utilities/wizard/wizard.types.ts -------------------------------------------------------------------------------- /SubwayNav/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/config/tests.js -------------------------------------------------------------------------------- /SubwayNav/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "treatValidationErrorsAsWarnings": "on" 3 | } -------------------------------------------------------------------------------- /SubwayNav/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/jest.config.js -------------------------------------------------------------------------------- /SubwayNav/media/SubwayNav-Action.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/media/SubwayNav-Action.gif -------------------------------------------------------------------------------- /SubwayNav/media/SubwayNav-Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/media/SubwayNav-Animation.gif -------------------------------------------------------------------------------- /SubwayNav/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/package-lock.json -------------------------------------------------------------------------------- /SubwayNav/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/package.json -------------------------------------------------------------------------------- /SubwayNav/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/pcfconfig.json -------------------------------------------------------------------------------- /SubwayNav/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/SubwayNav/tsconfig.json -------------------------------------------------------------------------------- /TagList/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/.eslintrc.json -------------------------------------------------------------------------------- /TagList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/.gitignore -------------------------------------------------------------------------------- /TagList/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/.prettierrc.json -------------------------------------------------------------------------------- /TagList/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/.vscode/launch.json -------------------------------------------------------------------------------- /TagList/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /TagList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/README.md -------------------------------------------------------------------------------- /TagList/TagList.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList.pcfproj -------------------------------------------------------------------------------- /TagList/TagList/ContextExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/ContextExtended.ts -------------------------------------------------------------------------------- /TagList/TagList/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/ControlManifest.Input.xml -------------------------------------------------------------------------------- /TagList/TagList/ManifestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/ManifestConstants.ts -------------------------------------------------------------------------------- /TagList/TagList/__mocks__/mock-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/__mocks__/mock-context.ts -------------------------------------------------------------------------------- /TagList/TagList/__mocks__/mock-datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/__mocks__/mock-datasets.ts -------------------------------------------------------------------------------- /TagList/TagList/__mocks__/mock-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/__mocks__/mock-parameters.ts -------------------------------------------------------------------------------- /TagList/TagList/__tests__/datasetmapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/__tests__/datasetmapping.test.ts -------------------------------------------------------------------------------- /TagList/TagList/__tests__/taglist-component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/__tests__/taglist-component.test.tsx -------------------------------------------------------------------------------- /TagList/TagList/__tests__/taglist-lifecycle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/__tests__/taglist-lifecycle.test.tsx -------------------------------------------------------------------------------- /TagList/TagList/components/BaseButton.classNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/components/BaseButton.classNames.ts -------------------------------------------------------------------------------- /TagList/TagList/components/CanvasTagList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/components/CanvasTagList.tsx -------------------------------------------------------------------------------- /TagList/TagList/components/Component.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/components/Component.types.ts -------------------------------------------------------------------------------- /TagList/TagList/components/DatasetMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/components/DatasetMapping.ts -------------------------------------------------------------------------------- /TagList/TagList/components/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/components/Tag.tsx -------------------------------------------------------------------------------- /TagList/TagList/components/TagItem.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/components/TagItem.styles.ts -------------------------------------------------------------------------------- /TagList/TagList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/index.ts -------------------------------------------------------------------------------- /TagList/TagList/strings/TagList.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/TagList/strings/TagList.1033.resx -------------------------------------------------------------------------------- /TagList/config/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/config/tests.js -------------------------------------------------------------------------------- /TagList/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/jest.config.js -------------------------------------------------------------------------------- /TagList/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/package-lock.json -------------------------------------------------------------------------------- /TagList/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/package.json -------------------------------------------------------------------------------- /TagList/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/pcfconfig.json -------------------------------------------------------------------------------- /TagList/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/TagList/tsconfig.json -------------------------------------------------------------------------------- /ThemeGenerator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/.eslintrc.json -------------------------------------------------------------------------------- /ThemeGenerator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/.gitignore -------------------------------------------------------------------------------- /ThemeGenerator/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/.prettierrc.json -------------------------------------------------------------------------------- /ThemeGenerator/ThemeGenerator/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/ThemeGenerator/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ThemeGenerator/ThemeGenerator/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/ThemeGenerator/components/Header.tsx -------------------------------------------------------------------------------- /ThemeGenerator/ThemeGenerator/components/ThemeSlots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/ThemeGenerator/components/ThemeSlots.tsx -------------------------------------------------------------------------------- /ThemeGenerator/ThemeGenerator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/ThemeGenerator/index.ts -------------------------------------------------------------------------------- /ThemeGenerator/ThemeGenerator/shared/MainPanelStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/ThemeGenerator/shared/MainPanelStyles.tsx -------------------------------------------------------------------------------- /ThemeGenerator/ThemeGenerator/shared/Typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/ThemeGenerator/shared/Typography.tsx -------------------------------------------------------------------------------- /ThemeGenerator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/package-lock.json -------------------------------------------------------------------------------- /ThemeGenerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/package.json -------------------------------------------------------------------------------- /ThemeGenerator/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/pcfconfig.json -------------------------------------------------------------------------------- /ThemeGenerator/themeGenerator.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/themeGenerator.pcfproj -------------------------------------------------------------------------------- /ThemeGenerator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/ThemeGenerator/tsconfig.json -------------------------------------------------------------------------------- /media/README/image-20211118101819181-16437559707993.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/media/README/image-20211118101819181-16437559707993.png -------------------------------------------------------------------------------- /media/README/image-20211118102026642-16437559687022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/media/README/image-20211118102026642-16437559687022.png -------------------------------------------------------------------------------- /media/README/image-20211207145216177-16437559645861.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/media/README/image-20211207145216177-16437559645861.png -------------------------------------------------------------------------------- /media/README/image-20220201151348193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/media/README/image-20220201151348193.png -------------------------------------------------------------------------------- /media/README/image-20220201162444337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-code-components/HEAD/media/README/image-20220201162444337.png --------------------------------------------------------------------------------