@dpa-id-components/dpa-shared-components 4.2.2 → 4.3.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/.eslintrc.cjs +7 -7
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +55 -0
- package/dist/components/UiDatePickerMobile/UiDatePickerMobile.vue.d.ts +1 -1
- package/dist/dpa-shared-components.mjs +2048 -2026
- package/dist/dpa-shared-components.umd.js +6 -6
- package/dist/style.css +1 -1
- package/dist/tailwind.config.cjs +35 -36
- package/package.json +1 -1
- package/dist/components/testcomponent.vue.d.ts +0 -2
- package/dist/filter-e213ae59.mjs +0 -15
- package/dist/filter-outline-91e5aa0a.mjs +0 -19
package/dist/tailwind.config.cjs
CHANGED
|
@@ -3,14 +3,14 @@ module.exports = {
|
|
|
3
3
|
inset: {
|
|
4
4
|
0: 0,
|
|
5
5
|
"1/2": "50%",
|
|
6
|
-
full: "100%"
|
|
6
|
+
full: "100%",
|
|
7
7
|
},
|
|
8
8
|
screens: {
|
|
9
9
|
sm: "640px",
|
|
10
10
|
md: "768px",
|
|
11
11
|
lg: "1024px",
|
|
12
12
|
xl: "1280px",
|
|
13
|
-
xxl: "1600px"
|
|
13
|
+
xxl: "1600px",
|
|
14
14
|
},
|
|
15
15
|
fontSize: {
|
|
16
16
|
xs: "12px",
|
|
@@ -23,7 +23,7 @@ module.exports = {
|
|
|
23
23
|
"4xl": "36px",
|
|
24
24
|
"5xl": "48px",
|
|
25
25
|
"6xl": "60px",
|
|
26
|
-
"7xl": "72px"
|
|
26
|
+
"7xl": "72px",
|
|
27
27
|
},
|
|
28
28
|
spacing: {
|
|
29
29
|
px: "1px",
|
|
@@ -62,23 +62,23 @@ module.exports = {
|
|
|
62
62
|
64: "256px",
|
|
63
63
|
72: "288px",
|
|
64
64
|
80: "320px",
|
|
65
|
-
96: "384px"
|
|
65
|
+
96: "384px",
|
|
66
66
|
},
|
|
67
67
|
extend: {
|
|
68
68
|
outline: {
|
|
69
|
-
blue: ["2px solid rgba(0, 62, 219, 0.5)", "2px"]
|
|
69
|
+
blue: ["2px solid rgba(0, 62, 219, 0.5)", "2px"],
|
|
70
70
|
},
|
|
71
71
|
fontFamily: {
|
|
72
72
|
sans: ["Inter", "sans-serif"],
|
|
73
|
-
marketing: ["Futura", "sans-serif"]
|
|
73
|
+
marketing: ["Futura", "sans-serif"],
|
|
74
74
|
},
|
|
75
75
|
spacing: {
|
|
76
76
|
inherit: "inherit",
|
|
77
77
|
half: "2px", // 2px,
|
|
78
|
-
inputFocused: "15px"
|
|
78
|
+
inputFocused: "15px",
|
|
79
79
|
},
|
|
80
80
|
duration: {
|
|
81
|
-
0: "0ms"
|
|
81
|
+
0: "0ms",
|
|
82
82
|
},
|
|
83
83
|
colors: {
|
|
84
84
|
transparent: "rgba(255, 255, 255, 0)",
|
|
@@ -93,69 +93,69 @@ module.exports = {
|
|
|
93
93
|
600: "#7E7E7E",
|
|
94
94
|
700: "#757575",
|
|
95
95
|
800: "#4D4D4D",
|
|
96
|
-
900: "#212121"
|
|
96
|
+
900: "#212121",
|
|
97
97
|
},
|
|
98
98
|
blue: {
|
|
99
99
|
default: "#003edb",
|
|
100
|
-
dark: "#0030aa"
|
|
100
|
+
dark: "#0030aa",
|
|
101
101
|
},
|
|
102
102
|
red: {
|
|
103
103
|
default: "#E53935",
|
|
104
|
-
dark: "#AB000D"
|
|
104
|
+
dark: "#AB000D",
|
|
105
105
|
},
|
|
106
106
|
pink: {
|
|
107
107
|
default: "#F5138D",
|
|
108
|
-
dark: "#BD0060"
|
|
108
|
+
dark: "#BD0060",
|
|
109
109
|
},
|
|
110
110
|
purple: {
|
|
111
111
|
default: "#8E24AA",
|
|
112
|
-
dark: "#5C007A"
|
|
112
|
+
dark: "#5C007A",
|
|
113
113
|
},
|
|
114
114
|
cyan: {
|
|
115
115
|
default: "#00ACC1",
|
|
116
|
-
dark: "#007C91"
|
|
116
|
+
dark: "#007C91",
|
|
117
117
|
},
|
|
118
118
|
teal: {
|
|
119
119
|
default: "#00897B",
|
|
120
|
-
dark: "#005B4F"
|
|
120
|
+
dark: "#005B4F",
|
|
121
121
|
},
|
|
122
122
|
green: {
|
|
123
123
|
default: "#30DF7B",
|
|
124
|
-
dark: "#00AC4D"
|
|
124
|
+
dark: "#00AC4D",
|
|
125
125
|
},
|
|
126
126
|
yellow: {
|
|
127
127
|
default: "#F9F500",
|
|
128
|
-
dark: "#C1BE00"
|
|
128
|
+
dark: "#C1BE00",
|
|
129
129
|
},
|
|
130
130
|
orange: {
|
|
131
131
|
default: "#FFB300",
|
|
132
|
-
dark: "#C68400"
|
|
132
|
+
dark: "#C68400",
|
|
133
133
|
},
|
|
134
134
|
"alert-red": {
|
|
135
135
|
default: "#F53000",
|
|
136
|
-
dark: "#BA2400"
|
|
136
|
+
dark: "#BA2400",
|
|
137
137
|
},
|
|
138
138
|
"alert-green": {
|
|
139
139
|
default: "#00D200",
|
|
140
|
-
dark: "#00AA00"
|
|
140
|
+
dark: "#00AA00",
|
|
141
141
|
},
|
|
142
142
|
"neon-green": "#00E281",
|
|
143
143
|
rainbow: {
|
|
144
144
|
red: "#E53935",
|
|
145
145
|
"red-dark": "#AB000D",
|
|
146
146
|
orange: "#FFB300",
|
|
147
|
-
purple: "#8E24AA"
|
|
148
|
-
}
|
|
147
|
+
purple: "#8E24AA",
|
|
148
|
+
},
|
|
149
149
|
},
|
|
150
150
|
opacity: {
|
|
151
151
|
60: "0.6",
|
|
152
|
-
20: "0.2"
|
|
152
|
+
20: "0.2",
|
|
153
153
|
},
|
|
154
154
|
boxShadow: {
|
|
155
155
|
default: "0px 1px 1px rgba(0, 0, 0, 0.1)",
|
|
156
156
|
negative: "0px -1px 1px rgba(0, 0, 0, 0.1)",
|
|
157
157
|
md: "0px 1px 5px rgba(0, 0, 0, 0.1)",
|
|
158
|
-
lg: "0px 2px 6px rgba(0, 0, 0, 0.25)"
|
|
158
|
+
lg: "0px 2px 6px rgba(0, 0, 0, 0.25)",
|
|
159
159
|
},
|
|
160
160
|
inset: {
|
|
161
161
|
0: 0,
|
|
@@ -166,10 +166,10 @@ module.exports = {
|
|
|
166
166
|
5: "20px",
|
|
167
167
|
12: "48px",
|
|
168
168
|
16: "64px",
|
|
169
|
-
full: "100%"
|
|
169
|
+
full: "100%",
|
|
170
170
|
},
|
|
171
171
|
screens: {
|
|
172
|
-
print: { raw: "print" }
|
|
172
|
+
print: { raw: "print" },
|
|
173
173
|
},
|
|
174
174
|
lineHeight: {
|
|
175
175
|
3: "12px",
|
|
@@ -179,29 +179,28 @@ module.exports = {
|
|
|
179
179
|
7: "28px",
|
|
180
180
|
8: "32px",
|
|
181
181
|
9: "36px",
|
|
182
|
-
10: "40px"
|
|
182
|
+
10: "40px",
|
|
183
183
|
},
|
|
184
184
|
width: {
|
|
185
|
-
|
|
185
|
+
4.5: "18px",
|
|
186
186
|
},
|
|
187
187
|
height: {
|
|
188
|
-
|
|
189
|
-
}
|
|
188
|
+
4.5: "18px",
|
|
189
|
+
},
|
|
190
190
|
},
|
|
191
191
|
maxHeight: {
|
|
192
|
-
60: "240px"
|
|
193
|
-
}
|
|
194
|
-
|
|
192
|
+
60: "240px",
|
|
193
|
+
},
|
|
195
194
|
},
|
|
196
195
|
variants: {
|
|
197
196
|
opacity: ["responsive", "hover", "focus", "group-hover"],
|
|
198
197
|
outline: ["focus", "focus-visible"],
|
|
199
198
|
display: ["responsive", "group-hover"],
|
|
200
199
|
textColor: ["responsive", "hover", "focus", "group-hover", "group-focus"],
|
|
201
|
-
textDecoration: ["group-hover"]
|
|
200
|
+
textDecoration: ["group-hover"],
|
|
202
201
|
},
|
|
203
202
|
plugins: [
|
|
204
203
|
require("@tailwindcss/typography"),
|
|
205
|
-
require("@tailwindcss/container-queries")
|
|
206
|
-
]
|
|
204
|
+
require("@tailwindcss/container-queries"),
|
|
205
|
+
],
|
|
207
206
|
};
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
-
export default _default;
|
package/dist/filter-e213ae59.mjs
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { openBlock as e, createElementBlock as t, createElementVNode as o } from "vue";
|
|
2
|
-
const n = {
|
|
3
|
-
viewBox: "0 0 24 24",
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5
|
-
}, r = /* @__PURE__ */ o("path", { d: "M3.51471 12L12 3.51472L20.4853 12L12 20.4853L3.51471 12Z" }, null, -1), c = [
|
|
6
|
-
r
|
|
7
|
-
];
|
|
8
|
-
function s(l, d) {
|
|
9
|
-
return e(), t("svg", n, c);
|
|
10
|
-
}
|
|
11
|
-
const i = { render: s };
|
|
12
|
-
export {
|
|
13
|
-
i as default,
|
|
14
|
-
s as render
|
|
15
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { openBlock as e, createElementBlock as t, createElementVNode as o } from "vue";
|
|
2
|
-
const n = {
|
|
3
|
-
viewBox: "0 0 24 24",
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5
|
-
}, l = /* @__PURE__ */ o("path", {
|
|
6
|
-
"fill-rule": "evenodd",
|
|
7
|
-
"clip-rule": "evenodd",
|
|
8
|
-
d: "M12 6.34315L6.34314 12L12 17.6569L17.6568 12L12 6.34315ZM3.51471 12L12 20.4853L20.4853 12L12 3.51472L3.51471 12Z"
|
|
9
|
-
}, null, -1), r = [
|
|
10
|
-
l
|
|
11
|
-
];
|
|
12
|
-
function c(d, s) {
|
|
13
|
-
return e(), t("svg", n, r);
|
|
14
|
-
}
|
|
15
|
-
const L = { render: c };
|
|
16
|
-
export {
|
|
17
|
-
L as default,
|
|
18
|
-
c as render
|
|
19
|
-
};
|