@alixpartners/ui-components 2.5.6 → 2.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +97 -97
- package/dist/RichTextEditor-kTQEDSL0.js +477 -0
- package/dist/components/RichTextEditor/RichTextEditor.js +1 -1
- package/dist/components/RichTextEditor/RichTextEditor.test.js +1 -1
- package/dist/main.js +1 -1
- package/dist/web.config +8 -8
- package/package.json +94 -94
- package/dist/RichTextEditor-cvtLFe4t.js +0 -443
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
2
|
import { d, i as a, r, g as t, s as e, f as c, w as b, v as u } from "../../vi.bdSIJ99Y-017e_Pkz.js";
|
|
3
|
-
import { s as i, R as n } from "../../RichTextEditor-
|
|
3
|
+
import { s as i, R as n } from "../../RichTextEditor-kTQEDSL0.js";
|
|
4
4
|
d("RichTextEditor", () => {
|
|
5
5
|
d("Rendering", () => {
|
|
6
6
|
a("renders label and required marker", () => {
|
package/dist/main.js
CHANGED
|
@@ -12,7 +12,7 @@ import { default as B } from "./components/Dropdown/Dropdown.js";
|
|
|
12
12
|
import { default as R, useFilePickerContext as v } from "./components/FilePicker/FilePicker.js";
|
|
13
13
|
import { default as I } from "./components/Search/Search.js";
|
|
14
14
|
import { default as S } from "./components/Datepicker/Datepicker.js";
|
|
15
|
-
import { R as N } from "./RichTextEditor-
|
|
15
|
+
import { R as N } from "./RichTextEditor-kTQEDSL0.js";
|
|
16
16
|
import { default as w } from "./components/Toast/Toast.js";
|
|
17
17
|
import { T as E } from "./ToastProvider-D5LImZ-Q.js";
|
|
18
18
|
import { u as L } from "./useToast-Cz5MGKnw.js";
|
package/dist/web.config
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<configuration>
|
|
3
|
-
<system.webServer>
|
|
4
|
-
<staticContent>
|
|
5
|
-
<remove fileExtension=".json"/>
|
|
6
|
-
<mimeMap fileExtension=".json" mimeType="application/json"/>
|
|
7
|
-
</staticContent>
|
|
8
|
-
</system.webServer>
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<configuration>
|
|
3
|
+
<system.webServer>
|
|
4
|
+
<staticContent>
|
|
5
|
+
<remove fileExtension=".json"/>
|
|
6
|
+
<mimeMap fileExtension=".json" mimeType="application/json"/>
|
|
7
|
+
</staticContent>
|
|
8
|
+
</system.webServer>
|
|
9
9
|
</configuration>
|
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@alixpartners/ui-components",
|
|
3
|
-
"version": "2.5.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"files": [
|
|
6
|
-
"dist"
|
|
7
|
-
],
|
|
8
|
-
"exports": "./dist/main.js",
|
|
9
|
-
"module": "./dist/main.js",
|
|
10
|
-
"types": "./dist/main.d.ts",
|
|
11
|
-
"license": "SEE LICENSE IN LICENSE.md",
|
|
12
|
-
"repository": "https://alixpartners-dev.visualstudio.com/_git/AP.UIComponents",
|
|
13
|
-
"main": "./dist/umd/index.js",
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "npm run generate-illustrations && tsc -b && vite build",
|
|
16
|
-
"lint": "eslint . --ext ts,tsx",
|
|
17
|
-
"lint:fix": "eslint . --ext ts,tsx --fix",
|
|
18
|
-
"format": "prettier --check .",
|
|
19
|
-
"format:fix": "prettier --write .",
|
|
20
|
-
"stylelint": "stylelint **/*.css",
|
|
21
|
-
"stylelint:fix": "stylelint **/*.css --fix",
|
|
22
|
-
"storybook": "storybook dev -p 6006",
|
|
23
|
-
"build-storybook": "storybook build",
|
|
24
|
-
"test": "vitest",
|
|
25
|
-
"test:unit": "vitest --project unit",
|
|
26
|
-
"test:storybook": "vitest --project storybook",
|
|
27
|
-
"test:ui": "vitest --ui",
|
|
28
|
-
"test:playwright": "playwright test",
|
|
29
|
-
"test:playwright:chromium": "playwright test --project=chromium",
|
|
30
|
-
"test:playwright:firefox": "playwright test --project=firefox",
|
|
31
|
-
"test:playwright:webkit": "playwright test --project=webkit",
|
|
32
|
-
"coverage": "vitest run --coverage",
|
|
33
|
-
"generate-icons": "node ./src/assets/generateIconsHelperFiles.js",
|
|
34
|
-
"generate-illustrations": "node ./src/assets/generateIllustrationsHelperFiles.js",
|
|
35
|
-
"generate-e2e-code": "npx playwright codegen"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"clsx": "^2.1.1"
|
|
39
|
-
},
|
|
40
|
-
"peerDependencies": {
|
|
41
|
-
"notistack": "^3.0.1",
|
|
42
|
-
"radix-ui": "^1.4.2",
|
|
43
|
-
"react": "^18.3.1",
|
|
44
|
-
"react-dom": "^18.3.1"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@chromatic-com/storybook": "^4.0.1",
|
|
48
|
-
"@eslint/js": "^9.25.0",
|
|
49
|
-
"@playwright/test": "^1.60.0",
|
|
50
|
-
"@storybook/addon-designs": "^10.0.2",
|
|
51
|
-
"@storybook/addon-docs": "^9.0.18",
|
|
52
|
-
"@storybook/addon-onboarding": "^9.0.18",
|
|
53
|
-
"@storybook/addon-vitest": "9.0.18",
|
|
54
|
-
"@storybook/react-vite": "^9.0.18",
|
|
55
|
-
"@testing-library/react": "^16.3.0",
|
|
56
|
-
"@types/node": "^22.15.21",
|
|
57
|
-
"@types/react": "^19.1.2",
|
|
58
|
-
"@types/react-dom": "^19.1.2",
|
|
59
|
-
"@vitejs/plugin-react": "^4.4.1",
|
|
60
|
-
"@vitest/browser": "^3.1.4",
|
|
61
|
-
"@vitest/coverage-v8": "^3.1.4",
|
|
62
|
-
"@vitest/ui": "^3.1.4",
|
|
63
|
-
"babel-plugin-react-remove-properties": "^0.3.0",
|
|
64
|
-
"eslint": "^9.25.0",
|
|
65
|
-
"eslint-config-prettier": "^10.1.5",
|
|
66
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
67
|
-
"eslint-plugin-react-refresh": "^0.4.19",
|
|
68
|
-
"eslint-plugin-storybook": "^9.0.18",
|
|
69
|
-
"glob": "^11.0.2",
|
|
70
|
-
"globals": "^16.0.0",
|
|
71
|
-
"happy-dom": "^15.11.6",
|
|
72
|
-
"jsdom": "^26.1.0",
|
|
73
|
-
"notistack": "^3.0.1",
|
|
74
|
-
"playwright": "^1.60.0",
|
|
75
|
-
"postcss-scss": "^4.0.9",
|
|
76
|
-
"prettier": "^3.5.3",
|
|
77
|
-
"sass": "^1.89.0",
|
|
78
|
-
"storybook": "^9.0.18",
|
|
79
|
-
"stylelint": "^16.19.1",
|
|
80
|
-
"stylelint-config-standard": "^38.0.0",
|
|
81
|
-
"stylelint-scss": "^6.12.0",
|
|
82
|
-
"typescript": "~5.8.3",
|
|
83
|
-
"typescript-eslint": "^8.30.1",
|
|
84
|
-
"vite": "^6.3.5",
|
|
85
|
-
"vite-plugin-dts": "^4.5.4",
|
|
86
|
-
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
87
|
-
"vitest": "^3.1.4"
|
|
88
|
-
},
|
|
89
|
-
"eslintConfig": {
|
|
90
|
-
"extends": [
|
|
91
|
-
"plugin:storybook/recommended"
|
|
92
|
-
]
|
|
93
|
-
}
|
|
94
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@alixpartners/ui-components",
|
|
3
|
+
"version": "2.5.7",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"exports": "./dist/main.js",
|
|
9
|
+
"module": "./dist/main.js",
|
|
10
|
+
"types": "./dist/main.d.ts",
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
12
|
+
"repository": "https://alixpartners-dev.visualstudio.com/_git/AP.UIComponents",
|
|
13
|
+
"main": "./dist/umd/index.js",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "npm run generate-illustrations && tsc -b && vite build",
|
|
16
|
+
"lint": "eslint . --ext ts,tsx",
|
|
17
|
+
"lint:fix": "eslint . --ext ts,tsx --fix",
|
|
18
|
+
"format": "prettier --check .",
|
|
19
|
+
"format:fix": "prettier --write .",
|
|
20
|
+
"stylelint": "stylelint **/*.css",
|
|
21
|
+
"stylelint:fix": "stylelint **/*.css --fix",
|
|
22
|
+
"storybook": "storybook dev -p 6006",
|
|
23
|
+
"build-storybook": "storybook build",
|
|
24
|
+
"test": "vitest",
|
|
25
|
+
"test:unit": "vitest --project unit",
|
|
26
|
+
"test:storybook": "vitest --project storybook",
|
|
27
|
+
"test:ui": "vitest --ui",
|
|
28
|
+
"test:playwright": "playwright test",
|
|
29
|
+
"test:playwright:chromium": "playwright test --project=chromium",
|
|
30
|
+
"test:playwright:firefox": "playwright test --project=firefox",
|
|
31
|
+
"test:playwright:webkit": "playwright test --project=webkit",
|
|
32
|
+
"coverage": "vitest run --coverage",
|
|
33
|
+
"generate-icons": "node ./src/assets/generateIconsHelperFiles.js",
|
|
34
|
+
"generate-illustrations": "node ./src/assets/generateIllustrationsHelperFiles.js",
|
|
35
|
+
"generate-e2e-code": "npx playwright codegen"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"clsx": "^2.1.1"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"notistack": "^3.0.1",
|
|
42
|
+
"radix-ui": "^1.4.2",
|
|
43
|
+
"react": "^18.3.1",
|
|
44
|
+
"react-dom": "^18.3.1"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
48
|
+
"@eslint/js": "^9.25.0",
|
|
49
|
+
"@playwright/test": "^1.60.0",
|
|
50
|
+
"@storybook/addon-designs": "^10.0.2",
|
|
51
|
+
"@storybook/addon-docs": "^9.0.18",
|
|
52
|
+
"@storybook/addon-onboarding": "^9.0.18",
|
|
53
|
+
"@storybook/addon-vitest": "9.0.18",
|
|
54
|
+
"@storybook/react-vite": "^9.0.18",
|
|
55
|
+
"@testing-library/react": "^16.3.0",
|
|
56
|
+
"@types/node": "^22.15.21",
|
|
57
|
+
"@types/react": "^19.1.2",
|
|
58
|
+
"@types/react-dom": "^19.1.2",
|
|
59
|
+
"@vitejs/plugin-react": "^4.4.1",
|
|
60
|
+
"@vitest/browser": "^3.1.4",
|
|
61
|
+
"@vitest/coverage-v8": "^3.1.4",
|
|
62
|
+
"@vitest/ui": "^3.1.4",
|
|
63
|
+
"babel-plugin-react-remove-properties": "^0.3.0",
|
|
64
|
+
"eslint": "^9.25.0",
|
|
65
|
+
"eslint-config-prettier": "^10.1.5",
|
|
66
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
67
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
68
|
+
"eslint-plugin-storybook": "^9.0.18",
|
|
69
|
+
"glob": "^11.0.2",
|
|
70
|
+
"globals": "^16.0.0",
|
|
71
|
+
"happy-dom": "^15.11.6",
|
|
72
|
+
"jsdom": "^26.1.0",
|
|
73
|
+
"notistack": "^3.0.1",
|
|
74
|
+
"playwright": "^1.60.0",
|
|
75
|
+
"postcss-scss": "^4.0.9",
|
|
76
|
+
"prettier": "^3.5.3",
|
|
77
|
+
"sass": "^1.89.0",
|
|
78
|
+
"storybook": "^9.0.18",
|
|
79
|
+
"stylelint": "^16.19.1",
|
|
80
|
+
"stylelint-config-standard": "^38.0.0",
|
|
81
|
+
"stylelint-scss": "^6.12.0",
|
|
82
|
+
"typescript": "~5.8.3",
|
|
83
|
+
"typescript-eslint": "^8.30.1",
|
|
84
|
+
"vite": "^6.3.5",
|
|
85
|
+
"vite-plugin-dts": "^4.5.4",
|
|
86
|
+
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
87
|
+
"vitest": "^3.1.4"
|
|
88
|
+
},
|
|
89
|
+
"eslintConfig": {
|
|
90
|
+
"extends": [
|
|
91
|
+
"plugin:storybook/recommended"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
}
|