@gooddata/sdk-ui-kit 10.33.0-alpha.27 → 10.33.0-alpha.28
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 +8 -8
- package/styles/css/SVGicons.css +34 -34
- package/styles/css/chartSorting.css +7 -7
- package/styles/css/embedInsightDialog.css +1 -1
- package/styles/css/header.css +9 -9
- package/styles/css/indigoFont.css +2 -2
- package/styles/css/insightList.css +29 -29
- package/styles/css/list.css +2 -2
- package/styles/css/loadingMask.css +1 -1
- package/styles/css/main.css +81 -81
- package/styles/css/menu.css +2 -2
- package/styles/scss/SVGicons.scss +2 -2
- package/styles/scss/chartSorting.scss +8 -8
- package/styles/scss/embedInsightDialog.scss +1 -1
- package/styles/scss/header.scss +9 -9
- package/styles/scss/indigoFont.scss +2 -2
- package/styles/scss/insightList.scss +2 -2
- package/styles/scss/loadingMask.scss +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-kit",
|
|
3
|
-
"version": "10.33.0-alpha.
|
|
3
|
+
"version": "10.33.0-alpha.28",
|
|
4
4
|
"description": "GoodData SDK - UI Building Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
"@floating-ui/dom": "1.6.13",
|
|
79
79
|
"@floating-ui/react-dom": "2.1.2",
|
|
80
80
|
"@floating-ui/react": "~0.27.12",
|
|
81
|
-
"@gooddata/sdk-backend-spi": "10.33.0-alpha.
|
|
82
|
-
"@gooddata/sdk-model": "10.33.0-alpha.
|
|
83
|
-
"@gooddata/sdk-ui": "10.33.0-alpha.
|
|
84
|
-
"@gooddata/sdk-ui
|
|
85
|
-
"@gooddata/util": "10.33.0-alpha.
|
|
81
|
+
"@gooddata/sdk-backend-spi": "10.33.0-alpha.28",
|
|
82
|
+
"@gooddata/sdk-model": "10.33.0-alpha.28",
|
|
83
|
+
"@gooddata/sdk-ui-theme-provider": "10.33.0-alpha.28",
|
|
84
|
+
"@gooddata/sdk-ui": "10.33.0-alpha.28",
|
|
85
|
+
"@gooddata/util": "10.33.0-alpha.28"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
|
|
@@ -139,8 +139,8 @@
|
|
|
139
139
|
"typescript": "5.3.3",
|
|
140
140
|
"vitest": "3.0.8",
|
|
141
141
|
"vitest-dom": "0.1.1",
|
|
142
|
-
"@gooddata/reference-workspace": "10.33.0-alpha.
|
|
143
|
-
"@gooddata/sdk-backend-mockingbird": "10.33.0-alpha.
|
|
142
|
+
"@gooddata/reference-workspace": "10.33.0-alpha.28",
|
|
143
|
+
"@gooddata/sdk-backend-mockingbird": "10.33.0-alpha.28"
|
|
144
144
|
},
|
|
145
145
|
"scripts": {
|
|
146
146
|
"clean": "rm -rf ci dist esm coverage styles/css *.log tsconfig.tsbuildinfo",
|
package/styles/css/SVGicons.css
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
.gd-icon-fact::before,
|
|
13
13
|
.gd-icon-measure::before {
|
|
14
|
-
background-image: url("
|
|
14
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/measure.svg");
|
|
15
15
|
}
|
|
16
16
|
.gd-icon-fact.disabled::before, .gd-icon-fact[disabled=disabled]::before,
|
|
17
17
|
.gd-icon-measure.disabled::before,
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
.gd-icon-fact.disabled::before, .gd-icon-fact[disabled=disabled]::before,
|
|
30
30
|
.gd-icon-measure.disabled::before,
|
|
31
31
|
.gd-icon-measure[disabled=disabled]::before {
|
|
32
|
-
background-image: url("
|
|
32
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/measure-disabled.svg");
|
|
33
33
|
}
|
|
34
34
|
.gd-icon-fact.gd-button-small::before, .gd-icon-fact.gd-button-link::before,
|
|
35
35
|
.gd-icon-measure.gd-button-small::before,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
height: 100%;
|
|
48
48
|
}
|
|
49
49
|
.gd-icon-aggregation::before {
|
|
50
|
-
background-image: url("
|
|
50
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sum.svg");
|
|
51
51
|
}
|
|
52
52
|
.gd-icon-aggregation.gd-button-small::before, .gd-icon-aggregation.gd-button-link::before {
|
|
53
53
|
margin-top: -1px;
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
height: 100%;
|
|
64
64
|
}
|
|
65
65
|
.gd-icon-metric::before {
|
|
66
|
-
background-image: url("
|
|
66
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/metric.svg");
|
|
67
67
|
}
|
|
68
68
|
.gd-icon-metric.disabled::before, .gd-icon-metric[disabled=disabled]::before {
|
|
69
69
|
content: "";
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
height: 100%;
|
|
76
76
|
}
|
|
77
77
|
.gd-icon-metric.disabled::before, .gd-icon-metric[disabled=disabled]::before {
|
|
78
|
-
background-image: url("
|
|
78
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/metric-disabled.svg");
|
|
79
79
|
}
|
|
80
80
|
.gd-icon-metric.gd-button-small::before, .gd-icon-metric.gd-button-link::before {
|
|
81
81
|
margin-top: -1px;
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
height: 100%;
|
|
92
92
|
}
|
|
93
93
|
.gd-icon-attribute::before {
|
|
94
|
-
background-image: url("
|
|
94
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/attribute.svg");
|
|
95
95
|
}
|
|
96
96
|
.gd-icon-attribute.disabled::before, .gd-icon-attribute[disabled=disabled]::before {
|
|
97
97
|
content: "";
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
height: 100%;
|
|
104
104
|
}
|
|
105
105
|
.gd-icon-attribute.disabled::before, .gd-icon-attribute[disabled=disabled]::before {
|
|
106
|
-
background-image: url("
|
|
106
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/attribute-disabled.svg");
|
|
107
107
|
}
|
|
108
108
|
.gd-icon-attribute.gd-button-small::before, .gd-icon-attribute.gd-button-link::before {
|
|
109
109
|
margin-top: -1px;
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
height: 100%;
|
|
120
120
|
}
|
|
121
121
|
.gd-icon-model::before {
|
|
122
|
-
background-image: url("
|
|
122
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/model.svg");
|
|
123
123
|
}
|
|
124
124
|
.gd-icon-model.is-active::before {
|
|
125
125
|
content: "";
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
height: 100%;
|
|
132
132
|
}
|
|
133
133
|
.gd-icon-model.is-active::before {
|
|
134
|
-
background-image: url("
|
|
134
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/model-active.svg");
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.gd-icon-sources::before {
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
height: 100%;
|
|
145
145
|
}
|
|
146
146
|
.gd-icon-sources::before {
|
|
147
|
-
background-image: url("
|
|
147
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sources.svg");
|
|
148
148
|
}
|
|
149
149
|
.gd-icon-sources.is-active::before {
|
|
150
150
|
content: "";
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
height: 100%;
|
|
157
157
|
}
|
|
158
158
|
.gd-icon-sources.is-active::before {
|
|
159
|
-
background-image: url("
|
|
159
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sources-active.svg");
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
.gd-icon-date::before {
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
height: 100%;
|
|
170
170
|
}
|
|
171
171
|
.gd-icon-date::before {
|
|
172
|
-
background-image: url("
|
|
172
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/date.svg");
|
|
173
173
|
}
|
|
174
174
|
.gd-icon-date.disabled::before, .gd-icon-date[disabled=disabled]::before {
|
|
175
175
|
content: "";
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
height: 100%;
|
|
182
182
|
}
|
|
183
183
|
.gd-icon-date.disabled::before, .gd-icon-date[disabled=disabled]::before {
|
|
184
|
-
background-image: url("
|
|
184
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/date-disabled.svg");
|
|
185
185
|
}
|
|
186
186
|
.gd-icon-date.gd-button-small::before {
|
|
187
187
|
margin-top: -1px;
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
height: 100%;
|
|
206
206
|
}
|
|
207
207
|
.gd-icon-all::before {
|
|
208
|
-
background-image: url("
|
|
208
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/all.svg");
|
|
209
209
|
}
|
|
210
210
|
.gd-icon-all.gd-button-small::before {
|
|
211
211
|
margin-top: -1px;
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
height: 100%;
|
|
225
225
|
}
|
|
226
226
|
.gd-icon-greater-than::before {
|
|
227
|
-
background-image: url("
|
|
227
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/greater-than.svg");
|
|
228
228
|
}
|
|
229
229
|
.gd-icon-greater-than.gd-button-small::before {
|
|
230
230
|
margin-top: -1px;
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
height: 100%;
|
|
244
244
|
}
|
|
245
245
|
.gd-icon-greater-than-equal-to::before {
|
|
246
|
-
background-image: url("
|
|
246
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/greater-than-equal-to.svg");
|
|
247
247
|
}
|
|
248
248
|
.gd-icon-greater-than-equal-to.gd-button-small::before {
|
|
249
249
|
margin-top: -1px;
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
height: 100%;
|
|
263
263
|
}
|
|
264
264
|
.gd-icon-less-than::before {
|
|
265
|
-
background-image: url("
|
|
265
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/less-than.svg");
|
|
266
266
|
}
|
|
267
267
|
.gd-icon-less-than.gd-button-small::before {
|
|
268
268
|
margin-top: -1px;
|
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
height: 100%;
|
|
282
282
|
}
|
|
283
283
|
.gd-icon-less-than-equal-to::before {
|
|
284
|
-
background-image: url("
|
|
284
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/less-than-equal-to.svg");
|
|
285
285
|
}
|
|
286
286
|
.gd-icon-less-than-equal-to.gd-button-small::before {
|
|
287
287
|
margin-top: -1px;
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
height: 100%;
|
|
301
301
|
}
|
|
302
302
|
.gd-icon-between::before {
|
|
303
|
-
background-image: url("
|
|
303
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/between.svg");
|
|
304
304
|
}
|
|
305
305
|
.gd-icon-between.gd-button-small::before {
|
|
306
306
|
margin-top: -1px;
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
height: 100%;
|
|
320
320
|
}
|
|
321
321
|
.gd-icon-not-between::before {
|
|
322
|
-
background-image: url("
|
|
322
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/not-between.svg");
|
|
323
323
|
}
|
|
324
324
|
.gd-icon-not-between.gd-button-small::before {
|
|
325
325
|
margin-top: -1px;
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
height: 100%;
|
|
339
339
|
}
|
|
340
340
|
.gd-icon-equal-to::before {
|
|
341
|
-
background-image: url("
|
|
341
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/equal-to.svg");
|
|
342
342
|
}
|
|
343
343
|
.gd-icon-equal-to.gd-button-small::before {
|
|
344
344
|
margin-top: -1px;
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
height: 100%;
|
|
358
358
|
}
|
|
359
359
|
.gd-icon-not-equal-to::before {
|
|
360
|
-
background-image: url("
|
|
360
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/not-equal-to.svg");
|
|
361
361
|
}
|
|
362
362
|
.gd-icon-not-equal-to.gd-button-small::before {
|
|
363
363
|
margin-top: -1px;
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
height: 100%;
|
|
377
377
|
}
|
|
378
378
|
.gd-icon-increases-by::before {
|
|
379
|
-
background-image: url("
|
|
379
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/increases-by.svg");
|
|
380
380
|
}
|
|
381
381
|
.gd-icon-increases-by.gd-button-small::before {
|
|
382
382
|
margin-top: -1px;
|
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
height: 100%;
|
|
396
396
|
}
|
|
397
397
|
.gd-icon-decreases-by::before {
|
|
398
|
-
background-image: url("
|
|
398
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/decreases-by.svg");
|
|
399
399
|
}
|
|
400
400
|
.gd-icon-decreases-by.gd-button-small::before {
|
|
401
401
|
margin-top: -1px;
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
height: 100%;
|
|
415
415
|
}
|
|
416
416
|
.gd-icon-changes-by::before {
|
|
417
|
-
background-image: url("
|
|
417
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/changes-by.svg");
|
|
418
418
|
}
|
|
419
419
|
.gd-icon-changes-by.gd-button-small::before {
|
|
420
420
|
margin-top: -1px;
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
height: 100%;
|
|
434
434
|
}
|
|
435
435
|
.gd-icon-label::before {
|
|
436
|
-
background-image: url("
|
|
436
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/label.svg");
|
|
437
437
|
}
|
|
438
438
|
.gd-icon-label-disabled::before, .gd-icon-label.disabled::before, .gd-icon-label[disabled=disabled]::before {
|
|
439
439
|
content: "";
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
height: 100%;
|
|
446
446
|
}
|
|
447
447
|
.gd-icon-label-disabled::before, .gd-icon-label.disabled::before, .gd-icon-label[disabled=disabled]::before {
|
|
448
|
-
background-image: url("
|
|
448
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/label-disabled.svg");
|
|
449
449
|
}
|
|
450
450
|
.gd-icon-label-active::before {
|
|
451
451
|
content: "";
|
|
@@ -457,7 +457,7 @@
|
|
|
457
457
|
height: 100%;
|
|
458
458
|
}
|
|
459
459
|
.gd-icon-label-active::before {
|
|
460
|
-
background-image: url("
|
|
460
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/label-active.svg");
|
|
461
461
|
}
|
|
462
462
|
.gd-icon-label-warning::before {
|
|
463
463
|
content: "";
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
height: 100%;
|
|
470
470
|
}
|
|
471
471
|
.gd-icon-label-warning::before {
|
|
472
|
-
background-image: url("
|
|
472
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/label-warning.svg");
|
|
473
473
|
}
|
|
474
474
|
|
|
475
475
|
.gd-icon-hyperlink::before {
|
|
@@ -482,7 +482,7 @@
|
|
|
482
482
|
height: 100%;
|
|
483
483
|
}
|
|
484
484
|
.gd-icon-hyperlink::before {
|
|
485
|
-
background-image: url("
|
|
485
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/hyperlink.svg");
|
|
486
486
|
}
|
|
487
487
|
.gd-icon-hyperlink-disabled::before, .gd-icon-hyperlink.disabled::before, .gd-icon-hyperlink[disabled=disabled]::before {
|
|
488
488
|
content: "";
|
|
@@ -494,7 +494,7 @@
|
|
|
494
494
|
height: 100%;
|
|
495
495
|
}
|
|
496
496
|
.gd-icon-hyperlink-disabled::before, .gd-icon-hyperlink.disabled::before, .gd-icon-hyperlink[disabled=disabled]::before {
|
|
497
|
-
background-image: url("
|
|
497
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/hyperlink-disabled.svg");
|
|
498
498
|
}
|
|
499
499
|
.gd-icon-hyperlink-active::before {
|
|
500
500
|
content: "";
|
|
@@ -506,7 +506,7 @@
|
|
|
506
506
|
height: 100%;
|
|
507
507
|
}
|
|
508
508
|
.gd-icon-hyperlink-active::before {
|
|
509
|
-
background-image: url("
|
|
509
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/hyperlink-active.svg");
|
|
510
510
|
}
|
|
511
511
|
.gd-icon-hyperlink-warning::before {
|
|
512
512
|
content: "";
|
|
@@ -518,7 +518,7 @@
|
|
|
518
518
|
height: 100%;
|
|
519
519
|
}
|
|
520
520
|
.gd-icon-hyperlink-warning::before {
|
|
521
|
-
background-image: url("
|
|
521
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/hyperlink-warning.svg");
|
|
522
522
|
}
|
|
523
523
|
|
|
524
524
|
.gd-icon-image::before {
|
|
@@ -531,7 +531,7 @@
|
|
|
531
531
|
height: 100%;
|
|
532
532
|
}
|
|
533
533
|
.gd-icon-image::before {
|
|
534
|
-
background-image: url("
|
|
534
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/image.svg");
|
|
535
535
|
}
|
|
536
536
|
|
|
537
537
|
/*# sourceMappingURL=SVGicons.css.map */
|
|
@@ -106,31 +106,31 @@
|
|
|
106
106
|
|
|
107
107
|
.gd-sort-attribute-section .gd-icon-sort-numerical-asc::before,
|
|
108
108
|
.gd-attribute-sorting-dropdown-body .gd-icon-sort-numerical-asc::before {
|
|
109
|
-
background-image: url("
|
|
109
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sort-numerical-asc.svg");
|
|
110
110
|
}
|
|
111
111
|
.gd-sort-attribute-section .gd-icon-sort-numerical-desc::before,
|
|
112
112
|
.gd-attribute-sorting-dropdown-body .gd-icon-sort-numerical-desc::before {
|
|
113
|
-
background-image: url("
|
|
113
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sort-numerical-desc.svg");
|
|
114
114
|
}
|
|
115
115
|
.gd-sort-attribute-section .gd-icon-sort-alphabetical-asc::before,
|
|
116
116
|
.gd-attribute-sorting-dropdown-body .gd-icon-sort-alphabetical-asc::before {
|
|
117
|
-
background-image: url("
|
|
117
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sort-alphabetical-asc.svg");
|
|
118
118
|
}
|
|
119
119
|
.gd-sort-attribute-section .gd-icon-sort-alphabetical-desc::before,
|
|
120
120
|
.gd-attribute-sorting-dropdown-body .gd-icon-sort-alphabetical-desc::before {
|
|
121
|
-
background-image: url("
|
|
121
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sort-alphabetical-desc.svg");
|
|
122
122
|
}
|
|
123
123
|
.gd-sort-attribute-section .gd-icon-sort-date-asc::before,
|
|
124
124
|
.gd-attribute-sorting-dropdown-body .gd-icon-sort-date-asc::before {
|
|
125
|
-
background-image: url("
|
|
125
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sort-date-asc.svg");
|
|
126
126
|
}
|
|
127
127
|
.gd-sort-attribute-section .gd-icon-sort-date-desc::before,
|
|
128
128
|
.gd-attribute-sorting-dropdown-body .gd-icon-sort-date-desc::before {
|
|
129
|
-
background-image: url("
|
|
129
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sort-date-desc.svg");
|
|
130
130
|
}
|
|
131
131
|
.gd-sort-attribute-section .gd-icon-sort-default::before,
|
|
132
132
|
.gd-attribute-sorting-dropdown-body .gd-icon-sort-default::before {
|
|
133
|
-
background-image: url("
|
|
133
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/icons/sort-default.svg");
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
/*# sourceMappingURL=chartSorting.css.map */
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
display: flex;
|
|
77
77
|
align-items: center;
|
|
78
78
|
justify-content: space-evenly;
|
|
79
|
-
background: url("
|
|
79
|
+
background: url("@gooddata/sdk-ui-kit/styles/images/embed-insight/code-area-placeholder.svg") no-repeat center center;
|
|
80
80
|
background-size: cover;
|
|
81
81
|
width: 100%;
|
|
82
82
|
height: 100%;
|
package/styles/css/header.css
CHANGED
|
@@ -233,16 +233,16 @@
|
|
|
233
233
|
height: 16px;
|
|
234
234
|
}
|
|
235
235
|
.gd-list-help-menu-item .gd-icon-slack {
|
|
236
|
-
background: url("
|
|
236
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/slack.svg") no-repeat;
|
|
237
237
|
}
|
|
238
238
|
.gd-list-help-menu-item .gd-icon-documentation {
|
|
239
|
-
background: url("
|
|
239
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/documentation.svg") no-repeat;
|
|
240
240
|
}
|
|
241
241
|
.gd-list-help-menu-item .gd-icon-university {
|
|
242
|
-
background: url("
|
|
242
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/university.svg") no-repeat;
|
|
243
243
|
}
|
|
244
244
|
.gd-list-help-menu-item .gd-icon-community {
|
|
245
|
-
background: url("
|
|
245
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/community.svg") no-repeat;
|
|
246
246
|
}
|
|
247
247
|
.gd-list-help-menu-item.gd-list-item.gd-menu-item-divider {
|
|
248
248
|
margin-bottom: 18px;
|
|
@@ -848,18 +848,18 @@ a.gd-list-help-menu-item.gd-list-item:focus {
|
|
|
848
848
|
border-top-right-radius: 0;
|
|
849
849
|
}
|
|
850
850
|
.gd-data-header-menu-section .gd-icon-sources.is-active::before {
|
|
851
|
-
background: url("
|
|
851
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/data_source_active_state.svg") no-repeat;
|
|
852
852
|
}
|
|
853
853
|
.gd-data-header-menu-section .gd-icon-sources::before {
|
|
854
854
|
top: 11px;
|
|
855
855
|
margin-top: 1px;
|
|
856
856
|
}
|
|
857
857
|
.gd-data-header-menu-section .gd-icon-sources.disabled::before {
|
|
858
|
-
background: url("
|
|
858
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/data_source_disabled_state.svg") no-repeat;
|
|
859
859
|
color: var(--gd-palette-complementary-5, #b0beca);
|
|
860
860
|
}
|
|
861
861
|
.gd-data-header-menu-section .gd-icon-sources.is-normal::before {
|
|
862
|
-
background: url("
|
|
862
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/data_source_normal_state.svg") no-repeat;
|
|
863
863
|
color: var(--gd-palette-complementary-7, #6d7680);
|
|
864
864
|
}
|
|
865
865
|
.gd-data-header-menu-section .gd-icon-sources:hover {
|
|
@@ -883,7 +883,7 @@ a.gd-list-help-menu-item.gd-list-item:focus {
|
|
|
883
883
|
color: var(--gd-palette-complementary-5, #b0beca);
|
|
884
884
|
}
|
|
885
885
|
.gd-data-header-menu-section .gd-icon-model.is-normal::before {
|
|
886
|
-
background: url("
|
|
886
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/model-normal-state.svg") no-repeat;
|
|
887
887
|
color: var(--gd-palette-complementary-7, #6d7680);
|
|
888
888
|
}
|
|
889
889
|
.gd-data-header-menu-section .gd-icon-model:hover {
|
|
@@ -997,7 +997,7 @@ button.gd-button-primary.gd-upsell-button .gd-icon-star {
|
|
|
997
997
|
width: 14px;
|
|
998
998
|
height: 13px;
|
|
999
999
|
margin: auto 7px 6.5px 11px;
|
|
1000
|
-
background: url("
|
|
1000
|
+
background: url("@gooddata/sdk-ui-kit/esm/assets/star.svg") no-repeat;
|
|
1001
1001
|
}
|
|
1002
1002
|
button.gd-button-primary.gd-upsell-button:hover {
|
|
1003
1003
|
box-sizing: border-box;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "Indigo";
|
|
3
|
-
src: url("
|
|
4
|
-
src: url("
|
|
3
|
+
src: url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.eot");
|
|
4
|
+
src: url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.eot?#iefix") format("embedded-opentype"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.woff") format("woff"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.ttf") format("truetype"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.svg#Indigo-v2") format("svg");
|
|
5
5
|
font-weight: normal;
|
|
6
6
|
font-style: normal;
|
|
7
7
|
}
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
========================================================================== */
|
|
4
4
|
@font-face {
|
|
5
5
|
font-family: "Indigo";
|
|
6
|
-
src: url("
|
|
7
|
-
src: url("
|
|
6
|
+
src: url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.eot");
|
|
7
|
+
src: url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.eot?#iefix") format("embedded-opentype"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.woff") format("woff"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.ttf") format("truetype"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.svg#Indigo-v2") format("svg");
|
|
8
8
|
font-weight: normal;
|
|
9
9
|
font-style: normal;
|
|
10
10
|
}
|
|
@@ -385,111 +385,111 @@
|
|
|
385
385
|
}
|
|
386
386
|
|
|
387
387
|
.gd-vis-type {
|
|
388
|
-
background-image: url("
|
|
388
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/unknown.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/unknown-active.svg");
|
|
389
389
|
}
|
|
390
390
|
|
|
391
391
|
.gd-vis-type-area {
|
|
392
|
-
background-image: url("
|
|
392
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/area.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/area-active.svg");
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
.gd-vis-type-bar {
|
|
396
|
-
background-image: url("
|
|
396
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/bar.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/bar-active.svg");
|
|
397
397
|
}
|
|
398
398
|
|
|
399
399
|
.gd-vis-type-bubble {
|
|
400
|
-
background-image: url("
|
|
400
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/bubble.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/bubble-active.svg");
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
.gd-vis-type-column {
|
|
404
|
-
background-image: url("
|
|
404
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/column.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/column-active.svg");
|
|
405
405
|
}
|
|
406
406
|
|
|
407
407
|
.gd-vis-type-combo {
|
|
408
|
-
background-image: url("
|
|
408
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/combo.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/combo-active.svg");
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
.gd-vis-type-combo2 {
|
|
412
|
-
background-image: url("
|
|
412
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/combo2.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/combo2-active.svg");
|
|
413
413
|
}
|
|
414
414
|
|
|
415
415
|
.gd-vis-type-donut {
|
|
416
|
-
background-image: url("
|
|
416
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/donut.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/donut-active.svg");
|
|
417
417
|
}
|
|
418
418
|
|
|
419
419
|
.gd-vis-type-dual {
|
|
420
|
-
background-image: url("
|
|
420
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/dual.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/dual-active.svg");
|
|
421
421
|
}
|
|
422
422
|
|
|
423
423
|
.gd-vis-type-funnel {
|
|
424
|
-
background-image: url("
|
|
424
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/funnel.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/funnel-active.svg");
|
|
425
425
|
}
|
|
426
426
|
|
|
427
427
|
.gd-vis-type-pyramid {
|
|
428
|
-
background-image: url("
|
|
428
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pyramid.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pyramid-active.svg");
|
|
429
429
|
}
|
|
430
430
|
|
|
431
431
|
.gd-vis-type-headline {
|
|
432
|
-
background-image: url("
|
|
432
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/headline.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/headline-active.svg");
|
|
433
433
|
}
|
|
434
434
|
|
|
435
435
|
.gd-vis-type-heatmap {
|
|
436
|
-
background-image: url("
|
|
436
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/heatmap.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/heatmap-active.svg");
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
.gd-vis-type-line {
|
|
440
|
-
background-image: url("
|
|
440
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/line.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/line-active.svg");
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
.gd-vis-type-pie {
|
|
444
|
-
background-image: url("
|
|
444
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pie.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pie-active.svg");
|
|
445
445
|
}
|
|
446
446
|
|
|
447
447
|
.gd-vis-type-scatter {
|
|
448
|
-
background-image: url("
|
|
448
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/scatter.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/scatter-active.svg");
|
|
449
449
|
}
|
|
450
450
|
|
|
451
451
|
.gd-vis-type-table {
|
|
452
|
-
background-image: url("
|
|
452
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/table.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/table-active.svg");
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
.gd-vis-type-treemap {
|
|
456
|
-
background-image: url("
|
|
456
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/treemap.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/treemap-active.svg");
|
|
457
457
|
}
|
|
458
458
|
|
|
459
459
|
.gd-vis-type-unknown {
|
|
460
|
-
background-image: url("
|
|
460
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/unknown.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/unknown-active.svg");
|
|
461
461
|
}
|
|
462
462
|
|
|
463
463
|
.gd-vis-type-xirr {
|
|
464
|
-
background-image: url("
|
|
464
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/xirr.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/xirr-active.svg");
|
|
465
465
|
}
|
|
466
466
|
|
|
467
467
|
.gd-vis-type-pushpin {
|
|
468
|
-
background-image: url("
|
|
468
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pushpin.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pushpin-active.svg");
|
|
469
469
|
}
|
|
470
470
|
|
|
471
471
|
.gd-vis-type-region {
|
|
472
|
-
background-image: url("
|
|
472
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/region.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/region-active.svg");
|
|
473
473
|
}
|
|
474
474
|
|
|
475
475
|
.gd-vis-type-bullet {
|
|
476
|
-
background-image: url("
|
|
476
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/bullet.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/bullet-active.svg");
|
|
477
477
|
}
|
|
478
478
|
|
|
479
479
|
.gd-vis-type-dependencywheel {
|
|
480
|
-
background-image: url("
|
|
480
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/dependencywheel.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/dependencywheel-active.svg");
|
|
481
481
|
}
|
|
482
482
|
|
|
483
483
|
.gd-vis-type-sankey {
|
|
484
|
-
background-image: url("
|
|
484
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/sankey.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/sankey-active.svg");
|
|
485
485
|
}
|
|
486
486
|
|
|
487
487
|
.gd-vis-type-waterfall {
|
|
488
|
-
background-image: url("
|
|
488
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/waterfall.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/waterfall-active.svg");
|
|
489
489
|
}
|
|
490
490
|
|
|
491
491
|
.gd-vis-type-repeater {
|
|
492
|
-
background-image: url("
|
|
492
|
+
background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/repeater.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/repeater-active.svg");
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
.gd-visualizations-list .public_fixedDataTableRow_main,
|
package/styles/css/list.css
CHANGED
|
@@ -681,8 +681,8 @@
|
|
|
681
681
|
/* allow vendor prefixes and disable max length */
|
|
682
682
|
@font-face {
|
|
683
683
|
font-family: "Indigo";
|
|
684
|
-
src: url("
|
|
685
|
-
src: url("
|
|
684
|
+
src: url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.eot");
|
|
685
|
+
src: url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.eot?#iefix") format("embedded-opentype"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.woff") format("woff"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.ttf") format("truetype"), url("@gooddata/sdk-ui-kit/styles/fonts/Indigo-v2.svg#Indigo-v2") format("svg");
|
|
686
686
|
font-weight: normal;
|
|
687
687
|
font-style: normal;
|
|
688
688
|
}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
.gd-spinner {
|
|
19
19
|
display: inline-block;
|
|
20
|
-
background-image: url("
|
|
20
|
+
background-image: url("@gooddata/sdk-ui-kit/esm/assets/loading.svg");
|
|
21
21
|
background-repeat: no-repeat;
|
|
22
22
|
background-position: top left;
|
|
23
23
|
background-size: contain;
|