@featurevisor/site 0.8.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.
Files changed (70) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +15 -0
  4. package/dist/index.css +2183 -0
  5. package/dist/index.js +3 -0
  6. package/dist/index.js.LICENSE.txt +68 -0
  7. package/dist/index.js.map +1 -0
  8. package/lib/components/Alert.d.ts +7 -0
  9. package/lib/components/App.d.ts +2 -0
  10. package/lib/components/EditLink.d.ts +2 -0
  11. package/lib/components/EnvironmentDot.d.ts +8 -0
  12. package/lib/components/ExpandConditions.d.ts +6 -0
  13. package/lib/components/ExpandRuleSegments.d.ts +6 -0
  14. package/lib/components/Footer.d.ts +2 -0
  15. package/lib/components/Header.d.ts +2 -0
  16. package/lib/components/HistoryTimeline.d.ts +10 -0
  17. package/lib/components/LastModified.d.ts +2 -0
  18. package/lib/components/ListAttributes.d.ts +2 -0
  19. package/lib/components/ListFeatures.d.ts +2 -0
  20. package/lib/components/ListHistory.d.ts +2 -0
  21. package/lib/components/ListSegments.d.ts +2 -0
  22. package/lib/components/Markdown.d.ts +2 -0
  23. package/lib/components/PageContent.d.ts +4 -0
  24. package/lib/components/PageTitle.d.ts +5 -0
  25. package/lib/components/PrettyDate.d.ts +7 -0
  26. package/lib/components/SearchInput.d.ts +7 -0
  27. package/lib/components/ShowAttribute.d.ts +5 -0
  28. package/lib/components/ShowFeature.d.ts +10 -0
  29. package/lib/components/ShowSegment.d.ts +5 -0
  30. package/lib/components/Tabs.d.ts +10 -0
  31. package/lib/components/Tag.d.ts +6 -0
  32. package/lib/contexts/SearchIndexContext.d.ts +7 -0
  33. package/lib/hooks/searchIndexHook.d.ts +1 -0
  34. package/lib/index.d.ts +1 -0
  35. package/lib/utils/index.d.ts +23 -0
  36. package/package.json +62 -0
  37. package/public/favicon-128.png +0 -0
  38. package/public/index.html +15 -0
  39. package/src/components/Alert.tsx +22 -0
  40. package/src/components/App.tsx +129 -0
  41. package/src/components/EditLink.tsx +18 -0
  42. package/src/components/EnvironmentDot.tsx +48 -0
  43. package/src/components/ExpandConditions.tsx +84 -0
  44. package/src/components/ExpandRuleSegments.tsx +59 -0
  45. package/src/components/Footer.tsx +14 -0
  46. package/src/components/Header.tsx +62 -0
  47. package/src/components/HistoryTimeline.tsx +179 -0
  48. package/src/components/LastModified.tsx +29 -0
  49. package/src/components/ListAttributes.tsx +87 -0
  50. package/src/components/ListFeatures.tsx +95 -0
  51. package/src/components/ListHistory.tsx +17 -0
  52. package/src/components/ListSegments.tsx +81 -0
  53. package/src/components/Markdown.tsx +11 -0
  54. package/src/components/PageContent.tsx +9 -0
  55. package/src/components/PageTitle.tsx +23 -0
  56. package/src/components/PrettyDate.tsx +56 -0
  57. package/src/components/SearchInput.tsx +34 -0
  58. package/src/components/ShowAttribute.tsx +145 -0
  59. package/src/components/ShowFeature.tsx +490 -0
  60. package/src/components/ShowSegment.tsx +125 -0
  61. package/src/components/Tabs.tsx +46 -0
  62. package/src/components/Tag.tsx +13 -0
  63. package/src/contexts/SearchIndexContext.tsx +13 -0
  64. package/src/hooks/searchIndexHook.ts +9 -0
  65. package/src/index.css +8 -0
  66. package/src/index.tsx +12 -0
  67. package/src/utils/index.ts +203 -0
  68. package/tailwind.config.js +8 -0
  69. package/tsconfig.cjs.json +7 -0
  70. package/webpack.config.js +14 -0
@@ -0,0 +1,68 @@
1
+ /*!
2
+ * Determine if an object is a Buffer
3
+ *
4
+ * @author Feross Aboukhadijeh <https://feross.org>
5
+ * @license MIT
6
+ */
7
+
8
+ /**
9
+ * @license React
10
+ * react-dom.production.min.js
11
+ *
12
+ * Copyright (c) Facebook, Inc. and its affiliates.
13
+ *
14
+ * This source code is licensed under the MIT license found in the
15
+ * LICENSE file in the root directory of this source tree.
16
+ */
17
+
18
+ /**
19
+ * @license React
20
+ * react-is.production.min.js
21
+ *
22
+ * Copyright (c) Facebook, Inc. and its affiliates.
23
+ *
24
+ * This source code is licensed under the MIT license found in the
25
+ * LICENSE file in the root directory of this source tree.
26
+ */
27
+
28
+ /**
29
+ * @license React
30
+ * react.production.min.js
31
+ *
32
+ * Copyright (c) Facebook, Inc. and its affiliates.
33
+ *
34
+ * This source code is licensed under the MIT license found in the
35
+ * LICENSE file in the root directory of this source tree.
36
+ */
37
+
38
+ /**
39
+ * @license React
40
+ * scheduler.production.min.js
41
+ *
42
+ * Copyright (c) Facebook, Inc. and its affiliates.
43
+ *
44
+ * This source code is licensed under the MIT license found in the
45
+ * LICENSE file in the root directory of this source tree.
46
+ */
47
+
48
+ /**
49
+ * @remix-run/router v1.5.0
50
+ *
51
+ * Copyright (c) Remix Software Inc.
52
+ *
53
+ * This source code is licensed under the MIT license found in the
54
+ * LICENSE.md file in the root directory of this source tree.
55
+ *
56
+ * @license MIT
57
+ */
58
+
59
+ /**
60
+ * React Router DOM v6.10.0
61
+ *
62
+ * Copyright (c) Remix Software Inc.
63
+ *
64
+ * This source code is licensed under the MIT license found in the
65
+ * LICENSE.md file in the root directory of this source tree.
66
+ *
67
+ * @license MIT
68
+ */