@ouds/web-orange-compact 1.1.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 (56) hide show
  1. package/LICENSE +22 -0
  2. package/NOTICE.txt +15 -0
  3. package/README.md +125 -0
  4. package/dist/css/ouds-web-bootstrap.css +28757 -0
  5. package/dist/css/ouds-web-bootstrap.css.map +1 -0
  6. package/dist/css/ouds-web-bootstrap.min.css +11 -0
  7. package/dist/css/ouds-web-bootstrap.min.css.map +1 -0
  8. package/dist/css/ouds-web-bootstrap.rtl.css +28582 -0
  9. package/dist/css/ouds-web-bootstrap.rtl.css.map +1 -0
  10. package/dist/css/ouds-web-bootstrap.rtl.min.css +11 -0
  11. package/dist/css/ouds-web-bootstrap.rtl.min.css.map +1 -0
  12. package/dist/css/ouds-web-grid.css +3598 -0
  13. package/dist/css/ouds-web-grid.css.map +1 -0
  14. package/dist/css/ouds-web-grid.min.css +11 -0
  15. package/dist/css/ouds-web-grid.min.css.map +1 -0
  16. package/dist/css/ouds-web-grid.rtl.css +3597 -0
  17. package/dist/css/ouds-web-grid.rtl.css.map +1 -0
  18. package/dist/css/ouds-web-grid.rtl.min.css +11 -0
  19. package/dist/css/ouds-web-grid.rtl.min.css.map +1 -0
  20. package/dist/css/ouds-web-reboot.css +1360 -0
  21. package/dist/css/ouds-web-reboot.css.map +1 -0
  22. package/dist/css/ouds-web-reboot.min.css +11 -0
  23. package/dist/css/ouds-web-reboot.min.css.map +1 -0
  24. package/dist/css/ouds-web-reboot.rtl.css +1329 -0
  25. package/dist/css/ouds-web-reboot.rtl.css.map +1 -0
  26. package/dist/css/ouds-web-reboot.rtl.min.css +11 -0
  27. package/dist/css/ouds-web-reboot.rtl.min.css.map +1 -0
  28. package/dist/css/ouds-web-utilities.css +11571 -0
  29. package/dist/css/ouds-web-utilities.css.map +1 -0
  30. package/dist/css/ouds-web-utilities.min.css +11 -0
  31. package/dist/css/ouds-web-utilities.min.css.map +1 -0
  32. package/dist/css/ouds-web-utilities.rtl.css +11540 -0
  33. package/dist/css/ouds-web-utilities.rtl.css.map +1 -0
  34. package/dist/css/ouds-web-utilities.rtl.min.css +11 -0
  35. package/dist/css/ouds-web-utilities.rtl.min.css.map +1 -0
  36. package/dist/css/ouds-web.css +22967 -0
  37. package/dist/css/ouds-web.css.map +1 -0
  38. package/dist/css/ouds-web.min.css +11 -0
  39. package/dist/css/ouds-web.min.css.map +1 -0
  40. package/dist/css/ouds-web.rtl.css +22804 -0
  41. package/dist/css/ouds-web.rtl.css.map +1 -0
  42. package/dist/css/ouds-web.rtl.min.css +11 -0
  43. package/dist/css/ouds-web.rtl.min.css.map +1 -0
  44. package/package.json +61 -0
  45. package/scss/ouds-web-bootstrap.scss +3 -0
  46. package/scss/ouds-web-grid.scss +64 -0
  47. package/scss/ouds-web-reboot.scss +12 -0
  48. package/scss/ouds-web-utilities.scss +21 -0
  49. package/scss/ouds-web.scss +67 -0
  50. package/scss/tokens/_component-colors-custom-props.scss +114 -0
  51. package/scss/tokens/_component.scss +459 -0
  52. package/scss/tokens/_composite.scss +124 -0
  53. package/scss/tokens/_index.scss +6 -0
  54. package/scss/tokens/_raw.scss +485 -0
  55. package/scss/tokens/_semantic-colors-custom-props.scss +316 -0
  56. package/scss/tokens/_semantic.scss +779 -0
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015-2026 Orange SA
4
+ Copyright (c) 2015-2026 The OUDS Web Authors
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
package/NOTICE.txt ADDED
@@ -0,0 +1,15 @@
1
+ Parts list under Orange SA Copyright
2
+ Copyright (C) 2016 - 2026 Orange SA All rights reserved
3
+
4
+ The following parts are proprietary information of Orange.
5
+ You shall not use or display any trade names, trademarks, service marks, products names, illustrations or designs used within the software
6
+ or displayed on this website (https://web.unified-design-system.orange.com) and owned by Orange SA and its subsidiaries,
7
+ in whole or part of, in any medium, except as required for reasonable and customary use in describing the origin of the software
8
+ and reproducing the content of the NOTICE and DOCUMENTATION files.
9
+ Any use or displaying shall constitute an infringement under intellectual property laws of France and international conventions.
10
+
11
+ nuget/ouds-web.png
12
+ orange-compact-logo.svg
13
+ scss/_composite.scss
14
+
15
+ End of the parts list under Orange SA Copyright
package/README.md ADDED
@@ -0,0 +1,125 @@
1
+ ## Table of contents
2
+
3
+ - [Quick start](#quick-start)
4
+ - [What’s included](#whats-included)
5
+ - [Bugs and feature requests](#bugs-and-feature-requests)
6
+ - [Documentation](#documentation)
7
+ - [Contributing](#contributing)
8
+ - [Versioning](#versioning)
9
+ - [Copyright and license](#copyright-and-license)
10
+
11
+
12
+ ## Quick start
13
+
14
+ This package is not intended to be used alone. Please read our [main README](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/blob/ouds/main/README.md) to know more.
15
+
16
+ ## What’s included
17
+
18
+ Within the download you’ll find the following directories and files, logically grouping common assets and providing both compiled and minified variations.
19
+
20
+ <details>
21
+ <summary>Download contents</summary>
22
+
23
+ ```text
24
+ @ouds/
25
+ └── web-orange-compact/
26
+ └── dist/
27
+ └── css/
28
+ ├── ouds-web-bootstrap.css
29
+ ├── ouds-web-bootstrap.css.map
30
+ ├── ouds-web-bootstrap.min.css
31
+ ├── ouds-web-bootstrap.min.css.map
32
+ ├── ouds-web-bootstrap.rtl.css
33
+ ├── ouds-web-bootstrap.rtl.css.map
34
+ ├── ouds-web-bootstrap.rtl.min.css
35
+ ├── ouds-web-bootstrap.rtl.min.css.map
36
+ ├── ouds-web-grid.css
37
+ ├── ouds-web-grid.css.map
38
+ ├── ouds-web-grid.min.css
39
+ ├── ouds-web-grid.min.css.map
40
+ ├── ouds-web-grid.rtl.css
41
+ ├── ouds-web-grid.rtl.css.map
42
+ ├── ouds-web-grid.rtl.min.css
43
+ ├── ouds-web-grid.rtl.min.css.map
44
+ ├── ouds-web-reboot.css
45
+ ├── ouds-web-reboot.css.map
46
+ ├── ouds-web-reboot.min.css
47
+ ├── ouds-web-reboot.min.css.map
48
+ ├── ouds-web-reboot.rtl.css
49
+ ├── ouds-web-reboot.rtl.css.map
50
+ ├── ouds-web-reboot.rtl.min.css
51
+ ├── ouds-web-reboot.rtl.min.css.map
52
+ ├── ouds-web-utilities.css
53
+ ├── ouds-web-utilities.css.map
54
+ ├── ouds-web-utilities.min.css
55
+ ├── ouds-web-utilities.min.css.map
56
+ ├── ouds-web-utilities.rtl.css
57
+ ├── ouds-web-utilities.rtl.css.map
58
+ ├── ouds-web-utilities.rtl.min.css
59
+ ├── ouds-web-utilities.rtl.min.css.map
60
+ ├── ouds-web.css
61
+ ├── ouds-web.css.map
62
+ ├── ouds-web.min.css
63
+ ├── ouds-web.min.css.map
64
+ ├── ouds-web.rtl.css
65
+ ├── ouds-web.rtl.css.map
66
+ ├── ouds-web.rtl.min.css
67
+ └── ouds-web.rtl.min.css.map
68
+ ```
69
+ </details>
70
+
71
+ We provide compiled CSS (`ouds-web.*`), as well as compiled and minified CSS (`ouds-web.min.*`). [Source maps](https://web.dev/articles/source-maps) (`ouds-web.*.map`) are available for use with certain browsers’ developer tools.
72
+
73
+ We also provide a compiled and minified CSS (`ouds-web-bootstrap.*` and `ouds-web-bootstrap.min.*`) enforcing Bootstrap compatibility.
74
+
75
+ ## Bugs and feature requests
76
+
77
+ Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/blob/ouds/main/.github/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/issues/new/choose).
78
+
79
+
80
+ ## Documentation
81
+
82
+ OUDS Web’s documentation, included in this repo in the root directory, is built with [Astro](https://astro.build/) and publicly hosted on GitHub Pages at <https://web.unified-design-system.orange.com/orange-compact/>. The docs may also be run locally.
83
+
84
+ Documentation search is powered by [Algolia’s DocSearch](https://docsearch.algolia.com/).
85
+
86
+ ### Running documentation locally
87
+
88
+ 1. Run `npm install` from the root `/ouds-web` directory, to install the Node.js dependencies, including Astro (the site builder).
89
+ 2. Run `npm run css` from the brand root `/ouds-web/packages/orange-compact` directory, (or a specific npm script) to rebuild distributed CSS and JavaScript files, as well as our docs assets.
90
+ 3. From the root `/ouds-web/packages/orange-compact` directory, run `npm run astro-dev` in the command line.
91
+ 4. Open <http://localhost:9003/orange-compact/> in your browser, and voilà.
92
+
93
+ Learn more about using Astro by reading its [documentation](https://docs.astro.build/en/getting-started/).
94
+
95
+ ### Documentation for previous releases
96
+
97
+ You can find all our previous releases docs on <https://web.unified-design-system.orange.com/orange-compact/docs/versions/>.
98
+
99
+ [Previous releases](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/releases) and their documentation are also available for download.
100
+
101
+
102
+ ## Contributing
103
+
104
+ Please read through our [contributing guidelines](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/blob/ouds/main/.github/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
105
+
106
+ Moreover, if your pull request contains JavaScript patches or features, you must include [relevant unit tests](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/tree/ouds/main/js/tests). All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo).
107
+
108
+ Editor preferences are available in the [editor config](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/blob/ouds/main/.editorconfig) for easy use in common text editors. Read more and download plugins at <https://editorconfig.org/>.
109
+
110
+
111
+ ## Versioning
112
+
113
+ For transparency into our release cycle and in striving to maintain backward compatibility, OUDS Web is maintained under [the Semantic Versioning guidelines](https://semver.org/). Sometimes we screw up, but we adhere to those rules whenever possible.
114
+
115
+ See [the Releases section of our GitHub project](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/releases) for changelogs for each release version of OUDS Web.
116
+
117
+ Our default branch is for development of our OUDS Web release.
118
+
119
+
120
+ ## Copyright and license
121
+
122
+ Code and documentation copyright 2011-2026 the [Bootstrap Authors](https://github.com/twbs/bootstrap/graphs/contributors). Code released under the [MIT License](https://github.com/twbs/bootstrap/blob/main/LICENSE). Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).
123
+
124
+ OUDS Web code and documentation copyright 2015-2026 the [OUDS Web Authors](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/graphs/contributors) and [Orange SA](https://orange.com). Code released under the [MIT License](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/blob/ouds/main/LICENSE). Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).
125
+