@uniai-fe/uds-primitives 0.3.5 → 0.3.6
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/styles.css
CHANGED
|
@@ -522,6 +522,7 @@
|
|
|
522
522
|
);
|
|
523
523
|
--table-grid-row-highlight-background-color: rgba(229, 238, 255, 0.52);
|
|
524
524
|
--table-cell-background-color: var(--color-surface-static-white);
|
|
525
|
+
--table-cell-content-gap: var(--spacing-gap-2);
|
|
525
526
|
--table-line-cell-height-head: 44px;
|
|
526
527
|
--table-line-cell-height-body: 56px;
|
|
527
528
|
--table-grid-cell-height: 48px;
|
|
@@ -4094,6 +4095,7 @@ figure.chip {
|
|
|
4094
4095
|
height: 100%;
|
|
4095
4096
|
justify-content: flex-start;
|
|
4096
4097
|
box-sizing: border-box;
|
|
4098
|
+
gap: var(--table-cell-content-gap);
|
|
4097
4099
|
padding-inline: var(--table-cell-padding-inline);
|
|
4098
4100
|
padding-block: var(--table-cell-padding-block);
|
|
4099
4101
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-primitives",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"description": "UNIAI Design System; Primitives Components Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -53,7 +53,8 @@
|
|
|
53
53
|
"module:typecheck": "pnpm typecheck",
|
|
54
54
|
"module:build": "pnpm build",
|
|
55
55
|
"design-primitives:build": "pnpm run build",
|
|
56
|
-
"design-primitives:dev": "pnpm run dev"
|
|
56
|
+
"design-primitives:dev": "pnpm run dev",
|
|
57
|
+
"publish:public": "bash ../../../scripts/npm-publish.sh"
|
|
57
58
|
},
|
|
58
59
|
"peerDependencies": {
|
|
59
60
|
"@mantine/core": "^8",
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
--table-grid-row-highlight-background-color: rgba(229, 238, 255, 0.52);
|
|
14
14
|
--table-cell-background-color: var(--color-surface-static-white);
|
|
15
15
|
|
|
16
|
+
--table-cell-content-gap: var(--spacing-gap-2);
|
|
17
|
+
|
|
16
18
|
--table-line-cell-height-head: 44px;
|
|
17
19
|
--table-line-cell-height-body: 56px;
|
|
18
20
|
--table-grid-cell-height: 48px;
|