@3t-transform/threeteeui 0.0.15 → 0.0.17
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/cjs/index-864b7110.js +1531 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +22 -0
- package/dist/cjs/tttx-button.cjs.entry.js +34 -0
- package/dist/cjs/tttx-checkbox.cjs.entry.js +28 -0
- package/dist/cjs/tttx-form.cjs.entry.js +374 -0
- package/dist/cjs/tttx-icon.cjs.entry.js +21 -0
- package/dist/cjs/tttx-input-calendar.cjs.entry.js +125 -0
- package/dist/cjs/tttx-keyvalue-block.cjs.entry.js +33 -0
- package/dist/cjs/tttx-list.cjs.entry.js +198 -0
- package/dist/cjs/tttx-loading-spinner.cjs.entry.js +26 -0
- package/dist/cjs/tttx-popover-content.cjs.entry.js +23 -0
- package/dist/cjs/tttx-standalone-input.cjs.entry.js +136 -0
- package/dist/cjs/tttx-table.cjs.entry.js +60 -0
- package/dist/cjs/tttx.cjs.js +23 -0
- package/dist/collection/collection-manifest.json +22 -0
- package/dist/collection/components/atoms/tttx-button/tttx-button.css +138 -0
- package/dist/collection/components/atoms/tttx-button/tttx-button.js +110 -0
- package/dist/collection/components/atoms/tttx-button/tttx-button.stories.js +74 -0
- package/dist/collection/components/atoms/tttx-icon/tttx-icon.css +108 -0
- package/dist/collection/components/atoms/tttx-icon/tttx-icon.js +62 -0
- package/dist/collection/components/atoms/tttx-icon/tttx-icon.stories.js +22 -0
- package/dist/collection/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.css +26 -0
- package/dist/collection/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.js +56 -0
- package/dist/collection/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.stories.js +12 -0
- package/dist/collection/components/atoms/tttx-loading-spinner/tttx-loading-spinner.css +48 -0
- package/dist/collection/components/atoms/tttx-loading-spinner/tttx-loading-spinner.js +67 -0
- package/dist/collection/components/atoms/tttx-loading-spinner/tttx-loading-spinner.stories.js +17 -0
- package/dist/collection/components/atoms/tttx-popover-content/tttx-popover-content.css +30 -0
- package/dist/collection/components/atoms/tttx-popover-content/tttx-popover-content.js +97 -0
- package/dist/collection/components/atoms/tttx-popover-content/tttx-popover-content.stories.js +23 -0
- package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.css +181 -0
- package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.js +102 -0
- package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.stories.js +13 -0
- package/dist/collection/components/molecules/tttx-form/tttx-form.css +314 -0
- package/dist/collection/components/molecules/tttx-form/tttx-form.js +452 -0
- package/dist/collection/components/molecules/tttx-form/tttx-form.stories.js +109 -0
- package/dist/collection/components/molecules/tttx-input-calendar/tttx-input-calendar.css +93 -0
- package/dist/collection/components/molecules/tttx-input-calendar/tttx-input-calendar.js +174 -0
- package/dist/collection/components/molecules/tttx-input-calendar/tttx-input-calendar.stories.js +27 -0
- package/dist/collection/components/molecules/tttx-list/tttx-list.css +56 -0
- package/dist/collection/components/molecules/tttx-list/tttx-list.js +312 -0
- package/dist/collection/components/molecules/tttx-list/tttx-list.stories.js +37 -0
- package/dist/collection/components/molecules/tttx-standalone-input/tttx-standalone-input.css +177 -0
- package/dist/collection/components/molecules/tttx-standalone-input/tttx-standalone-input.js +570 -0
- package/dist/collection/components/molecules/tttx-standalone-input/tttx-standalone-input.stories.js +156 -0
- package/dist/collection/components/molecules/tttx-table/tttx-table.css +166 -0
- package/dist/collection/components/molecules/tttx-table/tttx-table.js +174 -0
- package/dist/collection/components/molecules/tttx-table/tttx-table.stories.js +81 -0
- package/dist/collection/components/palette.stories.js +88 -0
- package/dist/collection/docs/gettingstarted-developer.stories.js +9 -0
- package/dist/collection/icons.js +2838 -0
- package/dist/collection/index.js +1 -0
- package/dist/components/index.d.ts +41 -0
- package/dist/components/index.js +12 -0
- package/dist/components/tttx-button.d.ts +11 -0
- package/dist/components/tttx-button.js +6 -0
- package/dist/components/tttx-button2.js +56 -0
- package/dist/components/tttx-checkbox.d.ts +11 -0
- package/dist/components/tttx-checkbox.js +46 -0
- package/dist/components/tttx-form.d.ts +11 -0
- package/dist/components/tttx-form.js +391 -0
- package/dist/components/tttx-icon.d.ts +11 -0
- package/dist/components/tttx-icon.js +6 -0
- package/dist/components/tttx-icon2.js +35 -0
- package/dist/components/tttx-input-calendar.d.ts +11 -0
- package/dist/components/tttx-input-calendar.js +157 -0
- package/dist/components/tttx-keyvalue-block.d.ts +11 -0
- package/dist/components/tttx-keyvalue-block.js +49 -0
- package/dist/components/tttx-list.d.ts +11 -0
- package/dist/components/tttx-list.js +225 -0
- package/dist/components/tttx-loading-spinner.d.ts +11 -0
- package/dist/components/tttx-loading-spinner.js +6 -0
- package/dist/components/tttx-loading-spinner2.js +40 -0
- package/dist/components/tttx-popover-content.d.ts +11 -0
- package/dist/components/tttx-popover-content.js +6 -0
- package/dist/components/tttx-popover-content2.js +39 -0
- package/dist/components/tttx-standalone-input.d.ts +11 -0
- package/dist/components/tttx-standalone-input.js +179 -0
- package/dist/components/tttx-table.d.ts +11 -0
- package/dist/components/tttx-table.js +91 -0
- package/dist/esm/index-232e347b.js +1502 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +18 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/tttx-button.entry.js +30 -0
- package/dist/esm/tttx-checkbox.entry.js +24 -0
- package/dist/esm/tttx-form.entry.js +370 -0
- package/dist/esm/tttx-icon.entry.js +17 -0
- package/dist/esm/tttx-input-calendar.entry.js +121 -0
- package/dist/esm/tttx-keyvalue-block.entry.js +29 -0
- package/dist/esm/tttx-list.entry.js +194 -0
- package/dist/esm/tttx-loading-spinner.entry.js +22 -0
- package/dist/esm/tttx-popover-content.entry.js +19 -0
- package/dist/esm/tttx-standalone-input.entry.js +132 -0
- package/dist/esm/tttx-table.entry.js +56 -0
- package/dist/esm/tttx.js +18 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/tttx/index.esm.js +0 -0
- package/dist/tttx/p-01e1894e.entry.js +1 -0
- package/dist/tttx/p-184c4fae.js +2 -0
- package/dist/tttx/p-1bc3dfee.entry.js +1 -0
- package/dist/tttx/p-1cf8f9e8.entry.js +1 -0
- package/dist/tttx/p-220f7519.entry.js +1 -0
- package/dist/tttx/p-3973b7dd.entry.js +1 -0
- package/dist/tttx/p-5247e827.entry.js +1 -0
- package/dist/tttx/p-6828fe6f.entry.js +1 -0
- package/dist/tttx/p-81904eed.entry.js +1 -0
- package/dist/tttx/p-cf107fb6.entry.js +1 -0
- package/dist/tttx/p-f56fe662.entry.js +1 -0
- package/dist/tttx/p-fe4c70b2.entry.js +1 -0
- package/dist/tttx/tttx.esm.js +1 -0
- package/dist/types/components/atoms/tttx-button/tttx-button.d.ts +10 -0
- package/dist/types/components/atoms/tttx-button/tttx-button.stories.d.ts +10 -0
- package/dist/types/components/atoms/tttx-icon/tttx-icon.d.ts +5 -0
- package/dist/types/components/atoms/tttx-icon/tttx-icon.stories.d.ts +20 -0
- package/dist/types/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.d.ts +4 -0
- package/dist/types/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.stories.d.ts +6 -0
- package/dist/types/components/atoms/tttx-loading-spinner/tttx-loading-spinner.d.ts +6 -0
- package/dist/types/components/atoms/tttx-loading-spinner/tttx-loading-spinner.stories.d.ts +17 -0
- package/dist/types/components/atoms/tttx-popover-content/tttx-popover-content.d.ts +7 -0
- package/dist/types/components/atoms/tttx-popover-content/tttx-popover-content.stories.d.ts +18 -0
- package/dist/types/components/atoms/ttx-checkbox/tttx-checkbox.d.ts +9 -0
- package/dist/types/components/atoms/ttx-checkbox/tttx-checkbox.stories.d.ts +6 -0
- package/dist/types/components/molecules/tttx-form/tttx-form.d.ts +134 -0
- package/dist/types/components/molecules/tttx-form/tttx-form.stories.d.ts +12 -0
- package/dist/types/components/molecules/tttx-input-calendar/tttx-input-calendar.d.ts +19 -0
- package/dist/types/components/molecules/tttx-input-calendar/tttx-input-calendar.stories.d.ts +26 -0
- package/dist/types/components/molecules/tttx-list/tttx-list.d.ts +51 -0
- package/dist/types/components/molecules/tttx-list/tttx-list.stories.d.ts +13 -0
- package/dist/types/components/molecules/tttx-standalone-input/tttx-standalone-input.d.ts +38 -0
- package/dist/types/components/molecules/tttx-standalone-input/tttx-standalone-input.stories.d.ts +106 -0
- package/dist/types/components/molecules/tttx-table/tttx-table.d.ts +15 -0
- package/dist/types/components/molecules/tttx-table/tttx-table.stories.d.ts +21 -0
- package/dist/types/components/palette.stories.d.ts +6 -0
- package/dist/types/components.d.ts +295 -0
- package/dist/types/docs/gettingstarted-developer.stories.d.ts +5 -0
- package/dist/types/icons.d.ts +2 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1637 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +21 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +11 -0
- package/package.json +4 -4
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
.material-symbols-rounded {
|
|
2
|
+
font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.material-symbols-rounded {
|
|
6
|
+
font-family: "Material Symbols Rounded", sans-serif;
|
|
7
|
+
font-weight: 400;
|
|
8
|
+
font-style: normal;
|
|
9
|
+
font-size: 24px;
|
|
10
|
+
line-height: 1;
|
|
11
|
+
letter-spacing: normal;
|
|
12
|
+
text-transform: none;
|
|
13
|
+
display: inline-block;
|
|
14
|
+
white-space: nowrap;
|
|
15
|
+
word-wrap: normal;
|
|
16
|
+
direction: ltr;
|
|
17
|
+
text-rendering: optimizeLegibility;
|
|
18
|
+
-webkit-font-smoothing: antialiased;
|
|
19
|
+
color: #9e9e9e;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.icon-left,
|
|
23
|
+
.icon-right {
|
|
24
|
+
flex-basis: 24px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.icon-left span,
|
|
28
|
+
.icon-right span {
|
|
29
|
+
font-size: 24px;
|
|
30
|
+
line-height: 24px;
|
|
31
|
+
text-align: center;
|
|
32
|
+
display: block;
|
|
33
|
+
width: 24px;
|
|
34
|
+
height: 24px;
|
|
35
|
+
margin-top: 4px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.icon-left span {
|
|
39
|
+
margin-left: 4px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.icon-right span {
|
|
43
|
+
margin-right: 4px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.icon-right {
|
|
47
|
+
margin-top: 5px;
|
|
48
|
+
margin-right: 4px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.icon-left {
|
|
52
|
+
margin-top: 5px;
|
|
53
|
+
margin-left: 4px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.iconleft .input {
|
|
57
|
+
padding-left: 4px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.iconright .input {
|
|
61
|
+
padding-right: 4px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.focused {
|
|
65
|
+
border-color: #1479c6;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.errormsg {
|
|
69
|
+
display: flex;
|
|
70
|
+
justify-content: center;
|
|
71
|
+
align-items: center;
|
|
72
|
+
float: left;
|
|
73
|
+
margin-bottom: 16px;
|
|
74
|
+
box-sizing: border-box;
|
|
75
|
+
background-color: transparent;
|
|
76
|
+
height: 26px;
|
|
77
|
+
font-size: 14px;
|
|
78
|
+
border-radius: none;
|
|
79
|
+
z-index: 2;
|
|
80
|
+
color: #dc0000;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.errormsg .validationicon {
|
|
84
|
+
width: 16px;
|
|
85
|
+
height: 16px;
|
|
86
|
+
font-size: 16px;
|
|
87
|
+
margin-right: 4px;
|
|
88
|
+
vertical-align: middle;
|
|
89
|
+
color: #dc0000;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.danger {
|
|
93
|
+
color: #dc0000;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.optional {
|
|
97
|
+
color: #757575;
|
|
98
|
+
font-weight: normal;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
label.inputBlock {
|
|
102
|
+
display: block;
|
|
103
|
+
position: relative;
|
|
104
|
+
line-height: 21px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
label {
|
|
108
|
+
font-weight: 500;
|
|
109
|
+
font-size: 16px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
input:not([type=submit]) {
|
|
113
|
+
font-family: "Roboto", serif;
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
width: 100%;
|
|
116
|
+
height: 36px;
|
|
117
|
+
padding: 0 16px;
|
|
118
|
+
font-size: 16px;
|
|
119
|
+
border: 1px solid #d5d5d5;
|
|
120
|
+
border-radius: 4px;
|
|
121
|
+
margin-top: 4px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* iPhone OS fix */
|
|
125
|
+
input[type=date] {
|
|
126
|
+
background: white;
|
|
127
|
+
display: block;
|
|
128
|
+
min-width: calc(100% - 18px);
|
|
129
|
+
line-height: 37px;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
input.invalid:invalid, input.standalone.invalid {
|
|
133
|
+
border: 1px solid #dc0000;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
input ~ .errorBubble {
|
|
137
|
+
min-height: 27px;
|
|
138
|
+
position: relative;
|
|
139
|
+
font-size: 14px;
|
|
140
|
+
font-weight: normal;
|
|
141
|
+
width: 100%;
|
|
142
|
+
font-family: "Roboto", sans-serif;
|
|
143
|
+
color: #dc0000;
|
|
144
|
+
display: flex;
|
|
145
|
+
align-content: center;
|
|
146
|
+
align-items: center;
|
|
147
|
+
justify-items: center;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
input ~ .errorBubble:not(.visible) {
|
|
151
|
+
visibility: hidden;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
input ~ .errorBubble span {
|
|
155
|
+
color: #dc0000;
|
|
156
|
+
font-size: 16px;
|
|
157
|
+
margin-right: 4px;
|
|
158
|
+
height: 16px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
input.invalid:invalid ~ .errorBubble {
|
|
162
|
+
position: relative;
|
|
163
|
+
font-size: 14px;
|
|
164
|
+
font-weight: normal;
|
|
165
|
+
width: 100%;
|
|
166
|
+
font-family: "Roboto", sans-serif;
|
|
167
|
+
color: #dc0000;
|
|
168
|
+
visibility: visible;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
input:focus {
|
|
172
|
+
border-color: #1479c6;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
:host {
|
|
176
|
+
display: block;
|
|
177
|
+
}
|