pixel-react 1.5.1 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/AttachmentButton/types.d.ts +2 -0
- package/lib/components/Icon/types.d.ts +1 -1
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +0 -2
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +0 -1
- package/lib/components/Select/Select.stories.d.ts +0 -1
- package/lib/index.d.ts +3 -1
- package/lib/index.esm.js +79 -70
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +79 -70
- package/lib/index.js.map +1 -1
- package/package.json +3 -2
- package/src/assets/Themes/BaseTheme.scss +2 -1
- package/src/assets/Themes/DarkTheme.scss +1 -0
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/success.svg +7 -3
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/styles/_fonts.scss +0 -32
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +1 -1
- package/src/components/AppHeader/AppHeader.scss +5 -3
- package/src/components/AppHeader/AppHeader.stories.tsx +35 -4
- package/src/components/AppHeader/AppHeader.tsx +135 -135
- package/src/components/AttachmentButton/AttachmentButton.stories.tsx +2 -0
- package/src/components/AttachmentButton/AttachmentButton.tsx +23 -16
- package/src/components/AttachmentButton/types.ts +2 -0
- package/src/components/Icon/Icon.tsx +2 -1
- package/src/components/Icon/Icons.scss +5 -0
- package/src/components/Icon/types.ts +1 -1
- package/src/components/MenuOption/MenuOption.scss +2 -2
- package/src/components/MenuOption/MenuOption.tsx +1 -0
- package/src/components/RadioGroup/RadioGroup.stories.tsx +2 -0
- package/src/components/Tooltip/Tooltip.scss +1 -1
- package/src/components/Tooltip/Tooltip.stories.tsx +4 -3
- package/src/components/Tooltip/Tooltip.tsx +2 -2
- package/src/components/Typography/Typography.scss +27 -24
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/AddButton/AddButton.d.ts +0 -5
- package/lib/components/AddButton/AddButton.stories.d.ts +0 -6
- package/lib/components/AddButton/index.d.ts +0 -1
- package/lib/components/AddButton/types.d.ts +0 -4
- package/lib/components/AttachImage/AttachImage.stories.d.ts +0 -7
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +0 -6
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +0 -8
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +0 -7
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +0 -8
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +0 -6
- package/lib/components/EditTextField/EditTextField.stories.d.ts +0 -10
- package/lib/components/Editor/Editor.stories.d.ts +0 -6
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +0 -4
- package/lib/components/Excel/ExcelFile.stories.d.ts +0 -6
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +0 -14
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +0 -24
- package/lib/components/StatusCard/StatusCard.stories.d.ts +0 -11
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +0 -10
- /package/lib/components/ExcelFile/{ColorBarSelector → ColorBarselector}/ColorBarSelector.d.ts +0 -0
@@ -1,8 +0,0 @@
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
2
|
-
import MultiRadialChart from './MultiRadialChart';
|
3
|
-
declare const meta: Meta<typeof MultiRadialChart>;
|
4
|
-
export default meta;
|
5
|
-
type Story = StoryObj<typeof MultiRadialChart>;
|
6
|
-
export declare const Default: Story;
|
7
|
-
export declare const numberLegend: Story;
|
8
|
-
export declare const PillLegend: Story;
|
@@ -1,6 +0,0 @@
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
-
import ConnectingBranch from './ConnectingBranch';
|
3
|
-
declare const meta: Meta<typeof ConnectingBranch>;
|
4
|
-
export default meta;
|
5
|
-
type Story = StoryObj<typeof ConnectingBranch>;
|
6
|
-
export declare const Default: Story;
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
-
import EditTextField from './EditTextField';
|
3
|
-
import '../../assets/styles/_colors.scss';
|
4
|
-
import './EditTextField.scss';
|
5
|
-
declare const meta: Meta<typeof EditTextField>;
|
6
|
-
type Story = StoryObj<typeof EditTextField>;
|
7
|
-
export declare const textFieldWithLabel: Story;
|
8
|
-
export declare const textFieldWithOutLabel: Story;
|
9
|
-
export declare const openTextField: Story;
|
10
|
-
export default meta;
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import { CellBase } from "./ExcelFile/Excel";
|
2
|
-
interface ChangeExcelStylesOptions {
|
3
|
-
sheetName: string;
|
4
|
-
styleType: string;
|
5
|
-
value: string;
|
6
|
-
selectedCell: {
|
7
|
-
row: number;
|
8
|
-
column: number;
|
9
|
-
}[];
|
10
|
-
}
|
11
|
-
export default function ChangeExcelStyles(setWorksheetsData: React.Dispatch<React.SetStateAction<{
|
12
|
-
[key: string]: Matrix<CellBase>;
|
13
|
-
}>>, options: ChangeExcelStylesOptions): void;
|
14
|
-
export {};
|
@@ -1,24 +0,0 @@
|
|
1
|
-
interface CellStyle {
|
2
|
-
color?: string;
|
3
|
-
backgroundColor?: string;
|
4
|
-
bold?: boolean;
|
5
|
-
italic?: boolean;
|
6
|
-
name?: string;
|
7
|
-
border: {
|
8
|
-
top: string;
|
9
|
-
bottom: string;
|
10
|
-
left: string;
|
11
|
-
right: string;
|
12
|
-
};
|
13
|
-
alignment: {
|
14
|
-
horizontal?: string;
|
15
|
-
vertical?: string;
|
16
|
-
wrapText?: boolean;
|
17
|
-
};
|
18
|
-
}
|
19
|
-
interface CellData {
|
20
|
-
style?: CellStyle;
|
21
|
-
}
|
22
|
-
type ImportExcelStylesData = Array<Array<CellData>>;
|
23
|
-
export default function ImportExcelStyles(data: ImportExcelStylesData | null): void;
|
24
|
-
export {};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
2
|
-
import Card from './StatusCard';
|
3
|
-
import { CardProps } from './types';
|
4
|
-
declare const meta: Meta<typeof Card>;
|
5
|
-
export default meta;
|
6
|
-
type Story = StoryObj<CardProps>;
|
7
|
-
export declare const Passed: Story;
|
8
|
-
export declare const Failed: Story;
|
9
|
-
export declare const Warning: Story;
|
10
|
-
export declare const Skipped: Story;
|
11
|
-
export declare const Flaky: Story;
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
3
|
-
import { MachineExecutionInstanceDataSet } from './types';
|
4
|
-
declare const SequentialPayloadComponent: React.FC<{
|
5
|
-
machineInstances: MachineExecutionInstanceDataSet[];
|
6
|
-
}>;
|
7
|
-
declare const meta: Meta<typeof SequentialPayloadComponent>;
|
8
|
-
type Story = StoryObj<typeof SequentialPayloadComponent>;
|
9
|
-
export declare const Primary: Story;
|
10
|
-
export default meta;
|
/package/lib/components/ExcelFile/{ColorBarSelector → ColorBarselector}/ColorBarSelector.d.ts
RENAMED
File without changes
|