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.
- package/LICENSE +21 -21
- package/README.md +137 -137
- package/lib/components/ActionList.js +1 -5
- package/lib/components/Dropdowns/UserDropdown.js +1 -3
- package/lib/components/Groups/CreateEditCopySaveButtons.js +1 -5
- package/lib/components/Groups/ExternalGroups/Attach.js +1 -3
- package/lib/components/Groups/RosterSyncInfo.js +1 -7
- package/lib/components/HOC/SearchPersistorComponent.js +2 -2
- package/lib/components/Impersonation/UserDetail.css +22 -22
- package/lib/components/Notifications.d.ts +1 -1
- package/lib/components/Notifications.js +2 -2
- package/lib/components/Quill/ImageDropModule.js +1 -1
- package/lib/components/Quill/TableModule/index.css +171 -171
- package/lib/css/base/_base.css +98 -98
- package/lib/css/base/_typography.css +130 -130
- package/lib/css/components/_alert.css +86 -86
- package/lib/css/components/_bootstrap-grid.css +28 -28
- package/lib/css/components/_buttons.css +397 -397
- package/lib/css/components/_forms.css +101 -101
- package/lib/css/components/_menu.css +56 -56
- package/lib/css/components/_modals.css +46 -46
- package/lib/css/components/_quill.css +315 -315
- package/lib/css/components/_tables.css +497 -497
- package/lib/css/components/_tags.css +12 -12
- package/lib/css/index-with-variables.css +15 -15
- package/lib/css/index.css +14 -14
- package/lib/css/utils/_border.css +463 -463
- package/lib/css/utils/_color.css +317 -317
- package/lib/css/utils/_display.css +305 -305
- package/lib/css/utils/_general.css +48 -48
- package/lib/css/utils/_icon.css +16 -16
- package/lib/css/utils/_text.css +25 -25
- package/lib/css/utils/_width.css +60 -60
- package/lib/css/variables.css +84 -84
- package/lib/hooks/usePrevious.d.ts +14 -1
- package/lib/hooks/usePrevious.js +23 -1
- package/lib/utils/fetch.js +9 -7
- package/lib/utils/url.d.ts +2 -2
- 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';
|