@basis-ng/styles 0.0.1-alpha.2 → 0.0.1-alpha.4

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 (36) hide show
  1. package/package.json +24 -10
  2. package/{index.css → src/index.css} +1 -0
  3. /package/{alert.component.css → src/components/alert.component.css} +0 -0
  4. /package/{attached-box.component.css → src/components/attached-box.component.css} +0 -0
  5. /package/{badge.component.css → src/components/badge.component.css} +0 -0
  6. /package/{bottom-sheet.component.css → src/components/bottom-sheet.component.css} +0 -0
  7. /package/{button-group.component.css → src/components/button-group.component.css} +0 -0
  8. /package/{button.component.css → src/components/button.component.css} +0 -0
  9. /package/{checkbox.component.css → src/components/checkbox.component.css} +0 -0
  10. /package/{color-picker.component.css → src/components/color-picker.component.css} +0 -0
  11. /package/{icon.component.css → src/components/icon.component.css} +0 -0
  12. /package/{input-group.component.css → src/components/input-group.component.css} +0 -0
  13. /package/{input.component.css → src/components/input.component.css} +0 -0
  14. /package/{label.component.css → src/components/label.component.css} +0 -0
  15. /package/{menu-group.component.css → src/components/menu-group.component.css} +0 -0
  16. /package/{menu-item-checkbox.component.css → src/components/menu-item-checkbox.component.css} +0 -0
  17. /package/{menu-item-radio.component.css → src/components/menu-item-radio.component.css} +0 -0
  18. /package/{menu-item.component.css → src/components/menu-item.component.css} +0 -0
  19. /package/{menu-label.component.css → src/components/menu-label.component.css} +0 -0
  20. /package/{menu.component.css → src/components/menu.component.css} +0 -0
  21. /package/{option.component.css → src/components/option.component.css} +0 -0
  22. /package/{range.component.css → src/components/range.component.css} +0 -0
  23. /package/{row-item.component.css → src/components/row-item.component.css} +0 -0
  24. /package/{row.component.css → src/components/row.component.css} +0 -0
  25. /package/{search.component.css → src/components/search.component.css} +0 -0
  26. /package/{select.component.css → src/components/select.component.css} +0 -0
  27. /package/{side-sheet.component.css → src/components/side-sheet.component.css} +0 -0
  28. /package/{spinner.component.css → src/components/spinner.component.css} +0 -0
  29. /package/{switch.component.css → src/components/switch.component.css} +0 -0
  30. /package/{tab.component.css → src/components/tab.component.css} +0 -0
  31. /package/{table.component.css → src/components/table.component.css} +0 -0
  32. /package/{tabs.component.css → src/components/tabs.component.css} +0 -0
  33. /package/{textarea.component.css → src/components/textarea.component.css} +0 -0
  34. /package/{tooltip.component.css → src/components/tooltip.component.css} +0 -0
  35. /package/{tree-node.component.css → src/components/tree-node.component.css} +0 -0
  36. /package/{tree.component.css → src/components/tree.component.css} +0 -0
package/package.json CHANGED
@@ -1,20 +1,34 @@
1
1
  {
2
2
  "name": "@basis-ng/styles",
3
- "version": "0.0.1-alpha.2",
4
- "description": "Styles for the @basis-ng/primitives",
5
- "style": "index.css",
3
+ "version": "0.0.1-alpha.4",
4
+ "description": "CSS foundation for @basis-ng/primitives components",
5
+ "main": "src/index.css",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./src/index.css",
9
+ "require": "./src/index.css"
10
+ }
11
+ },
6
12
  "files": [
7
- "*.css",
8
- "components"
13
+ "src/**/*.css"
9
14
  ],
15
+ "scripts": {
16
+ "prepare": "echo 'No build step needed for pure CSS'",
17
+ "prepublishOnly": "echo 'Verifying CSS structure...'"
18
+ },
10
19
  "keywords": [
11
- "ui",
20
+ "css",
12
21
  "design-system",
13
- "styles",
22
+ "angular",
14
23
  "basis-ng"
15
24
  ],
16
25
  "license": "MIT",
17
- "sideEffects": [
18
- "**/*.css"
19
- ]
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/your-org/basis-ng.git",
29
+ "directory": "projects/styles"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ }
20
34
  }
@@ -33,3 +33,4 @@
33
33
  @import './components/tooltip.component.css';
34
34
  @import './components/tree-node.component.css';
35
35
  @import './components/tree.component.css';
36
+