tokenizer-ui-kit 0.2.20 → 0.2.22

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/README.md CHANGED
@@ -41,6 +41,11 @@ import { CircularLoader } from "tokenizer-ui-kit";
41
41
  import { DatePicker, CButton, CircularLoader } from "tokenizer-ui-kit";
42
42
  // ⚠️ IMPORTANT: Import CSS styles for proper styling
43
43
  import "tokenizer-ui-kit/dist/tokenizer-ui-kit.css";
44
+
45
+ // ℹ️ NOTE: Reset CSS is included but applied only to elements inside .ui-kit class.
46
+ // This prevents conflicts with global styles (like Tailwind CSS).
47
+ // To use reset styles, wrap your UI Kit components in a container with class "ui-kit":
48
+ // <div class="ui-kit">...</div>
44
49
  </script>
45
50
  ```
46
51
 
@@ -48,7 +53,7 @@ import "tokenizer-ui-kit/dist/tokenizer-ui-kit.css";
48
53
 
49
54
  ```vue
50
55
  <template>
51
- <div>
56
+ <div class="ui-kit">
52
57
  <DatePicker v-model="selectedDate" />
53
58
  <CButton @click="handleClick">Click me</CButton>
54
59
  <CircularLoader v-if="loading" />