@ably/ui 14.3.2-dev.96b9260 → 14.3.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/package.json +8 -7
- package/core/.DS_Store +0 -0
- package/core/Accordion/.DS_Store +0 -0
- package/core/Code/.DS_Store +0 -0
- package/core/ContactFooter/.DS_Store +0 -0
- package/core/CookieMessage/.DS_Store +0 -0
- package/core/CustomerLogos/.DS_Store +0 -0
- package/core/DropdownMenu/.DS_Store +0 -0
- package/core/FeaturedLink/.DS_Store +0 -0
- package/core/Flash/.DS_Store +0 -0
- package/core/Footer/.DS_Store +0 -0
- package/core/Icon/.DS_Store +0 -0
- package/core/Loader/.DS_Store +0 -0
- package/core/Logo/.DS_Store +0 -0
- package/core/Meganav/.DS_Store +0 -0
- package/core/MeganavBlogPostsList/.DS_Store +0 -0
- package/core/MeganavControl/.DS_Store +0 -0
- package/core/MeganavControlMobileDropdown/.DS_Store +0 -0
- package/core/MeganavControlMobilePanelClose/.DS_Store +0 -0
- package/core/MeganavControlMobilePanelOpen/.DS_Store +0 -0
- package/core/MeganavSearchAutocomplete/.DS_Store +0 -0
- package/core/MeganavSearchSuggestions/.DS_Store +0 -0
- package/core/Notice/.DS_Store +0 -0
- package/core/Slider/.DS_Store +0 -0
- package/core/Table/.DS_Store +0 -0
- package/core/Tooltip/.DS_Store +0 -0
- package/core/icons/.DS_Store +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ably/ui",
|
|
3
|
-
"version": "14.3.
|
|
3
|
+
"version": "14.3.3",
|
|
4
4
|
"description": "Home of the Ably design system library ([design.ably.com](https://design.ably.com)). It provides a showcase, development/test environment and a publishing pipeline for different distributables.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,22 +19,22 @@
|
|
|
19
19
|
"@storybook/addon-interactions": "^8.2.9",
|
|
20
20
|
"@storybook/addon-links": "^8.2.9",
|
|
21
21
|
"@storybook/blocks": "^8.2.9",
|
|
22
|
-
"@storybook/react": "^8.2.9",
|
|
23
22
|
"@storybook/react-vite": "^8.2.9",
|
|
24
|
-
"@storybook/
|
|
23
|
+
"@storybook/react": "^8.2.9",
|
|
25
24
|
"@storybook/test-runner": "^0.19.1",
|
|
25
|
+
"@storybook/test": "^8.2.9",
|
|
26
26
|
"@swc/cli": "^0.4.0",
|
|
27
27
|
"@swc/core": "^1.4.11",
|
|
28
28
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
29
29
|
"@typescript-eslint/parser": "^6.21.0",
|
|
30
30
|
"@vitejs/plugin-react": "^4.2.1",
|
|
31
31
|
"autoprefixer": "^10.0.2",
|
|
32
|
-
"eslint": "^8.57.0",
|
|
33
32
|
"eslint-config-prettier": "^9.1.0",
|
|
34
33
|
"eslint-plugin-react": "^7.34.3",
|
|
35
34
|
"eslint-plugin-storybook": "^0.8.0",
|
|
36
|
-
"
|
|
35
|
+
"eslint": "^8.57.0",
|
|
37
36
|
"msw-storybook-addon": "^2.0.2",
|
|
37
|
+
"msw": "2.3.5",
|
|
38
38
|
"prettier": "^3.2.5",
|
|
39
39
|
"storybook": "^8.2.9",
|
|
40
40
|
"svg-sprite": "^2.0.4",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build:prebuild": "rm -rf core reset",
|
|
47
|
-
"build:swc": "swc src/core src/reset -d dist --quiet --copy-files --include-dotfiles --strip-leading-paths --config-file .swc --ignore **/*.stories.tsx,**/*.snap",
|
|
47
|
+
"build:swc": "swc src/core src/reset -d dist --quiet --copy-files --include-dotfiles --strip-leading-paths --config-file .swc --ignore **/*.stories.tsx,**/*.snap" ,
|
|
48
48
|
"build:cleanup": "mv dist/* . && rm -r dist",
|
|
49
49
|
"build": "yarn build:prebuild && yarn build:swc && node sprites.js && yarn build:cleanup",
|
|
50
50
|
"watch": "yarn build:swc -w",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"build-storybook": "yarn build && storybook build --quiet -o preview",
|
|
60
60
|
"test": "npx concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn build-storybook && npx http-server preview --port 6007 --silent\" \"wait-on tcp:6007 && yarn test-storybook --url http://127.0.0.1:6007\"",
|
|
61
61
|
"test:update-snapshots": "npx concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn build-storybook && npx http-server preview --port 6007 --silent\" \"wait-on tcp:6007 && yarn test-storybook -u --url http://127.0.0.1:6007\""
|
|
62
|
+
|
|
62
63
|
},
|
|
63
64
|
"dependencies": {
|
|
64
65
|
"addsearch-js-client": "^0.8.11",
|
|
@@ -68,8 +69,8 @@
|
|
|
68
69
|
"highlightjs-curl": "^1.3.0",
|
|
69
70
|
"js-cookie": "^3.0.5",
|
|
70
71
|
"lodash.throttle": "^4.1.1",
|
|
71
|
-
"react": "^18.2.0",
|
|
72
72
|
"react-dom": "^18.2.0",
|
|
73
|
+
"react": "^18.2.0",
|
|
73
74
|
"redux": "^4.0.5",
|
|
74
75
|
"scroll-lock": "^2.1.4"
|
|
75
76
|
},
|
package/core/.DS_Store
DELETED
|
Binary file
|
package/core/Accordion/.DS_Store
DELETED
|
Binary file
|
package/core/Code/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/core/Flash/.DS_Store
DELETED
|
Binary file
|
package/core/Footer/.DS_Store
DELETED
|
Binary file
|
package/core/Icon/.DS_Store
DELETED
|
Binary file
|
package/core/Loader/.DS_Store
DELETED
|
Binary file
|
package/core/Logo/.DS_Store
DELETED
|
Binary file
|
package/core/Meganav/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/core/Notice/.DS_Store
DELETED
|
Binary file
|
package/core/Slider/.DS_Store
DELETED
|
Binary file
|
package/core/Table/.DS_Store
DELETED
|
Binary file
|
package/core/Tooltip/.DS_Store
DELETED
|
Binary file
|
package/core/icons/.DS_Store
DELETED
|
Binary file
|