fds-vue-core 2.0.17 → 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 -4
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.css +1 -0
- package/dist/fds-vue-core.es.js +3 -4
- package/dist/fds-vue-core.es.js.map +1 -1
- package/package.json +10 -2
- package/dist/components.cjs.js +0 -4
- package/dist/components.cjs.js.map +0 -1
- package/dist/components.css +0 -1
- package/dist/components.css.d.ts +0 -31
- package/dist/components.css.d.ts.map +0 -1
- package/dist/components.d.ts +0 -1
- package/dist/components.es.js +0 -3
- package/dist/components.es.js.map +0 -1
|
@@ -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
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
3
|
const vue = require("vue");
|
|
4
|
-
;/* empty css */
|
|
5
4
|
const getTitleFromProperties = (node, titleTemplate) => {
|
|
6
5
|
if (!titleTemplate) {
|
|
7
6
|
return node.title;
|
|
@@ -1907,7 +1906,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
1907
1906
|
};
|
|
1908
1907
|
}
|
|
1909
1908
|
});
|
|
1910
|
-
const FdsInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-
|
|
1909
|
+
const FdsInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-4e9b56d8"]]);
|
|
1911
1910
|
const _hoisted_1$g = ["id"];
|
|
1912
1911
|
const _hoisted_2$a = { class: "flex items-start justify-between gap-4" };
|
|
1913
1912
|
const _hoisted_3$8 = { class: "flex items-center gap-3" };
|
|
@@ -2628,7 +2627,7 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
2628
2627
|
};
|
|
2629
2628
|
}
|
|
2630
2629
|
});
|
|
2631
|
-
const FdsTable = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-
|
|
2630
|
+
const FdsTable = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-062d1324"]]);
|
|
2632
2631
|
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
2633
2632
|
__name: "FdsTableHead",
|
|
2634
2633
|
props: {
|
|
@@ -2851,7 +2850,7 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
2851
2850
|
};
|
|
2852
2851
|
}
|
|
2853
2852
|
});
|
|
2854
|
-
const FdsBlockAlert = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-
|
|
2853
|
+
const FdsBlockAlert = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-c92646b2"]]);
|
|
2855
2854
|
const _hoisted_1$7 = { class: "inline-flex items-center" };
|
|
2856
2855
|
const _hoisted_2$4 = {
|
|
2857
2856
|
key: 0,
|