@aurodesignsystem-dev/auro-dialog 0.0.0-pr97.2 → 0.0.0-pr97.4
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/demo/api.md +3 -3
- package/package.json +8 -2
package/demo/api.md
CHANGED
|
@@ -768,8 +768,6 @@ Within the scope of the auro-dialog there is `aria-labelledby="dialog-header"`.
|
|
|
768
768
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
769
769
|
</auro-accordion>
|
|
770
770
|
|
|
771
|
-
## Restyle Component with CSS Variables
|
|
772
|
-
|
|
773
771
|
### Responsive padding
|
|
774
772
|
|
|
775
773
|
Part of the dialog design spec is its responsive padding. To take advantage of this for your content within the scope of the dialog, be sure to use the selector `unformattedWrapper` that can be imported from the package here:
|
|
@@ -780,7 +778,9 @@ import '@aurodesignsystem/auro-dialog/dist/style-unformatted.scss'
|
|
|
780
778
|
or
|
|
781
779
|
|
|
782
780
|
import '@aurodesignsystem/auro-dialog/dist/style-unformatted.css'
|
|
783
|
-
```
|
|
781
|
+
```
|
|
782
|
+
|
|
783
|
+
## Restyle Component with CSS Variables
|
|
784
784
|
|
|
785
785
|
The component may be restyled by changing the values of the following token(s).
|
|
786
786
|
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"================================================================================"
|
|
8
8
|
],
|
|
9
9
|
"name": "@aurodesignsystem-dev/auro-dialog",
|
|
10
|
-
"version": "0.0.0-pr97.
|
|
10
|
+
"version": "0.0.0-pr97.4",
|
|
11
11
|
"description": "auro-dialog HTML custom element",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "auro build",
|
|
55
55
|
"build:version": "node ./scripts/version.mjs",
|
|
56
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
56
57
|
"dev": "auro dev -w -s",
|
|
57
58
|
"dev:open": "auro dev -w -s --open",
|
|
58
59
|
"lint": "biome check --no-errors-on-unmatched && stylelint \"./src/**/*.scss\"",
|
|
@@ -66,7 +67,12 @@
|
|
|
66
67
|
"exports": {
|
|
67
68
|
"./package.json": "./package.json",
|
|
68
69
|
"./readme.md": "./README.md",
|
|
69
|
-
".": "./
|
|
70
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
71
|
+
".": {
|
|
72
|
+
"module": "./dist/registered.js",
|
|
73
|
+
"types": "./dist/index.d.ts",
|
|
74
|
+
"default": "./dist/registered.js"
|
|
75
|
+
},
|
|
70
76
|
"./demo/*.md": "./demo/*.md",
|
|
71
77
|
"./demo/*.js": "./demo/*.min.js",
|
|
72
78
|
"./class": {
|