@triptease/tt-date-range-picker 6.3.1 → 6.3.2

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.
Files changed (48) hide show
  1. package/package.json +8 -4
  2. package/.editorconfig +0 -29
  3. package/CHANGELOG.md +0 -207
  4. package/dist/web/DateRangeInput/DateRangeInput.js +0 -702
  5. package/dist/web/DateRangeInput/DateRangeInput.js.map +0 -7
  6. package/dist/web/DateRangeInput/tt-date-range-input.js +0 -7627
  7. package/dist/web/DateRangeInput/tt-date-range-input.js.map +0 -7
  8. package/dist/web/FocusEvent.d.js +0 -4
  9. package/dist/web/FocusEvent.d.js.map +0 -7
  10. package/dist/web/SidePanel/PresetButton.js +0 -7314
  11. package/dist/web/SidePanel/PresetButton.js.map +0 -7
  12. package/dist/web/SidePanel/SidePanel.js +0 -783
  13. package/dist/web/SidePanel/SidePanel.js.map +0 -7
  14. package/dist/web/SidePanel/styles.js +0 -663
  15. package/dist/web/SidePanel/styles.js.map +0 -7
  16. package/dist/web/SidePanel/tt-side-panel.js +0 -7420
  17. package/dist/web/SidePanel/tt-side-panel.js.map +0 -7
  18. package/dist/web/TtDateRangePicker.js +0 -7508
  19. package/dist/web/TtDateRangePicker.js.map +0 -7
  20. package/dist/web/helpers.js +0 -6475
  21. package/dist/web/helpers.js.map +0 -7
  22. package/dist/web/index.js +0 -9202
  23. package/dist/web/index.js.map +0 -7
  24. package/dist/web/styles.js +0 -647
  25. package/dist/web/styles.js.map +0 -7
  26. package/dist/web/tt-date-range-picker.js +0 -9200
  27. package/dist/web/tt-date-range-picker.js.map +0 -7
  28. package/dist/web/types.js +0 -4
  29. package/dist/web/types.js.map +0 -7
  30. package/src/DateRangeInput/DateRangeInput.ts +0 -70
  31. package/src/DateRangeInput/tt-date-range-input.ts +0 -13
  32. package/src/FocusEvent.d.ts +0 -13
  33. package/src/SidePanel/PresetButton.ts +0 -110
  34. package/src/SidePanel/SidePanel.ts +0 -36
  35. package/src/SidePanel/styles.ts +0 -83
  36. package/src/SidePanel/tt-side-panel.ts +0 -14
  37. package/src/TtDateRangePicker.ts +0 -273
  38. package/src/helpers.ts +0 -7
  39. package/src/index.ts +0 -3
  40. package/src/styles.ts +0 -67
  41. package/src/tt-date-range-picker.ts +0 -31
  42. package/src/types.ts +0 -57
  43. package/test/date-range-picker.test.ts +0 -204
  44. package/test/preset-button.test.ts +0 -43
  45. package/tsconfig.cjs.json +0 -9
  46. package/tsconfig.json +0 -9
  47. package/web-dev-server.config.js +0 -27
  48. package/web-test-runner.config.js +0 -41
package/package.json CHANGED
@@ -3,8 +3,12 @@
3
3
  "description": "Webcomponent tt-date-range-picker following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "@triptease",
6
- "version": "6.3.1",
6
+ "version": "6.3.2",
7
7
  "type": "module",
8
+ "files": [
9
+ "dist/esm",
10
+ "dist/cjs"
11
+ ],
8
12
  "main": "dist/esm/src/index.js",
9
13
  "module": "dist/esm/src/index.js",
10
14
  "exports": {
@@ -38,9 +42,9 @@
38
42
  "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
39
43
  },
40
44
  "dependencies": {
41
- "@triptease/icons": "1.4.0",
42
- "@triptease/tt-calendar": "6.1.1",
43
- "@triptease/tt-date-input": "6.1.1",
45
+ "@triptease/icons": "1.4.1",
46
+ "@triptease/tt-calendar": "6.1.2",
47
+ "@triptease/tt-date-input": "6.1.2",
44
48
  "@triptease/tt-dialog": "5.2.1",
45
49
  "@types/luxon": "^3.6.2",
46
50
  "lit": "^3.1.4",
package/.editorconfig DELETED
@@ -1,29 +0,0 @@
1
- # EditorConfig helps developers define and maintain consistent
2
- # coding styles between different editors and IDEs
3
- # editorconfig.org
4
-
5
- root = true
6
-
7
-
8
- [*]
9
-
10
- # Change these settings to your own preference
11
- indent_style = space
12
- indent_size = 2
13
-
14
- # We recommend you to keep these unchanged
15
- end_of_line = lf
16
- charset = utf-8
17
- trim_trailing_whitespace = true
18
- insert_final_newline = true
19
-
20
- [*.md]
21
- trim_trailing_whitespace = false
22
-
23
- [*.json]
24
- indent_size = 2
25
-
26
- [*.{html,js,md}]
27
- block_comment_start = /**
28
- block_comment = *
29
- block_comment_end = */
package/CHANGELOG.md DELETED
@@ -1,207 +0,0 @@
1
- # @triptease/tt-date-range-picker
2
-
3
- ## 6.3.1
4
-
5
- ### Patch Changes
6
-
7
- - Updating the prepublish command to use yarn build:node instead of tsc so that it compiles the imports down to use required for common js
8
- - Updated dependencies
9
- - @triptease/tt-date-input@6.1.1
10
- - @triptease/tt-calendar@6.1.1
11
- - @triptease/tt-dialog@5.2.1
12
-
13
- ## 6.3.0
14
-
15
- ### Minor Changes
16
-
17
- - Add dual ESM/CJS output
18
-
19
- ### Patch Changes
20
-
21
- - Updated dependencies
22
- - @triptease/tt-date-input@6.1.0
23
- - @triptease/tt-calendar@6.1.0
24
- - @triptease/tt-dialog@5.2.0
25
- - @triptease/icons@1.4.0
26
-
27
- ## 6.2.5
28
-
29
- ### Patch Changes
30
-
31
- - Update color tokens to use new -subtle and -strong variants
32
-
33
- ## 6.2.4
34
-
35
- ### Patch Changes
36
-
37
- - Updated dependencies
38
- - @triptease/icons@1.3.14
39
- - @triptease/tt-calendar@6.0.17
40
-
41
- ## 6.2.3
42
-
43
- ### Patch Changes
44
-
45
- - b0c1b82: Passing mindate and maxdate now disable buttons in the picker correctly
46
-
47
- ## 6.2.2
48
-
49
- ### Patch Changes
50
-
51
- - Updated dependencies
52
- - @triptease/icons@1.3.13
53
- - @triptease/tt-calendar@6.0.16
54
-
55
- ## 6.2.1
56
-
57
- ### Patch Changes
58
-
59
- - Fix types for `style` attribute in React to only accept React.CSSProperties object
60
- - Updated dependencies
61
- - @triptease/tt-dialog@5.1.1
62
-
63
- ## 6.2.0
64
-
65
- ### Minor Changes
66
-
67
- - Improve type accuracy
68
- - Remove @triptease/html-jsx support
69
-
70
- ### Patch Changes
71
-
72
- - Updated dependencies
73
- - Updated dependencies
74
- - @triptease/tt-dialog@5.1.0
75
-
76
- ## 6.1.22
77
-
78
- ### Patch Changes
79
-
80
- - Updated dependencies [ff30018]
81
- - @triptease/icons@1.3.12
82
- - @triptease/tt-calendar@6.0.15
83
-
84
- ## 6.1.21
85
-
86
- ### Patch Changes
87
-
88
- - Streamlined TS Config, reusing a shared file to reduce duplication and resolve issues where test files were being included in the bundle
89
- - Updated dependencies
90
- - @triptease/tt-date-input@6.0.6
91
- - @triptease/tt-calendar@6.0.14
92
- - @triptease/tt-dialog@5.0.16
93
- - @triptease/icons@1.3.11
94
-
95
- ## 6.1.20
96
-
97
- ### Patch Changes
98
-
99
- - 2d36888: Improve types such that only supported properties are included; Added support for `@triptease/html-jsx` framework
100
- - Updated dependencies [2d36888]
101
- - @triptease/tt-dialog@5.0.15
102
-
103
- ## 6.1.19
104
-
105
- ### Patch Changes
106
-
107
- - Fake release to force a fix
108
- - Updated dependencies
109
- - @triptease/icons@1.3.10
110
- - @triptease/tt-calendar@6.0.13
111
- - @triptease/tt-date-input@6.0.5
112
- - @triptease/tt-dialog@5.0.14
113
-
114
- ## 6.1.18
115
-
116
- ### Patch Changes
117
-
118
- - Removes @customElement because it's breaking runtime
119
-
120
- ## 6.1.17
121
-
122
- ### Patch Changes
123
-
124
- - bab1823: Improve TS support so that consumers don't need to declare global
125
- - Updated dependencies [6833238]
126
- - @triptease/tt-dialog@5.0.13
127
-
128
- ## 6.1.16
129
-
130
- ### Patch Changes
131
-
132
- - Updated dependencies
133
- - @triptease/icons@1.3.9
134
- - @triptease/tt-calendar@6.0.12
135
-
136
- ## 6.1.15
137
-
138
- ### Patch Changes
139
-
140
- - Updated dependencies [c52217a]
141
- - @triptease/icons@1.3.8
142
- - @triptease/tt-calendar@6.0.11
143
-
144
- ## 6.1.14
145
-
146
- ### Patch Changes
147
-
148
- - Updated dependencies
149
- - @triptease/icons@1.3.7
150
- - @triptease/tt-calendar@6.0.10
151
-
152
- ## 6.1.13
153
-
154
- ### Patch Changes
155
-
156
- - Updated dependencies
157
- - @triptease/icons@1.3.6
158
- - @triptease/tt-calendar@6.0.9
159
-
160
- ## 6.1.12
161
-
162
- ### Patch Changes
163
-
164
- - Updated dependencies
165
- - @triptease/icons@1.3.5
166
- - @triptease/tt-calendar@6.0.8
167
-
168
- ## 6.1.11
169
-
170
- ### Patch Changes
171
-
172
- - Resolve internal versioning problem (packages were being deployed using workspaces:\*)
173
- - Updated dependencies
174
- - @triptease/tt-calendar@6.0.7
175
- - @triptease/tt-dialog@5.0.12
176
-
177
- ## 6.1.10
178
-
179
- ### Patch Changes
180
-
181
- - Fix packaging so that packages are dependent on published versions rather than workspace:\* versions.
182
- - Updated dependencies
183
- - @triptease/icons@1.3.4
184
- - @triptease/tt-calendar@6.0.6
185
- - @triptease/tt-date-input@6.0.4
186
- - @triptease/tt-dialog@5.0.11
187
-
188
- ## 6.1.9
189
-
190
- ### Patch Changes
191
-
192
- - Updated dependencies
193
- - @triptease/icons@1.3.3
194
- - @triptease/tt-calendar@6.0.5
195
- - @triptease/tt-dialog@5.0.10
196
-
197
- ## 6.1.8
198
-
199
- ### Patch Changes
200
-
201
- - 3262c7c: Various tweaks due to running a refreshed ESLint config and better Typescript usage
202
- - 465557b: Code formatting
203
- - Updated dependencies [3262c7c]
204
- - Updated dependencies [465557b]
205
- - @triptease/tt-date-input@6.0.3
206
- - @triptease/tt-calendar@6.0.4
207
- - @triptease/tt-dialog@5.0.10