@skewedaspect/sleekspace-ui 0.4.0 → 0.5.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/dist/components/Page/SkPage.vue.d.ts +9 -0
- package/dist/components/Page/types.d.ts +3 -0
- package/dist/components/Theme/types.d.ts +18 -3
- package/dist/sleekspace-ui.css +79 -46
- package/dist/sleekspace-ui.es.js +48 -36
- package/dist/sleekspace-ui.umd.js +48 -36
- package/dist/tokens.css +23 -0
- package/docs/guides/design-tokens/advanced.md +6 -1
- package/docs/guides/design-tokens/foundation-other.md +16 -3
- package/docs/guides/design-tokens/semantic-states.md +26 -11
- package/docs/guides/design-tokens/themes.md +13 -2
- package/docs/guides/getting-started.md +31 -30
- package/docs/guides/theming.md +272 -8
- package/package.json +3 -3
- package/src/components/Page/SkPage.vue +36 -2
- package/src/components/Page/types.ts +6 -0
- package/src/components/Theme/types.ts +20 -3
- package/src/styles/_scrollbar.scss +2 -2
- package/src/styles/base/_global.scss +3 -3
- package/src/styles/components/_button.scss +45 -9
- package/src/styles/components/_page.scss +2 -2
- package/src/styles/themes/README.md +6 -2
- package/src/styles/tokens/_foundation-colors.scss +4 -0
- package/src/styles/tokens/_foundation-transitions.scss +8 -0
- package/src/styles/tokens/_semantic-surfaces.scss +15 -0
- package/web-types.json +11 -1
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "@skewedaspect/sleekspace-ui",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.5.1",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -1589,6 +1589,16 @@
|
|
|
1589
1589
|
"type": "string"
|
|
1590
1590
|
},
|
|
1591
1591
|
"default": "undefined"
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"name": "theme",
|
|
1595
|
+
"required": false,
|
|
1596
|
+
"description": "Optional theme name. When provided, SkPage acts as a theme provider — setting\n`data-scheme` on the root element and providing theme context for descendant\ncomponents (including portal components like dropdowns and modals).\nWhen omitted, SkPage has no theme behavior.",
|
|
1597
|
+
"value": {
|
|
1598
|
+
"kind": "expression",
|
|
1599
|
+
"type": "SkThemeName"
|
|
1600
|
+
},
|
|
1601
|
+
"default": "undefined"
|
|
1592
1602
|
}
|
|
1593
1603
|
],
|
|
1594
1604
|
"slots": [
|