@pingux/astro 2.130.4 → 2.131.0-alpha.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/GridList/GridList.d.ts +3 -0
- package/lib/cjs/components/GridList/GridList.js +56 -0
- package/lib/cjs/components/GridList/GridList.mdx +68 -0
- package/lib/cjs/components/GridList/GridList.stories.d.ts +185 -0
- package/lib/cjs/components/GridList/GridList.stories.js +137 -0
- package/lib/cjs/components/GridList/GridList.styles.d.ts +18 -0
- package/lib/cjs/components/GridList/GridList.styles.js +27 -0
- package/lib/cjs/components/GridList/GridList.test.d.ts +1 -0
- package/lib/cjs/components/GridList/GridList.test.js +153 -0
- package/lib/cjs/components/GridList/GridListRow.d.ts +4 -0
- package/lib/cjs/components/GridList/GridListRow.js +88 -0
- package/lib/cjs/components/GridList/gridListAttributes.d.ts +170 -0
- package/lib/cjs/components/GridList/gridListAttributes.js +178 -0
- package/lib/cjs/components/GridList/index.d.ts +2 -0
- package/lib/cjs/components/GridList/index.js +21 -0
- package/lib/cjs/components/TreeView/InsertionIndicator.js +19 -14
- package/lib/cjs/components/TreeView/TreeView.styles.js +2 -1
- package/lib/cjs/components/TreeView/index.js +7 -0
- package/lib/cjs/hooks/index.d.ts +2 -0
- package/lib/cjs/hooks/index.js +14 -0
- package/lib/cjs/hooks/useGridList/index.d.ts +1 -0
- package/lib/cjs/hooks/useGridList/index.js +14 -0
- package/lib/cjs/hooks/useGridList/useGridList.d.ts +18 -0
- package/lib/cjs/hooks/useGridList/useGridList.js +175 -0
- package/lib/cjs/hooks/useGridListItem/index.d.ts +1 -0
- package/lib/cjs/hooks/useGridListItem/index.js +14 -0
- package/lib/cjs/hooks/useGridListItem/useGridListItem.d.ts +308 -0
- package/lib/cjs/hooks/useGridListItem/useGridListItem.js +67 -0
- package/lib/cjs/hooks/useReorderableCollection/index.d.ts +1 -0
- package/lib/cjs/hooks/useReorderableCollection/index.js +14 -0
- package/lib/cjs/hooks/useReorderableCollection/useReorderableCollection.d.ts +9 -0
- package/lib/cjs/hooks/useReorderableCollection/useReorderableCollection.js +99 -0
- package/lib/cjs/index.d.ts +1 -0
- package/lib/cjs/index.js +15 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +1 -1
- package/lib/cjs/styles/variants/variants.js +2 -0
- package/lib/cjs/types/dnd.d.ts +66 -0
- package/lib/cjs/types/dnd.js +6 -0
- package/lib/cjs/types/gridList.d.ts +59 -0
- package/lib/cjs/types/gridList.js +6 -0
- package/lib/components/GridList/GridList.js +44 -0
- package/lib/components/GridList/GridList.mdx +68 -0
- package/lib/components/GridList/GridList.stories.js +124 -0
- package/lib/components/GridList/GridList.styles.js +19 -0
- package/lib/components/GridList/GridList.test.js +149 -0
- package/lib/components/GridList/GridListRow.js +74 -0
- package/lib/components/GridList/gridListAttributes.js +170 -0
- package/lib/components/GridList/index.js +2 -0
- package/lib/components/TreeView/InsertionIndicator.js +19 -14
- package/lib/components/TreeView/TreeView.styles.js +2 -1
- package/lib/components/TreeView/index.js +1 -0
- package/lib/hooks/index.js +2 -0
- package/lib/hooks/useGridList/index.js +1 -0
- package/lib/hooks/useGridList/useGridList.js +166 -0
- package/lib/hooks/useGridListItem/index.js +1 -0
- package/lib/hooks/useGridListItem/useGridListItem.js +59 -0
- package/lib/hooks/useReorderableCollection/index.js +1 -0
- package/lib/hooks/useReorderableCollection/useReorderableCollection.js +91 -0
- package/lib/index.js +1 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +1 -1
- package/lib/styles/variants/variants.js +2 -0
- package/lib/types/dnd.js +1 -0
- package/lib/types/gridList.js +1 -0
- package/package.json +3 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
var nextGenConvertedComponents = ['DataTable', 'Message', 'Button', 'Badge', 'IconButton', 'CheckboxField', 'Messages', 'PopoverMenu', 'TextField', 'PasswordField', 'SearchField', 'SelectField', 'Modal', 'RadioField', 'MultiValuesField', 'TextAreaField', 'RadioGroupField', 'RockerButtonGroup', 'Tabs', 'ProgressBar', 'NavBar', 'OverlayPanel', 'AstroProvider', 'ListView', 'NavigationHeader', 'Avatar', 'MultivaluesField', 'Text', 'Link', 'Card', 'IconWrapper', 'ComboBoxField', 'CodeView', 'Sticker Sheet', 'NextGen ListViewItem', 'Skeleton', 'TooltipTrigger', 'ListViewItem', 'Pagination', 'Callout', 'Table', 'TableBase', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField'];
|
1
|
+
var nextGenConvertedComponents = ['GridList', 'DataTable', 'Message', 'Button', 'Badge', 'IconButton', 'CheckboxField', 'Messages', 'PopoverMenu', 'TextField', 'PasswordField', 'SearchField', 'SelectField', 'Modal', 'RadioField', 'MultiValuesField', 'TextAreaField', 'RadioGroupField', 'RockerButtonGroup', 'Tabs', 'ProgressBar', 'NavBar', 'OverlayPanel', 'AstroProvider', 'ListView', 'NavigationHeader', 'Avatar', 'MultivaluesField', 'Text', 'Link', 'Card', 'IconWrapper', 'ComboBoxField', 'CodeView', 'Sticker Sheet', 'NextGen ListViewItem', 'Skeleton', 'TooltipTrigger', 'ListViewItem', 'Pagination', 'Callout', 'Table', 'TableBase', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField'];
|
2
2
|
export var componentSpecificNextGenBlacklist = {
|
3
3
|
AstroProvider: ['Default', 'With Custom Theme Override'],
|
4
4
|
Badge: ['Status Badge Variants', 'Badge With Left Slot And Icon', 'Callout Badges', 'Removable'],
|
@@ -25,6 +25,7 @@ import dataTable from '../../components/DataTable/DataTable.styles';
|
|
25
25
|
import environmentBreadcrumb from '../../components/EnvironmentBreadcrumb/EnvironmentalBreadcrumb.styles';
|
26
26
|
import fieldHelperText from '../../components/FieldHelperText/FieldHelperText.styles';
|
27
27
|
import footer from '../../components/Footer/Footer.styles';
|
28
|
+
import gridList from '../../components/GridList/GridList.styles';
|
28
29
|
import helpHint from '../../components/HelpHint/HelpHint.styles';
|
29
30
|
import imageUpload from '../../components/ImageUploadField/imageUpload';
|
30
31
|
import listBox from '../../components/ListBox/ListBox.styles';
|
@@ -76,6 +77,7 @@ export default _objectSpread(_objectSpread({
|
|
76
77
|
environmentBreadcrumb: environmentBreadcrumb,
|
77
78
|
fieldHelperText: fieldHelperText,
|
78
79
|
footer: footer,
|
80
|
+
gridList: gridList,
|
79
81
|
helpHint: helpHint,
|
80
82
|
imageUpload: imageUpload,
|
81
83
|
listBox: listBox,
|
package/lib/types/dnd.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.131.0-alpha.0",
|
4
4
|
"description": "React component library for Ping Identity's design system",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -63,7 +63,7 @@
|
|
63
63
|
"@react-aria/dnd": "^3.5.0",
|
64
64
|
"@react-aria/focus": "~3.8.0",
|
65
65
|
"@react-aria/grid": "~3.4.1",
|
66
|
-
"@react-aria/gridlist": "
|
66
|
+
"@react-aria/gridlist": "^3.7.4",
|
67
67
|
"@react-aria/i18n": "~3.6.0",
|
68
68
|
"@react-aria/interactions": "~3.11.0",
|
69
69
|
"@react-aria/label": "^3.1.0",
|
@@ -85,6 +85,7 @@
|
|
85
85
|
"@react-spectrum/utils": "~3.6.1",
|
86
86
|
"@react-stately/calendar": "^3.5.0",
|
87
87
|
"@react-stately/color": "~3.8.1",
|
88
|
+
"@react-stately/data": "^3.13.1",
|
88
89
|
"@react-stately/datepicker": "^3.9.4",
|
89
90
|
"@react-stately/dnd": "^3.2.6",
|
90
91
|
"@react-stately/grid": "~3.3.1",
|