react-asc 18.9.4 → 19.0.1

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 (36) hide show
  1. package/components/Checkbox/Checkbox.d.ts +0 -1
  2. package/components/Drawer/Drawer.d.ts +3 -4
  3. package/components/Form/Form.d.ts +1 -1
  4. package/components/Form/FormInput/FormInput.d.ts +5 -5
  5. package/components/LoadingIndicator/LoadingIndicator.d.ts +2 -2
  6. package/components/Modal/GlobalModal.d.ts +1 -1
  7. package/components/Modal/Modal.d.ts +1 -1
  8. package/components/Modal/modal.service.d.ts +1 -1
  9. package/components/Sidebar/Sidebar.d.ts +2 -2
  10. package/components/Tabs/Tabs.d.ts +6 -2
  11. package/components/Textarea/Textarea.d.ts +1 -3
  12. package/components/Tooltip/Tooltip.d.ts +2 -3
  13. package/components/TreeView/TreeView.d.ts +2 -6
  14. package/components/Typography/Typography.d.ts +3 -6
  15. package/{assets/icons → icons}/CaretDownSolidIcon.d.ts +0 -0
  16. package/{assets/icons → icons}/CheckSolidIcon.d.ts +0 -0
  17. package/{assets/icons → icons}/CheckSquareRegularIcon.d.ts +0 -0
  18. package/{assets/icons → icons}/ChevronDownSolidIcon.d.ts +0 -0
  19. package/{assets/icons → icons}/ChevronLeftSolidIcon.d.ts +0 -0
  20. package/{assets/icons → icons}/ChevronRightSolidIcon.d.ts +0 -0
  21. package/{assets/icons → icons}/ChevronUpSolidIcon.d.ts +0 -0
  22. package/{assets/icons → icons}/CircleSolidIcon.d.ts +0 -0
  23. package/{assets/icons → icons}/HomeSolidIcon.d.ts +0 -0
  24. package/{assets/icons → icons}/PlusSolidIcon.d.ts +0 -0
  25. package/{assets/icons → icons}/SpinnerSolidIcon.d.ts +0 -0
  26. package/{assets/icons → icons}/SquareRegularIcon.d.ts +0 -0
  27. package/{assets/icons → icons}/TimesCircleSolidIcon.d.ts +0 -0
  28. package/{assets/icons → icons}/TimesSolidIcon.d.ts +0 -0
  29. package/{assets/icons → icons}/index.d.ts +0 -0
  30. package/index.d.ts +1 -1
  31. package/index.es.js +352 -348
  32. package/index.js +351 -347
  33. package/package.json +1 -1
  34. package/react-asc.scss +52 -52
  35. package/index.es.js.map +0 -1
  36. package/index.js.map +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-asc",
3
- "version": "18.9.4",
3
+ "version": "19.0.1",
4
4
  "description": "handcrafted react components",
5
5
  "main": "index.js",
6
6
  "module": "index.es.js",
package/react-asc.scss CHANGED
@@ -1,3 +1,55 @@
1
+ :root {
2
+ --primary-light: #6573c3;
3
+ --primary: #3f51b5;
4
+ --primary-dark: #2c387e;
5
+ --primary-contrast-text: #fff;
6
+ --primary-highlight: #d6dbf7;
7
+
8
+ --secondary-light: #e5e7eb;
9
+ --secondary: #dfe1e6;
10
+ --secondary-dark: #9c9da1;
11
+ --secondary-contrast-text: #fff;
12
+ --secondary-highlight: rgb(232, 234, 250);
13
+
14
+ --accent-light: #fd96b8;
15
+ --accent: #ff4081;
16
+ --accent-dark: #fd2c72;
17
+ --accent-contrast-text: #fff;
18
+ --accent-highlight: #fca9c5;
19
+
20
+ // rename!?
21
+ --light-light: #ffffff;
22
+ --light: #f8f9fa;
23
+ --light-dark: #ebebeb;
24
+ --light-contrast-text: #212529;
25
+ --light-highlight: #f8f9fa;
26
+
27
+ --dark-light: #616468;
28
+ --dark: #343a40;
29
+ --dark-dark: #343a40;
30
+ --dark-contrast-text: #fff;
31
+ --dark-highlight: #5e6164;
32
+
33
+ --white: #fff;
34
+
35
+ --bodyBg: white;
36
+ --bodyColor: #212529;
37
+
38
+ --borderRadius: 5px;
39
+ --shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
40
+ 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
41
+
42
+ --buttonMinWidth: 62px;
43
+ --buttonPadding: 11px 15px;
44
+
45
+ --fontFamily: "Segoe UI", "Roboto", "Helvetica Neue", "Arial";
46
+ --fontSize: 16px;
47
+
48
+ --highlight: rgba(204, 216, 224, 0.2); // ???
49
+
50
+ --breakpointMd: 768px;
51
+ }
52
+
1
53
  .input-group-append {
2
54
  .btn {
3
55
  min-width: auto;
@@ -112,58 +164,6 @@
112
164
  }
113
165
 
114
166
 
115
- // TODO
116
- :root {
117
- --primary-light: #6573c3;
118
- --primary: #3f51b5;
119
- --primary-dark: #2c387e;
120
- --primary-contrast-text: #fff;
121
- --primary-highlight: #d6dbf7;
122
-
123
- --secondary-light: #e5e7eb;
124
- --secondary: #dfe1e6;
125
- --secondary-dark: #9c9da1;
126
- --secondary-contrast-text: #fff;
127
- --secondary-highlight: rgb(232, 234, 250);
128
-
129
- --accent-light: #fd96b8;
130
- --accent: #ff4081;
131
- --accent-dark: #fd2c72;
132
- --accent-contrast-text: #fff;
133
- --accent-highlight: #fca9c5;
134
-
135
- // rename!?
136
- --light-light: #ffffff;
137
- --light: #f8f9fa;
138
- --light-dark: #ebebeb;
139
- --light-contrast-text: #212529;
140
- --light-highlight: #f8f9fa;
141
-
142
- --dark-light: #616468;
143
- --dark: #343a40;
144
- --dark-dark: #343a40;
145
- --dark-contrast-text: #fff;
146
- --dark-highlight: #5e6164;
147
-
148
- --white: #fff;
149
-
150
- --bodyBg: #f8f9fa;
151
- --bodyColor: #212529;
152
-
153
- --borderRadius: 5px;
154
- --shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
155
-
156
- --buttonMinWidth: 62px;
157
- --buttonPadding: 11px 15px;
158
-
159
- --fontFamily: "Segoe UI", "Roboto", "Helvetica Neue", "Arial";
160
- --fontSize: 16px;
161
-
162
- --highlight: rgba(204, 216, 224, 0.2); // ???
163
-
164
- --breakpointMd: 768px;
165
- }
166
-
167
167
  label.required {
168
168
  &::after {
169
169
  display: inline-block;