@cds/core 6.1.1 → 6.1.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/custom-elements.json +30 -17
- package/global.css +4 -0
- package/global.min.css +1 -1
- package/internal/base/base.element.scss.js +1 -1
- package/internal/utils/global.js +1 -1
- package/navigation/navigation.element.d.ts +11 -10
- package/navigation/navigation.element.js +1 -1
- package/navigation/navigation.element.js.map +1 -1
- package/package.json +1 -1
- package/range/range.element.js +1 -1
- package/range/range.element.js.map +1 -1
- package/styles/module.typography.css +4 -0
- package/styles/module.typography.min.css +1 -1
package/custom-elements.json
CHANGED
|
@@ -49998,17 +49998,6 @@
|
|
|
49998
49998
|
"privacy": "protected",
|
|
49999
49999
|
"description": "query for all groups (including any nested groups), used ot pass state down"
|
|
50000
50000
|
},
|
|
50001
|
-
{
|
|
50002
|
-
"kind": "method",
|
|
50003
|
-
"name": "toggle",
|
|
50004
|
-
"privacy": "private"
|
|
50005
|
-
},
|
|
50006
|
-
{
|
|
50007
|
-
"kind": "field",
|
|
50008
|
-
"name": "currentActiveItem",
|
|
50009
|
-
"privacy": "private",
|
|
50010
|
-
"readonly": true
|
|
50011
|
-
},
|
|
50012
50001
|
{
|
|
50013
50002
|
"kind": "field",
|
|
50014
50003
|
"name": "endTemplate",
|
|
@@ -50021,6 +50010,18 @@
|
|
|
50021
50010
|
"privacy": "protected",
|
|
50022
50011
|
"readonly": true
|
|
50023
50012
|
},
|
|
50013
|
+
{
|
|
50014
|
+
"kind": "method",
|
|
50015
|
+
"name": "onStartItemSlotChange"
|
|
50016
|
+
},
|
|
50017
|
+
{
|
|
50018
|
+
"kind": "method",
|
|
50019
|
+
"name": "onItemSlotChange"
|
|
50020
|
+
},
|
|
50021
|
+
{
|
|
50022
|
+
"kind": "method",
|
|
50023
|
+
"name": "updateChildrenProps"
|
|
50024
|
+
},
|
|
50024
50025
|
{
|
|
50025
50026
|
"kind": "field",
|
|
50026
50027
|
"name": "visibleChildren",
|
|
@@ -50032,7 +50033,14 @@
|
|
|
50032
50033
|
},
|
|
50033
50034
|
{
|
|
50034
50035
|
"kind": "method",
|
|
50035
|
-
"name": "
|
|
50036
|
+
"name": "toggle",
|
|
50037
|
+
"privacy": "private"
|
|
50038
|
+
},
|
|
50039
|
+
{
|
|
50040
|
+
"kind": "field",
|
|
50041
|
+
"name": "currentActiveItem",
|
|
50042
|
+
"privacy": "private",
|
|
50043
|
+
"readonly": true
|
|
50036
50044
|
},
|
|
50037
50045
|
{
|
|
50038
50046
|
"kind": "method",
|
|
@@ -50085,10 +50093,6 @@
|
|
|
50085
50093
|
}
|
|
50086
50094
|
}
|
|
50087
50095
|
]
|
|
50088
|
-
},
|
|
50089
|
-
{
|
|
50090
|
-
"kind": "method",
|
|
50091
|
-
"name": "updateChildrenProps"
|
|
50092
50096
|
}
|
|
50093
50097
|
],
|
|
50094
50098
|
"events": [
|
|
@@ -53135,7 +53139,16 @@
|
|
|
53135
53139
|
{
|
|
53136
53140
|
"kind": "method",
|
|
53137
53141
|
"name": "setTrackWidth",
|
|
53138
|
-
"privacy": "private"
|
|
53142
|
+
"privacy": "private",
|
|
53143
|
+
"parameters": [
|
|
53144
|
+
{
|
|
53145
|
+
"name": "val",
|
|
53146
|
+
"optional": true,
|
|
53147
|
+
"type": {
|
|
53148
|
+
"text": "number"
|
|
53149
|
+
}
|
|
53150
|
+
}
|
|
53151
|
+
]
|
|
53139
53152
|
},
|
|
53140
53153
|
{
|
|
53141
53154
|
"kind": "field",
|
package/global.css
CHANGED
|
@@ -654,6 +654,10 @@ html[cds-focus-trap] {
|
|
|
654
654
|
);
|
|
655
655
|
}
|
|
656
656
|
|
|
657
|
+
body[cds-text*=body]::before, body[cds-text*=body]::after {
|
|
658
|
+
content: none;
|
|
659
|
+
}
|
|
660
|
+
|
|
657
661
|
[cds-text*=message] {
|
|
658
662
|
font-size: var(--cds-global-typography-message-font-size);
|
|
659
663
|
font-weight: var(--cds-global-typography-message-font-weight);
|