claritas-web-framework 8.6.8 → 8.7.0
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/index.css +1 -1
- package/dist/index.html +1 -1
- package/index.html +18 -0
- package/package.json +7 -7
- package/sass/modules/form/_formFieldGroup.scss +11 -12
package/dist/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Claritas Web Framework</title><script defer="defer" src="index.js"></script><link href="./index.css" rel="stylesheet"></head><body><div class="container"><h1>Heading 1</h1><h2>Heading 2</h2><h3>Heading 3</h3><h4>Heading 4</h4><h5>Heading 5</h5><h6>Heading 6</h6><p>Paragraph <small>small</small></p><button type="button" class="button button--primary">Hello</button> <button type="button" class="button button--primary button--outline">Hello</button> <button type="button" class="button button--primary button--outline" disabled="disabled">Hello</button> <button type="button" class="button button--danger" disabled="disabled">Hello</button><div class="alert alert--primary">Hello <a href="/">Click me</a></div><hr/><div class="tags"><span class="tag tag--light">This is a tag</span></div></div></body></html>
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Claritas Web Framework</title><script defer="defer" src="index.js"></script><link href="./index.css" rel="stylesheet"></head><body><div class="container"><h1>Heading 1</h1><h2>Heading 2</h2><h3>Heading 3</h3><h4>Heading 4</h4><h5>Heading 5</h5><h6>Heading 6</h6><p>Paragraph <small>small</small></p><button type="button" class="button button--primary">Hello</button> <button type="button" class="button button--primary button--outline">Hello</button> <button type="button" class="button button--primary button--outline" disabled="disabled">Hello</button> <button type="button" class="button button--danger" disabled="disabled">Hello</button><div class="alert alert--primary">Hello <a href="/">Click me</a></div><hr/><div class="tags"><span class="tag tag--light">This is a tag</span></div><div class="form--field"><label class="form__label" for="ssoclientsecret" data-i18n="ssoclientsecret">SSO client secret</label><div class="form--field-group"><div class="form__control flex--fill"><input id="ssoclientsecret" name="ssoclientsecret" data-userinput/></div><div class="form__control flex--fill"><input id="ssoclientsecret1" name="ssoclientsecret1" data-userinput/></div><div class="form__control flex--fill"><input id="ssoclientsecret2" name="ssoclientsecret2" data-userinput/></div><div class="form__control"><button class="button">Hello</button></div></div></div></div></body></html>
|
package/index.html
CHANGED
|
@@ -25,6 +25,24 @@
|
|
|
25
25
|
<div class="tags">
|
|
26
26
|
<span class="tag tag--light">This is a tag</span>
|
|
27
27
|
</div>
|
|
28
|
+
|
|
29
|
+
<div class="form--field">
|
|
30
|
+
<label class="form__label" for="ssoclientsecret" data-i18n="ssoclientsecret"> SSO client secret </label>
|
|
31
|
+
<div class="form--field-group">
|
|
32
|
+
<div class="form__control flex--fill">
|
|
33
|
+
<input type="text" id="ssoclientsecret" name="ssoclientsecret" data-userinput />
|
|
34
|
+
</div>
|
|
35
|
+
<div class="form__control flex--fill">
|
|
36
|
+
<input type="text" id="ssoclientsecret1" name="ssoclientsecret1" data-userinput />
|
|
37
|
+
</div>
|
|
38
|
+
<div class="form__control flex--fill">
|
|
39
|
+
<input type="text" id="ssoclientsecret2" name="ssoclientsecret2" data-userinput />
|
|
40
|
+
</div>
|
|
41
|
+
<div class="form__control">
|
|
42
|
+
<button class="button">Hello</button>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
28
46
|
</div>
|
|
29
47
|
</body>
|
|
30
48
|
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claritas-web-framework",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"description": "The CSS framework built for Claritas front end.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
"author": "David Brooks",
|
|
16
16
|
"license": "UNLICENSED",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"css-loader": "^7.1.
|
|
18
|
+
"css-loader": "^7.1.4",
|
|
19
19
|
"find-unused-sass-variables": "^6.1.1",
|
|
20
20
|
"html-webpack-plugin": "^5.6.6",
|
|
21
|
-
"mini-css-extract-plugin": "^2.10.
|
|
22
|
-
"prettier": "^3.8.
|
|
21
|
+
"mini-css-extract-plugin": "^2.10.2",
|
|
22
|
+
"prettier": "^3.8.3",
|
|
23
23
|
"sass-loader": "^16.0.7",
|
|
24
|
-
"webpack": "^5.
|
|
25
|
-
"webpack-cli": "^
|
|
24
|
+
"webpack": "^5.106.2",
|
|
25
|
+
"webpack-cli": "^7.0.2",
|
|
26
26
|
"webpack-dev-server": "^5.2.3"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"modern-normalize": "^3.0.1",
|
|
30
|
-
"sass": "^1.
|
|
30
|
+
"sass": "^1.99.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -13,19 +13,18 @@
|
|
|
13
13
|
margin-right: -1px;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
--button-border-radius: 0;
|
|
16
|
+
&:not(:first-child):not(:last-child) {
|
|
17
|
+
& * {
|
|
18
|
+
--input-border-radius: 0;
|
|
19
|
+
--input-small-border-radius: 0;
|
|
20
|
+
--input-large-border-radius: 0;
|
|
21
|
+
--button-border-radius: 0;
|
|
22
|
+
--button-small-border-radius: 0;
|
|
23
|
+
--button-large-border-radius: 0;
|
|
24
|
+
}
|
|
26
25
|
}
|
|
27
26
|
|
|
28
|
-
&:first-child {
|
|
27
|
+
&:first-child:not(:last-child) {
|
|
29
28
|
& * {
|
|
30
29
|
--input-border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
|
|
31
30
|
--input-small-border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
|
|
@@ -41,7 +40,7 @@
|
|
|
41
40
|
}
|
|
42
41
|
}
|
|
43
42
|
|
|
44
|
-
&:last-child {
|
|
43
|
+
&:last-child:not(:first-child) {
|
|
45
44
|
& * {
|
|
46
45
|
--input-border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
|
|
47
46
|
--input-small-border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
|