@ucalgary-design-system/all-components 1.1.2 β†’ 1.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @ucalgary-design-system/all-components
2
2
 
3
+ ## 1.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 542d786: Updated README. Added CDN usage info.
8
+ - 148b308: Added base styles to Core package. All components now outputs tokens and base stlyes with fonts in its css.
9
+ - Updated dependencies [148b308]
10
+ - @ucalgary-design-system/core@1.0.7
11
+
12
+ ## 1.2.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 66ac9d0: Added the missing serif font file
17
+ - ed817df: Added link component
18
+ - 51904ca: Search input component added
19
+ - All components updated to include Search input component (minor).
20
+ - Core updated with new visually-hidden mixin (patch).
21
+ - Search input component added (patch).
22
+ - 178cd3b: Full development of text area component
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [66ac9d0]
27
+ - Updated dependencies [ed817df]
28
+ - Updated dependencies [51904ca]
29
+ - Updated dependencies [178cd3b]
30
+ - @ucalgary-design-system/core@1.0.6
31
+ - @ucalgary-design-system/link@1.0.1
32
+ - @ucalgary-design-system/search-input@1.0.1
33
+ - @ucalgary-design-system/text-area@1.0.1
34
+
3
35
  ## 1.1.2
4
36
 
5
37
  ### Patch Changes
package/README.md CHANGED
@@ -41,8 +41,8 @@ Then use the components in your HTML:
41
41
  For projects not using a package manager, you can include the bundled JavaScript and CSS directly in your HTML:
42
42
 
43
43
  ```html
44
- <link rel="stylesheet" href="dist/bundle/all-components.css" />
45
- <script type="module" src="dist/bundle/all-components.js"></script>
44
+ <link rel="stylesheet" href="dist/bundle/index.css" />
45
+ <script type="module" src="dist/bundle/index.js"></script>
46
46
  ```
47
47
 
48
48
  Once included, you can use any UCalgary Design System component:
@@ -53,6 +53,36 @@ Once included, you can use any UCalgary Design System component:
53
53
 
54
54
  > πŸ’‘ Make sure the `dist/bundle` directory is served publicly by your server.
55
55
 
56
+ ### Option 3: Load from a CDN
57
+
58
+ If you don’t want to install the package locally, you can load the bundled files directly from [jsDelivr](https://www.jsdelivr.com/):
59
+
60
+ ```html
61
+ <link
62
+ rel="stylesheet"
63
+ href="https://cdn.jsdelivr.net/npm/@ucalgary-design-system/all-components@1.2.0/bundle/index.css"
64
+ />
65
+ <script
66
+ type="module"
67
+ src="https://cdn.jsdelivr.net/npm/@ucalgary-design-system/all-components@1.2.0/bundle/index.js">
68
+ </script>
69
+ ````
70
+
71
+ Once included, you can use any UCalgary Design System component:
72
+
73
+ ```html
74
+ <ucds-dropdown label="Choose one">
75
+ <ucds-dropdown-item value="1">Option 1</ucds-dropdown-item>
76
+ <ucds-dropdown-item value="2">Option 2</ucds-dropdown-item>
77
+ </ucds-dropdown>
78
+ ```
79
+
80
+ > πŸ’‘ You can pin to a specific version (recommended) or use `@latest` to always get the newest release:
81
+ >
82
+ > ```html
83
+ > <script type="module" src="https://cdn.jsdelivr.net/npm/@ucalgary-design-system/all-components@latest/bundle/index.js"></script>
84
+ > ```
85
+
56
86
  ---
57
87
 
58
88
  ## Components Included
@@ -70,5 +100,8 @@ The following components are available:
70
100
  * `ucds-fieldset`
71
101
  * `ucds-icon`
72
102
  * `ucds-icon-button`
103
+ * `ucds-link`
73
104
  * `ucds-radio`
74
- * `ucds-text-input`
105
+ * `search-input`
106
+ * `ucds-text-input`
107
+ * `ucds-text-area`