@onemrvapublic/design-system-theme 17.2.49 → 17.2.50
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/components/_badge.scss +0 -3
- package/components/_divider.scss +0 -3
- package/components/_expansion.scss +0 -4
- package/components/_fab.scss +0 -5
- package/components/_grid-list.scss +8 -0
- package/components/_sort.scss +8 -0
- package/components/_tree.scss +8 -0
- package/index.scss +20 -10
- package/package.json +1 -1
package/components/_badge.scss
CHANGED
package/components/_divider.scss
CHANGED
package/components/_fab.scss
CHANGED
package/index.scss
CHANGED
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
@forward "./components/select" as select-*;
|
|
30
30
|
@forward "./components/slider" as slider-*;
|
|
31
31
|
@forward "./components/fab" as fab-*;
|
|
32
|
+
@forward "./components/tree" as tree-*;
|
|
33
|
+
@forward "./components/sort" as sort-*;
|
|
34
|
+
@forward "./components/grid-list" as grid-list-*;
|
|
35
|
+
@forward "./components/divider" as divider-*;
|
|
32
36
|
@forward "./components/badge" as badge-*;
|
|
33
37
|
@forward "./components/bottom-sheet" as bottom-sheet-*;
|
|
34
38
|
@forward "./components/icon-button" as icon-button-*;
|
|
@@ -51,17 +55,17 @@
|
|
|
51
55
|
@use "./components/cards";
|
|
52
56
|
@use "./components/checkbox";
|
|
53
57
|
@use "./components/chips";
|
|
54
|
-
@use "./components/choice-chips" as
|
|
58
|
+
@use "./components/choice-chips" as choice-chips;
|
|
55
59
|
@use "./components/container";
|
|
56
60
|
@use "./components/datepicker";
|
|
57
61
|
@use "./components/dialogs";
|
|
58
|
-
@use "./components/drag-and-drop" as
|
|
62
|
+
@use "./components/drag-and-drop" as drag-and-drop;
|
|
59
63
|
@use "./components/expansion" as expansion;
|
|
60
64
|
@use "./components/form-field" as form-field;
|
|
61
65
|
@use "./components/links";
|
|
62
66
|
@use "./components/lists";
|
|
63
67
|
@use "./components/menu";
|
|
64
|
-
@use "./components/progress-bar" as
|
|
68
|
+
@use "./components/progress-bar" as progress-bar;
|
|
65
69
|
@use "./components/radio";
|
|
66
70
|
@use "components/snack-bar";
|
|
67
71
|
@use "./components/sidenav";
|
|
@@ -76,6 +80,10 @@
|
|
|
76
80
|
@use "./components/select";
|
|
77
81
|
@use "./components/toolbar";
|
|
78
82
|
@use "./components/fab";
|
|
83
|
+
@use "./components/tree";
|
|
84
|
+
@use "./components/sort";
|
|
85
|
+
@use "./components/grid-list";
|
|
86
|
+
@use "./components/divider";
|
|
79
87
|
@use "./components/badge";
|
|
80
88
|
@use "./components/bottom-sheet";
|
|
81
89
|
|
|
@@ -147,9 +155,10 @@
|
|
|
147
155
|
//);
|
|
148
156
|
|
|
149
157
|
@include fonts.theme(variables.$onemrva-theme);
|
|
158
|
+
@include links.theme(variables.$onemrva-theme);
|
|
150
159
|
|
|
151
160
|
@include cards.theme(variables.$onemrva-theme);
|
|
152
|
-
@include
|
|
161
|
+
@include progress-bar.theme(variables.$onemrva-theme);
|
|
153
162
|
@include tooltip.theme(variables.$onemrva-theme);
|
|
154
163
|
@include form-field.theme(variables.$onemrva-theme);
|
|
155
164
|
@include input.theme(variables.$onemrva-theme);
|
|
@@ -175,19 +184,20 @@
|
|
|
175
184
|
@include bottom-sheet.theme(variables.$onemrva-theme);
|
|
176
185
|
@include button-toggle.theme(variables.$onemrva-theme);
|
|
177
186
|
@include datepicker.theme(variables.$onemrva-theme);
|
|
178
|
-
|
|
179
|
-
@include choiceChips.theme(variables.$onemrva-theme);
|
|
180
|
-
@include dragAndDrop.theme(variables.$onemrva-theme);
|
|
187
|
+
@include divider.theme(variables.$onemrva-theme);
|
|
181
188
|
@include expansion.theme(variables.$onemrva-theme);
|
|
189
|
+
@include grid-list.theme(variables.$onemrva-theme);
|
|
182
190
|
@include icon.theme(variables.$onemrva-theme);
|
|
183
|
-
@include
|
|
191
|
+
@include sidenav.theme(variables.$onemrva-theme);
|
|
184
192
|
@include stepper.theme(variables.$onemrva-theme);
|
|
193
|
+
@include sort.theme(variables.$onemrva-theme);
|
|
185
194
|
@include toolbar.theme(variables.$onemrva-theme);
|
|
195
|
+
@include tree.theme(variables.$onemrva-theme);
|
|
186
196
|
|
|
197
|
+
@include choice-chips.theme(variables.$onemrva-theme);
|
|
198
|
+
@include drag-and-drop.theme(variables.$onemrva-theme);
|
|
187
199
|
@include container.theme(variables.$onemrva-theme, $b);
|
|
188
200
|
|
|
189
|
-
@include sidenav.theme(variables.$onemrva-theme);
|
|
190
|
-
|
|
191
201
|
@include spacing.spacing();
|
|
192
202
|
@include grid.grid();
|
|
193
203
|
@include utilities.utilities();
|