@xsolla/xui-cell 0.119.0 → 0.121.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-cell",
3
- "version": "0.119.0",
3
+ "version": "0.121.0",
4
4
  "main": "./web/index.js",
5
5
  "module": "./web/index.mjs",
6
6
  "types": "./web/index.d.ts",
@@ -10,10 +10,10 @@
10
10
  "build:native": "PLATFORM=native tsup"
11
11
  },
12
12
  "dependencies": {
13
- "@xsolla/xui-avatar": "0.119.0",
14
- "@xsolla/xui-button": "0.119.0",
15
- "@xsolla/xui-core": "0.119.0",
16
- "@xsolla/xui-primitives-core": "0.119.0"
13
+ "@xsolla/xui-avatar": "0.121.0",
14
+ "@xsolla/xui-button": "0.121.0",
15
+ "@xsolla/xui-core": "0.121.0",
16
+ "@xsolla/xui-primitives-core": "0.121.0"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "react": ">=16.8.0",
@@ -1,95 +0,0 @@
1
- /**
2
- * Flowtype definitions for index
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
-
8
- import * as react from "react";
9
- import { Node } from "react";
10
- import { BoxProps } from "@xsolla/xui-primitives-core";
11
- declare type CellView = "default" | "stroke" | "surface";
12
- declare type CellProps = {
13
- children?: Node,
14
-
15
- /**
16
- * Visual variant of the cell container.
17
- */
18
- view?: CellView,
19
-
20
- /**
21
- * @deprecated Use `view="stroke"` instead.
22
- * If true, applies the "stroke" view style.
23
- */
24
- withBoard?: boolean,
25
- ...
26
- } & BoxProps;
27
- declare type CellSlotProps = {
28
- children?: Node,
29
- ...
30
- } & BoxProps;
31
- declare type CellContentProps = {
32
- children?: Node,
33
- ...
34
- } & BoxProps;
35
- declare type CellTextProps = {
36
- /**
37
- * Primary title on the left.
38
- */
39
- title?: Node,
40
-
41
- /**
42
- * Secondary text on the right of the title row.
43
- */
44
- titleRight?: Node,
45
-
46
- /**
47
- * Description text on the left (second row).
48
- */
49
- description?: Node,
50
-
51
- /**
52
- * Description text on the right (second row).
53
- */
54
- descriptionRight?: Node,
55
-
56
- /**
57
- * Caption text on the left (third row, tertiary color).
58
- */
59
- caption?: Node,
60
-
61
- /**
62
- * Caption text on the right (third row, tertiary color).
63
- */
64
- captionRight?: Node,
65
- ...
66
- } & BoxProps;
67
- declare var Cell: {
68
- ...react.ForwardRefExoticComponent<{
69
- ...CellProps,
70
- ...react.RefAttributes<any>,
71
- }>,
72
- ...{
73
- Slot: react.ForwardRefExoticComponent<{
74
- ...CellSlotProps,
75
- ...react.RefAttributes<any>,
76
- }>,
77
- Content: react.ForwardRefExoticComponent<{
78
- ...CellContentProps,
79
- ...react.RefAttributes<any>,
80
- }>,
81
- Text: react.ForwardRefExoticComponent<{
82
- ...CellTextProps,
83
- ...react.RefAttributes<any>,
84
- }>,
85
- ...
86
- },
87
- };
88
- export type {
89
- CellContentProps,
90
- CellProps,
91
- CellSlotProps,
92
- CellTextProps,
93
- CellView,
94
- };
95
- declare export { Cell };
package/web/index.js.flow DELETED
@@ -1,95 +0,0 @@
1
- /**
2
- * Flowtype definitions for index
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
-
8
- import * as react from "react";
9
- import { Node } from "react";
10
- import { BoxProps } from "@xsolla/xui-primitives-core";
11
- declare type CellView = "default" | "stroke" | "surface";
12
- declare type CellProps = {
13
- children?: Node,
14
-
15
- /**
16
- * Visual variant of the cell container.
17
- */
18
- view?: CellView,
19
-
20
- /**
21
- * @deprecated Use `view="stroke"` instead.
22
- * If true, applies the "stroke" view style.
23
- */
24
- withBoard?: boolean,
25
- ...
26
- } & BoxProps;
27
- declare type CellSlotProps = {
28
- children?: Node,
29
- ...
30
- } & BoxProps;
31
- declare type CellContentProps = {
32
- children?: Node,
33
- ...
34
- } & BoxProps;
35
- declare type CellTextProps = {
36
- /**
37
- * Primary title on the left.
38
- */
39
- title?: Node,
40
-
41
- /**
42
- * Secondary text on the right of the title row.
43
- */
44
- titleRight?: Node,
45
-
46
- /**
47
- * Description text on the left (second row).
48
- */
49
- description?: Node,
50
-
51
- /**
52
- * Description text on the right (second row).
53
- */
54
- descriptionRight?: Node,
55
-
56
- /**
57
- * Caption text on the left (third row, tertiary color).
58
- */
59
- caption?: Node,
60
-
61
- /**
62
- * Caption text on the right (third row, tertiary color).
63
- */
64
- captionRight?: Node,
65
- ...
66
- } & BoxProps;
67
- declare var Cell: {
68
- ...react.ForwardRefExoticComponent<{
69
- ...CellProps,
70
- ...react.RefAttributes<any>,
71
- }>,
72
- ...{
73
- Slot: react.ForwardRefExoticComponent<{
74
- ...CellSlotProps,
75
- ...react.RefAttributes<any>,
76
- }>,
77
- Content: react.ForwardRefExoticComponent<{
78
- ...CellContentProps,
79
- ...react.RefAttributes<any>,
80
- }>,
81
- Text: react.ForwardRefExoticComponent<{
82
- ...CellTextProps,
83
- ...react.RefAttributes<any>,
84
- }>,
85
- ...
86
- },
87
- };
88
- export type {
89
- CellContentProps,
90
- CellProps,
91
- CellSlotProps,
92
- CellTextProps,
93
- CellView,
94
- };
95
- declare export { Cell };