Skip to content

Commit 147459f

Browse files
hannahissjulien-deramondlouismaximepiton
authored
feat: ddd Grid tokens, utilities, examples and documentation (#2744)
Co-authored-by: Julien Déramond <[email protected]> Co-authored-by: Louis-Maxime Piton <[email protected]>
1 parent 88d10c2 commit 147459f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+8292
-291
lines changed

.bundlewatch.config.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
"files": [
33
{
44
"path": "./dist/css/ouds-web-bootstrap.css",
5-
"maxSize": "45.25 kB"
5+
"maxSize": "51.0 kB"
66
},
77
{
88
"path": "./dist/css/ouds-web-bootstrap.min.css",
9-
"maxSize": "42.0 kB"
9+
"maxSize": "47.75 kB"
1010
},
1111
{
1212
"path": "./dist/css/ouds-web-grid.css",
13-
"maxSize": "7.0 kB"
13+
"maxSize": "9.5 kB"
1414
},
1515
{
1616
"path": "./dist/css/ouds-web-grid.min.css",
17-
"maxSize": "6.25 kB"
17+
"maxSize": "8.5 kB"
1818
},
1919
{
2020
"path": "./dist/css/ouds-web-reboot.css",
@@ -26,19 +26,19 @@
2626
},
2727
{
2828
"path": "./dist/css/ouds-web-utilities.css",
29-
"maxSize": "13.0 kB"
29+
"maxSize": "14.25 kB"
3030
},
3131
{
3232
"path": "./dist/css/ouds-web-utilities.min.css",
33-
"maxSize": "12.0 kB"
33+
"maxSize": "13.5 kB"
3434
},
3535
{
3636
"path": "./dist/css/ouds-web.css",
37-
"maxSize": "44.75 kB"
37+
"maxSize": "49.0 kB"
3838
},
3939
{
4040
"path": "./dist/css/ouds-web.min.css",
41-
"maxSize": "41.75 kB"
41+
"maxSize": "45.5 kB"
4242
},
4343
{
4444
"path": "./dist/js/ouds-web.bundle.js",

js/tests/integration/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<title>Hello, world!</title>
1212
</head>
1313
<body>
14-
<div class="container py-4">
14+
<div class="container-fluid py-4">
1515
<h1>Hello, world!</h1>
1616

1717
<div class="mt-5">

js/tests/unit/dropdown.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2408,7 +2408,7 @@ describe('Dropdown', () => {
24082408
it('should open the dropdown when clicking the child element inside `data-bs-toggle="dropdown"`', () => {
24092409
return new Promise(resolve => {
24102410
fixtureEl.innerHTML = [
2411-
'<div class="container">',
2411+
'<div class="container-fluid">',
24122412
' <div class="dropdown">',
24132413
' <button class="btn dropdown-toggle" data-bs-toggle="dropdown"><span id="childElement">Dropdown</span></button>',
24142414
' <div class="dropdown-menu">',

js/tests/unit/scrollspy.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ describe('ScrollSpy', () => {
222222
'<div id="root" class="active" style="display: block">',
223223
' <div class="topbar">',
224224
' <div class="topbar-inner">',
225-
' <div class="container" id="ss-target">',
225+
' <div class="container-fluid" id="ss-target">',
226226
' <ul class="nav">',
227227
' <li class="nav-item"><a href="#masthead">Overview</a></li>',
228228
' <li class="nav-item"><a href="#detail">Detail</a></li>',
@@ -300,7 +300,7 @@ describe('ScrollSpy', () => {
300300
'<div id="root" class="active" style="display: block">',
301301
' <div class="topbar">',
302302
' <div class="topbar-inner">',
303-
' <div class="container" id="ss-target">',
303+
' <div class="container-fluid" id="ss-target">',
304304
' <ul class="nav">',
305305
' <li class="nav-item"><a href="#masthead">Overview</a></li>',
306306
' <li class="nav-item"><a href="#detail">Detail</a></li>',

js/tests/visual/alert.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Alert</title>
88
</head>
99
<body>
10-
<div class="container">
10+
<div class="container-fluid">
1111
<h1>Alert <small>Bootstrap Visual Test</small></h1>
1212

1313
<div class="alert alert-warning alert-dismissible fade show" role="alert">

js/tests/visual/button.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Button</title>
88
</head>
99
<body>
10-
<div class="container">
10+
<div class="container-fluid">
1111
<h1>Button <small>Bootstrap Visual Test</small></h1>
1212

1313
<button type="button" class="btn btn-primary" data-bs-toggle="button" aria-pressed="false" autocomplete="off">

js/tests/visual/carousel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</style>
1313
</head>
1414
<body>
15-
<div class="container">
15+
<div class="container-fluid">
1616
<h1>Carousel <small>Bootstrap Visual Test</small></h1>
1717

1818
<p>The transition duration should be around 2s. Also, the carousel shouldn't slide when its window/tab is hidden. Check the console log.</p>

js/tests/visual/collapse.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Collapse</title>
88
</head>
99
<body>
10-
<div class="container">
10+
<div class="container-fluid">
1111
<h1>Collapse <small>Bootstrap Visual Test</small></h1>
1212

1313
<div id="accordion" role="tablist">

js/tests/visual/dropdown.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Dropdown</title>
88
</head>
99
<body>
10-
<div class="container">
10+
<div class="container-fluid">
1111
<h1>Dropdown <small>Bootstrap Visual Test</small></h1>
1212

1313
<nav class="navbar navbar-expand-md bg-light">

js/tests/visual/input.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<style></style>
99
</head>
1010
<body>
11-
<div class="container">
11+
<div class="container-fluid">
1212
<h1>Input <small>Bootstrap Visual Test</small></h1>
1313

1414
<h2>No layout</h2>

0 commit comments

Comments
 (0)