@pingux/astro 2.57.0 → 2.58.0
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/ListBox/ListBox.d.ts +1 -1
- package/lib/cjs/components/ListBox/ListBox.js +5 -5
- package/lib/cjs/components/MultivaluesField/MultivaluesField.js +6 -6
- package/lib/cjs/components/MultivaluesField/MultivaluesField.test.js +30 -0
- package/lib/cjs/components/Stepper/Stepper.mdx +20 -14
- package/lib/cjs/components/Stepper/Stepper.stories.js +115 -34
- package/lib/cjs/components/Stepper/Stepper.styles.js +2 -1
- package/lib/cjs/components/Tab/Tab.d.ts +10 -0
- package/lib/cjs/components/Tab/Tab.js +18 -58
- package/lib/cjs/components/Tab/index.d.ts +2 -0
- package/lib/cjs/components/Tabs/Tabs.d.ts +5 -0
- package/lib/cjs/components/Tabs/Tabs.js +17 -55
- package/lib/cjs/components/Tabs/Tabs.stories.d.ts +14 -0
- package/lib/cjs/components/Tabs/Tabs.style.d.ts +52 -0
- package/lib/cjs/components/Tabs/Tabs.test.d.ts +1 -0
- package/lib/cjs/components/Tabs/Tabs.test.js +38 -20
- package/lib/cjs/components/Tabs/index.d.ts +2 -0
- package/lib/cjs/types/index.d.ts +2 -0
- package/lib/cjs/types/index.js +26 -4
- package/lib/cjs/types/item.d.ts +7 -3
- package/lib/cjs/types/tab.d.ts +32 -0
- package/lib/cjs/types/tab.js +6 -0
- package/lib/cjs/types/tabs.d.ts +51 -0
- package/lib/cjs/types/tabs.js +6 -0
- package/lib/components/ListBox/ListBox.js +2 -2
- package/lib/components/MultivaluesField/MultivaluesField.js +6 -6
- package/lib/components/MultivaluesField/MultivaluesField.test.js +30 -0
- package/lib/components/Stepper/Stepper.mdx +20 -14
- package/lib/components/Stepper/Stepper.stories.js +115 -34
- package/lib/components/Stepper/Stepper.styles.js +2 -1
- package/lib/components/Tab/Tab.js +17 -58
- package/lib/components/Tabs/Tabs.js +19 -57
- package/lib/components/Tabs/Tabs.test.js +38 -20
- package/lib/types/index.js +2 -0
- package/lib/types/tab.js +1 -0
- package/lib/types/tabs.js +1 -0
- package/package.json +4 -2
package/lib/types/index.js
CHANGED
@@ -34,6 +34,8 @@ export * from './rockerButtonGroup';
|
|
34
34
|
export * from './scrollBox';
|
35
35
|
export * from './separator';
|
36
36
|
export * from './shared';
|
37
|
+
export * from './tab';
|
37
38
|
export * from './table';
|
39
|
+
export * from './tabs';
|
38
40
|
export * from './text';
|
39
41
|
export * from './tooltipTrigger';
|
package/lib/types/tab.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pingux/astro",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.58.0",
|
4
4
|
"description": "React component library for Ping Identity's design system",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -73,6 +73,7 @@
|
|
73
73
|
"@react-aria/visually-hidden": "~3.6.0",
|
74
74
|
"@react-spectrum/utils": "~3.6.1",
|
75
75
|
"@react-stately/calendar": "3.0.1",
|
76
|
+
"@react-stately/collections": "^3.10.5",
|
76
77
|
"@react-stately/color": "~3.1.1",
|
77
78
|
"@react-stately/datepicker": "^3.0.1",
|
78
79
|
"@react-stately/dnd": "^3.2.6",
|
@@ -105,6 +106,8 @@
|
|
105
106
|
"classnames": "^2.2.6",
|
106
107
|
"countries-list": "^2.6.1",
|
107
108
|
"emotion-normalize": "^11.0.1",
|
109
|
+
"listbox-layout": "npm:@react-stately/layout@3.9.0",
|
110
|
+
"listbox-virtualizer": "npm:@react-aria/virtualizer@3.6.0",
|
108
111
|
"lodash": "^4.17.21",
|
109
112
|
"moment": "^2.29.4",
|
110
113
|
"pluralize": "^8.0.0",
|
@@ -136,7 +139,6 @@
|
|
136
139
|
"@emotion/babel-preset-css-prop": "^11.2.0",
|
137
140
|
"@emotion/cache": "^11.4.0",
|
138
141
|
"@emotion/eslint-plugin": "^11.2.0",
|
139
|
-
"@react-stately/collections": "^3.10.2",
|
140
142
|
"@storybook/addon-a11y": "^7.1.0",
|
141
143
|
"@storybook/addon-console": "^2.0.0",
|
142
144
|
"@storybook/addon-docs": "^7.1.0",
|