@openvoxproject/voxblocks 0.10.0 → 0.11.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/cdn/voxblocks.css +1 -1
- package/dist/cdn/voxblocks.js +1179 -1075
- package/dist/types/components/accordion/vox-accordion.d.ts +2 -0
- package/dist/types/components/disclosure/vox-disclosure.d.ts +2 -0
- package/dist/types/components/dropdown/vox-dropdown.d.ts +3 -0
- package/dist/types/components/header/vox-header.d.ts +2 -0
- package/dist/types/components/pagination/vox-pagination.d.ts +6 -4
- package/dist/types/components/sidenav/vox-sidenav.d.ts +4 -0
- package/dist/types/internal/field.d.ts +4 -0
- package/dist/voxblocks.css +1 -1
- package/dist/voxblocks.js +1000 -896
- package/package.json +1 -1
- package/src/components/accordion/vox-accordion.ts +6 -1
- package/src/components/alert/vox-alert.ts +5 -1
- package/src/components/avatar/vox-avatar.ts +9 -2
- package/src/components/card/vox-card.ts +1 -1
- package/src/components/checkbox/vox-checkbox.ts +4 -3
- package/src/components/dialog/vox-dialog.ts +2 -2
- package/src/components/disclosure/vox-disclosure.ts +6 -1
- package/src/components/dropdown/vox-dropdown.ts +32 -8
- package/src/components/empty-state/vox-empty-state.ts +1 -1
- package/src/components/file-input/vox-file-input.ts +4 -1
- package/src/components/header/vox-header.ts +10 -0
- package/src/components/input/vox-input.ts +2 -0
- package/src/components/link-hub/vox-link-hub.ts +1 -1
- package/src/components/pagination/vox-pagination.ts +9 -6
- package/src/components/radio/vox-radio-group.ts +17 -6
- package/src/components/select/vox-select.ts +3 -0
- package/src/components/sidenav/vox-sidenav.ts +16 -1
- package/src/components/step-indicator/vox-step-indicator.ts +16 -2
- package/src/components/tabs/vox-tabs.ts +26 -2
- package/src/components/textarea/vox-textarea.ts +2 -0
- package/src/internal/field.ts +20 -2
- package/src/tokens/tokens.css +7 -7
package/src/tokens/tokens.css
CHANGED
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
--vox-color-warning-1: #915930;
|
|
30
30
|
--vox-color-warning-soft: rgba(234, 179, 8, 0.14);
|
|
31
31
|
--vox-color-danger-1: #b8272c;
|
|
32
|
-
--vox-color-danger-2: #
|
|
33
|
-
--vox-color-danger-3: #
|
|
32
|
+
--vox-color-danger-2: #c9333a;
|
|
33
|
+
--vox-color-danger-3: #d5393e;
|
|
34
34
|
--vox-color-danger-soft: rgba(244, 63, 94, 0.14);
|
|
35
35
|
|
|
36
36
|
/* Surfaces */
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
/* Text */
|
|
43
43
|
--vox-color-text-1: #12262c;
|
|
44
44
|
--vox-color-text-2: #4c6469;
|
|
45
|
-
--vox-color-text-3: #
|
|
45
|
+
--vox-color-text-3: #5c7377;
|
|
46
46
|
--vox-color-text-inverse: #ffffff;
|
|
47
47
|
|
|
48
48
|
/* Lines */
|
|
49
49
|
--vox-color-divider: rgba(18, 38, 44, 0.12);
|
|
50
|
-
--vox-color-border: rgba(18, 38, 44, 0.
|
|
50
|
+
--vox-color-border: rgba(18, 38, 44, 0.55);
|
|
51
51
|
|
|
52
52
|
/* Typography */
|
|
53
53
|
--vox-font-family-base: 'Inter', ui-sans-serif, system-ui, -apple-system,
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
--vox-color-warning-1: #f9b44e;
|
|
93
93
|
--vox-color-warning-soft: rgba(234, 179, 8, 0.16);
|
|
94
94
|
--vox-color-danger-1: #f66f81;
|
|
95
|
-
--vox-color-danger-2: #
|
|
95
|
+
--vox-color-danger-2: #d13b52;
|
|
96
96
|
--vox-color-danger-3: #b62a3c;
|
|
97
97
|
--vox-color-danger-soft: rgba(244, 63, 94, 0.16);
|
|
98
98
|
|
|
@@ -103,11 +103,11 @@
|
|
|
103
103
|
|
|
104
104
|
--vox-color-text-1: #dff3f0;
|
|
105
105
|
--vox-color-text-2: #9fb8bb;
|
|
106
|
-
--vox-color-text-3: #
|
|
106
|
+
--vox-color-text-3: #88999c;
|
|
107
107
|
--vox-color-text-inverse: #ffffff;
|
|
108
108
|
|
|
109
109
|
--vox-color-divider: rgba(159, 184, 187, 0.24);
|
|
110
|
-
--vox-color-border: rgba(159, 184, 187, 0.
|
|
110
|
+
--vox-color-border: rgba(159, 184, 187, 0.6);
|
|
111
111
|
|
|
112
112
|
--vox-shadow-1: 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
113
113
|
--vox-shadow-2: 0 3px 12px rgba(0, 0, 0, 0.26), 0 1px 4px rgba(0, 0, 0, 0.26);
|