qc-trousse-sdg 1.4.0-develop.0 → 1.4.0-develop.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qc-trousse-sdg",
3
- "version": "1.4.0-develop.0",
3
+ "version": "1.4.0-develop.1",
4
4
  "description": "Trousse de développement du Système de design gouvernemental du Québec",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1784,10 +1784,10 @@ qc-search-input {
1784
1784
  qc-search-bar {
1785
1785
  position: relative;
1786
1786
  display: block;
1787
- max-width: 64rem;
1788
1787
  }
1789
1788
 
1790
1789
  .qc-search-bar {
1790
+ max-width: 64rem;
1791
1791
  width: 100%;
1792
1792
  border: 0;
1793
1793
  }
@@ -1784,10 +1784,10 @@ qc-search-input {
1784
1784
  qc-search-bar {
1785
1785
  position: relative;
1786
1786
  display: block;
1787
- max-width: 64rem;
1788
1787
  }
1789
1788
 
1790
1789
  .qc-search-bar {
1790
+ max-width: 64rem;
1791
1791
  width: 100%;
1792
1792
  border: 0;
1793
1793
  }
@@ -73413,7 +73413,7 @@
73413
73413
  ));
73414
73414
 
73415
73415
  if (document.getElementById("version")) {
73416
- document.getElementById("version").textContent = `v1.4.0-develop.0`;
73416
+ document.getElementById("version").textContent = `v1.4.0-develop.1`;
73417
73417
  }
73418
73418
 
73419
73419
  // Show maskable "general alert" component
@@ -0,0 +1,10 @@
1
+ export function getQcCustomElement(customElementConstructor) {
2
+ return class extends customElementConstructor {
3
+ static self;
4
+
5
+ constructor() {
6
+ super();
7
+ this.self = this;
8
+ }
9
+ }
10
+ }
@@ -4,10 +4,10 @@
4
4
  qc-search-bar {
5
5
  position: relative;
6
6
  display: block;
7
- max-width: rem(640);
8
7
  }
9
8
  .qc-search-bar {
10
9
  @extend %qc-search-wrapper;
10
+ max-width: rem(640);
11
11
  width: 100%;
12
12
  border: 0;
13
13
  &:has(input:focus) {