studiokit-scaffolding-js 7.0.12-next.1.5 → 7.0.12-next.1.7

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 (39) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +137 -137
  3. package/lib/components/ActionList.js +1 -5
  4. package/lib/components/Dropdowns/UserDropdown.js +1 -3
  5. package/lib/components/Groups/CreateEditCopySaveButtons.js +1 -5
  6. package/lib/components/Groups/ExternalGroups/Attach.js +1 -3
  7. package/lib/components/Groups/RosterSyncInfo.js +1 -7
  8. package/lib/components/HOC/SearchPersistorComponent.js +2 -2
  9. package/lib/components/Impersonation/UserDetail.css +22 -22
  10. package/lib/components/Notifications.d.ts +1 -1
  11. package/lib/components/Notifications.js +2 -2
  12. package/lib/components/Quill/ImageDropModule.js +1 -1
  13. package/lib/components/Quill/TableModule/index.css +171 -171
  14. package/lib/css/base/_base.css +98 -98
  15. package/lib/css/base/_typography.css +130 -130
  16. package/lib/css/components/_alert.css +86 -86
  17. package/lib/css/components/_bootstrap-grid.css +28 -28
  18. package/lib/css/components/_buttons.css +397 -397
  19. package/lib/css/components/_forms.css +101 -101
  20. package/lib/css/components/_menu.css +56 -56
  21. package/lib/css/components/_modals.css +46 -46
  22. package/lib/css/components/_quill.css +315 -315
  23. package/lib/css/components/_tables.css +497 -497
  24. package/lib/css/components/_tags.css +12 -12
  25. package/lib/css/index-with-variables.css +15 -15
  26. package/lib/css/index.css +14 -14
  27. package/lib/css/utils/_border.css +463 -463
  28. package/lib/css/utils/_color.css +317 -317
  29. package/lib/css/utils/_display.css +305 -305
  30. package/lib/css/utils/_general.css +48 -48
  31. package/lib/css/utils/_icon.css +16 -16
  32. package/lib/css/utils/_text.css +25 -25
  33. package/lib/css/utils/_width.css +60 -60
  34. package/lib/css/variables.css +84 -84
  35. package/lib/hooks/usePrevious.d.ts +14 -1
  36. package/lib/hooks/usePrevious.js +23 -1
  37. package/lib/utils/fetch.js +9 -7
  38. package/lib/utils/url.d.ts +2 -2
  39. package/package.json +214 -214
@@ -1,12 +1,12 @@
1
- .tag {
2
- display: inline-block;
3
- border: 1px solid color-mod(var(--color-light-grey) alpha(-50%));
4
- background-color: var(--color-light-grey);
5
- color: var(--color-dark-grey);
6
- font-size: 0.8rem;
7
- font-weight: var(--font-weight-semibold);
8
- padding: 0.4rem 0.8rem;
9
- margin: 0.2rem;
10
- border-radius: var(--border-radius);
11
- line-height: 1.2rem;
12
- }
1
+ .tag {
2
+ display: inline-block;
3
+ border: 1px solid color-mod(var(--color-light-grey) alpha(-50%));
4
+ background-color: var(--color-light-grey);
5
+ color: var(--color-dark-grey);
6
+ font-size: 0.8rem;
7
+ font-weight: var(--font-weight-semibold);
8
+ padding: 0.4rem 0.8rem;
9
+ margin: 0.2rem;
10
+ border-radius: var(--border-radius);
11
+ line-height: 1.2rem;
12
+ }
@@ -1,15 +1,15 @@
1
- @charset "UTF-8";
2
-
3
- /* Do not write any CSS in here, add it to the appropriate module or make a new one */
4
-
5
- /* 1. Variables */
6
- @import 'variables.css';
7
-
8
- /* 2. Utils */
9
- @import-glob 'utils/*.css';
10
-
11
- /* 3. Base */
12
- @import-glob 'base/*.css';
13
-
14
- /* 4. Global components */
15
- @import-glob 'components/*.css';
1
+ @charset "UTF-8";
2
+
3
+ /* Do not write any CSS in here, add it to the appropriate module or make a new one */
4
+
5
+ /* 1. Variables */
6
+ @import 'variables.css';
7
+
8
+ /* 2. Utils */
9
+ @import-glob 'utils/*.css';
10
+
11
+ /* 3. Base */
12
+ @import-glob 'base/*.css';
13
+
14
+ /* 4. Global components */
15
+ @import-glob 'components/*.css';
package/lib/css/index.css CHANGED
@@ -1,14 +1,14 @@
1
- @charset "UTF-8";
2
-
3
- /* Do not write any CSS in here, add it to the appropriate module or make a new one */
4
-
5
- /* NOTE: variables.css is NOT imported to allow app specific overrides. *
6
-
7
- /* 1. Utils */
8
- @import-glob 'utils/*.css';
9
-
10
- /* 2. Base */
11
- @import-glob 'base/*.css';
12
-
13
- /* 3. Global components */
14
- @import-glob 'components/*.css';
1
+ @charset "UTF-8";
2
+
3
+ /* Do not write any CSS in here, add it to the appropriate module or make a new one */
4
+
5
+ /* NOTE: variables.css is NOT imported to allow app specific overrides. *
6
+
7
+ /* 1. Utils */
8
+ @import-glob 'utils/*.css';
9
+
10
+ /* 2. Base */
11
+ @import-glob 'base/*.css';
12
+
13
+ /* 3. Global components */
14
+ @import-glob 'components/*.css';