@descope/flow-components 2.0.316 → 2.0.318

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/dist/index.cjs.js CHANGED
@@ -365,6 +365,8 @@ const GridSelectionColumn = React__default.default.forwardRef((props, ref) => Re
365
365
 
366
366
  const GridTextColumn = React__default.default.forwardRef((props, ref) => React__default.default.createElement("descope-grid-text-column", { ...props, ref: ref }));
367
367
 
368
+ const GridItemDetailsColumn = React__default.default.forwardRef((props, ref) => React__default.default.createElement("descope-grid-item-details-column", { ...props, ref: ref }));
369
+
368
370
  const Badge = React__default.default.forwardRef((props, ref) => React__default.default.createElement("descope-badge", { ...props, ref: ref }));
369
371
 
370
372
  const Modal = React__default.default.forwardRef((props, ref) => (React__default.default.createElement("descope-modal", { ...props, ref: ref })));
@@ -503,6 +505,7 @@ exports.Container = Container;
503
505
  exports.Divider = Divider;
504
506
  exports.Grid = Grid;
505
507
  exports.GridCustomColumn = GridCustomColumn;
508
+ exports.GridItemDetailsColumn = GridItemDetailsColumn;
506
509
  exports.GridSelectionColumn = GridSelectionColumn;
507
510
  exports.GridTextColumn = GridTextColumn;
508
511
  exports.Image = Image;
package/dist/index.d.ts CHANGED
@@ -593,6 +593,15 @@ declare global {
593
593
  }
594
594
  declare const GridTextColumn: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLInputElement>>;
595
595
 
596
+ declare global {
597
+ namespace JSX {
598
+ interface IntrinsicElements {
599
+ 'descope-grid-item-details-column': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
600
+ }
601
+ }
602
+ }
603
+ declare const GridItemDetailsColumn: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLInputElement>>;
604
+
596
605
  type Props$8 = {
597
606
  mode?: string;
598
607
  size?: string;
@@ -774,4 +783,4 @@ declare global {
774
783
  }
775
784
  declare const CodeSnippet: React.ForwardRefExoticComponent<Props & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
776
785
 
777
- export { Avatar, Badge, Boolean, Button, Checkbox, Code, CodeSnippet, ComboBox, Container, Divider, Grid, GridCustomColumn, GridSelectionColumn, GridTextColumn, Image, Input, Link, Loader, Logo, MappingsField, Modal, MultiSelect, NOTPImage, NOTPLink, NewPassword, NumberField, Password, Phone, Recaptcha, SAMLGroupMappings, Select, SingleSelect, Switch, TOTPImage, TOTPLink, Text, TextField, Textarea, UploadFile, UserAttribute, UserAuthMethod, _default$f as apple, _default$6 as discord, _default$e as facebook, _default$c as fingerprint, _default$a as github, _default$9 as gitlab, _default$8 as google, _default$5 as linkedin, _default$7 as microsoft, _default$b as passkey, _default as password, _default$2 as plus, _default$1 as reload, _default$d as slack, _default$4 as sso, _default$3 as whatsapp };
786
+ export { Avatar, Badge, Boolean, Button, Checkbox, Code, CodeSnippet, ComboBox, Container, Divider, Grid, GridCustomColumn, GridItemDetailsColumn, GridSelectionColumn, GridTextColumn, Image, Input, Link, Loader, Logo, MappingsField, Modal, MultiSelect, NOTPImage, NOTPLink, NewPassword, NumberField, Password, Phone, Recaptcha, SAMLGroupMappings, Select, SingleSelect, Switch, TOTPImage, TOTPLink, Text, TextField, Textarea, UploadFile, UserAttribute, UserAuthMethod, _default$f as apple, _default$6 as discord, _default$e as facebook, _default$c as fingerprint, _default$a as github, _default$9 as gitlab, _default$8 as google, _default$5 as linkedin, _default$7 as microsoft, _default$b as passkey, _default as password, _default$2 as plus, _default$1 as reload, _default$d as slack, _default$4 as sso, _default$3 as whatsapp };
package/dist/index.esm.js CHANGED
@@ -359,6 +359,8 @@ const GridSelectionColumn = React.forwardRef((props, ref) => React.createElement
359
359
 
360
360
  const GridTextColumn = React.forwardRef((props, ref) => React.createElement("descope-grid-text-column", { ...props, ref: ref }));
361
361
 
362
+ const GridItemDetailsColumn = React.forwardRef((props, ref) => React.createElement("descope-grid-item-details-column", { ...props, ref: ref }));
363
+
362
364
  const Badge = React.forwardRef((props, ref) => React.createElement("descope-badge", { ...props, ref: ref }));
363
365
 
364
366
  const Modal = React.forwardRef((props, ref) => (React.createElement("descope-modal", { ...props, ref: ref })));
@@ -485,4 +487,4 @@ Avatar.defaultProps = {
485
487
 
486
488
  const CodeSnippet = React.forwardRef((props, ref) => React.createElement("descope-code-snippet", { ...props, ref: ref }));
487
489
 
488
- export { Avatar, Badge, Boolean, Button, Checkbox, Code, CodeSnippet, ComboBox, Container, Divider, Grid, GridCustomColumn, GridSelectionColumn, GridTextColumn, Image, Input, Link, Loader, Logo, MappingsField, Modal, MultiSelect, NOTPImage, NOTPLink, NewPassword, NumberField, Password, Phone, Recaptcha, SAMLGroupMappings, Select, SingleSelect, Switch, TOTPImage, TOTPLink, Text, TextField, Textarea, UploadFile, UserAttribute, UserAuthMethod, apple, discord, facebook, fingerprint, github, gitlab, google, linkedin, microsoft, passkey, password, plus, reload, slack, sso, whatsapp };
490
+ export { Avatar, Badge, Boolean, Button, Checkbox, Code, CodeSnippet, ComboBox, Container, Divider, Grid, GridCustomColumn, GridItemDetailsColumn, GridSelectionColumn, GridTextColumn, Image, Input, Link, Loader, Logo, MappingsField, Modal, MultiSelect, NOTPImage, NOTPLink, NewPassword, NumberField, Password, Phone, Recaptcha, SAMLGroupMappings, Select, SingleSelect, Switch, TOTPImage, TOTPLink, Text, TextField, Textarea, UploadFile, UserAttribute, UserAuthMethod, apple, discord, facebook, fingerprint, github, gitlab, google, linkedin, microsoft, passkey, password, plus, reload, slack, sso, whatsapp };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope/flow-components",
3
- "version": "2.0.316",
3
+ "version": "2.0.318",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -100,7 +100,7 @@
100
100
  "typescript": "^5.0.0"
101
101
  },
102
102
  "dependencies": {
103
- "@descope/web-components-ui": "1.0.348"
103
+ "@descope/web-components-ui": "1.0.350"
104
104
  },
105
105
  "peerDependencies": {
106
106
  "react": ">=17"