@openedx/paragon 23.19.1 → 23.19.2
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/dist/theme-urls.json
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"themeUrls": {
|
|
3
|
+
"core": {
|
|
4
|
+
"paths": {
|
|
5
|
+
"default": "./core.css",
|
|
6
|
+
"minified": "./core.min.css"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
3
9
|
"defaults": {
|
|
4
10
|
"light": "light"
|
|
5
11
|
},
|
|
@@ -10,12 +16,6 @@
|
|
|
10
16
|
"minified": "./light.min.css"
|
|
11
17
|
}
|
|
12
18
|
}
|
|
13
|
-
},
|
|
14
|
-
"core": {
|
|
15
|
-
"paths": {
|
|
16
|
-
"default": "./core.css",
|
|
17
|
-
"minified": "./core.min.css"
|
|
18
|
-
}
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openedx/paragon",
|
|
3
|
-
"version": "23.19.
|
|
3
|
+
"version": "23.19.2",
|
|
4
4
|
"description": "Accessible, responsive UI component library based on Bootstrap.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -45,8 +45,7 @@
|
|
|
45
45
|
"example:start": "npm start --workspace=example",
|
|
46
46
|
"example:start:with-theme": "npm run start:with-theme --workspace=example",
|
|
47
47
|
"generate-changelog": "node generate-changelog.js",
|
|
48
|
-
"
|
|
49
|
-
"i18n_extract": "formatjs extract 'src/**/*.{jsx,js,tsx,ts}' --out-file ./src/i18n/transifex_input.json --ignore='**/*.d.ts' --format transifex",
|
|
48
|
+
"i18n_extract": "formatjs extract 'src/**/*.{jsx,js,tsx,ts}' --out-file ./src/i18n/transifex_input.json --ignore='**/*.d.ts' --format ./src/i18n/transifex-formatter.js",
|
|
50
49
|
"type-check": "tsc --noEmit && tsc --project www --noEmit",
|
|
51
50
|
"type-check:watch": "npm run type-check -- --watch",
|
|
52
51
|
"build-types": "tsc --emitDeclarationOnly",
|
package/src/Container/README.md
CHANGED
|
@@ -18,28 +18,28 @@ The base container to contain, pad, and center content in the viewport. This com
|
|
|
18
18
|
|
|
19
19
|
```jsx live
|
|
20
20
|
<div style={{ overflowX: 'auto' }}>
|
|
21
|
-
<div style={{ width: '1500px', border: 'solid 3px
|
|
22
|
-
<Container className="bg-danger-
|
|
21
|
+
<div style={{ width: '1500px', border: 'solid 3px var(--pgn-color-danger-700)' }}>
|
|
22
|
+
<Container className="bg-danger-700 text-white my-4">
|
|
23
23
|
The content in this container doesn't have a max width
|
|
24
24
|
</Container>
|
|
25
25
|
|
|
26
|
-
<Container size="xl" className="bg-danger-
|
|
26
|
+
<Container size="xl" className="bg-danger-700 text-white my-4">
|
|
27
27
|
The content in this container won't exceed the extra large width.
|
|
28
28
|
</Container>
|
|
29
29
|
|
|
30
|
-
<Container size="lg" className="bg-danger-
|
|
30
|
+
<Container size="lg" className="bg-danger-700 text-white mb-4">
|
|
31
31
|
The content in this container won't exceed the large width.
|
|
32
32
|
</Container>
|
|
33
33
|
|
|
34
|
-
<Container size="md" className="bg-danger-
|
|
34
|
+
<Container size="md" className="bg-danger-700 text-white mb-4">
|
|
35
35
|
The content in this container won't exceed the medium width.
|
|
36
36
|
</Container>
|
|
37
37
|
|
|
38
|
-
<Container size="sm" className="bg-danger-
|
|
38
|
+
<Container size="sm" className="bg-danger-700 text-white mb-4">
|
|
39
39
|
The content in this container won't exceed the small width.
|
|
40
40
|
</Container>
|
|
41
41
|
|
|
42
|
-
<Container size="xs" className="bg-danger-
|
|
42
|
+
<Container size="xs" className="bg-danger-700 text-white mb-4">
|
|
43
43
|
The content in this container won't exceed the extra small width.
|
|
44
44
|
</Container>
|
|
45
45
|
</div>
|