@admin-layout/client 11.0.1-alpha.0 → 11.0.4-alpha.4

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 (61) hide show
  1. package/lib/antd-themes/ThemeProvider.d.ts +1 -425
  2. package/lib/antd-themes/ThemeProvider.d.ts.map +1 -1
  3. package/lib/antd-themes/ThemeProvider.js +3 -3
  4. package/lib/antd-themes/ThemeProvider.js.map +1 -1
  5. package/lib/antd-themes/airbnb-dark-theme.d.ts +1 -229
  6. package/lib/antd-themes/airbnb-dark-theme.d.ts.map +1 -1
  7. package/lib/antd-themes/default-dark-theme.d.ts +1 -198
  8. package/lib/antd-themes/default-dark-theme.d.ts.map +1 -1
  9. package/lib/antd-themes/github-dark-theme.d.ts +1 -229
  10. package/lib/antd-themes/github-dark-theme.d.ts.map +1 -1
  11. package/lib/antd-themes/slack-dark-theme.d.ts +1 -228
  12. package/lib/antd-themes/slack-dark-theme.d.ts.map +1 -1
  13. package/lib/antd-themes/spotify-dark-theme.d.ts +1 -229
  14. package/lib/antd-themes/spotify-dark-theme.d.ts.map +1 -1
  15. package/lib/antd-themes/themeRegistry.d.ts +1 -2228
  16. package/lib/antd-themes/themeRegistry.d.ts.map +1 -1
  17. package/lib/components/ApplicationErrorFillWrapper.d.ts +1 -2
  18. package/lib/components/ApplicationErrorFillWrapper.d.ts.map +1 -1
  19. package/lib/components/ApplicationErrorFillWrapper.js +2 -2
  20. package/lib/components/ApplicationErrorHandlerCommon.js +6 -8
  21. package/lib/components/ApplicationErrorHandlerCommon.js.map +1 -1
  22. package/lib/components/ErrorBoundaryCommon.d.ts +1 -1
  23. package/lib/components/ErrorBoundaryCommon.js +2 -2
  24. package/lib/components/ErrorBoundaryCommon.js.map +1 -1
  25. package/lib/components/LayoutCookieProvider.d.ts +7 -0
  26. package/lib/components/LayoutCookieProvider.d.ts.map +1 -0
  27. package/lib/components/LayoutCookieProvider.js +19 -0
  28. package/lib/components/LayoutCookieProvider.js.map +1 -0
  29. package/lib/components/UpdateSettings/UpdateSettings.server.js.map +1 -1
  30. package/lib/components/index.d.ts +1 -0
  31. package/lib/components/index.d.ts.map +1 -1
  32. package/lib/hooks/index.d.ts +1 -1
  33. package/lib/hooks/index.d.ts.map +1 -1
  34. package/lib/hooks/useLayoutSettings.d.ts +5 -0
  35. package/lib/hooks/useLayoutSettings.d.ts.map +1 -0
  36. package/lib/hooks/{useSettings.js → useLayoutSettings.js} +19 -13
  37. package/lib/hooks/useLayoutSettings.js.map +1 -0
  38. package/lib/index.js +1 -1
  39. package/lib/index.native.js +1 -1
  40. package/lib/redux/index.d.ts +0 -1
  41. package/lib/redux/index.d.ts.map +1 -1
  42. package/lib/redux/reducers/index.d.ts +1 -0
  43. package/lib/redux/reducers/index.d.ts.map +1 -1
  44. package/lib/redux/reducers/settings.d.ts +7 -0
  45. package/lib/redux/reducers/settings.d.ts.map +1 -0
  46. package/lib/redux/{settings.js → reducers/settings.js} +2 -2
  47. package/lib/redux/reducers/settings.js.map +1 -0
  48. package/lib/redux/store.js +1 -1
  49. package/lib/utils/menuUtils.d.ts +2 -2
  50. package/lib/utils/menuUtils.d.ts.map +1 -1
  51. package/package.json +4 -4
  52. package/lib/components/UpdateSettings/UpdateSettings.server.d.ts +0 -7
  53. package/lib/components/UpdateSettings/UpdateSettings.server.d.ts.map +0 -1
  54. package/lib/hooks/useSettings.d.ts +0 -5
  55. package/lib/hooks/useSettings.d.ts.map +0 -1
  56. package/lib/hooks/useSettings.js.map +0 -1
  57. package/lib/redux/actions/settings-action.d.ts +0 -1
  58. package/lib/redux/actions/settings-action.d.ts.map +0 -1
  59. package/lib/redux/settings.d.ts +0 -41
  60. package/lib/redux/settings.d.ts.map +0 -1
  61. package/lib/redux/settings.js.map +0 -1
@@ -1,230 +1,2 @@
1
- export declare const spotifyDarkTheme: {
2
- algorithm: import("@ant-design/cssinjs").DerivativeFunc<import("antd/es/theme/interface").SeedToken, import("antd/es/theme/interface").MapToken>;
3
- token: {
4
- colorPrimary: string;
5
- colorBgContainer: string;
6
- colorText: string;
7
- colorTextSecondary: string;
8
- fontFamily: string;
9
- borderRadius: number;
10
- colorLink: string;
11
- colorLinkHover: string;
12
- colorLinkActive: string;
13
- };
14
- components: {
15
- Button: {
16
- algorithm: boolean;
17
- borderRadius: number;
18
- controlHeight: number;
19
- controlHeightLG: number;
20
- controlHeightSM: number;
21
- paddingContentHorizontal: number;
22
- };
23
- Menu: {
24
- itemBg: string;
25
- itemColor: string;
26
- itemHoverColor: string;
27
- itemSelectedColor: string;
28
- itemSelectedBg: string;
29
- itemHoverBg: string;
30
- activeBarWidth: number;
31
- activeBarHeight: number;
32
- activeBarBorderWidth: number;
33
- colorActiveBarColor: string;
34
- };
35
- Typography: {
36
- fontSizeHeading1: number;
37
- fontSizeHeading2: number;
38
- fontSizeHeading3: number;
39
- fontSizeHeading4: number;
40
- fontSizeHeading5: number;
41
- };
42
- Form: {
43
- labelColor: string;
44
- colorError: string;
45
- colorWarning: string;
46
- colorSuccess: string;
47
- };
48
- Input: {
49
- controlHeight: number;
50
- controlHeightLG: number;
51
- controlHeightSM: number;
52
- paddingHorizontal: number;
53
- borderRadius: number;
54
- };
55
- };
56
- scopes: ({
57
- scope: string[];
58
- settings: {
59
- default: {
60
- background: string;
61
- foreground: string;
62
- border: string;
63
- };
64
- primary: {
65
- background: string;
66
- foreground: string;
67
- border: string;
68
- };
69
- hover: {
70
- background: string;
71
- foreground: string;
72
- border: string;
73
- };
74
- active: {
75
- background: string;
76
- foreground: string;
77
- border: string;
78
- };
79
- disabled: {
80
- background: string;
81
- foreground: string;
82
- border: string;
83
- };
84
- focus?: undefined;
85
- background?: undefined;
86
- item?: undefined;
87
- header?: undefined;
88
- row?: undefined;
89
- heading?: undefined;
90
- text?: undefined;
91
- };
92
- } | {
93
- scope: string[];
94
- settings: {
95
- default: {
96
- background: string;
97
- foreground: string;
98
- border: string;
99
- };
100
- focus: {
101
- border: string;
102
- boxShadow: string;
103
- };
104
- hover: {
105
- border: string;
106
- background?: undefined;
107
- foreground?: undefined;
108
- };
109
- disabled: {
110
- background: string;
111
- foreground: string;
112
- border: string;
113
- };
114
- primary?: undefined;
115
- active?: undefined;
116
- background?: undefined;
117
- item?: undefined;
118
- header?: undefined;
119
- row?: undefined;
120
- heading?: undefined;
121
- text?: undefined;
122
- };
123
- } | {
124
- scope: string[];
125
- settings: {
126
- background: string;
127
- item: {
128
- default: {
129
- background: string;
130
- foreground: string;
131
- };
132
- hover: {
133
- background: string;
134
- foreground: string;
135
- };
136
- active: {
137
- background: string;
138
- foreground: string;
139
- };
140
- };
141
- default?: undefined;
142
- primary?: undefined;
143
- hover?: undefined;
144
- active?: undefined;
145
- disabled?: undefined;
146
- focus?: undefined;
147
- header?: undefined;
148
- row?: undefined;
149
- heading?: undefined;
150
- text?: undefined;
151
- };
152
- } | {
153
- scope: string[];
154
- settings: {
155
- header: {
156
- background: string;
157
- foreground: string;
158
- };
159
- row: {
160
- odd: {
161
- background: string;
162
- };
163
- even: {
164
- background: string;
165
- };
166
- hover: {
167
- background: string;
168
- };
169
- };
170
- default?: undefined;
171
- primary?: undefined;
172
- hover?: undefined;
173
- active?: undefined;
174
- disabled?: undefined;
175
- focus?: undefined;
176
- background?: undefined;
177
- item?: undefined;
178
- heading?: undefined;
179
- text?: undefined;
180
- };
181
- } | {
182
- scope: string[];
183
- settings: {
184
- heading: {
185
- 1: {
186
- fontSize: number;
187
- fontWeight: number;
188
- };
189
- 2: {
190
- fontSize: number;
191
- fontWeight: number;
192
- };
193
- 3: {
194
- fontSize: number;
195
- fontWeight: number;
196
- };
197
- 4: {
198
- fontSize: number;
199
- fontWeight: number;
200
- };
201
- 5: {
202
- fontSize: number;
203
- fontWeight: number;
204
- };
205
- };
206
- text: {
207
- default: {
208
- fontSize: number;
209
- fontWeight: number;
210
- };
211
- secondary: {
212
- fontSize: number;
213
- fontWeight: number;
214
- foreground: string;
215
- };
216
- };
217
- default?: undefined;
218
- primary?: undefined;
219
- hover?: undefined;
220
- active?: undefined;
221
- disabled?: undefined;
222
- focus?: undefined;
223
- background?: undefined;
224
- item?: undefined;
225
- header?: undefined;
226
- row?: undefined;
227
- };
228
- })[];
229
- };
1
+ export declare const spotifyDarkTheme: any;
230
2
  //# sourceMappingURL=spotify-dark-theme.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"spotify-dark-theme.d.ts","sourceRoot":"","sources":["../../src/antd-themes/spotify-dark-theme.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsK5B,CAAC"}
1
+ {"version":3,"file":"spotify-dark-theme.d.ts","sourceRoot":"","sources":["../../src/antd-themes/spotify-dark-theme.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,gBAAgB,EAAE,GAsK9B,CAAC"}