@pingux/astro 1.27.0-alpha.2 → 1.27.0-alpha.21
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/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +8 -2
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +35 -0
- package/lib/cjs/recipes/ListAndPanel.stories.js +102 -87
- package/lib/cjs/recipes/NeutralInput.stories.js +6 -3
- package/lib/cjs/recipes/SelectedFieldOverlay.story.js +25 -21
- package/lib/cjs/recipes/TrialExperienceStatusBar.stories.js +81 -72
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +7 -2
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +25 -0
- package/lib/recipes/ListAndPanel.stories.js +102 -87
- package/lib/recipes/NeutralInput.stories.js +6 -3
- package/lib/recipes/SelectedFieldOverlay.story.js +25 -21
- package/lib/recipes/TrialExperienceStatusBar.stories.js +81 -72
- package/package.json +56 -50
package/package.json
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pingux/astro",
|
3
|
-
"version": "1.27.0-alpha.
|
3
|
+
"version": "1.27.0-alpha.21",
|
4
4
|
"description": "PingUX themeable React component library",
|
5
|
-
"
|
5
|
+
"repository": {
|
6
|
+
"type": "git",
|
7
|
+
"url": "git@gitlab.corp.pingidentity.com:ux/pingux.git"
|
8
|
+
},
|
6
9
|
"license": "Apache-2.0",
|
10
|
+
"author": "ux-development@pingidentity.com",
|
7
11
|
"main": "lib/cjs/index.js",
|
8
12
|
"module": "lib/index.js",
|
9
13
|
"directories": {
|
@@ -12,10 +16,6 @@
|
|
12
16
|
"files": [
|
13
17
|
"lib"
|
14
18
|
],
|
15
|
-
"repository": {
|
16
|
-
"type": "git",
|
17
|
-
"url": "git@gitlab.corp.pingidentity.com:ux/pingux.git"
|
18
|
-
},
|
19
19
|
"scripts": {
|
20
20
|
"build": "rm -rf lib && npm-run-all build:*",
|
21
21
|
"build:cjs": "BABEL_ENV=cjs babel --config-file ./babel.config.js ./src --out-dir lib/cjs",
|
@@ -24,51 +24,10 @@
|
|
24
24
|
"coverage": "yarn test --coverage",
|
25
25
|
"coverage-ci": "yarn test --coverage --ci",
|
26
26
|
"demo": "rm -rf ./demo && build-storybook -o demo",
|
27
|
-
"test": "jest",
|
28
27
|
"lint": "eslint --ext .js,.jsx .",
|
29
28
|
"start": "start-storybook -p 6006",
|
30
|
-
"storybook": "yarn start"
|
31
|
-
|
32
|
-
"devDependencies": {
|
33
|
-
"@babel/core": "^7.11.6",
|
34
|
-
"@babel/preset-env": "^7.11.5",
|
35
|
-
"@babel/preset-react": "^7.10.4",
|
36
|
-
"@emotion/babel-preset-css-prop": "^11.2.0",
|
37
|
-
"@emotion/cache": "^11.4.0",
|
38
|
-
"@emotion/eslint-plugin": "^11.2.0",
|
39
|
-
"@faker-js/faker": "^7.1.0",
|
40
|
-
"@storybook/addon-a11y": "^6.4.19",
|
41
|
-
"@storybook/addon-actions": "^6.4.19",
|
42
|
-
"@storybook/addon-console": "^1.2.3",
|
43
|
-
"@storybook/addon-docs": "^6.4.19",
|
44
|
-
"@storybook/addon-essentials": "^6.4.19",
|
45
|
-
"@storybook/addon-links": "^6.4.19",
|
46
|
-
"@storybook/addon-storysource": "^6.4.19",
|
47
|
-
"@storybook/addons": "^6.4.19",
|
48
|
-
"@storybook/react": "^6.4.19",
|
49
|
-
"@storybook/theming": "^6.4.19",
|
50
|
-
"@testing-library/jest-dom": "^5.11.4",
|
51
|
-
"@testing-library/react": "^11.0.4",
|
52
|
-
"@testing-library/react-hooks": "^3.4.1",
|
53
|
-
"@testing-library/user-event": "^12.8.3",
|
54
|
-
"babel-loader": "^8.1.0",
|
55
|
-
"babel-plugin-transform-node-env-inline": "^0.4.3",
|
56
|
-
"chromatic": "^6.5.3",
|
57
|
-
"countries-list": "^2.6.1",
|
58
|
-
"eslint-plugin-jest-dom": "^3.9.0",
|
59
|
-
"eslint-plugin-react-hooks": "^2.5.1",
|
60
|
-
"eslint-plugin-testing-library": "^4.6.0",
|
61
|
-
"jest-axe": "^5.0.1",
|
62
|
-
"jest-emotion": "^11.0.0",
|
63
|
-
"mutationobserver-shim": "^0.3.7",
|
64
|
-
"react": "^16.8.6",
|
65
|
-
"react-dom": "^16.13.1",
|
66
|
-
"react-is": "^16.13.1",
|
67
|
-
"use-resize-observer": "^8.0.0"
|
68
|
-
},
|
69
|
-
"peerDependencies": {
|
70
|
-
"react": "^16.8.6",
|
71
|
-
"react-dom": "^16.13.1"
|
29
|
+
"storybook": "yarn start",
|
30
|
+
"test": "jest"
|
72
31
|
},
|
73
32
|
"dependencies": {
|
74
33
|
"@emotion/jest": "^11.5.0",
|
@@ -101,19 +60,22 @@
|
|
101
60
|
"@react-aria/separator": "^3.1.1",
|
102
61
|
"@react-aria/slider": "^3.0.7",
|
103
62
|
"@react-aria/switch": "3.1.1",
|
63
|
+
"@react-aria/table": "^3.3.0",
|
104
64
|
"@react-aria/tabs": "^3.0.1",
|
105
65
|
"@react-aria/tooltip": "^3.1.2",
|
106
66
|
"@react-aria/utils": "^3.12.0",
|
107
67
|
"@react-aria/virtualizer": "^3.3.2",
|
108
68
|
"@react-aria/visually-hidden": "3.2.1",
|
109
69
|
"@react-spectrum/provider": "^3.2.1",
|
70
|
+
"@react-spectrum/table": "^3.3.0",
|
71
|
+
"@react-spectrum/tooltip": "^3.2.1",
|
110
72
|
"@react-spectrum/utils": "3.6.1",
|
111
73
|
"@react-stately/collections": "~3.3.8",
|
112
74
|
"@react-stately/color": "^3.0.0-beta.2",
|
113
75
|
"@react-stately/combobox": "^3.0.0",
|
114
76
|
"@react-stately/data": "^3.4.0",
|
115
77
|
"@react-stately/grid": "^3.1.4",
|
116
|
-
"@react-stately/layout": "
|
78
|
+
"@react-stately/layout": "~3.6.0",
|
117
79
|
"@react-stately/list": "^3.2.1",
|
118
80
|
"@react-stately/menu": "^3.2.1",
|
119
81
|
"@react-stately/numberfield": "~3.0.7",
|
@@ -121,12 +83,15 @@
|
|
121
83
|
"@react-stately/radio": "^3.2.0",
|
122
84
|
"@react-stately/searchfield": "^3.1.1",
|
123
85
|
"@react-stately/select": "^3.1.1",
|
86
|
+
"@react-stately/selection": "~3.10.2",
|
124
87
|
"@react-stately/slider": "^3.0.7",
|
88
|
+
"@react-stately/table": "^3.2.1",
|
125
89
|
"@react-stately/tabs": "^3.0.1",
|
126
90
|
"@react-stately/toggle": "^3.2.0",
|
127
91
|
"@react-stately/tooltip": "^3.0.4",
|
128
92
|
"@react-stately/tree": "^3.1.2",
|
129
93
|
"@react-stately/utils": "~3.4.1",
|
94
|
+
"@react-stately/virtualizer": "^3.2.1",
|
130
95
|
"@rebass/forms": "^4.0.6",
|
131
96
|
"@styled-system/prop-types": "^5.1.5",
|
132
97
|
"@styled-system/props": "^5.1.5",
|
@@ -151,5 +116,46 @@
|
|
151
116
|
"theme-ui": "^0.10.0",
|
152
117
|
"tippy.js": "6.2.7",
|
153
118
|
"uuid": "^8.3.2"
|
119
|
+
},
|
120
|
+
"devDependencies": {
|
121
|
+
"@babel/core": "^7.11.6",
|
122
|
+
"@babel/preset-env": "^7.11.5",
|
123
|
+
"@babel/preset-react": "^7.10.4",
|
124
|
+
"@emotion/babel-preset-css-prop": "^11.2.0",
|
125
|
+
"@emotion/cache": "^11.4.0",
|
126
|
+
"@emotion/eslint-plugin": "^11.2.0",
|
127
|
+
"@faker-js/faker": "~7.5.0",
|
128
|
+
"@storybook/addon-a11y": "^6.4.19",
|
129
|
+
"@storybook/addon-actions": "^6.4.19",
|
130
|
+
"@storybook/addon-console": "^1.2.3",
|
131
|
+
"@storybook/addon-docs": "^6.4.19",
|
132
|
+
"@storybook/addon-essentials": "^6.4.19",
|
133
|
+
"@storybook/addon-links": "^6.4.19",
|
134
|
+
"@storybook/addon-storysource": "^6.4.19",
|
135
|
+
"@storybook/addons": "^6.4.19",
|
136
|
+
"@storybook/react": "^6.4.19",
|
137
|
+
"@storybook/theming": "^6.4.19",
|
138
|
+
"@testing-library/jest-dom": "^5.11.4",
|
139
|
+
"@testing-library/react": "^11.0.4",
|
140
|
+
"@testing-library/react-hooks": "^3.4.1",
|
141
|
+
"@testing-library/user-event": "^12.8.3",
|
142
|
+
"babel-loader": "^8.1.0",
|
143
|
+
"babel-plugin-transform-node-env-inline": "^0.4.3",
|
144
|
+
"chromatic": "^6.5.3",
|
145
|
+
"countries-list": "^2.6.1",
|
146
|
+
"eslint-plugin-jest-dom": "^3.9.0",
|
147
|
+
"eslint-plugin-react-hooks": "^2.5.1",
|
148
|
+
"eslint-plugin-testing-library": "^4.6.0",
|
149
|
+
"jest-axe": "^5.0.1",
|
150
|
+
"jest-emotion": "^11.0.0",
|
151
|
+
"mutationobserver-shim": "^0.3.7",
|
152
|
+
"react": "^16.8.6",
|
153
|
+
"react-dom": "^16.13.1",
|
154
|
+
"react-is": "^16.13.1",
|
155
|
+
"use-resize-observer": "^8.0.0"
|
156
|
+
},
|
157
|
+
"peerDependencies": {
|
158
|
+
"react": "^16.8.6",
|
159
|
+
"react-dom": "^16.13.1"
|
154
160
|
}
|
155
161
|
}
|