@pantoken/scss 0.1.1 → 0.1.3
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/generated/tokens.scss +7 -6
- package/package.json +11 -3
package/generated/tokens.scss
CHANGED
|
@@ -863,7 +863,7 @@ $instui-color-institutional-brand-button-primary-text: #ffffff;
|
|
|
863
863
|
$instui-color-institutional-brand-button-secondary-bgd: #44709F;
|
|
864
864
|
$instui-color-institutional-brand-button-secondary-text: #1D354F;
|
|
865
865
|
$instui-color-institutional-brand-global-nav-bgd: #ffffff;
|
|
866
|
-
$instui-color-institutional-global-nav-link-hover: #
|
|
866
|
+
$instui-color-institutional-global-nav-link-hover: #EEF4FD;
|
|
867
867
|
$instui-color-institutional-brand-global-nav-menu-item-text-color: #273540;
|
|
868
868
|
$instui-color-institutional-brand-global-nav-menu-item-text-color-active: #ffffff;
|
|
869
869
|
$instui-drop-shadow-x-elevation1-dropshadow1: 0px;
|
|
@@ -926,7 +926,6 @@ $instui-component-view-stacking-below: -1;
|
|
|
926
926
|
$instui-component-view-stacking-deepest: -9999;
|
|
927
927
|
$instui-component-view-border-style: solid;
|
|
928
928
|
$instui-component-truncate-text-font-family: Atkinson Hyperlegible Next, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
929
|
-
$instui-component-truncate-text-line-height: 150%;
|
|
930
929
|
$instui-component-tree-browser-border-radius: 0.5rem;
|
|
931
930
|
$instui-component-tree-browser-tree-button-base-spacing-large: 1rem;
|
|
932
931
|
$instui-component-tree-browser-tree-button-base-spacing-medium: 0.75rem;
|
|
@@ -1443,7 +1442,7 @@ $instui-component-side-nav-bar-item-font-color: #273540;
|
|
|
1443
1442
|
$instui-component-side-nav-bar-item-font-family: Atkinson Hyperlegible Next, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
1444
1443
|
$instui-component-side-nav-bar-item-font-size: 0.875rem;
|
|
1445
1444
|
$instui-component-side-nav-bar-item-font-weight: 400;
|
|
1446
|
-
$instui-component-side-nav-bar-item-hover-background-color: #
|
|
1445
|
+
$instui-component-side-nav-bar-item-hover-background-color: #EEF4FD;
|
|
1447
1446
|
$instui-component-side-nav-bar-item-line-height: 150%;
|
|
1448
1447
|
$instui-component-side-nav-bar-item-link-text-decoration: none;
|
|
1449
1448
|
$instui-component-side-nav-bar-item-selected-background-color: #1D354F;
|
|
@@ -2709,15 +2708,15 @@ $instui-component-badge-color-inverse: #273540;
|
|
|
2709
2708
|
$instui-component-badge-color-danger: #E62429;
|
|
2710
2709
|
$instui-component-badge-color-success: #03893D;
|
|
2711
2710
|
$instui-component-badge-color-primary: #1D354F;
|
|
2712
|
-
$instui-component-badge-font-size: 0.
|
|
2711
|
+
$instui-component-badge-font-size: 0.75rem;
|
|
2713
2712
|
$instui-component-badge-font-weight: 600;
|
|
2714
2713
|
$instui-component-badge-size-notification: 0.75rem;
|
|
2715
|
-
$instui-component-badge-size:
|
|
2714
|
+
$instui-component-badge-size: 1rem;
|
|
2716
2715
|
$instui-component-badge-padding: 0.25rem;
|
|
2717
2716
|
$instui-component-badge-notification-offset: 0.125rem;
|
|
2718
|
-
$instui-component-badge-notification-z-index: 1;
|
|
2719
2717
|
$instui-component-badge-pulse-border-thickness: 0.125rem;
|
|
2720
2718
|
$instui-component-badge-count-offset: 0.5rem;
|
|
2719
|
+
$instui-component-badge-primary-text-color: #ffffff;
|
|
2721
2720
|
$instui-component-avatar-background-color: #ffffff;
|
|
2722
2721
|
$instui-component-avatar-border-color: #8D959F;
|
|
2723
2722
|
$instui-component-avatar-border-width-sm: 0.0625rem;
|
|
@@ -2810,3 +2809,5 @@ $instui-component-ai-information-level-color: #8A49A7;
|
|
|
2810
2809
|
$instui-component-ai-information-permission-levels-modal-trigger-bottom-margin: 1.5rem;
|
|
2811
2810
|
$instui-icon-color-ai: linear-gradient(180deg, #944FB3 0%, #027887 100%);
|
|
2812
2811
|
$instui-icon-color-inherit: currentColor;
|
|
2812
|
+
$instui-component-truncate-text-line-height: 150%;
|
|
2813
|
+
$instui-component-badge-notification-z-index: 1;
|
package/package.json
CHANGED
|
@@ -1,24 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantoken/scss",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Instructure design tokens as SCSS variables (resolved, single-mode) from the pantoken IR.",
|
|
5
|
+
"homepage": "https://pantoken.iywahl.com",
|
|
6
|
+
"bugs": "https://github.com/thedannywahl/pantoken/issues",
|
|
5
7
|
"license": "MIT",
|
|
6
8
|
"repository": {
|
|
7
9
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/thedannywahl/pantoken.git"
|
|
10
|
+
"url": "git+https://github.com/thedannywahl/pantoken.git",
|
|
11
|
+
"directory": "formats/scss"
|
|
9
12
|
},
|
|
10
13
|
"files": [
|
|
11
14
|
"dist",
|
|
12
15
|
"generated/tokens.scss"
|
|
13
16
|
],
|
|
14
17
|
"type": "module",
|
|
18
|
+
"sideEffects": false,
|
|
15
19
|
"exports": {
|
|
16
20
|
".": "./dist/index.mjs",
|
|
17
21
|
"./tokens.scss": "./generated/tokens.scss",
|
|
18
22
|
"./package.json": "./package.json"
|
|
19
23
|
},
|
|
20
24
|
"publishConfig": {
|
|
21
|
-
"access": "public"
|
|
25
|
+
"access": "public",
|
|
26
|
+
"provenance": true
|
|
22
27
|
},
|
|
23
28
|
"scripts": {
|
|
24
29
|
"generate": "node scripts/generate.ts",
|
|
@@ -37,6 +42,9 @@
|
|
|
37
42
|
"vite": "catalog:",
|
|
38
43
|
"vite-plus": "catalog:"
|
|
39
44
|
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=22.18.0"
|
|
47
|
+
},
|
|
40
48
|
"pantoken": {
|
|
41
49
|
"key": "scss",
|
|
42
50
|
"kind": "namespace"
|