@pingux/astro 2.65.0 → 2.65.1-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.
Files changed (39) hide show
  1. package/lib/cjs/components/DataTable/DataTable.d.ts +4 -0
  2. package/lib/cjs/components/DataTable/DataTable.js +28 -108
  3. package/lib/cjs/components/DataTable/DataTable.stories.d.ts +202 -0
  4. package/lib/cjs/components/DataTable/DataTable.stories.js +37 -41
  5. package/lib/cjs/components/DataTable/DataTable.styles.d.ts +141 -0
  6. package/lib/cjs/components/DataTable/DataTable.test.d.ts +1 -0
  7. package/lib/cjs/components/DataTable/DataTable.test.js +119 -116
  8. package/lib/cjs/components/DataTable/DataTableBadge.d.ts +4 -0
  9. package/lib/cjs/components/DataTable/DataTableBadge.js +2 -6
  10. package/lib/cjs/components/DataTable/DataTableBadge.test.d.ts +1 -0
  11. package/lib/cjs/components/DataTable/DataTableMenu.d.ts +3 -0
  12. package/lib/cjs/components/DataTable/DataTableMenu.test.d.ts +1 -0
  13. package/lib/cjs/components/DataTable/DataTableMultiLine.d.ts +4 -0
  14. package/lib/cjs/components/DataTable/DataTableMultiLine.js +2 -2
  15. package/lib/cjs/components/DataTable/DataTableMultiLine.test.d.ts +1 -0
  16. package/lib/cjs/components/DataTable/DataTableMultiLine.test.js +1 -2
  17. package/lib/cjs/components/DataTable/DataTableVirtualizer.d.ts +8 -0
  18. package/lib/cjs/components/DataTable/DataTableVirtualizer.js +12 -36
  19. package/lib/cjs/components/DataTable/index.d.ts +5 -0
  20. package/lib/cjs/types/dataTable.d.ts +88 -0
  21. package/lib/cjs/types/dataTable.js +6 -0
  22. package/lib/cjs/types/index.d.ts +1 -0
  23. package/lib/cjs/types/index.js +45 -34
  24. package/lib/cjs/types/shared/index.d.ts +1 -0
  25. package/lib/cjs/types/shared/index.js +16 -5
  26. package/lib/cjs/types/shared/loadingState.d.ts +1 -0
  27. package/lib/cjs/types/shared/loadingState.js +6 -0
  28. package/lib/components/DataTable/DataTable.js +28 -108
  29. package/lib/components/DataTable/DataTable.stories.js +37 -41
  30. package/lib/components/DataTable/DataTable.test.js +118 -116
  31. package/lib/components/DataTable/DataTableBadge.js +2 -6
  32. package/lib/components/DataTable/DataTableMultiLine.js +2 -2
  33. package/lib/components/DataTable/DataTableMultiLine.test.js +1 -2
  34. package/lib/components/DataTable/DataTableVirtualizer.js +13 -37
  35. package/lib/types/dataTable.js +1 -0
  36. package/lib/types/index.js +1 -0
  37. package/lib/types/shared/index.js +1 -0
  38. package/lib/types/shared/loadingState.js +1 -0
  39. package/package.json +3 -2
@@ -0,0 +1,141 @@
1
+ declare const _default: {
2
+ tableBody: {
3
+ position: string;
4
+ overflow: string;
5
+ };
6
+ tableHeadWrapper: {
7
+ borderLeftWidth: string;
8
+ borderLeftStyle: string;
9
+ borderRightWidth: string;
10
+ borderRightStyle: string;
11
+ flex: string;
12
+ borderBottom: string;
13
+ borderBottomStyle: string;
14
+ borderBottomColor: string;
15
+ };
16
+ tableCenteredWrapper: {
17
+ display: string;
18
+ alignItems: string;
19
+ justifyContent: string;
20
+ width: string;
21
+ height: string;
22
+ };
23
+ tableCellContents: {
24
+ maxHeight: number;
25
+ overflow: string;
26
+ display: string;
27
+ '-webkit-line-clamp': string;
28
+ '-webkit-box-orient': string;
29
+ };
30
+ tableCell: {
31
+ color: string;
32
+ position: string;
33
+ display: string;
34
+ fontSize: string;
35
+ height: string;
36
+ pr: string;
37
+ flex: string;
38
+ overflow: string;
39
+ fontWeight: number;
40
+ justifyContent: string;
41
+ py: number;
42
+ '&.is-key-focused': {
43
+ outline: string;
44
+ outlineStyle: string;
45
+ outlineColor: string;
46
+ outlineOffset: string;
47
+ backgroundColor: string;
48
+ };
49
+ '&.is-align-start': {
50
+ alignItems: string;
51
+ };
52
+ '&.is-align-center': {
53
+ alignItems: string;
54
+ };
55
+ '&.is-align-end': {
56
+ alignItems: string;
57
+ };
58
+ fontFamily: string;
59
+ overflowWrap: import("../..").overflowWrap;
60
+ maxWidth: string;
61
+ wordWrap: import("../..").wordWrap;
62
+ wordBreak: import("../..").wordBreak;
63
+ };
64
+ tableRow: {
65
+ position: string;
66
+ cursor: string;
67
+ borderBottom: string;
68
+ outline: string;
69
+ borderBottomStyle: string;
70
+ borderBottomColor: string;
71
+ '&.is-row-focus-visible': {
72
+ border: string;
73
+ borderColor: string;
74
+ borderBottom: string;
75
+ borderBottomColor: string;
76
+ backgroundColor: string;
77
+ };
78
+ };
79
+ tableHeadCell: {
80
+ cursor: string;
81
+ flexDirection: string;
82
+ alignItems: string;
83
+ fontWeight: number;
84
+ height: string;
85
+ pr: string;
86
+ py: string;
87
+ '&.is-click-focused': {
88
+ outline: string;
89
+ };
90
+ '&.is-key-focused': {
91
+ outline: string;
92
+ outlineStyle: string;
93
+ outlineColor: string;
94
+ outlineOffset: string;
95
+ };
96
+ '&.is-column-sortable': {
97
+ cursor: string;
98
+ borderLeft: string;
99
+ borderRight: string;
100
+ borderColor: string;
101
+ svg: {
102
+ fill: string;
103
+ };
104
+ '&:hover': {
105
+ color: string;
106
+ textDecoration: string;
107
+ borderColor: string;
108
+ svg: {
109
+ fill: string;
110
+ };
111
+ };
112
+ };
113
+ '&.is-column-sortable.is-first-column': {
114
+ borderLeft: string;
115
+ };
116
+ '&.is-column-sortable.is-last-column': {
117
+ borderRight: string;
118
+ };
119
+ '&.is-align-start': {
120
+ justifyContent: string;
121
+ };
122
+ '&.is-align-center': {
123
+ justifyContent: string;
124
+ };
125
+ '&.is-align-end': {
126
+ justifyContent: string;
127
+ };
128
+ fontSize: string;
129
+ color: string;
130
+ fontFamily: string;
131
+ display: string;
132
+ overflowWrap: import("../..").overflowWrap;
133
+ maxWidth: string;
134
+ wordWrap: import("../..").wordWrap;
135
+ wordBreak: import("../..").wordBreak;
136
+ };
137
+ tableMenu: {
138
+ borderRadius: string;
139
+ };
140
+ };
141
+ export default _default;
@@ -0,0 +1 @@
1
+ export {};