@cobre-npm/ds-v3 0.2.1 → 0.2.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.
@@ -214,6 +214,19 @@
214
214
  --cobre-btn-v3-filter-font-weight: 400;
215
215
  --cobre-btn-v3-filter-width: fit-content;
216
216
 
217
+ // Chip
218
+ --cobre-btn-v3-chip-height: 20px;
219
+ --cobre-btn-v3-chip-radius: var(--cobre-radius-full);
220
+ --cobre-btn-v3-chip-border: var(--cobre-border-stroke-M) solid var(--cobre-primary-20);
221
+ --cobre-btn-v3-chip-bg: var(--cobre-white);
222
+ --cobre-btn-v3-chip-color: var(--cobre-primary-80);
223
+ --cobre-btn-v3-chip-padding: 0 4px;
224
+ --cobre-btn-v3-chip-fs: 12px;
225
+ --cobre-btn-v3-chip-hover-border: var(--cobre-border-stroke-M) solid var(--cobre-secondary-50);
226
+ --cobre-btn-v3-chip-hover-bg: var(--cobre-secondary-10);
227
+ --cobre-btn-v3-chip-disabled-bg: transparent;
228
+ --cobre-btn-v3-chip-disabled-color: var(--cobre-primary-60);
229
+
217
230
  // Icon
218
231
  --cobre-btn-v3-icon-fs: transparent;
219
232
  --cobre-btn-v3-icon-bg: transparent;
@@ -1 +1 @@
1
- export type ButtonThemes = 'primary' | 'secondary' | 'ghost' | 'ghost-small' | 'ghost-teal' | 'link' | 'warning' | 'secondary-warning' | 'action' | 'single' | 'filter' | 'secondary-cloudy' | 'icon' | 'icon-cloudy' | 'toolbar' | 'primary-warning';
1
+ export type ButtonThemes = 'primary' | 'secondary' | 'ghost' | 'ghost-small' | 'ghost-teal' | 'link' | 'warning' | 'secondary-warning' | 'action' | 'single' | 'filter' | 'secondary-cloudy' | 'icon' | 'icon-cloudy' | 'toolbar' | 'primary-warning' | 'chip';
package/package.json CHANGED
@@ -1,17 +1,12 @@
1
1
  {
2
2
  "name": "@cobre-npm/ds-v3",
3
- "version": "0.2.1",
3
+ "version": "0.2.4",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
8
8
  "module": "./dist/cobre-ds-v3-lib.es.js",
9
9
  "types": "dist/types/index.d.ts",
10
- "exports": {
11
- ".": {
12
- "import": "./dist/cobre-ds-v3-lib.es.js"
13
- }
14
- },
15
10
  "scripts": {
16
11
  "dev": "vite",
17
12
  "get-types": "vue-tsc --declaration --emitDeclarationOnly",