cecomponent 2.0.91 → 2.0.93
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/dist/ce-component-lib.css +1 -1
- package/dist/ce-component-lib.js +58 -58
- package/dist/ce-component-lib.mjs +4065 -4081
- package/dist/components/Common/DataGrid/CEDataGridDynamicsTable.d.ts +3 -3
- package/dist/components/Common/InputBox/CEInputTextBox.stories.d.ts +0 -10
- package/package.json +13 -17
- package/dist/components/Common/InputBox/CEInputTextBox.test.d.ts +0 -0
|
@@ -188,9 +188,9 @@ interface CEDataGridDynamicTableProps {
|
|
|
188
188
|
shouldColumnPersist?: boolean;
|
|
189
189
|
enableFreezeControls?: boolean;
|
|
190
190
|
/**
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
191
|
+
* Controlled freeze configuration.
|
|
192
|
+
* - number: freeze the first N currently visible columns
|
|
193
|
+
* - string[]: freeze these exact column ids when visible
|
|
194
194
|
*/
|
|
195
195
|
freezeColumns?: FreezeColumnsInput;
|
|
196
196
|
/** Initial freeze config for uncontrolled mode (applied once on mount). */
|
|
@@ -2,10 +2,6 @@ import { StoryObj } from '@storybook/react';
|
|
|
2
2
|
declare const meta: {
|
|
3
3
|
title: string;
|
|
4
4
|
component: import('react').FC<import('./CEInputTextBox').ValidatedInputProps>;
|
|
5
|
-
args: {
|
|
6
|
-
value: string;
|
|
7
|
-
onChange: () => void;
|
|
8
|
-
};
|
|
9
5
|
parameters: {
|
|
10
6
|
layout: string;
|
|
11
7
|
};
|
|
@@ -32,9 +28,3 @@ export declare const Textarea: Story;
|
|
|
32
28
|
export declare const Small: Story;
|
|
33
29
|
export declare const Large: Story;
|
|
34
30
|
export declare const Disabled: Story;
|
|
35
|
-
export declare const TextareaShowMoreEditableLong: Story;
|
|
36
|
-
export declare const TextareaShowMoreMultiline: Story;
|
|
37
|
-
export declare const TextareaShowMoreDisabledLong: Story;
|
|
38
|
-
export declare const TextareaShowMoreShortNoToggle: Story;
|
|
39
|
-
export declare const TextareaShowMoreTestNotes: Story;
|
|
40
|
-
export declare const TextareaShowMoreAsyncLoadedInteraction: Story;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cecomponent",
|
|
3
3
|
"description": "A React component library for building modern UIs for Cleanearth",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.93",
|
|
5
5
|
"main": "dist/ce-component-lib.js",
|
|
6
6
|
"module": "dist/ce-component-lib.mjs",
|
|
7
7
|
"types": "dist/idex.d.ts",
|
|
@@ -40,36 +40,32 @@
|
|
|
40
40
|
"react-dom": "^19.1.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@chromatic-com/storybook": "^5.0.0",
|
|
44
43
|
"@eslint/js": "^9.17.0",
|
|
45
|
-
"@storybook/addon-a11y": "^10.2.0",
|
|
46
|
-
"@storybook/addon-docs": "^10.2.0",
|
|
47
|
-
"@storybook/addon-onboarding": "^10.2.0",
|
|
48
|
-
"@storybook/addon-vitest": "^10.2.0",
|
|
49
|
-
"@storybook/react-vite": "^10.2.0",
|
|
50
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
51
|
-
"@testing-library/react": "^16.3.2",
|
|
52
|
-
"@testing-library/user-event": "^14.6.1",
|
|
53
44
|
"@types/react": "^18.3.20",
|
|
54
45
|
"@types/react-dom": "^18.3.6",
|
|
55
46
|
"@types/recharts": "^1.8.29",
|
|
56
47
|
"@types/xlsx": "^0.0.35",
|
|
57
48
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
58
|
-
"@vitest/browser-playwright": "^4.0.17",
|
|
59
|
-
"@vitest/coverage-v8": "^4.0.17",
|
|
60
49
|
"eslint": "^9.17.0",
|
|
61
50
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
62
51
|
"eslint-plugin-react-refresh": "^0.4.16",
|
|
63
|
-
"eslint-plugin-storybook": "^10.2.0",
|
|
64
52
|
"globals": "^15.14.0",
|
|
65
|
-
"jsdom": "^29.1.1",
|
|
66
|
-
"playwright": "^1.57.0",
|
|
67
53
|
"prettier": "3.4.2",
|
|
68
|
-
"storybook": "^10.2.0",
|
|
69
54
|
"typescript": "~5.6.2",
|
|
70
55
|
"typescript-eslint": "^8.18.2",
|
|
71
56
|
"vite": "^6.0.5",
|
|
72
57
|
"vite-plugin-dts": "^4.5.4",
|
|
73
|
-
"
|
|
58
|
+
"storybook": "^10.2.0",
|
|
59
|
+
"@storybook/react-vite": "^10.2.0",
|
|
60
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
61
|
+
"@storybook/addon-vitest": "^10.2.0",
|
|
62
|
+
"@storybook/addon-a11y": "^10.2.0",
|
|
63
|
+
"@storybook/addon-docs": "^10.2.0",
|
|
64
|
+
"@storybook/addon-onboarding": "^10.2.0",
|
|
65
|
+
"eslint-plugin-storybook": "^10.2.0",
|
|
66
|
+
"vitest": "^4.0.17",
|
|
67
|
+
"playwright": "^1.57.0",
|
|
68
|
+
"@vitest/browser-playwright": "^4.0.17",
|
|
69
|
+
"@vitest/coverage-v8": "^4.0.17"
|
|
74
70
|
}
|
|
75
71
|
}
|
|
File without changes
|