fds-vue-core 2.0.16 → 2.0.18
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/FdsBlockAlert.css +9 -0
- package/dist/FdsBlockExpander.css +17 -0
- package/dist/FdsBlockLink.css +9 -0
- package/dist/FdsIcon.css +9 -0
- package/dist/FdsInput.css +8 -0
- package/dist/FdsPagination.css +8 -0
- package/dist/FdsTable.css +83 -0
- package/dist/FdsTruncatedText.css +15 -0
- package/dist/components/Blocks/FdsBlockAlert/FdsBlockAlert.vue.d.ts.map +1 -1
- package/dist/components/Form/FdsInput/FdsInput.vue.d.ts.map +1 -1
- package/dist/components/Table/FdsTable/FdsTable.vue.d.ts.map +1 -1
- package/dist/fds-vue-core.cjs.js +3 -3
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.css +1 -1
- package/dist/fds-vue-core.es.js +3 -3
- package/dist/fds-vue-core.es.js.map +1 -1
- package/package.json +10 -2
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* Vanilla CSS version (for consuming repos) */
|
|
2
|
+
.expander-root:has(button:active) {
|
|
3
|
+
box-shadow: none !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.fds-expander__content > *:last-child {
|
|
7
|
+
margin-bottom: 0 !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* Vue :deep() version - only used when imported in Vue SFC */
|
|
11
|
+
.expander-root:has(button:active) {
|
|
12
|
+
box-shadow: none !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:deep(.fds-expander__content > *:last-child) {
|
|
16
|
+
margin-bottom: 0 !important;
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* Vanilla CSS version (for consuming repos) */
|
|
2
|
+
.fds-interaction-block__inner__meta > * {
|
|
3
|
+
margin-bottom: 0 !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
/* Vue :deep() version - only used when imported in Vue SFC */
|
|
7
|
+
:deep(.fds-interaction-block__inner__meta > *) {
|
|
8
|
+
margin-bottom: 0 !important;
|
|
9
|
+
}
|
package/dist/FdsIcon.css
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/* Base styles - works in both Vue scoped and standalone CSS */
|
|
2
|
+
.fds-table-wrapper {
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
border-radius: var(--radius-md);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/* Table styling - vanilla CSS version (for consuming repos) */
|
|
8
|
+
.fds-table-wrapper table {
|
|
9
|
+
min-width: 100%;
|
|
10
|
+
border-collapse: collapse;
|
|
11
|
+
border-spacing: 0;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.fds-table-wrapper thead {
|
|
15
|
+
background-color: var(--color-blue_t-100);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.fds-table-wrapper thead tr:first-child th:first-child {
|
|
19
|
+
border-radius: var(--radius-lg) 0 0 0;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fds-table-wrapper thead tr:first-child th:last-child {
|
|
23
|
+
border-radius: 0 var(--radius-lg) 0 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fds-table-wrapper tbody {
|
|
27
|
+
background-color: var(--color-white);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.fds-table-wrapper tbody tr {
|
|
31
|
+
border-bottom: 1px solid var(--color-gray-100);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.fds-table-wrapper tbody tr:last-child {
|
|
35
|
+
border-bottom: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.fds-table-wrapper td,
|
|
39
|
+
.fds-table-wrapper th {
|
|
40
|
+
padding: 1rem;
|
|
41
|
+
text-align: left;
|
|
42
|
+
vertical-align: top;
|
|
43
|
+
white-space: normal;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Vue :deep() version - only used when imported in Vue SFC */
|
|
47
|
+
.fds-table-wrapper :deep(table) {
|
|
48
|
+
min-width: 100%;
|
|
49
|
+
border-collapse: collapse;
|
|
50
|
+
border-spacing: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.fds-table-wrapper :deep(thead) {
|
|
54
|
+
background-color: var(--color-blue_t-100);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.fds-table-wrapper :deep(thead tr:first-child th:first-child) {
|
|
58
|
+
border-radius: var(--radius-lg) 0 0 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.fds-table-wrapper :deep(thead tr:first-child th:last-child) {
|
|
62
|
+
border-radius: 0 var(--radius-lg) 0 0;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.fds-table-wrapper :deep(tbody) {
|
|
66
|
+
background-color: var(--color-white);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.fds-table-wrapper :deep(tbody tr) {
|
|
70
|
+
border-bottom: 1px solid var(--color-gray-100);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.fds-table-wrapper :deep(tbody tr:last-child) {
|
|
74
|
+
border-bottom: none;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.fds-table-wrapper :deep(td),
|
|
78
|
+
.fds-table-wrapper :deep(th) {
|
|
79
|
+
padding: 1rem;
|
|
80
|
+
text-align: left;
|
|
81
|
+
vertical-align: top;
|
|
82
|
+
white-space: normal;
|
|
83
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.content {
|
|
2
|
+
max-height: 1.3rem;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
text-overflow: ellipsis;
|
|
5
|
+
white-space: nowrap;
|
|
6
|
+
margin-bottom: 0.5rem;
|
|
7
|
+
display: block;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.content.open {
|
|
11
|
+
max-height: unset;
|
|
12
|
+
overflow: visible;
|
|
13
|
+
white-space: unset;
|
|
14
|
+
text-overflow: unset;
|
|
15
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FdsBlockAlert.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Blocks/FdsBlockAlert/FdsBlockAlert.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FdsBlockAlert.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Blocks/FdsBlockAlert/FdsBlockAlert.vue"],"names":[],"mappings":"AAwGA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAqNjD,QAAA,IAAI,QAAQ,IAAY,CAAE;AAC1B,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AA6BhD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;6EAInB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAY1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FdsInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FdsInput/FdsInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FdsInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FdsInput/FdsInput.vue"],"names":[],"mappings":"AAmJA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAK5C,KAAK,WAAW,GAAG,aAAa,CAAC;AAmGjC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmNF,wBAIG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FdsTable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Table/FdsTable/FdsTable.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FdsTable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Table/FdsTable/FdsTable.vue"],"names":[],"mappings":"AA2CA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAc5C,KAAK,WAAW,GAAG;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB,CAAC;AA8CF,QAAA,MAAM,eAAe;;;4EAGnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAY1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
package/dist/fds-vue-core.cjs.js
CHANGED
|
@@ -1906,7 +1906,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
1906
1906
|
};
|
|
1907
1907
|
}
|
|
1908
1908
|
});
|
|
1909
|
-
const FdsInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-
|
|
1909
|
+
const FdsInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-4e9b56d8"]]);
|
|
1910
1910
|
const _hoisted_1$g = ["id"];
|
|
1911
1911
|
const _hoisted_2$a = { class: "flex items-start justify-between gap-4" };
|
|
1912
1912
|
const _hoisted_3$8 = { class: "flex items-center gap-3" };
|
|
@@ -2627,7 +2627,7 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
2627
2627
|
};
|
|
2628
2628
|
}
|
|
2629
2629
|
});
|
|
2630
|
-
const FdsTable = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-
|
|
2630
|
+
const FdsTable = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-062d1324"]]);
|
|
2631
2631
|
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
2632
2632
|
__name: "FdsTableHead",
|
|
2633
2633
|
props: {
|
|
@@ -2850,7 +2850,7 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
2850
2850
|
};
|
|
2851
2851
|
}
|
|
2852
2852
|
});
|
|
2853
|
-
const FdsBlockAlert = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-
|
|
2853
|
+
const FdsBlockAlert = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-c92646b2"]]);
|
|
2854
2854
|
const _hoisted_1$7 = { class: "inline-flex items-center" };
|
|
2855
2855
|
const _hoisted_2$4 = {
|
|
2856
2856
|
key: 0,
|