@gooddata/sdk-ui-filters 11.14.0-alpha.1 → 11.14.0-alpha.3
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/esm/DateFilter/DateFilterCore.d.ts.map +1 -1
- package/esm/DateFilter/DateFilterCore.js +1 -0
- package/esm/DateFilter/DateFilterCore.js.map +1 -1
- package/esm/MeasureValueFilter/AttributePicker.d.ts +26 -0
- package/esm/MeasureValueFilter/AttributePicker.d.ts.map +1 -0
- package/esm/MeasureValueFilter/AttributePicker.js +137 -0
- package/esm/MeasureValueFilter/AttributePicker.js.map +1 -0
- package/esm/MeasureValueFilter/DimensionalitySection.d.ts +28 -0
- package/esm/MeasureValueFilter/DimensionalitySection.d.ts.map +1 -0
- package/esm/MeasureValueFilter/DimensionalitySection.js +104 -0
- package/esm/MeasureValueFilter/DimensionalitySection.js.map +1 -0
- package/esm/MeasureValueFilter/Dropdown.d.ts +6 -2
- package/esm/MeasureValueFilter/Dropdown.d.ts.map +1 -1
- package/esm/MeasureValueFilter/Dropdown.js +4 -4
- package/esm/MeasureValueFilter/Dropdown.js.map +1 -1
- package/esm/MeasureValueFilter/DropdownBody.d.ts +6 -2
- package/esm/MeasureValueFilter/DropdownBody.d.ts.map +1 -1
- package/esm/MeasureValueFilter/DropdownBody.js +83 -22
- package/esm/MeasureValueFilter/DropdownBody.js.map +1 -1
- package/esm/MeasureValueFilter/MeasureValueFilterDropdown.d.ts.map +1 -1
- package/esm/MeasureValueFilter/MeasureValueFilterDropdown.js +18 -7
- package/esm/MeasureValueFilter/MeasureValueFilterDropdown.js.map +1 -1
- package/esm/MeasureValueFilter/helpers/intervalIncludesZero.d.ts +34 -0
- package/esm/MeasureValueFilter/helpers/intervalIncludesZero.d.ts.map +1 -0
- package/esm/MeasureValueFilter/helpers/intervalIncludesZero.js +95 -0
- package/esm/MeasureValueFilter/helpers/intervalIncludesZero.js.map +1 -0
- package/esm/MeasureValueFilter/types.d.ts +3 -0
- package/esm/MeasureValueFilter/types.d.ts.map +1 -1
- package/esm/MeasureValueFilter/typings.d.ts +28 -1
- package/esm/MeasureValueFilter/typings.d.ts.map +1 -1
- package/esm/MeasureValueFilter/typings.js.map +1 -1
- package/esm/index.d.ts +3 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -9
- package/esm/index.js.map +1 -1
- package/esm/sdk-ui-filters.d.ts +69 -0
- package/package.json +10 -10
- package/styles/css/main.css +81 -0
- package/styles/css/main.css.map +1 -1
- package/styles/css/measureValueFilter.css +81 -0
- package/styles/css/measureValueFilter.css.map +1 -1
- package/styles/scss/measureValueFilter.scss +92 -0
|
@@ -112,3 +112,95 @@ $dialog_width: 250px;
|
|
|
112
112
|
display: none;
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
|
+
|
|
116
|
+
.gd-mvf-dimensionality-header {
|
|
117
|
+
display: flex;
|
|
118
|
+
justify-content: space-between;
|
|
119
|
+
align-items: center;
|
|
120
|
+
|
|
121
|
+
label {
|
|
122
|
+
font-size: 12px;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.gd-mvf-dimensionality-items {
|
|
127
|
+
display: flex;
|
|
128
|
+
flex-wrap: wrap;
|
|
129
|
+
align-items: center;
|
|
130
|
+
gap: 5px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.gd-mvf-dimensionality-add-wrapper {
|
|
134
|
+
display: flex;
|
|
135
|
+
align-items: center;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// AttributePicker dialog styles
|
|
139
|
+
.gd-mvf-attribute-picker-body {
|
|
140
|
+
display: flex;
|
|
141
|
+
flex-direction: column;
|
|
142
|
+
width: 250px;
|
|
143
|
+
height: inherit;
|
|
144
|
+
font-size: 12px;
|
|
145
|
+
|
|
146
|
+
.gd-mvf-attribute-picker-header {
|
|
147
|
+
display: flex;
|
|
148
|
+
align-items: center;
|
|
149
|
+
justify-content: space-between;
|
|
150
|
+
flex: 0 0 auto;
|
|
151
|
+
padding: 6px 6px 6px 12px;
|
|
152
|
+
background-color: variables.$is-focused-background;
|
|
153
|
+
border-bottom: 1px solid variables.$gd-border-color;
|
|
154
|
+
|
|
155
|
+
.gd-mvf-attribute-picker-header-title {
|
|
156
|
+
display: flex;
|
|
157
|
+
align-items: center;
|
|
158
|
+
gap: 5px;
|
|
159
|
+
color: variables.$gd-color-state-blank;
|
|
160
|
+
text-transform: uppercase;
|
|
161
|
+
font-size: 11px;
|
|
162
|
+
font-weight: bold;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.gd-mvf-attribute-picker-search-bar {
|
|
167
|
+
display: flex;
|
|
168
|
+
flex-shrink: 0;
|
|
169
|
+
padding: 10px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.gd-mvf-attribute-picker-search-input {
|
|
173
|
+
width: 100%;
|
|
174
|
+
min-width: 0;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.gd-mvf-attribute-picker-type-filter {
|
|
178
|
+
display: flex;
|
|
179
|
+
padding: 0 10px 10px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.gd-mvf-attribute-picker-content {
|
|
183
|
+
flex: 1 1 auto;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.gd-mvf-attribute-picker-list-header {
|
|
187
|
+
text-transform: uppercase;
|
|
188
|
+
color: variables.$gd-color-state-blank;
|
|
189
|
+
font-size: 10px;
|
|
190
|
+
padding: 0 10px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.gd-mvf-attribute-picker-no-results {
|
|
194
|
+
padding: 10px;
|
|
195
|
+
color: variables.$gd-color-state-blank;
|
|
196
|
+
text-align: center;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.gd-mvf-attribute-picker-footer {
|
|
200
|
+
flex: 0 0 auto;
|
|
201
|
+
margin: 0 10px;
|
|
202
|
+
padding: 10px 0;
|
|
203
|
+
border-top: 1px solid variables.$gd-border-color;
|
|
204
|
+
text-align: right;
|
|
205
|
+
}
|
|
206
|
+
}
|